From 198da1432c325f5e9862d1b4947dd407d9dbbfe1 Mon Sep 17 00:00:00 2001 From: lu Date: Tue, 13 Jan 2026 01:33:08 +0100 Subject: [PATCH 1/5] feat(locale): add locale management functionality --- import.lua | 1 + shared/locale.lua | 100 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 shared/locale.lua diff --git a/import.lua b/import.lua index 764454f..7db7d35 100644 --- a/import.lua +++ b/import.lua @@ -38,6 +38,7 @@ local content = { class = true, functions = true, notify = true, + locale = true, }, } diff --git a/shared/locale.lua b/shared/locale.lua new file mode 100644 index 0000000..b74025b --- /dev/null +++ b/shared/locale.lua @@ -0,0 +1,100 @@ +local CLASS = Import('class').Class + +local function loadLangFile(resource, folder, lang) + local path = ('%s/%s.lua'):format(folder, lang) + local raw = LoadResourceFile(resource, path) + if not raw then return nil end + + local fn, err = load(raw) + if not fn then + print(('[Locale] Error loading %s: %s'):format(path, err)) + return nil + end + + return fn() +end + +local Locale = CLASS:Create({ + constructor = function(self, data) + self._langs = {} + self._currentLang = data.default or 'en' + self._defaultLang = data.default or 'en' + self._fallback = data.fallback ~= false + self._folder = data.folder or 'locales' + self._resource = data.resource or GetCurrentResourceName() + + local langs = data.langs or { self._defaultLang } + for _, lang in ipairs(langs) do + local content = loadLangFile(self._resource, self._folder, lang) + if content then + self._langs[lang] = content + end + end + + if not self._langs[self._defaultLang] then + local content = loadLangFile(self._resource, self._folder, self._defaultLang) + if content then + self._langs[self._defaultLang] = content + end + end + end, + + set = { + SetLang = function(self, lang) + if self._langs[lang] then + self._currentLang = lang + else + error(('Language "%s" not loaded'):format(lang)) + end + end + }, + + get = { + GetLang = function(self) + return self._currentLang + end, + GetAvailableLangs = function(self) + local langs = {} + for lang in pairs(self._langs) do + langs[#langs + 1] = lang + end + return langs + end + }, + + T = function(self, key, vars) + local text = nil + + if self._langs[self._currentLang] then + text = self._langs[self._currentLang][key] + end + + if not text and self._fallback and self._currentLang ~= self._defaultLang then + if self._langs[self._defaultLang] then + text = self._langs[self._defaultLang][key] + end + end + + if not text then + return key + end + + if vars and type(vars) == 'table' then + for name, value in pairs(vars) do + text = text:gsub('{' .. name .. '}', tostring(value)) + end + end + + return text + end +}) + +local LocaleAPI = {} + +function LocaleAPI:Load(options) + return Locale:New(options or {}) +end + +return { + Locale = LocaleAPI +} From e7b1c364fe4095b457102a96e0129a7a8285ac80 Mon Sep 17 00:00:00 2001 From: lu-value Date: Wed, 25 Mar 2026 00:24:44 +0100 Subject: [PATCH 2/5] feat: prepare shared entity data templates --- shared/data/animals.lua | 46 ++++++++++++++++++++++++++++++++++++ shared/data/peds.lua | 50 ++++++++++++++++++++++++++++++++++++++++ shared/data/vehicles.lua | 47 +++++++++++++++++++++++++++++-------- 3 files changed, 133 insertions(+), 10 deletions(-) diff --git a/shared/data/animals.lua b/shared/data/animals.lua index e69de29..f1a8446 100644 --- a/shared/data/animals.lua +++ b/shared/data/animals.lua @@ -0,0 +1,46 @@ +local Animals = {} + +local function createEntry(model, extra) + local entry = { + model = model, + hash = joaat(model), + } + + if extra then + for key, value in pairs(extra) do + entry[key] = value + end + end + + return entry +end + +Animals.Horses = { + -- [`a_c_horse_arabian_white`] = createEntry("a_c_horse_arabian_white"), +} + +Animals.Domestic = { + -- [`a_c_dogamericanfoxhound_01`] = createEntry("a_c_dogamericanfoxhound_01"), +} + +Animals.Wild = { + -- [`a_c_alligator_01`] = createEntry("a_c_alligator_01"), +} + +Animals.Birds = { + -- [`a_c_duck_01`] = createEntry("a_c_duck_01"), +} + +Animals.Fish = { + -- [`a_c_fishbluegil_01_ms`] = createEntry("a_c_fishbluegil_01_ms"), +} + +return { + Animals = Animals +} + +-- example usage +--[[ local LIB = Import("animals") +local horses = LIB.Animals.Horses +local wildAnimals = LIB.Animals.Wild +]] diff --git a/shared/data/peds.lua b/shared/data/peds.lua index e69de29..9069ccd 100644 --- a/shared/data/peds.lua +++ b/shared/data/peds.lua @@ -0,0 +1,50 @@ +local Peds = {} + +local function createEntry(model, extra) + local entry = { + model = model, + hash = joaat(model), + } + + if extra then + for key, value in pairs(extra) do + entry[key] = value + end + end + + return entry +end + +Peds.Ambient = { + -- [`a_m_m_blwlaborer_01`] = createEntry("a_m_m_blwlaborer_01"), +} + +Peds.Law = { + -- [`s_m_m_ambientlawrural_01`] = createEntry("s_m_m_ambientlawrural_01"), +} + +Peds.Gangs = { + -- [`g_m_m_unibanditos_01`] = createEntry("g_m_m_unibanditos_01"), +} + +Peds.Shopkeepers = { + -- [`u_m_m_sdtrapper_01`] = createEntry("u_m_m_sdtrapper_01"), +} + +Peds.Story = { + -- [`cs_dutch`] = createEntry("cs_dutch"), +} + +Peds.Multiplayer = { + -- [`mp_male`] = createEntry("mp_male"), +} + +return { + Peds = Peds +} + +-- example usage +--[[ local LIB = Import("peds") +local ambientPeds = LIB.Peds.Ambient +local lawPeds = LIB.Peds.Law +]] diff --git a/shared/data/vehicles.lua b/shared/data/vehicles.lua index b2a432e..6ffed6f 100644 --- a/shared/data/vehicles.lua +++ b/shared/data/vehicles.lua @@ -1,19 +1,46 @@ local Vehicles = {} + +local function createEntry(model, extra) + local entry = { + model = model, + hash = joaat(model), + } + + if extra then + for key, value in pairs(extra) do + entry[key] = value + end + end + + return entry +end + Vehicles.Boats = { - [`rowboat`] = { - model = "rowboat", - hash = `rowboat`, - }, + -- [`rowboat`] = createEntry("rowboat"), +} + +Vehicles.Wagons = { + -- [`wagon02x`] = createEntry("wagon02x"), } -Vehicles.Wagons = {} +Vehicles.Coaches = { + -- [`coach2`] = createEntry("coach2"), +} + +Vehicles.Carts = { + -- [`cart01`] = createEntry("cart01"), +} + +Vehicles.Trains = { + -- [`northsteamer01x`] = createEntry("northsteamer01x"), +} return { Vehicles = Vehicles } - ---example usage ---[[ local LIB = Import "vehicles" -local boat = LIB.Vehicles.Boats -- table of boats - ]] +-- example usage +--[[ local LIB = Import("vehicles") +local boats = LIB.Vehicles.Boats +local wagons = LIB.Vehicles.Wagons +]] From 82d4c7c823c43e7ceb7ba86f2d9f52b0dfc9dfc9 Mon Sep 17 00:00:00 2001 From: lu-value Date: Wed, 25 Mar 2026 00:24:44 +0100 Subject: [PATCH 3/5] feat: import shared entity data from rdr3 discoveries --- shared/data/animals.lua | 620 ++++++- shared/data/peds.lua | 3403 +++++++++++++++++++++++++++++++++++++- shared/data/vehicles.lua | 265 ++- 3 files changed, 4204 insertions(+), 84 deletions(-) diff --git a/shared/data/animals.lua b/shared/data/animals.lua index f1a8446..7c92e2e 100644 --- a/shared/data/animals.lua +++ b/shared/data/animals.lua @@ -1,46 +1,610 @@ local Animals = {} -local function createEntry(model, extra) - local entry = { - model = model, - hash = joaat(model), - } +-- Source: femga/rdr3_discoveries peds/peds_list.lua +-- Animals are extracted from the ped list and grouped heuristically. - if extra then - for key, value in pairs(extra) do - entry[key] = value - end - end +Animals.All = { + [0x8F361781] = { model = "a_c_alligator_01", hash = 0x8F361781, outfits = 4 }, + [0xA0B33A7B] = { model = "a_c_alligator_02", hash = 0xA0B33A7B, outfits = 1 }, + [0xB2C4DE9E] = { model = "a_c_alligator_03", hash = 0xB2C4DE9E, outfits = 3 }, + [0x94DA69A0] = { model = "a_c_armadillo_01", hash = 0x94DA69A0, outfits = 1 }, + [0xBA41697E] = { model = "a_c_badger_01", hash = 0xBA41697E, outfits = 3 }, + [0x28308168] = { model = "a_c_bat_01", hash = 0x28308168, outfits = 3 }, + [0x2B845466] = { model = "a_c_bearblack_01", hash = 0x2B845466, outfits = 4 }, + [0xBCFD0E7F] = { model = "a_c_bear_01", hash = 0xBCFD0E7F, outfits = 11 }, + [0x2D4B3F63] = { model = "a_c_beaver_01", hash = 0x2D4B3F63, outfits = 4 }, + [0xA27F49A3] = { model = "a_c_bighornram_01", hash = 0xA27F49A3, outfits = 19 }, + [0x5E5A761C] = { model = "a_c_bluejay_01", hash = 0x5E5A761C, outfits = 2 }, + [0xDE99DA6D] = { model = "a_c_boarlegendary_01", hash = 0xDE99DA6D, outfits = 1 }, + [0x78EBDA79] = { model = "a_c_boar_01", hash = 0x78EBDA79, outfits = 4 }, + [0x8AF5C2A8] = { model = "a_c_buck_01", hash = 0x8AF5C2A8, outfits = 6 }, + [0x5CC5E869] = { model = "a_c_buffalo_01", hash = 0x5CC5E869, outfits = 16 }, + [0x15E9B494] = { model = "a_c_buffalo_tatanka_01", hash = 0x15E9B494, outfits = 1 }, + [0x0BAA25A3] = { model = "a_c_bull_01", hash = 0x0BAA25A3, outfits = 4 }, + [0x47E1D597] = { model = "a_c_californiacondor_01", hash = 0x47E1D597, outfits = 3 }, + [0x6A640A7B] = { model = "a_c_cardinal_01", hash = 0x6A640A7B, outfits = 3 }, + [0x681E834B] = { model = "a_c_carolinaparakeet_01", hash = 0x681E834B, outfits = 1 }, + [0x573201B8] = { model = "a_c_cat_01", hash = 0x573201B8, outfits = 3 }, + [0xEE893817] = { model = "a_c_cedarwaxwing_01", hash = 0xEE893817, outfits = 3 }, + [0x8506531D] = { model = "a_c_chicken_01", hash = 0x8506531D, outfits = 3 }, + [0xA39125DC] = { model = "a_c_chipmunk_01", hash = 0xA39125DC, outfits = 1 }, + [0x846E8AF0] = { model = "a_c_cormorant_01", hash = 0x846E8AF0, outfits = 2 }, + [0x056154F7] = { model = "a_c_cougar_01", hash = 0x056154F7, outfits = 6 }, + [0xFCFA9E1E] = { model = "a_c_cow", hash = 0xFCFA9E1E, outfits = 22 }, + [0x1CA6B883] = { model = "a_c_coyote_01", hash = 0x1CA6B883, outfits = 7 }, + [0x868D0356] = { model = "a_c_crab_01", hash = 0x868D0356, outfits = 3 }, + [0xDE608788] = { model = "a_c_cranewhooping_01", hash = 0xDE608788, outfits = 2 }, + [0x96E9E689] = { model = "a_c_crawfish_01", hash = 0x96E9E689, outfits = 3 }, + [0x05DF8F2C] = { model = "a_c_crow_01", hash = 0x05DF8F2C, outfits = 1 }, + [0x423417A7] = { model = "a_c_deer_01", hash = 0x423417A7, outfits = 6 }, + [0x40E01848] = { model = "a_c_dogamericanfoxhound_01", hash = 0x40E01848, outfits = 5 }, + [0xAE6C236C] = { model = "a_c_dogaustraliansheperd_01", hash = 0xAE6C236C, outfits = 3 }, + [0x2552B009] = { model = "a_c_dogbluetickcoonhound_01", hash = 0x2552B009, outfits = 8 }, + [0xC25FE171] = { model = "a_c_dogcatahoulacur_01", hash = 0xC25FE171, outfits = 7 }, + [0xE8C446CB] = { model = "a_c_dogchesbayretriever_01", hash = 0xE8C446CB, outfits = 3 }, + [0x40D2BCBC] = { model = "a_c_dogcollie_01", hash = 0x40D2BCBC, outfits = 3 }, + [0xC5C5D255] = { model = "a_c_doghobo_01", hash = 0xC5C5D255, outfits = 1 }, + [0x801131EF] = { model = "a_c_doghound_01", hash = 0x801131EF, outfits = 8 }, + [0x62F7C1B3] = { model = "a_c_doghusky_01", hash = 0x62F7C1B3, outfits = 3 }, + [0xAD779EB4] = { model = "a_c_doglab_01", hash = 0xAD779EB4, outfits = 7 }, + [0xCA89FC80] = { model = "a_c_doglion_01", hash = 0xCA89FC80, outfits = 2 }, + [0x40CAC0E7] = { model = "a_c_dogpoodle_01", hash = 0x40CAC0E7, outfits = 3 }, + [0x5EDF32B4] = { model = "a_c_dogrufus_01", hash = 0x5EDF32B4, outfits = 1 }, + [0x3B313FCE] = { model = "a_c_dogstreet_01", hash = 0x3B313FCE, outfits = 3 }, + [0x387E129A] = { model = "re_lostdog_dogs_01", hash = 0x387E129A, outfits = 4 }, + [0x69A37A7B] = { model = "a_c_donkey_01", hash = 0x69A37A7B, outfits = 8 }, + [0xC42E08CB] = { model = "a_c_duck_01", hash = 0xC42E08CB, outfits = 3 }, + [0x57027587] = { model = "a_c_eagle_01", hash = 0x57027587, outfits = 4 }, + [0x31952A0B] = { model = "a_c_egret_01", hash = 0x31952A0B, outfits = 3 }, + [0x87895317] = { model = "a_c_elk_01", hash = 0x87895317, outfits = 8 }, + [0x6F4C2A6C] = { model = "a_c_fishbluegil_01_ms", hash = 0x6F4C2A6C, outfits = 2 }, + [0x81D4FAB9] = { model = "a_c_fishbluegil_01_sm", hash = 0x81D4FAB9, outfits = 2 }, + [0x29F1CB9D] = { model = "a_c_fishbullheadcat_01_ms", hash = 0x29F1CB9D, outfits = 2 }, + [0x5905A300] = { model = "a_c_fishbullheadcat_01_sm", hash = 0x5905A300, outfits = 2 }, + [0xB97D1BFD] = { model = "a_c_fishchainpickerel_01_ms", hash = 0xB97D1BFD, outfits = 2 }, + [0x0FBEB3FF] = { model = "a_c_fishchainpickerel_01_sm", hash = 0x0FBEB3FF, outfits = 2 }, + [0x5BAEE06E] = { model = "a_c_fishchannelcatfish_01_lg", hash = 0x5BAEE06E, outfits = 3 }, + [0x876CAA75] = { model = "a_c_fishchannelcatfish_01_xl", hash = 0x876CAA75, outfits = 2 }, + [0xEE111F34] = { model = "a_c_fishlakesturgeon_01_lg", hash = 0xEE111F34, outfits = 4 }, + [0x1BA2A2E8] = { model = "a_c_fishlargemouthbass_01_lg", hash = 0x1BA2A2E8, outfits = 2 }, + [0x0750FD65] = { model = "a_c_fishlargemouthbass_01_ms", hash = 0x0750FD65, outfits = 2 }, + [0xD5931B3F] = { model = "a_c_fishlongnosegar_01_lg", hash = 0xD5931B3F, outfits = 6 }, + [0xA3660A8D] = { model = "a_c_fishmuskie_01_lg", hash = 0xA3660A8D, outfits = 5 }, + [0x298C8600] = { model = "a_c_fishnorthernpike_01_lg", hash = 0x298C8600, outfits = 7 }, + [0xE50B98F0] = { model = "a_c_fishperch_01_ms", hash = 0xE50B98F0, outfits = 2 }, + [0x2A1C1C20] = { model = "a_c_fishperch_01_sm", hash = 0x2A1C1C20, outfits = 1 }, + [0x080814B2] = { model = "a_c_fishrainbowtrout_01_lg", hash = 0x080814B2, outfits = 2 }, + [0x1D373E24] = { model = "a_c_fishrainbowtrout_01_ms", hash = 0x1D373E24, outfits = 1 }, + [0xF1813D52] = { model = "a_c_fishredfinpickerel_01_ms", hash = 0xF1813D52, outfits = 2 }, + [0x1E9790B6] = { model = "a_c_fishredfinpickerel_01_sm", hash = 0x1E9790B6, outfits = 2 }, + [0x89E3C580] = { model = "a_c_fishrockbass_01_ms", hash = 0x89E3C580, outfits = 2 }, + [0x00173415] = { model = "a_c_fishrockbass_01_sm", hash = 0x00173415, outfits = 4 }, + [0x206B229A] = { model = "a_c_fishsalmonsockeye_01_lg", hash = 0x206B229A, outfits = 2 }, + [0x657C2DBF] = { model = "a_c_fishsalmonsockeye_01_ml", hash = 0x657C2DBF, outfits = 1 }, + [0x027C67C1] = { model = "a_c_fishsalmonsockeye_01_ms", hash = 0x027C67C1, outfits = 2 }, + [0x8FACF62D] = { model = "a_c_fishsmallmouthbass_01_lg", hash = 0x8FACF62D, outfits = 2 }, + [0x6EE63594] = { model = "a_c_fishsmallmouthbass_01_ms", hash = 0x6EE63594, outfits = 2 }, + [0x0F0F6D94] = { model = "a_c_fox_01", hash = 0x0F0F6D94, outfits = 7 }, + [0xC884C578] = { model = "a_c_frogbull_01", hash = 0xC884C578, outfits = 2 }, + [0x1B439EDF] = { model = "a_c_gilamonster_01", hash = 0x1B439EDF, outfits = 3 }, + [0xD3105A6D] = { model = "a_c_goat_01", hash = 0xD3105A6D, outfits = 3 }, + [0x2B1B02CA] = { model = "a_c_goosecanada_01", hash = 0x2B1B02CA, outfits = 3 }, + [0x80184D63] = { model = "a_c_hawk_01", hash = 0x80184D63, outfits = 3 }, + [0x41462AB0] = { model = "a_c_heron_01", hash = 0x41462AB0, outfits = 3 }, + [0x23685521] = { model = "a_c_horsemulepainted_01", hash = 0x23685521, outfits = 2 }, + [0xB6A7CE35] = { model = "a_c_horsemule_01", hash = 0xB6A7CE35, outfits = 2 }, + [0xEA523E18] = { model = "p_c_horse_01", hash = 0xEA523E18, outfits = 1 }, + [0x8AF8EE20] = { model = "a_c_horse_americanpaint_greyovero", hash = 0x8AF8EE20, outfits = 1 }, + [0xE52CB9B2] = { model = "a_c_horse_americanpaint_overo", hash = 0xE52CB9B2, outfits = 4 }, + [0x6ADB82FE] = { model = "a_c_horse_americanpaint_splashedwhite", hash = 0x6ADB82FE, outfits = 1 }, + [0x9BE270D3] = { model = "a_c_horse_americanpaint_tobiano", hash = 0x9BE270D3, outfits = 3 }, + [0xB57D0193] = { model = "a_c_horse_americanstandardbred_black", hash = 0xB57D0193, outfits = 1 }, + [0xED07737A] = { model = "a_c_horse_americanstandardbred_buckskin", hash = 0xED07737A, outfits = 2 }, + [0x703EBD85] = { model = "a_c_horse_americanstandardbred_lightbuckskin", hash = 0x703EBD85, outfits = 5 }, + [0x0348B323] = { model = "a_c_horse_americanstandardbred_palominodapple", hash = 0x0348B323, outfits = 2 }, + [0xE4AD6760] = { model = "a_c_horse_americanstandardbred_silvertailbuckskin", hash = 0xE4AD6760, outfits = 1 }, + [0xE57FC660] = { model = "a_c_horse_andalusian_darkbay", hash = 0xE57FC660, outfits = 1 }, + [0x2A100154] = { model = "a_c_horse_andalusian_perlino", hash = 0x2A100154, outfits = 1 }, + [0x2C80A080] = { model = "a_c_horse_andalusian_rosegray", hash = 0x2C80A080, outfits = 3 }, + [0xC2B8CE6B] = { model = "a_c_horse_appaloosa_blacksnowflake", hash = 0xC2B8CE6B, outfits = 2 }, + [0x7EF6A7DC] = { model = "a_c_horse_appaloosa_blanket", hash = 0x7EF6A7DC, outfits = 1 }, + [0xC2A67972] = { model = "a_c_horse_appaloosa_brownleopard", hash = 0xC2A67972, outfits = 1 }, + [0x2405C422] = { model = "a_c_horse_appaloosa_fewspotted_pc", hash = 0x2405C422, outfits = 2 }, + [0xBC030D85] = { model = "a_c_horse_appaloosa_leopard", hash = 0xBC030D85, outfits = 1 }, + [0xA353367A] = { model = "a_c_horse_appaloosa_leopardblanket", hash = 0xA353367A, outfits = 2 }, + [0x88D6A59E] = { model = "a_c_horse_arabian_black", hash = 0x88D6A59E, outfits = 1 }, + [0x05052866] = { model = "a_c_horse_arabian_grey", hash = 0x05052866, outfits = 1 }, + [0x5933FD24] = { model = "a_c_horse_arabian_redchestnut", hash = 0x5933FD24, outfits = 1 }, + [0xA52D4FC0] = { model = "a_c_horse_arabian_redchestnut_pc", hash = 0xA52D4FC0, outfits = 1 }, + [0xE7F3880C] = { model = "a_c_horse_arabian_rosegreybay", hash = 0xE7F3880C, outfits = 1 }, + [0x5DFCD1F9] = { model = "a_c_horse_arabian_warpedbrindle_pc", hash = 0x5DFCD1F9, outfits = 1 }, + [0xC8DA3400] = { model = "a_c_horse_arabian_white", hash = 0xC8DA3400, outfits = 4 }, + [0xA3C3F4C6] = { model = "a_c_horse_ardennes_bayroan", hash = 0xA3C3F4C6, outfits = 1 }, + [0x8739A629] = { model = "a_c_horse_ardennes_irongreyroan", hash = 0x8739A629, outfits = 1 }, + [0xDA23037A] = { model = "a_c_horse_ardennes_strawberryroan", hash = 0xDA23037A, outfits = 1 }, + [0xDD04A33F] = { model = "a_c_horse_belgian_blondchestnut", hash = 0xDD04A33F, outfits = 1 }, + [0x37DD4055] = { model = "a_c_horse_belgian_mealychestnut", hash = 0x37DD4055, outfits = 1 }, + [0xDB18CA2B] = { model = "a_c_horse_breton_grullodun", hash = 0xDB18CA2B, outfits = 1 }, + [0xAA19E1E1] = { model = "a_c_horse_breton_mealydapplebay", hash = 0xAA19E1E1, outfits = 1 }, + [0xD74136AD] = { model = "a_c_horse_breton_redroan", hash = 0xD74136AD, outfits = 1 }, + [0x5C0D2B7A] = { model = "a_c_horse_breton_sealbrown", hash = 0x5C0D2B7A, outfits = 1 }, + [0x1417E305] = { model = "a_c_horse_breton_sorrel", hash = 0x1417E305, outfits = 1 }, + [0x999E5DCF] = { model = "a_c_horse_breton_steelgrey", hash = 0x999E5DCF, outfits = 1 }, + [0x20C6D093] = { model = "a_c_horse_buell_warvets", hash = 0x20C6D093, outfits = 4 }, + [0x99770A35] = { model = "a_c_horse_criollo_baybrindle", hash = 0x99770A35, outfits = 1 }, + [0x2DACB4A3] = { model = "a_c_horse_criollo_bayframeovero", hash = 0x2DACB4A3, outfits = 1 }, + [0x6CCCC38E] = { model = "a_c_horse_criollo_blueroanovero", hash = 0x6CCCC38E, outfits = 1 }, + [0x43DB06BB] = { model = "a_c_horse_criollo_dun", hash = 0x43DB06BB, outfits = 1 }, + [0x7FF9E2AE] = { model = "a_c_horse_criollo_marblesabino", hash = 0x7FF9E2AE, outfits = 1 }, + [0x1E367ED2] = { model = "a_c_horse_criollo_sorrelovero", hash = 0x1E367ED2, outfits = 1 }, + [0x28F9976A] = { model = "a_c_horse_dutchwarmblood_chocolateroan", hash = 0x28F9976A, outfits = 1 }, + [0x33598622] = { model = "a_c_horse_dutchwarmblood_sealbrown", hash = 0x33598622, outfits = 1 }, + [0x5EF3CBDA] = { model = "a_c_horse_dutchwarmblood_sootybuckskin", hash = 0x5EF3CBDA, outfits = 1 }, + [0xAF2695EE] = { model = "a_c_horse_eagleflies", hash = 0xAF2695EE, outfits = 2 }, + [0x970E1781] = { model = "a_c_horse_gang_bill", hash = 0x970E1781, outfits = 2 }, + [0xDF55F5E6] = { model = "a_c_horse_gang_charles", hash = 0xDF55F5E6, outfits = 4 }, + [0x6B54E5D1] = { model = "a_c_horse_gang_charles_endlesssummer", hash = 0x6B54E5D1, outfits = 2 }, + [0xAD14C46D] = { model = "a_c_horse_gang_dutch", hash = 0xAD14C46D, outfits = 2 }, + [0xD977CC20] = { model = "a_c_horse_gang_hosea", hash = 0xD977CC20, outfits = 2 }, + [0xB998E803] = { model = "a_c_horse_gang_javier", hash = 0xB998E803, outfits = 2 }, + [0x9E19AA66] = { model = "a_c_horse_gang_john", hash = 0x9E19AA66, outfits = 2 }, + [0xA762AEDD] = { model = "a_c_horse_gang_karen", hash = 0xA762AEDD, outfits = 2 }, + [0x43F0DC62] = { model = "a_c_horse_gang_kieran", hash = 0x43F0DC62, outfits = 2 }, + [0xC132BAD0] = { model = "a_c_horse_gang_lenny", hash = 0xC132BAD0, outfits = 2 }, + [0xC7DE4819] = { model = "a_c_horse_gang_micah", hash = 0xC7DE4819, outfits = 2 }, + [0xBF5D6994] = { model = "a_c_horse_gang_sadie", hash = 0xBF5D6994, outfits = 2 }, + [0xDDAE9AEA] = { model = "a_c_horse_gang_sadie_endlesssummer", hash = 0xDDAE9AEA, outfits = 2 }, + [0x9997DF40] = { model = "a_c_horse_gang_sean", hash = 0x9997DF40, outfits = 2 }, + [0x3A5BC787] = { model = "a_c_horse_gang_trelawney", hash = 0x3A5BC787, outfits = 2 }, + [0x68F5058D] = { model = "a_c_horse_gang_uncle", hash = 0x68F5058D, outfits = 2 }, + [0x1165B6EB] = { model = "a_c_horse_gang_uncle_endlesssummer", hash = 0x1165B6EB, outfits = 2 }, + [0xCF246898] = { model = "a_c_horse_hungarianhalfbred_darkdapplegrey", hash = 0xCF246898, outfits = 1 }, + [0x65A30467] = { model = "a_c_horse_hungarianhalfbred_flaxenchestnut", hash = 0x65A30467, outfits = 1 }, + [0x8EF089E3] = { model = "a_c_horse_hungarianhalfbred_liverchestnut", hash = 0x8EF089E3, outfits = 1 }, + [0xFB55A30A] = { model = "a_c_horse_hungarianhalfbred_piebaldtobiano", hash = 0xFB55A30A, outfits = 2 }, + [0x8504B2AA] = { model = "a_c_horse_john_endlesssummer", hash = 0x8504B2AA, outfits = 2 }, + [0x9FA968B5] = { model = "a_c_horse_kladruber_black", hash = 0x9FA968B5, outfits = 1 }, + [0x8FDFD716] = { model = "a_c_horse_kladruber_cremello", hash = 0x8FDFD716, outfits = 1 }, + [0xD96F40C6] = { model = "a_c_horse_kladruber_dapplerosegrey", hash = 0xD96F40C6, outfits = 1 }, + [0xC7103AB0] = { model = "a_c_horse_kladruber_grey", hash = 0xC7103AB0, outfits = 1 }, + [0x91F36592] = { model = "a_c_horse_kladruber_silver", hash = 0x91F36592, outfits = 1 }, + [0xF867D7E4] = { model = "a_c_horse_kladruber_white", hash = 0xF867D7E4, outfits = 1 }, + [0xB0004639] = { model = "a_c_horse_missourifoxtrotter_amberchampagne", hash = 0xB0004639, outfits = 1 }, + [0xE6EE2A0B] = { model = "a_c_horse_missourifoxtrotter_sablechampagne", hash = 0xE6EE2A0B, outfits = 2 }, + [0xBB31267C] = { model = "a_c_horse_missourifoxtrotter_silverdapplepinto", hash = 0xBB31267C, outfits = 1 }, + [0x790B9F4B] = { model = "a_c_horse_morgan_bay", hash = 0x790B9F4B, outfits = 1 }, + [0x4955CBE3] = { model = "a_c_horse_morgan_bayroan", hash = 0x4955CBE3, outfits = 1 }, + [0xC21AB789] = { model = "a_c_horse_morgan_flaxenchestnut", hash = 0xC21AB789, outfits = 1 }, + [0xC0A1CE3D] = { model = "a_c_horse_morgan_liverchestnut_pc", hash = 0xC0A1CE3D, outfits = 1 }, + [0x05C70C99] = { model = "a_c_horse_morgan_palomino", hash = 0x05C70C99, outfits = 1 }, + [0x30331B80] = { model = "a_c_horse_mp_mangy_backup", hash = 0x30331B80, outfits = 7 }, + [0x36AE742C] = { model = "a_c_horse_murfreebrood_mange_01", hash = 0x36AE742C, outfits = 2 }, + [0xC97A99C6] = { model = "a_c_horse_murfreebrood_mange_02", hash = 0xC97A99C6, outfits = 2 }, + [0xDC4D3F6B] = { model = "a_c_horse_murfreebrood_mange_03", hash = 0xDC4D3F6B, outfits = 2 }, + [0x1C8CC068] = { model = "a_c_horse_mustang_goldendun", hash = 0x1C8CC068, outfits = 2 }, + [0xB9A41AA7] = { model = "a_c_horse_mustang_grullodun", hash = 0xB9A41AA7, outfits = 1 }, + [0x029CBA4A] = { model = "a_c_horse_mustang_tigerstripedbay", hash = 0x029CBA4A, outfits = 1 }, + [0x7E4DF66E] = { model = "a_c_horse_mustang_wildbay", hash = 0x7E4DF66E, outfits = 1 }, + [0x7FE4BEC5] = { model = "a_c_horse_nokota_blueroan", hash = 0x7FE4BEC5, outfits = 2 }, + [0x0660E640] = { model = "a_c_horse_nokota_reversedappleroan", hash = 0x0660E640, outfits = 1 }, + [0xB4CA3CB2] = { model = "a_c_horse_nokota_whiteroan", hash = 0xB4CA3CB2, outfits = 2 }, + [0x3F8A66B8] = { model = "a_c_horse_shire_darkbay", hash = 0x3F8A66B8, outfits = 1 }, + [0x0225752B] = { model = "a_c_horse_shire_lightgrey", hash = 0x0225752B, outfits = 1 }, + [0x2FD9844A] = { model = "a_c_horse_shire_ravenblack", hash = 0x2FD9844A, outfits = 1 }, + [0x9B099788] = { model = "a_c_horse_suffolkpunch_redchestnut", hash = 0x9B099788, outfits = 1 }, + [0xA0A6C640] = { model = "a_c_horse_suffolkpunch_sorrel", hash = 0xA0A6C640, outfits = 1 }, + [0x3FE5B95B] = { model = "a_c_horse_tennesseewalker_blackrabicano", hash = 0x3FE5B95B, outfits = 1 }, + [0x400B3937] = { model = "a_c_horse_tennesseewalker_chestnut", hash = 0x400B3937, outfits = 1 }, + [0xFAE16B63] = { model = "a_c_horse_tennesseewalker_dapplebay", hash = 0xFAE16B63, outfits = 1 }, + [0x9C978CB3] = { model = "a_c_horse_tennesseewalker_flaxenroan", hash = 0x9C978CB3, outfits = 1 }, + [0x3E85EE41] = { model = "a_c_horse_tennesseewalker_goldpalomino_pc", hash = 0x3E85EE41, outfits = 1 }, + [0x1A9FA880] = { model = "a_c_horse_tennesseewalker_mahoganybay", hash = 0x1A9FA880, outfits = 1 }, + [0xD4A3E715] = { model = "a_c_horse_tennesseewalker_redroan", hash = 0xD4A3E715, outfits = 1 }, + [0x7E67718B] = { model = "a_c_horse_thoroughbred_blackchestnut", hash = 0x7E67718B, outfits = 1 }, + [0x8D4BE5DE] = { model = "a_c_horse_thoroughbred_bloodbay", hash = 0x8D4BE5DE, outfits = 1 }, + [0xE0A34BD3] = { model = "a_c_horse_thoroughbred_brindle", hash = 0xE0A34BD3, outfits = 1 }, + [0x6EF6C345] = { model = "a_c_horse_thoroughbred_dapplegrey", hash = 0x6EF6C345, outfits = 3 }, + [0x35A71C98] = { model = "a_c_horse_thoroughbred_reversedappleblack", hash = 0x35A71C98, outfits = 1 }, + [0x4394FBA4] = { model = "a_c_horse_turkoman_darkbay", hash = 0x4394FBA4, outfits = 1 }, + [0x6572D46D] = { model = "a_c_horse_turkoman_gold", hash = 0x6572D46D, outfits = 1 }, + [0xA06225BC] = { model = "a_c_horse_turkoman_silver", hash = 0xA06225BC, outfits = 1 }, + [0xF31B7859] = { model = "a_c_horse_winter02_01", hash = 0xF31B7859, outfits = 2 }, + [0xDCA6ADCB] = { model = "a_c_iguanadesert_01", hash = 0xDCA6ADCB, outfits = 3 }, + [0x917D4CD7] = { model = "a_c_iguana_01", hash = 0x917D4CD7, outfits = 1 }, + [0x6868D59D] = { model = "a_c_javelina_01", hash = 0x6868D59D, outfits = 3 }, + [0xC68B3C66] = { model = "a_c_lionmangy_01", hash = 0xC68B3C66, outfits = 2 }, + [0x17099D5E] = { model = "a_c_loon_01", hash = 0x17099D5E, outfits = 3 }, + [0xBE871B28] = { model = "a_c_moose_01", hash = 0xBE871B28, outfits = 7 }, + [0xBC61ABDD] = { model = "a_c_muskrat_01", hash = 0xBC61ABDD, outfits = 3 }, + [0xB25884A5] = { model = "a_c_oriole_01", hash = 0xB25884A5, outfits = 3 }, + [0xCCA5E0B0] = { model = "a_c_owl_01", hash = 0xCCA5E0B0, outfits = 3 }, + [0x21294FD8] = { model = "a_c_ox_01", hash = 0x21294FD8, outfits = 2 }, + [0x629DDF49] = { model = "a_c_panther_01", hash = 0x629DDF49, outfits = 5 }, + [0x94DD14B8] = { model = "a_c_parrot_01", hash = 0x94DD14B8, outfits = 3 }, + [0x4B751E5C] = { model = "a_c_pelican_01", hash = 0x4B751E5C, outfits = 3 }, + [0x546B65F9] = { model = "a_c_pheasant_01", hash = 0x546B65F9, outfits = 3 }, + [0x06A20728] = { model = "a_c_pigeon", hash = 0x06A20728, outfits = 3 }, + [0x3C0BFE72] = { model = "a_c_pig_01", hash = 0x3C0BFE72, outfits = 3 }, + [0xABA8FB1F] = { model = "a_c_possum_01", hash = 0xABA8FB1F, outfits = 3 }, + [0x7BF5C03E] = { model = "a_c_prairiechicken_01", hash = 0x7BF5C03E, outfits = 2 }, + [0x68A4FCCD] = { model = "a_c_pronghorn_01", hash = 0x68A4FCCD, outfits = 20 }, + [0x7D7ED3F4] = { model = "a_c_quail_01", hash = 0x7D7ED3F4, outfits = 3 }, + [0xDFB55C81] = { model = "a_c_rabbit_01", hash = 0xDFB55C81, outfits = 5 }, + [0x56EF91BF] = { model = "a_c_raccoon_01", hash = 0x56EF91BF, outfits = 7 }, + [0x3AFD2922] = { model = "a_c_rat_01", hash = 0x3AFD2922, outfits = 5 }, + [0xDDB5012B] = { model = "a_c_raven_01", hash = 0xDDB5012B, outfits = 2 }, + [0xE42EE8E8] = { model = "a_c_redfootedbooby_01", hash = 0xE42EE8E8, outfits = 3 }, + [0xB7D8866C] = { model = "a_c_robin_01", hash = 0xB7D8866C, outfits = 1 }, + [0x789C821E] = { model = "a_c_rooster_01", hash = 0x789C821E, outfits = 3 }, + [0xBFD5C7DF] = { model = "a_c_roseatespoonbill_01", hash = 0xBFD5C7DF, outfits = 3 }, + [0xF62ADA90] = { model = "a_c_seagull_01", hash = 0xF62ADA90, outfits = 3 }, + [0xCDE2619F] = { model = "a_c_sharkhammerhead_01", hash = 0xCDE2619F, outfits = 3 }, + [0x06C3F072] = { model = "a_c_sharktiger", hash = 0x06C3F072, outfits = 3 }, + [0x02679F5C] = { model = "a_c_sheep_01", hash = 0x02679F5C, outfits = 8 }, + [0xB7C8F704] = { model = "a_c_skunk_01", hash = 0xB7C8F704, outfits = 4 }, + [0x3276FDB9] = { model = "a_c_snakeblacktailrattle_01", hash = 0x3276FDB9, outfits = 2 }, + [0x8587FD0F] = { model = "a_c_snakeblacktailrattle_pelt_01", hash = 0x8587FD0F, outfits = 2 }, + [0x57456DF5] = { model = "a_c_snakeferdelance_01", hash = 0x57456DF5, outfits = 3 }, + [0x2C201567] = { model = "a_c_snakeferdelance_pelt_01", hash = 0x2C201567, outfits = 3 }, + [0x97D56B7E] = { model = "a_c_snakeredboa10ft_01", hash = 0x97D56B7E, outfits = 1 }, + [0x9547268E] = { model = "a_c_snakeredboa_01", hash = 0x9547268E, outfits = 3 }, + [0x47B7B713] = { model = "a_c_snakeredboa_pelt_01", hash = 0x47B7B713, outfits = 3 }, + [0xF24F3CA3] = { model = "a_c_snakewater_01", hash = 0xF24F3CA3, outfits = 3 }, + [0xF887B8E8] = { model = "a_c_snakewater_pelt_01", hash = 0xF887B8E8, outfits = 3 }, + [0x207D15FA] = { model = "a_c_snake_01", hash = 0x207D15FA, outfits = 4 }, + [0xA001C8EC] = { model = "a_c_snake_pelt_01", hash = 0xA001C8EC, outfits = 4 }, + [0x8E1B9425] = { model = "a_c_songbird_01", hash = 0x8E1B9425, outfits = 2 }, + [0xC2B75D41] = { model = "a_c_sparrow_01", hash = 0xC2B75D41, outfits = 3 }, + [0x5758D069] = { model = "a_c_squirrel_01", hash = 0x5758D069, outfits = 6 }, + [0x598F9219] = { model = "a_c_toad_01", hash = 0x598F9219, outfits = 5 }, + [0x881F1C91] = { model = "a_c_turkeywild_01", hash = 0x881F1C91, outfits = 3 }, + [0xE438917C] = { model = "a_c_turkey_01", hash = 0xE438917C, outfits = 3 }, + [0xF61A353F] = { model = "a_c_turkey_02", hash = 0xF61A353F, outfits = 3 }, + [0xA97D7D0C] = { model = "a_c_turtlesea_01", hash = 0xA97D7D0C, outfits = 1 }, + [0xE7B286BA] = { model = "a_c_turtlesnapping_01", hash = 0xE7B286BA, outfits = 3 }, + [0x41D8593C] = { model = "a_c_vulture_01", hash = 0x41D8593C, outfits = 4 }, + [0xBBD91DDA] = { model = "A_C_Wolf", hash = 0xBBD91DDA, outfits = 9 }, + [0xCB391381] = { model = "a_c_wolf_medium", hash = 0xCB391381, outfits = 9 }, + [0xCE924A27] = { model = "a_c_wolf_small", hash = 0xCE924A27, outfits = 5 }, + [0x1E6ABEAD] = { model = "a_c_woodpecker_01", hash = 0x1E6ABEAD, outfits = 1 }, + [0x2B7AD8CD] = { model = "a_c_woodpecker_02", hash = 0x2B7AD8CD, outfits = 1 }, + [0xDCA942B9] = { model = "re_lostdog_teens_01", hash = 0xDCA942B9, outfits = 2 }, + [0x3C0E4E87] = { model = "a_c_horse_norfolkroadster_black", hash = 0x3C0E4E87, outfits = 1 }, + [0xF6ACED8C] = { model = "a_c_horse_norfolkroadster_dappledbuckskin", hash = 0xF6ACED8C, outfits = 1 }, + [0xAB13C4C9] = { model = "a_c_horse_norfolkroadster_piebaldroan", hash = 0xAB13C4C9, outfits = 1 }, + [0xF30EC4B4] = { model = "a_c_horse_norfolkroadster_rosegrey", hash = 0xF30EC4B4, outfits = 1 }, + [0x3D5A780F] = { model = "a_c_horse_norfolkroadster_speckledgrey", hash = 0x3D5A780F, outfits = 1 }, + [0x501BFB75] = { model = "a_c_horse_norfolkroadster_spottedtricolor", hash = 0x501BFB75, outfits = 1 }, + [0xBBE15017] = { model = "a_c_horse_gypsycob_palominoblagdon", hash = 0xBBE15017, outfits = 1 }, + [0xE8BEFB8D] = { model = "a_c_horse_gypsycob_piebald", hash = 0xE8BEFB8D, outfits = 1 }, + [0xE71EBBF9] = { model = "a_c_horse_gypsycob_skewbald", hash = 0xE71EBBF9, outfits = 1 }, + [0xA8EE5C74] = { model = "a_c_horse_gypsycob_splashedbay", hash = 0xA8EE5C74, outfits = 1 }, + [0x57FA17A0] = { model = "a_c_horse_gypsycob_splashedpiebald", hash = 0x57FA17A0, outfits = 1 }, + [0x41D65902] = { model = "a_c_horse_gypsycob_whiteblagdon", hash = 0x41D65902, outfits = 1 }, + [0x52AC7C75] = { model = "a_c_horse_missourifoxtrotter_blacktovero", hash = 0x52AC7C75, outfits = 1 }, + [0x1E31107B] = { model = "a_c_horse_missourifoxtrotter_blueroan", hash = 0x1E31107B, outfits = 1 }, + [0x797EDE19] = { model = "a_c_horse_missourifoxtrotter_buckskinbrindle", hash = 0x797EDE19, outfits = 1 }, + [0x5F5BC124] = { model = "a_c_horse_missourifoxtrotter_dapplegrey", hash = 0x5F5BC124, outfits = 1 }, + [0x707C8EBE] = { model = "a_c_horse_mustang_blackovero", hash = 0x707C8EBE, outfits = 2 }, + [0x62121AEC] = { model = "a_c_horse_mustang_buckskin", hash = 0x62121AEC, outfits = 2 }, + [0x44D40E4A] = { model = "a_c_horse_mustang_chestnuttovero", hash = 0x44D40E4A, outfits = 2 }, + [0x0471D5D2] = { model = "a_c_horse_mustang_reddunovero", hash = 0x0471D5D2, outfits = 2 }, + [0x88828382] = { model = "a_c_horse_turkoman_black", hash = 0x88828382, outfits = 1 }, + [0x29AD5E2F] = { model = "a_c_horse_turkoman_chestnut", hash = 0x29AD5E2F, outfits = 1 }, + [0x5A4153F2] = { model = "a_c_horse_turkoman_grey", hash = 0x5A4153F2, outfits = 1 }, + [0x2A0483C6] = { model = "a_c_horse_turkoman_perlino", hash = 0x2A0483C6, outfits = 1 }, +} - return entry -end +Animals.Birds = { + [0x5E5A761C] = { model = "a_c_bluejay_01", hash = 0x5E5A761C, outfits = 2 }, + [0x47E1D597] = { model = "a_c_californiacondor_01", hash = 0x47E1D597, outfits = 3 }, + [0x6A640A7B] = { model = "a_c_cardinal_01", hash = 0x6A640A7B, outfits = 3 }, + [0x681E834B] = { model = "a_c_carolinaparakeet_01", hash = 0x681E834B, outfits = 1 }, + [0xEE893817] = { model = "a_c_cedarwaxwing_01", hash = 0xEE893817, outfits = 3 }, + [0x8506531D] = { model = "a_c_chicken_01", hash = 0x8506531D, outfits = 3 }, + [0x846E8AF0] = { model = "a_c_cormorant_01", hash = 0x846E8AF0, outfits = 2 }, + [0xDE608788] = { model = "a_c_cranewhooping_01", hash = 0xDE608788, outfits = 2 }, + [0x05DF8F2C] = { model = "a_c_crow_01", hash = 0x05DF8F2C, outfits = 1 }, + [0xC42E08CB] = { model = "a_c_duck_01", hash = 0xC42E08CB, outfits = 3 }, + [0x57027587] = { model = "a_c_eagle_01", hash = 0x57027587, outfits = 4 }, + [0x31952A0B] = { model = "a_c_egret_01", hash = 0x31952A0B, outfits = 3 }, + [0x2B1B02CA] = { model = "a_c_goosecanada_01", hash = 0x2B1B02CA, outfits = 3 }, + [0x80184D63] = { model = "a_c_hawk_01", hash = 0x80184D63, outfits = 3 }, + [0x41462AB0] = { model = "a_c_heron_01", hash = 0x41462AB0, outfits = 3 }, + [0x17099D5E] = { model = "a_c_loon_01", hash = 0x17099D5E, outfits = 3 }, + [0xB25884A5] = { model = "a_c_oriole_01", hash = 0xB25884A5, outfits = 3 }, + [0xCCA5E0B0] = { model = "a_c_owl_01", hash = 0xCCA5E0B0, outfits = 3 }, + [0x94DD14B8] = { model = "a_c_parrot_01", hash = 0x94DD14B8, outfits = 3 }, + [0x4B751E5C] = { model = "a_c_pelican_01", hash = 0x4B751E5C, outfits = 3 }, + [0x546B65F9] = { model = "a_c_pheasant_01", hash = 0x546B65F9, outfits = 3 }, + [0x06A20728] = { model = "a_c_pigeon", hash = 0x06A20728, outfits = 3 }, + [0x7BF5C03E] = { model = "a_c_prairiechicken_01", hash = 0x7BF5C03E, outfits = 2 }, + [0x7D7ED3F4] = { model = "a_c_quail_01", hash = 0x7D7ED3F4, outfits = 3 }, + [0xDDB5012B] = { model = "a_c_raven_01", hash = 0xDDB5012B, outfits = 2 }, + [0xB7D8866C] = { model = "a_c_robin_01", hash = 0xB7D8866C, outfits = 1 }, + [0x789C821E] = { model = "a_c_rooster_01", hash = 0x789C821E, outfits = 3 }, + [0xBFD5C7DF] = { model = "a_c_roseatespoonbill_01", hash = 0xBFD5C7DF, outfits = 3 }, + [0xF62ADA90] = { model = "a_c_seagull_01", hash = 0xF62ADA90, outfits = 3 }, + [0x8E1B9425] = { model = "a_c_songbird_01", hash = 0x8E1B9425, outfits = 2 }, + [0xC2B75D41] = { model = "a_c_sparrow_01", hash = 0xC2B75D41, outfits = 3 }, + [0x881F1C91] = { model = "a_c_turkeywild_01", hash = 0x881F1C91, outfits = 3 }, + [0xE438917C] = { model = "a_c_turkey_01", hash = 0xE438917C, outfits = 3 }, + [0xF61A353F] = { model = "a_c_turkey_02", hash = 0xF61A353F, outfits = 3 }, + [0x41D8593C] = { model = "a_c_vulture_01", hash = 0x41D8593C, outfits = 4 }, + [0x1E6ABEAD] = { model = "a_c_woodpecker_01", hash = 0x1E6ABEAD, outfits = 1 }, + [0x2B7AD8CD] = { model = "a_c_woodpecker_02", hash = 0x2B7AD8CD, outfits = 1 }, +} -Animals.Horses = { - -- [`a_c_horse_arabian_white`] = createEntry("a_c_horse_arabian_white"), +Animals.Dogs = { + [0x40E01848] = { model = "a_c_dogamericanfoxhound_01", hash = 0x40E01848, outfits = 5 }, + [0xAE6C236C] = { model = "a_c_dogaustraliansheperd_01", hash = 0xAE6C236C, outfits = 3 }, + [0x2552B009] = { model = "a_c_dogbluetickcoonhound_01", hash = 0x2552B009, outfits = 8 }, + [0xC25FE171] = { model = "a_c_dogcatahoulacur_01", hash = 0xC25FE171, outfits = 7 }, + [0xE8C446CB] = { model = "a_c_dogchesbayretriever_01", hash = 0xE8C446CB, outfits = 3 }, + [0x40D2BCBC] = { model = "a_c_dogcollie_01", hash = 0x40D2BCBC, outfits = 3 }, + [0xC5C5D255] = { model = "a_c_doghobo_01", hash = 0xC5C5D255, outfits = 1 }, + [0x801131EF] = { model = "a_c_doghound_01", hash = 0x801131EF, outfits = 8 }, + [0x62F7C1B3] = { model = "a_c_doghusky_01", hash = 0x62F7C1B3, outfits = 3 }, + [0xAD779EB4] = { model = "a_c_doglab_01", hash = 0xAD779EB4, outfits = 7 }, + [0xCA89FC80] = { model = "a_c_doglion_01", hash = 0xCA89FC80, outfits = 2 }, + [0x40CAC0E7] = { model = "a_c_dogpoodle_01", hash = 0x40CAC0E7, outfits = 3 }, + [0x5EDF32B4] = { model = "a_c_dogrufus_01", hash = 0x5EDF32B4, outfits = 1 }, + [0x3B313FCE] = { model = "a_c_dogstreet_01", hash = 0x3B313FCE, outfits = 3 }, + [0x387E129A] = { model = "re_lostdog_dogs_01", hash = 0x387E129A, outfits = 4 }, + [0xDCA942B9] = { model = "re_lostdog_teens_01", hash = 0xDCA942B9, outfits = 2 }, } -Animals.Domestic = { - -- [`a_c_dogamericanfoxhound_01`] = createEntry("a_c_dogamericanfoxhound_01"), +Animals.Farm = { + [0xDE99DA6D] = { model = "a_c_boarlegendary_01", hash = 0xDE99DA6D, outfits = 1 }, + [0x78EBDA79] = { model = "a_c_boar_01", hash = 0x78EBDA79, outfits = 4 }, + [0x0BAA25A3] = { model = "a_c_bull_01", hash = 0x0BAA25A3, outfits = 4 }, + [0xFCFA9E1E] = { model = "a_c_cow", hash = 0xFCFA9E1E, outfits = 22 }, + [0x0F0F6D94] = { model = "a_c_fox_01", hash = 0x0F0F6D94, outfits = 7 }, + [0xD3105A6D] = { model = "a_c_goat_01", hash = 0xD3105A6D, outfits = 3 }, + [0x21294FD8] = { model = "a_c_ox_01", hash = 0x21294FD8, outfits = 2 }, + [0x3C0BFE72] = { model = "a_c_pig_01", hash = 0x3C0BFE72, outfits = 3 }, + [0x02679F5C] = { model = "a_c_sheep_01", hash = 0x02679F5C, outfits = 8 }, } -Animals.Wild = { - -- [`a_c_alligator_01`] = createEntry("a_c_alligator_01"), +Animals.Fish = { + [0x6F4C2A6C] = { model = "a_c_fishbluegil_01_ms", hash = 0x6F4C2A6C, outfits = 2 }, + [0x81D4FAB9] = { model = "a_c_fishbluegil_01_sm", hash = 0x81D4FAB9, outfits = 2 }, + [0x29F1CB9D] = { model = "a_c_fishbullheadcat_01_ms", hash = 0x29F1CB9D, outfits = 2 }, + [0x5905A300] = { model = "a_c_fishbullheadcat_01_sm", hash = 0x5905A300, outfits = 2 }, + [0xB97D1BFD] = { model = "a_c_fishchainpickerel_01_ms", hash = 0xB97D1BFD, outfits = 2 }, + [0x0FBEB3FF] = { model = "a_c_fishchainpickerel_01_sm", hash = 0x0FBEB3FF, outfits = 2 }, + [0x5BAEE06E] = { model = "a_c_fishchannelcatfish_01_lg", hash = 0x5BAEE06E, outfits = 3 }, + [0x876CAA75] = { model = "a_c_fishchannelcatfish_01_xl", hash = 0x876CAA75, outfits = 2 }, + [0xEE111F34] = { model = "a_c_fishlakesturgeon_01_lg", hash = 0xEE111F34, outfits = 4 }, + [0x1BA2A2E8] = { model = "a_c_fishlargemouthbass_01_lg", hash = 0x1BA2A2E8, outfits = 2 }, + [0x0750FD65] = { model = "a_c_fishlargemouthbass_01_ms", hash = 0x0750FD65, outfits = 2 }, + [0xD5931B3F] = { model = "a_c_fishlongnosegar_01_lg", hash = 0xD5931B3F, outfits = 6 }, + [0xA3660A8D] = { model = "a_c_fishmuskie_01_lg", hash = 0xA3660A8D, outfits = 5 }, + [0x298C8600] = { model = "a_c_fishnorthernpike_01_lg", hash = 0x298C8600, outfits = 7 }, + [0xE50B98F0] = { model = "a_c_fishperch_01_ms", hash = 0xE50B98F0, outfits = 2 }, + [0x2A1C1C20] = { model = "a_c_fishperch_01_sm", hash = 0x2A1C1C20, outfits = 1 }, + [0x080814B2] = { model = "a_c_fishrainbowtrout_01_lg", hash = 0x080814B2, outfits = 2 }, + [0x1D373E24] = { model = "a_c_fishrainbowtrout_01_ms", hash = 0x1D373E24, outfits = 1 }, + [0xF1813D52] = { model = "a_c_fishredfinpickerel_01_ms", hash = 0xF1813D52, outfits = 2 }, + [0x1E9790B6] = { model = "a_c_fishredfinpickerel_01_sm", hash = 0x1E9790B6, outfits = 2 }, + [0x89E3C580] = { model = "a_c_fishrockbass_01_ms", hash = 0x89E3C580, outfits = 2 }, + [0x00173415] = { model = "a_c_fishrockbass_01_sm", hash = 0x00173415, outfits = 4 }, + [0x206B229A] = { model = "a_c_fishsalmonsockeye_01_lg", hash = 0x206B229A, outfits = 2 }, + [0x657C2DBF] = { model = "a_c_fishsalmonsockeye_01_ml", hash = 0x657C2DBF, outfits = 1 }, + [0x027C67C1] = { model = "a_c_fishsalmonsockeye_01_ms", hash = 0x027C67C1, outfits = 2 }, + [0x8FACF62D] = { model = "a_c_fishsmallmouthbass_01_lg", hash = 0x8FACF62D, outfits = 2 }, + [0x6EE63594] = { model = "a_c_fishsmallmouthbass_01_ms", hash = 0x6EE63594, outfits = 2 }, } -Animals.Birds = { - -- [`a_c_duck_01`] = createEntry("a_c_duck_01"), +Animals.Horses = { + [0x69A37A7B] = { model = "a_c_donkey_01", hash = 0x69A37A7B, outfits = 8 }, + [0x23685521] = { model = "a_c_horsemulepainted_01", hash = 0x23685521, outfits = 2 }, + [0xB6A7CE35] = { model = "a_c_horsemule_01", hash = 0xB6A7CE35, outfits = 2 }, + [0xEA523E18] = { model = "p_c_horse_01", hash = 0xEA523E18, outfits = 1 }, + [0x8AF8EE20] = { model = "a_c_horse_americanpaint_greyovero", hash = 0x8AF8EE20, outfits = 1 }, + [0xE52CB9B2] = { model = "a_c_horse_americanpaint_overo", hash = 0xE52CB9B2, outfits = 4 }, + [0x6ADB82FE] = { model = "a_c_horse_americanpaint_splashedwhite", hash = 0x6ADB82FE, outfits = 1 }, + [0x9BE270D3] = { model = "a_c_horse_americanpaint_tobiano", hash = 0x9BE270D3, outfits = 3 }, + [0xB57D0193] = { model = "a_c_horse_americanstandardbred_black", hash = 0xB57D0193, outfits = 1 }, + [0xED07737A] = { model = "a_c_horse_americanstandardbred_buckskin", hash = 0xED07737A, outfits = 2 }, + [0x703EBD85] = { model = "a_c_horse_americanstandardbred_lightbuckskin", hash = 0x703EBD85, outfits = 5 }, + [0x0348B323] = { model = "a_c_horse_americanstandardbred_palominodapple", hash = 0x0348B323, outfits = 2 }, + [0xE4AD6760] = { model = "a_c_horse_americanstandardbred_silvertailbuckskin", hash = 0xE4AD6760, outfits = 1 }, + [0xE57FC660] = { model = "a_c_horse_andalusian_darkbay", hash = 0xE57FC660, outfits = 1 }, + [0x2A100154] = { model = "a_c_horse_andalusian_perlino", hash = 0x2A100154, outfits = 1 }, + [0x2C80A080] = { model = "a_c_horse_andalusian_rosegray", hash = 0x2C80A080, outfits = 3 }, + [0xC2B8CE6B] = { model = "a_c_horse_appaloosa_blacksnowflake", hash = 0xC2B8CE6B, outfits = 2 }, + [0x7EF6A7DC] = { model = "a_c_horse_appaloosa_blanket", hash = 0x7EF6A7DC, outfits = 1 }, + [0xC2A67972] = { model = "a_c_horse_appaloosa_brownleopard", hash = 0xC2A67972, outfits = 1 }, + [0x2405C422] = { model = "a_c_horse_appaloosa_fewspotted_pc", hash = 0x2405C422, outfits = 2 }, + [0xBC030D85] = { model = "a_c_horse_appaloosa_leopard", hash = 0xBC030D85, outfits = 1 }, + [0xA353367A] = { model = "a_c_horse_appaloosa_leopardblanket", hash = 0xA353367A, outfits = 2 }, + [0x88D6A59E] = { model = "a_c_horse_arabian_black", hash = 0x88D6A59E, outfits = 1 }, + [0x05052866] = { model = "a_c_horse_arabian_grey", hash = 0x05052866, outfits = 1 }, + [0x5933FD24] = { model = "a_c_horse_arabian_redchestnut", hash = 0x5933FD24, outfits = 1 }, + [0xA52D4FC0] = { model = "a_c_horse_arabian_redchestnut_pc", hash = 0xA52D4FC0, outfits = 1 }, + [0xE7F3880C] = { model = "a_c_horse_arabian_rosegreybay", hash = 0xE7F3880C, outfits = 1 }, + [0x5DFCD1F9] = { model = "a_c_horse_arabian_warpedbrindle_pc", hash = 0x5DFCD1F9, outfits = 1 }, + [0xC8DA3400] = { model = "a_c_horse_arabian_white", hash = 0xC8DA3400, outfits = 4 }, + [0xA3C3F4C6] = { model = "a_c_horse_ardennes_bayroan", hash = 0xA3C3F4C6, outfits = 1 }, + [0x8739A629] = { model = "a_c_horse_ardennes_irongreyroan", hash = 0x8739A629, outfits = 1 }, + [0xDA23037A] = { model = "a_c_horse_ardennes_strawberryroan", hash = 0xDA23037A, outfits = 1 }, + [0xDD04A33F] = { model = "a_c_horse_belgian_blondchestnut", hash = 0xDD04A33F, outfits = 1 }, + [0x37DD4055] = { model = "a_c_horse_belgian_mealychestnut", hash = 0x37DD4055, outfits = 1 }, + [0xDB18CA2B] = { model = "a_c_horse_breton_grullodun", hash = 0xDB18CA2B, outfits = 1 }, + [0xAA19E1E1] = { model = "a_c_horse_breton_mealydapplebay", hash = 0xAA19E1E1, outfits = 1 }, + [0xD74136AD] = { model = "a_c_horse_breton_redroan", hash = 0xD74136AD, outfits = 1 }, + [0x5C0D2B7A] = { model = "a_c_horse_breton_sealbrown", hash = 0x5C0D2B7A, outfits = 1 }, + [0x1417E305] = { model = "a_c_horse_breton_sorrel", hash = 0x1417E305, outfits = 1 }, + [0x999E5DCF] = { model = "a_c_horse_breton_steelgrey", hash = 0x999E5DCF, outfits = 1 }, + [0x20C6D093] = { model = "a_c_horse_buell_warvets", hash = 0x20C6D093, outfits = 4 }, + [0x99770A35] = { model = "a_c_horse_criollo_baybrindle", hash = 0x99770A35, outfits = 1 }, + [0x2DACB4A3] = { model = "a_c_horse_criollo_bayframeovero", hash = 0x2DACB4A3, outfits = 1 }, + [0x6CCCC38E] = { model = "a_c_horse_criollo_blueroanovero", hash = 0x6CCCC38E, outfits = 1 }, + [0x43DB06BB] = { model = "a_c_horse_criollo_dun", hash = 0x43DB06BB, outfits = 1 }, + [0x7FF9E2AE] = { model = "a_c_horse_criollo_marblesabino", hash = 0x7FF9E2AE, outfits = 1 }, + [0x1E367ED2] = { model = "a_c_horse_criollo_sorrelovero", hash = 0x1E367ED2, outfits = 1 }, + [0x28F9976A] = { model = "a_c_horse_dutchwarmblood_chocolateroan", hash = 0x28F9976A, outfits = 1 }, + [0x33598622] = { model = "a_c_horse_dutchwarmblood_sealbrown", hash = 0x33598622, outfits = 1 }, + [0x5EF3CBDA] = { model = "a_c_horse_dutchwarmblood_sootybuckskin", hash = 0x5EF3CBDA, outfits = 1 }, + [0xAF2695EE] = { model = "a_c_horse_eagleflies", hash = 0xAF2695EE, outfits = 2 }, + [0x970E1781] = { model = "a_c_horse_gang_bill", hash = 0x970E1781, outfits = 2 }, + [0xDF55F5E6] = { model = "a_c_horse_gang_charles", hash = 0xDF55F5E6, outfits = 4 }, + [0x6B54E5D1] = { model = "a_c_horse_gang_charles_endlesssummer", hash = 0x6B54E5D1, outfits = 2 }, + [0xAD14C46D] = { model = "a_c_horse_gang_dutch", hash = 0xAD14C46D, outfits = 2 }, + [0xD977CC20] = { model = "a_c_horse_gang_hosea", hash = 0xD977CC20, outfits = 2 }, + [0xB998E803] = { model = "a_c_horse_gang_javier", hash = 0xB998E803, outfits = 2 }, + [0x9E19AA66] = { model = "a_c_horse_gang_john", hash = 0x9E19AA66, outfits = 2 }, + [0xA762AEDD] = { model = "a_c_horse_gang_karen", hash = 0xA762AEDD, outfits = 2 }, + [0x43F0DC62] = { model = "a_c_horse_gang_kieran", hash = 0x43F0DC62, outfits = 2 }, + [0xC132BAD0] = { model = "a_c_horse_gang_lenny", hash = 0xC132BAD0, outfits = 2 }, + [0xC7DE4819] = { model = "a_c_horse_gang_micah", hash = 0xC7DE4819, outfits = 2 }, + [0xBF5D6994] = { model = "a_c_horse_gang_sadie", hash = 0xBF5D6994, outfits = 2 }, + [0xDDAE9AEA] = { model = "a_c_horse_gang_sadie_endlesssummer", hash = 0xDDAE9AEA, outfits = 2 }, + [0x9997DF40] = { model = "a_c_horse_gang_sean", hash = 0x9997DF40, outfits = 2 }, + [0x3A5BC787] = { model = "a_c_horse_gang_trelawney", hash = 0x3A5BC787, outfits = 2 }, + [0x68F5058D] = { model = "a_c_horse_gang_uncle", hash = 0x68F5058D, outfits = 2 }, + [0x1165B6EB] = { model = "a_c_horse_gang_uncle_endlesssummer", hash = 0x1165B6EB, outfits = 2 }, + [0xCF246898] = { model = "a_c_horse_hungarianhalfbred_darkdapplegrey", hash = 0xCF246898, outfits = 1 }, + [0x65A30467] = { model = "a_c_horse_hungarianhalfbred_flaxenchestnut", hash = 0x65A30467, outfits = 1 }, + [0x8EF089E3] = { model = "a_c_horse_hungarianhalfbred_liverchestnut", hash = 0x8EF089E3, outfits = 1 }, + [0xFB55A30A] = { model = "a_c_horse_hungarianhalfbred_piebaldtobiano", hash = 0xFB55A30A, outfits = 2 }, + [0x8504B2AA] = { model = "a_c_horse_john_endlesssummer", hash = 0x8504B2AA, outfits = 2 }, + [0x9FA968B5] = { model = "a_c_horse_kladruber_black", hash = 0x9FA968B5, outfits = 1 }, + [0x8FDFD716] = { model = "a_c_horse_kladruber_cremello", hash = 0x8FDFD716, outfits = 1 }, + [0xD96F40C6] = { model = "a_c_horse_kladruber_dapplerosegrey", hash = 0xD96F40C6, outfits = 1 }, + [0xC7103AB0] = { model = "a_c_horse_kladruber_grey", hash = 0xC7103AB0, outfits = 1 }, + [0x91F36592] = { model = "a_c_horse_kladruber_silver", hash = 0x91F36592, outfits = 1 }, + [0xF867D7E4] = { model = "a_c_horse_kladruber_white", hash = 0xF867D7E4, outfits = 1 }, + [0xB0004639] = { model = "a_c_horse_missourifoxtrotter_amberchampagne", hash = 0xB0004639, outfits = 1 }, + [0xE6EE2A0B] = { model = "a_c_horse_missourifoxtrotter_sablechampagne", hash = 0xE6EE2A0B, outfits = 2 }, + [0xBB31267C] = { model = "a_c_horse_missourifoxtrotter_silverdapplepinto", hash = 0xBB31267C, outfits = 1 }, + [0x790B9F4B] = { model = "a_c_horse_morgan_bay", hash = 0x790B9F4B, outfits = 1 }, + [0x4955CBE3] = { model = "a_c_horse_morgan_bayroan", hash = 0x4955CBE3, outfits = 1 }, + [0xC21AB789] = { model = "a_c_horse_morgan_flaxenchestnut", hash = 0xC21AB789, outfits = 1 }, + [0xC0A1CE3D] = { model = "a_c_horse_morgan_liverchestnut_pc", hash = 0xC0A1CE3D, outfits = 1 }, + [0x05C70C99] = { model = "a_c_horse_morgan_palomino", hash = 0x05C70C99, outfits = 1 }, + [0x30331B80] = { model = "a_c_horse_mp_mangy_backup", hash = 0x30331B80, outfits = 7 }, + [0x36AE742C] = { model = "a_c_horse_murfreebrood_mange_01", hash = 0x36AE742C, outfits = 2 }, + [0xC97A99C6] = { model = "a_c_horse_murfreebrood_mange_02", hash = 0xC97A99C6, outfits = 2 }, + [0xDC4D3F6B] = { model = "a_c_horse_murfreebrood_mange_03", hash = 0xDC4D3F6B, outfits = 2 }, + [0x1C8CC068] = { model = "a_c_horse_mustang_goldendun", hash = 0x1C8CC068, outfits = 2 }, + [0xB9A41AA7] = { model = "a_c_horse_mustang_grullodun", hash = 0xB9A41AA7, outfits = 1 }, + [0x029CBA4A] = { model = "a_c_horse_mustang_tigerstripedbay", hash = 0x029CBA4A, outfits = 1 }, + [0x7E4DF66E] = { model = "a_c_horse_mustang_wildbay", hash = 0x7E4DF66E, outfits = 1 }, + [0x7FE4BEC5] = { model = "a_c_horse_nokota_blueroan", hash = 0x7FE4BEC5, outfits = 2 }, + [0x0660E640] = { model = "a_c_horse_nokota_reversedappleroan", hash = 0x0660E640, outfits = 1 }, + [0xB4CA3CB2] = { model = "a_c_horse_nokota_whiteroan", hash = 0xB4CA3CB2, outfits = 2 }, + [0x3F8A66B8] = { model = "a_c_horse_shire_darkbay", hash = 0x3F8A66B8, outfits = 1 }, + [0x0225752B] = { model = "a_c_horse_shire_lightgrey", hash = 0x0225752B, outfits = 1 }, + [0x2FD9844A] = { model = "a_c_horse_shire_ravenblack", hash = 0x2FD9844A, outfits = 1 }, + [0x9B099788] = { model = "a_c_horse_suffolkpunch_redchestnut", hash = 0x9B099788, outfits = 1 }, + [0xA0A6C640] = { model = "a_c_horse_suffolkpunch_sorrel", hash = 0xA0A6C640, outfits = 1 }, + [0x3FE5B95B] = { model = "a_c_horse_tennesseewalker_blackrabicano", hash = 0x3FE5B95B, outfits = 1 }, + [0x400B3937] = { model = "a_c_horse_tennesseewalker_chestnut", hash = 0x400B3937, outfits = 1 }, + [0xFAE16B63] = { model = "a_c_horse_tennesseewalker_dapplebay", hash = 0xFAE16B63, outfits = 1 }, + [0x9C978CB3] = { model = "a_c_horse_tennesseewalker_flaxenroan", hash = 0x9C978CB3, outfits = 1 }, + [0x3E85EE41] = { model = "a_c_horse_tennesseewalker_goldpalomino_pc", hash = 0x3E85EE41, outfits = 1 }, + [0x1A9FA880] = { model = "a_c_horse_tennesseewalker_mahoganybay", hash = 0x1A9FA880, outfits = 1 }, + [0xD4A3E715] = { model = "a_c_horse_tennesseewalker_redroan", hash = 0xD4A3E715, outfits = 1 }, + [0x7E67718B] = { model = "a_c_horse_thoroughbred_blackchestnut", hash = 0x7E67718B, outfits = 1 }, + [0x8D4BE5DE] = { model = "a_c_horse_thoroughbred_bloodbay", hash = 0x8D4BE5DE, outfits = 1 }, + [0xE0A34BD3] = { model = "a_c_horse_thoroughbred_brindle", hash = 0xE0A34BD3, outfits = 1 }, + [0x6EF6C345] = { model = "a_c_horse_thoroughbred_dapplegrey", hash = 0x6EF6C345, outfits = 3 }, + [0x35A71C98] = { model = "a_c_horse_thoroughbred_reversedappleblack", hash = 0x35A71C98, outfits = 1 }, + [0x4394FBA4] = { model = "a_c_horse_turkoman_darkbay", hash = 0x4394FBA4, outfits = 1 }, + [0x6572D46D] = { model = "a_c_horse_turkoman_gold", hash = 0x6572D46D, outfits = 1 }, + [0xA06225BC] = { model = "a_c_horse_turkoman_silver", hash = 0xA06225BC, outfits = 1 }, + [0xF31B7859] = { model = "a_c_horse_winter02_01", hash = 0xF31B7859, outfits = 2 }, + [0x3C0E4E87] = { model = "a_c_horse_norfolkroadster_black", hash = 0x3C0E4E87, outfits = 1 }, + [0xF6ACED8C] = { model = "a_c_horse_norfolkroadster_dappledbuckskin", hash = 0xF6ACED8C, outfits = 1 }, + [0xAB13C4C9] = { model = "a_c_horse_norfolkroadster_piebaldroan", hash = 0xAB13C4C9, outfits = 1 }, + [0xF30EC4B4] = { model = "a_c_horse_norfolkroadster_rosegrey", hash = 0xF30EC4B4, outfits = 1 }, + [0x3D5A780F] = { model = "a_c_horse_norfolkroadster_speckledgrey", hash = 0x3D5A780F, outfits = 1 }, + [0x501BFB75] = { model = "a_c_horse_norfolkroadster_spottedtricolor", hash = 0x501BFB75, outfits = 1 }, + [0xBBE15017] = { model = "a_c_horse_gypsycob_palominoblagdon", hash = 0xBBE15017, outfits = 1 }, + [0xE8BEFB8D] = { model = "a_c_horse_gypsycob_piebald", hash = 0xE8BEFB8D, outfits = 1 }, + [0xE71EBBF9] = { model = "a_c_horse_gypsycob_skewbald", hash = 0xE71EBBF9, outfits = 1 }, + [0xA8EE5C74] = { model = "a_c_horse_gypsycob_splashedbay", hash = 0xA8EE5C74, outfits = 1 }, + [0x57FA17A0] = { model = "a_c_horse_gypsycob_splashedpiebald", hash = 0x57FA17A0, outfits = 1 }, + [0x41D65902] = { model = "a_c_horse_gypsycob_whiteblagdon", hash = 0x41D65902, outfits = 1 }, + [0x52AC7C75] = { model = "a_c_horse_missourifoxtrotter_blacktovero", hash = 0x52AC7C75, outfits = 1 }, + [0x1E31107B] = { model = "a_c_horse_missourifoxtrotter_blueroan", hash = 0x1E31107B, outfits = 1 }, + [0x797EDE19] = { model = "a_c_horse_missourifoxtrotter_buckskinbrindle", hash = 0x797EDE19, outfits = 1 }, + [0x5F5BC124] = { model = "a_c_horse_missourifoxtrotter_dapplegrey", hash = 0x5F5BC124, outfits = 1 }, + [0x707C8EBE] = { model = "a_c_horse_mustang_blackovero", hash = 0x707C8EBE, outfits = 2 }, + [0x62121AEC] = { model = "a_c_horse_mustang_buckskin", hash = 0x62121AEC, outfits = 2 }, + [0x44D40E4A] = { model = "a_c_horse_mustang_chestnuttovero", hash = 0x44D40E4A, outfits = 2 }, + [0x0471D5D2] = { model = "a_c_horse_mustang_reddunovero", hash = 0x0471D5D2, outfits = 2 }, + [0x88828382] = { model = "a_c_horse_turkoman_black", hash = 0x88828382, outfits = 1 }, + [0x29AD5E2F] = { model = "a_c_horse_turkoman_chestnut", hash = 0x29AD5E2F, outfits = 1 }, + [0x5A4153F2] = { model = "a_c_horse_turkoman_grey", hash = 0x5A4153F2, outfits = 1 }, + [0x2A0483C6] = { model = "a_c_horse_turkoman_perlino", hash = 0x2A0483C6, outfits = 1 }, } -Animals.Fish = { - -- [`a_c_fishbluegil_01_ms`] = createEntry("a_c_fishbluegil_01_ms"), +Animals.Reptiles = { + [0x8F361781] = { model = "a_c_alligator_01", hash = 0x8F361781, outfits = 4 }, + [0xA0B33A7B] = { model = "a_c_alligator_02", hash = 0xA0B33A7B, outfits = 1 }, + [0xB2C4DE9E] = { model = "a_c_alligator_03", hash = 0xB2C4DE9E, outfits = 3 }, + [0x868D0356] = { model = "a_c_crab_01", hash = 0x868D0356, outfits = 3 }, + [0x96E9E689] = { model = "a_c_crawfish_01", hash = 0x96E9E689, outfits = 3 }, + [0xC884C578] = { model = "a_c_frogbull_01", hash = 0xC884C578, outfits = 2 }, + [0x1B439EDF] = { model = "a_c_gilamonster_01", hash = 0x1B439EDF, outfits = 3 }, + [0xDCA6ADCB] = { model = "a_c_iguanadesert_01", hash = 0xDCA6ADCB, outfits = 3 }, + [0x917D4CD7] = { model = "a_c_iguana_01", hash = 0x917D4CD7, outfits = 1 }, + [0x3276FDB9] = { model = "a_c_snakeblacktailrattle_01", hash = 0x3276FDB9, outfits = 2 }, + [0x8587FD0F] = { model = "a_c_snakeblacktailrattle_pelt_01", hash = 0x8587FD0F, outfits = 2 }, + [0x57456DF5] = { model = "a_c_snakeferdelance_01", hash = 0x57456DF5, outfits = 3 }, + [0x2C201567] = { model = "a_c_snakeferdelance_pelt_01", hash = 0x2C201567, outfits = 3 }, + [0x97D56B7E] = { model = "a_c_snakeredboa10ft_01", hash = 0x97D56B7E, outfits = 1 }, + [0x9547268E] = { model = "a_c_snakeredboa_01", hash = 0x9547268E, outfits = 3 }, + [0x47B7B713] = { model = "a_c_snakeredboa_pelt_01", hash = 0x47B7B713, outfits = 3 }, + [0xF24F3CA3] = { model = "a_c_snakewater_01", hash = 0xF24F3CA3, outfits = 3 }, + [0xF887B8E8] = { model = "a_c_snakewater_pelt_01", hash = 0xF887B8E8, outfits = 3 }, + [0x207D15FA] = { model = "a_c_snake_01", hash = 0x207D15FA, outfits = 4 }, + [0xA001C8EC] = { model = "a_c_snake_pelt_01", hash = 0xA001C8EC, outfits = 4 }, + [0x598F9219] = { model = "a_c_toad_01", hash = 0x598F9219, outfits = 5 }, + [0xA97D7D0C] = { model = "a_c_turtlesea_01", hash = 0xA97D7D0C, outfits = 1 }, + [0xE7B286BA] = { model = "a_c_turtlesnapping_01", hash = 0xE7B286BA, outfits = 3 }, +} + +Animals.Wild = { + [0x94DA69A0] = { model = "a_c_armadillo_01", hash = 0x94DA69A0, outfits = 1 }, + [0xBA41697E] = { model = "a_c_badger_01", hash = 0xBA41697E, outfits = 3 }, + [0x28308168] = { model = "a_c_bat_01", hash = 0x28308168, outfits = 3 }, + [0x2B845466] = { model = "a_c_bearblack_01", hash = 0x2B845466, outfits = 4 }, + [0xBCFD0E7F] = { model = "a_c_bear_01", hash = 0xBCFD0E7F, outfits = 11 }, + [0x2D4B3F63] = { model = "a_c_beaver_01", hash = 0x2D4B3F63, outfits = 4 }, + [0xA27F49A3] = { model = "a_c_bighornram_01", hash = 0xA27F49A3, outfits = 19 }, + [0x8AF5C2A8] = { model = "a_c_buck_01", hash = 0x8AF5C2A8, outfits = 6 }, + [0x5CC5E869] = { model = "a_c_buffalo_01", hash = 0x5CC5E869, outfits = 16 }, + [0x15E9B494] = { model = "a_c_buffalo_tatanka_01", hash = 0x15E9B494, outfits = 1 }, + [0x573201B8] = { model = "a_c_cat_01", hash = 0x573201B8, outfits = 3 }, + [0xA39125DC] = { model = "a_c_chipmunk_01", hash = 0xA39125DC, outfits = 1 }, + [0x056154F7] = { model = "a_c_cougar_01", hash = 0x056154F7, outfits = 6 }, + [0x1CA6B883] = { model = "a_c_coyote_01", hash = 0x1CA6B883, outfits = 7 }, + [0x423417A7] = { model = "a_c_deer_01", hash = 0x423417A7, outfits = 6 }, + [0x87895317] = { model = "a_c_elk_01", hash = 0x87895317, outfits = 8 }, + [0x6868D59D] = { model = "a_c_javelina_01", hash = 0x6868D59D, outfits = 3 }, + [0xC68B3C66] = { model = "a_c_lionmangy_01", hash = 0xC68B3C66, outfits = 2 }, + [0xBE871B28] = { model = "a_c_moose_01", hash = 0xBE871B28, outfits = 7 }, + [0xBC61ABDD] = { model = "a_c_muskrat_01", hash = 0xBC61ABDD, outfits = 3 }, + [0x629DDF49] = { model = "a_c_panther_01", hash = 0x629DDF49, outfits = 5 }, + [0xABA8FB1F] = { model = "a_c_possum_01", hash = 0xABA8FB1F, outfits = 3 }, + [0x68A4FCCD] = { model = "a_c_pronghorn_01", hash = 0x68A4FCCD, outfits = 20 }, + [0xDFB55C81] = { model = "a_c_rabbit_01", hash = 0xDFB55C81, outfits = 5 }, + [0x56EF91BF] = { model = "a_c_raccoon_01", hash = 0x56EF91BF, outfits = 7 }, + [0x3AFD2922] = { model = "a_c_rat_01", hash = 0x3AFD2922, outfits = 5 }, + [0xE42EE8E8] = { model = "a_c_redfootedbooby_01", hash = 0xE42EE8E8, outfits = 3 }, + [0xCDE2619F] = { model = "a_c_sharkhammerhead_01", hash = 0xCDE2619F, outfits = 3 }, + [0x06C3F072] = { model = "a_c_sharktiger", hash = 0x06C3F072, outfits = 3 }, + [0xB7C8F704] = { model = "a_c_skunk_01", hash = 0xB7C8F704, outfits = 4 }, + [0x5758D069] = { model = "a_c_squirrel_01", hash = 0x5758D069, outfits = 6 }, + [0xBBD91DDA] = { model = "A_C_Wolf", hash = 0xBBD91DDA, outfits = 9 }, + [0xCB391381] = { model = "a_c_wolf_medium", hash = 0xCB391381, outfits = 9 }, + [0xCE924A27] = { model = "a_c_wolf_small", hash = 0xCE924A27, outfits = 5 }, } return { Animals = Animals } - --- example usage ---[[ local LIB = Import("animals") -local horses = LIB.Animals.Horses -local wildAnimals = LIB.Animals.Wild -]] diff --git a/shared/data/peds.lua b/shared/data/peds.lua index 9069ccd..006745f 100644 --- a/shared/data/peds.lua +++ b/shared/data/peds.lua @@ -1,50 +1,3393 @@ local Peds = {} -local function createEntry(model, extra) - local entry = { - model = model, - hash = joaat(model), - } +-- Source: femga/rdr3_discoveries peds/peds_list.lua +-- Human ped categories are grouped heuristically. - if extra then - for key, value in pairs(extra) do - entry[key] = value - end - end - - return entry -end +Peds.All = { + [0xF5C1611E] = { model = "mp_male", hash = 0xF5C1611E, outfits = 138 }, + [0xA7AF20C0] = { model = "mp_female", hash = 0xA7AF20C0, outfits = 120 }, + [0x0926B79B] = { model = "amsp_robsdgunsmith_males_01", hash = 0x0926B79B, outfits = 5 }, + [0x3D27C285] = { model = "am_valentinedoctors_females_01", hash = 0x3D27C285, outfits = 1 }, + [0x53367A8A] = { model = "a_f_m_armcholeracorpse_01", hash = 0x53367A8A, outfits = 40 }, + [0x9854FB06] = { model = "a_f_m_armtownfolk_01", hash = 0x9854FB06, outfits = 34 }, + [0x2ECE27FA] = { model = "a_f_m_armtownfolk_02", hash = 0x2ECE27FA, outfits = 24 }, + [0x6A01E5AF] = { model = "a_f_m_asbtownfolk_01", hash = 0x6A01E5AF, outfits = 35 }, + [0x9EF80CC3] = { model = "a_f_m_bivfancytravellers_01", hash = 0x9EF80CC3, outfits = 40 }, + [0x68D9612B] = { model = "a_f_m_blwtownfolk_01", hash = 0x68D9612B, outfits = 40 }, + [0x5EAF4CD7] = { model = "a_f_m_blwtownfolk_02", hash = 0x5EAF4CD7, outfits = 40 }, + [0x559F1795] = { model = "a_f_m_blwupperclass_01", hash = 0x559F1795, outfits = 50 }, + [0x156B2B5B] = { model = "a_f_m_btchillbilly_01", hash = 0x156B2B5B, outfits = 17 }, + [0x18FE1EB6] = { model = "a_f_m_btcobesewomen_01", hash = 0x18FE1EB6, outfits = 1 }, + [0xE6CA7A74] = { model = "a_f_m_bynfancytravellers_01", hash = 0xE6CA7A74, outfits = 30 }, + [0x41FCD560] = { model = "a_f_m_familytravelers_cool_01", hash = 0x41FCD560, outfits = 20 }, + [0x02FF9BBF] = { model = "a_f_m_familytravelers_warm_01", hash = 0x02FF9BBF, outfits = 20 }, + [0xDC9B1FAF] = { model = "a_f_m_gamhighsociety_01", hash = 0xDC9B1FAF, outfits = 39 }, + [0xF4D38A44] = { model = "a_f_m_grifancytravellers_01", hash = 0xF4D38A44, outfits = 40 }, + [0x7991217C] = { model = "a_f_m_guatownfolk_01", hash = 0x7991217C, outfits = 25 }, + [0xC53BAC3B] = { model = "a_f_m_htlfancytravellers_01", hash = 0xC53BAC3B, outfits = 40 }, + [0xFC3C9932] = { model = "a_f_m_lagtownfolk_01", hash = 0xFC3C9932, outfits = 12 }, + [0x98A1C808] = { model = "a_f_m_lowersdtownfolk_01", hash = 0x98A1C808, outfits = 42 }, + [0x88BB283B] = { model = "a_f_m_lowersdtownfolk_02", hash = 0x88BB283B, outfits = 40 }, + [0x777905B7] = { model = "a_f_m_lowersdtownfolk_03", hash = 0x777905B7, outfits = 42 }, + [0xBF41104A] = { model = "a_f_m_lowertrainpassengers_01", hash = 0xBF41104A, outfits = 25 }, + [0x26F2C9A7] = { model = "a_f_m_middlesdtownfolk_01", hash = 0x26F2C9A7, outfits = 45 }, + [0x37556A6C] = { model = "a_f_m_middlesdtownfolk_02", hash = 0x37556A6C, outfits = 30 }, + [0xC29280E8] = { model = "a_f_m_middlesdtownfolk_03", hash = 0xC29280E8, outfits = 20 }, + [0xFBA4F677] = { model = "a_f_m_middletrainpassengers_01", hash = 0xFBA4F677, outfits = 25 }, + [0xADABE58C] = { model = "a_f_m_nbxslums_01", hash = 0xADABE58C, outfits = 42 }, + [0xC20A03C0] = { model = "a_f_m_nbxupperclass_01", hash = 0xC20A03C0, outfits = 45 }, + [0x0E5BDB04] = { model = "a_f_m_nbxwhore_01", hash = 0x0E5BDB04, outfits = 25 }, + [0x768C0686] = { model = "a_f_m_rhdprostitute_01", hash = 0x768C0686, outfits = 35 }, + [0x2029479B] = { model = "a_f_m_rhdtownfolk_01", hash = 0x2029479B, outfits = 23 }, + [0x7108E959] = { model = "a_f_m_rhdtownfolk_02", hash = 0x7108E959, outfits = 22 }, + [0x7EC886E0] = { model = "a_f_m_rhdupperclass_01", hash = 0x7EC886E0, outfits = 50 }, + [0xADA8C252] = { model = "a_f_m_rkrfancytravellers_01", hash = 0xADA8C252, outfits = 40 }, + [0xC53D076D] = { model = "a_f_m_roughtravellers_01", hash = 0xC53D076D, outfits = 30 }, + [0x697CE9F6] = { model = "a_f_m_sclfancytravellers_01", hash = 0x697CE9F6, outfits = 21 }, + [0xF9EABA1F] = { model = "a_f_m_sdchinatown_01", hash = 0xF9EABA1F, outfits = 20 }, + [0x6C844384] = { model = "a_f_m_sdfancywhore_01", hash = 0x6C844384, outfits = 20 }, + [0x8DC3DD27] = { model = "a_f_m_sdobesewomen_01", hash = 0x8DC3DD27, outfits = 1 }, + [0x254A0D7B] = { model = "a_f_m_sdserversformal_01", hash = 0x254A0D7B, outfits = 10 }, + [0x10B716A1] = { model = "a_f_m_sdslums_02", hash = 0x10B716A1, outfits = 42 }, + [0xF0CED965] = { model = "a_f_m_skpprisononline_01", hash = 0xF0CED965, outfits = 8 }, + [0xAD789542] = { model = "a_f_m_strtownfolk_01", hash = 0xAD789542, outfits = 20 }, + [0x0C6E57DB] = { model = "a_f_m_tumtownfolk_01", hash = 0x0C6E57DB, outfits = 22 }, + [0xB545A97B] = { model = "a_f_m_tumtownfolk_02", hash = 0xB545A97B, outfits = 22 }, + [0xE533D2B4] = { model = "a_f_m_unicorpse_01", hash = 0xE533D2B4, outfits = 49 }, + [0xC16B7BA8] = { model = "a_f_m_uppertrainpassengers_01", hash = 0xC16B7BA8, outfits = 25 }, + [0x8E301D96] = { model = "a_f_m_valprostitute_01", hash = 0x8E301D96, outfits = 23 }, + [0xF666E887] = { model = "a_f_m_valtownfolk_01", hash = 0xF666E887, outfits = 20 }, + [0xB7A9EA0E] = { model = "a_f_m_vhtprostitute_01", hash = 0xB7A9EA0E, outfits = 11 }, + [0x008F4AD5] = { model = "a_f_m_vhttownfolk_01", hash = 0x008F4AD5, outfits = 25 }, + [0xF7E2135D] = { model = "a_f_m_waptownfolk_01", hash = 0xF7E2135D, outfits = 25 }, + [0xD0A31078] = { model = "a_f_o_blwupperclass_01", hash = 0xD0A31078, outfits = 45 }, + [0x86B4227A] = { model = "a_f_o_btchillbilly_01", hash = 0x86B4227A, outfits = 11 }, + [0xA0600CFB] = { model = "a_f_o_guatownfolk_01", hash = 0xA0600CFB, outfits = 15 }, + [0x17C91016] = { model = "a_f_o_lagtownfolk_01", hash = 0x17C91016, outfits = 12 }, + [0x322B92BF] = { model = "a_f_o_sdchinatown_01", hash = 0x322B92BF, outfits = 20 }, + [0x4057BCEE] = { model = "a_f_o_sdupperclass_01", hash = 0x4057BCEE, outfits = 45 }, + [0x837B740E] = { model = "a_f_o_waptownfolk_01", hash = 0x837B740E, outfits = 21 }, + [0xD076C393] = { model = "a_m_m_armcholeracorpse_01", hash = 0xD076C393, outfits = 38 }, + [0xB5771CFC] = { model = "a_m_m_armdeputyresident_01", hash = 0xB5771CFC, outfits = 56 }, + [0xCF7E73BE] = { model = "a_m_m_armtownfolk_01", hash = 0xCF7E73BE, outfits = 49 }, + [0xC137D731] = { model = "a_m_m_armtownfolk_02", hash = 0xC137D731, outfits = 60 }, + [0x37DAA98A] = { model = "a_m_m_asbboatcrew_01", hash = 0x37DAA98A, outfits = 30 }, + [0x9C00E2A0] = { model = "a_m_m_asbdeputyresident_01", hash = 0x9C00E2A0, outfits = 21 }, + [0x68A1DDE7] = { model = "a_m_m_asbminer_01", hash = 0x68A1DDE7, outfits = 61 }, + [0x3E500944] = { model = "a_m_m_asbminer_02", hash = 0x3E500944, outfits = 42 }, + [0x50ABADFB] = { model = "a_m_m_asbminer_03", hash = 0x50ABADFB, outfits = 81 }, + [0x19E7406F] = { model = "a_m_m_asbminer_04", hash = 0x19E7406F, outfits = 69 }, + [0x0B54641C] = { model = "a_m_m_asbtownfolk_01", hash = 0x0B54641C, outfits = 86 }, + [0xA5E02A13] = { model = "a_m_m_asbtownfolk_01_laborer", hash = 0xA5E02A13, outfits = 70 }, + [0x613A4B8E] = { model = "a_m_m_bivfancydrivers_01", hash = 0x613A4B8E, outfits = 10 }, + [0x0D8C9D0B] = { model = "a_m_m_bivfancytravellers_01", hash = 0x0D8C9D0B, outfits = 21 }, + [0x4ADABFBA] = { model = "a_m_m_bivroughtravellers_01", hash = 0x4ADABFBA, outfits = 41 }, + [0x9384F640] = { model = "a_m_m_bivworker_01", hash = 0x9384F640, outfits = 29 }, + [0x5B91D27E] = { model = "a_m_m_blwforeman_01", hash = 0x5B91D27E, outfits = 35 }, + [0xC509B26F] = { model = "a_m_m_blwlaborer_01", hash = 0xC509B26F, outfits = 35 }, + [0xDBC6DFE9] = { model = "a_m_m_blwlaborer_02", hash = 0xDBC6DFE9, outfits = 45 }, + [0x41907533] = { model = "a_m_m_blwobesemen_01", hash = 0x41907533, outfits = 3 }, + [0xD10CE853] = { model = "a_m_m_blwtownfolk_01", hash = 0xD10CE853, outfits = 77 }, + [0x3CF00F0B] = { model = "a_m_m_blwupperclass_01", hash = 0x3CF00F0B, outfits = 85 }, + [0xE232B9EF] = { model = "a_m_m_btchillbilly_01", hash = 0xE232B9EF, outfits = 42 }, + [0x002A0F51] = { model = "a_m_m_btcobesemen_01", hash = 0x002A0F51, outfits = 1 }, + [0x70B728D7] = { model = "a_m_m_bynfancydrivers_01", hash = 0x70B728D7, outfits = 10 }, + [0xECBDF082] = { model = "a_m_m_bynfancytravellers_01", hash = 0xECBDF082, outfits = 20 }, + [0x7D65D747] = { model = "a_m_m_bynroughtravellers_01", hash = 0x7D65D747, outfits = 40 }, + [0x3B777AC0] = { model = "a_m_m_bynsurvivalist_01", hash = 0x3B777AC0, outfits = 15 }, + [0xC7458219] = { model = "a_m_m_cardgameplayers_01", hash = 0xC7458219, outfits = 84 }, + [0x5A3ABACE] = { model = "a_m_m_chelonian_01", hash = 0x5A3ABACE, outfits = 24 }, + [0xDB5C4A62] = { model = "a_m_m_deliverytravelers_cool_01", hash = 0xDB5C4A62, outfits = 20 }, + [0xA56A4C3D] = { model = "a_m_m_deliverytravelers_warm_01", hash = 0xA56A4C3D, outfits = 20 }, + [0xD4B37D8A] = { model = "a_m_m_dominoesplayers_01", hash = 0xD4B37D8A, outfits = 18 }, + [0xE5CED83E] = { model = "a_m_m_emrfarmhand_01", hash = 0xE5CED83E, outfits = 20 }, + [0x570B9957] = { model = "a_m_m_familytravelers_cool_01", hash = 0x570B9957, outfits = 20 }, + [0xEF53FC1C] = { model = "a_m_m_familytravelers_warm_01", hash = 0xEF53FC1C, outfits = 20 }, + [0x584626EE] = { model = "a_m_m_farmtravelers_cool_01", hash = 0x584626EE, outfits = 20 }, + [0x2F9417F1] = { model = "a_m_m_farmtravelers_warm_01", hash = 0x2F9417F1, outfits = 20 }, + [0x18E143CA] = { model = "a_m_m_fivefingerfilletplayers_01", hash = 0x18E143CA, outfits = 12 }, + [0x0DB7B411] = { model = "a_m_m_foreman", hash = 0x0DB7B411, outfits = 10 }, + [0x8DABAE42] = { model = "a_m_m_gamhighsociety_01", hash = 0x8DABAE42, outfits = 40 }, + [0x542A035C] = { model = "a_m_m_grifancydrivers_01", hash = 0x542A035C, outfits = 10 }, + [0x761D319E] = { model = "a_m_m_grifancytravellers_01", hash = 0x761D319E, outfits = 20 }, + [0x97273585] = { model = "a_m_m_griroughtravellers_01", hash = 0x97273585, outfits = 40 }, + [0x9DDE71E1] = { model = "a_m_m_grisurvivalist_01", hash = 0x9DDE71E1, outfits = 15 }, + [0x0D4DB92F] = { model = "a_m_m_guatownfolk_01", hash = 0x0D4DB92F, outfits = 27 }, + [0xEEF71080] = { model = "a_m_m_htlfancydrivers_01", hash = 0xEEF71080, outfits = 10 }, + [0xB05F73A6] = { model = "a_m_m_htlfancytravellers_01", hash = 0xB05F73A6, outfits = 20 }, + [0xA9DCFB5A] = { model = "a_m_m_htlroughtravellers_01", hash = 0xA9DCFB5A, outfits = 40 }, + [0xB3410109] = { model = "a_m_m_htlsurvivalist_01", hash = 0xB3410109, outfits = 15 }, + [0x5729EC23] = { model = "a_m_m_huntertravelers_cool_01", hash = 0x5729EC23, outfits = 20 }, + [0xD898CFD4] = { model = "a_m_m_huntertravelers_warm_01", hash = 0xD898CFD4, outfits = 21 }, + [0x9233448C] = { model = "a_m_m_jamesonguard_01", hash = 0x9233448C, outfits = 56 }, + [0xBD48CFD4] = { model = "a_m_m_lagtownfolk_01", hash = 0xBD48CFD4, outfits = 12 }, + [0xE40C9EB8] = { model = "a_m_m_lowersdtownfolk_01", hash = 0xE40C9EB8, outfits = 91 }, + [0x82AF5BFB] = { model = "a_m_m_lowersdtownfolk_02", hash = 0x82AF5BFB, outfits = 91 }, + [0x950C61AA] = { model = "a_m_m_lowertrainpassengers_01", hash = 0x950C61AA, outfits = 25 }, + [0x7F2FF3A2] = { model = "a_m_m_middlesdtownfolk_01", hash = 0x7F2FF3A2, outfits = 65 }, + [0x6E8E525F] = { model = "a_m_m_middlesdtownfolk_02", hash = 0x6E8E525F, outfits = 51 }, + [0x20C236C8] = { model = "a_m_m_middlesdtownfolk_03", hash = 0x20C236C8, outfits = 51 }, + [0xB56ED02B] = { model = "a_m_m_middletrainpassengers_01", hash = 0xB56ED02B, outfits = 25 }, + [0xB14CEEEF] = { model = "a_m_m_moonshiners_01", hash = 0xB14CEEEF, outfits = 10 }, + [0xED78C02F] = { model = "a_m_m_nbxdockworkers_01", hash = 0xED78C02F, outfits = 70 }, + [0x9881BCFA] = { model = "a_m_m_nbxlaborers_01", hash = 0x9881BCFA, outfits = 70 }, + [0x56A5800A] = { model = "a_m_m_nbxslums_01", hash = 0x56A5800A, outfits = 85 }, + [0x04B7D63B] = { model = "a_m_m_nbxupperclass_01", hash = 0x04B7D63B, outfits = 50 }, + [0x6D027AB7] = { model = "a_m_m_nearoughtravellers_01", hash = 0x6D027AB7, outfits = 35 }, + [0x2C9C69C2] = { model = "a_m_m_ranchertravelers_cool_01", hash = 0x2C9C69C2, outfits = 20 }, + [0xF7649D04] = { model = "a_m_m_ranchertravelers_warm_01", hash = 0xF7649D04, outfits = 20 }, + [0x54D8BE8E] = { model = "a_m_m_rancher_01", hash = 0x54D8BE8E, outfits = 20 }, + [0x0B5B9D98] = { model = "a_m_m_rhddeputyresident_01", hash = 0x0B5B9D98, outfits = 23 }, + [0x94EAA58F] = { model = "a_m_m_rhdforeman_01", hash = 0x94EAA58F, outfits = 30 }, + [0x602993B2] = { model = "a_m_m_rhdobesemen_01", hash = 0x602993B2, outfits = 3 }, + [0x3A489018] = { model = "a_m_m_rhdtownfolk_01", hash = 0x3A489018, outfits = 42 }, + [0x009F6A48] = { model = "a_m_m_rhdtownfolk_01_laborer", hash = 0x009F6A48, outfits = 10 }, + [0x6833EBEE] = { model = "a_m_m_rhdtownfolk_02", hash = 0x6833EBEE, outfits = 35 }, + [0xAFCAF759] = { model = "a_m_m_rhdupperclass_01", hash = 0xAFCAF759, outfits = 63 }, + [0x921DA99E] = { model = "a_m_m_rkrfancydrivers_01", hash = 0x921DA99E, outfits = 10 }, + [0x76C805FE] = { model = "a_m_m_rkrfancytravellers_01", hash = 0x76C805FE, outfits = 20 }, + [0xAD581ACB] = { model = "a_m_m_rkrroughtravellers_01", hash = 0xAD581ACB, outfits = 40 }, + [0x2FABD7A9] = { model = "a_m_m_rkrsurvivalist_01", hash = 0x2FABD7A9, outfits = 15 }, + [0xBCA4A7DC] = { model = "a_m_m_sclfancydrivers_01", hash = 0xBCA4A7DC, outfits = 10 }, + [0x45B96600] = { model = "a_m_m_sclfancytravellers_01", hash = 0x45B96600, outfits = 20 }, + [0xD93C654F] = { model = "a_m_m_sclroughtravellers_01", hash = 0xD93C654F, outfits = 41 }, + [0x26878D5C] = { model = "a_m_m_sdchinatown_01", hash = 0x26878D5C, outfits = 21 }, + [0x44BCB3C8] = { model = "a_m_m_sddockforeman_01", hash = 0x44BCB3C8, outfits = 25 }, + [0xA1875C33] = { model = "a_m_m_sddockworkers_02", hash = 0xA1875C33, outfits = 70 }, + [0xF20E6FFA] = { model = "a_m_m_sdfancytravellers_01", hash = 0xF20E6FFA, outfits = 20 }, + [0xD0EEF17B] = { model = "a_m_m_sdlaborers_02", hash = 0xD0EEF17B, outfits = 70 }, + [0x36E3135B] = { model = "a_m_m_sdobesemen_01", hash = 0x36E3135B, outfits = 3 }, + [0x885C429E] = { model = "a_m_m_sdroughtravellers_01", hash = 0x885C429E, outfits = 40 }, + [0x8FC7F8DD] = { model = "a_m_m_sdserversformal_01", hash = 0x8FC7F8DD, outfits = 6 }, + [0xAA5C3EA9] = { model = "a_m_m_sdslums_02", hash = 0xAA5C3EA9, outfits = 85 }, + [0x16958B7D] = { model = "a_m_m_skpprisoner_01", hash = 0x16958B7D, outfits = 20 }, + [0x6D78A035] = { model = "a_m_m_skpprisonline_01", hash = 0x6D78A035, outfits = 24 }, + [0xDCA53CEE] = { model = "a_m_m_smhthug_01", hash = 0xDCA53CEE, outfits = 24 }, + [0xF0379DF1] = { model = "a_m_m_strdeputyresident_01", hash = 0xF0379DF1, outfits = 21 }, + [0x2A19CF1B] = { model = "a_m_m_strfancytourist_01", hash = 0x2A19CF1B, outfits = 5 }, + [0x9E51CBEB] = { model = "a_m_m_strlaborer_01", hash = 0x9E51CBEB, outfits = 18 }, + [0x4335A6E5] = { model = "a_m_m_strtownfolk_01", hash = 0x4335A6E5, outfits = 26 }, + [0x1C9C6388] = { model = "a_m_m_tumtownfolk_01", hash = 0x1C9C6388, outfits = 60 }, + [0x39A29D9C] = { model = "a_m_m_tumtownfolk_02", hash = 0x39A29D9C, outfits = 60 }, + [0xFE70D544] = { model = "a_m_m_uniboatcrew_01", hash = 0xFE70D544, outfits = 20 }, + [0x1CC906ED] = { model = "a_m_m_unicoachguards_01", hash = 0x1CC906ED, outfits = 20 }, + [0x4C6C6086] = { model = "a_m_m_unicorpse_01", hash = 0x4C6C6086, outfits = 186 }, + [0x39F19DB8] = { model = "a_m_m_unigunslinger_01", hash = 0x39F19DB8, outfits = 40 }, + [0x752ADF85] = { model = "a_m_m_uppertrainpassengers_01", hash = 0x752ADF85, outfits = 25 }, + [0xF90FDED2] = { model = "a_m_m_valcriminals_01", hash = 0xF90FDED2, outfits = 10 }, + [0x639CD8CD] = { model = "a_m_m_valdeputyresident_01", hash = 0x639CD8CD, outfits = 30 }, + [0x1F52F239] = { model = "a_m_m_valfarmer_01", hash = 0x1F52F239, outfits = 29 }, + [0xDC64F897] = { model = "a_m_m_vallaborer_01", hash = 0xDC64F897, outfits = 58 }, + [0x838F50CE] = { model = "a_m_m_valtownfolk_01", hash = 0x838F50CE, outfits = 36 }, + [0x9550F451] = { model = "a_m_m_valtownfolk_02", hash = 0x9550F451, outfits = 44 }, + [0xAA7C134D] = { model = "a_m_m_vhtboatcrew_01", hash = 0xAA7C134D, outfits = 30 }, + [0xC703A880] = { model = "a_m_m_vhtthug_01", hash = 0xC703A880, outfits = 40 }, + [0x36C66682] = { model = "a_m_m_vhttownfolk_01", hash = 0x36C66682, outfits = 86 }, + [0x3183AABD] = { model = "a_m_m_wapwarriors_01", hash = 0x3183AABD, outfits = 69 }, + [0x57B730CA] = { model = "a_m_o_blwupperclass_01", hash = 0x57B730CA, outfits = 80 }, + [0xA9D376B5] = { model = "a_m_o_btchillbilly_01", hash = 0xA9D376B5, outfits = 29 }, + [0x153790EE] = { model = "a_m_o_guatownfolk_01", hash = 0x153790EE, outfits = 15 }, + [0xD02B6700] = { model = "a_m_o_lagtownfolk_01", hash = 0xD02B6700, outfits = 12 }, + [0x34EEA2A1] = { model = "a_m_o_sdchinatown_01", hash = 0x34EEA2A1, outfits = 21 }, + [0x8C74A816] = { model = "a_m_o_sdupperclass_01", hash = 0x8C74A816, outfits = 50 }, + [0x8C850F6C] = { model = "a_m_o_waptownfolk_01", hash = 0x8C850F6C, outfits = 26 }, + [0x8E76B9B9] = { model = "a_m_y_asbminer_01", hash = 0x8E76B9B9, outfits = 60 }, + [0x5C0454CD] = { model = "a_m_y_asbminer_02", hash = 0x5C0454CD, outfits = 42 }, + [0x14FD46C4] = { model = "a_m_y_asbminer_03", hash = 0x14FD46C4, outfits = 81 }, + [0x30407D4A] = { model = "a_m_y_asbminer_04", hash = 0x30407D4A, outfits = 69 }, + [0x0FC40064] = { model = "a_m_y_nbxstreetkids_01", hash = 0x0FC40064, outfits = 8 }, + [0xACA57303] = { model = "a_m_y_nbxstreetkids_slums_01", hash = 0xACA57303, outfits = 20 }, + [0xCA57B2C4] = { model = "a_m_y_sdstreetkids_slums_02", hash = 0xCA57B2C4, outfits = 8 }, + [0x75CC2B66] = { model = "a_m_y_unicorpse_01", hash = 0x75CC2B66, outfits = 2 }, + [0x6B6968AA] = { model = "casp_coachrobbery_lenny_males_01", hash = 0x6B6968AA, outfits = 2 }, + [0x63F5A730] = { model = "casp_coachrobbery_micah_males_01", hash = 0x63F5A730, outfits = 1 }, + [0x7A8FF723] = { model = "casp_hunting02_males_01", hash = 0x7A8FF723, outfits = 2 }, + [0x0B4466F8] = { model = "cr_strawberry_males_01", hash = 0x0B4466F8, outfits = 19 }, + [0xA8B1C9F7] = { model = "cs_abe", hash = 0xA8B1C9F7, outfits = 2 }, + [0xAB6C83B9] = { model = "cs_aberdeenpigfarmer", hash = 0xAB6C83B9, outfits = 1 }, + [0x78F9C32F] = { model = "cs_aberdeensister", hash = 0x78F9C32F, outfits = 2 }, + [0xEED46B48] = { model = "cs_abigailroberts", hash = 0xEED46B48, outfits = 15 }, + [0x582954CA] = { model = "cs_acrobat", hash = 0x582954CA, outfits = 1 }, + [0x6A7308E5] = { model = "cs_adamgray", hash = 0x6A7308E5, outfits = 1 }, + [0x0596AA7B] = { model = "cs_agnesdowd", hash = 0x0596AA7B, outfits = 4 }, + [0x28E45219] = { model = "cs_albertcakeesquire", hash = 0x28E45219, outfits = 1 }, + [0x1E9A4722] = { model = "cs_albertmason", hash = 0x1E9A4722, outfits = 2 }, + [0x19ACF207] = { model = "cs_andershelgerson", hash = 0x19ACF207, outfits = 4 }, + [0x31DC5CD8] = { model = "cs_angel", hash = 0x31DC5CD8, outfits = 1 }, + [0x17F33DAA] = { model = "cs_angryhusband", hash = 0x17F33DAA, outfits = 1 }, + [0xF5FE5824] = { model = "cs_angusgeddes", hash = 0xF5FE5824, outfits = 2 }, + [0x563E79E7] = { model = "cs_ansel_atherton", hash = 0x563E79E7, outfits = 1 }, + [0xCADCA094] = { model = "cs_antonyforemen", hash = 0xCADCA094, outfits = 2 }, + [0x328BA546] = { model = "cs_archerfordham", hash = 0x328BA546, outfits = 2 }, + [0x7920404D] = { model = "cs_archibaldjameson", hash = 0x7920404D, outfits = 2 }, + [0xF8BAA439] = { model = "cs_archiedown", hash = 0xF8BAA439, outfits = 4 }, + [0x5FA98D21] = { model = "cs_artappraiser", hash = 0x5FA98D21, outfits = 1 }, + [0x1B703333] = { model = "cs_asbdeputy_01", hash = 0x1B703333, outfits = 1 }, + [0xB6AC4FC1] = { model = "cs_ashton", hash = 0xB6AC4FC1, outfits = 1 }, + [0x253EF371] = { model = "cs_balloonoperator", hash = 0x253EF371, outfits = 4 }, + [0x3C3844C4] = { model = "cs_bandbassist", hash = 0x3C3844C4, outfits = 1 }, + [0x559E17B2] = { model = "cs_banddrummer", hash = 0x559E17B2, outfits = 1 }, + [0x8EA36E09] = { model = "cs_bandpianist", hash = 0x8EA36E09, outfits = 1 }, + [0xF3178A28] = { model = "cs_bandsinger", hash = 0xF3178A28, outfits = 1 }, + [0xF3C61748] = { model = "cs_baptiste", hash = 0xF3C61748, outfits = 1 }, + [0xFB614B3F] = { model = "cs_bartholomewbraithwaite", hash = 0xFB614B3F, outfits = 2 }, + [0xD29F17B9] = { model = "cs_bathingladies_01", hash = 0xD29F17B9, outfits = 7 }, + [0xFCAF1AFE] = { model = "cs_beatenupcaptain", hash = 0xFCAF1AFE, outfits = 1 }, + [0x4B780F88] = { model = "cs_beaugray", hash = 0x4B780F88, outfits = 3 }, + [0x7B67B26A] = { model = "cs_billwilliamson", hash = 0x7B67B26A, outfits = 28 }, + [0xDF333F2B] = { model = "cs_bivcoachdriver", hash = 0xDF333F2B, outfits = 1 }, + [0x1AA22618] = { model = "cs_blwphotographer", hash = 0x1AA22618, outfits = 1 }, + [0x4D3B6EF2] = { model = "cs_blwwitness", hash = 0x4D3B6EF2, outfits = 2 }, + [0xDFE6F4B8] = { model = "cs_braithwaitebutler", hash = 0xDFE6F4B8, outfits = 1 }, + [0xEB20D71E] = { model = "cs_braithwaitemaid", hash = 0xEB20D71E, outfits = 1 }, + [0x1C76CA2D] = { model = "cs_braithwaiteservant", hash = 0x1C76CA2D, outfits = 1 }, + [0x0DBD6C20] = { model = "cs_brendacrawley", hash = 0x0DBD6C20, outfits = 2 }, + [0x90C94DCD] = { model = "cs_bronte", hash = 0x90C94DCD, outfits = 4 }, + [0xD18A3207] = { model = "cs_brontesbutler", hash = 0xD18A3207, outfits = 1 }, + [0x1CC577E5] = { model = "cs_brotherdorkins", hash = 0x1CC577E5, outfits = 1 }, + [0x0AF97379] = { model = "cs_brynntildon", hash = 0x0AF97379, outfits = 2 }, + [0xD012554C] = { model = "cs_bubba", hash = 0xD012554C, outfits = 2 }, + [0x5411589F] = { model = "cs_cabaretmc", hash = 0x5411589F, outfits = 1 }, + [0xF344B612] = { model = "cs_cajun", hash = 0xF344B612, outfits = 1 }, + [0x2D0C353F] = { model = "cs_cancanman_01", hash = 0x2D0C353F, outfits = 1 }, + [0xD0C13881] = { model = "cs_cancan_01", hash = 0xD0C13881, outfits = 1 }, + [0x2F5D75D4] = { model = "cs_cancan_02", hash = 0x2F5D75D4, outfits = 1 }, + [0xBD791211] = { model = "cs_cancan_03", hash = 0xBD791211, outfits = 1 }, + [0x12DABCCF] = { model = "cs_cancan_04", hash = 0x12DABCCF, outfits = 1 }, + [0x4EB9996F] = { model = "cs_captainmonroe", hash = 0x4EB9996F, outfits = 1 }, + [0x2E6B8F33] = { model = "cs_cassidy", hash = 0x2E6B8F33, outfits = 3 }, + [0x5262264D] = { model = "cs_catherinebraithwaite", hash = 0x5262264D, outfits = 2 }, + [0x5F1AD166] = { model = "cs_cattlerustler", hash = 0x5F1AD166, outfits = 1 }, + [0x074B53CC] = { model = "cs_cavehermit", hash = 0x074B53CC, outfits = 1 }, + [0x8451929D] = { model = "cs_chainprisoner_01", hash = 0x8451929D, outfits = 4 }, + [0xF367F0C8] = { model = "cs_chainprisoner_02", hash = 0xF367F0C8, outfits = 4 }, + [0x53DD98DF] = { model = "cs_charlessmith", hash = 0x53DD98DF, outfits = 34 }, + [0x34F835DE] = { model = "cs_chelonianmaster", hash = 0x34F835DE, outfits = 5 }, + [0xD303ACD2] = { model = "cs_cigcardguy", hash = 0xD303ACD2, outfits = 1 }, + [0xDBCB9834] = { model = "cs_clay", hash = 0xDBCB9834, outfits = 1 }, + [0xE44D789F] = { model = "cs_cleet", hash = 0xE44D789F, outfits = 3 }, + [0xFF292AA4] = { model = "cs_clive", hash = 0xFF292AA4, outfits = 1 }, + [0x0E174AF7] = { model = "cs_colfavours", hash = 0x0E174AF7, outfits = 1 }, + [0xCF10E769] = { model = "cs_colmodriscoll", hash = 0xCF10E769, outfits = 6 }, + [0x72A3A733] = { model = "cs_cooper", hash = 0x72A3A733, outfits = 1 }, + [0xC43EAC49] = { model = "cs_cornwalltrainconductor", hash = 0xC43EAC49, outfits = 1 }, + [0x4BBF80D3] = { model = "cs_crackpotinventor", hash = 0x4BBF80D3, outfits = 5 }, + [0x3BF7829E] = { model = "cs_crackpotrobot", hash = 0x3BF7829E, outfits = 2 }, + [0xC061B459] = { model = "cs_creepyoldlady", hash = 0xC061B459, outfits = 1 }, + [0xD163B76B] = { model = "cs_creolecaptain", hash = 0xD163B76B, outfits = 1 }, + [0x3B38C996] = { model = "cs_creoledoctor", hash = 0x3B38C996, outfits = 1 }, + [0x96C421E4] = { model = "cs_creoleguy", hash = 0x96C421E4, outfits = 1 }, + [0x16C57A26] = { model = "cs_dalemaroney", hash = 0x16C57A26, outfits = 2 }, + [0x65A7F0E7] = { model = "cs_daveycallender", hash = 0x65A7F0E7, outfits = 1 }, + [0x9EAF0DAE] = { model = "cs_davidgeddes", hash = 0x9EAF0DAE, outfits = 2 }, + [0x66E939A1] = { model = "cs_desmond", hash = 0x66E939A1, outfits = 1 }, + [0x8ACCB671] = { model = "cs_didsbury", hash = 0x8ACCB671, outfits = 1 }, + [0x4AB3D571] = { model = "cs_dinoboneslady", hash = 0x4AB3D571, outfits = 2 }, + [0x32C998FD] = { model = "cs_disguisedduster_01", hash = 0x32C998FD, outfits = 1 }, + [0x5888E47B] = { model = "cs_disguisedduster_02", hash = 0x5888E47B, outfits = 1 }, + [0x4A3D47E4] = { model = "cs_disguisedduster_03", hash = 0x4A3D47E4, outfits = 1 }, + [0x0748A3DA] = { model = "cs_doroetheawicklow", hash = 0x0748A3DA, outfits = 3 }, + [0xF45739BF] = { model = "cs_drhiggins", hash = 0xF45739BF, outfits = 1 }, + [0xC8245F3C] = { model = "cs_drmalcolmmacintosh", hash = 0xC8245F3C, outfits = 1 }, + [0x9FC15494] = { model = "cs_duncangeddes", hash = 0x9FC15494, outfits = 1 }, + [0xA02C1ADB] = { model = "cs_dusterinformant_01", hash = 0xA02C1ADB, outfits = 1 }, + [0x73E82274] = { model = "cs_dutch", hash = 0x73E82274, outfits = 31 }, + [0x9660A42D] = { model = "cs_eagleflies", hash = 0x9660A42D, outfits = 10 }, + [0xFD38D463] = { model = "cs_edgarross", hash = 0xFD38D463, outfits = 2 }, + [0xE52A1621] = { model = "cs_edithdown", hash = 0xE52A1621, outfits = 7 }, + [0xCB790850] = { model = "cs_edith_john", hash = 0xCB790850, outfits = 1 }, + [0x58672CFB] = { model = "cs_edmundlowry", hash = 0x58672CFB, outfits = 1 }, + [0x88A17BE6] = { model = "cs_escapeartist", hash = 0x88A17BE6, outfits = 5 }, + [0x929C4793] = { model = "cs_escapeartistassistant", hash = 0x929C4793, outfits = 1 }, + [0x2C4CA0A0] = { model = "cs_evelynmiller", hash = 0x2C4CA0A0, outfits = 3 }, + [0xF0EAC712] = { model = "cs_exconfedinformant", hash = 0xF0EAC712, outfits = 1 }, + [0x11E95A0F] = { model = "cs_exconfedsleader_01", hash = 0x11E95A0F, outfits = 1 }, + [0x59D39598] = { model = "cs_exoticcollector", hash = 0x59D39598, outfits = 2 }, + [0xFA274E38] = { model = "cs_famousgunslinger_01", hash = 0xFA274E38, outfits = 2 }, + [0x504E7A85] = { model = "cs_famousgunslinger_02", hash = 0x504E7A85, outfits = 1 }, + [0xDEBB9761] = { model = "cs_famousgunslinger_03", hash = 0xDEBB9761, outfits = 1 }, + [0x14F583D4] = { model = "cs_famousgunslinger_04", hash = 0x14F583D4, outfits = 1 }, + [0x236820B9] = { model = "cs_famousgunslinger_05", hash = 0x236820B9, outfits = 1 }, + [0x79B7CD5F] = { model = "cs_famousgunslinger_06", hash = 0x79B7CD5F, outfits = 3 }, + [0x8D374040] = { model = "cs_featherstonchambers", hash = 0x8D374040, outfits = 1 }, + [0x8D6618C3] = { model = "cs_featsofstrength", hash = 0x8D6618C3, outfits = 2 }, + [0x53308B76] = { model = "cs_fightref", hash = 0x53308B76, outfits = 1 }, + [0xEADD5782] = { model = "cs_fire_breather", hash = 0xEADD5782, outfits = 4 }, + [0x5A3FC29E] = { model = "cs_fishcollector", hash = 0x5A3FC29E, outfits = 4 }, + [0x61F3D8F8] = { model = "cs_forgivenhusband_01", hash = 0x61F3D8F8, outfits = 1 }, + [0xD36D9790] = { model = "cs_forgivenwife_01", hash = 0xD36D9790, outfits = 1 }, + [0xB4449A8A] = { model = "cs_formyartbigwoman", hash = 0xB4449A8A, outfits = 1 }, + [0x9634D7B5] = { model = "cs_francis_sinclair", hash = 0x9634D7B5, outfits = 1 }, + [0xD809F182] = { model = "cs_frenchartist", hash = 0xD809F182, outfits = 2 }, + [0xF258BC07] = { model = "cs_frenchman_01", hash = 0xF258BC07, outfits = 1 }, + [0x8D883B70] = { model = "cs_fussar", hash = 0x8D883B70, outfits = 2 }, + [0x968AB03C] = { model = "cs_garethbraithwaite", hash = 0x968AB03C, outfits = 1 }, + [0x4C5C60B2] = { model = "cs_gavin", hash = 0x4C5C60B2, outfits = 2 }, + [0x3CCC99B1] = { model = "cs_genstoryfemale", hash = 0x3CCC99B1, outfits = 2 }, + [0xD9E8B86A] = { model = "cs_genstorymale", hash = 0xD9E8B86A, outfits = 1 }, + [0xBB35418E] = { model = "cs_geraldbraithwaite", hash = 0xBB35418E, outfits = 2 }, + [0x39FD28AE] = { model = "cs_germandaughter", hash = 0x39FD28AE, outfits = 1 }, + [0x5205A246] = { model = "cs_germanfather", hash = 0x5205A246, outfits = 5 }, + [0x771EA179] = { model = "cs_germanmother", hash = 0x771EA179, outfits = 3 }, + [0x0D5EB39A] = { model = "cs_germanson", hash = 0x0D5EB39A, outfits = 2 }, + [0xE1B35B43] = { model = "cs_gilbertknightly", hash = 0xE1B35B43, outfits = 1 }, + [0x9B5487C9] = { model = "cs_gloria", hash = 0x9B5487C9, outfits = 1 }, + [0xBDB43F31] = { model = "cs_grizzledjon", hash = 0xBDB43F31, outfits = 2 }, + [0x9EDFC6EB] = { model = "cs_guidomartelli", hash = 0x9EDFC6EB, outfits = 3 }, + [0x6D084810] = { model = "cs_hamish", hash = 0x6D084810, outfits = 1 }, + [0x6D8B4BB9] = { model = "cs_hectorfellowes", hash = 0x6D8B4BB9, outfits = 3 }, + [0x30324925] = { model = "cs_henrilemiux", hash = 0x30324925, outfits = 2 }, + [0x0C60474A] = { model = "cs_herbalist", hash = 0x0C60474A, outfits = 1 }, + [0x4C165ECF] = { model = "cs_hercule", hash = 0x4C165ECF, outfits = 2 }, + [0xA560451D] = { model = "cs_hestonjameson", hash = 0xA560451D, outfits = 2 }, + [0xB0C337A3] = { model = "cs_hobartcrawley", hash = 0xB0C337A3, outfits = 2 }, + [0x490733E8] = { model = "cs_hoseamatthews", hash = 0x490733E8, outfits = 13 }, + [0x88094B37] = { model = "cs_iangray", hash = 0x88094B37, outfits = 1 }, + [0x71F7EE1B] = { model = "cs_jackmarston", hash = 0x71F7EE1B, outfits = 8 }, + [0xDA5990BC] = { model = "cs_jackmarston_teen", hash = 0xDA5990BC, outfits = 10 }, + [0x004C2AF4] = { model = "cs_jamie", hash = 0x004C2AF4, outfits = 1 }, + [0xD2E125B6] = { model = "cs_janson", hash = 0xD2E125B6, outfits = 1 }, + [0x6DE3800C] = { model = "cs_javierescuella", hash = 0x6DE3800C, outfits = 32 }, + [0x5548F1E9] = { model = "cs_jeb", hash = 0x5548F1E9, outfits = 3 }, + [0x6C30159E] = { model = "cs_jimcalloway", hash = 0x6C30159E, outfits = 1 }, + [0x9DE34628] = { model = "cs_jockgray", hash = 0x9DE34628, outfits = 1 }, + [0xE569265F] = { model = "cs_joe", hash = 0xE569265F, outfits = 2 }, + [0x54951099] = { model = "cs_joebutler", hash = 0x54951099, outfits = 2 }, + [0x05B6D06D] = { model = "cs_johnmarston", hash = 0x05B6D06D, outfits = 31 }, + [0x442FBDDC] = { model = "cs_johnthebaptisingmadman", hash = 0x442FBDDC, outfits = 2 }, + [0x7D357931] = { model = "cs_johnweathers", hash = 0x7D357931, outfits = 1 }, + [0x3BFD7D5D] = { model = "cs_josiahtrelawny", hash = 0x3BFD7D5D, outfits = 10 }, + [0xB4F83876] = { model = "cs_jules", hash = 0xB4F83876, outfits = 2 }, + [0x9A3E29FB] = { model = "cs_karen", hash = 0x9A3E29FB, outfits = 16 }, + [0x013504F0] = { model = "cs_karensjohn_01", hash = 0x013504F0, outfits = 2 }, + [0x739BA0D6] = { model = "cs_kieran", hash = 0x739BA0D6, outfits = 11 }, + [0xBFD90AEA] = { model = "cs_laramie", hash = 0xBFD90AEA, outfits = 2 }, + [0x97F8823A] = { model = "cs_leighgray", hash = 0x97F8823A, outfits = 1 }, + [0x3AEDE260] = { model = "cs_lemiuxassistant", hash = 0x3AEDE260, outfits = 2 }, + [0xF8AE5F8D] = { model = "cs_lenny", hash = 0xF8AE5F8D, outfits = 17 }, + [0xC91ADF62] = { model = "cs_leon", hash = 0xC91ADF62, outfits = 3 }, + [0xFA0312B3] = { model = "cs_leostrauss", hash = 0xFA0312B3, outfits = 11 }, + [0x4D24C49A] = { model = "cs_levisimon", hash = 0x4D24C49A, outfits = 1 }, + [0x8A1FCA47] = { model = "cs_leviticuscornwall", hash = 0x8A1FCA47, outfits = 1 }, + [0x19686DFA] = { model = "cs_lillianpowell", hash = 0x19686DFA, outfits = 3 }, + [0x55C7D09F] = { model = "cs_lillymillet", hash = 0x55C7D09F, outfits = 1 }, + [0x4DBE35B8] = { model = "cs_londonderryson", hash = 0x4DBE35B8, outfits = 1 }, + [0x77435EF1] = { model = "cs_lucanapoli", hash = 0x77435EF1, outfits = 1 }, + [0x5F5942DD] = { model = "cs_magnifico", hash = 0x5F5942DD, outfits = 2 }, + [0x4B6ECAEF] = { model = "cs_mamawatson", hash = 0x4B6ECAEF, outfits = 1 }, + [0x3940877D] = { model = "cs_marshall_thurwell", hash = 0x3940877D, outfits = 1 }, + [0x9B37429C] = { model = "cs_marybeth", hash = 0x9B37429C, outfits = 8 }, + [0x3EA5B5BC] = { model = "cs_marylinton", hash = 0x3EA5B5BC, outfits = 5 }, + [0xF04DEE7E] = { model = "cs_meditatingmonk", hash = 0xF04DEE7E, outfits = 1 }, + [0xC0321438] = { model = "cs_meredith", hash = 0xC0321438, outfits = 1 }, + [0x3112E4AC] = { model = "cs_meredithsmother", hash = 0x3112E4AC, outfits = 1 }, + [0xDE361D65] = { model = "cs_micahbell", hash = 0xDE361D65, outfits = 32 }, + [0xE2D294AB] = { model = "cs_micahsnemesis", hash = 0xE2D294AB, outfits = 1 }, + [0xA1DFB431] = { model = "cs_mickey", hash = 0xA1DFB431, outfits = 2 }, + [0x01004B26] = { model = "cs_miltonandrews", hash = 0x01004B26, outfits = 2 }, + [0x859CBAAC] = { model = "cs_missmarjorie", hash = 0x859CBAAC, outfits = 3 }, + [0xFBBC94C6] = { model = "cs_mixedracekid", hash = 0xFBBC94C6, outfits = 2 }, + [0x9BAAB546] = { model = "cs_moira", hash = 0x9BAAB546, outfits = 1 }, + [0xEB55C35E] = { model = "cs_mollyoshea", hash = 0xEB55C35E, outfits = 8 }, + [0x4C4448BA] = { model = "cs_mp_alfredo_montez", hash = 0x4C4448BA, outfits = 4 }, + [0x931F01E5] = { model = "cs_mp_allison", hash = 0x931F01E5, outfits = 1 }, + [0x30E034CA] = { model = "cs_mp_amos_lansing", hash = 0x30E034CA, outfits = 1 }, + [0x39456FEE] = { model = "cs_mp_bonnie", hash = 0x39456FEE, outfits = 1 }, + [0x892944C5] = { model = "cs_mp_bountyhunter", hash = 0x892944C5, outfits = 1 }, + [0x9F7769F3] = { model = "cs_mp_camp_cook", hash = 0x9F7769F3, outfits = 3 }, + [0xEADDA26C] = { model = "cs_mp_cliff", hash = 0xEADDA26C, outfits = 1 }, + [0x1DD24709] = { model = "cs_mp_cripps", hash = 0x1DD24709, outfits = 25 }, + [0x2CDA4B15] = { model = "cs_mp_grace_lancing", hash = 0x2CDA4B15, outfits = 1 }, + [0x893E6E25] = { model = "cs_mp_hans", hash = 0x893E6E25, outfits = 1 }, + [0xDAB77DF1] = { model = "cs_mp_henchman", hash = 0xDAB77DF1, outfits = 3 }, + [0x4BFBF802] = { model = "cs_mp_horley", hash = 0x4BFBF802, outfits = 1 }, + [0x2EDEF9ED] = { model = "cs_mp_jeremiah_shaw", hash = 0x2EDEF9ED, outfits = 1 }, + [0x6B759DBB] = { model = "cs_mp_jessica", hash = 0x6B759DBB, outfits = 3 }, + [0x8BF81D72] = { model = "cs_mp_jorge_montez", hash = 0x8BF81D72, outfits = 2 }, + [0x9A00FB76] = { model = "cs_mp_langston", hash = 0x9A00FB76, outfits = 1 }, + [0x75DCACF2] = { model = "cs_mp_lee", hash = 0x75DCACF2, outfits = 1 }, + [0xB93CB429] = { model = "cs_mp_mabel", hash = 0xB93CB429, outfits = 1 }, + [0xE24327D2] = { model = "cs_mp_marshall_davies", hash = 0xE24327D2, outfits = 2 }, + [0x65C51599] = { model = "cs_mp_moonshiner", hash = 0x65C51599, outfits = 1 }, + [0xA3261C0D] = { model = "cs_mp_mradler", hash = 0xA3261C0D, outfits = 1 }, + [0xE87FE55D] = { model = "cs_mp_oldman_jones", hash = 0xE87FE55D, outfits = 2 }, + [0x4549CCA0] = { model = "cs_mp_revenge_marshall", hash = 0x4549CCA0, outfits = 1 }, + [0xE757DE29] = { model = "cs_mp_samson_finch", hash = 0xE757DE29, outfits = 3 }, + [0x9A3713AD] = { model = "cs_mp_shaky", hash = 0x9A3713AD, outfits = 1 }, + [0x28AE1CF3] = { model = "cs_mp_sherifffreeman", hash = 0x28AE1CF3, outfits = 1 }, + [0xBB202735] = { model = "cs_mp_teddybrown", hash = 0xBB202735, outfits = 2 }, + [0xB36FBE5E] = { model = "cs_mp_terrance", hash = 0xB36FBE5E, outfits = 1 }, + [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [0xE20455E9] = { model = "cs_mp_travellingsaleswoman", hash = 0xE20455E9, outfits = 1 }, + [0xB496E3FB] = { model = "cs_mp_went", hash = 0xB496E3FB, outfits = 3 }, + [0xAB270CC9] = { model = "cs_mradler", hash = 0xAB270CC9, outfits = 3 }, + [0xA89E5746] = { model = "cs_mrdevon", hash = 0xA89E5746, outfits = 1 }, + [0xEFBFEDB1] = { model = "cs_mrlinton", hash = 0xEFBFEDB1, outfits = 1 }, + [0x3AAAB060] = { model = "cs_mrpearson", hash = 0x3AAAB060, outfits = 9 }, + [0x155E51DB] = { model = "cs_mrsadler", hash = 0x155E51DB, outfits = 22 }, + [0x2AB79B76] = { model = "cs_mrsfellows", hash = 0x2AB79B76, outfits = 1 }, + [0xEFC21975] = { model = "cs_mrsgeddes", hash = 0xEFC21975, outfits = 1 }, + [0x5187C29B] = { model = "cs_mrslondonderry", hash = 0x5187C29B, outfits = 1 }, + [0xFEFB81C0] = { model = "cs_mrsweathers", hash = 0xFEFB81C0, outfits = 1 }, + [0x4481AEDF] = { model = "cs_mrs_calhoun", hash = 0x4481AEDF, outfits = 1 }, + [0x62C1389E] = { model = "cs_mrs_sinclair", hash = 0x62C1389E, outfits = 1 }, + [0x41A0B3F7] = { model = "cs_mrwayne", hash = 0x41A0B3F7, outfits = 1 }, + [0x84490A12] = { model = "cs_mud2bigguy", hash = 0x84490A12, outfits = 6 }, + [0xF65EE3E1] = { model = "cs_mysteriousstranger", hash = 0xF65EE3E1, outfits = 1 }, + [0x753590C4] = { model = "cs_nbxdrunk", hash = 0x753590C4, outfits = 2 }, + [0x79AEBA08] = { model = "cs_nbxexecuted", hash = 0x79AEBA08, outfits = 2 }, + [0xC19649AA] = { model = "cs_nbxpolicechiefformal", hash = 0xC19649AA, outfits = 1 }, + [0xC175E70A] = { model = "cs_nbxreceptionist_01", hash = 0xC175E70A, outfits = 1 }, + [0xB304BB4D] = { model = "cs_nial_whelan", hash = 0xB304BB4D, outfits = 1 }, + [0x4995C0A5] = { model = "cs_nicholastimmins", hash = 0x4995C0A5, outfits = 2 }, + [0x031076F6] = { model = "cs_nils", hash = 0x031076F6, outfits = 1 }, + [0xB4B65231] = { model = "cs_norrisforsythe", hash = 0xB4B65231, outfits = 2 }, + [0x04156A73] = { model = "cs_obediahhinton", hash = 0x04156A73, outfits = 1 }, + [0xA91215CD] = { model = "cs_oddfellowspinhead", hash = 0xA91215CD, outfits = 2 }, + [0x62589584] = { model = "cs_odprostitute", hash = 0x62589584, outfits = 1 }, + [0x5B00992C] = { model = "cs_operasinger", hash = 0x5B00992C, outfits = 1 }, + [0xBC537EB7] = { model = "cs_paytah", hash = 0xBC537EB7, outfits = 4 }, + [0x8617AB88] = { model = "cs_penelopebraithwaite", hash = 0x8617AB88, outfits = 2 }, + [0xA06649D4] = { model = "cs_pinkertongoon", hash = 0xA06649D4, outfits = 1 }, + [0x2E258627] = { model = "cs_poisonwellshaman", hash = 0x2E258627, outfits = 2 }, + [0x19E97506] = { model = "cs_poorjoe", hash = 0x19E97506, outfits = 1 }, + [0xDD5F0343] = { model = "cs_priest_wedding", hash = 0xDD5F0343, outfits = 1 }, + [0x89F94DED] = { model = "cs_princessisabeau", hash = 0x89F94DED, outfits = 1 }, + [0x7E1809E8] = { model = "cs_professorbell", hash = 0x7E1809E8, outfits = 1 }, + [0x85FE1E48] = { model = "cs_rainsfall", hash = 0x85FE1E48, outfits = 5 }, + [0x7CF95C98] = { model = "cs_ramon_cortez", hash = 0x7CF95C98, outfits = 1 }, + [0x656E59CC] = { model = "cs_reverendfortheringham", hash = 0x656E59CC, outfits = 2 }, + [0x60713474] = { model = "cs_revswanson", hash = 0x60713474, outfits = 7 }, + [0xC7BB68D5] = { model = "cs_rhodeputy_01", hash = 0xC7BB68D5, outfits = 1 }, + [0x583389C7] = { model = "cs_rhodeputy_02", hash = 0x583389C7, outfits = 1 }, + [0x774AB298] = { model = "cs_rhodesassistant", hash = 0x774AB298, outfits = 1 }, + [0x0F23E138] = { model = "cs_rhodeskidnapvictim", hash = 0x0F23E138, outfits = 1 }, + [0x7FA4ED12] = { model = "cs_rhodessaloonbouncer", hash = 0x7FA4ED12, outfits = 1 }, + [0x772D9802] = { model = "cs_ringmaster", hash = 0x772D9802, outfits = 1 }, + [0xF79A7EC2] = { model = "cs_rockyseven_widow", hash = 0xF79A7EC2, outfits = 5 }, + [0xF0297311] = { model = "cs_samaritan", hash = 0xF0297311, outfits = 1 }, + [0xCF75E336] = { model = "cs_scottgray", hash = 0xCF75E336, outfits = 1 }, + [0xCF12BFF0] = { model = "cs_sddoctor_01", hash = 0xCF12BFF0, outfits = 1 }, + [0xE4E66C41] = { model = "cs_sdpriest", hash = 0xE4E66C41, outfits = 1 }, + [0x6DC2F2F2] = { model = "cs_sdsaloondrunk_01", hash = 0x6DC2F2F2, outfits = 1 }, + [0x0F274F72] = { model = "cs_sdstreetkidthief", hash = 0x0F274F72, outfits = 1 }, + [0xEEB2E5FD] = { model = "cs_sd_streetkid_01", hash = 0xEEB2E5FD, outfits = 1 }, + [0x678E7CA0] = { model = "cs_sd_streetkid_01a", hash = 0x678E7CA0, outfits = 1 }, + [0x32541234] = { model = "cs_sd_streetkid_01b", hash = 0x32541234, outfits = 1 }, + [0x6EF76684] = { model = "cs_sd_streetkid_02", hash = 0x6EF76684, outfits = 1 }, + [0xE0D7A2B2] = { model = "cs_sean", hash = 0xE0D7A2B2, outfits = 17 }, + [0xC192917D] = { model = "cs_sherifffreeman", hash = 0xC192917D, outfits = 2 }, + [0xCEE81C27] = { model = "cs_sheriffowens", hash = 0xCEE81C27, outfits = 2 }, + [0x839CCCAC] = { model = "cs_sistercalderon", hash = 0x839CCCAC, outfits = 1 }, + [0xE9B80099] = { model = "cs_slavecatcher", hash = 0xE9B80099, outfits = 1 }, + [0x51C80EFD] = { model = "cs_soothsayer", hash = 0x51C80EFD, outfits = 2 }, + [0x4B7EAC47] = { model = "cs_strawberryoutlaw_01", hash = 0x4B7EAC47, outfits = 1 }, + [0x99D4C8F2] = { model = "cs_strawberryoutlaw_02", hash = 0x99D4C8F2, outfits = 1 }, + [0xA792AF18] = { model = "cs_strdeputy_01", hash = 0xA792AF18, outfits = 1 }, + [0xDDD99BA5] = { model = "cs_strdeputy_02", hash = 0xDDD99BA5, outfits = 1 }, + [0x83E7B7BB] = { model = "cs_strsheriff_01", hash = 0x83E7B7BB, outfits = 1 }, + [0x196D5830] = { model = "cs_sunworshipper", hash = 0x196D5830, outfits = 1 }, + [0x6509A069] = { model = "cs_susangrimshaw", hash = 0x6509A069, outfits = 12 }, + [0xA9A328D5] = { model = "cs_swampfreak", hash = 0xA9A328D5, outfits = 1 }, + [0x87A4C0B9] = { model = "cs_swampweirdosonny", hash = 0x87A4C0B9, outfits = 3 }, + [0x9654DDCF] = { model = "cs_sworddancer", hash = 0x9654DDCF, outfits = 1 }, + [0x53E86B71] = { model = "cs_tavishgray", hash = 0x53E86B71, outfits = 1 }, + [0x21914E41] = { model = "cs_taxidermist", hash = 0x21914E41, outfits = 1 }, + [0x49644A6F] = { model = "cs_theodorelevin", hash = 0x49644A6F, outfits = 2 }, + [0x03DFFD04] = { model = "cs_thomasdown", hash = 0x03DFFD04, outfits = 2 }, + [0xD690782C] = { model = "cs_tigerhandler", hash = 0xD690782C, outfits = 1 }, + [0x3DE6A545] = { model = "cs_tilly", hash = 0x3DE6A545, outfits = 12 }, + [0x8868C876] = { model = "cs_timothydonahue", hash = 0x8868C876, outfits = 2 }, + [0x8853FF79] = { model = "cs_tinyhermit", hash = 0x8853FF79, outfits = 2 }, + [0xBABFD910] = { model = "cs_tomdickens", hash = 0xBABFD910, outfits = 3 }, + [0x13458A93] = { model = "cs_towncrier", hash = 0x13458A93, outfits = 2 }, + [0x3AF591E8] = { model = "cs_treasurehunter", hash = 0x3AF591E8, outfits = 1 }, + [0x361005DD] = { model = "cs_twinbrother_01", hash = 0x361005DD, outfits = 2 }, + [0xA49B62BA] = { model = "cs_twinbrother_02", hash = 0xA49B62BA, outfits = 2 }, + [0xFD3C2696] = { model = "cs_twingroupie_01", hash = 0xFD3C2696, outfits = 1 }, + [0xEB8B8335] = { model = "cs_twingroupie_02", hash = 0xEB8B8335, outfits = 1 }, + [0xC63726DF] = { model = "cs_uncle", hash = 0xC63726DF, outfits = 12 }, + [0x87EF0B8D] = { model = "cs_unidusterjail_01", hash = 0x87EF0B8D, outfits = 1 }, + [0x70BEBBCF] = { model = "cs_valauctionboss_01", hash = 0x70BEBBCF, outfits = 2 }, + [0x6C07EC33] = { model = "cs_valdeputy_01", hash = 0x6C07EC33, outfits = 1 }, + [0x4124A908] = { model = "cs_valprayingman", hash = 0x4124A908, outfits = 1 }, + [0x3A643444] = { model = "cs_valprostitute_01", hash = 0x3A643444, outfits = 1 }, + [0x2B769669] = { model = "cs_valprostitute_02", hash = 0x2B769669, outfits = 1 }, + [0x8FB23370] = { model = "cs_valsheriff", hash = 0x8FB23370, outfits = 2 }, + [0xD95BCB7D] = { model = "cs_vampire", hash = 0xD95BCB7D, outfits = 1 }, + [0x36781BAC] = { model = "cs_vht_bathgirl", hash = 0x36781BAC, outfits = 1 }, + [0xFB0A7382] = { model = "cs_wapitiboy", hash = 0xFB0A7382, outfits = 1 }, + [0x9C0C8EE9] = { model = "cs_warvet", hash = 0x9C0C8EE9, outfits = 3 }, + [0x69439F09] = { model = "cs_watson_01", hash = 0x69439F09, outfits = 1 }, + [0x8C16E4AF] = { model = "cs_watson_02", hash = 0x8C16E4AF, outfits = 1 }, + [0x44EFD66E] = { model = "cs_watson_03", hash = 0x44EFD66E, outfits = 1 }, + [0x02E86DB1] = { model = "cs_welshfighter", hash = 0x02E86DB1, outfits = 1 }, + [0x03387076] = { model = "cs_wintonholmes", hash = 0x03387076, outfits = 3 }, + [0xBE52968B] = { model = "cs_wrobel", hash = 0xBE52968B, outfits = 1 }, + [0x0D7B4617] = { model = "female_skeleton", hash = 0x0D7B4617, outfits = 7 }, + [0x86B3E995] = { model = "gc_lemoynecaptive_males_01", hash = 0x86B3E995, outfits = 1 }, + [0x8C1DC732] = { model = "gc_skinnertorture_males_01", hash = 0x8C1DC732, outfits = 2 }, + [0x70E42FE7] = { model = "ge_delloboparty_females_01", hash = 0x70E42FE7, outfits = 2 }, + [0x335F7F4B] = { model = "g_f_m_uniduster_01", hash = 0x335F7F4B, outfits = 3 }, + [0x1973FE45] = { model = "g_m_m_bountyhunters_01", hash = 0x1973FE45, outfits = 65 }, + [0xBB343A2C] = { model = "g_m_m_uniafricanamericangang_01", hash = 0xBB343A2C, outfits = 42 }, + [0x19486791] = { model = "g_m_m_unibanditos_01", hash = 0x19486791, outfits = 167 }, + [0x2B92A067] = { model = "g_m_m_unibraithwaites_01", hash = 0x2B92A067, outfits = 50 }, + [0x58277E70] = { model = "g_m_m_unibrontegoons_01", hash = 0x58277E70, outfits = 83 }, + [0x93A369F1] = { model = "g_m_m_unicornwallgoons_01", hash = 0x93A369F1, outfits = 86 }, + [0x3F094007] = { model = "g_m_m_unicriminals_01", hash = 0x3F094007, outfits = 150 }, + [0x8954549C] = { model = "g_m_m_unicriminals_02", hash = 0x8954549C, outfits = 60 }, + [0x14B7F44D] = { model = "g_m_m_uniduster_01", hash = 0x14B7F44D, outfits = 184 }, + [0x030250E2] = { model = "g_m_m_uniduster_02", hash = 0x030250E2, outfits = 56 }, + [0xB4163307] = { model = "g_m_m_uniduster_03", hash = 0xB4163307, outfits = 37 }, + [0xD2846FE3] = { model = "g_m_m_uniduster_04", hash = 0xD2846FE3, outfits = 9 }, + [0x4FAEEA3A] = { model = "g_m_m_uniduster_05", hash = 0x4FAEEA3A, outfits = 26 }, + [0x15EB41F6] = { model = "g_m_m_unigrays_01", hash = 0x15EB41F6, outfits = 51 }, + [0x07A1A563] = { model = "g_m_m_unigrays_02", hash = 0x07A1A563, outfits = 30 }, + [0x15AF635E] = { model = "g_m_m_uniinbred_01", hash = 0x15AF635E, outfits = 131 }, + [0x5B44EF58] = { model = "g_m_m_unilangstonboys_01", hash = 0x5B44EF58, outfits = 35 }, + [0x0FD91413] = { model = "g_m_m_unimicahgoons_01", hash = 0x0FD91413, outfits = 31 }, + [0xAB3EBD92] = { model = "g_m_m_unimountainmen_01", hash = 0xAB3EBD92, outfits = 129 }, + [0xBF03A565] = { model = "g_m_m_uniranchers_01", hash = 0xBF03A565, outfits = 87 }, + [0xE0165EA0] = { model = "g_m_m_uniswamp_01", hash = 0xE0165EA0, outfits = 43 }, + [0xEAD13D7C] = { model = "g_m_o_uniexconfeds_01", hash = 0xEAD13D7C, outfits = 93 }, + [0xDA82E29B] = { model = "g_m_y_uniexconfeds_01", hash = 0xDA82E29B, outfits = 124 }, + [0xC631B9F9] = { model = "g_m_y_uniexconfeds_02", hash = 0xC631B9F9, outfits = 33 }, + [0xA9567850] = { model = "loansharking_asbminer_males_01", hash = 0xA9567850, outfits = 1 }, + [0x9DD82D05] = { model = "loansharking_horsechase1_males_01", hash = 0x9DD82D05, outfits = 2 }, + [0x4E711917] = { model = "loansharking_undertaker_females_01", hash = 0x4E711917, outfits = 4 }, + [0x67C00DFB] = { model = "loansharking_undertaker_males_01", hash = 0x67C00DFB, outfits = 3 }, + [0xDFEF070E] = { model = "male_skeleton", hash = 0xDFEF070E, outfits = 4 }, + [0xC4C0600A] = { model = "mbh_rhodesrancher_females_01", hash = 0xC4C0600A, outfits = 1 }, + [0x5F0A1475] = { model = "mbh_rhodesrancher_teens_01", hash = 0x5F0A1475, outfits = 1 }, + [0xDF4A4EAC] = { model = "mbh_skinnersearch_males_01", hash = 0xDF4A4EAC, outfits = 2 }, + [0x741E7444] = { model = "mes_abigail2_males_01", hash = 0x741E7444, outfits = 4 }, + [0xB7E1A569] = { model = "mes_finale2_females_01", hash = 0xB7E1A569, outfits = 1 }, + [0x28618747] = { model = "mes_finale2_males_01", hash = 0x28618747, outfits = 4 }, + [0x389A64ED] = { model = "mes_finale3_males_01", hash = 0x389A64ED, outfits = 3 }, + [0x45402C7A] = { model = "mes_marston1_males_01", hash = 0x45402C7A, outfits = 2 }, + [0x991856F4] = { model = "mes_marston2_males_01", hash = 0x991856F4, outfits = 4 }, + [0x3E837D5B] = { model = "mes_marston5_2_males_01", hash = 0x3E837D5B, outfits = 1 }, + [0x01C0B992] = { model = "mes_marston6_females_01", hash = 0x01C0B992, outfits = 1 }, + [0x7BE6B9E8] = { model = "mes_marston6_males_01", hash = 0x7BE6B9E8, outfits = 29 }, + [0x1DE80335] = { model = "mes_marston6_teens_01", hash = 0x1DE80335, outfits = 1 }, + [0x74B85769] = { model = "mes_sadie4_males_01", hash = 0x74B85769, outfits = 1 }, + [0x09FBB7EC] = { model = "mes_sadie5_males_01", hash = 0x09FBB7EC, outfits = 7 }, + [0x9775AA11] = { model = "mp_asntrk_elysianpool_males_01", hash = 0x9775AA11, outfits = 6 }, + [0xA8D76FEE] = { model = "mp_asntrk_grizzlieswest_males_01", hash = 0xA8D76FEE, outfits = 6 }, + [0x6F3BC4E1] = { model = "mp_asntrk_hagenorchard_males_01", hash = 0x6F3BC4E1, outfits = 6 }, + [0xE9C4EF73] = { model = "mp_asntrk_isabella_males_01", hash = 0xE9C4EF73, outfits = 6 }, + [0x61227303] = { model = "mp_asntrk_talltrees_males_01", hash = 0x61227303, outfits = 6 }, + [0xE30D07F8] = { model = "mp_asn_benedictpoint_females_01", hash = 0xE30D07F8, outfits = 1 }, + [0x8F4385F4] = { model = "mp_asn_benedictpoint_males_01", hash = 0x8F4385F4, outfits = 6 }, + [0x9A33030D] = { model = "mp_asn_blackwater_males_01", hash = 0x9A33030D, outfits = 6 }, + [0xFF2ED4F7] = { model = "mp_asn_braithwaitemanor_males_01", hash = 0xFF2ED4F7, outfits = 2 }, + [0xA6EFA47E] = { model = "mp_asn_braithwaitemanor_males_02", hash = 0xA6EFA47E, outfits = 4 }, + [0xA1A899F0] = { model = "mp_asn_braithwaitemanor_males_03", hash = 0xA1A899F0, outfits = 5 }, + [0x157604BC] = { model = "mp_asn_civilwarfort_males_01", hash = 0x157604BC, outfits = 6 }, + [0x3A31D8F5] = { model = "mp_asn_gaptoothbreach_males_01", hash = 0x3A31D8F5, outfits = 6 }, + [0x83DD3196] = { model = "mp_asn_pikesbasin_males_01", hash = 0x83DD3196, outfits = 5 }, + [0x75D3315F] = { model = "mp_asn_sdpolicestation_males_01", hash = 0x75D3315F, outfits = 6 }, + [0xA04152A6] = { model = "mp_asn_sdwedding_females_01", hash = 0xA04152A6, outfits = 3 }, + [0xEB1EA62E] = { model = "mp_asn_sdwedding_males_01", hash = 0xEB1EA62E, outfits = 5 }, + [0x4B40DFF1] = { model = "mp_asn_shadybelle_females_01", hash = 0x4B40DFF1, outfits = 1 }, + [0xBAD040F0] = { model = "mp_asn_stillwater_males_01", hash = 0xBAD040F0, outfits = 6 }, + [0x586000CF] = { model = "MP_A_C_HORSECORPSE_01", hash = 0x586000CF, outfits = 16 }, + [0xEE6C00F6] = { model = "mp_a_f_m_cardgameplayers_01", hash = 0xEE6C00F6, outfits = 40 }, + [0x37DF19AF] = { model = "MP_A_F_M_UniCorpse_01", hash = 0x37DF19AF, outfits = 44 }, + [0xC7FDE9D0] = { model = "mp_a_m_m_laboruprisers_01", hash = 0xC7FDE9D0, outfits = 53 }, + [0x82868F58] = { model = "MP_A_M_M_UniCorpse_01", hash = 0x82868F58, outfits = 142 }, + [0x79E64F11] = { model = "mp_campdef_bluewater_females_01", hash = 0x79E64F11, outfits = 1 }, + [0xD26B0098] = { model = "mp_campdef_bluewater_males_01", hash = 0xD26B0098, outfits = 1 }, + [0x82228527] = { model = "mp_campdef_chollasprings_females_01", hash = 0x82228527, outfits = 1 }, + [0xB128F981] = { model = "mp_campdef_chollasprings_males_01", hash = 0xB128F981, outfits = 2 }, + [0x91ACA5B0] = { model = "mp_campdef_eastnewhanover_females_01", hash = 0x91ACA5B0, outfits = 1 }, + [0x4F356F45] = { model = "mp_campdef_eastnewhanover_males_01", hash = 0x4F356F45, outfits = 1 }, + [0xF1C2D3BB] = { model = "mp_campdef_gaptoothbreach_females_01", hash = 0xF1C2D3BB, outfits = 1 }, + [0xAAD4292A] = { model = "mp_campdef_gaptoothbreach_males_01", hash = 0xAAD4292A, outfits = 3 }, + [0x219743D5] = { model = "mp_campdef_gaptoothridge_females_01", hash = 0x219743D5, outfits = 1 }, + [0xB5FEE612] = { model = "mp_campdef_gaptoothridge_males_01", hash = 0xB5FEE612, outfits = 1 }, + [0xC1B6341E] = { model = "mp_campdef_greatplains_males_01", hash = 0xC1B6341E, outfits = 2 }, + [0x543F0860] = { model = "mp_campdef_grizzlies_males_01", hash = 0x543F0860, outfits = 2 }, + [0x476306CA] = { model = "mp_campdef_heartlands1_males_01", hash = 0x476306CA, outfits = 2 }, + [0xCF202B72] = { model = "mp_campdef_heartlands2_females_01", hash = 0xCF202B72, outfits = 1 }, + [0x3B46C480] = { model = "mp_campdef_heartlands2_males_01", hash = 0x3B46C480, outfits = 2 }, + [0x4166D3EF] = { model = "mp_campdef_hennigans_females_01", hash = 0x4166D3EF, outfits = 1 }, + [0x62593BC8] = { model = "mp_campdef_hennigans_males_01", hash = 0x62593BC8, outfits = 1 }, + [0xF5A25A7E] = { model = "mp_campdef_littlecreek_females_01", hash = 0xF5A25A7E, outfits = 1 }, + [0xF4CAA01F] = { model = "mp_campdef_littlecreek_males_01", hash = 0xF4CAA01F, outfits = 1 }, + [0xE572A054] = { model = "mp_campdef_radleyspasture_females_01", hash = 0xE572A054, outfits = 1 }, + [0x4A465245] = { model = "mp_campdef_radleyspasture_males_01", hash = 0x4A465245, outfits = 1 }, + [0xC4DB3101] = { model = "mp_campdef_riobravo_females_01", hash = 0xC4DB3101, outfits = 1 }, + [0x5CE15A39] = { model = "mp_campdef_riobravo_males_01", hash = 0x5CE15A39, outfits = 1 }, + [0xEA68B402] = { model = "mp_campdef_roanoke_females_01", hash = 0xEA68B402, outfits = 1 }, + [0x24673B50] = { model = "mp_campdef_roanoke_males_01", hash = 0x24673B50, outfits = 1 }, + [0x5608A222] = { model = "mp_campdef_talltrees_females_01", hash = 0x5608A222, outfits = 1 }, + [0xD429EEF9] = { model = "mp_campdef_talltrees_males_01", hash = 0xD429EEF9, outfits = 1 }, + [0xB05F95C2] = { model = "mp_campdef_tworocks_females_01", hash = 0xB05F95C2, outfits = 2 }, + [0x20D9D1FF] = { model = "mp_chu_kid_armadillo_males_01", hash = 0x20D9D1FF, outfits = 4 }, + [0xD081C01E] = { model = "mp_chu_kid_diabloridge_males_01", hash = 0xD081C01E, outfits = 4 }, + [0xC45D87AE] = { model = "mp_chu_kid_emrstation_males_01", hash = 0xC45D87AE, outfits = 4 }, + [0xD5B76DF0] = { model = "mp_chu_kid_greatplains2_males_01", hash = 0xD5B76DF0, outfits = 4 }, + [0xDBB0CB10] = { model = "mp_chu_kid_greatplains_males_01", hash = 0xDBB0CB10, outfits = 4 }, + [0x4E7A9BCF] = { model = "mp_chu_kid_heartlands_males_01", hash = 0x4E7A9BCF, outfits = 4 }, + [0xBF8EE294] = { model = "mp_chu_kid_lagras_males_01", hash = 0xBF8EE294, outfits = 4 }, + [0x26D5E34F] = { model = "mp_chu_kid_lemoyne_females_01", hash = 0x26D5E34F, outfits = 2 }, + [0x24E340FC] = { model = "mp_chu_kid_lemoyne_males_01", hash = 0x24E340FC, outfits = 2 }, + [0xCE06BE54] = { model = "mp_chu_kid_recipient_males_01", hash = 0xCE06BE54, outfits = 22 }, + [0x562372BD] = { model = "mp_chu_kid_rhodes_males_01", hash = 0x562372BD, outfits = 4 }, + [0xF7B029BE] = { model = "mp_chu_kid_saintdenis_females_01", hash = 0xF7B029BE, outfits = 1 }, + [0xF21F12DE] = { model = "mp_chu_kid_saintdenis_males_01", hash = 0xF21F12DE, outfits = 3 }, + [0xBB574D98] = { model = "mp_chu_kid_scarlettmeadows_males_01", hash = 0xBB574D98, outfits = 4 }, + [0x199209F3] = { model = "mp_chu_kid_tumbleweed_males_01", hash = 0x199209F3, outfits = 4 }, + [0xB59A184C] = { model = "mp_chu_kid_valentine_males_01", hash = 0xB59A184C, outfits = 4 }, + [0x91359C49] = { model = "mp_chu_rob_ambarino_males_01", hash = 0x91359C49, outfits = 3 }, + [0xE8B7EB0E] = { model = "mp_chu_rob_annesburg_males_01", hash = 0xE8B7EB0E, outfits = 4 }, + [0xED566DA8] = { model = "mp_chu_rob_benedictpoint_females_01", hash = 0xED566DA8, outfits = 2 }, + [0x2361B4FF] = { model = "mp_chu_rob_benedictpoint_males_01", hash = 0x2361B4FF, outfits = 2 }, + [0x4DF62143] = { model = "mp_chu_rob_blackwater_males_01", hash = 0x4DF62143, outfits = 4 }, + [0xD1DD5373] = { model = "mp_chu_rob_caligahall_males_01", hash = 0xD1DD5373, outfits = 4 }, + [0xE910B9B1] = { model = "mp_chu_rob_coronado_males_01", hash = 0xE910B9B1, outfits = 4 }, + [0xEEB13746] = { model = "mp_chu_rob_cumberland_males_01", hash = 0xEEB13746, outfits = 4 }, + [0x3D8A8881] = { model = "mp_chu_rob_fortmercer_females_01", hash = 0x3D8A8881, outfits = 2 }, + [0xA3C40220] = { model = "mp_chu_rob_fortmercer_males_01", hash = 0xA3C40220, outfits = 2 }, + [0x2B7FB829] = { model = "mp_chu_rob_greenhollow_males_01", hash = 0x2B7FB829, outfits = 4 }, + [0x900768E4] = { model = "mp_chu_rob_macfarlanes_females_01", hash = 0x900768E4, outfits = 2 }, + [0x0C11A638] = { model = "mp_chu_rob_macfarlanes_males_01", hash = 0x0C11A638, outfits = 2 }, + [0xA23C0877] = { model = "mp_chu_rob_macleans_males_01", hash = 0xA23C0877, outfits = 4 }, + [0x71F63119] = { model = "mp_chu_rob_millesani_males_01", hash = 0x71F63119, outfits = 4 }, + [0xA33F8565] = { model = "mp_chu_rob_montanariver_males_01", hash = 0xA33F8565, outfits = 4 }, + [0xAE81DF28] = { model = "mp_chu_rob_paintedsky_males_01", hash = 0xAE81DF28, outfits = 4 }, + [0x26141D84] = { model = "mp_chu_rob_rathskeller_males_01", hash = 0x26141D84, outfits = 4 }, + [0xB5796996] = { model = "mp_chu_rob_recipient_males_01", hash = 0xB5796996, outfits = 33 }, + [0x67C9491C] = { model = "mp_chu_rob_rhodes_males_01", hash = 0x67C9491C, outfits = 4 }, + [0x37AA104A] = { model = "mp_chu_rob_strawberry_males_01", hash = 0x37AA104A, outfits = 4 }, + [0xDEC0EF74] = { model = "mp_clay", hash = 0xDEC0EF74, outfits = 1 }, + [0x36C085D8] = { model = "mp_convoy_recipient_females_01", hash = 0x36C085D8, outfits = 2 }, + [0xE5ED64CE] = { model = "mp_convoy_recipient_males_01", hash = 0xE5ED64CE, outfits = 19 }, + [0xD2AFC802] = { model = "mp_de_u_f_m_bigvalley_01", hash = 0xD2AFC802, outfits = 1 }, + [0xEB7C292D] = { model = "mp_de_u_f_m_bluewatermarsh_01", hash = 0xEB7C292D, outfits = 1 }, + [0xC615E4DE] = { model = "mp_de_u_f_m_braithwaite_01", hash = 0xC615E4DE, outfits = 2 }, + [0xFF7134DC] = { model = "mp_de_u_f_m_doverhill_01", hash = 0xFF7134DC, outfits = 1 }, + [0xDD895162] = { model = "mp_de_u_f_m_greatplains_01", hash = 0xDD895162, outfits = 1 }, + [0xCB42A78F] = { model = "mp_de_u_f_m_hangingrock_01", hash = 0xCB42A78F, outfits = 1 }, + [0x410D82BF] = { model = "mp_de_u_f_m_heartlands_01", hash = 0x410D82BF, outfits = 1 }, + [0x8841B9D2] = { model = "mp_de_u_f_m_hennigansstead_01", hash = 0x8841B9D2, outfits = 2 }, + [0xC50A2A9C] = { model = "mp_de_u_f_m_silentstead_01", hash = 0xC50A2A9C, outfits = 1 }, + [0xE079768D] = { model = "mp_de_u_m_m_aurorabasin_01", hash = 0xE079768D, outfits = 1 }, + [0x1A06F260] = { model = "mp_de_u_m_m_barrowlagoon_01", hash = 0x1A06F260, outfits = 1 }, + [0x30F2FBC2] = { model = "mp_de_u_m_m_bigvalleygraves_01", hash = 0x30F2FBC2, outfits = 1 }, + [0x54666FF4] = { model = "mp_de_u_m_m_centralunionrr_01", hash = 0x54666FF4, outfits = 1 }, + [0x6965178B] = { model = "mp_de_u_m_m_pleasance_01", hash = 0x6965178B, outfits = 1 }, + [0x7C77D19F] = { model = "mp_de_u_m_m_rileyscharge_01", hash = 0x7C77D19F, outfits = 1 }, + [0x7AA6CC47] = { model = "mp_de_u_m_m_vanhorn_01", hash = 0x7AA6CC47, outfits = 1 }, + [0x196B59E0] = { model = "mp_de_u_m_m_westernhomestead_01", hash = 0x196B59E0, outfits = 1 }, + [0x1029BAEF] = { model = "mp_dr_u_f_m_bayougatorfood_01", hash = 0x1029BAEF, outfits = 1 }, + [0x803C4357] = { model = "mp_dr_u_f_m_bigvalleycave_01", hash = 0x803C4357, outfits = 1 }, + [0xE782AB5E] = { model = "mp_dr_u_f_m_bigvalleycliff_01", hash = 0xE782AB5E, outfits = 1 }, + [0x5A8DED76] = { model = "mp_dr_u_f_m_bluewaterkidnap_01", hash = 0x5A8DED76, outfits = 1 }, + [0xA3696C2E] = { model = "mp_dr_u_f_m_colterbandits_01", hash = 0xA3696C2E, outfits = 1 }, + [0x911B4792] = { model = "mp_dr_u_f_m_colterbandits_02", hash = 0x911B4792, outfits = 1 }, + [0xB9E9E8B1] = { model = "mp_dr_u_f_m_missingfisherman_01", hash = 0xB9E9E8B1, outfits = 1 }, + [0x87AB8435] = { model = "mp_dr_u_f_m_missingfisherman_02", hash = 0x87AB8435, outfits = 1 }, + [0xA4C6684C] = { model = "mp_dr_u_f_m_mistakenbounties_01", hash = 0xA4C6684C, outfits = 1 }, + [0x8C3740DD] = { model = "mp_dr_u_f_m_plaguetown_01", hash = 0x8C3740DD, outfits = 1 }, + [0xEF81CFCA] = { model = "mp_dr_u_f_m_quakerscove_01", hash = 0xEF81CFCA, outfits = 1 }, + [0xFD486B57] = { model = "mp_dr_u_f_m_quakerscove_02", hash = 0xFD486B57, outfits = 1 }, + [0x20A8A154] = { model = "mp_dr_u_f_m_sdgraveyard_01", hash = 0x20A8A154, outfits = 1 }, + [0xC7DE347E] = { model = "mp_dr_u_m_m_bigvalleycave_01", hash = 0xC7DE347E, outfits = 1 }, + [0xD9E86551] = { model = "mp_dr_u_m_m_bigvalleycliff_01", hash = 0xD9E86551, outfits = 1 }, + [0xA445B5D7] = { model = "mp_dr_u_m_m_bluewaterkidnap_01", hash = 0xA445B5D7, outfits = 1 }, + [0x23135A75] = { model = "mp_dr_u_m_m_canoeescape_01", hash = 0x23135A75, outfits = 1 }, + [0x322BCA91] = { model = "mp_dr_u_m_m_hwyrobbery_01", hash = 0x322BCA91, outfits = 1 }, + [0x103F4CF2] = { model = "mp_dr_u_m_m_mistakenbounties_01", hash = 0x103F4CF2, outfits = 1 }, + [0xD63E91BF] = { model = "mp_dr_u_m_m_pikesbasin_01", hash = 0xD63E91BF, outfits = 1 }, + [0xF2CDCADD] = { model = "mp_dr_u_m_m_pikesbasin_02", hash = 0xF2CDCADD, outfits = 1 }, + [0x59D8AB63] = { model = "mp_dr_u_m_m_plaguetown_01", hash = 0x59D8AB63, outfits = 1 }, + [0x9A8AF99B] = { model = "mp_dr_u_m_m_roanokestandoff_01", hash = 0x9A8AF99B, outfits = 1 }, + [0xE80A6258] = { model = "mp_dr_u_m_m_sdgraveyard_01", hash = 0xE80A6258, outfits = 1 }, + [0xC33224A7] = { model = "mp_dr_u_m_m_sdmugging_01", hash = 0xC33224A7, outfits = 1 }, + [0x957FC943] = { model = "mp_dr_u_m_m_sdmugging_02", hash = 0x957FC943, outfits = 1 }, + [0xAA266E1C] = { model = "mp_freeroam_tut_females_01", hash = 0xAA266E1C, outfits = 5 }, + [0x217A0594] = { model = "mp_freeroam_tut_males_01", hash = 0x217A0594, outfits = 8 }, + [0xC36F9B8C] = { model = "mp_gunvoutd2_males_01", hash = 0xC36F9B8C, outfits = 11 }, + [0x3D6054E3] = { model = "mp_gunvoutd3_bht_01", hash = 0x3D6054E3, outfits = 2 }, + [0xAD674654] = { model = "mp_gunvoutd3_males_01", hash = 0xAD674654, outfits = 3 }, + [0x556ADA44] = { model = "mp_g_f_m_laperlegang_01", hash = 0x556ADA44, outfits = 26 }, + [0x64F76F7E] = { model = "mp_g_f_m_laperlevips_01", hash = 0x64F76F7E, outfits = 13 }, + [0xF7A82771] = { model = "mp_g_f_m_owlhootfamily_01", hash = 0xF7A82771, outfits = 17 }, + [0x9E00472E] = { model = "mp_g_m_m_armoredjuggernauts_01", hash = 0x9E00472E, outfits = 12 }, + [0xC6BEFCC7] = { model = "mp_g_m_m_bountyhunters_01", hash = 0xC6BEFCC7, outfits = 50 }, + [0x8496557A] = { model = "mp_g_m_m_owlhootfamily_01", hash = 0x8496557A, outfits = 25 }, + [0xC848BCB9] = { model = "mp_g_m_m_redbengang_01", hash = 0xC848BCB9, outfits = 38 }, + [0xBC696111] = { model = "mp_g_m_m_uniafricanamericangang_01", hash = 0xBC696111, outfits = 42 }, + [0xD9D85AA4] = { model = "mp_g_m_m_unibanditos_01", hash = 0xD9D85AA4, outfits = 141 }, + [0xC0A5F6FB] = { model = "mp_g_m_m_unibraithwaites_01", hash = 0xC0A5F6FB, outfits = 40 }, + [0x079D07F0] = { model = "mp_g_m_m_unibrontegoons_01", hash = 0x079D07F0, outfits = 55 }, + [0xB6A13AB3] = { model = "mp_g_m_m_unicornwallgoons_01", hash = 0xB6A13AB3, outfits = 60 }, + [0xACB79D83] = { model = "mp_g_m_m_unicriminals_01", hash = 0xACB79D83, outfits = 88 }, + [0xFE0F4031] = { model = "mp_g_m_m_unicriminals_02", hash = 0xFE0F4031, outfits = 67 }, + [0x6B5CA98B] = { model = "mp_g_m_m_uniduster_01", hash = 0x6B5CA98B, outfits = 111 }, + [0x59528577] = { model = "mp_g_m_m_uniduster_02", hash = 0x59528577, outfits = 53 }, + [0x871160F4] = { model = "mp_g_m_m_uniduster_03", hash = 0x871160F4, outfits = 30 }, + [0x711F7A23] = { model = "mp_g_m_m_unigrays_01", hash = 0x711F7A23, outfits = 45 }, + [0x013268A4] = { model = "mp_g_m_m_uniinbred_01", hash = 0x013268A4, outfits = 67 }, + [0xD42E4CA3] = { model = "mp_g_m_m_unilangstonboys_01", hash = 0xD42E4CA3, outfits = 35 }, + [0xAEB6BF6F] = { model = "mp_g_m_m_unimountainmen_01", hash = 0xAEB6BF6F, outfits = 80 }, + [0x90E48CB5] = { model = "mp_g_m_m_uniranchers_01", hash = 0x90E48CB5, outfits = 61 }, + [0xA45E623D] = { model = "mp_g_m_m_uniswamp_01", hash = 0xA45E623D, outfits = 30 }, + [0x17F4271B] = { model = "mp_g_m_o_uniexconfeds_01", hash = 0x17F4271B, outfits = 64 }, + [0x66AB70C0] = { model = "mp_g_m_y_uniexconfeds_01", hash = 0x66AB70C0, outfits = 63 }, + [0x74A42620] = { model = "mp_horse_owlhootvictim_01", hash = 0x74A42620, outfits = 2 }, + [0xA4805CEF] = { model = "mp_intercept_recipient_females_01", hash = 0xA4805CEF, outfits = 8 }, + [0x4FFF04AC] = { model = "mp_intercept_recipient_males_01", hash = 0x4FFF04AC, outfits = 29 }, + [0xC7897D53] = { model = "mp_intro_females_01", hash = 0xC7897D53, outfits = 7 }, + [0x1AC64C7E] = { model = "mp_intro_males_01", hash = 0x1AC64C7E, outfits = 15 }, + [0x9CF21703] = { model = "mp_jailbreak_males_01", hash = 0x9CF21703, outfits = 4 }, + [0xD5A51ED9] = { model = "mp_jailbreak_recipient_males_01", hash = 0xD5A51ED9, outfits = 6 }, + [0x1A94D3F2] = { model = "mp_lbt_m3_males_01", hash = 0x1A94D3F2, outfits = 8 }, + [0xB2CBE1E8] = { model = "mp_lbt_m6_females_01", hash = 0xB2CBE1E8, outfits = 2 }, + [0xF08C75E6] = { model = "mp_lbt_m6_males_01", hash = 0xF08C75E6, outfits = 5 }, + [0xD304CBEC] = { model = "mp_lbt_m7_males_01", hash = 0xD304CBEC, outfits = 8 }, + [0x265C2EDE] = { model = "mp_oth_recipient_males_01", hash = 0x265C2EDE, outfits = 5 }, + [0xE1E49865] = { model = "mp_outlaw1_males_01", hash = 0xE1E49865, outfits = 6 }, + [0x2FDCB16A] = { model = "mp_outlaw2_males_01", hash = 0x2FDCB16A, outfits = 1 }, + [0x7CCE73C7] = { model = "mp_post_multipackage_females_01", hash = 0x7CCE73C7, outfits = 10 }, + [0x9BA2E621] = { model = "mp_post_multipackage_males_01", hash = 0x9BA2E621, outfits = 34 }, + [0xF6846F69] = { model = "mp_post_multirelay_females_01", hash = 0xF6846F69, outfits = 5 }, + [0x49302DBB] = { model = "mp_post_multirelay_males_01", hash = 0x49302DBB, outfits = 20 }, + [0xBAC09F5F] = { model = "mp_post_relay_females_01", hash = 0xBAC09F5F, outfits = 1 }, + [0x6D8D4CA6] = { model = "mp_post_relay_males_01", hash = 0x6D8D4CA6, outfits = 23 }, + [0x2C7D2748] = { model = "mp_predator", hash = 0x2C7D2748, outfits = 8 }, + [0x9BCC5B80] = { model = "mp_prsn_asn_males_01", hash = 0x9BCC5B80, outfits = 14 }, + [0xD050B3FD] = { model = "mp_recover_recipient_females_01", hash = 0xD050B3FD, outfits = 1 }, + [0xFEE21E87] = { model = "mp_recover_recipient_males_01", hash = 0xFEE21E87, outfits = 5 }, + [0x8A118776] = { model = "mp_repoboat_recipient_females_01", hash = 0x8A118776, outfits = 2 }, + [0x817E92C2] = { model = "mp_repoboat_recipient_males_01", hash = 0x817E92C2, outfits = 5 }, + [0x4852F2D1] = { model = "mp_repo_recipient_females_01", hash = 0x4852F2D1, outfits = 2 }, + [0x93A9A5FC] = { model = "mp_repo_recipient_males_01", hash = 0x93A9A5FC, outfits = 12 }, + [0xEED4DB96] = { model = "mp_rescue_bottletree_females_01", hash = 0xEED4DB96, outfits = 1 }, + [0x5530F95C] = { model = "mp_rescue_bottletree_males_01", hash = 0x5530F95C, outfits = 2 }, + [0x90008F71] = { model = "mp_rescue_colter_males_01", hash = 0x90008F71, outfits = 1 }, + [0x46FD1150] = { model = "mp_rescue_cratersacrifice_males_01", hash = 0x46FD1150, outfits = 2 }, + [0x2A503D51] = { model = "mp_rescue_heartlands_males_01", hash = 0x2A503D51, outfits = 1 }, + [0xBEA076E0] = { model = "mp_rescue_loftkidnap_males_01", hash = 0xBEA076E0, outfits = 1 }, + [0x8CAC82BE] = { model = "mp_rescue_lonniesshack_males_01", hash = 0x8CAC82BE, outfits = 3 }, + [0x36234B83] = { model = "mp_rescue_moonstone_males_01", hash = 0x36234B83, outfits = 1 }, + [0x74B18E0F] = { model = "mp_rescue_mtnmanshack_males_01", hash = 0x74B18E0F, outfits = 3 }, + [0xE63DF429] = { model = "mp_rescue_recipient_females_01", hash = 0xE63DF429, outfits = 1 }, + [0x1738A70F] = { model = "mp_rescue_recipient_males_01", hash = 0x1738A70F, outfits = 7 }, + [0xDA91092F] = { model = "mp_rescue_rivalshack_males_01", hash = 0xDA91092F, outfits = 2 }, + [0x10482CCC] = { model = "mp_rescue_scarlettmeadows_males_01", hash = 0x10482CCC, outfits = 1 }, + [0x01AC6CA3] = { model = "mp_rescue_sddogfight_females_01", hash = 0x01AC6CA3, outfits = 1 }, + [0x80AB3DA0] = { model = "mp_rescue_sddogfight_males_01", hash = 0x80AB3DA0, outfits = 1 }, + [0x89C49271] = { model = "mp_resupply_recipient_females_01", hash = 0x89C49271, outfits = 7 }, + [0x028C5916] = { model = "mp_resupply_recipient_males_01", hash = 0x028C5916, outfits = 11 }, + [0x340E6CFB] = { model = "mp_revenge1_males_01", hash = 0x340E6CFB, outfits = 3 }, + [0x89330281] = { model = "mp_re_animalattack_females_01", hash = 0x89330281, outfits = 4 }, + [0x2C1694A4] = { model = "mp_re_animalattack_males_01", hash = 0x2C1694A4, outfits = 4 }, + [0x9D90BC3C] = { model = "mp_re_duel_females_01", hash = 0x9D90BC3C, outfits = 4 }, + [0x34F02197] = { model = "mp_re_duel_males_01", hash = 0x34F02197, outfits = 4 }, + [0x7C6C7C1D] = { model = "mp_re_graverobber_females_01", hash = 0x7C6C7C1D, outfits = 1 }, + [0x55B73907] = { model = "mp_re_graverobber_males_01", hash = 0x55B73907, outfits = 1 }, + [0x263B0853] = { model = "mp_re_hobodog_females_01", hash = 0x263B0853, outfits = 2 }, + [0x401C6EC1] = { model = "mp_re_hobodog_males_01", hash = 0x401C6EC1, outfits = 4 }, + [0x45178DBF] = { model = "mp_re_kidnapped_females_01", hash = 0x45178DBF, outfits = 6 }, + [0x5E5607C3] = { model = "mp_re_kidnapped_males_01", hash = 0x5E5607C3, outfits = 6 }, + [0x5730F05E] = { model = "mp_re_photography_females_01", hash = 0x5730F05E, outfits = 2 }, + [0x65D60DA8] = { model = "mp_re_photography_females_02", hash = 0x65D60DA8, outfits = 2 }, + [0x8AE666DA] = { model = "mp_re_photography_males_01", hash = 0x8AE666DA, outfits = 2 }, + [0x98D1F6B3] = { model = "mp_re_rivalcollector_males_01", hash = 0x98D1F6B3, outfits = 20 }, + [0xFA0BF8E9] = { model = "mp_re_runawaywagon_females_01", hash = 0xFA0BF8E9, outfits = 3 }, + [0xD99C62B9] = { model = "mp_re_runawaywagon_males_01", hash = 0xD99C62B9, outfits = 3 }, + [0x3EB8315D] = { model = "mp_re_treasurehunter_females_01", hash = 0x3EB8315D, outfits = 2 }, + [0x36754ABE] = { model = "mp_re_treasurehunter_males_01", hash = 0x36754ABE, outfits = 2 }, + [0x40C07582] = { model = "mp_re_wildman_males_01", hash = 0x40C07582, outfits = 1 }, + [0x6D8072BA] = { model = "mp_stealboat_recipient_males_01", hash = 0x6D8072BA, outfits = 10 }, + [0x6BF26D7E] = { model = "mp_stealhorse_recipient_males_01", hash = 0x6BF26D7E, outfits = 29 }, + [0x05BC439E] = { model = "mp_stealwagon_recipient_males_01", hash = 0x05BC439E, outfits = 22 }, + [0x0C890518] = { model = "mp_s_m_m_cornwallguard_01", hash = 0x0C890518, outfits = 32 }, + [0xAD87E95D] = { model = "mp_s_m_m_pinlaw_01", hash = 0xAD87E95D, outfits = 40 }, + [0xE82A9EF5] = { model = "mp_tattoo_female", hash = 0xE82A9EF5, outfits = 1 }, + [0x02EC2BF7] = { model = "mp_tattoo_male", hash = 0x02EC2BF7, outfits = 1 }, + [0x30B5B617] = { model = "mp_u_f_m_bountytarget_001", hash = 0x30B5B617, outfits = 2 }, + [0x8AE66A77] = { model = "mp_u_f_m_bountytarget_002", hash = 0x8AE66A77, outfits = 2 }, + [0x53507B4C] = { model = "mp_u_f_m_bountytarget_003", hash = 0x53507B4C, outfits = 2 }, + [0x241D9CE7] = { model = "mp_u_f_m_bountytarget_004", hash = 0x241D9CE7, outfits = 2 }, + [0xE5D02049] = { model = "mp_u_f_m_bountytarget_005", hash = 0xE5D02049, outfits = 2 }, + [0x389945DE] = { model = "mp_u_f_m_bountytarget_006", hash = 0x389945DE, outfits = 2 }, + [0x06F56293] = { model = "mp_u_f_m_bountytarget_007", hash = 0x06F56293, outfits = 2 }, + [0xD8E38670] = { model = "mp_u_f_m_bountytarget_008", hash = 0xD8E38670, outfits = 2 }, + [0xABA92BFC] = { model = "mp_u_f_m_bountytarget_009", hash = 0xABA92BFC, outfits = 2 }, + [0x1C1C1174] = { model = "mp_u_f_m_bountytarget_010", hash = 0x1C1C1174, outfits = 2 }, + [0x2DE1B4FF] = { model = "mp_u_f_m_bountytarget_011", hash = 0x2DE1B4FF, outfits = 2 }, + [0x3F97D86B] = { model = "MP_U_F_M_BOUNTYTARGET_012", hash = 0x3F97D86B, outfits = 1 }, + [0x4F947864] = { model = "mp_u_f_m_bountytarget_013", hash = 0x4F947864, outfits = 2 }, + [0xD56E8422] = { model = "mp_u_f_m_bountytarget_014", hash = 0xD56E8422, outfits = 2 }, + [0x0EF547D0] = { model = "mp_u_f_m_gunslinger3_rifleman_02", hash = 0x0EF547D0, outfits = 1 }, + [0xC9E8C3C3] = { model = "mp_u_f_m_gunslinger3_sharpshooter_01", hash = 0xC9E8C3C3, outfits = 1 }, + [0x96A8968C] = { model = "mp_u_f_m_laperlevipmasked_01", hash = 0x96A8968C, outfits = 1 }, + [0xCE6085F7] = { model = "mp_u_f_m_laperlevipmasked_02", hash = 0xCE6085F7, outfits = 1 }, + [0xDFA9A889] = { model = "mp_u_f_m_laperlevipmasked_03", hash = 0xDFA9A889, outfits = 1 }, + [0xA3F030F3] = { model = "mp_u_f_m_laperlevipmasked_04", hash = 0xA3F030F3, outfits = 1 }, + [0x28F501C1] = { model = "mp_u_f_m_laperlevipunmasked_01", hash = 0x28F501C1, outfits = 1 }, + [0x3A3AA44C] = { model = "mp_u_f_m_laperlevipunmasked_02", hash = 0x3A3AA44C, outfits = 1 }, + [0x4CB3C93E] = { model = "mp_u_f_m_laperlevipunmasked_03", hash = 0x4CB3C93E, outfits = 1 }, + [0x5EEE6DB3] = { model = "mp_u_f_m_laperlevipunmasked_04", hash = 0x5EEE6DB3, outfits = 1 }, + [0x2CE57EFF] = { model = "mp_u_f_m_lbt_owlhootvictim_01", hash = 0x2CE57EFF, outfits = 1 }, + [0x507A33A6] = { model = "mp_u_f_m_legendarybounty_001", hash = 0x507A33A6, outfits = 1 }, + [0x88A423FD] = { model = "mp_u_f_m_legendarybounty_002", hash = 0x88A423FD, outfits = 8 }, + [0xA1EF7AAF] = { model = "mp_u_f_m_outlaw3_warner_01", hash = 0xA1EF7AAF, outfits = 1 }, + [0x33BC1E4A] = { model = "mp_u_f_m_outlaw3_warner_02", hash = 0x33BC1E4A, outfits = 1 }, + [0xC679DED7] = { model = "mp_u_f_m_revenge2_passerby_01", hash = 0xC679DED7, outfits = 1 }, + [0x2B38C3F4] = { model = "mp_u_m_m_armsheriff_01", hash = 0x2B38C3F4, outfits = 1 }, + [0x66B75A18] = { model = "mp_u_m_m_bountyinjuredman_01", hash = 0x66B75A18, outfits = 1 }, + [0xAE2D0F40] = { model = "mp_u_m_m_bountytarget_001", hash = 0xAE2D0F40, outfits = 2 }, + [0x9066D3B0] = { model = "mp_u_m_m_bountytarget_002", hash = 0x9066D3B0, outfits = 2 }, + [0xA095740D] = { model = "mp_u_m_m_bountytarget_003", hash = 0xA095740D, outfits = 2 }, + [0xF314990E] = { model = "mp_u_m_m_bountytarget_005", hash = 0xF314990E, outfits = 2 }, + [0xD7BB625C] = { model = "mp_u_m_m_bountytarget_008", hash = 0xD7BB625C, outfits = 2 }, + [0x5C366B54] = { model = "mp_u_m_m_bountytarget_009", hash = 0x5C366B54, outfits = 2 }, + [0x9710DFFC] = { model = "mp_u_m_m_bountytarget_010", hash = 0x9710DFFC, outfits = 2 }, + [0xF74DA078] = { model = "mp_u_m_m_bountytarget_011", hash = 0xF74DA078, outfits = 2 }, + [0xE98404E5] = { model = "mp_u_m_m_bountytarget_012", hash = 0xE98404E5, outfits = 2 }, + [0xDE80EEDF] = { model = "mp_u_m_m_bountytarget_013", hash = 0xDE80EEDF, outfits = 2 }, + [0xCDBA4D52] = { model = "mp_u_m_m_bountytarget_014", hash = 0xCDBA4D52, outfits = 2 }, + [0x00C8B356] = { model = "mp_u_m_m_bountytarget_015", hash = 0x00C8B356, outfits = 2 }, + [0xEF8B10DB] = { model = "mp_u_m_m_bountytarget_016", hash = 0xEF8B10DB, outfits = 2 }, + [0xE479FAB9] = { model = "mp_u_m_m_bountytarget_017", hash = 0xE479FAB9, outfits = 2 }, + [0xD6375E34] = { model = "mp_u_m_m_bountytarget_018", hash = 0xD6375E34, outfits = 2 }, + [0x37DC2180] = { model = "mp_u_m_m_bountytarget_019", hash = 0x37DC2180, outfits = 2 }, + [0x67D9F5A3] = { model = "mp_u_m_m_bountytarget_020", hash = 0x67D9F5A3, outfits = 2 }, + [0x34228E35] = { model = "mp_u_m_m_bountytarget_021", hash = 0x34228E35, outfits = 2 }, + [0x0B61BCAC] = { model = "mp_u_m_m_bountytarget_022", hash = 0x0B61BCAC, outfits = 2 }, + [0x59BCD969] = { model = "mp_u_m_m_bountytarget_023", hash = 0x59BCD969, outfits = 2 }, + [0x0D244031] = { model = "mp_u_m_m_bountytarget_024", hash = 0x0D244031, outfits = 2 }, + [0xFB5D1CA3] = { model = "mp_u_m_m_bountytarget_025", hash = 0xFB5D1CA3, outfits = 2 }, + [0xB1460876] = { model = "mp_u_m_m_bountytarget_026", hash = 0xB1460876, outfits = 2 }, + [0xC10827FA] = { model = "mp_u_m_m_bountytarget_027", hash = 0xC10827FA, outfits = 2 }, + [0xD5E2D1AF] = { model = "mp_u_m_m_bountytarget_028", hash = 0xD5E2D1AF, outfits = 2 }, + [0xE39BED21] = { model = "mp_u_m_m_bountytarget_029", hash = 0xE39BED21, outfits = 2 }, + [0xF41B8F40] = { model = "mp_u_m_m_bountytarget_030", hash = 0xF41B8F40, outfits = 2 }, + [0x55F252F4] = { model = "mp_u_m_m_bountytarget_031", hash = 0x55F252F4, outfits = 2 }, + [0x10AAC85E] = { model = "mp_u_m_m_bountytarget_032", hash = 0x10AAC85E, outfits = 2 }, + [0x02682BD9] = { model = "mp_u_m_m_bountytarget_033", hash = 0x02682BD9, outfits = 2 }, + [0xAD5581B5] = { model = "mp_u_m_m_bountytarget_034", hash = 0xAD5581B5, outfits = 2 }, + [0x1F32E56E] = { model = "mp_u_m_m_bountytarget_035", hash = 0x1F32E56E, outfits = 2 }, + [0xD96359D0] = { model = "mp_u_m_m_bountytarget_036", hash = 0xD96359D0, outfits = 2 }, + [0xCBCEBEA7] = { model = "mp_u_m_m_bountytarget_037", hash = 0xCBCEBEA7, outfits = 2 }, + [0x7618133B] = { model = "mp_u_m_m_bountytarget_038", hash = 0x7618133B, outfits = 2 }, + [0xE8277758] = { model = "mp_u_m_m_bountytarget_039", hash = 0xE8277758, outfits = 2 }, + [0x2D8122D2] = { model = "mp_u_m_m_bountytarget_044", hash = 0x2D8122D2, outfits = 2 }, + [0x3F4BC667] = { model = "mp_u_m_m_bountytarget_045", hash = 0x3F4BC667, outfits = 2 }, + [0x519CEB09] = { model = "mp_u_m_m_bountytarget_046", hash = 0x519CEB09, outfits = 2 }, + [0xE055886C] = { model = "mp_u_m_m_bountytarget_047", hash = 0xE055886C, outfits = 2 }, + [0xF032A826] = { model = "mp_u_m_m_bountytarget_048", hash = 0xF032A826, outfits = 2 }, + [0x05EFD3A0] = { model = "mp_u_m_m_bountytarget_049", hash = 0x05EFD3A0, outfits = 2 }, + [0x48B93642] = { model = "mp_u_m_m_bountytarget_050", hash = 0x48B93642, outfits = 2 }, + [0x968351D5] = { model = "mp_u_m_m_bountytarget_051", hash = 0x968351D5, outfits = 2 }, + [0x6A34F939] = { model = "mp_u_m_m_bountytarget_052", hash = 0x6A34F939, outfits = 2 }, + [0x381594FB] = { model = "mp_u_m_m_bountytarget_053", hash = 0x381594FB, outfits = 2 }, + [0xFDA5A014] = { model = "mp_u_m_m_bountytarget_054", hash = 0xFDA5A014, outfits = 2 }, + [0x4F89C3E3] = { model = "mp_u_m_m_bountytarget_055", hash = 0x4F89C3E3, outfits = 2 }, + [0x3A99297A] = { model = "mp_u_m_m_gunforhireclerk_01", hash = 0x3A99297A, outfits = 2 }, + [0xA8AC5B68] = { model = "mp_u_m_m_gunslinger3_rifleman_01", hash = 0xA8AC5B68, outfits = 1 }, + [0xB8B24C69] = { model = "mp_u_m_m_gunslinger3_sharpshooter_02", hash = 0xB8B24C69, outfits = 1 }, + [0xE9E0AEC7] = { model = "mp_u_m_m_gunslinger3_shotgunner_01", hash = 0xE9E0AEC7, outfits = 1 }, + [0x13AA0259] = { model = "mp_u_m_m_gunslinger3_shotgunner_02", hash = 0x13AA0259, outfits = 1 }, + [0xC3433CEF] = { model = "mp_u_m_m_gunslinger4_warner_01", hash = 0xC3433CEF, outfits = 1 }, + [0xC0669CB9] = { model = "mp_u_m_m_lbt_accomplice_01", hash = 0xC0669CB9, outfits = 1 }, + [0xD5DF9EC1] = { model = "mp_u_m_m_lbt_barbsvictim_01", hash = 0xD5DF9EC1, outfits = 1 }, + [0x3708EB8F] = { model = "mp_u_m_m_lbt_bribeinformant_01", hash = 0x3708EB8F, outfits = 1 }, + [0x23AC3035] = { model = "mp_u_m_m_lbt_coachdriver_01", hash = 0x23AC3035, outfits = 1 }, + [0xCF46EAEB] = { model = "mp_u_m_m_lbt_hostagemarshal_01", hash = 0xCF46EAEB, outfits = 1 }, + [0x7C32AD3B] = { model = "mp_u_m_m_lbt_owlhootvictim_01", hash = 0x7C32AD3B, outfits = 1 }, + [0xCA5CC98E] = { model = "mp_u_m_m_lbt_owlhootvictim_02", hash = 0xCA5CC98E, outfits = 1 }, + [0x5833651B] = { model = "mp_u_m_m_lbt_philipsvictim_01", hash = 0x5833651B, outfits = 2 }, + [0xA0968AC2] = { model = "mp_u_m_m_legendarybounty_001", hash = 0xA0968AC2, outfits = 1 }, + [0xB2752E7F] = { model = "mp_u_m_m_legendarybounty_002", hash = 0xB2752E7F, outfits = 1 }, + [0xBCF04375] = { model = "mp_u_m_m_legendarybounty_003", hash = 0xBCF04375, outfits = 1 }, + [0xCF21E7D8] = { model = "mp_u_m_m_legendarybounty_004", hash = 0xCF21E7D8, outfits = 1 }, + [0xE772187C] = { model = "mp_u_m_m_legendarybounty_005", hash = 0xE772187C, outfits = 2 }, + [0xF9BCBD11] = { model = "mp_u_m_m_legendarybounty_006", hash = 0xF9BCBD11, outfits = 2 }, + [0x03E5D163] = { model = "mp_u_m_m_legendarybounty_007", hash = 0x03E5D163, outfits = 1 }, + [0xD214F911] = { model = "mp_u_m_m_outlaw3_prisoner_01", hash = 0xD214F911, outfits = 1 }, + [0xA041956B] = { model = "mp_u_m_m_outlaw3_prisoner_02", hash = 0xA041956B, outfits = 1 }, + [0xCB422A48] = { model = "mp_u_m_m_outlaw3_warner_01", hash = 0xCB422A48, outfits = 1 }, + [0x9E094FD3] = { model = "mp_u_m_m_outlaw3_warner_02", hash = 0x9E094FD3, outfits = 1 }, + [0x8FF2C135] = { model = "mp_u_m_m_prisonwagon_01", hash = 0x8FF2C135, outfits = 2 }, + [0x39AB9484] = { model = "mp_u_m_m_prisonwagon_02", hash = 0x39AB9484, outfits = 2 }, + [0x4F65BFF8] = { model = "mp_u_m_m_prisonwagon_03", hash = 0x4F65BFF8, outfits = 2 }, + [0x189E526A] = { model = "mp_u_m_m_prisonwagon_04", hash = 0x189E526A, outfits = 2 }, + [0x2AE4F6F7] = { model = "mp_u_m_m_prisonwagon_05", hash = 0x2AE4F6F7, outfits = 2 }, + [0x74378993] = { model = "mp_u_m_m_prisonwagon_06", hash = 0x74378993, outfits = 2 }, + [0x530BE231] = { model = "mp_u_m_m_revenge2_handshaker_01", hash = 0x530BE231, outfits = 1 }, + [0x07D731A4] = { model = "mp_u_m_m_revenge2_passerby_01", hash = 0x07D731A4, outfits = 1 }, + [0xCD442B40] = { model = "mp_u_m_m_traderintroclerk_01", hash = 0xCD442B40, outfits = 1 }, + [0x7F96CF37] = { model = "mp_u_m_m_trader_01", hash = 0x7F96CF37, outfits = 2 }, + [0xB16AD39D] = { model = "mp_u_m_m_tvlfence_01", hash = 0xB16AD39D, outfits = 1 }, + [0x32D2C56D] = { model = "mp_u_m_o_blwpolicechief_01", hash = 0x32D2C56D, outfits = 8 }, + [0x749DDBE2] = { model = "mp_wgnbrkout_recipient_males_01", hash = 0x749DDBE2, outfits = 27 }, + [0xFD9DC5E0] = { model = "mp_wgnthief_recipient_males_01", hash = 0xFD9DC5E0, outfits = 24 }, + [0xF61DB75E] = { model = "msp_bountyhunter1_females_01", hash = 0xF61DB75E, outfits = 1 }, + [0xF4CED35C] = { model = "msp_braithwaites1_males_01", hash = 0xF4CED35C, outfits = 1 }, + [0x11C73FBE] = { model = "msp_feud1_males_01", hash = 0x11C73FBE, outfits = 4 }, + [0x776A1598] = { model = "msp_fussar2_males_01", hash = 0x776A1598, outfits = 3 }, + [0xD871A306] = { model = "msp_gang2_males_01", hash = 0xD871A306, outfits = 1 }, + [0x144452D7] = { model = "msp_gang3_males_01", hash = 0x144452D7, outfits = 2 }, + [0x39FF837C] = { model = "msp_grays1_males_01", hash = 0x39FF837C, outfits = 1 }, + [0xEA4A504D] = { model = "msp_grays2_males_01", hash = 0xEA4A504D, outfits = 1 }, + [0xDBAC89A0] = { model = "msp_guarma2_males_01", hash = 0xDBAC89A0, outfits = 3 }, + [0x1E9549CA] = { model = "msp_industry1_females_01", hash = 0x1E9549CA, outfits = 7 }, + [0xB294E4CA] = { model = "msp_industry1_males_01", hash = 0xB294E4CA, outfits = 8 }, + [0x59B2E634] = { model = "msp_industry3_females_01", hash = 0x59B2E634, outfits = 1 }, + [0x00E36FB7] = { model = "msp_industry3_males_01", hash = 0x00E36FB7, outfits = 8 }, + [0x25319F37] = { model = "msp_mary1_females_01", hash = 0x25319F37, outfits = 1 }, + [0x283AECFD] = { model = "msp_mary1_males_01", hash = 0x283AECFD, outfits = 2 }, + [0xC1040D2C] = { model = "msp_mary3_males_01", hash = 0xC1040D2C, outfits = 6 }, + [0x28F695AC] = { model = "msp_mob0_males_01", hash = 0x28F695AC, outfits = 1 }, + [0xF148DBF6] = { model = "msp_mob1_females_01", hash = 0xF148DBF6, outfits = 8 }, + [0x45453194] = { model = "msp_mob1_males_01", hash = 0x45453194, outfits = 7 }, + [0x391B7870] = { model = "msp_mob1_teens_01", hash = 0x391B7870, outfits = 7 }, + [0x90ADB7F1] = { model = "msp_mob3_females_01", hash = 0x90ADB7F1, outfits = 2 }, + [0xF1804E11] = { model = "msp_mob3_males_01", hash = 0xF1804E11, outfits = 4 }, + [0xB4F27E28] = { model = "msp_mudtown3b_females_01", hash = 0xB4F27E28, outfits = 20 }, + [0x90BA2D73] = { model = "msp_mudtown3b_males_01", hash = 0x90BA2D73, outfits = 20 }, + [0xC237B30F] = { model = "msp_mudtown3_males_01", hash = 0xC237B30F, outfits = 2 }, + [0x297869BA] = { model = "msp_mudtown5_males_01", hash = 0x297869BA, outfits = 5 }, + [0xB4685DE4] = { model = "msp_native1_males_01", hash = 0xB4685DE4, outfits = 3 }, + [0x97990286] = { model = "msp_reverend1_males_01", hash = 0x97990286, outfits = 4 }, + [0x77807351] = { model = "msp_saintdenis1_females_01", hash = 0x77807351, outfits = 6 }, + [0xF21ED93D] = { model = "msp_saintdenis1_males_01", hash = 0xF21ED93D, outfits = 17 }, + [0x961D2A2D] = { model = "msp_saloon1_females_01", hash = 0x961D2A2D, outfits = 22 }, + [0x8F03BE01] = { model = "msp_saloon1_males_01", hash = 0x8F03BE01, outfits = 45 }, + [0x1A2459CB] = { model = "msp_smuggler2_males_01", hash = 0x1A2459CB, outfits = 2 }, + [0x1754F82F] = { model = "msp_trainrobbery2_males_01", hash = 0x1754F82F, outfits = 4 }, + [0x840FA9CD] = { model = "msp_trelawny1_males_01", hash = 0x840FA9CD, outfits = 7 }, + [0x12EDDBCE] = { model = "msp_utopia1_males_01", hash = 0x12EDDBCE, outfits = 10 }, + [0xDE01E0F9] = { model = "msp_winter4_males_01", hash = 0xDE01E0F9, outfits = 1 }, + [0x00B69710] = { model = "player_three", hash = 0x00B69710, outfits = 33 }, + [0x0D7114C9] = { model = "player_zero", hash = 0x0D7114C9, outfits = 74 }, + [0x5C32DA8F] = { model = "rces_abigail3_females_01", hash = 0x5C32DA8F, outfits = 2 }, + [0x7BA67807] = { model = "rces_abigail3_males_01", hash = 0x7BA67807, outfits = 1 }, + [0xE1566351] = { model = "rces_beechers1_males_01", hash = 0xE1566351, outfits = 4 }, + [0xF63E07A5] = { model = "rces_evelynmiller_males_01", hash = 0xF63E07A5, outfits = 3 }, + [0xFB1CC58C] = { model = "rcsp_beauandpenelope1_females_01", hash = 0xFB1CC58C, outfits = 16 }, + [0x7BD8E784] = { model = "rcsp_beauandpenelope_males_01", hash = 0x7BD8E784, outfits = 5 }, + [0x6A407345] = { model = "rcsp_calderonstage2_males_01", hash = 0x6A407345, outfits = 2 }, + [0x21DF353D] = { model = "rcsp_calderonstage2_teens_01", hash = 0x21DF353D, outfits = 3 }, + [0x5278C19E] = { model = "rcsp_calderon_males_01", hash = 0x5278C19E, outfits = 3 }, + [0xCAF14192] = { model = "rcsp_calloway_males_01", hash = 0xCAF14192, outfits = 5 }, + [0xF9FF65FA] = { model = "rcsp_coachrobbery_males_01", hash = 0xF9FF65FA, outfits = 5 }, + [0xDF975FD2] = { model = "rcsp_crackpot_females_01", hash = 0xDF975FD2, outfits = 2 }, + [0x79A9623E] = { model = "rcsp_crackpot_males_01", hash = 0x79A9623E, outfits = 4 }, + [0x7F993AAD] = { model = "rcsp_creole_males_01", hash = 0x7F993AAD, outfits = 1 }, + [0xF9EB2E96] = { model = "rcsp_dutch1_males_01", hash = 0xF9EB2E96, outfits = 8 }, + [0x880560E1] = { model = "rcsp_dutch3_males_01", hash = 0x880560E1, outfits = 2 }, + [0x2B814C4B] = { model = "rcsp_edithdownes2_males_01", hash = 0x2B814C4B, outfits = 2 }, + [0xC4C59AD4] = { model = "rcsp_formyart_females_01", hash = 0xC4C59AD4, outfits = 6 }, + [0x158FFD8B] = { model = "rcsp_formyart_males_01", hash = 0x158FFD8B, outfits = 10 }, + [0x494FC69B] = { model = "rcsp_gunslingerduel4_males_01", hash = 0x494FC69B, outfits = 4 }, + [0x1268B0C9] = { model = "rcsp_herekittykitty_males_01", hash = 0x1268B0C9, outfits = 2 }, + [0x1319E95B] = { model = "rcsp_hunting1_males_01", hash = 0x1319E95B, outfits = 2 }, + [0x48EE7011] = { model = "rcsp_mrmayor_males_01", hash = 0x48EE7011, outfits = 1 }, + [0xB11093B2] = { model = "rcsp_native1s2_males_01", hash = 0xB11093B2, outfits = 5 }, + [0x4AAE5FA2] = { model = "rcsp_native_americanfathers_males_01", hash = 0x4AAE5FA2, outfits = 1 }, + [0x1B92FA61] = { model = "rcsp_oddfellows_males_01", hash = 0x1B92FA61, outfits = 1 }, + [0xBB375EE3] = { model = "rcsp_odriscolls2_females_01", hash = 0xBB375EE3, outfits = 3 }, + [0xC00FA82A] = { model = "rcsp_poisonedwell_females_01", hash = 0xC00FA82A, outfits = 4 }, + [0x36C54685] = { model = "rcsp_poisonedwell_males_01", hash = 0x36C54685, outfits = 6 }, + [0x4F0CE5B2] = { model = "rcsp_poisonedwell_teens_01", hash = 0x4F0CE5B2, outfits = 2 }, + [0xA4FD4905] = { model = "rcsp_ridethelightning_females_01", hash = 0xA4FD4905, outfits = 3 }, + [0x6325ED08] = { model = "rcsp_ridethelightning_males_01", hash = 0x6325ED08, outfits = 1 }, + [0xA3727520] = { model = "rcsp_sadie1_males_01", hash = 0xA3727520, outfits = 4 }, + [0xD8F7A42D] = { model = "rcsp_slavecatcher_males_01", hash = 0xD8F7A42D, outfits = 2 }, + [0xE486EF71] = { model = "re_animalattack_females_01", hash = 0xE486EF71, outfits = 1 }, + [0x62C7CB3C] = { model = "re_animalattack_males_01", hash = 0x62C7CB3C, outfits = 2 }, + [0x703FBE93] = { model = "re_animalmauling_males_01", hash = 0x703FBE93, outfits = 3 }, + [0xCA6AE495] = { model = "re_approach_males_01", hash = 0xCA6AE495, outfits = 2 }, + [0x5CB5E6EA] = { model = "re_beartrap_males_01", hash = 0x5CB5E6EA, outfits = 4 }, + [0xFB4137F2] = { model = "re_boatattack_males_01", hash = 0xFB4137F2, outfits = 3 }, + [0x367E8D6C] = { model = "re_burningbodies_males_01", hash = 0x367E8D6C, outfits = 3 }, + [0x95EC9DD3] = { model = "re_checkpoint_males_01", hash = 0x95EC9DD3, outfits = 2 }, + [0x629F1377] = { model = "re_coachrobbery_females_01", hash = 0x629F1377, outfits = 1 }, + [0x4499F637] = { model = "re_coachrobbery_males_01", hash = 0x4499F637, outfits = 8 }, + [0xE1568603] = { model = "re_consequence_males_01", hash = 0xE1568603, outfits = 8 }, + [0xD4AEC8B8] = { model = "re_corpsecart_females_01", hash = 0xD4AEC8B8, outfits = 2 }, + [0x5220FFBE] = { model = "re_corpsecart_males_01", hash = 0x5220FFBE, outfits = 3 }, + [0x79AC27BA] = { model = "re_crashedwagon_males_01", hash = 0x79AC27BA, outfits = 5 }, + [0xCE48FB7A] = { model = "re_darkalleyambush_males_01", hash = 0xCE48FB7A, outfits = 4 }, + [0x3069C374] = { model = "re_darkalleybum_males_01", hash = 0x3069C374, outfits = 5 }, + [0xA6D580A6] = { model = "re_darkalleystabbing_males_01", hash = 0xA6D580A6, outfits = 5 }, + [0x33DC2EF2] = { model = "re_deadbodies_males_01", hash = 0x33DC2EF2, outfits = 2 }, + [0xACDE9302] = { model = "re_deadjohn_females_01", hash = 0xACDE9302, outfits = 1 }, + [0xFDEB46B0] = { model = "re_deadjohn_males_01", hash = 0xFDEB46B0, outfits = 2 }, + [0x1FCA2943] = { model = "re_disabledbeggar_males_01", hash = 0x1FCA2943, outfits = 5 }, + [0x9DB7B801] = { model = "re_domesticdispute_females_01", hash = 0x9DB7B801, outfits = 3 }, + [0x6A11617F] = { model = "re_domesticdispute_males_01", hash = 0x6A11617F, outfits = 4 }, + [0x0E4180E1] = { model = "re_drownmurder_females_01", hash = 0x0E4180E1, outfits = 3 }, + [0xAEE8FDCD] = { model = "re_drownmurder_males_01", hash = 0xAEE8FDCD, outfits = 3 }, + [0xE5965991] = { model = "re_drunkcamp_males_01", hash = 0xE5965991, outfits = 5 }, + [0x58AF6095] = { model = "re_drunkdueler_males_01", hash = 0x58AF6095, outfits = 2 }, + [0xEF2609C7] = { model = "re_duelboaster_males_01", hash = 0xEF2609C7, outfits = 2 }, + [0xC96A4211] = { model = "re_duelwinner_females_01", hash = 0xC96A4211, outfits = 6 }, + [0x0DECFCD7] = { model = "re_duelwinner_males_01", hash = 0x0DECFCD7, outfits = 22 }, + [0x81978D28] = { model = "re_escort_females_01", hash = 0x81978D28, outfits = 2 }, + [0x2321E38B] = { model = "re_executions_males_01", hash = 0x2321E38B, outfits = 5 }, + [0xB2AC568B] = { model = "re_fleeingfamily_females_01", hash = 0xB2AC568B, outfits = 1 }, + [0x09FC3CA1] = { model = "re_fleeingfamily_males_01", hash = 0x09FC3CA1, outfits = 1 }, + [0x66F6F941] = { model = "re_footrobbery_males_01", hash = 0x66F6F941, outfits = 3 }, + [0x81BF6232] = { model = "re_friendlyoutdoorsman_males_01", hash = 0x81BF6232, outfits = 1 }, + [0x8755FDCB] = { model = "re_frozentodeath_females_01", hash = 0x8755FDCB, outfits = 1 }, + [0xC9CFCE6D] = { model = "re_frozentodeath_males_01", hash = 0xC9CFCE6D, outfits = 1 }, + [0x2E30B6C8] = { model = "re_fundraiser_females_01", hash = 0x2E30B6C8, outfits = 2 }, + [0xE459A4A5] = { model = "re_fussarchase_males_01", hash = 0xE459A4A5, outfits = 2 }, + [0x4E504380] = { model = "re_goldpanner_males_01", hash = 0x4E504380, outfits = 4 }, + [0xF502975D] = { model = "re_horserace_females_01", hash = 0xF502975D, outfits = 2 }, + [0x6CC05760] = { model = "re_horserace_males_01", hash = 0x6CC05760, outfits = 2 }, + [0x5D3650C0] = { model = "re_hostagerescue_females_01", hash = 0x5D3650C0, outfits = 2 }, + [0x65C6382C] = { model = "re_hostagerescue_males_01", hash = 0x65C6382C, outfits = 4 }, + [0xD1E15C65] = { model = "re_inbredkidnap_females_01", hash = 0xD1E15C65, outfits = 2 }, + [0x387C96BF] = { model = "re_inbredkidnap_males_01", hash = 0x387C96BF, outfits = 2 }, + [0x66CB93BC] = { model = "re_injuredrider_males_01", hash = 0x66CB93BC, outfits = 9 }, + [0x11D854F4] = { model = "re_kidnappedvictim_females_01", hash = 0x11D854F4, outfits = 4 }, + [0x1A468CD5] = { model = "re_laramiegangrustling_males_01", hash = 0x1A468CD5, outfits = 2 }, + [0xBEA07BE3] = { model = "re_loneprisoner_males_01", hash = 0xBEA07BE3, outfits = 2 }, + [0x42C14B8A] = { model = "re_lostdrunk_females_01", hash = 0x42C14B8A, outfits = 3 }, + [0x8AB27C20] = { model = "re_lostdrunk_males_01", hash = 0x8AB27C20, outfits = 4 }, + [0x0684C863] = { model = "re_lostfriend_males_01", hash = 0x0684C863, outfits = 5 }, + [0x24EA5130] = { model = "re_lostman_males_01", hash = 0x24EA5130, outfits = 1 }, + [0x791111A2] = { model = "re_moonshinecamp_males_01", hash = 0x791111A2, outfits = 4 }, + [0xCAB23E50] = { model = "re_murdercamp_males_01", hash = 0xCAB23E50, outfits = 3 }, + [0x6BB3CF86] = { model = "re_murdersuicide_females_01", hash = 0x6BB3CF86, outfits = 3 }, + [0x440BD544] = { model = "re_murdersuicide_males_01", hash = 0x440BD544, outfits = 3 }, + [0x29908B97] = { model = "re_nakedswimmer_males_01", hash = 0x29908B97, outfits = 1 }, + [0x8E6C0C2E] = { model = "re_ontherun_males_01", hash = 0x8E6C0C2E, outfits = 2 }, + [0xEEF6045E] = { model = "re_outlawlooter_males_01", hash = 0xEEF6045E, outfits = 24 }, + [0xB0D2EE63] = { model = "re_parlorambush_males_01", hash = 0xB0D2EE63, outfits = 1 }, + [0x1FD195D2] = { model = "re_peepingtom_females_01", hash = 0x1FD195D2, outfits = 3 }, + [0xDF72A84B] = { model = "re_peepingtom_males_01", hash = 0xDF72A84B, outfits = 8 }, + [0x91824246] = { model = "re_pickpocket_males_01", hash = 0x91824246, outfits = 3 }, + [0xEFF51021] = { model = "re_pisspot_females_01", hash = 0xEFF51021, outfits = 6 }, + [0xD730B466] = { model = "re_pisspot_males_01", hash = 0xD730B466, outfits = 10 }, + [0x531B5B75] = { model = "re_playercampstrangers_females_01", hash = 0x531B5B75, outfits = 2 }, + [0x2AC9BAAF] = { model = "re_playercampstrangers_males_01", hash = 0x2AC9BAAF, outfits = 1 }, + [0x7BCC9C83] = { model = "re_poisoned_males_01", hash = 0x7BCC9C83, outfits = 2 }, + [0x2BFFE26F] = { model = "re_policechase_males_01", hash = 0x2BFFE26F, outfits = 4 }, + [0x3EC9C4BC] = { model = "re_prisonwagon_females_01", hash = 0x3EC9C4BC, outfits = 5 }, + [0x2D438F6C] = { model = "re_prisonwagon_males_01", hash = 0x2D438F6C, outfits = 4 }, + [0xB2F47EFD] = { model = "re_publichanging_females_01", hash = 0xB2F47EFD, outfits = 17 }, + [0x6826C60C] = { model = "re_publichanging_males_01", hash = 0x6826C60C, outfits = 74 }, + [0xB2B11AFC] = { model = "re_publichanging_teens_01", hash = 0xB2B11AFC, outfits = 2 }, + [0xBB6D5452] = { model = "re_rallydispute_males_01", hash = 0xBB6D5452, outfits = 4 }, + [0x39C84A35] = { model = "re_rallysetup_males_01", hash = 0x39C84A35, outfits = 3 }, + [0x08486093] = { model = "re_rally_males_01", hash = 0x08486093, outfits = 13 }, + [0x89FB8610] = { model = "re_ratinfestation_males_01", hash = 0x89FB8610, outfits = 1 }, + [0x487E0B26] = { model = "re_rowdydrunks_males_01", hash = 0x487E0B26, outfits = 13 }, + [0xA8D0FBF7] = { model = "re_savageaftermath_females_01", hash = 0xA8D0FBF7, outfits = 2 }, + [0xF7C4FD8C] = { model = "re_savageaftermath_males_01", hash = 0xF7C4FD8C, outfits = 5 }, + [0x0D4D77B7] = { model = "re_savagefight_females_01", hash = 0x0D4D77B7, outfits = 3 }, + [0xBA652DBE] = { model = "re_savagefight_males_01", hash = 0xBA652DBE, outfits = 3 }, + [0xFFB2BFA4] = { model = "re_savagewagon_females_01", hash = 0xFFB2BFA4, outfits = 4 }, + [0xA9CDF6A9] = { model = "re_savagewagon_males_01", hash = 0xA9CDF6A9, outfits = 6 }, + [0x6461654D] = { model = "re_savagewarning_males_01", hash = 0x6461654D, outfits = 7 }, + [0x69723D9A] = { model = "re_sharpshooter_males_01", hash = 0x69723D9A, outfits = 2 }, + [0xE47AAB16] = { model = "re_showoff_males_01", hash = 0xE47AAB16, outfits = 8 }, + [0x548636CD] = { model = "re_skippingstones_males_01", hash = 0x548636CD, outfits = 1 }, + [0x38DB4E99] = { model = "re_skippingstones_teens_01", hash = 0x38DB4E99, outfits = 1 }, + [0x717C4D5F] = { model = "re_slumambush_females_01", hash = 0x717C4D5F, outfits = 2 }, + [0x6EB40313] = { model = "re_snakebite_males_01", hash = 0x6EB40313, outfits = 2 }, + [0xF3FAA72B] = { model = "re_stalkinghunter_males_01", hash = 0xF3FAA72B, outfits = 3 }, + [0x8CB8566C] = { model = "re_strandedrider_males_01", hash = 0x8CB8566C, outfits = 4 }, + [0x0834334E] = { model = "re_street_fight_males_01", hash = 0x0834334E, outfits = 24 }, + [0xFE6B32C9] = { model = "re_taunting_01", hash = 0xFE6B32C9, outfits = 2 }, + [0x6B768512] = { model = "re_taunting_males_01", hash = 0x6B768512, outfits = 3 }, + [0x789023D8] = { model = "re_torturingcaptive_males_01", hash = 0x789023D8, outfits = 2 }, + [0x13AB574F] = { model = "re_townburial_males_01", hash = 0x13AB574F, outfits = 18 }, + [0x6C3B3B5B] = { model = "re_townconfrontation_females_01", hash = 0x6C3B3B5B, outfits = 1 }, + [0xBE60CA00] = { model = "re_townconfrontation_males_01", hash = 0xBE60CA00, outfits = 4 }, + [0x0F3C1689] = { model = "re_townrobbery_males_01", hash = 0x0F3C1689, outfits = 2 }, + [0x436EBD6C] = { model = "re_townwidow_females_01", hash = 0x436EBD6C, outfits = 3 }, + [0x3F8A4F75] = { model = "re_trainholdup_females_01", hash = 0x3F8A4F75, outfits = 3 }, + [0xB985F131] = { model = "re_trainholdup_males_01", hash = 0xB985F131, outfits = 30 }, + [0xA99399B2] = { model = "re_trappedwoman_females_01", hash = 0xA99399B2, outfits = 3 }, + [0xF1E3C6B0] = { model = "re_treasurehunter_males_01", hash = 0xF1E3C6B0, outfits = 4 }, + [0x6A5B1E21] = { model = "re_voice_females_01", hash = 0x6A5B1E21, outfits = 1 }, + [0xEE8C468A] = { model = "re_wagonthreat_females_01", hash = 0xEE8C468A, outfits = 1 }, + [0xCA5501C8] = { model = "re_wagonthreat_males_01", hash = 0xCA5501C8, outfits = 2 }, + [0xAFC8B271] = { model = "re_washedashore_males_01", hash = 0xAFC8B271, outfits = 2 }, + [0x7EB7235E] = { model = "re_wealthycouple_females_01", hash = 0x7EB7235E, outfits = 2 }, + [0x76C957EC] = { model = "re_wealthycouple_males_01", hash = 0x76C957EC, outfits = 2 }, + [0x25D32467] = { model = "re_wildman_01", hash = 0x25D32467, outfits = 2 }, + [0x52938369] = { model = "shack_missinghusband_males_01", hash = 0x52938369, outfits = 1 }, + [0x98688D36] = { model = "shack_ontherun_males_01", hash = 0x98688D36, outfits = 3 }, + [0x9295AF45] = { model = "s_f_m_bwmworker_01", hash = 0x9295AF45, outfits = 20 }, + [0xDCEE66D9] = { model = "s_f_m_cghworker_01", hash = 0xDCEE66D9, outfits = 20 }, + [0xC463C94D] = { model = "s_f_m_mapworker_01", hash = 0xC463C94D, outfits = 10 }, + [0x8F45DDEB] = { model = "s_m_m_ambientblwpolice_01", hash = 0x8F45DDEB, outfits = 43 }, + [0x6D22857B] = { model = "s_m_m_ambientlawrural_01", hash = 0x6D22857B, outfits = 95 }, + [0xA9AD1A7D] = { model = "s_m_m_ambientsdpolice_01", hash = 0xA9AD1A7D, outfits = 44 }, + [0x2B0C75A7] = { model = "s_m_m_army_01", hash = 0x2B0C75A7, outfits = 59 }, + [0xBC548357] = { model = "s_m_m_asbcowpoke_01", hash = 0xBC548357, outfits = 30 }, + [0xA76308C1] = { model = "s_m_m_asbdealer_01", hash = 0xA76308C1, outfits = 10 }, + [0x40C51B9B] = { model = "s_m_m_bankclerk_01", hash = 0x40C51B9B, outfits = 13 }, + [0xD2FA5F10] = { model = "s_m_m_barber_01", hash = 0xD2FA5F10, outfits = 7 }, + [0x45B1C269] = { model = "s_m_m_blwcowpoke_01", hash = 0x45B1C269, outfits = 30 }, + [0x96B4CDFD] = { model = "s_m_m_blwdealer_01", hash = 0x96B4CDFD, outfits = 8 }, + [0x7FA7B097] = { model = "s_m_m_bwmworker_01", hash = 0x7FA7B097, outfits = 20 }, + [0x9E19AFE2] = { model = "s_m_m_cghworker_01", hash = 0x9E19AFE2, outfits = 30 }, + [0xCC2B5869] = { model = "s_m_m_cktworker_01", hash = 0xCC2B5869, outfits = 50 }, + [0x76F815AD] = { model = "s_m_m_coachtaxidriver_01", hash = 0x76F815AD, outfits = 16 }, + [0xBF1F0776] = { model = "s_m_m_cornwallguard_01", hash = 0xBF1F0776, outfits = 43 }, + [0xE9F4AB20] = { model = "s_m_m_dispatchlawrural_01", hash = 0xE9F4AB20, outfits = 65 }, + [0x7E16EC8D] = { model = "s_m_m_dispatchleaderpolice_01", hash = 0x7E16EC8D, outfits = 20 }, + [0x5040FF5C] = { model = "s_m_m_dispatchleaderrural_01", hash = 0x5040FF5C, outfits = 11 }, + [0xFFBABBF9] = { model = "s_m_m_dispatchpolice_01", hash = 0xFFBABBF9, outfits = 40 }, + [0xE917380E] = { model = "s_m_m_fussarhenchman_01", hash = 0xE917380E, outfits = 67 }, + [0x56016AD3] = { model = "s_m_m_genconductor_01", hash = 0x56016AD3, outfits = 11 }, + [0x2C8D5F17] = { model = "s_m_m_hofguard_01", hash = 0x2C8D5F17, outfits = 20 }, + [0x8649EF17] = { model = "s_m_m_liveryworker_01", hash = 0x8649EF17, outfits = 24 }, + [0x236B99E0] = { model = "s_m_m_magiclantern_01", hash = 0x236B99E0, outfits = 4 }, + [0x4A6B07B5] = { model = "s_m_m_mapworker_01", hash = 0x4A6B07B5, outfits = 10 }, + [0x5339E46B] = { model = "s_m_m_marketvendor_01", hash = 0x5339E46B, outfits = 16 }, + [0x3141A535] = { model = "s_m_m_marshallsrural_01", hash = 0x3141A535, outfits = 33 }, + [0xD952E41C] = { model = "s_m_m_micguard_01", hash = 0xD952E41C, outfits = 23 }, + [0x5D6431A9] = { model = "s_m_m_nbxriverboatdealers_01", hash = 0x5D6431A9, outfits = 20 }, + [0xDF00FFF5] = { model = "s_m_m_nbxriverboatguards_01", hash = 0xDF00FFF5, outfits = 25 }, + [0x6A4E496F] = { model = "s_m_m_orpguard_01", hash = 0x6A4E496F, outfits = 20 }, + [0x2BFB9F8F] = { model = "s_m_m_pinlaw_01", hash = 0x2BFB9F8F, outfits = 55 }, + [0xB72270C2] = { model = "s_m_m_racrailguards_01", hash = 0xB72270C2, outfits = 20 }, + [0x6CC9E1B0] = { model = "s_m_m_racrailworker_01", hash = 0x6CC9E1B0, outfits = 30 }, + [0xEDF61C81] = { model = "s_m_m_rhdcowpoke_01", hash = 0xEDF61C81, outfits = 20 }, + [0xD819DA9D] = { model = "s_m_m_rhddealer_01", hash = 0xD819DA9D, outfits = 8 }, + [0xC8C55680] = { model = "s_m_m_sdcowpoke_01", hash = 0xC8C55680, outfits = 35 }, + [0x6C604B17] = { model = "s_m_m_sddealer_01", hash = 0x6C604B17, outfits = 8 }, + [0xE02AEA58] = { model = "s_m_m_sdticketseller_01", hash = 0xE02AEA58, outfits = 6 }, + [0x459610AE] = { model = "s_m_m_skpguard_01", hash = 0x459610AE, outfits = 20 }, + [0xC55DA177] = { model = "s_m_m_stgsailor_01", hash = 0xC55DA177, outfits = 20 }, + [0xFCF4C01C] = { model = "s_m_m_strcowpoke_01", hash = 0xFCF4C01C, outfits = 21 }, + [0x65E1C35F] = { model = "s_m_m_strdealer_01", hash = 0x65E1C35F, outfits = 8 }, + [0x18A9A8A5] = { model = "s_m_m_strlumberjack_01", hash = 0x18A9A8A5, outfits = 16 }, + [0x2AE5771F] = { model = "s_m_m_tailor_01", hash = 0x2AE5771F, outfits = 7 }, + [0xE9694F3F] = { model = "s_m_m_trainstationworker_01", hash = 0xE9694F3F, outfits = 28 }, + [0xB27C0016] = { model = "s_m_m_tumdeputies_01", hash = 0xB27C0016, outfits = 22 }, + [0x0633DF9F] = { model = "s_m_m_unibutchers_01", hash = 0x0633DF9F, outfits = 13 }, + [0xD1264F4D] = { model = "s_m_m_unitrainengineer_01", hash = 0xD1264F4D, outfits = 10 }, + [0x083BB629] = { model = "s_m_m_unitrainguards_01", hash = 0x083BB629, outfits = 21 }, + [0x96AB9699] = { model = "s_m_m_valbankguards_01", hash = 0x96AB9699, outfits = 10 }, + [0x4304BF5C] = { model = "s_m_m_valcowpoke_01", hash = 0x4304BF5C, outfits = 21 }, + [0x9BCF0362] = { model = "s_m_m_valdealer_01", hash = 0x9BCF0362, outfits = 8 }, + [0xF4B4127A] = { model = "s_m_m_valdeputy_01", hash = 0xF4B4127A, outfits = 20 }, + [0x398349E3] = { model = "s_m_m_vhtdealer_01", hash = 0x398349E3, outfits = 8 }, + [0x50152A20] = { model = "s_m_o_cktworker_01", hash = 0x50152A20, outfits = 8 }, + [0x802760F9] = { model = "s_m_y_army_01", hash = 0x802760F9, outfits = 43 }, + [0x111A98CA] = { model = "s_m_y_newspaperboy_01", hash = 0x111A98CA, outfits = 16 }, + [0x84F58DCD] = { model = "s_m_y_racrailworker_01", hash = 0x84F58DCD, outfits = 30 }, + [0x512129F2] = { model = "u_f_m_bht_wife", hash = 0x512129F2, outfits = 1 }, + [0x5F3EE4D3] = { model = "u_f_m_circuswagon_01", hash = 0x5F3EE4D3, outfits = 1 }, + [0xD93F012D] = { model = "u_f_m_emrdaughter_01", hash = 0xD93F012D, outfits = 5 }, + [0xB1DCC83F] = { model = "u_f_m_fussar1lady_01", hash = 0xB1DCC83F, outfits = 1 }, + [0x76C45EF0] = { model = "u_f_m_htlwife_01", hash = 0x76C45EF0, outfits = 1 }, + [0x41ACC7BC] = { model = "u_f_m_lagmother_01", hash = 0x41ACC7BC, outfits = 9 }, + [0xAF6FBD47] = { model = "u_f_m_nbxresident_01", hash = 0xAF6FBD47, outfits = 2 }, + [0x99372227] = { model = "u_f_m_rhdnudewoman_01", hash = 0x99372227, outfits = 1 }, + [0xE96BC143] = { model = "u_f_m_rkshomesteadtenant_01", hash = 0xE96BC143, outfits = 1 }, + [0xC71BF1D1] = { model = "u_f_m_story_blackbelle_01", hash = 0xC71BF1D1, outfits = 1 }, + [0x3C1CEAE0] = { model = "u_f_m_story_nightfolk_01", hash = 0x3C1CEAE0, outfits = 1 }, + [0x0A219825] = { model = "u_f_m_tljbartender_01", hash = 0x0A219825, outfits = 9 }, + [0xF1711637] = { model = "u_f_m_tumgeneralstoreowner_01", hash = 0xF1711637, outfits = 9 }, + [0x8F549F46] = { model = "u_f_m_valtownfolk_01", hash = 0x8F549F46, outfits = 2 }, + [0x7CC2FA23] = { model = "u_f_m_valtownfolk_02", hash = 0x7CC2FA23, outfits = 2 }, + [0x3E471440] = { model = "u_f_m_vhtbartender_01", hash = 0x3E471440, outfits = 7 }, + [0xEDC0F72A] = { model = "u_f_o_hermit_woman_01", hash = 0xEDC0F72A, outfits = 1 }, + [0xAE38220C] = { model = "u_f_o_wtctownfolk_01", hash = 0xAE38220C, outfits = 1 }, + [0x74DF3938] = { model = "u_f_y_braithwaitessecret_01", hash = 0x74DF3938, outfits = 2 }, + [0xBCC8D35F] = { model = "u_f_y_czphomesteaddaughter_01", hash = 0xBCC8D35F, outfits = 1 }, + [0x8C9F0E5D] = { model = "u_m_m_announcer_01", hash = 0x8C9F0E5D, outfits = 2 }, + [0x0717C9F9] = { model = "u_m_m_apfdeadman_01", hash = 0x0717C9F9, outfits = 1 }, + [0xC5DF0CFE] = { model = "u_m_m_armgeneralstoreowner_01", hash = 0xC5DF0CFE, outfits = 9 }, + [0x2AB8094F] = { model = "u_m_m_armtrainstationworker_01", hash = 0x2AB8094F, outfits = 9 }, + [0x8E4FCB05] = { model = "u_m_m_armundertaker_01", hash = 0x8E4FCB05, outfits = 9 }, + [0x4F93F6BE] = { model = "u_m_m_armytrn4_01", hash = 0x4F93F6BE, outfits = 1 }, + [0x80D04451] = { model = "u_m_m_asbgunsmith_01", hash = 0x80D04451, outfits = 9 }, + [0x0B8D495D] = { model = "u_m_m_asbprisoner_01", hash = 0x0B8D495D, outfits = 2 }, + [0x1DCEEDE0] = { model = "u_m_m_asbprisoner_02", hash = 0x1DCEEDE0, outfits = 2 }, + [0xC3E1BC18] = { model = "u_m_m_bht_banditomine", hash = 0xC3E1BC18, outfits = 2 }, + [0xC3B9DF14] = { model = "u_m_m_bht_banditoshack", hash = 0xC3B9DF14, outfits = 4 }, + [0x2B0B3AC2] = { model = "u_m_m_bht_benedictallbright", hash = 0x2B0B3AC2, outfits = 1 }, + [0xACBA905B] = { model = "u_m_m_bht_blackwaterhunt", hash = 0xACBA905B, outfits = 1 }, + [0x652E0944] = { model = "u_m_m_bht_exconfedcampreturn", hash = 0x652E0944, outfits = 1 }, + [0xCC013F0A] = { model = "u_m_m_bht_laramiesleeping", hash = 0xCC013F0A, outfits = 1 }, + [0xB7281910] = { model = "u_m_m_bht_lover", hash = 0xB7281910, outfits = 1 }, + [0x60D033B6] = { model = "u_m_m_bht_mineforeman", hash = 0x60D033B6, outfits = 1 }, + [0x22944F0D] = { model = "u_m_m_bht_nathankirk", hash = 0x22944F0D, outfits = 1 }, + [0xC5BCD5E8] = { model = "u_m_m_bht_odriscolldrunk", hash = 0xC5BCD5E8, outfits = 1 }, + [0xA2B8EFDC] = { model = "u_m_m_bht_odriscollmauled", hash = 0xA2B8EFDC, outfits = 1 }, + [0x2E6B2DB0] = { model = "u_m_m_bht_odriscollsleeping", hash = 0x2E6B2DB0, outfits = 1 }, + [0xC82782C2] = { model = "u_m_m_bht_oldman", hash = 0xC82782C2, outfits = 1 }, + [0x62600029] = { model = "U_M_M_BHT_OUTLAWMAULED", hash = 0x62600029, outfits = 1 }, + [0x2AC6EC80] = { model = "u_m_m_bht_saintdenissaloon", hash = 0x2AC6EC80, outfits = 1 }, + [0x861F7616] = { model = "u_m_m_bht_shackescape", hash = 0x861F7616, outfits = 1 }, + [0x728D7C04] = { model = "u_m_m_bht_skinnerbrother", hash = 0x728D7C04, outfits = 3 }, + [0x8E18978A] = { model = "u_m_m_bht_skinnersearch", hash = 0x8E18978A, outfits = 3 }, + [0x66EAB43A] = { model = "u_m_m_bht_strawberryduel", hash = 0x66EAB43A, outfits = 1 }, + [0xB8195626] = { model = "u_m_m_bivforeman_01", hash = 0xB8195626, outfits = 5 }, + [0xD3A41495] = { model = "u_m_m_blwtrainstationworker_01", hash = 0xD3A41495, outfits = 9 }, + [0x143F8FAC] = { model = "u_m_m_bulletcatchvolunteer_01", hash = 0x143F8FAC, outfits = 2 }, + [0xA27B73FE] = { model = "u_m_m_bwmstablehand_01", hash = 0xA27B73FE, outfits = 4 }, + [0xF78F6717] = { model = "u_m_m_cabaretfirehat_01", hash = 0xF78F6717, outfits = 1 }, + [0x675B5537] = { model = "u_m_m_cajhomestead_01", hash = 0x675B5537, outfits = 1 }, + [0xA2FA1725] = { model = "u_m_m_chelonianjumper_01", hash = 0xA2FA1725, outfits = 2 }, + [0x913F73B0] = { model = "u_m_m_chelonianjumper_02", hash = 0x913F73B0, outfits = 2 }, + [0x7FDED0EF] = { model = "u_m_m_chelonianjumper_03", hash = 0x7FDED0EF, outfits = 2 }, + [0x5E1D8D6D] = { model = "u_m_m_chelonianjumper_04", hash = 0x5E1D8D6D, outfits = 2 }, + [0x67604D20] = { model = "u_m_m_circuswagon_01", hash = 0x67604D20, outfits = 1 }, + [0xC31F3D4D] = { model = "u_m_m_cktmanager_01", hash = 0xC31F3D4D, outfits = 1 }, + [0x4CB41AA6] = { model = "u_m_m_cornwalldriver_01", hash = 0x4CB41AA6, outfits = 1 }, + [0x32830A89] = { model = "u_m_m_crdhomesteadtenant_01", hash = 0x32830A89, outfits = 2 }, + [0x693D77FD] = { model = "u_m_m_crdhomesteadtenant_02", hash = 0x693D77FD, outfits = 2 }, + [0xD8053806] = { model = "u_m_m_crdwitness_01", hash = 0xD8053806, outfits = 2 }, + [0xDA855AC6] = { model = "u_m_m_creolecaptain_01", hash = 0xDA855AC6, outfits = 1 }, + [0x08C9910B] = { model = "u_m_m_czphomesteadfather_01", hash = 0x08C9910B, outfits = 1 }, + [0xA9A4DB09] = { model = "u_m_m_dorhomesteadhusband_01", hash = 0xA9A4DB09, outfits = 1 }, + [0xCA3F1D23] = { model = "u_m_m_emrfarmhand_03", hash = 0xCA3F1D23, outfits = 2 }, + [0xD08F9FEC] = { model = "u_m_m_emrfather_01", hash = 0xD08F9FEC, outfits = 5 }, + [0x9955028D] = { model = "u_m_m_executioner_01", hash = 0x9955028D, outfits = 1 }, + [0x0CD32813] = { model = "u_m_m_fatduster_01", hash = 0x0CD32813, outfits = 2 }, + [0x28F7679D] = { model = "u_m_m_finale2_aa_upperclass_01", hash = 0x28F7679D, outfits = 2 }, + [0x0E8B4AB9] = { model = "u_m_m_galastringquartet_01", hash = 0x0E8B4AB9, outfits = 2 }, + [0x4418B5DF] = { model = "u_m_m_galastringquartet_02", hash = 0x4418B5DF, outfits = 2 }, + [0x313F102C] = { model = "u_m_m_galastringquartet_03", hash = 0x313F102C, outfits = 2 }, + [0x677D7CA8] = { model = "u_m_m_galastringquartet_04", hash = 0x677D7CA8, outfits = 2 }, + [0x51B75106] = { model = "u_m_m_gamdoorman_01", hash = 0x51B75106, outfits = 2 }, + [0xE5DA06C1] = { model = "u_m_m_hhrrancher_01", hash = 0xE5DA06C1, outfits = 2 }, + [0x1E87BC0A] = { model = "u_m_m_htlforeman_01", hash = 0x1E87BC0A, outfits = 5 }, + [0xD1C51E05] = { model = "u_m_m_htlhusband_01", hash = 0xD1C51E05, outfits = 1 }, + [0x9B004750] = { model = "u_m_m_htlrancherbounty_01", hash = 0x9B004750, outfits = 2 }, + [0x8F6606D5] = { model = "u_m_m_islbum_01", hash = 0x8F6606D5, outfits = 1 }, + [0x1DEF8E8E] = { model = "u_m_m_lnsoutlaw_01", hash = 0x1DEF8E8E, outfits = 2 }, + [0x2BE12A71] = { model = "u_m_m_lnsoutlaw_02", hash = 0x2BE12A71, outfits = 2 }, + [0x68F3A489] = { model = "u_m_m_lnsoutlaw_03", hash = 0x68F3A489, outfits = 2 }, + [0x3881C3AA] = { model = "u_m_m_lnsoutlaw_04", hash = 0x3881C3AA, outfits = 2 }, + [0xCC4D780E] = { model = "u_m_m_lnsworker_01", hash = 0xCC4D780E, outfits = 2 }, + [0xB30E4590] = { model = "u_m_m_lnsworker_02", hash = 0xB30E4590, outfits = 2 }, + [0xA0EFA153] = { model = "u_m_m_lnsworker_03", hash = 0xA0EFA153, outfits = 2 }, + [0x91BD02EE] = { model = "u_m_m_lnsworker_04", hash = 0x91BD02EE, outfits = 2 }, + [0xF9EEA22E] = { model = "u_m_m_lrshomesteadtenant_01", hash = 0xF9EEA22E, outfits = 2 }, + [0xF91B281F] = { model = "u_m_m_mfrrancher_01", hash = 0xF91B281F, outfits = 2 }, + [0x6CD2AAFF] = { model = "u_m_m_mud3pimp_01", hash = 0x6CD2AAFF, outfits = 2 }, + [0x2E3911BA] = { model = "u_m_m_nbxbankerbounty_01", hash = 0x2E3911BA, outfits = 2 }, + [0x1EE53C9C] = { model = "u_m_m_nbxbartender_01", hash = 0x1EE53C9C, outfits = 9 }, + [0x0D1298F7] = { model = "u_m_m_nbxbartender_02", hash = 0x0D1298F7, outfits = 9 }, + [0xB752EDAF] = { model = "u_m_m_nbxboatticketseller_01", hash = 0xB752EDAF, outfits = 5 }, + [0x42507F3E] = { model = "u_m_m_nbxbronteasc_01", hash = 0x42507F3E, outfits = 1 }, + [0xB7F2F587] = { model = "u_m_m_nbxbrontegoon_01", hash = 0xB7F2F587, outfits = 1 }, + [0xE8BCA87C] = { model = "u_m_m_nbxbrontesecform_01", hash = 0xE8BCA87C, outfits = 1 }, + [0x54123716] = { model = "u_m_m_nbxgeneralstoreowner_01", hash = 0x54123716, outfits = 9 }, + [0xFC3D1E1B] = { model = "u_m_m_nbxgraverobber_01", hash = 0xFC3D1E1B, outfits = 2 }, + [0x7C7C9EA0] = { model = "u_m_m_nbxgraverobber_02", hash = 0x7C7C9EA0, outfits = 2 }, + [0x8FBDC522] = { model = "u_m_m_nbxgraverobber_03", hash = 0x8FBDC522, outfits = 2 }, + [0x3DB8A119] = { model = "u_m_m_nbxgraverobber_04", hash = 0x3DB8A119, outfits = 2 }, + [0x33EE8D85] = { model = "u_m_m_nbxgraverobber_05", hash = 0x33EE8D85, outfits = 2 }, + [0x2A66EA55] = { model = "u_m_m_nbxgunsmith_01", hash = 0x2A66EA55, outfits = 9 }, + [0x7A53E763] = { model = "u_m_m_nbxliveryworker_01", hash = 0x7A53E763, outfits = 2 }, + [0x668685E6] = { model = "u_m_m_nbxmusician_01", hash = 0x668685E6, outfits = 2 }, + [0xDD900EBD] = { model = "u_m_m_nbxpriest_01", hash = 0xDD900EBD, outfits = 1 }, + [0x6BE0A02F] = { model = "u_m_m_nbxresident_01", hash = 0x6BE0A02F, outfits = 2 }, + [0x4BB85FDB] = { model = "u_m_m_nbxresident_02", hash = 0x4BB85FDB, outfits = 2 }, + [0x597DFB66] = { model = "u_m_m_nbxresident_03", hash = 0x597DFB66, outfits = 2 }, + [0x271C96A4] = { model = "u_m_m_nbxresident_04", hash = 0x271C96A4, outfits = 2 }, + [0xE5C80F77] = { model = "u_m_m_nbxriverboatpitboss_01", hash = 0xE5C80F77, outfits = 2 }, + [0x16B38C17] = { model = "u_m_m_nbxriverboattarget_01", hash = 0x16B38C17, outfits = 2 }, + [0x1B2769D0] = { model = "u_m_m_nbxshadydealer_01", hash = 0x1B2769D0, outfits = 9 }, + [0xD43AE828] = { model = "u_m_m_nbxskiffdriver_01", hash = 0xD43AE828, outfits = 2 }, + [0x42352E08] = { model = "u_m_m_oddfellowparticipant_01", hash = 0x42352E08, outfits = 2 }, + [0xB6C0F55D] = { model = "u_m_m_odriscollbrawler_01", hash = 0xB6C0F55D, outfits = 3 }, + [0xC4162DA7] = { model = "u_m_m_orpguard_01", hash = 0xC4162DA7, outfits = 1 }, + [0xE0448D54] = { model = "u_m_m_racforeman_01", hash = 0xE0448D54, outfits = 5 }, + [0x6DE7AD0F] = { model = "u_m_m_racquartermaster_01", hash = 0x6DE7AD0F, outfits = 2 }, + [0x8E764EA7] = { model = "u_m_m_rhdbackupdeputy_01", hash = 0x8E764EA7, outfits = 2 }, + [0x7BABA912] = { model = "u_m_m_rhdbackupdeputy_02", hash = 0x7BABA912, outfits = 2 }, + [0x23DA7E9F] = { model = "u_m_m_rhdbartender_01", hash = 0x23DA7E9F, outfits = 7 }, + [0x2A37903E] = { model = "u_m_m_rhddoctor_01", hash = 0x2A37903E, outfits = 1 }, + [0x3A9FCA38] = { model = "u_m_m_rhdfiddleplayer_01", hash = 0x3A9FCA38, outfits = 2 }, + [0x9B9EF6B7] = { model = "u_m_m_rhdgenstoreowner_01", hash = 0x9B9EF6B7, outfits = 9 }, + [0x893751E8] = { model = "u_m_m_rhdgenstoreowner_02", hash = 0x893751E8, outfits = 9 }, + [0xADDA73CE] = { model = "u_m_m_rhdgunsmith_01", hash = 0xADDA73CE, outfits = 9 }, + [0x06B0DE6B] = { model = "u_m_m_rhdpreacher_01", hash = 0x06B0DE6B, outfits = 1 }, + [0xC76BB57A] = { model = "u_m_m_rhdsheriff_01", hash = 0xC76BB57A, outfits = 5 }, + [0x3F0EC349] = { model = "u_m_m_rhdtrainstationworker_01", hash = 0x3F0EC349, outfits = 5 }, + [0x2158A563] = { model = "u_m_m_rhdundertaker_01", hash = 0x2158A563, outfits = 1 }, + [0x6376F2EE] = { model = "u_m_m_riodonkeyrider_01", hash = 0x6376F2EE, outfits = 1 }, + [0x3B85803C] = { model = "u_m_m_rkfrancher_01", hash = 0x3B85803C, outfits = 1 }, + [0xA558BFEF] = { model = "u_m_m_rkrdonkeyrider_01", hash = 0xA558BFEF, outfits = 1 }, + [0xA209CB2A] = { model = "u_m_m_rwfrancher_01", hash = 0xA209CB2A, outfits = 1 }, + [0x128CDD40] = { model = "u_m_m_sdbankguard_01", hash = 0x128CDD40, outfits = 4 }, + [0x400E34A9] = { model = "u_m_m_sdcustomvendor_01", hash = 0x400E34A9, outfits = 9 }, + [0xF1029EA3] = { model = "u_m_m_sdexoticsshopkeeper_01", hash = 0xF1029EA3, outfits = 10 }, + [0xBE9D77E1] = { model = "u_m_m_sdphotographer_01", hash = 0xBE9D77E1, outfits = 2 }, + [0x5C99E1C2] = { model = "u_m_m_sdpolicechief_01", hash = 0x5C99E1C2, outfits = 5 }, + [0xCCB89BB7] = { model = "u_m_m_sdstrongwomanassistant_01", hash = 0xCCB89BB7, outfits = 1 }, + [0x23317990] = { model = "u_m_m_sdtrapper_01", hash = 0x23317990, outfits = 1 }, + [0x3FEE3412] = { model = "u_m_m_sdwealthytraveller_01", hash = 0x3FEE3412, outfits = 5 }, + [0x62AD6C6C] = { model = "u_m_m_shackserialkiller_01", hash = 0x62AD6C6C, outfits = 1 }, + [0x7D796588] = { model = "u_m_m_shacktwin_01", hash = 0x7D796588, outfits = 2 }, + [0x7A2F5EF4] = { model = "u_m_m_shacktwin_02", hash = 0x7A2F5EF4, outfits = 2 }, + [0x08534AF0] = { model = "u_m_m_skinnyoldguy_01", hash = 0x08534AF0, outfits = 1 }, + [0x199B5D2F] = { model = "u_m_m_story_armadillo_01", hash = 0x199B5D2F, outfits = 1 }, + [0x019AAC14] = { model = "u_m_m_story_cannibal_01", hash = 0x019AAC14, outfits = 1 }, + [0xA8FDA7E1] = { model = "u_m_m_story_chelonian_01", hash = 0xA8FDA7E1, outfits = 1 }, + [0x2E663310] = { model = "u_m_m_story_copperhead_01", hash = 0x2E663310, outfits = 1 }, + [0x4FFBC75C] = { model = "u_m_m_story_creeper_01", hash = 0x4FFBC75C, outfits = 1 }, + [0x7E80C06D] = { model = "u_m_m_story_emeraldranch_01", hash = 0x7E80C06D, outfits = 1 }, + [0x65B3401E] = { model = "u_m_m_story_hunter_01", hash = 0x65B3401E, outfits = 1 }, + [0x82D7E004] = { model = "u_m_m_story_manzanita_01", hash = 0x82D7E004, outfits = 2 }, + [0x474080E1] = { model = "u_m_m_story_murfee_01", hash = 0x474080E1, outfits = 1 }, + [0xD6CDC88D] = { model = "u_m_m_story_pigfarm_01", hash = 0xD6CDC88D, outfits = 1 }, + [0x42F42CBF] = { model = "u_m_m_story_princess_01", hash = 0x42F42CBF, outfits = 1 }, + [0x82212B0D] = { model = "u_m_m_story_redharlow_01", hash = 0x82212B0D, outfits = 1 }, + [0xEDDB93E8] = { model = "u_m_m_story_rhodes_01", hash = 0xEDDB93E8, outfits = 1 }, + [0xCFA8C361] = { model = "u_m_m_story_sdstatue_01", hash = 0xCFA8C361, outfits = 1 }, + [0x0CF1DA06] = { model = "u_m_m_story_spectre_01", hash = 0x0CF1DA06, outfits = 1 }, + [0x54A21893] = { model = "u_m_m_story_treasure_01", hash = 0x54A21893, outfits = 1 }, + [0x628EBD88] = { model = "u_m_m_story_tumbleweed_01", hash = 0x628EBD88, outfits = 1 }, + [0x565FF75B] = { model = "u_m_m_story_valentine_01", hash = 0x565FF75B, outfits = 1 }, + [0x1173F849] = { model = "u_m_m_strfreightstationowner_01", hash = 0x1173F849, outfits = 5 }, + [0x104FE6B3] = { model = "u_m_m_strgenstoreowner_01", hash = 0x104FE6B3, outfits = 9 }, + [0x77EEF186] = { model = "u_m_m_strsherriff_01", hash = 0x77EEF186, outfits = 5 }, + [0x4128755F] = { model = "u_m_m_strwelcomecenter_01", hash = 0x4128755F, outfits = 9 }, + [0xD31B229F] = { model = "u_m_m_tumbartender_01", hash = 0xD31B229F, outfits = 7 }, + [0x9168B88B] = { model = "u_m_m_tumbutcher_01", hash = 0x9168B88B, outfits = 9 }, + [0x79FB001C] = { model = "u_m_m_tumgunsmith_01", hash = 0x79FB001C, outfits = 9 }, + [0x6712F25D] = { model = "u_m_m_tumtrainstationworker_01", hash = 0x6712F25D, outfits = 1 }, + [0x7A5AC236] = { model = "u_m_m_unibountyhunter_01", hash = 0x7A5AC236, outfits = 1 }, + [0xB0962EB0] = { model = "u_m_m_unibountyhunter_02", hash = 0xB0962EB0, outfits = 1 }, + [0x0EBB9BCE] = { model = "u_m_m_unidusterhenchman_01", hash = 0x0EBB9BCE, outfits = 2 }, + [0xE302445C] = { model = "u_m_m_unidusterhenchman_02", hash = 0xE302445C, outfits = 2 }, + [0xD1B321BE] = { model = "u_m_m_unidusterhenchman_03", hash = 0xD1B321BE, outfits = 2 }, + [0x3C9E3212] = { model = "u_m_m_unidusterleader_01", hash = 0x3C9E3212, outfits = 2 }, + [0x1BC9C8FC] = { model = "u_m_m_uniexconfedsbounty_01", hash = 0x1BC9C8FC, outfits = 2 }, + [0x5FC8B319] = { model = "u_m_m_unionleader_01", hash = 0x5FC8B319, outfits = 2 }, + [0x6D1BCDBF] = { model = "u_m_m_unionleader_02", hash = 0x6D1BCDBF, outfits = 2 }, + [0x5E1148BF] = { model = "u_m_m_unipeepingtom_01", hash = 0x5E1148BF, outfits = 2 }, + [0x075398B9] = { model = "u_m_m_valauctionforman_01", hash = 0x075398B9, outfits = 7 }, + [0x4EDB27C7] = { model = "u_m_m_valauctionforman_02", hash = 0x4EDB27C7, outfits = 6 }, + [0xD371AE64] = { model = "u_m_m_valbarber_01", hash = 0xD371AE64, outfits = 9 }, + [0xB733CF0F] = { model = "u_m_m_valbartender_01", hash = 0xB733CF0F, outfits = 9 }, + [0x69019A68] = { model = "u_m_m_valbeartrap_01", hash = 0x69019A68, outfits = 5 }, + [0x23E0698B] = { model = "u_m_m_valbutcher_01", hash = 0x23E0698B, outfits = 9 }, + [0x71545DA5] = { model = "u_m_m_valdoctor_01", hash = 0x71545DA5, outfits = 9 }, + [0x9B3E551B] = { model = "u_m_m_valgenstoreowner_01", hash = 0x9B3E551B, outfits = 9 }, + [0xBBC5D27F] = { model = "u_m_m_valgunsmith_01", hash = 0xBBC5D27F, outfits = 9 }, + [0xB66F12F2] = { model = "u_m_m_valhotelowner_01", hash = 0xB66F12F2, outfits = 9 }, + [0xD6B24482] = { model = "u_m_m_valpokerplayer_01", hash = 0xD6B24482, outfits = 5 }, + [0x03969E2E] = { model = "u_m_m_valpokerplayer_02", hash = 0x03969E2E, outfits = 5 }, + [0x16681434] = { model = "u_m_m_valpoopingman_01", hash = 0x16681434, outfits = 4 }, + [0x93B09465] = { model = "u_m_m_valsheriff_01", hash = 0x93B09465, outfits = 5 }, + [0xD0D41B25] = { model = "u_m_m_valtheman_01", hash = 0xD0D41B25, outfits = 9 }, + [0xC4CC5EE6] = { model = "u_m_m_valtownfolk_01", hash = 0xC4CC5EE6, outfits = 4 }, + [0xA5F92140] = { model = "u_m_m_valtownfolk_02", hash = 0xA5F92140, outfits = 4 }, + [0xC606A445] = { model = "u_m_m_vhtstationclerk_01", hash = 0xC606A445, outfits = 9 }, + [0x42DD47BF] = { model = "u_m_m_walgeneralstoreowner_01", hash = 0x42DD47BF, outfits = 5 }, + [0x5EDC8972] = { model = "u_m_m_wapofficial_01", hash = 0x5EDC8972, outfits = 2 }, + [0xDF9051C0] = { model = "u_m_m_wtccowboy_04", hash = 0xDF9051C0, outfits = 2 }, + [0xDD6D1B34] = { model = "u_m_o_armbartender_01", hash = 0xDD6D1B34, outfits = 9 }, + [0x1CEF1945] = { model = "u_m_o_asbsheriff_01", hash = 0x1CEF1945, outfits = 5 }, + [0xA0325B4E] = { model = "u_m_o_bht_docwormwood", hash = 0xA0325B4E, outfits = 2 }, + [0x8E81C857] = { model = "u_m_o_blwbartender_01", hash = 0x8E81C857, outfits = 9 }, + [0x6958B082] = { model = "u_m_o_blwgeneralstoreowner_01", hash = 0x6958B082, outfits = 9 }, + [0x3B99237E] = { model = "u_m_o_blwphotographer_01", hash = 0x3B99237E, outfits = 9 }, + [0x67FB6A21] = { model = "u_m_o_blwpolicechief_01", hash = 0x67FB6A21, outfits = 7 }, + [0x10E06765] = { model = "u_m_o_cajhomestead_01", hash = 0x10E06765, outfits = 1 }, + [0xECA3D50D] = { model = "u_m_o_cmrcivilwarcommando_01", hash = 0xECA3D50D, outfits = 2 }, + [0xDE86823E] = { model = "u_m_o_mapwiseoldman_01", hash = 0xDE86823E, outfits = 5 }, + [0xAFFEF16E] = { model = "u_m_o_oldcajun_01", hash = 0xAFFEF16E, outfits = 1 }, + [0xDD1C10E8] = { model = "u_m_o_pshrancher_01", hash = 0xDD1C10E8, outfits = 5 }, + [0xABC22ABF] = { model = "u_m_o_rigtrainstationworker_01", hash = 0xABC22ABF, outfits = 5 }, + [0x904CC489] = { model = "u_m_o_valbartender_01", hash = 0x904CC489, outfits = 8 }, + [0xCE72526E] = { model = "u_m_o_vhtexoticshopkeeper_01", hash = 0xCE72526E, outfits = 9 }, + [0x1B8FD0E7] = { model = "u_m_y_cajhomestead_01", hash = 0x1B8FD0E7, outfits = 1 }, + [0x1B6F073A] = { model = "u_m_y_czphomesteadson_01", hash = 0x1B6F073A, outfits = 1 }, + [0x0530DABA] = { model = "u_m_y_czphomesteadson_02", hash = 0x0530DABA, outfits = 1 }, + [0xAE09AC6D] = { model = "u_m_y_czphomesteadson_03", hash = 0xAE09AC6D, outfits = 1 }, + [0x9992837F] = { model = "u_m_y_czphomesteadson_04", hash = 0x9992837F, outfits = 1 }, + [0xD23774C8] = { model = "u_m_y_czphomesteadson_05", hash = 0xD23774C8, outfits = 1 }, + [0x4152ADFB] = { model = "u_m_y_duellistbounty_01", hash = 0x4152ADFB, outfits = 2 }, + [0x559BD1B7] = { model = "u_m_y_emrson_01", hash = 0x559BD1B7, outfits = 4 }, + [0xB60F7B1B] = { model = "u_m_y_htlworker_01", hash = 0xB60F7B1B, outfits = 5 }, + [0xC8661FCC] = { model = "u_m_y_htlworker_02", hash = 0xC8661FCC, outfits = 5 }, + [0xBC5CFF49] = { model = "u_m_y_shackstarvingkid_01", hash = 0xBC5CFF49, outfits = 3 }, + [0x5087BED1] = { model = "cs_mp_agent_hixon", hash = 0x5087BED1, outfits = 2 }, + [0x81C2FD57] = { model = "cs_mp_dannylee", hash = 0x81C2FD57, outfits = 2 }, + [0x024BE4BE] = { model = "cs_mp_gus_macmillan", hash = 0x024BE4BE, outfits = 2 }, + [0x9BD92566] = { model = "cs_mp_harriet_davenport", hash = 0x9BD92566, outfits = 1 }, + [0x048FCA26] = { model = "cs_mp_lem", hash = 0x048FCA26, outfits = 3 }, + [0xF0DA3AE5] = { model = "cs_mp_maggie", hash = 0xF0DA3AE5, outfits = 2 }, + [0x7666911B] = { model = "cs_mp_seth", hash = 0x7666911B, outfits = 1 }, + [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [0x2830CF33] = { model = "mp_a_c_alligator_01", hash = 0x2830CF33, outfits = 4 }, + [0xBB746741] = { model = "mp_a_c_beaver_01", hash = 0xBB746741, outfits = 3 }, + [0xE8CBC01C] = { model = "mp_a_c_boar_01", hash = 0xE8CBC01C, outfits = 5 }, + [0xAA89BB8D] = { model = "mp_a_c_cougar_01", hash = 0xAA89BB8D, outfits = 4 }, + [0xB20D360D] = { model = "mp_a_c_coyote_01", hash = 0xB20D360D, outfits = 4 }, + [0xB91BAB89] = { model = "mp_a_c_panther_01", hash = 0xB91BAB89, outfits = 4 }, + [0xAD02460F] = { model = "mp_a_c_wolf_01", hash = 0xAD02460F, outfits = 5 }, + [0x2DA2EA3B] = { model = "mp_a_f_m_saloonpatrons_01", hash = 0x2DA2EA3B, outfits = 20 }, + [0x51323159] = { model = "mp_a_f_m_saloonpatrons_02", hash = 0x51323159, outfits = 22 }, + [0x6336D562] = { model = "mp_a_f_m_saloonpatrons_03", hash = 0x6336D562, outfits = 20 }, + [0x715D71AF] = { model = "mp_a_f_m_saloonpatrons_04", hash = 0x715D71AF, outfits = 20 }, + [0x83181528] = { model = "mp_a_f_m_saloonpatrons_05", hash = 0x83181528, outfits = 20 }, + [0x80451592] = { model = "mp_a_m_m_moonshinemakers_01", hash = 0x80451592, outfits = 30 }, + [0x9A2437B7] = { model = "mp_a_m_m_saloonpatrons_01", hash = 0x9A2437B7, outfits = 35 }, + [0x51AB26BE] = { model = "mp_a_m_m_saloonpatrons_02", hash = 0x51AB26BE, outfits = 35 }, + [0x40E58533] = { model = "mp_a_m_m_saloonpatrons_03", hash = 0x40E58533, outfits = 35 }, + [0x7610EF89] = { model = "mp_a_m_m_saloonpatrons_04", hash = 0x7610EF89, outfits = 35 }, + [0x63D64B14] = { model = "mp_a_m_m_saloonpatrons_05", hash = 0x63D64B14, outfits = 35 }, + [0xBAD963AE] = { model = "mp_g_m_m_animalpoachers_01", hash = 0xBAD963AE, outfits = 71 }, + [0xF2C429A7] = { model = "mp_g_m_m_unicriminals_03", hash = 0xF2C429A7, outfits = 55 }, + [0x44AA4D72] = { model = "mp_g_m_m_unicriminals_04", hash = 0x44AA4D72, outfits = 55 }, + [0x5736728A] = { model = "mp_g_m_m_unicriminals_05", hash = 0x5736728A, outfits = 55 }, + [0x2928966F] = { model = "mp_g_m_m_unicriminals_06", hash = 0x2928966F, outfits = 50 }, + [0x3D89BF31] = { model = "mp_g_m_m_unicriminals_07", hash = 0x3D89BF31, outfits = 55 }, + [0x8F336283] = { model = "mp_g_m_m_unicriminals_08", hash = 0x8F336283, outfits = 50 }, + [0x5E058028] = { model = "mp_g_m_m_unicriminals_09", hash = 0x5E058028, outfits = 50 }, + [0xD3754E47] = { model = "mp_re_moonshinecamp_males_01", hash = 0xD3754E47, outfits = 10 }, + [0xD0AC86C4] = { model = "mp_s_m_m_revenueagents_01", hash = 0xD0AC86C4, outfits = 49 }, + [0xA7E717F4] = { model = "mp_u_f_m_buyer_improved_01", hash = 0xA7E717F4, outfits = 1 }, + [0xB7FC381E] = { model = "mp_u_f_m_buyer_improved_02", hash = 0xB7FC381E, outfits = 1 }, + [0x8AB3310A] = { model = "mp_u_f_m_buyer_regular_01", hash = 0x8AB3310A, outfits = 1 }, + [0xE065DC6E] = { model = "mp_u_f_m_buyer_regular_02", hash = 0xE065DC6E, outfits = 1 }, + [0x5DDFB326] = { model = "mp_u_f_m_buyer_special_01", hash = 0x5DDFB326, outfits = 1 }, + [0x53A19EAA] = { model = "mp_u_f_m_buyer_special_02", hash = 0x53A19EAA, outfits = 1 }, + [0x32ED72B1] = { model = "mp_u_m_m_buyer_default_01", hash = 0x32ED72B1, outfits = 1 }, + [0x60F676A5] = { model = "mp_u_m_m_buyer_improved_01", hash = 0x60F676A5, outfits = 1 }, + [0xE7BD8435] = { model = "mp_u_m_m_buyer_improved_02", hash = 0xE7BD8435, outfits = 1 }, + [0x0380BBBB] = { model = "mp_u_m_m_buyer_improved_03", hash = 0x0380BBBB, outfits = 1 }, + [0x9767E38B] = { model = "mp_u_m_m_buyer_improved_04", hash = 0x9767E38B, outfits = 1 }, + [0x6929070E] = { model = "mp_u_m_m_buyer_improved_05", hash = 0x6929070E, outfits = 1 }, + [0x3AC5AA44] = { model = "mp_u_m_m_buyer_improved_06", hash = 0x3AC5AA44, outfits = 1 }, + [0x8A9AC9F1] = { model = "mp_u_m_m_buyer_improved_07", hash = 0x8A9AC9F1, outfits = 1 }, + [0x75CFA027] = { model = "mp_u_m_m_buyer_improved_08", hash = 0x75CFA027, outfits = 1 }, + [0x1DBD9378] = { model = "mp_u_m_m_buyer_regular_01", hash = 0x1DBD9378, outfits = 1 }, + [0x2FEC37D5] = { model = "mp_u_m_m_buyer_regular_02", hash = 0x2FEC37D5, outfits = 1 }, + [0x41235A43] = { model = "mp_u_m_m_buyer_regular_03", hash = 0x41235A43, outfits = 1 }, + [0x5358FEAE] = { model = "mp_u_m_m_buyer_regular_04", hash = 0x5358FEAE, outfits = 1 }, + [0x41125A1D] = { model = "mp_u_m_m_buyer_regular_05", hash = 0x41125A1D, outfits = 1 }, + [0x5373FEE0] = { model = "mp_u_m_m_buyer_regular_06", hash = 0x5373FEE0, outfits = 1 }, + [0xE6BB2570] = { model = "mp_u_m_m_buyer_regular_07", hash = 0xE6BB2570, outfits = 1 }, + [0xF8F549E4] = { model = "mp_u_m_m_buyer_regular_08", hash = 0xF8F549E4, outfits = 1 }, + [0x31227E9C] = { model = "mp_u_m_m_buyer_special_01", hash = 0x31227E9C, outfits = 1 }, + [0xFED89A09] = { model = "mp_u_m_m_buyer_special_02", hash = 0xFED89A09, outfits = 1 }, + [0x0DF73846] = { model = "mp_u_m_m_buyer_special_03", hash = 0x0DF73846, outfits = 1 }, + [0xE479E544] = { model = "mp_u_m_m_buyer_special_04", hash = 0xE479E544, outfits = 1 }, + [0xB23B00C7] = { model = "mp_u_m_m_buyer_special_05", hash = 0xB23B00C7, outfits = 1 }, + [0xC8052C5B] = { model = "mp_u_m_m_buyer_special_06", hash = 0xC8052C5B, outfits = 1 }, + [0xB6FF8A54] = { model = "mp_u_m_m_buyer_special_07", hash = 0xB6FF8A54, outfits = 1 }, + [0xCDCAB7EA] = { model = "mp_u_m_m_buyer_special_08", hash = 0xCDCAB7EA, outfits = 1 }, + [0x54B1C872] = { model = "mp_u_m_m_lawcamp_prisoner_01", hash = 0x54B1C872, outfits = 1 }, + [0x60C69F07] = { model = "mp_u_m_m_saloonbrawler_01", hash = 0x60C69F07, outfits = 1 }, + [0xC45F6627] = { model = "mp_u_m_m_saloonbrawler_02", hash = 0xC45F6627, outfits = 1 }, + [0x928C8282] = { model = "mp_u_m_m_saloonbrawler_03", hash = 0x928C8282, outfits = 1 }, + [0xED9F38AE] = { model = "mp_u_m_m_saloonbrawler_04", hash = 0xED9F38AE, outfits = 1 }, + [0xB427C5B8] = { model = "mp_u_m_m_saloonbrawler_05", hash = 0xB427C5B8, outfits = 1 }, + [0x5B9D94A5] = { model = "mp_u_m_m_saloonbrawler_06", hash = 0x5B9D94A5, outfits = 1 }, + [0x6B3733D8] = { model = "mp_u_m_m_saloonbrawler_07", hash = 0x6B3733D8, outfits = 1 }, + [0xA8FBAF60] = { model = "mp_u_m_m_saloonbrawler_08", hash = 0xA8FBAF60, outfits = 1 }, + [0x76BDCAE5] = { model = "mp_u_m_m_saloonbrawler_09", hash = 0x76BDCAE5, outfits = 1 }, + [0x1150FEA9] = { model = "mp_u_m_m_saloonbrawler_10", hash = 0x1150FEA9, outfits = 1 }, + [0xE29AA13D] = { model = "mp_u_m_m_saloonbrawler_11", hash = 0xE29AA13D, outfits = 1 }, + [0x2DAFB766] = { model = "mp_u_m_m_saloonbrawler_12", hash = 0x2DAFB766, outfits = 1 }, + [0xFFDC5BC0] = { model = "mp_u_m_m_saloonbrawler_13", hash = 0xFFDC5BC0, outfits = 1 }, + [0x96390873] = { model = "mp_u_m_m_saloonbrawler_14", hash = 0x96390873, outfits = 1 }, + [0xDF251C39] = { model = "mp_a_c_bear_01", hash = 0xDF251C39, outfits = 4 }, + [0xE1884260] = { model = "mp_a_c_bighornram_01", hash = 0xE1884260, outfits = 5 }, + [0x9770DD23] = { model = "mp_a_c_buck_01", hash = 0x9770DD23, outfits = 6 }, + [0xC971C4C6] = { model = "mp_a_c_buffalo_01", hash = 0xC971C4C6, outfits = 4 }, + [0xBFDC1D2A] = { model = "mp_a_c_dogamericanfoxhound_01", hash = 0xBFDC1D2A, outfits = 2 }, + [0xD1641E60] = { model = "mp_a_c_elk_01", hash = 0xD1641E60, outfits = 4 }, + [0xDECA9205] = { model = "mp_a_c_fox_01", hash = 0xDECA9205, outfits = 4 }, + [0xF8FC8F63] = { model = "mp_a_c_moose_01", hash = 0xF8FC8F63, outfits = 4 }, + [0x24C5B680] = { model = "mp_a_c_owl_01", hash = 0x24C5B680, outfits = 1 }, + [0xDECED2FD] = { model = "mp_a_c_possum_01", hash = 0xDECED2FD, outfits = 1 }, + [0xFE40DC76] = { model = "mp_a_c_pronghorn_01", hash = 0xFE40DC76, outfits = 1 }, + [0xF4EA3B49] = { model = "mp_a_c_rabbit_01", hash = 0xF4EA3B49, outfits = 1 }, + [0x9A61FCB8] = { model = "mp_a_c_sheep_01", hash = 0x9A61FCB8, outfits = 1 }, + [0x3B7BD8D3] = { model = "mp_a_f_m_saloonband_females_01", hash = 0x3B7BD8D3, outfits = 5 }, + [0xF00A64EC] = { model = "mp_u_m_m_animalpoacher_01", hash = 0xF00A64EC, outfits = 1 }, + [0xE1D74886] = { model = "mp_u_m_m_animalpoacher_02", hash = 0xE1D74886, outfits = 1 }, + [0x92552983] = { model = "mp_u_m_m_animalpoacher_03", hash = 0x92552983, outfits = 1 }, + [0x84298D2C] = { model = "mp_u_m_m_animalpoacher_04", hash = 0x84298D2C, outfits = 1 }, + [0xA6F2D2BE] = { model = "mp_u_m_m_animalpoacher_05", hash = 0xA6F2D2BE, outfits = 2 }, + [0x5895B605] = { model = "mp_u_m_m_animalpoacher_06", hash = 0x5895B605, outfits = 1 }, + [0x3DA8002A] = { model = "mp_u_m_m_animalpoacher_07", hash = 0x3DA8002A, outfits = 1 }, + [0x7001E4DD] = { model = "mp_u_m_m_animalpoacher_08", hash = 0x7001E4DD, outfits = 1 }, + [0x624BC971] = { model = "mp_u_m_m_animalpoacher_09", hash = 0x624BC971, outfits = 1 }, + [0xB25E4617] = { model = "mp_g_f_m_armyoffear_01", hash = 0xB25E4617, outfits = 20 }, + [0x19382FFC] = { model = "mp_g_m_m_armyoffear_01", hash = 0x19382FFC, outfits = 30 }, + [0x9A755448] = { model = "cs_mp_bessie_adair", hash = 0x9A755448, outfits = 1 }, + [0x29465719] = { model = "mp_a_c_chicken_01", hash = 0x29465719, outfits = 2 }, + [0x2EA769DD] = { model = "mp_a_c_deer_01", hash = 0x2EA769DD, outfits = 1 }, + [0xBAFD3C1A] = { model = "mp_a_m_m_saloonband_males_01", hash = 0xBAFD3C1A, outfits = 20 }, + [0x482F6E79] = { model = "mp_re_slumpedhunter_females_01", hash = 0x482F6E79, outfits = 4 }, + [0x48F23D48] = { model = "mp_re_slumpedhunter_males_01", hash = 0x48F23D48, outfits = 6 }, + [0xD2D2D2D4] = { model = "mp_re_suspendedhunter_males_01", hash = 0xD2D2D2D4, outfits = 2 }, + [0xEE7487F0] = { model = "mp_u_f_m_nat_traveler_01", hash = 0xEE7487F0, outfits = 1 }, + [0x71E6D0A6] = { model = "mp_u_f_m_nat_worker_01", hash = 0x71E6D0A6, outfits = 1 }, + [0xA48BB5F3] = { model = "mp_u_f_m_nat_worker_02", hash = 0xA48BB5F3, outfits = 1 }, + [0x846A2728] = { model = "mp_u_f_m_saloonpianist_01", hash = 0x846A2728, outfits = 1 }, + [0xCF9DD811] = { model = "mp_u_m_m_dyingpoacher_01", hash = 0xCF9DD811, outfits = 1 }, + [0xDF5BF78D] = { model = "mp_u_m_m_dyingpoacher_02", hash = 0xDF5BF78D, outfits = 1 }, + [0x6C51917A] = { model = "mp_u_m_m_dyingpoacher_03", hash = 0x6C51917A, outfits = 1 }, + [0x89F8CCC8] = { model = "mp_u_m_m_dyingpoacher_04", hash = 0x89F8CCC8, outfits = 1 }, + [0x9AB66E43] = { model = "mp_u_m_m_dyingpoacher_05", hash = 0x9AB66E43, outfits = 1 }, + [0x0B979763] = { model = "mp_u_m_m_lawcamp_lawman_01", hash = 0x0B979763, outfits = 1 }, + [0xF9A5F380] = { model = "mp_u_m_m_lawcamp_lawman_02", hash = 0xF9A5F380, outfits = 1 }, + [0x7B379BDB] = { model = "mp_u_m_m_lawcamp_leadofficer_01", hash = 0x7B379BDB, outfits = 1 }, + [0x58E9D4F4] = { model = "mp_u_m_m_nat_farmer_01", hash = 0x58E9D4F4, outfits = 1 }, + [0xDB15D94E] = { model = "mp_u_m_m_nat_farmer_02", hash = 0xDB15D94E, outfits = 1 }, + [0x0D3CBD9B] = { model = "mp_u_m_m_nat_farmer_03", hash = 0x0D3CBD9B, outfits = 1 }, + [0xEFDC82DB] = { model = "mp_u_m_m_nat_farmer_04", hash = 0xEFDC82DB, outfits = 1 }, + [0x2CDF85F7] = { model = "mp_u_m_m_nat_photographer_01", hash = 0x2CDF85F7, outfits = 1 }, + [0x3E92A95D] = { model = "mp_u_m_m_nat_photographer_02", hash = 0x3E92A95D, outfits = 1 }, + [0x2BE8BC9C] = { model = "mp_u_m_m_nat_rancher_01", hash = 0x2BE8BC9C, outfits = 1 }, + [0x7AA6DA17] = { model = "mp_u_m_m_nat_rancher_02", hash = 0x7AA6DA17, outfits = 1 }, + [0x02A89468] = { model = "mp_u_m_m_nat_townfolk_01", hash = 0x02A89468, outfits = 1 }, + [0xB9629EFC] = { model = "mp_u_m_m_strwelcomecenter_02", hash = 0xB9629EFC, outfits = 1 }, + [0xC161E8A4] = { model = "MP_BEAU_BINK_FEMALES_01", hash = 0xC161E8A4, outfits = 1 }, + [0xEDF51277] = { model = "MP_BEAU_BINK_MALES_01", hash = 0xEDF51277, outfits = 7 }, + [0x9ACE7910] = { model = "MP_CARMELA_BINK_VICTIM_MALES_01", hash = 0x9ACE7910, outfits = 5 }, + [0x878040F4] = { model = "MP_CD_REVENGEMAYOR_01", hash = 0x878040F4, outfits = 21 }, + [0xF7831C85] = { model = "mp_fm_bounty_caged_males_01", hash = 0xF7831C85, outfits = 2 }, + [0x3F85E344] = { model = "mp_fm_bounty_ct_corpses_01", hash = 0x3F85E344, outfits = 2 }, + [0x85885C97] = { model = "mp_fm_bounty_hideout_males_01", hash = 0x85885C97, outfits = 1 }, + [0x696D66E4] = { model = "mp_fm_bounty_horde_males_01", hash = 0x696D66E4, outfits = 5 }, + [0x813F5ED3] = { model = "mp_fm_bounty_infiltration_males_01", hash = 0x813F5ED3, outfits = 2 }, + [0xF6458169] = { model = "MP_FM_BOUNTYTARGET_MALES_DLC008_01", hash = 0xF6458169, outfits = 53 }, + [0xC1FD6394] = { model = "mp_fm_knownbounty_guards_01", hash = 0xC1FD6394, outfits = 1 }, + [0xD9162F29] = { model = "MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", hash = 0xD9162F29, outfits = 1 }, + [0xA97E2D65] = { model = "mp_fm_knownbounty_informants_males_01", hash = 0xA97E2D65, outfits = 7 }, + [0x32C42256] = { model = "mp_fm_multitrack_victims_males_01", hash = 0x32C42256, outfits = 2 }, + [0x4957CFEF] = { model = "mp_fm_stakeout_corpses_males_01", hash = 0x4957CFEF, outfits = 2 }, + [0x24497ABF] = { model = "mp_fm_stakeout_poker_males_01", hash = 0x24497ABF, outfits = 2 }, + [0xA5F85792] = { model = "mp_fm_stakeout_target_males_01", hash = 0xA5F85792, outfits = 6 }, + [0x1E14106E] = { model = "mp_fm_track_prospector_01", hash = 0x1E14106E, outfits = 1 }, + [0xC8A1EC4C] = { model = "mp_fm_track_sd_lawman_01", hash = 0xC8A1EC4C, outfits = 1 }, + [0xAA6CE21D] = { model = "mp_fm_track_targets_males_01", hash = 0xAA6CE21D, outfits = 3 }, + [0x83CA7BB6] = { model = "MP_G_F_M_CULTGUARDS_01", hash = 0x83CA7BB6, outfits = 16 }, + [0xC882A3EE] = { model = "mp_g_f_m_cultmembers_01", hash = 0xC882A3EE, outfits = 13 }, + [0xD0DFAE8C] = { model = "MP_G_M_M_CULTGUARDS_01", hash = 0xD0DFAE8C, outfits = 27 }, + [0xAE40CCCC] = { model = "mp_g_m_m_cultmembers_01", hash = 0xAE40CCCC, outfits = 22 }, + [0x7F1377B7] = { model = "MP_G_M_M_MERCS_01", hash = 0x7F1377B7, outfits = 2 }, + [0xE733264E] = { model = "MP_G_M_M_RIFLECRONIES_01", hash = 0xE733264E, outfits = 6 }, + [0x9C1EBED9] = { model = "MP_LBM_CARMELA_BANDITOS_01", hash = 0x9C1EBED9, outfits = 4 }, + [0x96CEA293] = { model = "MP_LM_STEALHORSE_BUYERS_01", hash = 0x96CEA293, outfits = 3 }, + [0x8C5F7BCC] = { model = "MP_U_F_M_CULTPRIEST_01", hash = 0x8C5F7BCC, outfits = 1 }, + [0x5A5EA2DF] = { model = "MP_U_F_M_LEGENDARYBOUNTY_03", hash = 0x5A5EA2DF, outfits = 5 }, + [0xF99F0909] = { model = "MP_U_M_M_BANKPRISONER_01", hash = 0xF99F0909, outfits = 1 }, + [0xA8BEA305] = { model = "MP_U_M_M_BINKMERCS_01", hash = 0xA8BEA305, outfits = 7 }, + [0xBF0B11F0] = { model = "MP_U_M_M_CULTPRIEST_01", hash = 0xBF0B11F0, outfits = 3 }, + [0xBA59A221] = { model = "MP_U_M_M_DROPOFF_JOSIAH_01", hash = 0xBA59A221, outfits = 1 }, + [0x9A9164E1] = { model = "MP_U_M_M_LEGENDARYBOUNTY_08", hash = 0x9A9164E1, outfits = 3 }, + [0x872A3E13] = { model = "MP_U_M_M_LEGENDARYBOUNTY_09", hash = 0x872A3E13, outfits = 1 }, + [0x11952F60] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_01", hash = 0x11952F60, outfits = 1 }, + [0xFFE38BFD] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_02", hash = 0xFFE38BFD, outfits = 1 }, + [0x2D22E67B] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03", hash = 0x2D22E67B, outfits = 1 }, + [0x76D0DAE4] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03B", hash = 0x76D0DAE4, outfits = 1 }, + [0x0329C664] = { model = "MP_U_M_M_LOM_TRAIN_CONDUCTOR_01", hash = 0x0329C664, outfits = 1 }, + [0x059D1627] = { model = "MP_U_M_M_OUTLAW_COACHDRIVER_01", hash = 0x059D1627, outfits = 1 }, + [0x08258837] = { model = "MP_U_M_M_FOS_DOCKWORKER_01", hash = 0x08258837, outfits = 1 }, + [0x0838D137] = { model = "MP_U_M_M_DROPOFF_BRONTE_01", hash = 0x0838D137, outfits = 1 }, + [0x0BE08FB6] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_02", hash = 0x0BE08FB6, outfits = 1 }, + [0x0DD5100A] = { model = "MP_U_M_M_FOS_HARBORMASTER_01", hash = 0x0DD5100A, outfits = 1 }, + [0x0FD9B9AD] = { model = "MP_U_M_M_FOS_TOWN_VIGILANTE_01", hash = 0x0FD9B9AD, outfits = 1 }, + [0x139CC38E] = { model = "MP_U_M_M_OUTLAW_COVINGTON_01", hash = 0x139CC38E, outfits = 1 }, + [0x194B76E7] = { model = "MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x194B76E7, outfits = 5 }, + [0x1AA818AE] = { model = "MP_U_M_M_FOS_BAGHOLDERS_01", hash = 0x1AA818AE, outfits = 5 }, + [0x1D9AB32A] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_01", hash = 0x1D9AB32A, outfits = 1 }, + [0x25CBE18C] = { model = "MP_U_M_M_LOM_TRAIN_BARRICADE_01", hash = 0x25CBE18C, outfits = 7 }, + [0x30ED986F] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_02", hash = 0x30ED986F, outfits = 1 }, + [0x33191090] = { model = "MP_U_M_M_FOS_MUSICIAN_01", hash = 0x33191090, outfits = 1 }, + [0x358E2F94] = { model = "MP_CS_ANTONYFOREMEN", hash = 0x358E2F94, outfits = 2 }, + [0x358EDB23] = { model = "MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x358EDB23, outfits = 5 }, + [0x36B00529] = { model = "MP_U_M_M_FOS_RAILWAY_FOREMAN_01", hash = 0x36B00529, outfits = 1 }, + [0x3EECF401] = { model = "MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", hash = 0x3EECF401, outfits = 5 }, + [0x3F629157] = { model = "MP_U_M_M_PROTECT_ARMADILLO_01", hash = 0x3F629157, outfits = 1 }, + [0x46B92ED0] = { model = "MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01", hash = 0x46B92ED0, outfits = 5 }, + [0x510EBF17] = { model = "MP_U_M_M_LOM_TRAIN_PRISONERS_01", hash = 0x510EBF17, outfits = 2 }, + [0x57D3AE19] = { model = "MP_A_M_M_COACHGUARDS_01", hash = 0x57D3AE19, outfits = 15 }, + [0x58181CAF] = { model = "MP_U_M_M_FOS_ROGUETHIEF_01", hash = 0x58181CAF, outfits = 1 }, + [0x592FCF55] = { model = "MP_U_M_M_FOS_RAILWAY_DRIVER_01", hash = 0x592FCF55, outfits = 1 }, + [0x5DE76175] = { model = "MP_U_M_M_LOM_ASBMERCS_01", hash = 0x5DE76175, outfits = 2 }, + [0x5FBDB3E7] = { model = "MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01", hash = 0x5FBDB3E7, outfits = 1 }, + [0x617AD6A7] = { model = "MP_U_M_O_LOM_ASBFOREMAN_01", hash = 0x617AD6A7, outfits = 1 }, + [0x64BCC144] = { model = "MP_G_M_M_MOUNTAINMEN_01", hash = 0x64BCC144, outfits = 25 }, + [0x6829879B] = { model = "MP_U_M_M_PROTECT_STRAWBERRY_01", hash = 0x6829879B, outfits = 1 }, + [0x68CFBA8F] = { model = "MP_U_M_M_PROTECT_HALLOWEEN_NED_01", hash = 0x68CFBA8F, outfits = 1 }, + [0x6A78FE6C] = { model = "MP_U_M_M_OUTLAW_MPVICTIM_01", hash = 0x6A78FE6C, outfits = 1 }, + [0x6AB56BDA] = { model = "MP_U_M_M_LOM_SD_DOCKWORKER_01", hash = 0x6AB56BDA, outfits = 1 }, + [0x71A35899] = { model = "MP_U_M_M_FOS_TOWN_OUTLAW_01", hash = 0x71A35899, outfits = 4 }, + [0x7494D380] = { model = "MP_U_M_M_FOS_RECOVERY_RECIPIENT_01", hash = 0x7494D380, outfits = 6 }, + [0x7875E8E3] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_03", hash = 0x7875E8E3, outfits = 1 }, + [0x79912CAE] = { model = "MP_U_M_M_FOS_DROPOFF_01", hash = 0x79912CAE, outfits = 1 }, + [0x83123AF1] = { model = "MP_U_M_M_FOS_SDSALOON_GAMBLER_01", hash = 0x83123AF1, outfits = 1 }, + [0x8C37025E] = { model = "MP_U_M_M_LOM_TRAIN_LAWTARGET_01", hash = 0x8C37025E, outfits = 1 }, + [0x8D357D39] = { model = "MP_G_M_M_FOS_DEBTGANGCAPITALI_01", hash = 0x8D357D39, outfits = 5 }, + [0x8EA8D407] = { model = "MP_A_M_M_LOM_ASBMINERS_01", hash = 0x8EA8D407, outfits = 2 }, + [0x9012A8C2] = { model = "MP_FM_BOUNTY_HORDE_LAW_01", hash = 0x9012A8C2, outfits = 2 }, + [0x982C82C5] = { model = "MP_U_M_M_LOM_HEAD_SECURITY_01", hash = 0x982C82C5, outfits = 4 }, + [0x98C03046] = { model = "MP_U_M_M_FOS_SDSALOON_OWNER_01", hash = 0x98C03046, outfits = 1 }, + [0x9B2A9005] = { model = "MP_U_M_M_MUSICIAN_01", hash = 0x9B2A9005, outfits = 1 }, + [0x9DFA9B6E] = { model = "MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01", hash = 0x9DFA9B6E, outfits = 1 }, + [0x9E96638B] = { model = "MP_U_M_M_FOS_RAILWAY_BARON_01", hash = 0x9E96638B, outfits = 1 }, + [0xA1B84FC1] = { model = "MP_G_M_O_UNIEXCONFEDS_CAP_01", hash = 0xA1B84FC1, outfits = 1 }, + [0xA303FC9A] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_01", hash = 0xA303FC9A, outfits = 2 }, + [0xA37DBD30] = { model = "MP_U_M_M_INTERROGATOR_01", hash = 0xA37DBD30, outfits = 1 }, + [0xAADC8018] = { model = "CS_MP_POLICECHIEF_LAMBERT", hash = 0xAADC8018, outfits = 1 }, + [0xAF86511B] = { model = "MP_A_M_M_ASBMINERS_01", hash = 0xAF86511B, outfits = 2 }, + [0xAF9B36E2] = { model = "MP_U_M_M_ASBDEPUTY_01", hash = 0xAF9B36E2, outfits = 1 }, + [0xB06054ED] = { model = "MP_U_M_M_LOM_DROPOFF_BRONTE_01", hash = 0xB06054ED, outfits = 1 }, + [0xB4CD18D6] = { model = "MP_BINK_EMBER_OF_THE_EAST_MALES_01", hash = 0xB4CD18D6, outfits = 9 }, + [0xB4F3EF87] = { model = "mp_U_M_M_FOS_RAILWAY_GUARDS_01", hash = 0xB4F3EF87, outfits = 3 }, + [0xB50453FF] = { model = "MP_G_M_M_FOS_VIGILANTES_01", hash = 0xB50453FF, outfits = 10 }, + [0xBB22D33E] = { model = "mp_S_M_M_REVENUEAGENTS_CAP_01", hash = 0xBB22D33E, outfits = 3 }, + [0xBD27319D] = { model = "MP_U_M_M_LOM_SALOON_DRUNK_01", hash = 0xBD27319D, outfits = 1 }, + [0xBDD36DB5] = { model = "MP_A_M_M_ASBMINERS_02", hash = 0xBDD36DB5, outfits = 2 }, + [0xBE651417] = { model = "CS_MP_SENATOR_RICARD", hash = 0xBE651417, outfits = 2 }, + [0xC2B71883] = { model = "MP_U_M_M_LOM_TRAIN_CLERK_01", hash = 0xC2B71883, outfits = 1 }, + [0xC358949B] = { model = "MP_U_M_M_PROTECT_VALENTINE_01", hash = 0xC358949B, outfits = 1 }, + [0xC37F22A8] = { model = "MP_S_M_M_FOS_HARBORGUARDS_01", hash = 0xC37F22A8, outfits = 20 }, + [0xCB86F5E4] = { model = "MP_U_M_M_PROTECT_MERCER_CONTACT_01", hash = 0xCB86F5E4, outfits = 1 }, + [0xCD3F93CC] = { model = "MP_U_M_M_OUTLAW_RHD_NOBLE_01", hash = 0xCD3F93CC, outfits = 4 }, + [0xD2D648CE] = { model = "MP_A_M_M_JAMESONGUARD_01", hash = 0xD2D648CE, outfits = 50 }, + [0xD34CCF4F] = { model = "MP_U_M_M_FOS_RAILWAY_RECIPIENT_01", hash = 0xD34CCF4F, outfits = 1 }, + [0xD7A31642] = { model = "MP_U_M_M_PROTECT_BLACKWATER_01", hash = 0xD7A31642, outfits = 1 }, + [0xDA440097] = { model = "MP_U_M_M_HCTEL_SD_TARGET_02", hash = 0xDA440097, outfits = 2 }, + [0xDA5BAF27] = { model = "MP_G_M_M_FOS_DEBTGANG_01", hash = 0xDA5BAF27, outfits = 15 }, + [0xDA664071] = { model = "MP_U_M_M_FOS_SABOTEUR_01", hash = 0xDA664071, outfits = 1 }, + [0xDC558720] = { model = "MP_U_M_M_HCTEL_SD_GANG_01", hash = 0xDC558720, outfits = 3 }, + [0xE2DCE94B] = { model = "MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01", hash = 0xE2DCE94B, outfits = 1 }, + [0xE514F0BF] = { model = "MP_U_M_M_LOM_DOCKWORKER_01", hash = 0xE514F0BF, outfits = 1 }, + [0xE58B4A18] = { model = "MP_U_M_M_FOS_DOCKRECIPIENTS_01", hash = 0xE58B4A18, outfits = 2 }, + [0xE5E2AAE3] = { model = "MP_U_F_M_OUTLAW_SOCIETYLADY_01", hash = 0xE5E2AAE3, outfits = 1 }, + [0xE8F03F0A] = { model = "MP_U_M_M_LOM_RHD_SHERIFF_01", hash = 0xE8F03F0A, outfits = 1 }, + [0xEA3457D9] = { model = "MP_U_M_M_FOS_CORNWALL_BANDITS_01", hash = 0xEA3457D9, outfits = 3 }, + [0xEA626A60] = { model = "MP_U_M_M_PROTECT_STRAWBERRY", hash = 0xEA626A60, outfits = 1 }, + [0xEAA42177] = { model = "MP_GuidoMartelli", hash = 0xEAA42177, outfits = 1 }, + [0xEAAE023B] = { model = "MP_U_M_M_HARBORMASTER_01", hash = 0xEAAE023B, outfits = 1 }, + [0xEB2B8251] = { model = "MP_U_M_M_LOM_RHD_SMITHASSISTANT_01", hash = 0xEB2B8251, outfits = 1 }, + [0xED2FDF9A] = { model = "MP_U_M_M_FOS_INTERROGATOR_02", hash = 0xED2FDF9A, outfits = 1 }, + [0xED64E004] = { model = "MP_U_M_M_FOS_INTERROGATOR_01", hash = 0xED64E004, outfits = 1 }, + [0xED7DA70A] = { model = "MP_U_M_M_HCTEL_SD_TARGET_01", hash = 0xED7DA70A, outfits = 1 }, + [0xEE6A6493] = { model = "MP_U_M_M_FOS_CORNWALLGUARD_01", hash = 0xEE6A6493, outfits = 2 }, + [0xEF9BAB0C] = { model = "MP_A_M_M_FOS_COACHGUARDS_01", hash = 0xEF9BAB0C, outfits = 15 }, + [0xF14E5BDB] = { model = "MP_U_F_M_PROTECT_MERCER_01", hash = 0xF14E5BDB, outfits = 5 }, + [0xF24DC82F] = { model = "MP_U_M_M_DOCKRECIPIENTS_01", hash = 0xF24DC82F, outfits = 2 }, + [0xFDA2404B] = { model = "MP_U_M_M_LOM_RHD_DEALERS_01", hash = 0xFDA2404B, outfits = 3 }, + [0xFE3F4984] = { model = "MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01", hash = 0xFE3F4984, outfits = 6 }, + [0xFFDFCBCE] = { model = "MP_U_M_M_HCTEL_SD_TARGET_03", hash = 0xFFDFCBCE, outfits = 6 }, + [0xFFF1AB44] = { model = "MP_U_M_M_FOS_RAILWAY_HUNTER_01", hash = 0xFFF1AB44, outfits = 1 }, +} Peds.Ambient = { - -- [`a_m_m_blwlaborer_01`] = createEntry("a_m_m_blwlaborer_01"), + [0x53367A8A] = { model = "a_f_m_armcholeracorpse_01", hash = 0x53367A8A, outfits = 40 }, + [0x9854FB06] = { model = "a_f_m_armtownfolk_01", hash = 0x9854FB06, outfits = 34 }, + [0x2ECE27FA] = { model = "a_f_m_armtownfolk_02", hash = 0x2ECE27FA, outfits = 24 }, + [0x6A01E5AF] = { model = "a_f_m_asbtownfolk_01", hash = 0x6A01E5AF, outfits = 35 }, + [0x9EF80CC3] = { model = "a_f_m_bivfancytravellers_01", hash = 0x9EF80CC3, outfits = 40 }, + [0x68D9612B] = { model = "a_f_m_blwtownfolk_01", hash = 0x68D9612B, outfits = 40 }, + [0x5EAF4CD7] = { model = "a_f_m_blwtownfolk_02", hash = 0x5EAF4CD7, outfits = 40 }, + [0x559F1795] = { model = "a_f_m_blwupperclass_01", hash = 0x559F1795, outfits = 50 }, + [0x156B2B5B] = { model = "a_f_m_btchillbilly_01", hash = 0x156B2B5B, outfits = 17 }, + [0x18FE1EB6] = { model = "a_f_m_btcobesewomen_01", hash = 0x18FE1EB6, outfits = 1 }, + [0xE6CA7A74] = { model = "a_f_m_bynfancytravellers_01", hash = 0xE6CA7A74, outfits = 30 }, + [0x41FCD560] = { model = "a_f_m_familytravelers_cool_01", hash = 0x41FCD560, outfits = 20 }, + [0x02FF9BBF] = { model = "a_f_m_familytravelers_warm_01", hash = 0x02FF9BBF, outfits = 20 }, + [0xDC9B1FAF] = { model = "a_f_m_gamhighsociety_01", hash = 0xDC9B1FAF, outfits = 39 }, + [0xF4D38A44] = { model = "a_f_m_grifancytravellers_01", hash = 0xF4D38A44, outfits = 40 }, + [0x7991217C] = { model = "a_f_m_guatownfolk_01", hash = 0x7991217C, outfits = 25 }, + [0xC53BAC3B] = { model = "a_f_m_htlfancytravellers_01", hash = 0xC53BAC3B, outfits = 40 }, + [0xFC3C9932] = { model = "a_f_m_lagtownfolk_01", hash = 0xFC3C9932, outfits = 12 }, + [0x98A1C808] = { model = "a_f_m_lowersdtownfolk_01", hash = 0x98A1C808, outfits = 42 }, + [0x88BB283B] = { model = "a_f_m_lowersdtownfolk_02", hash = 0x88BB283B, outfits = 40 }, + [0x777905B7] = { model = "a_f_m_lowersdtownfolk_03", hash = 0x777905B7, outfits = 42 }, + [0xBF41104A] = { model = "a_f_m_lowertrainpassengers_01", hash = 0xBF41104A, outfits = 25 }, + [0x26F2C9A7] = { model = "a_f_m_middlesdtownfolk_01", hash = 0x26F2C9A7, outfits = 45 }, + [0x37556A6C] = { model = "a_f_m_middlesdtownfolk_02", hash = 0x37556A6C, outfits = 30 }, + [0xC29280E8] = { model = "a_f_m_middlesdtownfolk_03", hash = 0xC29280E8, outfits = 20 }, + [0xFBA4F677] = { model = "a_f_m_middletrainpassengers_01", hash = 0xFBA4F677, outfits = 25 }, + [0xADABE58C] = { model = "a_f_m_nbxslums_01", hash = 0xADABE58C, outfits = 42 }, + [0xC20A03C0] = { model = "a_f_m_nbxupperclass_01", hash = 0xC20A03C0, outfits = 45 }, + [0x0E5BDB04] = { model = "a_f_m_nbxwhore_01", hash = 0x0E5BDB04, outfits = 25 }, + [0x768C0686] = { model = "a_f_m_rhdprostitute_01", hash = 0x768C0686, outfits = 35 }, + [0x2029479B] = { model = "a_f_m_rhdtownfolk_01", hash = 0x2029479B, outfits = 23 }, + [0x7108E959] = { model = "a_f_m_rhdtownfolk_02", hash = 0x7108E959, outfits = 22 }, + [0x7EC886E0] = { model = "a_f_m_rhdupperclass_01", hash = 0x7EC886E0, outfits = 50 }, + [0xADA8C252] = { model = "a_f_m_rkrfancytravellers_01", hash = 0xADA8C252, outfits = 40 }, + [0xC53D076D] = { model = "a_f_m_roughtravellers_01", hash = 0xC53D076D, outfits = 30 }, + [0x697CE9F6] = { model = "a_f_m_sclfancytravellers_01", hash = 0x697CE9F6, outfits = 21 }, + [0xF9EABA1F] = { model = "a_f_m_sdchinatown_01", hash = 0xF9EABA1F, outfits = 20 }, + [0x6C844384] = { model = "a_f_m_sdfancywhore_01", hash = 0x6C844384, outfits = 20 }, + [0x8DC3DD27] = { model = "a_f_m_sdobesewomen_01", hash = 0x8DC3DD27, outfits = 1 }, + [0x254A0D7B] = { model = "a_f_m_sdserversformal_01", hash = 0x254A0D7B, outfits = 10 }, + [0x10B716A1] = { model = "a_f_m_sdslums_02", hash = 0x10B716A1, outfits = 42 }, + [0xF0CED965] = { model = "a_f_m_skpprisononline_01", hash = 0xF0CED965, outfits = 8 }, + [0xAD789542] = { model = "a_f_m_strtownfolk_01", hash = 0xAD789542, outfits = 20 }, + [0x0C6E57DB] = { model = "a_f_m_tumtownfolk_01", hash = 0x0C6E57DB, outfits = 22 }, + [0xB545A97B] = { model = "a_f_m_tumtownfolk_02", hash = 0xB545A97B, outfits = 22 }, + [0xE533D2B4] = { model = "a_f_m_unicorpse_01", hash = 0xE533D2B4, outfits = 49 }, + [0xC16B7BA8] = { model = "a_f_m_uppertrainpassengers_01", hash = 0xC16B7BA8, outfits = 25 }, + [0x8E301D96] = { model = "a_f_m_valprostitute_01", hash = 0x8E301D96, outfits = 23 }, + [0xF666E887] = { model = "a_f_m_valtownfolk_01", hash = 0xF666E887, outfits = 20 }, + [0xB7A9EA0E] = { model = "a_f_m_vhtprostitute_01", hash = 0xB7A9EA0E, outfits = 11 }, + [0x008F4AD5] = { model = "a_f_m_vhttownfolk_01", hash = 0x008F4AD5, outfits = 25 }, + [0xF7E2135D] = { model = "a_f_m_waptownfolk_01", hash = 0xF7E2135D, outfits = 25 }, + [0xD0A31078] = { model = "a_f_o_blwupperclass_01", hash = 0xD0A31078, outfits = 45 }, + [0x86B4227A] = { model = "a_f_o_btchillbilly_01", hash = 0x86B4227A, outfits = 11 }, + [0xA0600CFB] = { model = "a_f_o_guatownfolk_01", hash = 0xA0600CFB, outfits = 15 }, + [0x17C91016] = { model = "a_f_o_lagtownfolk_01", hash = 0x17C91016, outfits = 12 }, + [0x322B92BF] = { model = "a_f_o_sdchinatown_01", hash = 0x322B92BF, outfits = 20 }, + [0x4057BCEE] = { model = "a_f_o_sdupperclass_01", hash = 0x4057BCEE, outfits = 45 }, + [0x837B740E] = { model = "a_f_o_waptownfolk_01", hash = 0x837B740E, outfits = 21 }, + [0xD076C393] = { model = "a_m_m_armcholeracorpse_01", hash = 0xD076C393, outfits = 38 }, + [0xCF7E73BE] = { model = "a_m_m_armtownfolk_01", hash = 0xCF7E73BE, outfits = 49 }, + [0xC137D731] = { model = "a_m_m_armtownfolk_02", hash = 0xC137D731, outfits = 60 }, + [0x37DAA98A] = { model = "a_m_m_asbboatcrew_01", hash = 0x37DAA98A, outfits = 30 }, + [0x68A1DDE7] = { model = "a_m_m_asbminer_01", hash = 0x68A1DDE7, outfits = 61 }, + [0x3E500944] = { model = "a_m_m_asbminer_02", hash = 0x3E500944, outfits = 42 }, + [0x50ABADFB] = { model = "a_m_m_asbminer_03", hash = 0x50ABADFB, outfits = 81 }, + [0x19E7406F] = { model = "a_m_m_asbminer_04", hash = 0x19E7406F, outfits = 69 }, + [0x0B54641C] = { model = "a_m_m_asbtownfolk_01", hash = 0x0B54641C, outfits = 86 }, + [0xA5E02A13] = { model = "a_m_m_asbtownfolk_01_laborer", hash = 0xA5E02A13, outfits = 70 }, + [0x613A4B8E] = { model = "a_m_m_bivfancydrivers_01", hash = 0x613A4B8E, outfits = 10 }, + [0x0D8C9D0B] = { model = "a_m_m_bivfancytravellers_01", hash = 0x0D8C9D0B, outfits = 21 }, + [0x4ADABFBA] = { model = "a_m_m_bivroughtravellers_01", hash = 0x4ADABFBA, outfits = 41 }, + [0x9384F640] = { model = "a_m_m_bivworker_01", hash = 0x9384F640, outfits = 29 }, + [0x5B91D27E] = { model = "a_m_m_blwforeman_01", hash = 0x5B91D27E, outfits = 35 }, + [0xC509B26F] = { model = "a_m_m_blwlaborer_01", hash = 0xC509B26F, outfits = 35 }, + [0xDBC6DFE9] = { model = "a_m_m_blwlaborer_02", hash = 0xDBC6DFE9, outfits = 45 }, + [0x41907533] = { model = "a_m_m_blwobesemen_01", hash = 0x41907533, outfits = 3 }, + [0xD10CE853] = { model = "a_m_m_blwtownfolk_01", hash = 0xD10CE853, outfits = 77 }, + [0x3CF00F0B] = { model = "a_m_m_blwupperclass_01", hash = 0x3CF00F0B, outfits = 85 }, + [0xE232B9EF] = { model = "a_m_m_btchillbilly_01", hash = 0xE232B9EF, outfits = 42 }, + [0x002A0F51] = { model = "a_m_m_btcobesemen_01", hash = 0x002A0F51, outfits = 1 }, + [0x70B728D7] = { model = "a_m_m_bynfancydrivers_01", hash = 0x70B728D7, outfits = 10 }, + [0xECBDF082] = { model = "a_m_m_bynfancytravellers_01", hash = 0xECBDF082, outfits = 20 }, + [0x7D65D747] = { model = "a_m_m_bynroughtravellers_01", hash = 0x7D65D747, outfits = 40 }, + [0x3B777AC0] = { model = "a_m_m_bynsurvivalist_01", hash = 0x3B777AC0, outfits = 15 }, + [0xC7458219] = { model = "a_m_m_cardgameplayers_01", hash = 0xC7458219, outfits = 84 }, + [0x5A3ABACE] = { model = "a_m_m_chelonian_01", hash = 0x5A3ABACE, outfits = 24 }, + [0xDB5C4A62] = { model = "a_m_m_deliverytravelers_cool_01", hash = 0xDB5C4A62, outfits = 20 }, + [0xA56A4C3D] = { model = "a_m_m_deliverytravelers_warm_01", hash = 0xA56A4C3D, outfits = 20 }, + [0xD4B37D8A] = { model = "a_m_m_dominoesplayers_01", hash = 0xD4B37D8A, outfits = 18 }, + [0xE5CED83E] = { model = "a_m_m_emrfarmhand_01", hash = 0xE5CED83E, outfits = 20 }, + [0x570B9957] = { model = "a_m_m_familytravelers_cool_01", hash = 0x570B9957, outfits = 20 }, + [0xEF53FC1C] = { model = "a_m_m_familytravelers_warm_01", hash = 0xEF53FC1C, outfits = 20 }, + [0x584626EE] = { model = "a_m_m_farmtravelers_cool_01", hash = 0x584626EE, outfits = 20 }, + [0x2F9417F1] = { model = "a_m_m_farmtravelers_warm_01", hash = 0x2F9417F1, outfits = 20 }, + [0x18E143CA] = { model = "a_m_m_fivefingerfilletplayers_01", hash = 0x18E143CA, outfits = 12 }, + [0x0DB7B411] = { model = "a_m_m_foreman", hash = 0x0DB7B411, outfits = 10 }, + [0x8DABAE42] = { model = "a_m_m_gamhighsociety_01", hash = 0x8DABAE42, outfits = 40 }, + [0x542A035C] = { model = "a_m_m_grifancydrivers_01", hash = 0x542A035C, outfits = 10 }, + [0x761D319E] = { model = "a_m_m_grifancytravellers_01", hash = 0x761D319E, outfits = 20 }, + [0x97273585] = { model = "a_m_m_griroughtravellers_01", hash = 0x97273585, outfits = 40 }, + [0x9DDE71E1] = { model = "a_m_m_grisurvivalist_01", hash = 0x9DDE71E1, outfits = 15 }, + [0x0D4DB92F] = { model = "a_m_m_guatownfolk_01", hash = 0x0D4DB92F, outfits = 27 }, + [0xEEF71080] = { model = "a_m_m_htlfancydrivers_01", hash = 0xEEF71080, outfits = 10 }, + [0xB05F73A6] = { model = "a_m_m_htlfancytravellers_01", hash = 0xB05F73A6, outfits = 20 }, + [0xA9DCFB5A] = { model = "a_m_m_htlroughtravellers_01", hash = 0xA9DCFB5A, outfits = 40 }, + [0xB3410109] = { model = "a_m_m_htlsurvivalist_01", hash = 0xB3410109, outfits = 15 }, + [0x5729EC23] = { model = "a_m_m_huntertravelers_cool_01", hash = 0x5729EC23, outfits = 20 }, + [0xD898CFD4] = { model = "a_m_m_huntertravelers_warm_01", hash = 0xD898CFD4, outfits = 21 }, + [0x9233448C] = { model = "a_m_m_jamesonguard_01", hash = 0x9233448C, outfits = 56 }, + [0xBD48CFD4] = { model = "a_m_m_lagtownfolk_01", hash = 0xBD48CFD4, outfits = 12 }, + [0xE40C9EB8] = { model = "a_m_m_lowersdtownfolk_01", hash = 0xE40C9EB8, outfits = 91 }, + [0x82AF5BFB] = { model = "a_m_m_lowersdtownfolk_02", hash = 0x82AF5BFB, outfits = 91 }, + [0x950C61AA] = { model = "a_m_m_lowertrainpassengers_01", hash = 0x950C61AA, outfits = 25 }, + [0x7F2FF3A2] = { model = "a_m_m_middlesdtownfolk_01", hash = 0x7F2FF3A2, outfits = 65 }, + [0x6E8E525F] = { model = "a_m_m_middlesdtownfolk_02", hash = 0x6E8E525F, outfits = 51 }, + [0x20C236C8] = { model = "a_m_m_middlesdtownfolk_03", hash = 0x20C236C8, outfits = 51 }, + [0xB56ED02B] = { model = "a_m_m_middletrainpassengers_01", hash = 0xB56ED02B, outfits = 25 }, + [0xB14CEEEF] = { model = "a_m_m_moonshiners_01", hash = 0xB14CEEEF, outfits = 10 }, + [0xED78C02F] = { model = "a_m_m_nbxdockworkers_01", hash = 0xED78C02F, outfits = 70 }, + [0x9881BCFA] = { model = "a_m_m_nbxlaborers_01", hash = 0x9881BCFA, outfits = 70 }, + [0x56A5800A] = { model = "a_m_m_nbxslums_01", hash = 0x56A5800A, outfits = 85 }, + [0x04B7D63B] = { model = "a_m_m_nbxupperclass_01", hash = 0x04B7D63B, outfits = 50 }, + [0x6D027AB7] = { model = "a_m_m_nearoughtravellers_01", hash = 0x6D027AB7, outfits = 35 }, + [0x2C9C69C2] = { model = "a_m_m_ranchertravelers_cool_01", hash = 0x2C9C69C2, outfits = 20 }, + [0xF7649D04] = { model = "a_m_m_ranchertravelers_warm_01", hash = 0xF7649D04, outfits = 20 }, + [0x54D8BE8E] = { model = "a_m_m_rancher_01", hash = 0x54D8BE8E, outfits = 20 }, + [0x94EAA58F] = { model = "a_m_m_rhdforeman_01", hash = 0x94EAA58F, outfits = 30 }, + [0x602993B2] = { model = "a_m_m_rhdobesemen_01", hash = 0x602993B2, outfits = 3 }, + [0x3A489018] = { model = "a_m_m_rhdtownfolk_01", hash = 0x3A489018, outfits = 42 }, + [0x009F6A48] = { model = "a_m_m_rhdtownfolk_01_laborer", hash = 0x009F6A48, outfits = 10 }, + [0x6833EBEE] = { model = "a_m_m_rhdtownfolk_02", hash = 0x6833EBEE, outfits = 35 }, + [0xAFCAF759] = { model = "a_m_m_rhdupperclass_01", hash = 0xAFCAF759, outfits = 63 }, + [0x921DA99E] = { model = "a_m_m_rkrfancydrivers_01", hash = 0x921DA99E, outfits = 10 }, + [0x76C805FE] = { model = "a_m_m_rkrfancytravellers_01", hash = 0x76C805FE, outfits = 20 }, + [0xAD581ACB] = { model = "a_m_m_rkrroughtravellers_01", hash = 0xAD581ACB, outfits = 40 }, + [0x2FABD7A9] = { model = "a_m_m_rkrsurvivalist_01", hash = 0x2FABD7A9, outfits = 15 }, + [0xBCA4A7DC] = { model = "a_m_m_sclfancydrivers_01", hash = 0xBCA4A7DC, outfits = 10 }, + [0x45B96600] = { model = "a_m_m_sclfancytravellers_01", hash = 0x45B96600, outfits = 20 }, + [0xD93C654F] = { model = "a_m_m_sclroughtravellers_01", hash = 0xD93C654F, outfits = 41 }, + [0x26878D5C] = { model = "a_m_m_sdchinatown_01", hash = 0x26878D5C, outfits = 21 }, + [0x44BCB3C8] = { model = "a_m_m_sddockforeman_01", hash = 0x44BCB3C8, outfits = 25 }, + [0xA1875C33] = { model = "a_m_m_sddockworkers_02", hash = 0xA1875C33, outfits = 70 }, + [0xF20E6FFA] = { model = "a_m_m_sdfancytravellers_01", hash = 0xF20E6FFA, outfits = 20 }, + [0xD0EEF17B] = { model = "a_m_m_sdlaborers_02", hash = 0xD0EEF17B, outfits = 70 }, + [0x36E3135B] = { model = "a_m_m_sdobesemen_01", hash = 0x36E3135B, outfits = 3 }, + [0x885C429E] = { model = "a_m_m_sdroughtravellers_01", hash = 0x885C429E, outfits = 40 }, + [0x8FC7F8DD] = { model = "a_m_m_sdserversformal_01", hash = 0x8FC7F8DD, outfits = 6 }, + [0xAA5C3EA9] = { model = "a_m_m_sdslums_02", hash = 0xAA5C3EA9, outfits = 85 }, + [0x16958B7D] = { model = "a_m_m_skpprisoner_01", hash = 0x16958B7D, outfits = 20 }, + [0x6D78A035] = { model = "a_m_m_skpprisonline_01", hash = 0x6D78A035, outfits = 24 }, + [0xDCA53CEE] = { model = "a_m_m_smhthug_01", hash = 0xDCA53CEE, outfits = 24 }, + [0x2A19CF1B] = { model = "a_m_m_strfancytourist_01", hash = 0x2A19CF1B, outfits = 5 }, + [0x9E51CBEB] = { model = "a_m_m_strlaborer_01", hash = 0x9E51CBEB, outfits = 18 }, + [0x4335A6E5] = { model = "a_m_m_strtownfolk_01", hash = 0x4335A6E5, outfits = 26 }, + [0x1C9C6388] = { model = "a_m_m_tumtownfolk_01", hash = 0x1C9C6388, outfits = 60 }, + [0x39A29D9C] = { model = "a_m_m_tumtownfolk_02", hash = 0x39A29D9C, outfits = 60 }, + [0xFE70D544] = { model = "a_m_m_uniboatcrew_01", hash = 0xFE70D544, outfits = 20 }, + [0x1CC906ED] = { model = "a_m_m_unicoachguards_01", hash = 0x1CC906ED, outfits = 20 }, + [0x4C6C6086] = { model = "a_m_m_unicorpse_01", hash = 0x4C6C6086, outfits = 186 }, + [0x39F19DB8] = { model = "a_m_m_unigunslinger_01", hash = 0x39F19DB8, outfits = 40 }, + [0x752ADF85] = { model = "a_m_m_uppertrainpassengers_01", hash = 0x752ADF85, outfits = 25 }, + [0xF90FDED2] = { model = "a_m_m_valcriminals_01", hash = 0xF90FDED2, outfits = 10 }, + [0x1F52F239] = { model = "a_m_m_valfarmer_01", hash = 0x1F52F239, outfits = 29 }, + [0xDC64F897] = { model = "a_m_m_vallaborer_01", hash = 0xDC64F897, outfits = 58 }, + [0x838F50CE] = { model = "a_m_m_valtownfolk_01", hash = 0x838F50CE, outfits = 36 }, + [0x9550F451] = { model = "a_m_m_valtownfolk_02", hash = 0x9550F451, outfits = 44 }, + [0xAA7C134D] = { model = "a_m_m_vhtboatcrew_01", hash = 0xAA7C134D, outfits = 30 }, + [0xC703A880] = { model = "a_m_m_vhtthug_01", hash = 0xC703A880, outfits = 40 }, + [0x36C66682] = { model = "a_m_m_vhttownfolk_01", hash = 0x36C66682, outfits = 86 }, + [0x3183AABD] = { model = "a_m_m_wapwarriors_01", hash = 0x3183AABD, outfits = 69 }, + [0x57B730CA] = { model = "a_m_o_blwupperclass_01", hash = 0x57B730CA, outfits = 80 }, + [0xA9D376B5] = { model = "a_m_o_btchillbilly_01", hash = 0xA9D376B5, outfits = 29 }, + [0x153790EE] = { model = "a_m_o_guatownfolk_01", hash = 0x153790EE, outfits = 15 }, + [0xD02B6700] = { model = "a_m_o_lagtownfolk_01", hash = 0xD02B6700, outfits = 12 }, + [0x34EEA2A1] = { model = "a_m_o_sdchinatown_01", hash = 0x34EEA2A1, outfits = 21 }, + [0x8C74A816] = { model = "a_m_o_sdupperclass_01", hash = 0x8C74A816, outfits = 50 }, + [0x8C850F6C] = { model = "a_m_o_waptownfolk_01", hash = 0x8C850F6C, outfits = 26 }, + [0x8E76B9B9] = { model = "a_m_y_asbminer_01", hash = 0x8E76B9B9, outfits = 60 }, + [0x5C0454CD] = { model = "a_m_y_asbminer_02", hash = 0x5C0454CD, outfits = 42 }, + [0x14FD46C4] = { model = "a_m_y_asbminer_03", hash = 0x14FD46C4, outfits = 81 }, + [0x30407D4A] = { model = "a_m_y_asbminer_04", hash = 0x30407D4A, outfits = 69 }, + [0x0FC40064] = { model = "a_m_y_nbxstreetkids_01", hash = 0x0FC40064, outfits = 8 }, + [0xACA57303] = { model = "a_m_y_nbxstreetkids_slums_01", hash = 0xACA57303, outfits = 20 }, + [0xCA57B2C4] = { model = "a_m_y_sdstreetkids_slums_02", hash = 0xCA57B2C4, outfits = 8 }, + [0x75CC2B66] = { model = "a_m_y_unicorpse_01", hash = 0x75CC2B66, outfits = 2 }, + [0x9295AF45] = { model = "s_f_m_bwmworker_01", hash = 0x9295AF45, outfits = 20 }, + [0xDCEE66D9] = { model = "s_f_m_cghworker_01", hash = 0xDCEE66D9, outfits = 20 }, + [0xC463C94D] = { model = "s_f_m_mapworker_01", hash = 0xC463C94D, outfits = 10 }, + [0x2B0C75A7] = { model = "s_m_m_army_01", hash = 0x2B0C75A7, outfits = 59 }, + [0xBC548357] = { model = "s_m_m_asbcowpoke_01", hash = 0xBC548357, outfits = 30 }, + [0xA76308C1] = { model = "s_m_m_asbdealer_01", hash = 0xA76308C1, outfits = 10 }, + [0x40C51B9B] = { model = "s_m_m_bankclerk_01", hash = 0x40C51B9B, outfits = 13 }, + [0xD2FA5F10] = { model = "s_m_m_barber_01", hash = 0xD2FA5F10, outfits = 7 }, + [0x45B1C269] = { model = "s_m_m_blwcowpoke_01", hash = 0x45B1C269, outfits = 30 }, + [0x96B4CDFD] = { model = "s_m_m_blwdealer_01", hash = 0x96B4CDFD, outfits = 8 }, + [0x7FA7B097] = { model = "s_m_m_bwmworker_01", hash = 0x7FA7B097, outfits = 20 }, + [0x9E19AFE2] = { model = "s_m_m_cghworker_01", hash = 0x9E19AFE2, outfits = 30 }, + [0xCC2B5869] = { model = "s_m_m_cktworker_01", hash = 0xCC2B5869, outfits = 50 }, + [0x76F815AD] = { model = "s_m_m_coachtaxidriver_01", hash = 0x76F815AD, outfits = 16 }, + [0xBF1F0776] = { model = "s_m_m_cornwallguard_01", hash = 0xBF1F0776, outfits = 43 }, + [0x5040FF5C] = { model = "s_m_m_dispatchleaderrural_01", hash = 0x5040FF5C, outfits = 11 }, + [0xE917380E] = { model = "s_m_m_fussarhenchman_01", hash = 0xE917380E, outfits = 67 }, + [0x56016AD3] = { model = "s_m_m_genconductor_01", hash = 0x56016AD3, outfits = 11 }, + [0x2C8D5F17] = { model = "s_m_m_hofguard_01", hash = 0x2C8D5F17, outfits = 20 }, + [0x8649EF17] = { model = "s_m_m_liveryworker_01", hash = 0x8649EF17, outfits = 24 }, + [0x236B99E0] = { model = "s_m_m_magiclantern_01", hash = 0x236B99E0, outfits = 4 }, + [0x4A6B07B5] = { model = "s_m_m_mapworker_01", hash = 0x4A6B07B5, outfits = 10 }, + [0x5339E46B] = { model = "s_m_m_marketvendor_01", hash = 0x5339E46B, outfits = 16 }, + [0xD952E41C] = { model = "s_m_m_micguard_01", hash = 0xD952E41C, outfits = 23 }, + [0x5D6431A9] = { model = "s_m_m_nbxriverboatdealers_01", hash = 0x5D6431A9, outfits = 20 }, + [0xDF00FFF5] = { model = "s_m_m_nbxriverboatguards_01", hash = 0xDF00FFF5, outfits = 25 }, + [0x6A4E496F] = { model = "s_m_m_orpguard_01", hash = 0x6A4E496F, outfits = 20 }, + [0xB72270C2] = { model = "s_m_m_racrailguards_01", hash = 0xB72270C2, outfits = 20 }, + [0x6CC9E1B0] = { model = "s_m_m_racrailworker_01", hash = 0x6CC9E1B0, outfits = 30 }, + [0xEDF61C81] = { model = "s_m_m_rhdcowpoke_01", hash = 0xEDF61C81, outfits = 20 }, + [0xD819DA9D] = { model = "s_m_m_rhddealer_01", hash = 0xD819DA9D, outfits = 8 }, + [0xC8C55680] = { model = "s_m_m_sdcowpoke_01", hash = 0xC8C55680, outfits = 35 }, + [0x6C604B17] = { model = "s_m_m_sddealer_01", hash = 0x6C604B17, outfits = 8 }, + [0xE02AEA58] = { model = "s_m_m_sdticketseller_01", hash = 0xE02AEA58, outfits = 6 }, + [0x459610AE] = { model = "s_m_m_skpguard_01", hash = 0x459610AE, outfits = 20 }, + [0xC55DA177] = { model = "s_m_m_stgsailor_01", hash = 0xC55DA177, outfits = 20 }, + [0xFCF4C01C] = { model = "s_m_m_strcowpoke_01", hash = 0xFCF4C01C, outfits = 21 }, + [0x65E1C35F] = { model = "s_m_m_strdealer_01", hash = 0x65E1C35F, outfits = 8 }, + [0x18A9A8A5] = { model = "s_m_m_strlumberjack_01", hash = 0x18A9A8A5, outfits = 16 }, + [0x2AE5771F] = { model = "s_m_m_tailor_01", hash = 0x2AE5771F, outfits = 7 }, + [0xE9694F3F] = { model = "s_m_m_trainstationworker_01", hash = 0xE9694F3F, outfits = 28 }, + [0xB27C0016] = { model = "s_m_m_tumdeputies_01", hash = 0xB27C0016, outfits = 22 }, + [0x0633DF9F] = { model = "s_m_m_unibutchers_01", hash = 0x0633DF9F, outfits = 13 }, + [0xD1264F4D] = { model = "s_m_m_unitrainengineer_01", hash = 0xD1264F4D, outfits = 10 }, + [0x083BB629] = { model = "s_m_m_unitrainguards_01", hash = 0x083BB629, outfits = 21 }, + [0x96AB9699] = { model = "s_m_m_valbankguards_01", hash = 0x96AB9699, outfits = 10 }, + [0x4304BF5C] = { model = "s_m_m_valcowpoke_01", hash = 0x4304BF5C, outfits = 21 }, + [0x9BCF0362] = { model = "s_m_m_valdealer_01", hash = 0x9BCF0362, outfits = 8 }, + [0x398349E3] = { model = "s_m_m_vhtdealer_01", hash = 0x398349E3, outfits = 8 }, + [0x50152A20] = { model = "s_m_o_cktworker_01", hash = 0x50152A20, outfits = 8 }, + [0x802760F9] = { model = "s_m_y_army_01", hash = 0x802760F9, outfits = 43 }, + [0x111A98CA] = { model = "s_m_y_newspaperboy_01", hash = 0x111A98CA, outfits = 16 }, + [0x84F58DCD] = { model = "s_m_y_racrailworker_01", hash = 0x84F58DCD, outfits = 30 }, } -Peds.Law = { - -- [`s_m_m_ambientlawrural_01`] = createEntry("s_m_m_ambientlawrural_01"), +Peds.Gangs = { + [0x335F7F4B] = { model = "g_f_m_uniduster_01", hash = 0x335F7F4B, outfits = 3 }, + [0x1973FE45] = { model = "g_m_m_bountyhunters_01", hash = 0x1973FE45, outfits = 65 }, + [0xBB343A2C] = { model = "g_m_m_uniafricanamericangang_01", hash = 0xBB343A2C, outfits = 42 }, + [0x19486791] = { model = "g_m_m_unibanditos_01", hash = 0x19486791, outfits = 167 }, + [0x2B92A067] = { model = "g_m_m_unibraithwaites_01", hash = 0x2B92A067, outfits = 50 }, + [0x58277E70] = { model = "g_m_m_unibrontegoons_01", hash = 0x58277E70, outfits = 83 }, + [0x93A369F1] = { model = "g_m_m_unicornwallgoons_01", hash = 0x93A369F1, outfits = 86 }, + [0x3F094007] = { model = "g_m_m_unicriminals_01", hash = 0x3F094007, outfits = 150 }, + [0x8954549C] = { model = "g_m_m_unicriminals_02", hash = 0x8954549C, outfits = 60 }, + [0x14B7F44D] = { model = "g_m_m_uniduster_01", hash = 0x14B7F44D, outfits = 184 }, + [0x030250E2] = { model = "g_m_m_uniduster_02", hash = 0x030250E2, outfits = 56 }, + [0xB4163307] = { model = "g_m_m_uniduster_03", hash = 0xB4163307, outfits = 37 }, + [0xD2846FE3] = { model = "g_m_m_uniduster_04", hash = 0xD2846FE3, outfits = 9 }, + [0x4FAEEA3A] = { model = "g_m_m_uniduster_05", hash = 0x4FAEEA3A, outfits = 26 }, + [0x15EB41F6] = { model = "g_m_m_unigrays_01", hash = 0x15EB41F6, outfits = 51 }, + [0x07A1A563] = { model = "g_m_m_unigrays_02", hash = 0x07A1A563, outfits = 30 }, + [0x15AF635E] = { model = "g_m_m_uniinbred_01", hash = 0x15AF635E, outfits = 131 }, + [0x5B44EF58] = { model = "g_m_m_unilangstonboys_01", hash = 0x5B44EF58, outfits = 35 }, + [0x0FD91413] = { model = "g_m_m_unimicahgoons_01", hash = 0x0FD91413, outfits = 31 }, + [0xAB3EBD92] = { model = "g_m_m_unimountainmen_01", hash = 0xAB3EBD92, outfits = 129 }, + [0xBF03A565] = { model = "g_m_m_uniranchers_01", hash = 0xBF03A565, outfits = 87 }, + [0xE0165EA0] = { model = "g_m_m_uniswamp_01", hash = 0xE0165EA0, outfits = 43 }, + [0xEAD13D7C] = { model = "g_m_o_uniexconfeds_01", hash = 0xEAD13D7C, outfits = 93 }, + [0xDA82E29B] = { model = "g_m_y_uniexconfeds_01", hash = 0xDA82E29B, outfits = 124 }, + [0xC631B9F9] = { model = "g_m_y_uniexconfeds_02", hash = 0xC631B9F9, outfits = 33 }, } -Peds.Gangs = { - -- [`g_m_m_unibanditos_01`] = createEntry("g_m_m_unibanditos_01"), +Peds.Law = { + [0xB5771CFC] = { model = "a_m_m_armdeputyresident_01", hash = 0xB5771CFC, outfits = 56 }, + [0x9C00E2A0] = { model = "a_m_m_asbdeputyresident_01", hash = 0x9C00E2A0, outfits = 21 }, + [0x0B5B9D98] = { model = "a_m_m_rhddeputyresident_01", hash = 0x0B5B9D98, outfits = 23 }, + [0xF0379DF1] = { model = "a_m_m_strdeputyresident_01", hash = 0xF0379DF1, outfits = 21 }, + [0x639CD8CD] = { model = "a_m_m_valdeputyresident_01", hash = 0x639CD8CD, outfits = 30 }, + [0x840FA9CD] = { model = "msp_trelawny1_males_01", hash = 0x840FA9CD, outfits = 7 }, + [0xEEF6045E] = { model = "re_outlawlooter_males_01", hash = 0xEEF6045E, outfits = 24 }, + [0x2BFFE26F] = { model = "re_policechase_males_01", hash = 0x2BFFE26F, outfits = 4 }, + [0x8F45DDEB] = { model = "s_m_m_ambientblwpolice_01", hash = 0x8F45DDEB, outfits = 43 }, + [0x6D22857B] = { model = "s_m_m_ambientlawrural_01", hash = 0x6D22857B, outfits = 95 }, + [0xA9AD1A7D] = { model = "s_m_m_ambientsdpolice_01", hash = 0xA9AD1A7D, outfits = 44 }, + [0xE9F4AB20] = { model = "s_m_m_dispatchlawrural_01", hash = 0xE9F4AB20, outfits = 65 }, + [0x7E16EC8D] = { model = "s_m_m_dispatchleaderpolice_01", hash = 0x7E16EC8D, outfits = 20 }, + [0xFFBABBF9] = { model = "s_m_m_dispatchpolice_01", hash = 0xFFBABBF9, outfits = 40 }, + [0x3141A535] = { model = "s_m_m_marshallsrural_01", hash = 0x3141A535, outfits = 33 }, + [0x2BFB9F8F] = { model = "s_m_m_pinlaw_01", hash = 0x2BFB9F8F, outfits = 55 }, + [0xF4B4127A] = { model = "s_m_m_valdeputy_01", hash = 0xF4B4127A, outfits = 20 }, } -Peds.Shopkeepers = { - -- [`u_m_m_sdtrapper_01`] = createEntry("u_m_m_sdtrapper_01"), +Peds.Multiplayer = { + [0xF5C1611E] = { model = "mp_male", hash = 0xF5C1611E, outfits = 138 }, + [0xA7AF20C0] = { model = "mp_female", hash = 0xA7AF20C0, outfits = 120 }, + [0x9775AA11] = { model = "mp_asntrk_elysianpool_males_01", hash = 0x9775AA11, outfits = 6 }, + [0xA8D76FEE] = { model = "mp_asntrk_grizzlieswest_males_01", hash = 0xA8D76FEE, outfits = 6 }, + [0x6F3BC4E1] = { model = "mp_asntrk_hagenorchard_males_01", hash = 0x6F3BC4E1, outfits = 6 }, + [0xE9C4EF73] = { model = "mp_asntrk_isabella_males_01", hash = 0xE9C4EF73, outfits = 6 }, + [0x61227303] = { model = "mp_asntrk_talltrees_males_01", hash = 0x61227303, outfits = 6 }, + [0xE30D07F8] = { model = "mp_asn_benedictpoint_females_01", hash = 0xE30D07F8, outfits = 1 }, + [0x8F4385F4] = { model = "mp_asn_benedictpoint_males_01", hash = 0x8F4385F4, outfits = 6 }, + [0x9A33030D] = { model = "mp_asn_blackwater_males_01", hash = 0x9A33030D, outfits = 6 }, + [0xFF2ED4F7] = { model = "mp_asn_braithwaitemanor_males_01", hash = 0xFF2ED4F7, outfits = 2 }, + [0xA6EFA47E] = { model = "mp_asn_braithwaitemanor_males_02", hash = 0xA6EFA47E, outfits = 4 }, + [0xA1A899F0] = { model = "mp_asn_braithwaitemanor_males_03", hash = 0xA1A899F0, outfits = 5 }, + [0x157604BC] = { model = "mp_asn_civilwarfort_males_01", hash = 0x157604BC, outfits = 6 }, + [0x3A31D8F5] = { model = "mp_asn_gaptoothbreach_males_01", hash = 0x3A31D8F5, outfits = 6 }, + [0x83DD3196] = { model = "mp_asn_pikesbasin_males_01", hash = 0x83DD3196, outfits = 5 }, + [0x75D3315F] = { model = "mp_asn_sdpolicestation_males_01", hash = 0x75D3315F, outfits = 6 }, + [0xA04152A6] = { model = "mp_asn_sdwedding_females_01", hash = 0xA04152A6, outfits = 3 }, + [0xEB1EA62E] = { model = "mp_asn_sdwedding_males_01", hash = 0xEB1EA62E, outfits = 5 }, + [0x4B40DFF1] = { model = "mp_asn_shadybelle_females_01", hash = 0x4B40DFF1, outfits = 1 }, + [0xBAD040F0] = { model = "mp_asn_stillwater_males_01", hash = 0xBAD040F0, outfits = 6 }, + [0x586000CF] = { model = "MP_A_C_HORSECORPSE_01", hash = 0x586000CF, outfits = 16 }, + [0xEE6C00F6] = { model = "mp_a_f_m_cardgameplayers_01", hash = 0xEE6C00F6, outfits = 40 }, + [0x37DF19AF] = { model = "MP_A_F_M_UniCorpse_01", hash = 0x37DF19AF, outfits = 44 }, + [0xC7FDE9D0] = { model = "mp_a_m_m_laboruprisers_01", hash = 0xC7FDE9D0, outfits = 53 }, + [0x82868F58] = { model = "MP_A_M_M_UniCorpse_01", hash = 0x82868F58, outfits = 142 }, + [0x79E64F11] = { model = "mp_campdef_bluewater_females_01", hash = 0x79E64F11, outfits = 1 }, + [0xD26B0098] = { model = "mp_campdef_bluewater_males_01", hash = 0xD26B0098, outfits = 1 }, + [0x82228527] = { model = "mp_campdef_chollasprings_females_01", hash = 0x82228527, outfits = 1 }, + [0xB128F981] = { model = "mp_campdef_chollasprings_males_01", hash = 0xB128F981, outfits = 2 }, + [0x91ACA5B0] = { model = "mp_campdef_eastnewhanover_females_01", hash = 0x91ACA5B0, outfits = 1 }, + [0x4F356F45] = { model = "mp_campdef_eastnewhanover_males_01", hash = 0x4F356F45, outfits = 1 }, + [0xF1C2D3BB] = { model = "mp_campdef_gaptoothbreach_females_01", hash = 0xF1C2D3BB, outfits = 1 }, + [0xAAD4292A] = { model = "mp_campdef_gaptoothbreach_males_01", hash = 0xAAD4292A, outfits = 3 }, + [0x219743D5] = { model = "mp_campdef_gaptoothridge_females_01", hash = 0x219743D5, outfits = 1 }, + [0xB5FEE612] = { model = "mp_campdef_gaptoothridge_males_01", hash = 0xB5FEE612, outfits = 1 }, + [0xC1B6341E] = { model = "mp_campdef_greatplains_males_01", hash = 0xC1B6341E, outfits = 2 }, + [0x543F0860] = { model = "mp_campdef_grizzlies_males_01", hash = 0x543F0860, outfits = 2 }, + [0x476306CA] = { model = "mp_campdef_heartlands1_males_01", hash = 0x476306CA, outfits = 2 }, + [0xCF202B72] = { model = "mp_campdef_heartlands2_females_01", hash = 0xCF202B72, outfits = 1 }, + [0x3B46C480] = { model = "mp_campdef_heartlands2_males_01", hash = 0x3B46C480, outfits = 2 }, + [0x4166D3EF] = { model = "mp_campdef_hennigans_females_01", hash = 0x4166D3EF, outfits = 1 }, + [0x62593BC8] = { model = "mp_campdef_hennigans_males_01", hash = 0x62593BC8, outfits = 1 }, + [0xF5A25A7E] = { model = "mp_campdef_littlecreek_females_01", hash = 0xF5A25A7E, outfits = 1 }, + [0xF4CAA01F] = { model = "mp_campdef_littlecreek_males_01", hash = 0xF4CAA01F, outfits = 1 }, + [0xE572A054] = { model = "mp_campdef_radleyspasture_females_01", hash = 0xE572A054, outfits = 1 }, + [0x4A465245] = { model = "mp_campdef_radleyspasture_males_01", hash = 0x4A465245, outfits = 1 }, + [0xC4DB3101] = { model = "mp_campdef_riobravo_females_01", hash = 0xC4DB3101, outfits = 1 }, + [0x5CE15A39] = { model = "mp_campdef_riobravo_males_01", hash = 0x5CE15A39, outfits = 1 }, + [0xEA68B402] = { model = "mp_campdef_roanoke_females_01", hash = 0xEA68B402, outfits = 1 }, + [0x24673B50] = { model = "mp_campdef_roanoke_males_01", hash = 0x24673B50, outfits = 1 }, + [0x5608A222] = { model = "mp_campdef_talltrees_females_01", hash = 0x5608A222, outfits = 1 }, + [0xD429EEF9] = { model = "mp_campdef_talltrees_males_01", hash = 0xD429EEF9, outfits = 1 }, + [0xB05F95C2] = { model = "mp_campdef_tworocks_females_01", hash = 0xB05F95C2, outfits = 2 }, + [0x20D9D1FF] = { model = "mp_chu_kid_armadillo_males_01", hash = 0x20D9D1FF, outfits = 4 }, + [0xD081C01E] = { model = "mp_chu_kid_diabloridge_males_01", hash = 0xD081C01E, outfits = 4 }, + [0xC45D87AE] = { model = "mp_chu_kid_emrstation_males_01", hash = 0xC45D87AE, outfits = 4 }, + [0xD5B76DF0] = { model = "mp_chu_kid_greatplains2_males_01", hash = 0xD5B76DF0, outfits = 4 }, + [0xDBB0CB10] = { model = "mp_chu_kid_greatplains_males_01", hash = 0xDBB0CB10, outfits = 4 }, + [0x4E7A9BCF] = { model = "mp_chu_kid_heartlands_males_01", hash = 0x4E7A9BCF, outfits = 4 }, + [0xBF8EE294] = { model = "mp_chu_kid_lagras_males_01", hash = 0xBF8EE294, outfits = 4 }, + [0x26D5E34F] = { model = "mp_chu_kid_lemoyne_females_01", hash = 0x26D5E34F, outfits = 2 }, + [0x24E340FC] = { model = "mp_chu_kid_lemoyne_males_01", hash = 0x24E340FC, outfits = 2 }, + [0xCE06BE54] = { model = "mp_chu_kid_recipient_males_01", hash = 0xCE06BE54, outfits = 22 }, + [0x562372BD] = { model = "mp_chu_kid_rhodes_males_01", hash = 0x562372BD, outfits = 4 }, + [0xF7B029BE] = { model = "mp_chu_kid_saintdenis_females_01", hash = 0xF7B029BE, outfits = 1 }, + [0xF21F12DE] = { model = "mp_chu_kid_saintdenis_males_01", hash = 0xF21F12DE, outfits = 3 }, + [0xBB574D98] = { model = "mp_chu_kid_scarlettmeadows_males_01", hash = 0xBB574D98, outfits = 4 }, + [0x199209F3] = { model = "mp_chu_kid_tumbleweed_males_01", hash = 0x199209F3, outfits = 4 }, + [0xB59A184C] = { model = "mp_chu_kid_valentine_males_01", hash = 0xB59A184C, outfits = 4 }, + [0x91359C49] = { model = "mp_chu_rob_ambarino_males_01", hash = 0x91359C49, outfits = 3 }, + [0xE8B7EB0E] = { model = "mp_chu_rob_annesburg_males_01", hash = 0xE8B7EB0E, outfits = 4 }, + [0xED566DA8] = { model = "mp_chu_rob_benedictpoint_females_01", hash = 0xED566DA8, outfits = 2 }, + [0x2361B4FF] = { model = "mp_chu_rob_benedictpoint_males_01", hash = 0x2361B4FF, outfits = 2 }, + [0x4DF62143] = { model = "mp_chu_rob_blackwater_males_01", hash = 0x4DF62143, outfits = 4 }, + [0xD1DD5373] = { model = "mp_chu_rob_caligahall_males_01", hash = 0xD1DD5373, outfits = 4 }, + [0xE910B9B1] = { model = "mp_chu_rob_coronado_males_01", hash = 0xE910B9B1, outfits = 4 }, + [0xEEB13746] = { model = "mp_chu_rob_cumberland_males_01", hash = 0xEEB13746, outfits = 4 }, + [0x3D8A8881] = { model = "mp_chu_rob_fortmercer_females_01", hash = 0x3D8A8881, outfits = 2 }, + [0xA3C40220] = { model = "mp_chu_rob_fortmercer_males_01", hash = 0xA3C40220, outfits = 2 }, + [0x2B7FB829] = { model = "mp_chu_rob_greenhollow_males_01", hash = 0x2B7FB829, outfits = 4 }, + [0x900768E4] = { model = "mp_chu_rob_macfarlanes_females_01", hash = 0x900768E4, outfits = 2 }, + [0x0C11A638] = { model = "mp_chu_rob_macfarlanes_males_01", hash = 0x0C11A638, outfits = 2 }, + [0xA23C0877] = { model = "mp_chu_rob_macleans_males_01", hash = 0xA23C0877, outfits = 4 }, + [0x71F63119] = { model = "mp_chu_rob_millesani_males_01", hash = 0x71F63119, outfits = 4 }, + [0xA33F8565] = { model = "mp_chu_rob_montanariver_males_01", hash = 0xA33F8565, outfits = 4 }, + [0xAE81DF28] = { model = "mp_chu_rob_paintedsky_males_01", hash = 0xAE81DF28, outfits = 4 }, + [0x26141D84] = { model = "mp_chu_rob_rathskeller_males_01", hash = 0x26141D84, outfits = 4 }, + [0xB5796996] = { model = "mp_chu_rob_recipient_males_01", hash = 0xB5796996, outfits = 33 }, + [0x67C9491C] = { model = "mp_chu_rob_rhodes_males_01", hash = 0x67C9491C, outfits = 4 }, + [0x37AA104A] = { model = "mp_chu_rob_strawberry_males_01", hash = 0x37AA104A, outfits = 4 }, + [0xDEC0EF74] = { model = "mp_clay", hash = 0xDEC0EF74, outfits = 1 }, + [0x36C085D8] = { model = "mp_convoy_recipient_females_01", hash = 0x36C085D8, outfits = 2 }, + [0xE5ED64CE] = { model = "mp_convoy_recipient_males_01", hash = 0xE5ED64CE, outfits = 19 }, + [0xD2AFC802] = { model = "mp_de_u_f_m_bigvalley_01", hash = 0xD2AFC802, outfits = 1 }, + [0xEB7C292D] = { model = "mp_de_u_f_m_bluewatermarsh_01", hash = 0xEB7C292D, outfits = 1 }, + [0xC615E4DE] = { model = "mp_de_u_f_m_braithwaite_01", hash = 0xC615E4DE, outfits = 2 }, + [0xFF7134DC] = { model = "mp_de_u_f_m_doverhill_01", hash = 0xFF7134DC, outfits = 1 }, + [0xDD895162] = { model = "mp_de_u_f_m_greatplains_01", hash = 0xDD895162, outfits = 1 }, + [0xCB42A78F] = { model = "mp_de_u_f_m_hangingrock_01", hash = 0xCB42A78F, outfits = 1 }, + [0x410D82BF] = { model = "mp_de_u_f_m_heartlands_01", hash = 0x410D82BF, outfits = 1 }, + [0x8841B9D2] = { model = "mp_de_u_f_m_hennigansstead_01", hash = 0x8841B9D2, outfits = 2 }, + [0xC50A2A9C] = { model = "mp_de_u_f_m_silentstead_01", hash = 0xC50A2A9C, outfits = 1 }, + [0xE079768D] = { model = "mp_de_u_m_m_aurorabasin_01", hash = 0xE079768D, outfits = 1 }, + [0x1A06F260] = { model = "mp_de_u_m_m_barrowlagoon_01", hash = 0x1A06F260, outfits = 1 }, + [0x30F2FBC2] = { model = "mp_de_u_m_m_bigvalleygraves_01", hash = 0x30F2FBC2, outfits = 1 }, + [0x54666FF4] = { model = "mp_de_u_m_m_centralunionrr_01", hash = 0x54666FF4, outfits = 1 }, + [0x6965178B] = { model = "mp_de_u_m_m_pleasance_01", hash = 0x6965178B, outfits = 1 }, + [0x7C77D19F] = { model = "mp_de_u_m_m_rileyscharge_01", hash = 0x7C77D19F, outfits = 1 }, + [0x7AA6CC47] = { model = "mp_de_u_m_m_vanhorn_01", hash = 0x7AA6CC47, outfits = 1 }, + [0x196B59E0] = { model = "mp_de_u_m_m_westernhomestead_01", hash = 0x196B59E0, outfits = 1 }, + [0x1029BAEF] = { model = "mp_dr_u_f_m_bayougatorfood_01", hash = 0x1029BAEF, outfits = 1 }, + [0x803C4357] = { model = "mp_dr_u_f_m_bigvalleycave_01", hash = 0x803C4357, outfits = 1 }, + [0xE782AB5E] = { model = "mp_dr_u_f_m_bigvalleycliff_01", hash = 0xE782AB5E, outfits = 1 }, + [0x5A8DED76] = { model = "mp_dr_u_f_m_bluewaterkidnap_01", hash = 0x5A8DED76, outfits = 1 }, + [0xA3696C2E] = { model = "mp_dr_u_f_m_colterbandits_01", hash = 0xA3696C2E, outfits = 1 }, + [0x911B4792] = { model = "mp_dr_u_f_m_colterbandits_02", hash = 0x911B4792, outfits = 1 }, + [0xB9E9E8B1] = { model = "mp_dr_u_f_m_missingfisherman_01", hash = 0xB9E9E8B1, outfits = 1 }, + [0x87AB8435] = { model = "mp_dr_u_f_m_missingfisherman_02", hash = 0x87AB8435, outfits = 1 }, + [0xA4C6684C] = { model = "mp_dr_u_f_m_mistakenbounties_01", hash = 0xA4C6684C, outfits = 1 }, + [0x8C3740DD] = { model = "mp_dr_u_f_m_plaguetown_01", hash = 0x8C3740DD, outfits = 1 }, + [0xEF81CFCA] = { model = "mp_dr_u_f_m_quakerscove_01", hash = 0xEF81CFCA, outfits = 1 }, + [0xFD486B57] = { model = "mp_dr_u_f_m_quakerscove_02", hash = 0xFD486B57, outfits = 1 }, + [0x20A8A154] = { model = "mp_dr_u_f_m_sdgraveyard_01", hash = 0x20A8A154, outfits = 1 }, + [0xC7DE347E] = { model = "mp_dr_u_m_m_bigvalleycave_01", hash = 0xC7DE347E, outfits = 1 }, + [0xD9E86551] = { model = "mp_dr_u_m_m_bigvalleycliff_01", hash = 0xD9E86551, outfits = 1 }, + [0xA445B5D7] = { model = "mp_dr_u_m_m_bluewaterkidnap_01", hash = 0xA445B5D7, outfits = 1 }, + [0x23135A75] = { model = "mp_dr_u_m_m_canoeescape_01", hash = 0x23135A75, outfits = 1 }, + [0x322BCA91] = { model = "mp_dr_u_m_m_hwyrobbery_01", hash = 0x322BCA91, outfits = 1 }, + [0x103F4CF2] = { model = "mp_dr_u_m_m_mistakenbounties_01", hash = 0x103F4CF2, outfits = 1 }, + [0xD63E91BF] = { model = "mp_dr_u_m_m_pikesbasin_01", hash = 0xD63E91BF, outfits = 1 }, + [0xF2CDCADD] = { model = "mp_dr_u_m_m_pikesbasin_02", hash = 0xF2CDCADD, outfits = 1 }, + [0x59D8AB63] = { model = "mp_dr_u_m_m_plaguetown_01", hash = 0x59D8AB63, outfits = 1 }, + [0x9A8AF99B] = { model = "mp_dr_u_m_m_roanokestandoff_01", hash = 0x9A8AF99B, outfits = 1 }, + [0xE80A6258] = { model = "mp_dr_u_m_m_sdgraveyard_01", hash = 0xE80A6258, outfits = 1 }, + [0xC33224A7] = { model = "mp_dr_u_m_m_sdmugging_01", hash = 0xC33224A7, outfits = 1 }, + [0x957FC943] = { model = "mp_dr_u_m_m_sdmugging_02", hash = 0x957FC943, outfits = 1 }, + [0xAA266E1C] = { model = "mp_freeroam_tut_females_01", hash = 0xAA266E1C, outfits = 5 }, + [0x217A0594] = { model = "mp_freeroam_tut_males_01", hash = 0x217A0594, outfits = 8 }, + [0xC36F9B8C] = { model = "mp_gunvoutd2_males_01", hash = 0xC36F9B8C, outfits = 11 }, + [0x3D6054E3] = { model = "mp_gunvoutd3_bht_01", hash = 0x3D6054E3, outfits = 2 }, + [0xAD674654] = { model = "mp_gunvoutd3_males_01", hash = 0xAD674654, outfits = 3 }, + [0x556ADA44] = { model = "mp_g_f_m_laperlegang_01", hash = 0x556ADA44, outfits = 26 }, + [0x64F76F7E] = { model = "mp_g_f_m_laperlevips_01", hash = 0x64F76F7E, outfits = 13 }, + [0xF7A82771] = { model = "mp_g_f_m_owlhootfamily_01", hash = 0xF7A82771, outfits = 17 }, + [0x9E00472E] = { model = "mp_g_m_m_armoredjuggernauts_01", hash = 0x9E00472E, outfits = 12 }, + [0xC6BEFCC7] = { model = "mp_g_m_m_bountyhunters_01", hash = 0xC6BEFCC7, outfits = 50 }, + [0x8496557A] = { model = "mp_g_m_m_owlhootfamily_01", hash = 0x8496557A, outfits = 25 }, + [0xC848BCB9] = { model = "mp_g_m_m_redbengang_01", hash = 0xC848BCB9, outfits = 38 }, + [0xBC696111] = { model = "mp_g_m_m_uniafricanamericangang_01", hash = 0xBC696111, outfits = 42 }, + [0xD9D85AA4] = { model = "mp_g_m_m_unibanditos_01", hash = 0xD9D85AA4, outfits = 141 }, + [0xC0A5F6FB] = { model = "mp_g_m_m_unibraithwaites_01", hash = 0xC0A5F6FB, outfits = 40 }, + [0x079D07F0] = { model = "mp_g_m_m_unibrontegoons_01", hash = 0x079D07F0, outfits = 55 }, + [0xB6A13AB3] = { model = "mp_g_m_m_unicornwallgoons_01", hash = 0xB6A13AB3, outfits = 60 }, + [0xACB79D83] = { model = "mp_g_m_m_unicriminals_01", hash = 0xACB79D83, outfits = 88 }, + [0xFE0F4031] = { model = "mp_g_m_m_unicriminals_02", hash = 0xFE0F4031, outfits = 67 }, + [0x6B5CA98B] = { model = "mp_g_m_m_uniduster_01", hash = 0x6B5CA98B, outfits = 111 }, + [0x59528577] = { model = "mp_g_m_m_uniduster_02", hash = 0x59528577, outfits = 53 }, + [0x871160F4] = { model = "mp_g_m_m_uniduster_03", hash = 0x871160F4, outfits = 30 }, + [0x711F7A23] = { model = "mp_g_m_m_unigrays_01", hash = 0x711F7A23, outfits = 45 }, + [0x013268A4] = { model = "mp_g_m_m_uniinbred_01", hash = 0x013268A4, outfits = 67 }, + [0xD42E4CA3] = { model = "mp_g_m_m_unilangstonboys_01", hash = 0xD42E4CA3, outfits = 35 }, + [0xAEB6BF6F] = { model = "mp_g_m_m_unimountainmen_01", hash = 0xAEB6BF6F, outfits = 80 }, + [0x90E48CB5] = { model = "mp_g_m_m_uniranchers_01", hash = 0x90E48CB5, outfits = 61 }, + [0xA45E623D] = { model = "mp_g_m_m_uniswamp_01", hash = 0xA45E623D, outfits = 30 }, + [0x17F4271B] = { model = "mp_g_m_o_uniexconfeds_01", hash = 0x17F4271B, outfits = 64 }, + [0x66AB70C0] = { model = "mp_g_m_y_uniexconfeds_01", hash = 0x66AB70C0, outfits = 63 }, + [0x74A42620] = { model = "mp_horse_owlhootvictim_01", hash = 0x74A42620, outfits = 2 }, + [0xA4805CEF] = { model = "mp_intercept_recipient_females_01", hash = 0xA4805CEF, outfits = 8 }, + [0x4FFF04AC] = { model = "mp_intercept_recipient_males_01", hash = 0x4FFF04AC, outfits = 29 }, + [0xC7897D53] = { model = "mp_intro_females_01", hash = 0xC7897D53, outfits = 7 }, + [0x1AC64C7E] = { model = "mp_intro_males_01", hash = 0x1AC64C7E, outfits = 15 }, + [0x9CF21703] = { model = "mp_jailbreak_males_01", hash = 0x9CF21703, outfits = 4 }, + [0xD5A51ED9] = { model = "mp_jailbreak_recipient_males_01", hash = 0xD5A51ED9, outfits = 6 }, + [0x1A94D3F2] = { model = "mp_lbt_m3_males_01", hash = 0x1A94D3F2, outfits = 8 }, + [0xB2CBE1E8] = { model = "mp_lbt_m6_females_01", hash = 0xB2CBE1E8, outfits = 2 }, + [0xF08C75E6] = { model = "mp_lbt_m6_males_01", hash = 0xF08C75E6, outfits = 5 }, + [0xD304CBEC] = { model = "mp_lbt_m7_males_01", hash = 0xD304CBEC, outfits = 8 }, + [0x265C2EDE] = { model = "mp_oth_recipient_males_01", hash = 0x265C2EDE, outfits = 5 }, + [0xE1E49865] = { model = "mp_outlaw1_males_01", hash = 0xE1E49865, outfits = 6 }, + [0x2FDCB16A] = { model = "mp_outlaw2_males_01", hash = 0x2FDCB16A, outfits = 1 }, + [0x7CCE73C7] = { model = "mp_post_multipackage_females_01", hash = 0x7CCE73C7, outfits = 10 }, + [0x9BA2E621] = { model = "mp_post_multipackage_males_01", hash = 0x9BA2E621, outfits = 34 }, + [0xF6846F69] = { model = "mp_post_multirelay_females_01", hash = 0xF6846F69, outfits = 5 }, + [0x49302DBB] = { model = "mp_post_multirelay_males_01", hash = 0x49302DBB, outfits = 20 }, + [0xBAC09F5F] = { model = "mp_post_relay_females_01", hash = 0xBAC09F5F, outfits = 1 }, + [0x6D8D4CA6] = { model = "mp_post_relay_males_01", hash = 0x6D8D4CA6, outfits = 23 }, + [0x2C7D2748] = { model = "mp_predator", hash = 0x2C7D2748, outfits = 8 }, + [0x9BCC5B80] = { model = "mp_prsn_asn_males_01", hash = 0x9BCC5B80, outfits = 14 }, + [0xD050B3FD] = { model = "mp_recover_recipient_females_01", hash = 0xD050B3FD, outfits = 1 }, + [0xFEE21E87] = { model = "mp_recover_recipient_males_01", hash = 0xFEE21E87, outfits = 5 }, + [0x8A118776] = { model = "mp_repoboat_recipient_females_01", hash = 0x8A118776, outfits = 2 }, + [0x817E92C2] = { model = "mp_repoboat_recipient_males_01", hash = 0x817E92C2, outfits = 5 }, + [0x4852F2D1] = { model = "mp_repo_recipient_females_01", hash = 0x4852F2D1, outfits = 2 }, + [0x93A9A5FC] = { model = "mp_repo_recipient_males_01", hash = 0x93A9A5FC, outfits = 12 }, + [0xEED4DB96] = { model = "mp_rescue_bottletree_females_01", hash = 0xEED4DB96, outfits = 1 }, + [0x5530F95C] = { model = "mp_rescue_bottletree_males_01", hash = 0x5530F95C, outfits = 2 }, + [0x90008F71] = { model = "mp_rescue_colter_males_01", hash = 0x90008F71, outfits = 1 }, + [0x46FD1150] = { model = "mp_rescue_cratersacrifice_males_01", hash = 0x46FD1150, outfits = 2 }, + [0x2A503D51] = { model = "mp_rescue_heartlands_males_01", hash = 0x2A503D51, outfits = 1 }, + [0xBEA076E0] = { model = "mp_rescue_loftkidnap_males_01", hash = 0xBEA076E0, outfits = 1 }, + [0x8CAC82BE] = { model = "mp_rescue_lonniesshack_males_01", hash = 0x8CAC82BE, outfits = 3 }, + [0x36234B83] = { model = "mp_rescue_moonstone_males_01", hash = 0x36234B83, outfits = 1 }, + [0x74B18E0F] = { model = "mp_rescue_mtnmanshack_males_01", hash = 0x74B18E0F, outfits = 3 }, + [0xE63DF429] = { model = "mp_rescue_recipient_females_01", hash = 0xE63DF429, outfits = 1 }, + [0x1738A70F] = { model = "mp_rescue_recipient_males_01", hash = 0x1738A70F, outfits = 7 }, + [0xDA91092F] = { model = "mp_rescue_rivalshack_males_01", hash = 0xDA91092F, outfits = 2 }, + [0x10482CCC] = { model = "mp_rescue_scarlettmeadows_males_01", hash = 0x10482CCC, outfits = 1 }, + [0x01AC6CA3] = { model = "mp_rescue_sddogfight_females_01", hash = 0x01AC6CA3, outfits = 1 }, + [0x80AB3DA0] = { model = "mp_rescue_sddogfight_males_01", hash = 0x80AB3DA0, outfits = 1 }, + [0x89C49271] = { model = "mp_resupply_recipient_females_01", hash = 0x89C49271, outfits = 7 }, + [0x028C5916] = { model = "mp_resupply_recipient_males_01", hash = 0x028C5916, outfits = 11 }, + [0x340E6CFB] = { model = "mp_revenge1_males_01", hash = 0x340E6CFB, outfits = 3 }, + [0x89330281] = { model = "mp_re_animalattack_females_01", hash = 0x89330281, outfits = 4 }, + [0x2C1694A4] = { model = "mp_re_animalattack_males_01", hash = 0x2C1694A4, outfits = 4 }, + [0x9D90BC3C] = { model = "mp_re_duel_females_01", hash = 0x9D90BC3C, outfits = 4 }, + [0x34F02197] = { model = "mp_re_duel_males_01", hash = 0x34F02197, outfits = 4 }, + [0x7C6C7C1D] = { model = "mp_re_graverobber_females_01", hash = 0x7C6C7C1D, outfits = 1 }, + [0x55B73907] = { model = "mp_re_graverobber_males_01", hash = 0x55B73907, outfits = 1 }, + [0x263B0853] = { model = "mp_re_hobodog_females_01", hash = 0x263B0853, outfits = 2 }, + [0x401C6EC1] = { model = "mp_re_hobodog_males_01", hash = 0x401C6EC1, outfits = 4 }, + [0x45178DBF] = { model = "mp_re_kidnapped_females_01", hash = 0x45178DBF, outfits = 6 }, + [0x5E5607C3] = { model = "mp_re_kidnapped_males_01", hash = 0x5E5607C3, outfits = 6 }, + [0x5730F05E] = { model = "mp_re_photography_females_01", hash = 0x5730F05E, outfits = 2 }, + [0x65D60DA8] = { model = "mp_re_photography_females_02", hash = 0x65D60DA8, outfits = 2 }, + [0x8AE666DA] = { model = "mp_re_photography_males_01", hash = 0x8AE666DA, outfits = 2 }, + [0x98D1F6B3] = { model = "mp_re_rivalcollector_males_01", hash = 0x98D1F6B3, outfits = 20 }, + [0xFA0BF8E9] = { model = "mp_re_runawaywagon_females_01", hash = 0xFA0BF8E9, outfits = 3 }, + [0xD99C62B9] = { model = "mp_re_runawaywagon_males_01", hash = 0xD99C62B9, outfits = 3 }, + [0x3EB8315D] = { model = "mp_re_treasurehunter_females_01", hash = 0x3EB8315D, outfits = 2 }, + [0x36754ABE] = { model = "mp_re_treasurehunter_males_01", hash = 0x36754ABE, outfits = 2 }, + [0x40C07582] = { model = "mp_re_wildman_males_01", hash = 0x40C07582, outfits = 1 }, + [0x6D8072BA] = { model = "mp_stealboat_recipient_males_01", hash = 0x6D8072BA, outfits = 10 }, + [0x6BF26D7E] = { model = "mp_stealhorse_recipient_males_01", hash = 0x6BF26D7E, outfits = 29 }, + [0x05BC439E] = { model = "mp_stealwagon_recipient_males_01", hash = 0x05BC439E, outfits = 22 }, + [0x0C890518] = { model = "mp_s_m_m_cornwallguard_01", hash = 0x0C890518, outfits = 32 }, + [0xAD87E95D] = { model = "mp_s_m_m_pinlaw_01", hash = 0xAD87E95D, outfits = 40 }, + [0xE82A9EF5] = { model = "mp_tattoo_female", hash = 0xE82A9EF5, outfits = 1 }, + [0x02EC2BF7] = { model = "mp_tattoo_male", hash = 0x02EC2BF7, outfits = 1 }, + [0x30B5B617] = { model = "mp_u_f_m_bountytarget_001", hash = 0x30B5B617, outfits = 2 }, + [0x8AE66A77] = { model = "mp_u_f_m_bountytarget_002", hash = 0x8AE66A77, outfits = 2 }, + [0x53507B4C] = { model = "mp_u_f_m_bountytarget_003", hash = 0x53507B4C, outfits = 2 }, + [0x241D9CE7] = { model = "mp_u_f_m_bountytarget_004", hash = 0x241D9CE7, outfits = 2 }, + [0xE5D02049] = { model = "mp_u_f_m_bountytarget_005", hash = 0xE5D02049, outfits = 2 }, + [0x389945DE] = { model = "mp_u_f_m_bountytarget_006", hash = 0x389945DE, outfits = 2 }, + [0x06F56293] = { model = "mp_u_f_m_bountytarget_007", hash = 0x06F56293, outfits = 2 }, + [0xD8E38670] = { model = "mp_u_f_m_bountytarget_008", hash = 0xD8E38670, outfits = 2 }, + [0xABA92BFC] = { model = "mp_u_f_m_bountytarget_009", hash = 0xABA92BFC, outfits = 2 }, + [0x1C1C1174] = { model = "mp_u_f_m_bountytarget_010", hash = 0x1C1C1174, outfits = 2 }, + [0x2DE1B4FF] = { model = "mp_u_f_m_bountytarget_011", hash = 0x2DE1B4FF, outfits = 2 }, + [0x3F97D86B] = { model = "MP_U_F_M_BOUNTYTARGET_012", hash = 0x3F97D86B, outfits = 1 }, + [0x4F947864] = { model = "mp_u_f_m_bountytarget_013", hash = 0x4F947864, outfits = 2 }, + [0xD56E8422] = { model = "mp_u_f_m_bountytarget_014", hash = 0xD56E8422, outfits = 2 }, + [0x0EF547D0] = { model = "mp_u_f_m_gunslinger3_rifleman_02", hash = 0x0EF547D0, outfits = 1 }, + [0xC9E8C3C3] = { model = "mp_u_f_m_gunslinger3_sharpshooter_01", hash = 0xC9E8C3C3, outfits = 1 }, + [0x96A8968C] = { model = "mp_u_f_m_laperlevipmasked_01", hash = 0x96A8968C, outfits = 1 }, + [0xCE6085F7] = { model = "mp_u_f_m_laperlevipmasked_02", hash = 0xCE6085F7, outfits = 1 }, + [0xDFA9A889] = { model = "mp_u_f_m_laperlevipmasked_03", hash = 0xDFA9A889, outfits = 1 }, + [0xA3F030F3] = { model = "mp_u_f_m_laperlevipmasked_04", hash = 0xA3F030F3, outfits = 1 }, + [0x28F501C1] = { model = "mp_u_f_m_laperlevipunmasked_01", hash = 0x28F501C1, outfits = 1 }, + [0x3A3AA44C] = { model = "mp_u_f_m_laperlevipunmasked_02", hash = 0x3A3AA44C, outfits = 1 }, + [0x4CB3C93E] = { model = "mp_u_f_m_laperlevipunmasked_03", hash = 0x4CB3C93E, outfits = 1 }, + [0x5EEE6DB3] = { model = "mp_u_f_m_laperlevipunmasked_04", hash = 0x5EEE6DB3, outfits = 1 }, + [0x2CE57EFF] = { model = "mp_u_f_m_lbt_owlhootvictim_01", hash = 0x2CE57EFF, outfits = 1 }, + [0x507A33A6] = { model = "mp_u_f_m_legendarybounty_001", hash = 0x507A33A6, outfits = 1 }, + [0x88A423FD] = { model = "mp_u_f_m_legendarybounty_002", hash = 0x88A423FD, outfits = 8 }, + [0xA1EF7AAF] = { model = "mp_u_f_m_outlaw3_warner_01", hash = 0xA1EF7AAF, outfits = 1 }, + [0x33BC1E4A] = { model = "mp_u_f_m_outlaw3_warner_02", hash = 0x33BC1E4A, outfits = 1 }, + [0xC679DED7] = { model = "mp_u_f_m_revenge2_passerby_01", hash = 0xC679DED7, outfits = 1 }, + [0x2B38C3F4] = { model = "mp_u_m_m_armsheriff_01", hash = 0x2B38C3F4, outfits = 1 }, + [0x66B75A18] = { model = "mp_u_m_m_bountyinjuredman_01", hash = 0x66B75A18, outfits = 1 }, + [0xAE2D0F40] = { model = "mp_u_m_m_bountytarget_001", hash = 0xAE2D0F40, outfits = 2 }, + [0x9066D3B0] = { model = "mp_u_m_m_bountytarget_002", hash = 0x9066D3B0, outfits = 2 }, + [0xA095740D] = { model = "mp_u_m_m_bountytarget_003", hash = 0xA095740D, outfits = 2 }, + [0xF314990E] = { model = "mp_u_m_m_bountytarget_005", hash = 0xF314990E, outfits = 2 }, + [0xD7BB625C] = { model = "mp_u_m_m_bountytarget_008", hash = 0xD7BB625C, outfits = 2 }, + [0x5C366B54] = { model = "mp_u_m_m_bountytarget_009", hash = 0x5C366B54, outfits = 2 }, + [0x9710DFFC] = { model = "mp_u_m_m_bountytarget_010", hash = 0x9710DFFC, outfits = 2 }, + [0xF74DA078] = { model = "mp_u_m_m_bountytarget_011", hash = 0xF74DA078, outfits = 2 }, + [0xE98404E5] = { model = "mp_u_m_m_bountytarget_012", hash = 0xE98404E5, outfits = 2 }, + [0xDE80EEDF] = { model = "mp_u_m_m_bountytarget_013", hash = 0xDE80EEDF, outfits = 2 }, + [0xCDBA4D52] = { model = "mp_u_m_m_bountytarget_014", hash = 0xCDBA4D52, outfits = 2 }, + [0x00C8B356] = { model = "mp_u_m_m_bountytarget_015", hash = 0x00C8B356, outfits = 2 }, + [0xEF8B10DB] = { model = "mp_u_m_m_bountytarget_016", hash = 0xEF8B10DB, outfits = 2 }, + [0xE479FAB9] = { model = "mp_u_m_m_bountytarget_017", hash = 0xE479FAB9, outfits = 2 }, + [0xD6375E34] = { model = "mp_u_m_m_bountytarget_018", hash = 0xD6375E34, outfits = 2 }, + [0x37DC2180] = { model = "mp_u_m_m_bountytarget_019", hash = 0x37DC2180, outfits = 2 }, + [0x67D9F5A3] = { model = "mp_u_m_m_bountytarget_020", hash = 0x67D9F5A3, outfits = 2 }, + [0x34228E35] = { model = "mp_u_m_m_bountytarget_021", hash = 0x34228E35, outfits = 2 }, + [0x0B61BCAC] = { model = "mp_u_m_m_bountytarget_022", hash = 0x0B61BCAC, outfits = 2 }, + [0x59BCD969] = { model = "mp_u_m_m_bountytarget_023", hash = 0x59BCD969, outfits = 2 }, + [0x0D244031] = { model = "mp_u_m_m_bountytarget_024", hash = 0x0D244031, outfits = 2 }, + [0xFB5D1CA3] = { model = "mp_u_m_m_bountytarget_025", hash = 0xFB5D1CA3, outfits = 2 }, + [0xB1460876] = { model = "mp_u_m_m_bountytarget_026", hash = 0xB1460876, outfits = 2 }, + [0xC10827FA] = { model = "mp_u_m_m_bountytarget_027", hash = 0xC10827FA, outfits = 2 }, + [0xD5E2D1AF] = { model = "mp_u_m_m_bountytarget_028", hash = 0xD5E2D1AF, outfits = 2 }, + [0xE39BED21] = { model = "mp_u_m_m_bountytarget_029", hash = 0xE39BED21, outfits = 2 }, + [0xF41B8F40] = { model = "mp_u_m_m_bountytarget_030", hash = 0xF41B8F40, outfits = 2 }, + [0x55F252F4] = { model = "mp_u_m_m_bountytarget_031", hash = 0x55F252F4, outfits = 2 }, + [0x10AAC85E] = { model = "mp_u_m_m_bountytarget_032", hash = 0x10AAC85E, outfits = 2 }, + [0x02682BD9] = { model = "mp_u_m_m_bountytarget_033", hash = 0x02682BD9, outfits = 2 }, + [0xAD5581B5] = { model = "mp_u_m_m_bountytarget_034", hash = 0xAD5581B5, outfits = 2 }, + [0x1F32E56E] = { model = "mp_u_m_m_bountytarget_035", hash = 0x1F32E56E, outfits = 2 }, + [0xD96359D0] = { model = "mp_u_m_m_bountytarget_036", hash = 0xD96359D0, outfits = 2 }, + [0xCBCEBEA7] = { model = "mp_u_m_m_bountytarget_037", hash = 0xCBCEBEA7, outfits = 2 }, + [0x7618133B] = { model = "mp_u_m_m_bountytarget_038", hash = 0x7618133B, outfits = 2 }, + [0xE8277758] = { model = "mp_u_m_m_bountytarget_039", hash = 0xE8277758, outfits = 2 }, + [0x2D8122D2] = { model = "mp_u_m_m_bountytarget_044", hash = 0x2D8122D2, outfits = 2 }, + [0x3F4BC667] = { model = "mp_u_m_m_bountytarget_045", hash = 0x3F4BC667, outfits = 2 }, + [0x519CEB09] = { model = "mp_u_m_m_bountytarget_046", hash = 0x519CEB09, outfits = 2 }, + [0xE055886C] = { model = "mp_u_m_m_bountytarget_047", hash = 0xE055886C, outfits = 2 }, + [0xF032A826] = { model = "mp_u_m_m_bountytarget_048", hash = 0xF032A826, outfits = 2 }, + [0x05EFD3A0] = { model = "mp_u_m_m_bountytarget_049", hash = 0x05EFD3A0, outfits = 2 }, + [0x48B93642] = { model = "mp_u_m_m_bountytarget_050", hash = 0x48B93642, outfits = 2 }, + [0x968351D5] = { model = "mp_u_m_m_bountytarget_051", hash = 0x968351D5, outfits = 2 }, + [0x6A34F939] = { model = "mp_u_m_m_bountytarget_052", hash = 0x6A34F939, outfits = 2 }, + [0x381594FB] = { model = "mp_u_m_m_bountytarget_053", hash = 0x381594FB, outfits = 2 }, + [0xFDA5A014] = { model = "mp_u_m_m_bountytarget_054", hash = 0xFDA5A014, outfits = 2 }, + [0x4F89C3E3] = { model = "mp_u_m_m_bountytarget_055", hash = 0x4F89C3E3, outfits = 2 }, + [0x3A99297A] = { model = "mp_u_m_m_gunforhireclerk_01", hash = 0x3A99297A, outfits = 2 }, + [0xA8AC5B68] = { model = "mp_u_m_m_gunslinger3_rifleman_01", hash = 0xA8AC5B68, outfits = 1 }, + [0xB8B24C69] = { model = "mp_u_m_m_gunslinger3_sharpshooter_02", hash = 0xB8B24C69, outfits = 1 }, + [0xE9E0AEC7] = { model = "mp_u_m_m_gunslinger3_shotgunner_01", hash = 0xE9E0AEC7, outfits = 1 }, + [0x13AA0259] = { model = "mp_u_m_m_gunslinger3_shotgunner_02", hash = 0x13AA0259, outfits = 1 }, + [0xC3433CEF] = { model = "mp_u_m_m_gunslinger4_warner_01", hash = 0xC3433CEF, outfits = 1 }, + [0xC0669CB9] = { model = "mp_u_m_m_lbt_accomplice_01", hash = 0xC0669CB9, outfits = 1 }, + [0xD5DF9EC1] = { model = "mp_u_m_m_lbt_barbsvictim_01", hash = 0xD5DF9EC1, outfits = 1 }, + [0x3708EB8F] = { model = "mp_u_m_m_lbt_bribeinformant_01", hash = 0x3708EB8F, outfits = 1 }, + [0x23AC3035] = { model = "mp_u_m_m_lbt_coachdriver_01", hash = 0x23AC3035, outfits = 1 }, + [0xCF46EAEB] = { model = "mp_u_m_m_lbt_hostagemarshal_01", hash = 0xCF46EAEB, outfits = 1 }, + [0x7C32AD3B] = { model = "mp_u_m_m_lbt_owlhootvictim_01", hash = 0x7C32AD3B, outfits = 1 }, + [0xCA5CC98E] = { model = "mp_u_m_m_lbt_owlhootvictim_02", hash = 0xCA5CC98E, outfits = 1 }, + [0x5833651B] = { model = "mp_u_m_m_lbt_philipsvictim_01", hash = 0x5833651B, outfits = 2 }, + [0xA0968AC2] = { model = "mp_u_m_m_legendarybounty_001", hash = 0xA0968AC2, outfits = 1 }, + [0xB2752E7F] = { model = "mp_u_m_m_legendarybounty_002", hash = 0xB2752E7F, outfits = 1 }, + [0xBCF04375] = { model = "mp_u_m_m_legendarybounty_003", hash = 0xBCF04375, outfits = 1 }, + [0xCF21E7D8] = { model = "mp_u_m_m_legendarybounty_004", hash = 0xCF21E7D8, outfits = 1 }, + [0xE772187C] = { model = "mp_u_m_m_legendarybounty_005", hash = 0xE772187C, outfits = 2 }, + [0xF9BCBD11] = { model = "mp_u_m_m_legendarybounty_006", hash = 0xF9BCBD11, outfits = 2 }, + [0x03E5D163] = { model = "mp_u_m_m_legendarybounty_007", hash = 0x03E5D163, outfits = 1 }, + [0xD214F911] = { model = "mp_u_m_m_outlaw3_prisoner_01", hash = 0xD214F911, outfits = 1 }, + [0xA041956B] = { model = "mp_u_m_m_outlaw3_prisoner_02", hash = 0xA041956B, outfits = 1 }, + [0xCB422A48] = { model = "mp_u_m_m_outlaw3_warner_01", hash = 0xCB422A48, outfits = 1 }, + [0x9E094FD3] = { model = "mp_u_m_m_outlaw3_warner_02", hash = 0x9E094FD3, outfits = 1 }, + [0x8FF2C135] = { model = "mp_u_m_m_prisonwagon_01", hash = 0x8FF2C135, outfits = 2 }, + [0x39AB9484] = { model = "mp_u_m_m_prisonwagon_02", hash = 0x39AB9484, outfits = 2 }, + [0x4F65BFF8] = { model = "mp_u_m_m_prisonwagon_03", hash = 0x4F65BFF8, outfits = 2 }, + [0x189E526A] = { model = "mp_u_m_m_prisonwagon_04", hash = 0x189E526A, outfits = 2 }, + [0x2AE4F6F7] = { model = "mp_u_m_m_prisonwagon_05", hash = 0x2AE4F6F7, outfits = 2 }, + [0x74378993] = { model = "mp_u_m_m_prisonwagon_06", hash = 0x74378993, outfits = 2 }, + [0x530BE231] = { model = "mp_u_m_m_revenge2_handshaker_01", hash = 0x530BE231, outfits = 1 }, + [0x07D731A4] = { model = "mp_u_m_m_revenge2_passerby_01", hash = 0x07D731A4, outfits = 1 }, + [0xCD442B40] = { model = "mp_u_m_m_traderintroclerk_01", hash = 0xCD442B40, outfits = 1 }, + [0x7F96CF37] = { model = "mp_u_m_m_trader_01", hash = 0x7F96CF37, outfits = 2 }, + [0xB16AD39D] = { model = "mp_u_m_m_tvlfence_01", hash = 0xB16AD39D, outfits = 1 }, + [0x32D2C56D] = { model = "mp_u_m_o_blwpolicechief_01", hash = 0x32D2C56D, outfits = 8 }, + [0x749DDBE2] = { model = "mp_wgnbrkout_recipient_males_01", hash = 0x749DDBE2, outfits = 27 }, + [0xFD9DC5E0] = { model = "mp_wgnthief_recipient_males_01", hash = 0xFD9DC5E0, outfits = 24 }, + [0x2830CF33] = { model = "mp_a_c_alligator_01", hash = 0x2830CF33, outfits = 4 }, + [0xBB746741] = { model = "mp_a_c_beaver_01", hash = 0xBB746741, outfits = 3 }, + [0xE8CBC01C] = { model = "mp_a_c_boar_01", hash = 0xE8CBC01C, outfits = 5 }, + [0xAA89BB8D] = { model = "mp_a_c_cougar_01", hash = 0xAA89BB8D, outfits = 4 }, + [0xB20D360D] = { model = "mp_a_c_coyote_01", hash = 0xB20D360D, outfits = 4 }, + [0xB91BAB89] = { model = "mp_a_c_panther_01", hash = 0xB91BAB89, outfits = 4 }, + [0xAD02460F] = { model = "mp_a_c_wolf_01", hash = 0xAD02460F, outfits = 5 }, + [0x2DA2EA3B] = { model = "mp_a_f_m_saloonpatrons_01", hash = 0x2DA2EA3B, outfits = 20 }, + [0x51323159] = { model = "mp_a_f_m_saloonpatrons_02", hash = 0x51323159, outfits = 22 }, + [0x6336D562] = { model = "mp_a_f_m_saloonpatrons_03", hash = 0x6336D562, outfits = 20 }, + [0x715D71AF] = { model = "mp_a_f_m_saloonpatrons_04", hash = 0x715D71AF, outfits = 20 }, + [0x83181528] = { model = "mp_a_f_m_saloonpatrons_05", hash = 0x83181528, outfits = 20 }, + [0x80451592] = { model = "mp_a_m_m_moonshinemakers_01", hash = 0x80451592, outfits = 30 }, + [0x9A2437B7] = { model = "mp_a_m_m_saloonpatrons_01", hash = 0x9A2437B7, outfits = 35 }, + [0x51AB26BE] = { model = "mp_a_m_m_saloonpatrons_02", hash = 0x51AB26BE, outfits = 35 }, + [0x40E58533] = { model = "mp_a_m_m_saloonpatrons_03", hash = 0x40E58533, outfits = 35 }, + [0x7610EF89] = { model = "mp_a_m_m_saloonpatrons_04", hash = 0x7610EF89, outfits = 35 }, + [0x63D64B14] = { model = "mp_a_m_m_saloonpatrons_05", hash = 0x63D64B14, outfits = 35 }, + [0xBAD963AE] = { model = "mp_g_m_m_animalpoachers_01", hash = 0xBAD963AE, outfits = 71 }, + [0xF2C429A7] = { model = "mp_g_m_m_unicriminals_03", hash = 0xF2C429A7, outfits = 55 }, + [0x44AA4D72] = { model = "mp_g_m_m_unicriminals_04", hash = 0x44AA4D72, outfits = 55 }, + [0x5736728A] = { model = "mp_g_m_m_unicriminals_05", hash = 0x5736728A, outfits = 55 }, + [0x2928966F] = { model = "mp_g_m_m_unicriminals_06", hash = 0x2928966F, outfits = 50 }, + [0x3D89BF31] = { model = "mp_g_m_m_unicriminals_07", hash = 0x3D89BF31, outfits = 55 }, + [0x8F336283] = { model = "mp_g_m_m_unicriminals_08", hash = 0x8F336283, outfits = 50 }, + [0x5E058028] = { model = "mp_g_m_m_unicriminals_09", hash = 0x5E058028, outfits = 50 }, + [0xD3754E47] = { model = "mp_re_moonshinecamp_males_01", hash = 0xD3754E47, outfits = 10 }, + [0xD0AC86C4] = { model = "mp_s_m_m_revenueagents_01", hash = 0xD0AC86C4, outfits = 49 }, + [0xA7E717F4] = { model = "mp_u_f_m_buyer_improved_01", hash = 0xA7E717F4, outfits = 1 }, + [0xB7FC381E] = { model = "mp_u_f_m_buyer_improved_02", hash = 0xB7FC381E, outfits = 1 }, + [0x8AB3310A] = { model = "mp_u_f_m_buyer_regular_01", hash = 0x8AB3310A, outfits = 1 }, + [0xE065DC6E] = { model = "mp_u_f_m_buyer_regular_02", hash = 0xE065DC6E, outfits = 1 }, + [0x5DDFB326] = { model = "mp_u_f_m_buyer_special_01", hash = 0x5DDFB326, outfits = 1 }, + [0x53A19EAA] = { model = "mp_u_f_m_buyer_special_02", hash = 0x53A19EAA, outfits = 1 }, + [0x32ED72B1] = { model = "mp_u_m_m_buyer_default_01", hash = 0x32ED72B1, outfits = 1 }, + [0x60F676A5] = { model = "mp_u_m_m_buyer_improved_01", hash = 0x60F676A5, outfits = 1 }, + [0xE7BD8435] = { model = "mp_u_m_m_buyer_improved_02", hash = 0xE7BD8435, outfits = 1 }, + [0x0380BBBB] = { model = "mp_u_m_m_buyer_improved_03", hash = 0x0380BBBB, outfits = 1 }, + [0x9767E38B] = { model = "mp_u_m_m_buyer_improved_04", hash = 0x9767E38B, outfits = 1 }, + [0x6929070E] = { model = "mp_u_m_m_buyer_improved_05", hash = 0x6929070E, outfits = 1 }, + [0x3AC5AA44] = { model = "mp_u_m_m_buyer_improved_06", hash = 0x3AC5AA44, outfits = 1 }, + [0x8A9AC9F1] = { model = "mp_u_m_m_buyer_improved_07", hash = 0x8A9AC9F1, outfits = 1 }, + [0x75CFA027] = { model = "mp_u_m_m_buyer_improved_08", hash = 0x75CFA027, outfits = 1 }, + [0x1DBD9378] = { model = "mp_u_m_m_buyer_regular_01", hash = 0x1DBD9378, outfits = 1 }, + [0x2FEC37D5] = { model = "mp_u_m_m_buyer_regular_02", hash = 0x2FEC37D5, outfits = 1 }, + [0x41235A43] = { model = "mp_u_m_m_buyer_regular_03", hash = 0x41235A43, outfits = 1 }, + [0x5358FEAE] = { model = "mp_u_m_m_buyer_regular_04", hash = 0x5358FEAE, outfits = 1 }, + [0x41125A1D] = { model = "mp_u_m_m_buyer_regular_05", hash = 0x41125A1D, outfits = 1 }, + [0x5373FEE0] = { model = "mp_u_m_m_buyer_regular_06", hash = 0x5373FEE0, outfits = 1 }, + [0xE6BB2570] = { model = "mp_u_m_m_buyer_regular_07", hash = 0xE6BB2570, outfits = 1 }, + [0xF8F549E4] = { model = "mp_u_m_m_buyer_regular_08", hash = 0xF8F549E4, outfits = 1 }, + [0x31227E9C] = { model = "mp_u_m_m_buyer_special_01", hash = 0x31227E9C, outfits = 1 }, + [0xFED89A09] = { model = "mp_u_m_m_buyer_special_02", hash = 0xFED89A09, outfits = 1 }, + [0x0DF73846] = { model = "mp_u_m_m_buyer_special_03", hash = 0x0DF73846, outfits = 1 }, + [0xE479E544] = { model = "mp_u_m_m_buyer_special_04", hash = 0xE479E544, outfits = 1 }, + [0xB23B00C7] = { model = "mp_u_m_m_buyer_special_05", hash = 0xB23B00C7, outfits = 1 }, + [0xC8052C5B] = { model = "mp_u_m_m_buyer_special_06", hash = 0xC8052C5B, outfits = 1 }, + [0xB6FF8A54] = { model = "mp_u_m_m_buyer_special_07", hash = 0xB6FF8A54, outfits = 1 }, + [0xCDCAB7EA] = { model = "mp_u_m_m_buyer_special_08", hash = 0xCDCAB7EA, outfits = 1 }, + [0x54B1C872] = { model = "mp_u_m_m_lawcamp_prisoner_01", hash = 0x54B1C872, outfits = 1 }, + [0x60C69F07] = { model = "mp_u_m_m_saloonbrawler_01", hash = 0x60C69F07, outfits = 1 }, + [0xC45F6627] = { model = "mp_u_m_m_saloonbrawler_02", hash = 0xC45F6627, outfits = 1 }, + [0x928C8282] = { model = "mp_u_m_m_saloonbrawler_03", hash = 0x928C8282, outfits = 1 }, + [0xED9F38AE] = { model = "mp_u_m_m_saloonbrawler_04", hash = 0xED9F38AE, outfits = 1 }, + [0xB427C5B8] = { model = "mp_u_m_m_saloonbrawler_05", hash = 0xB427C5B8, outfits = 1 }, + [0x5B9D94A5] = { model = "mp_u_m_m_saloonbrawler_06", hash = 0x5B9D94A5, outfits = 1 }, + [0x6B3733D8] = { model = "mp_u_m_m_saloonbrawler_07", hash = 0x6B3733D8, outfits = 1 }, + [0xA8FBAF60] = { model = "mp_u_m_m_saloonbrawler_08", hash = 0xA8FBAF60, outfits = 1 }, + [0x76BDCAE5] = { model = "mp_u_m_m_saloonbrawler_09", hash = 0x76BDCAE5, outfits = 1 }, + [0x1150FEA9] = { model = "mp_u_m_m_saloonbrawler_10", hash = 0x1150FEA9, outfits = 1 }, + [0xE29AA13D] = { model = "mp_u_m_m_saloonbrawler_11", hash = 0xE29AA13D, outfits = 1 }, + [0x2DAFB766] = { model = "mp_u_m_m_saloonbrawler_12", hash = 0x2DAFB766, outfits = 1 }, + [0xFFDC5BC0] = { model = "mp_u_m_m_saloonbrawler_13", hash = 0xFFDC5BC0, outfits = 1 }, + [0x96390873] = { model = "mp_u_m_m_saloonbrawler_14", hash = 0x96390873, outfits = 1 }, + [0xDF251C39] = { model = "mp_a_c_bear_01", hash = 0xDF251C39, outfits = 4 }, + [0xE1884260] = { model = "mp_a_c_bighornram_01", hash = 0xE1884260, outfits = 5 }, + [0x9770DD23] = { model = "mp_a_c_buck_01", hash = 0x9770DD23, outfits = 6 }, + [0xC971C4C6] = { model = "mp_a_c_buffalo_01", hash = 0xC971C4C6, outfits = 4 }, + [0xBFDC1D2A] = { model = "mp_a_c_dogamericanfoxhound_01", hash = 0xBFDC1D2A, outfits = 2 }, + [0xD1641E60] = { model = "mp_a_c_elk_01", hash = 0xD1641E60, outfits = 4 }, + [0xDECA9205] = { model = "mp_a_c_fox_01", hash = 0xDECA9205, outfits = 4 }, + [0xF8FC8F63] = { model = "mp_a_c_moose_01", hash = 0xF8FC8F63, outfits = 4 }, + [0x24C5B680] = { model = "mp_a_c_owl_01", hash = 0x24C5B680, outfits = 1 }, + [0xDECED2FD] = { model = "mp_a_c_possum_01", hash = 0xDECED2FD, outfits = 1 }, + [0xFE40DC76] = { model = "mp_a_c_pronghorn_01", hash = 0xFE40DC76, outfits = 1 }, + [0xF4EA3B49] = { model = "mp_a_c_rabbit_01", hash = 0xF4EA3B49, outfits = 1 }, + [0x9A61FCB8] = { model = "mp_a_c_sheep_01", hash = 0x9A61FCB8, outfits = 1 }, + [0x3B7BD8D3] = { model = "mp_a_f_m_saloonband_females_01", hash = 0x3B7BD8D3, outfits = 5 }, + [0xF00A64EC] = { model = "mp_u_m_m_animalpoacher_01", hash = 0xF00A64EC, outfits = 1 }, + [0xE1D74886] = { model = "mp_u_m_m_animalpoacher_02", hash = 0xE1D74886, outfits = 1 }, + [0x92552983] = { model = "mp_u_m_m_animalpoacher_03", hash = 0x92552983, outfits = 1 }, + [0x84298D2C] = { model = "mp_u_m_m_animalpoacher_04", hash = 0x84298D2C, outfits = 1 }, + [0xA6F2D2BE] = { model = "mp_u_m_m_animalpoacher_05", hash = 0xA6F2D2BE, outfits = 2 }, + [0x5895B605] = { model = "mp_u_m_m_animalpoacher_06", hash = 0x5895B605, outfits = 1 }, + [0x3DA8002A] = { model = "mp_u_m_m_animalpoacher_07", hash = 0x3DA8002A, outfits = 1 }, + [0x7001E4DD] = { model = "mp_u_m_m_animalpoacher_08", hash = 0x7001E4DD, outfits = 1 }, + [0x624BC971] = { model = "mp_u_m_m_animalpoacher_09", hash = 0x624BC971, outfits = 1 }, + [0xB25E4617] = { model = "mp_g_f_m_armyoffear_01", hash = 0xB25E4617, outfits = 20 }, + [0x19382FFC] = { model = "mp_g_m_m_armyoffear_01", hash = 0x19382FFC, outfits = 30 }, + [0x29465719] = { model = "mp_a_c_chicken_01", hash = 0x29465719, outfits = 2 }, + [0x2EA769DD] = { model = "mp_a_c_deer_01", hash = 0x2EA769DD, outfits = 1 }, + [0xBAFD3C1A] = { model = "mp_a_m_m_saloonband_males_01", hash = 0xBAFD3C1A, outfits = 20 }, + [0x482F6E79] = { model = "mp_re_slumpedhunter_females_01", hash = 0x482F6E79, outfits = 4 }, + [0x48F23D48] = { model = "mp_re_slumpedhunter_males_01", hash = 0x48F23D48, outfits = 6 }, + [0xD2D2D2D4] = { model = "mp_re_suspendedhunter_males_01", hash = 0xD2D2D2D4, outfits = 2 }, + [0xEE7487F0] = { model = "mp_u_f_m_nat_traveler_01", hash = 0xEE7487F0, outfits = 1 }, + [0x71E6D0A6] = { model = "mp_u_f_m_nat_worker_01", hash = 0x71E6D0A6, outfits = 1 }, + [0xA48BB5F3] = { model = "mp_u_f_m_nat_worker_02", hash = 0xA48BB5F3, outfits = 1 }, + [0x846A2728] = { model = "mp_u_f_m_saloonpianist_01", hash = 0x846A2728, outfits = 1 }, + [0xCF9DD811] = { model = "mp_u_m_m_dyingpoacher_01", hash = 0xCF9DD811, outfits = 1 }, + [0xDF5BF78D] = { model = "mp_u_m_m_dyingpoacher_02", hash = 0xDF5BF78D, outfits = 1 }, + [0x6C51917A] = { model = "mp_u_m_m_dyingpoacher_03", hash = 0x6C51917A, outfits = 1 }, + [0x89F8CCC8] = { model = "mp_u_m_m_dyingpoacher_04", hash = 0x89F8CCC8, outfits = 1 }, + [0x9AB66E43] = { model = "mp_u_m_m_dyingpoacher_05", hash = 0x9AB66E43, outfits = 1 }, + [0x0B979763] = { model = "mp_u_m_m_lawcamp_lawman_01", hash = 0x0B979763, outfits = 1 }, + [0xF9A5F380] = { model = "mp_u_m_m_lawcamp_lawman_02", hash = 0xF9A5F380, outfits = 1 }, + [0x7B379BDB] = { model = "mp_u_m_m_lawcamp_leadofficer_01", hash = 0x7B379BDB, outfits = 1 }, + [0x58E9D4F4] = { model = "mp_u_m_m_nat_farmer_01", hash = 0x58E9D4F4, outfits = 1 }, + [0xDB15D94E] = { model = "mp_u_m_m_nat_farmer_02", hash = 0xDB15D94E, outfits = 1 }, + [0x0D3CBD9B] = { model = "mp_u_m_m_nat_farmer_03", hash = 0x0D3CBD9B, outfits = 1 }, + [0xEFDC82DB] = { model = "mp_u_m_m_nat_farmer_04", hash = 0xEFDC82DB, outfits = 1 }, + [0x2CDF85F7] = { model = "mp_u_m_m_nat_photographer_01", hash = 0x2CDF85F7, outfits = 1 }, + [0x3E92A95D] = { model = "mp_u_m_m_nat_photographer_02", hash = 0x3E92A95D, outfits = 1 }, + [0x2BE8BC9C] = { model = "mp_u_m_m_nat_rancher_01", hash = 0x2BE8BC9C, outfits = 1 }, + [0x7AA6DA17] = { model = "mp_u_m_m_nat_rancher_02", hash = 0x7AA6DA17, outfits = 1 }, + [0x02A89468] = { model = "mp_u_m_m_nat_townfolk_01", hash = 0x02A89468, outfits = 1 }, + [0xB9629EFC] = { model = "mp_u_m_m_strwelcomecenter_02", hash = 0xB9629EFC, outfits = 1 }, + [0xC161E8A4] = { model = "MP_BEAU_BINK_FEMALES_01", hash = 0xC161E8A4, outfits = 1 }, + [0xEDF51277] = { model = "MP_BEAU_BINK_MALES_01", hash = 0xEDF51277, outfits = 7 }, + [0x9ACE7910] = { model = "MP_CARMELA_BINK_VICTIM_MALES_01", hash = 0x9ACE7910, outfits = 5 }, + [0x878040F4] = { model = "MP_CD_REVENGEMAYOR_01", hash = 0x878040F4, outfits = 21 }, + [0xF7831C85] = { model = "mp_fm_bounty_caged_males_01", hash = 0xF7831C85, outfits = 2 }, + [0x3F85E344] = { model = "mp_fm_bounty_ct_corpses_01", hash = 0x3F85E344, outfits = 2 }, + [0x85885C97] = { model = "mp_fm_bounty_hideout_males_01", hash = 0x85885C97, outfits = 1 }, + [0x696D66E4] = { model = "mp_fm_bounty_horde_males_01", hash = 0x696D66E4, outfits = 5 }, + [0x813F5ED3] = { model = "mp_fm_bounty_infiltration_males_01", hash = 0x813F5ED3, outfits = 2 }, + [0xF6458169] = { model = "MP_FM_BOUNTYTARGET_MALES_DLC008_01", hash = 0xF6458169, outfits = 53 }, + [0xC1FD6394] = { model = "mp_fm_knownbounty_guards_01", hash = 0xC1FD6394, outfits = 1 }, + [0xD9162F29] = { model = "MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", hash = 0xD9162F29, outfits = 1 }, + [0xA97E2D65] = { model = "mp_fm_knownbounty_informants_males_01", hash = 0xA97E2D65, outfits = 7 }, + [0x32C42256] = { model = "mp_fm_multitrack_victims_males_01", hash = 0x32C42256, outfits = 2 }, + [0x4957CFEF] = { model = "mp_fm_stakeout_corpses_males_01", hash = 0x4957CFEF, outfits = 2 }, + [0x24497ABF] = { model = "mp_fm_stakeout_poker_males_01", hash = 0x24497ABF, outfits = 2 }, + [0xA5F85792] = { model = "mp_fm_stakeout_target_males_01", hash = 0xA5F85792, outfits = 6 }, + [0x1E14106E] = { model = "mp_fm_track_prospector_01", hash = 0x1E14106E, outfits = 1 }, + [0xC8A1EC4C] = { model = "mp_fm_track_sd_lawman_01", hash = 0xC8A1EC4C, outfits = 1 }, + [0xAA6CE21D] = { model = "mp_fm_track_targets_males_01", hash = 0xAA6CE21D, outfits = 3 }, + [0x83CA7BB6] = { model = "MP_G_F_M_CULTGUARDS_01", hash = 0x83CA7BB6, outfits = 16 }, + [0xC882A3EE] = { model = "mp_g_f_m_cultmembers_01", hash = 0xC882A3EE, outfits = 13 }, + [0xD0DFAE8C] = { model = "MP_G_M_M_CULTGUARDS_01", hash = 0xD0DFAE8C, outfits = 27 }, + [0xAE40CCCC] = { model = "mp_g_m_m_cultmembers_01", hash = 0xAE40CCCC, outfits = 22 }, + [0x7F1377B7] = { model = "MP_G_M_M_MERCS_01", hash = 0x7F1377B7, outfits = 2 }, + [0xE733264E] = { model = "MP_G_M_M_RIFLECRONIES_01", hash = 0xE733264E, outfits = 6 }, + [0x9C1EBED9] = { model = "MP_LBM_CARMELA_BANDITOS_01", hash = 0x9C1EBED9, outfits = 4 }, + [0x96CEA293] = { model = "MP_LM_STEALHORSE_BUYERS_01", hash = 0x96CEA293, outfits = 3 }, + [0x8C5F7BCC] = { model = "MP_U_F_M_CULTPRIEST_01", hash = 0x8C5F7BCC, outfits = 1 }, + [0x5A5EA2DF] = { model = "MP_U_F_M_LEGENDARYBOUNTY_03", hash = 0x5A5EA2DF, outfits = 5 }, + [0xF99F0909] = { model = "MP_U_M_M_BANKPRISONER_01", hash = 0xF99F0909, outfits = 1 }, + [0xA8BEA305] = { model = "MP_U_M_M_BINKMERCS_01", hash = 0xA8BEA305, outfits = 7 }, + [0xBF0B11F0] = { model = "MP_U_M_M_CULTPRIEST_01", hash = 0xBF0B11F0, outfits = 3 }, + [0xBA59A221] = { model = "MP_U_M_M_DROPOFF_JOSIAH_01", hash = 0xBA59A221, outfits = 1 }, + [0x9A9164E1] = { model = "MP_U_M_M_LEGENDARYBOUNTY_08", hash = 0x9A9164E1, outfits = 3 }, + [0x872A3E13] = { model = "MP_U_M_M_LEGENDARYBOUNTY_09", hash = 0x872A3E13, outfits = 1 }, + [0x11952F60] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_01", hash = 0x11952F60, outfits = 1 }, + [0xFFE38BFD] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_02", hash = 0xFFE38BFD, outfits = 1 }, + [0x2D22E67B] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03", hash = 0x2D22E67B, outfits = 1 }, + [0x76D0DAE4] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03B", hash = 0x76D0DAE4, outfits = 1 }, + [0x0329C664] = { model = "MP_U_M_M_LOM_TRAIN_CONDUCTOR_01", hash = 0x0329C664, outfits = 1 }, + [0x059D1627] = { model = "MP_U_M_M_OUTLAW_COACHDRIVER_01", hash = 0x059D1627, outfits = 1 }, + [0x08258837] = { model = "MP_U_M_M_FOS_DOCKWORKER_01", hash = 0x08258837, outfits = 1 }, + [0x0838D137] = { model = "MP_U_M_M_DROPOFF_BRONTE_01", hash = 0x0838D137, outfits = 1 }, + [0x0BE08FB6] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_02", hash = 0x0BE08FB6, outfits = 1 }, + [0x0DD5100A] = { model = "MP_U_M_M_FOS_HARBORMASTER_01", hash = 0x0DD5100A, outfits = 1 }, + [0x0FD9B9AD] = { model = "MP_U_M_M_FOS_TOWN_VIGILANTE_01", hash = 0x0FD9B9AD, outfits = 1 }, + [0x139CC38E] = { model = "MP_U_M_M_OUTLAW_COVINGTON_01", hash = 0x139CC38E, outfits = 1 }, + [0x194B76E7] = { model = "MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x194B76E7, outfits = 5 }, + [0x1AA818AE] = { model = "MP_U_M_M_FOS_BAGHOLDERS_01", hash = 0x1AA818AE, outfits = 5 }, + [0x1D9AB32A] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_01", hash = 0x1D9AB32A, outfits = 1 }, + [0x25CBE18C] = { model = "MP_U_M_M_LOM_TRAIN_BARRICADE_01", hash = 0x25CBE18C, outfits = 7 }, + [0x30ED986F] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_02", hash = 0x30ED986F, outfits = 1 }, + [0x33191090] = { model = "MP_U_M_M_FOS_MUSICIAN_01", hash = 0x33191090, outfits = 1 }, + [0x358E2F94] = { model = "MP_CS_ANTONYFOREMEN", hash = 0x358E2F94, outfits = 2 }, + [0x358EDB23] = { model = "MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x358EDB23, outfits = 5 }, + [0x36B00529] = { model = "MP_U_M_M_FOS_RAILWAY_FOREMAN_01", hash = 0x36B00529, outfits = 1 }, + [0x3EECF401] = { model = "MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", hash = 0x3EECF401, outfits = 5 }, + [0x3F629157] = { model = "MP_U_M_M_PROTECT_ARMADILLO_01", hash = 0x3F629157, outfits = 1 }, + [0x46B92ED0] = { model = "MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01", hash = 0x46B92ED0, outfits = 5 }, + [0x510EBF17] = { model = "MP_U_M_M_LOM_TRAIN_PRISONERS_01", hash = 0x510EBF17, outfits = 2 }, + [0x57D3AE19] = { model = "MP_A_M_M_COACHGUARDS_01", hash = 0x57D3AE19, outfits = 15 }, + [0x58181CAF] = { model = "MP_U_M_M_FOS_ROGUETHIEF_01", hash = 0x58181CAF, outfits = 1 }, + [0x592FCF55] = { model = "MP_U_M_M_FOS_RAILWAY_DRIVER_01", hash = 0x592FCF55, outfits = 1 }, + [0x5DE76175] = { model = "MP_U_M_M_LOM_ASBMERCS_01", hash = 0x5DE76175, outfits = 2 }, + [0x5FBDB3E7] = { model = "MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01", hash = 0x5FBDB3E7, outfits = 1 }, + [0x617AD6A7] = { model = "MP_U_M_O_LOM_ASBFOREMAN_01", hash = 0x617AD6A7, outfits = 1 }, + [0x64BCC144] = { model = "MP_G_M_M_MOUNTAINMEN_01", hash = 0x64BCC144, outfits = 25 }, + [0x6829879B] = { model = "MP_U_M_M_PROTECT_STRAWBERRY_01", hash = 0x6829879B, outfits = 1 }, + [0x68CFBA8F] = { model = "MP_U_M_M_PROTECT_HALLOWEEN_NED_01", hash = 0x68CFBA8F, outfits = 1 }, + [0x6A78FE6C] = { model = "MP_U_M_M_OUTLAW_MPVICTIM_01", hash = 0x6A78FE6C, outfits = 1 }, + [0x6AB56BDA] = { model = "MP_U_M_M_LOM_SD_DOCKWORKER_01", hash = 0x6AB56BDA, outfits = 1 }, + [0x71A35899] = { model = "MP_U_M_M_FOS_TOWN_OUTLAW_01", hash = 0x71A35899, outfits = 4 }, + [0x7494D380] = { model = "MP_U_M_M_FOS_RECOVERY_RECIPIENT_01", hash = 0x7494D380, outfits = 6 }, + [0x7875E8E3] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_03", hash = 0x7875E8E3, outfits = 1 }, + [0x79912CAE] = { model = "MP_U_M_M_FOS_DROPOFF_01", hash = 0x79912CAE, outfits = 1 }, + [0x83123AF1] = { model = "MP_U_M_M_FOS_SDSALOON_GAMBLER_01", hash = 0x83123AF1, outfits = 1 }, + [0x8C37025E] = { model = "MP_U_M_M_LOM_TRAIN_LAWTARGET_01", hash = 0x8C37025E, outfits = 1 }, + [0x8D357D39] = { model = "MP_G_M_M_FOS_DEBTGANGCAPITALI_01", hash = 0x8D357D39, outfits = 5 }, + [0x8EA8D407] = { model = "MP_A_M_M_LOM_ASBMINERS_01", hash = 0x8EA8D407, outfits = 2 }, + [0x9012A8C2] = { model = "MP_FM_BOUNTY_HORDE_LAW_01", hash = 0x9012A8C2, outfits = 2 }, + [0x982C82C5] = { model = "MP_U_M_M_LOM_HEAD_SECURITY_01", hash = 0x982C82C5, outfits = 4 }, + [0x98C03046] = { model = "MP_U_M_M_FOS_SDSALOON_OWNER_01", hash = 0x98C03046, outfits = 1 }, + [0x9B2A9005] = { model = "MP_U_M_M_MUSICIAN_01", hash = 0x9B2A9005, outfits = 1 }, + [0x9DFA9B6E] = { model = "MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01", hash = 0x9DFA9B6E, outfits = 1 }, + [0x9E96638B] = { model = "MP_U_M_M_FOS_RAILWAY_BARON_01", hash = 0x9E96638B, outfits = 1 }, + [0xA1B84FC1] = { model = "MP_G_M_O_UNIEXCONFEDS_CAP_01", hash = 0xA1B84FC1, outfits = 1 }, + [0xA303FC9A] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_01", hash = 0xA303FC9A, outfits = 2 }, + [0xA37DBD30] = { model = "MP_U_M_M_INTERROGATOR_01", hash = 0xA37DBD30, outfits = 1 }, + [0xAF86511B] = { model = "MP_A_M_M_ASBMINERS_01", hash = 0xAF86511B, outfits = 2 }, + [0xAF9B36E2] = { model = "MP_U_M_M_ASBDEPUTY_01", hash = 0xAF9B36E2, outfits = 1 }, + [0xB06054ED] = { model = "MP_U_M_M_LOM_DROPOFF_BRONTE_01", hash = 0xB06054ED, outfits = 1 }, + [0xB4CD18D6] = { model = "MP_BINK_EMBER_OF_THE_EAST_MALES_01", hash = 0xB4CD18D6, outfits = 9 }, + [0xB4F3EF87] = { model = "mp_U_M_M_FOS_RAILWAY_GUARDS_01", hash = 0xB4F3EF87, outfits = 3 }, + [0xB50453FF] = { model = "MP_G_M_M_FOS_VIGILANTES_01", hash = 0xB50453FF, outfits = 10 }, + [0xBB22D33E] = { model = "mp_S_M_M_REVENUEAGENTS_CAP_01", hash = 0xBB22D33E, outfits = 3 }, + [0xBD27319D] = { model = "MP_U_M_M_LOM_SALOON_DRUNK_01", hash = 0xBD27319D, outfits = 1 }, + [0xBDD36DB5] = { model = "MP_A_M_M_ASBMINERS_02", hash = 0xBDD36DB5, outfits = 2 }, + [0xC2B71883] = { model = "MP_U_M_M_LOM_TRAIN_CLERK_01", hash = 0xC2B71883, outfits = 1 }, + [0xC358949B] = { model = "MP_U_M_M_PROTECT_VALENTINE_01", hash = 0xC358949B, outfits = 1 }, + [0xC37F22A8] = { model = "MP_S_M_M_FOS_HARBORGUARDS_01", hash = 0xC37F22A8, outfits = 20 }, + [0xCB86F5E4] = { model = "MP_U_M_M_PROTECT_MERCER_CONTACT_01", hash = 0xCB86F5E4, outfits = 1 }, + [0xCD3F93CC] = { model = "MP_U_M_M_OUTLAW_RHD_NOBLE_01", hash = 0xCD3F93CC, outfits = 4 }, + [0xD2D648CE] = { model = "MP_A_M_M_JAMESONGUARD_01", hash = 0xD2D648CE, outfits = 50 }, + [0xD34CCF4F] = { model = "MP_U_M_M_FOS_RAILWAY_RECIPIENT_01", hash = 0xD34CCF4F, outfits = 1 }, + [0xD7A31642] = { model = "MP_U_M_M_PROTECT_BLACKWATER_01", hash = 0xD7A31642, outfits = 1 }, + [0xDA440097] = { model = "MP_U_M_M_HCTEL_SD_TARGET_02", hash = 0xDA440097, outfits = 2 }, + [0xDA5BAF27] = { model = "MP_G_M_M_FOS_DEBTGANG_01", hash = 0xDA5BAF27, outfits = 15 }, + [0xDA664071] = { model = "MP_U_M_M_FOS_SABOTEUR_01", hash = 0xDA664071, outfits = 1 }, + [0xDC558720] = { model = "MP_U_M_M_HCTEL_SD_GANG_01", hash = 0xDC558720, outfits = 3 }, + [0xE2DCE94B] = { model = "MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01", hash = 0xE2DCE94B, outfits = 1 }, + [0xE514F0BF] = { model = "MP_U_M_M_LOM_DOCKWORKER_01", hash = 0xE514F0BF, outfits = 1 }, + [0xE58B4A18] = { model = "MP_U_M_M_FOS_DOCKRECIPIENTS_01", hash = 0xE58B4A18, outfits = 2 }, + [0xE5E2AAE3] = { model = "MP_U_F_M_OUTLAW_SOCIETYLADY_01", hash = 0xE5E2AAE3, outfits = 1 }, + [0xE8F03F0A] = { model = "MP_U_M_M_LOM_RHD_SHERIFF_01", hash = 0xE8F03F0A, outfits = 1 }, + [0xEA3457D9] = { model = "MP_U_M_M_FOS_CORNWALL_BANDITS_01", hash = 0xEA3457D9, outfits = 3 }, + [0xEA626A60] = { model = "MP_U_M_M_PROTECT_STRAWBERRY", hash = 0xEA626A60, outfits = 1 }, + [0xEAA42177] = { model = "MP_GuidoMartelli", hash = 0xEAA42177, outfits = 1 }, + [0xEAAE023B] = { model = "MP_U_M_M_HARBORMASTER_01", hash = 0xEAAE023B, outfits = 1 }, + [0xEB2B8251] = { model = "MP_U_M_M_LOM_RHD_SMITHASSISTANT_01", hash = 0xEB2B8251, outfits = 1 }, + [0xED2FDF9A] = { model = "MP_U_M_M_FOS_INTERROGATOR_02", hash = 0xED2FDF9A, outfits = 1 }, + [0xED64E004] = { model = "MP_U_M_M_FOS_INTERROGATOR_01", hash = 0xED64E004, outfits = 1 }, + [0xED7DA70A] = { model = "MP_U_M_M_HCTEL_SD_TARGET_01", hash = 0xED7DA70A, outfits = 1 }, + [0xEE6A6493] = { model = "MP_U_M_M_FOS_CORNWALLGUARD_01", hash = 0xEE6A6493, outfits = 2 }, + [0xEF9BAB0C] = { model = "MP_A_M_M_FOS_COACHGUARDS_01", hash = 0xEF9BAB0C, outfits = 15 }, + [0xF14E5BDB] = { model = "MP_U_F_M_PROTECT_MERCER_01", hash = 0xF14E5BDB, outfits = 5 }, + [0xF24DC82F] = { model = "MP_U_M_M_DOCKRECIPIENTS_01", hash = 0xF24DC82F, outfits = 2 }, + [0xFDA2404B] = { model = "MP_U_M_M_LOM_RHD_DEALERS_01", hash = 0xFDA2404B, outfits = 3 }, + [0xFE3F4984] = { model = "MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01", hash = 0xFE3F4984, outfits = 6 }, + [0xFFDFCBCE] = { model = "MP_U_M_M_HCTEL_SD_TARGET_03", hash = 0xFFDFCBCE, outfits = 6 }, + [0xFFF1AB44] = { model = "MP_U_M_M_FOS_RAILWAY_HUNTER_01", hash = 0xFFF1AB44, outfits = 1 }, } -Peds.Story = { - -- [`cs_dutch`] = createEntry("cs_dutch"), +Peds.Special = { + [0x0926B79B] = { model = "amsp_robsdgunsmith_males_01", hash = 0x0926B79B, outfits = 5 }, + [0x3D27C285] = { model = "am_valentinedoctors_females_01", hash = 0x3D27C285, outfits = 1 }, + [0x6B6968AA] = { model = "casp_coachrobbery_lenny_males_01", hash = 0x6B6968AA, outfits = 2 }, + [0x63F5A730] = { model = "casp_coachrobbery_micah_males_01", hash = 0x63F5A730, outfits = 1 }, + [0x7A8FF723] = { model = "casp_hunting02_males_01", hash = 0x7A8FF723, outfits = 2 }, + [0x0B4466F8] = { model = "cr_strawberry_males_01", hash = 0x0B4466F8, outfits = 19 }, + [0x0D7B4617] = { model = "female_skeleton", hash = 0x0D7B4617, outfits = 7 }, + [0x86B3E995] = { model = "gc_lemoynecaptive_males_01", hash = 0x86B3E995, outfits = 1 }, + [0x8C1DC732] = { model = "gc_skinnertorture_males_01", hash = 0x8C1DC732, outfits = 2 }, + [0x70E42FE7] = { model = "ge_delloboparty_females_01", hash = 0x70E42FE7, outfits = 2 }, + [0xA9567850] = { model = "loansharking_asbminer_males_01", hash = 0xA9567850, outfits = 1 }, + [0x9DD82D05] = { model = "loansharking_horsechase1_males_01", hash = 0x9DD82D05, outfits = 2 }, + [0x4E711917] = { model = "loansharking_undertaker_females_01", hash = 0x4E711917, outfits = 4 }, + [0x67C00DFB] = { model = "loansharking_undertaker_males_01", hash = 0x67C00DFB, outfits = 3 }, + [0xDFEF070E] = { model = "male_skeleton", hash = 0xDFEF070E, outfits = 4 }, + [0xC4C0600A] = { model = "mbh_rhodesrancher_females_01", hash = 0xC4C0600A, outfits = 1 }, + [0x5F0A1475] = { model = "mbh_rhodesrancher_teens_01", hash = 0x5F0A1475, outfits = 1 }, + [0xDF4A4EAC] = { model = "mbh_skinnersearch_males_01", hash = 0xDF4A4EAC, outfits = 2 }, + [0x741E7444] = { model = "mes_abigail2_males_01", hash = 0x741E7444, outfits = 4 }, + [0xB7E1A569] = { model = "mes_finale2_females_01", hash = 0xB7E1A569, outfits = 1 }, + [0x28618747] = { model = "mes_finale2_males_01", hash = 0x28618747, outfits = 4 }, + [0x389A64ED] = { model = "mes_finale3_males_01", hash = 0x389A64ED, outfits = 3 }, + [0x45402C7A] = { model = "mes_marston1_males_01", hash = 0x45402C7A, outfits = 2 }, + [0x991856F4] = { model = "mes_marston2_males_01", hash = 0x991856F4, outfits = 4 }, + [0x3E837D5B] = { model = "mes_marston5_2_males_01", hash = 0x3E837D5B, outfits = 1 }, + [0x01C0B992] = { model = "mes_marston6_females_01", hash = 0x01C0B992, outfits = 1 }, + [0x7BE6B9E8] = { model = "mes_marston6_males_01", hash = 0x7BE6B9E8, outfits = 29 }, + [0x1DE80335] = { model = "mes_marston6_teens_01", hash = 0x1DE80335, outfits = 1 }, + [0x74B85769] = { model = "mes_sadie4_males_01", hash = 0x74B85769, outfits = 1 }, + [0x09FBB7EC] = { model = "mes_sadie5_males_01", hash = 0x09FBB7EC, outfits = 7 }, + [0xF61DB75E] = { model = "msp_bountyhunter1_females_01", hash = 0xF61DB75E, outfits = 1 }, + [0xF4CED35C] = { model = "msp_braithwaites1_males_01", hash = 0xF4CED35C, outfits = 1 }, + [0x11C73FBE] = { model = "msp_feud1_males_01", hash = 0x11C73FBE, outfits = 4 }, + [0x776A1598] = { model = "msp_fussar2_males_01", hash = 0x776A1598, outfits = 3 }, + [0xD871A306] = { model = "msp_gang2_males_01", hash = 0xD871A306, outfits = 1 }, + [0x144452D7] = { model = "msp_gang3_males_01", hash = 0x144452D7, outfits = 2 }, + [0x39FF837C] = { model = "msp_grays1_males_01", hash = 0x39FF837C, outfits = 1 }, + [0xEA4A504D] = { model = "msp_grays2_males_01", hash = 0xEA4A504D, outfits = 1 }, + [0xDBAC89A0] = { model = "msp_guarma2_males_01", hash = 0xDBAC89A0, outfits = 3 }, + [0x1E9549CA] = { model = "msp_industry1_females_01", hash = 0x1E9549CA, outfits = 7 }, + [0xB294E4CA] = { model = "msp_industry1_males_01", hash = 0xB294E4CA, outfits = 8 }, + [0x59B2E634] = { model = "msp_industry3_females_01", hash = 0x59B2E634, outfits = 1 }, + [0x00E36FB7] = { model = "msp_industry3_males_01", hash = 0x00E36FB7, outfits = 8 }, + [0x25319F37] = { model = "msp_mary1_females_01", hash = 0x25319F37, outfits = 1 }, + [0x283AECFD] = { model = "msp_mary1_males_01", hash = 0x283AECFD, outfits = 2 }, + [0xC1040D2C] = { model = "msp_mary3_males_01", hash = 0xC1040D2C, outfits = 6 }, + [0x28F695AC] = { model = "msp_mob0_males_01", hash = 0x28F695AC, outfits = 1 }, + [0xF148DBF6] = { model = "msp_mob1_females_01", hash = 0xF148DBF6, outfits = 8 }, + [0x45453194] = { model = "msp_mob1_males_01", hash = 0x45453194, outfits = 7 }, + [0x391B7870] = { model = "msp_mob1_teens_01", hash = 0x391B7870, outfits = 7 }, + [0x90ADB7F1] = { model = "msp_mob3_females_01", hash = 0x90ADB7F1, outfits = 2 }, + [0xF1804E11] = { model = "msp_mob3_males_01", hash = 0xF1804E11, outfits = 4 }, + [0xB4F27E28] = { model = "msp_mudtown3b_females_01", hash = 0xB4F27E28, outfits = 20 }, + [0x90BA2D73] = { model = "msp_mudtown3b_males_01", hash = 0x90BA2D73, outfits = 20 }, + [0xC237B30F] = { model = "msp_mudtown3_males_01", hash = 0xC237B30F, outfits = 2 }, + [0x297869BA] = { model = "msp_mudtown5_males_01", hash = 0x297869BA, outfits = 5 }, + [0xB4685DE4] = { model = "msp_native1_males_01", hash = 0xB4685DE4, outfits = 3 }, + [0x97990286] = { model = "msp_reverend1_males_01", hash = 0x97990286, outfits = 4 }, + [0x77807351] = { model = "msp_saintdenis1_females_01", hash = 0x77807351, outfits = 6 }, + [0xF21ED93D] = { model = "msp_saintdenis1_males_01", hash = 0xF21ED93D, outfits = 17 }, + [0x961D2A2D] = { model = "msp_saloon1_females_01", hash = 0x961D2A2D, outfits = 22 }, + [0x8F03BE01] = { model = "msp_saloon1_males_01", hash = 0x8F03BE01, outfits = 45 }, + [0x1A2459CB] = { model = "msp_smuggler2_males_01", hash = 0x1A2459CB, outfits = 2 }, + [0x1754F82F] = { model = "msp_trainrobbery2_males_01", hash = 0x1754F82F, outfits = 4 }, + [0x12EDDBCE] = { model = "msp_utopia1_males_01", hash = 0x12EDDBCE, outfits = 10 }, + [0xDE01E0F9] = { model = "msp_winter4_males_01", hash = 0xDE01E0F9, outfits = 1 }, + [0x00B69710] = { model = "player_three", hash = 0x00B69710, outfits = 33 }, + [0x0D7114C9] = { model = "player_zero", hash = 0x0D7114C9, outfits = 74 }, + [0x5C32DA8F] = { model = "rces_abigail3_females_01", hash = 0x5C32DA8F, outfits = 2 }, + [0x7BA67807] = { model = "rces_abigail3_males_01", hash = 0x7BA67807, outfits = 1 }, + [0xE1566351] = { model = "rces_beechers1_males_01", hash = 0xE1566351, outfits = 4 }, + [0xF63E07A5] = { model = "rces_evelynmiller_males_01", hash = 0xF63E07A5, outfits = 3 }, + [0xFB1CC58C] = { model = "rcsp_beauandpenelope1_females_01", hash = 0xFB1CC58C, outfits = 16 }, + [0x7BD8E784] = { model = "rcsp_beauandpenelope_males_01", hash = 0x7BD8E784, outfits = 5 }, + [0x6A407345] = { model = "rcsp_calderonstage2_males_01", hash = 0x6A407345, outfits = 2 }, + [0x21DF353D] = { model = "rcsp_calderonstage2_teens_01", hash = 0x21DF353D, outfits = 3 }, + [0x5278C19E] = { model = "rcsp_calderon_males_01", hash = 0x5278C19E, outfits = 3 }, + [0xCAF14192] = { model = "rcsp_calloway_males_01", hash = 0xCAF14192, outfits = 5 }, + [0xF9FF65FA] = { model = "rcsp_coachrobbery_males_01", hash = 0xF9FF65FA, outfits = 5 }, + [0xDF975FD2] = { model = "rcsp_crackpot_females_01", hash = 0xDF975FD2, outfits = 2 }, + [0x79A9623E] = { model = "rcsp_crackpot_males_01", hash = 0x79A9623E, outfits = 4 }, + [0x7F993AAD] = { model = "rcsp_creole_males_01", hash = 0x7F993AAD, outfits = 1 }, + [0xF9EB2E96] = { model = "rcsp_dutch1_males_01", hash = 0xF9EB2E96, outfits = 8 }, + [0x880560E1] = { model = "rcsp_dutch3_males_01", hash = 0x880560E1, outfits = 2 }, + [0x2B814C4B] = { model = "rcsp_edithdownes2_males_01", hash = 0x2B814C4B, outfits = 2 }, + [0xC4C59AD4] = { model = "rcsp_formyart_females_01", hash = 0xC4C59AD4, outfits = 6 }, + [0x158FFD8B] = { model = "rcsp_formyart_males_01", hash = 0x158FFD8B, outfits = 10 }, + [0x494FC69B] = { model = "rcsp_gunslingerduel4_males_01", hash = 0x494FC69B, outfits = 4 }, + [0x1268B0C9] = { model = "rcsp_herekittykitty_males_01", hash = 0x1268B0C9, outfits = 2 }, + [0x1319E95B] = { model = "rcsp_hunting1_males_01", hash = 0x1319E95B, outfits = 2 }, + [0x48EE7011] = { model = "rcsp_mrmayor_males_01", hash = 0x48EE7011, outfits = 1 }, + [0xB11093B2] = { model = "rcsp_native1s2_males_01", hash = 0xB11093B2, outfits = 5 }, + [0x4AAE5FA2] = { model = "rcsp_native_americanfathers_males_01", hash = 0x4AAE5FA2, outfits = 1 }, + [0x1B92FA61] = { model = "rcsp_oddfellows_males_01", hash = 0x1B92FA61, outfits = 1 }, + [0xBB375EE3] = { model = "rcsp_odriscolls2_females_01", hash = 0xBB375EE3, outfits = 3 }, + [0xC00FA82A] = { model = "rcsp_poisonedwell_females_01", hash = 0xC00FA82A, outfits = 4 }, + [0x36C54685] = { model = "rcsp_poisonedwell_males_01", hash = 0x36C54685, outfits = 6 }, + [0x4F0CE5B2] = { model = "rcsp_poisonedwell_teens_01", hash = 0x4F0CE5B2, outfits = 2 }, + [0xA4FD4905] = { model = "rcsp_ridethelightning_females_01", hash = 0xA4FD4905, outfits = 3 }, + [0x6325ED08] = { model = "rcsp_ridethelightning_males_01", hash = 0x6325ED08, outfits = 1 }, + [0xA3727520] = { model = "rcsp_sadie1_males_01", hash = 0xA3727520, outfits = 4 }, + [0xD8F7A42D] = { model = "rcsp_slavecatcher_males_01", hash = 0xD8F7A42D, outfits = 2 }, + [0xE486EF71] = { model = "re_animalattack_females_01", hash = 0xE486EF71, outfits = 1 }, + [0x62C7CB3C] = { model = "re_animalattack_males_01", hash = 0x62C7CB3C, outfits = 2 }, + [0x703FBE93] = { model = "re_animalmauling_males_01", hash = 0x703FBE93, outfits = 3 }, + [0xCA6AE495] = { model = "re_approach_males_01", hash = 0xCA6AE495, outfits = 2 }, + [0x5CB5E6EA] = { model = "re_beartrap_males_01", hash = 0x5CB5E6EA, outfits = 4 }, + [0xFB4137F2] = { model = "re_boatattack_males_01", hash = 0xFB4137F2, outfits = 3 }, + [0x367E8D6C] = { model = "re_burningbodies_males_01", hash = 0x367E8D6C, outfits = 3 }, + [0x95EC9DD3] = { model = "re_checkpoint_males_01", hash = 0x95EC9DD3, outfits = 2 }, + [0x629F1377] = { model = "re_coachrobbery_females_01", hash = 0x629F1377, outfits = 1 }, + [0x4499F637] = { model = "re_coachrobbery_males_01", hash = 0x4499F637, outfits = 8 }, + [0xE1568603] = { model = "re_consequence_males_01", hash = 0xE1568603, outfits = 8 }, + [0xD4AEC8B8] = { model = "re_corpsecart_females_01", hash = 0xD4AEC8B8, outfits = 2 }, + [0x5220FFBE] = { model = "re_corpsecart_males_01", hash = 0x5220FFBE, outfits = 3 }, + [0x79AC27BA] = { model = "re_crashedwagon_males_01", hash = 0x79AC27BA, outfits = 5 }, + [0xCE48FB7A] = { model = "re_darkalleyambush_males_01", hash = 0xCE48FB7A, outfits = 4 }, + [0x3069C374] = { model = "re_darkalleybum_males_01", hash = 0x3069C374, outfits = 5 }, + [0xA6D580A6] = { model = "re_darkalleystabbing_males_01", hash = 0xA6D580A6, outfits = 5 }, + [0x33DC2EF2] = { model = "re_deadbodies_males_01", hash = 0x33DC2EF2, outfits = 2 }, + [0xACDE9302] = { model = "re_deadjohn_females_01", hash = 0xACDE9302, outfits = 1 }, + [0xFDEB46B0] = { model = "re_deadjohn_males_01", hash = 0xFDEB46B0, outfits = 2 }, + [0x1FCA2943] = { model = "re_disabledbeggar_males_01", hash = 0x1FCA2943, outfits = 5 }, + [0x9DB7B801] = { model = "re_domesticdispute_females_01", hash = 0x9DB7B801, outfits = 3 }, + [0x6A11617F] = { model = "re_domesticdispute_males_01", hash = 0x6A11617F, outfits = 4 }, + [0x0E4180E1] = { model = "re_drownmurder_females_01", hash = 0x0E4180E1, outfits = 3 }, + [0xAEE8FDCD] = { model = "re_drownmurder_males_01", hash = 0xAEE8FDCD, outfits = 3 }, + [0xE5965991] = { model = "re_drunkcamp_males_01", hash = 0xE5965991, outfits = 5 }, + [0x58AF6095] = { model = "re_drunkdueler_males_01", hash = 0x58AF6095, outfits = 2 }, + [0xEF2609C7] = { model = "re_duelboaster_males_01", hash = 0xEF2609C7, outfits = 2 }, + [0xC96A4211] = { model = "re_duelwinner_females_01", hash = 0xC96A4211, outfits = 6 }, + [0x0DECFCD7] = { model = "re_duelwinner_males_01", hash = 0x0DECFCD7, outfits = 22 }, + [0x81978D28] = { model = "re_escort_females_01", hash = 0x81978D28, outfits = 2 }, + [0x2321E38B] = { model = "re_executions_males_01", hash = 0x2321E38B, outfits = 5 }, + [0xB2AC568B] = { model = "re_fleeingfamily_females_01", hash = 0xB2AC568B, outfits = 1 }, + [0x09FC3CA1] = { model = "re_fleeingfamily_males_01", hash = 0x09FC3CA1, outfits = 1 }, + [0x66F6F941] = { model = "re_footrobbery_males_01", hash = 0x66F6F941, outfits = 3 }, + [0x81BF6232] = { model = "re_friendlyoutdoorsman_males_01", hash = 0x81BF6232, outfits = 1 }, + [0x8755FDCB] = { model = "re_frozentodeath_females_01", hash = 0x8755FDCB, outfits = 1 }, + [0xC9CFCE6D] = { model = "re_frozentodeath_males_01", hash = 0xC9CFCE6D, outfits = 1 }, + [0x2E30B6C8] = { model = "re_fundraiser_females_01", hash = 0x2E30B6C8, outfits = 2 }, + [0xE459A4A5] = { model = "re_fussarchase_males_01", hash = 0xE459A4A5, outfits = 2 }, + [0x4E504380] = { model = "re_goldpanner_males_01", hash = 0x4E504380, outfits = 4 }, + [0xF502975D] = { model = "re_horserace_females_01", hash = 0xF502975D, outfits = 2 }, + [0x6CC05760] = { model = "re_horserace_males_01", hash = 0x6CC05760, outfits = 2 }, + [0x5D3650C0] = { model = "re_hostagerescue_females_01", hash = 0x5D3650C0, outfits = 2 }, + [0x65C6382C] = { model = "re_hostagerescue_males_01", hash = 0x65C6382C, outfits = 4 }, + [0xD1E15C65] = { model = "re_inbredkidnap_females_01", hash = 0xD1E15C65, outfits = 2 }, + [0x387C96BF] = { model = "re_inbredkidnap_males_01", hash = 0x387C96BF, outfits = 2 }, + [0x66CB93BC] = { model = "re_injuredrider_males_01", hash = 0x66CB93BC, outfits = 9 }, + [0x11D854F4] = { model = "re_kidnappedvictim_females_01", hash = 0x11D854F4, outfits = 4 }, + [0x1A468CD5] = { model = "re_laramiegangrustling_males_01", hash = 0x1A468CD5, outfits = 2 }, + [0xBEA07BE3] = { model = "re_loneprisoner_males_01", hash = 0xBEA07BE3, outfits = 2 }, + [0x42C14B8A] = { model = "re_lostdrunk_females_01", hash = 0x42C14B8A, outfits = 3 }, + [0x8AB27C20] = { model = "re_lostdrunk_males_01", hash = 0x8AB27C20, outfits = 4 }, + [0x0684C863] = { model = "re_lostfriend_males_01", hash = 0x0684C863, outfits = 5 }, + [0x24EA5130] = { model = "re_lostman_males_01", hash = 0x24EA5130, outfits = 1 }, + [0x791111A2] = { model = "re_moonshinecamp_males_01", hash = 0x791111A2, outfits = 4 }, + [0xCAB23E50] = { model = "re_murdercamp_males_01", hash = 0xCAB23E50, outfits = 3 }, + [0x6BB3CF86] = { model = "re_murdersuicide_females_01", hash = 0x6BB3CF86, outfits = 3 }, + [0x440BD544] = { model = "re_murdersuicide_males_01", hash = 0x440BD544, outfits = 3 }, + [0x29908B97] = { model = "re_nakedswimmer_males_01", hash = 0x29908B97, outfits = 1 }, + [0x8E6C0C2E] = { model = "re_ontherun_males_01", hash = 0x8E6C0C2E, outfits = 2 }, + [0xB0D2EE63] = { model = "re_parlorambush_males_01", hash = 0xB0D2EE63, outfits = 1 }, + [0x1FD195D2] = { model = "re_peepingtom_females_01", hash = 0x1FD195D2, outfits = 3 }, + [0xDF72A84B] = { model = "re_peepingtom_males_01", hash = 0xDF72A84B, outfits = 8 }, + [0x91824246] = { model = "re_pickpocket_males_01", hash = 0x91824246, outfits = 3 }, + [0xEFF51021] = { model = "re_pisspot_females_01", hash = 0xEFF51021, outfits = 6 }, + [0xD730B466] = { model = "re_pisspot_males_01", hash = 0xD730B466, outfits = 10 }, + [0x531B5B75] = { model = "re_playercampstrangers_females_01", hash = 0x531B5B75, outfits = 2 }, + [0x2AC9BAAF] = { model = "re_playercampstrangers_males_01", hash = 0x2AC9BAAF, outfits = 1 }, + [0x7BCC9C83] = { model = "re_poisoned_males_01", hash = 0x7BCC9C83, outfits = 2 }, + [0x3EC9C4BC] = { model = "re_prisonwagon_females_01", hash = 0x3EC9C4BC, outfits = 5 }, + [0x2D438F6C] = { model = "re_prisonwagon_males_01", hash = 0x2D438F6C, outfits = 4 }, + [0xB2F47EFD] = { model = "re_publichanging_females_01", hash = 0xB2F47EFD, outfits = 17 }, + [0x6826C60C] = { model = "re_publichanging_males_01", hash = 0x6826C60C, outfits = 74 }, + [0xB2B11AFC] = { model = "re_publichanging_teens_01", hash = 0xB2B11AFC, outfits = 2 }, + [0xBB6D5452] = { model = "re_rallydispute_males_01", hash = 0xBB6D5452, outfits = 4 }, + [0x39C84A35] = { model = "re_rallysetup_males_01", hash = 0x39C84A35, outfits = 3 }, + [0x08486093] = { model = "re_rally_males_01", hash = 0x08486093, outfits = 13 }, + [0x89FB8610] = { model = "re_ratinfestation_males_01", hash = 0x89FB8610, outfits = 1 }, + [0x487E0B26] = { model = "re_rowdydrunks_males_01", hash = 0x487E0B26, outfits = 13 }, + [0xA8D0FBF7] = { model = "re_savageaftermath_females_01", hash = 0xA8D0FBF7, outfits = 2 }, + [0xF7C4FD8C] = { model = "re_savageaftermath_males_01", hash = 0xF7C4FD8C, outfits = 5 }, + [0x0D4D77B7] = { model = "re_savagefight_females_01", hash = 0x0D4D77B7, outfits = 3 }, + [0xBA652DBE] = { model = "re_savagefight_males_01", hash = 0xBA652DBE, outfits = 3 }, + [0xFFB2BFA4] = { model = "re_savagewagon_females_01", hash = 0xFFB2BFA4, outfits = 4 }, + [0xA9CDF6A9] = { model = "re_savagewagon_males_01", hash = 0xA9CDF6A9, outfits = 6 }, + [0x6461654D] = { model = "re_savagewarning_males_01", hash = 0x6461654D, outfits = 7 }, + [0x69723D9A] = { model = "re_sharpshooter_males_01", hash = 0x69723D9A, outfits = 2 }, + [0xE47AAB16] = { model = "re_showoff_males_01", hash = 0xE47AAB16, outfits = 8 }, + [0x548636CD] = { model = "re_skippingstones_males_01", hash = 0x548636CD, outfits = 1 }, + [0x38DB4E99] = { model = "re_skippingstones_teens_01", hash = 0x38DB4E99, outfits = 1 }, + [0x717C4D5F] = { model = "re_slumambush_females_01", hash = 0x717C4D5F, outfits = 2 }, + [0x6EB40313] = { model = "re_snakebite_males_01", hash = 0x6EB40313, outfits = 2 }, + [0xF3FAA72B] = { model = "re_stalkinghunter_males_01", hash = 0xF3FAA72B, outfits = 3 }, + [0x8CB8566C] = { model = "re_strandedrider_males_01", hash = 0x8CB8566C, outfits = 4 }, + [0x0834334E] = { model = "re_street_fight_males_01", hash = 0x0834334E, outfits = 24 }, + [0xFE6B32C9] = { model = "re_taunting_01", hash = 0xFE6B32C9, outfits = 2 }, + [0x6B768512] = { model = "re_taunting_males_01", hash = 0x6B768512, outfits = 3 }, + [0x789023D8] = { model = "re_torturingcaptive_males_01", hash = 0x789023D8, outfits = 2 }, + [0x13AB574F] = { model = "re_townburial_males_01", hash = 0x13AB574F, outfits = 18 }, + [0x6C3B3B5B] = { model = "re_townconfrontation_females_01", hash = 0x6C3B3B5B, outfits = 1 }, + [0xBE60CA00] = { model = "re_townconfrontation_males_01", hash = 0xBE60CA00, outfits = 4 }, + [0x0F3C1689] = { model = "re_townrobbery_males_01", hash = 0x0F3C1689, outfits = 2 }, + [0x436EBD6C] = { model = "re_townwidow_females_01", hash = 0x436EBD6C, outfits = 3 }, + [0x3F8A4F75] = { model = "re_trainholdup_females_01", hash = 0x3F8A4F75, outfits = 3 }, + [0xB985F131] = { model = "re_trainholdup_males_01", hash = 0xB985F131, outfits = 30 }, + [0xA99399B2] = { model = "re_trappedwoman_females_01", hash = 0xA99399B2, outfits = 3 }, + [0xF1E3C6B0] = { model = "re_treasurehunter_males_01", hash = 0xF1E3C6B0, outfits = 4 }, + [0x6A5B1E21] = { model = "re_voice_females_01", hash = 0x6A5B1E21, outfits = 1 }, + [0xEE8C468A] = { model = "re_wagonthreat_females_01", hash = 0xEE8C468A, outfits = 1 }, + [0xCA5501C8] = { model = "re_wagonthreat_males_01", hash = 0xCA5501C8, outfits = 2 }, + [0xAFC8B271] = { model = "re_washedashore_males_01", hash = 0xAFC8B271, outfits = 2 }, + [0x7EB7235E] = { model = "re_wealthycouple_females_01", hash = 0x7EB7235E, outfits = 2 }, + [0x76C957EC] = { model = "re_wealthycouple_males_01", hash = 0x76C957EC, outfits = 2 }, + [0x25D32467] = { model = "re_wildman_01", hash = 0x25D32467, outfits = 2 }, + [0x52938369] = { model = "shack_missinghusband_males_01", hash = 0x52938369, outfits = 1 }, + [0x98688D36] = { model = "shack_ontherun_males_01", hash = 0x98688D36, outfits = 3 }, } -Peds.Multiplayer = { - -- [`mp_male`] = createEntry("mp_male"), +Peds.Story = { + [0xA8B1C9F7] = { model = "cs_abe", hash = 0xA8B1C9F7, outfits = 2 }, + [0xAB6C83B9] = { model = "cs_aberdeenpigfarmer", hash = 0xAB6C83B9, outfits = 1 }, + [0x78F9C32F] = { model = "cs_aberdeensister", hash = 0x78F9C32F, outfits = 2 }, + [0xEED46B48] = { model = "cs_abigailroberts", hash = 0xEED46B48, outfits = 15 }, + [0x582954CA] = { model = "cs_acrobat", hash = 0x582954CA, outfits = 1 }, + [0x6A7308E5] = { model = "cs_adamgray", hash = 0x6A7308E5, outfits = 1 }, + [0x0596AA7B] = { model = "cs_agnesdowd", hash = 0x0596AA7B, outfits = 4 }, + [0x28E45219] = { model = "cs_albertcakeesquire", hash = 0x28E45219, outfits = 1 }, + [0x1E9A4722] = { model = "cs_albertmason", hash = 0x1E9A4722, outfits = 2 }, + [0x19ACF207] = { model = "cs_andershelgerson", hash = 0x19ACF207, outfits = 4 }, + [0x31DC5CD8] = { model = "cs_angel", hash = 0x31DC5CD8, outfits = 1 }, + [0x17F33DAA] = { model = "cs_angryhusband", hash = 0x17F33DAA, outfits = 1 }, + [0xF5FE5824] = { model = "cs_angusgeddes", hash = 0xF5FE5824, outfits = 2 }, + [0x563E79E7] = { model = "cs_ansel_atherton", hash = 0x563E79E7, outfits = 1 }, + [0xCADCA094] = { model = "cs_antonyforemen", hash = 0xCADCA094, outfits = 2 }, + [0x328BA546] = { model = "cs_archerfordham", hash = 0x328BA546, outfits = 2 }, + [0x7920404D] = { model = "cs_archibaldjameson", hash = 0x7920404D, outfits = 2 }, + [0xF8BAA439] = { model = "cs_archiedown", hash = 0xF8BAA439, outfits = 4 }, + [0x5FA98D21] = { model = "cs_artappraiser", hash = 0x5FA98D21, outfits = 1 }, + [0x1B703333] = { model = "cs_asbdeputy_01", hash = 0x1B703333, outfits = 1 }, + [0xB6AC4FC1] = { model = "cs_ashton", hash = 0xB6AC4FC1, outfits = 1 }, + [0x253EF371] = { model = "cs_balloonoperator", hash = 0x253EF371, outfits = 4 }, + [0x3C3844C4] = { model = "cs_bandbassist", hash = 0x3C3844C4, outfits = 1 }, + [0x559E17B2] = { model = "cs_banddrummer", hash = 0x559E17B2, outfits = 1 }, + [0x8EA36E09] = { model = "cs_bandpianist", hash = 0x8EA36E09, outfits = 1 }, + [0xF3178A28] = { model = "cs_bandsinger", hash = 0xF3178A28, outfits = 1 }, + [0xF3C61748] = { model = "cs_baptiste", hash = 0xF3C61748, outfits = 1 }, + [0xFB614B3F] = { model = "cs_bartholomewbraithwaite", hash = 0xFB614B3F, outfits = 2 }, + [0xD29F17B9] = { model = "cs_bathingladies_01", hash = 0xD29F17B9, outfits = 7 }, + [0xFCAF1AFE] = { model = "cs_beatenupcaptain", hash = 0xFCAF1AFE, outfits = 1 }, + [0x4B780F88] = { model = "cs_beaugray", hash = 0x4B780F88, outfits = 3 }, + [0x7B67B26A] = { model = "cs_billwilliamson", hash = 0x7B67B26A, outfits = 28 }, + [0xDF333F2B] = { model = "cs_bivcoachdriver", hash = 0xDF333F2B, outfits = 1 }, + [0x1AA22618] = { model = "cs_blwphotographer", hash = 0x1AA22618, outfits = 1 }, + [0x4D3B6EF2] = { model = "cs_blwwitness", hash = 0x4D3B6EF2, outfits = 2 }, + [0xDFE6F4B8] = { model = "cs_braithwaitebutler", hash = 0xDFE6F4B8, outfits = 1 }, + [0xEB20D71E] = { model = "cs_braithwaitemaid", hash = 0xEB20D71E, outfits = 1 }, + [0x1C76CA2D] = { model = "cs_braithwaiteservant", hash = 0x1C76CA2D, outfits = 1 }, + [0x0DBD6C20] = { model = "cs_brendacrawley", hash = 0x0DBD6C20, outfits = 2 }, + [0x90C94DCD] = { model = "cs_bronte", hash = 0x90C94DCD, outfits = 4 }, + [0xD18A3207] = { model = "cs_brontesbutler", hash = 0xD18A3207, outfits = 1 }, + [0x1CC577E5] = { model = "cs_brotherdorkins", hash = 0x1CC577E5, outfits = 1 }, + [0x0AF97379] = { model = "cs_brynntildon", hash = 0x0AF97379, outfits = 2 }, + [0xD012554C] = { model = "cs_bubba", hash = 0xD012554C, outfits = 2 }, + [0x5411589F] = { model = "cs_cabaretmc", hash = 0x5411589F, outfits = 1 }, + [0xF344B612] = { model = "cs_cajun", hash = 0xF344B612, outfits = 1 }, + [0x2D0C353F] = { model = "cs_cancanman_01", hash = 0x2D0C353F, outfits = 1 }, + [0xD0C13881] = { model = "cs_cancan_01", hash = 0xD0C13881, outfits = 1 }, + [0x2F5D75D4] = { model = "cs_cancan_02", hash = 0x2F5D75D4, outfits = 1 }, + [0xBD791211] = { model = "cs_cancan_03", hash = 0xBD791211, outfits = 1 }, + [0x12DABCCF] = { model = "cs_cancan_04", hash = 0x12DABCCF, outfits = 1 }, + [0x4EB9996F] = { model = "cs_captainmonroe", hash = 0x4EB9996F, outfits = 1 }, + [0x2E6B8F33] = { model = "cs_cassidy", hash = 0x2E6B8F33, outfits = 3 }, + [0x5262264D] = { model = "cs_catherinebraithwaite", hash = 0x5262264D, outfits = 2 }, + [0x5F1AD166] = { model = "cs_cattlerustler", hash = 0x5F1AD166, outfits = 1 }, + [0x074B53CC] = { model = "cs_cavehermit", hash = 0x074B53CC, outfits = 1 }, + [0x8451929D] = { model = "cs_chainprisoner_01", hash = 0x8451929D, outfits = 4 }, + [0xF367F0C8] = { model = "cs_chainprisoner_02", hash = 0xF367F0C8, outfits = 4 }, + [0x53DD98DF] = { model = "cs_charlessmith", hash = 0x53DD98DF, outfits = 34 }, + [0x34F835DE] = { model = "cs_chelonianmaster", hash = 0x34F835DE, outfits = 5 }, + [0xD303ACD2] = { model = "cs_cigcardguy", hash = 0xD303ACD2, outfits = 1 }, + [0xDBCB9834] = { model = "cs_clay", hash = 0xDBCB9834, outfits = 1 }, + [0xE44D789F] = { model = "cs_cleet", hash = 0xE44D789F, outfits = 3 }, + [0xFF292AA4] = { model = "cs_clive", hash = 0xFF292AA4, outfits = 1 }, + [0x0E174AF7] = { model = "cs_colfavours", hash = 0x0E174AF7, outfits = 1 }, + [0xCF10E769] = { model = "cs_colmodriscoll", hash = 0xCF10E769, outfits = 6 }, + [0x72A3A733] = { model = "cs_cooper", hash = 0x72A3A733, outfits = 1 }, + [0xC43EAC49] = { model = "cs_cornwalltrainconductor", hash = 0xC43EAC49, outfits = 1 }, + [0x4BBF80D3] = { model = "cs_crackpotinventor", hash = 0x4BBF80D3, outfits = 5 }, + [0x3BF7829E] = { model = "cs_crackpotrobot", hash = 0x3BF7829E, outfits = 2 }, + [0xC061B459] = { model = "cs_creepyoldlady", hash = 0xC061B459, outfits = 1 }, + [0xD163B76B] = { model = "cs_creolecaptain", hash = 0xD163B76B, outfits = 1 }, + [0x3B38C996] = { model = "cs_creoledoctor", hash = 0x3B38C996, outfits = 1 }, + [0x96C421E4] = { model = "cs_creoleguy", hash = 0x96C421E4, outfits = 1 }, + [0x16C57A26] = { model = "cs_dalemaroney", hash = 0x16C57A26, outfits = 2 }, + [0x65A7F0E7] = { model = "cs_daveycallender", hash = 0x65A7F0E7, outfits = 1 }, + [0x9EAF0DAE] = { model = "cs_davidgeddes", hash = 0x9EAF0DAE, outfits = 2 }, + [0x66E939A1] = { model = "cs_desmond", hash = 0x66E939A1, outfits = 1 }, + [0x8ACCB671] = { model = "cs_didsbury", hash = 0x8ACCB671, outfits = 1 }, + [0x4AB3D571] = { model = "cs_dinoboneslady", hash = 0x4AB3D571, outfits = 2 }, + [0x32C998FD] = { model = "cs_disguisedduster_01", hash = 0x32C998FD, outfits = 1 }, + [0x5888E47B] = { model = "cs_disguisedduster_02", hash = 0x5888E47B, outfits = 1 }, + [0x4A3D47E4] = { model = "cs_disguisedduster_03", hash = 0x4A3D47E4, outfits = 1 }, + [0x0748A3DA] = { model = "cs_doroetheawicklow", hash = 0x0748A3DA, outfits = 3 }, + [0xF45739BF] = { model = "cs_drhiggins", hash = 0xF45739BF, outfits = 1 }, + [0xC8245F3C] = { model = "cs_drmalcolmmacintosh", hash = 0xC8245F3C, outfits = 1 }, + [0x9FC15494] = { model = "cs_duncangeddes", hash = 0x9FC15494, outfits = 1 }, + [0xA02C1ADB] = { model = "cs_dusterinformant_01", hash = 0xA02C1ADB, outfits = 1 }, + [0x73E82274] = { model = "cs_dutch", hash = 0x73E82274, outfits = 31 }, + [0x9660A42D] = { model = "cs_eagleflies", hash = 0x9660A42D, outfits = 10 }, + [0xFD38D463] = { model = "cs_edgarross", hash = 0xFD38D463, outfits = 2 }, + [0xE52A1621] = { model = "cs_edithdown", hash = 0xE52A1621, outfits = 7 }, + [0xCB790850] = { model = "cs_edith_john", hash = 0xCB790850, outfits = 1 }, + [0x58672CFB] = { model = "cs_edmundlowry", hash = 0x58672CFB, outfits = 1 }, + [0x88A17BE6] = { model = "cs_escapeartist", hash = 0x88A17BE6, outfits = 5 }, + [0x929C4793] = { model = "cs_escapeartistassistant", hash = 0x929C4793, outfits = 1 }, + [0x2C4CA0A0] = { model = "cs_evelynmiller", hash = 0x2C4CA0A0, outfits = 3 }, + [0xF0EAC712] = { model = "cs_exconfedinformant", hash = 0xF0EAC712, outfits = 1 }, + [0x11E95A0F] = { model = "cs_exconfedsleader_01", hash = 0x11E95A0F, outfits = 1 }, + [0x59D39598] = { model = "cs_exoticcollector", hash = 0x59D39598, outfits = 2 }, + [0xFA274E38] = { model = "cs_famousgunslinger_01", hash = 0xFA274E38, outfits = 2 }, + [0x504E7A85] = { model = "cs_famousgunslinger_02", hash = 0x504E7A85, outfits = 1 }, + [0xDEBB9761] = { model = "cs_famousgunslinger_03", hash = 0xDEBB9761, outfits = 1 }, + [0x14F583D4] = { model = "cs_famousgunslinger_04", hash = 0x14F583D4, outfits = 1 }, + [0x236820B9] = { model = "cs_famousgunslinger_05", hash = 0x236820B9, outfits = 1 }, + [0x79B7CD5F] = { model = "cs_famousgunslinger_06", hash = 0x79B7CD5F, outfits = 3 }, + [0x8D374040] = { model = "cs_featherstonchambers", hash = 0x8D374040, outfits = 1 }, + [0x8D6618C3] = { model = "cs_featsofstrength", hash = 0x8D6618C3, outfits = 2 }, + [0x53308B76] = { model = "cs_fightref", hash = 0x53308B76, outfits = 1 }, + [0xEADD5782] = { model = "cs_fire_breather", hash = 0xEADD5782, outfits = 4 }, + [0x5A3FC29E] = { model = "cs_fishcollector", hash = 0x5A3FC29E, outfits = 4 }, + [0x61F3D8F8] = { model = "cs_forgivenhusband_01", hash = 0x61F3D8F8, outfits = 1 }, + [0xD36D9790] = { model = "cs_forgivenwife_01", hash = 0xD36D9790, outfits = 1 }, + [0xB4449A8A] = { model = "cs_formyartbigwoman", hash = 0xB4449A8A, outfits = 1 }, + [0x9634D7B5] = { model = "cs_francis_sinclair", hash = 0x9634D7B5, outfits = 1 }, + [0xD809F182] = { model = "cs_frenchartist", hash = 0xD809F182, outfits = 2 }, + [0xF258BC07] = { model = "cs_frenchman_01", hash = 0xF258BC07, outfits = 1 }, + [0x8D883B70] = { model = "cs_fussar", hash = 0x8D883B70, outfits = 2 }, + [0x968AB03C] = { model = "cs_garethbraithwaite", hash = 0x968AB03C, outfits = 1 }, + [0x4C5C60B2] = { model = "cs_gavin", hash = 0x4C5C60B2, outfits = 2 }, + [0x3CCC99B1] = { model = "cs_genstoryfemale", hash = 0x3CCC99B1, outfits = 2 }, + [0xD9E8B86A] = { model = "cs_genstorymale", hash = 0xD9E8B86A, outfits = 1 }, + [0xBB35418E] = { model = "cs_geraldbraithwaite", hash = 0xBB35418E, outfits = 2 }, + [0x39FD28AE] = { model = "cs_germandaughter", hash = 0x39FD28AE, outfits = 1 }, + [0x5205A246] = { model = "cs_germanfather", hash = 0x5205A246, outfits = 5 }, + [0x771EA179] = { model = "cs_germanmother", hash = 0x771EA179, outfits = 3 }, + [0x0D5EB39A] = { model = "cs_germanson", hash = 0x0D5EB39A, outfits = 2 }, + [0xE1B35B43] = { model = "cs_gilbertknightly", hash = 0xE1B35B43, outfits = 1 }, + [0x9B5487C9] = { model = "cs_gloria", hash = 0x9B5487C9, outfits = 1 }, + [0xBDB43F31] = { model = "cs_grizzledjon", hash = 0xBDB43F31, outfits = 2 }, + [0x9EDFC6EB] = { model = "cs_guidomartelli", hash = 0x9EDFC6EB, outfits = 3 }, + [0x6D084810] = { model = "cs_hamish", hash = 0x6D084810, outfits = 1 }, + [0x6D8B4BB9] = { model = "cs_hectorfellowes", hash = 0x6D8B4BB9, outfits = 3 }, + [0x30324925] = { model = "cs_henrilemiux", hash = 0x30324925, outfits = 2 }, + [0x0C60474A] = { model = "cs_herbalist", hash = 0x0C60474A, outfits = 1 }, + [0x4C165ECF] = { model = "cs_hercule", hash = 0x4C165ECF, outfits = 2 }, + [0xA560451D] = { model = "cs_hestonjameson", hash = 0xA560451D, outfits = 2 }, + [0xB0C337A3] = { model = "cs_hobartcrawley", hash = 0xB0C337A3, outfits = 2 }, + [0x490733E8] = { model = "cs_hoseamatthews", hash = 0x490733E8, outfits = 13 }, + [0x88094B37] = { model = "cs_iangray", hash = 0x88094B37, outfits = 1 }, + [0x71F7EE1B] = { model = "cs_jackmarston", hash = 0x71F7EE1B, outfits = 8 }, + [0xDA5990BC] = { model = "cs_jackmarston_teen", hash = 0xDA5990BC, outfits = 10 }, + [0x004C2AF4] = { model = "cs_jamie", hash = 0x004C2AF4, outfits = 1 }, + [0xD2E125B6] = { model = "cs_janson", hash = 0xD2E125B6, outfits = 1 }, + [0x6DE3800C] = { model = "cs_javierescuella", hash = 0x6DE3800C, outfits = 32 }, + [0x5548F1E9] = { model = "cs_jeb", hash = 0x5548F1E9, outfits = 3 }, + [0x6C30159E] = { model = "cs_jimcalloway", hash = 0x6C30159E, outfits = 1 }, + [0x9DE34628] = { model = "cs_jockgray", hash = 0x9DE34628, outfits = 1 }, + [0xE569265F] = { model = "cs_joe", hash = 0xE569265F, outfits = 2 }, + [0x54951099] = { model = "cs_joebutler", hash = 0x54951099, outfits = 2 }, + [0x05B6D06D] = { model = "cs_johnmarston", hash = 0x05B6D06D, outfits = 31 }, + [0x442FBDDC] = { model = "cs_johnthebaptisingmadman", hash = 0x442FBDDC, outfits = 2 }, + [0x7D357931] = { model = "cs_johnweathers", hash = 0x7D357931, outfits = 1 }, + [0x3BFD7D5D] = { model = "cs_josiahtrelawny", hash = 0x3BFD7D5D, outfits = 10 }, + [0xB4F83876] = { model = "cs_jules", hash = 0xB4F83876, outfits = 2 }, + [0x9A3E29FB] = { model = "cs_karen", hash = 0x9A3E29FB, outfits = 16 }, + [0x013504F0] = { model = "cs_karensjohn_01", hash = 0x013504F0, outfits = 2 }, + [0x739BA0D6] = { model = "cs_kieran", hash = 0x739BA0D6, outfits = 11 }, + [0xBFD90AEA] = { model = "cs_laramie", hash = 0xBFD90AEA, outfits = 2 }, + [0x97F8823A] = { model = "cs_leighgray", hash = 0x97F8823A, outfits = 1 }, + [0x3AEDE260] = { model = "cs_lemiuxassistant", hash = 0x3AEDE260, outfits = 2 }, + [0xF8AE5F8D] = { model = "cs_lenny", hash = 0xF8AE5F8D, outfits = 17 }, + [0xC91ADF62] = { model = "cs_leon", hash = 0xC91ADF62, outfits = 3 }, + [0xFA0312B3] = { model = "cs_leostrauss", hash = 0xFA0312B3, outfits = 11 }, + [0x4D24C49A] = { model = "cs_levisimon", hash = 0x4D24C49A, outfits = 1 }, + [0x8A1FCA47] = { model = "cs_leviticuscornwall", hash = 0x8A1FCA47, outfits = 1 }, + [0x19686DFA] = { model = "cs_lillianpowell", hash = 0x19686DFA, outfits = 3 }, + [0x55C7D09F] = { model = "cs_lillymillet", hash = 0x55C7D09F, outfits = 1 }, + [0x4DBE35B8] = { model = "cs_londonderryson", hash = 0x4DBE35B8, outfits = 1 }, + [0x77435EF1] = { model = "cs_lucanapoli", hash = 0x77435EF1, outfits = 1 }, + [0x5F5942DD] = { model = "cs_magnifico", hash = 0x5F5942DD, outfits = 2 }, + [0x4B6ECAEF] = { model = "cs_mamawatson", hash = 0x4B6ECAEF, outfits = 1 }, + [0x3940877D] = { model = "cs_marshall_thurwell", hash = 0x3940877D, outfits = 1 }, + [0x9B37429C] = { model = "cs_marybeth", hash = 0x9B37429C, outfits = 8 }, + [0x3EA5B5BC] = { model = "cs_marylinton", hash = 0x3EA5B5BC, outfits = 5 }, + [0xF04DEE7E] = { model = "cs_meditatingmonk", hash = 0xF04DEE7E, outfits = 1 }, + [0xC0321438] = { model = "cs_meredith", hash = 0xC0321438, outfits = 1 }, + [0x3112E4AC] = { model = "cs_meredithsmother", hash = 0x3112E4AC, outfits = 1 }, + [0xDE361D65] = { model = "cs_micahbell", hash = 0xDE361D65, outfits = 32 }, + [0xE2D294AB] = { model = "cs_micahsnemesis", hash = 0xE2D294AB, outfits = 1 }, + [0xA1DFB431] = { model = "cs_mickey", hash = 0xA1DFB431, outfits = 2 }, + [0x01004B26] = { model = "cs_miltonandrews", hash = 0x01004B26, outfits = 2 }, + [0x859CBAAC] = { model = "cs_missmarjorie", hash = 0x859CBAAC, outfits = 3 }, + [0xFBBC94C6] = { model = "cs_mixedracekid", hash = 0xFBBC94C6, outfits = 2 }, + [0x9BAAB546] = { model = "cs_moira", hash = 0x9BAAB546, outfits = 1 }, + [0xEB55C35E] = { model = "cs_mollyoshea", hash = 0xEB55C35E, outfits = 8 }, + [0x4C4448BA] = { model = "cs_mp_alfredo_montez", hash = 0x4C4448BA, outfits = 4 }, + [0x931F01E5] = { model = "cs_mp_allison", hash = 0x931F01E5, outfits = 1 }, + [0x30E034CA] = { model = "cs_mp_amos_lansing", hash = 0x30E034CA, outfits = 1 }, + [0x39456FEE] = { model = "cs_mp_bonnie", hash = 0x39456FEE, outfits = 1 }, + [0x892944C5] = { model = "cs_mp_bountyhunter", hash = 0x892944C5, outfits = 1 }, + [0x9F7769F3] = { model = "cs_mp_camp_cook", hash = 0x9F7769F3, outfits = 3 }, + [0xEADDA26C] = { model = "cs_mp_cliff", hash = 0xEADDA26C, outfits = 1 }, + [0x1DD24709] = { model = "cs_mp_cripps", hash = 0x1DD24709, outfits = 25 }, + [0x2CDA4B15] = { model = "cs_mp_grace_lancing", hash = 0x2CDA4B15, outfits = 1 }, + [0x893E6E25] = { model = "cs_mp_hans", hash = 0x893E6E25, outfits = 1 }, + [0xDAB77DF1] = { model = "cs_mp_henchman", hash = 0xDAB77DF1, outfits = 3 }, + [0x4BFBF802] = { model = "cs_mp_horley", hash = 0x4BFBF802, outfits = 1 }, + [0x2EDEF9ED] = { model = "cs_mp_jeremiah_shaw", hash = 0x2EDEF9ED, outfits = 1 }, + [0x6B759DBB] = { model = "cs_mp_jessica", hash = 0x6B759DBB, outfits = 3 }, + [0x8BF81D72] = { model = "cs_mp_jorge_montez", hash = 0x8BF81D72, outfits = 2 }, + [0x9A00FB76] = { model = "cs_mp_langston", hash = 0x9A00FB76, outfits = 1 }, + [0x75DCACF2] = { model = "cs_mp_lee", hash = 0x75DCACF2, outfits = 1 }, + [0xB93CB429] = { model = "cs_mp_mabel", hash = 0xB93CB429, outfits = 1 }, + [0xE24327D2] = { model = "cs_mp_marshall_davies", hash = 0xE24327D2, outfits = 2 }, + [0x65C51599] = { model = "cs_mp_moonshiner", hash = 0x65C51599, outfits = 1 }, + [0xA3261C0D] = { model = "cs_mp_mradler", hash = 0xA3261C0D, outfits = 1 }, + [0xE87FE55D] = { model = "cs_mp_oldman_jones", hash = 0xE87FE55D, outfits = 2 }, + [0x4549CCA0] = { model = "cs_mp_revenge_marshall", hash = 0x4549CCA0, outfits = 1 }, + [0xE757DE29] = { model = "cs_mp_samson_finch", hash = 0xE757DE29, outfits = 3 }, + [0x9A3713AD] = { model = "cs_mp_shaky", hash = 0x9A3713AD, outfits = 1 }, + [0x28AE1CF3] = { model = "cs_mp_sherifffreeman", hash = 0x28AE1CF3, outfits = 1 }, + [0xBB202735] = { model = "cs_mp_teddybrown", hash = 0xBB202735, outfits = 2 }, + [0xB36FBE5E] = { model = "cs_mp_terrance", hash = 0xB36FBE5E, outfits = 1 }, + [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [0xE20455E9] = { model = "cs_mp_travellingsaleswoman", hash = 0xE20455E9, outfits = 1 }, + [0xB496E3FB] = { model = "cs_mp_went", hash = 0xB496E3FB, outfits = 3 }, + [0xAB270CC9] = { model = "cs_mradler", hash = 0xAB270CC9, outfits = 3 }, + [0xA89E5746] = { model = "cs_mrdevon", hash = 0xA89E5746, outfits = 1 }, + [0xEFBFEDB1] = { model = "cs_mrlinton", hash = 0xEFBFEDB1, outfits = 1 }, + [0x3AAAB060] = { model = "cs_mrpearson", hash = 0x3AAAB060, outfits = 9 }, + [0x155E51DB] = { model = "cs_mrsadler", hash = 0x155E51DB, outfits = 22 }, + [0x2AB79B76] = { model = "cs_mrsfellows", hash = 0x2AB79B76, outfits = 1 }, + [0xEFC21975] = { model = "cs_mrsgeddes", hash = 0xEFC21975, outfits = 1 }, + [0x5187C29B] = { model = "cs_mrslondonderry", hash = 0x5187C29B, outfits = 1 }, + [0xFEFB81C0] = { model = "cs_mrsweathers", hash = 0xFEFB81C0, outfits = 1 }, + [0x4481AEDF] = { model = "cs_mrs_calhoun", hash = 0x4481AEDF, outfits = 1 }, + [0x62C1389E] = { model = "cs_mrs_sinclair", hash = 0x62C1389E, outfits = 1 }, + [0x41A0B3F7] = { model = "cs_mrwayne", hash = 0x41A0B3F7, outfits = 1 }, + [0x84490A12] = { model = "cs_mud2bigguy", hash = 0x84490A12, outfits = 6 }, + [0xF65EE3E1] = { model = "cs_mysteriousstranger", hash = 0xF65EE3E1, outfits = 1 }, + [0x753590C4] = { model = "cs_nbxdrunk", hash = 0x753590C4, outfits = 2 }, + [0x79AEBA08] = { model = "cs_nbxexecuted", hash = 0x79AEBA08, outfits = 2 }, + [0xC19649AA] = { model = "cs_nbxpolicechiefformal", hash = 0xC19649AA, outfits = 1 }, + [0xC175E70A] = { model = "cs_nbxreceptionist_01", hash = 0xC175E70A, outfits = 1 }, + [0xB304BB4D] = { model = "cs_nial_whelan", hash = 0xB304BB4D, outfits = 1 }, + [0x4995C0A5] = { model = "cs_nicholastimmins", hash = 0x4995C0A5, outfits = 2 }, + [0x031076F6] = { model = "cs_nils", hash = 0x031076F6, outfits = 1 }, + [0xB4B65231] = { model = "cs_norrisforsythe", hash = 0xB4B65231, outfits = 2 }, + [0x04156A73] = { model = "cs_obediahhinton", hash = 0x04156A73, outfits = 1 }, + [0xA91215CD] = { model = "cs_oddfellowspinhead", hash = 0xA91215CD, outfits = 2 }, + [0x62589584] = { model = "cs_odprostitute", hash = 0x62589584, outfits = 1 }, + [0x5B00992C] = { model = "cs_operasinger", hash = 0x5B00992C, outfits = 1 }, + [0xBC537EB7] = { model = "cs_paytah", hash = 0xBC537EB7, outfits = 4 }, + [0x8617AB88] = { model = "cs_penelopebraithwaite", hash = 0x8617AB88, outfits = 2 }, + [0xA06649D4] = { model = "cs_pinkertongoon", hash = 0xA06649D4, outfits = 1 }, + [0x2E258627] = { model = "cs_poisonwellshaman", hash = 0x2E258627, outfits = 2 }, + [0x19E97506] = { model = "cs_poorjoe", hash = 0x19E97506, outfits = 1 }, + [0xDD5F0343] = { model = "cs_priest_wedding", hash = 0xDD5F0343, outfits = 1 }, + [0x89F94DED] = { model = "cs_princessisabeau", hash = 0x89F94DED, outfits = 1 }, + [0x7E1809E8] = { model = "cs_professorbell", hash = 0x7E1809E8, outfits = 1 }, + [0x85FE1E48] = { model = "cs_rainsfall", hash = 0x85FE1E48, outfits = 5 }, + [0x7CF95C98] = { model = "cs_ramon_cortez", hash = 0x7CF95C98, outfits = 1 }, + [0x656E59CC] = { model = "cs_reverendfortheringham", hash = 0x656E59CC, outfits = 2 }, + [0x60713474] = { model = "cs_revswanson", hash = 0x60713474, outfits = 7 }, + [0xC7BB68D5] = { model = "cs_rhodeputy_01", hash = 0xC7BB68D5, outfits = 1 }, + [0x583389C7] = { model = "cs_rhodeputy_02", hash = 0x583389C7, outfits = 1 }, + [0x774AB298] = { model = "cs_rhodesassistant", hash = 0x774AB298, outfits = 1 }, + [0x0F23E138] = { model = "cs_rhodeskidnapvictim", hash = 0x0F23E138, outfits = 1 }, + [0x7FA4ED12] = { model = "cs_rhodessaloonbouncer", hash = 0x7FA4ED12, outfits = 1 }, + [0x772D9802] = { model = "cs_ringmaster", hash = 0x772D9802, outfits = 1 }, + [0xF79A7EC2] = { model = "cs_rockyseven_widow", hash = 0xF79A7EC2, outfits = 5 }, + [0xF0297311] = { model = "cs_samaritan", hash = 0xF0297311, outfits = 1 }, + [0xCF75E336] = { model = "cs_scottgray", hash = 0xCF75E336, outfits = 1 }, + [0xCF12BFF0] = { model = "cs_sddoctor_01", hash = 0xCF12BFF0, outfits = 1 }, + [0xE4E66C41] = { model = "cs_sdpriest", hash = 0xE4E66C41, outfits = 1 }, + [0x6DC2F2F2] = { model = "cs_sdsaloondrunk_01", hash = 0x6DC2F2F2, outfits = 1 }, + [0x0F274F72] = { model = "cs_sdstreetkidthief", hash = 0x0F274F72, outfits = 1 }, + [0xEEB2E5FD] = { model = "cs_sd_streetkid_01", hash = 0xEEB2E5FD, outfits = 1 }, + [0x678E7CA0] = { model = "cs_sd_streetkid_01a", hash = 0x678E7CA0, outfits = 1 }, + [0x32541234] = { model = "cs_sd_streetkid_01b", hash = 0x32541234, outfits = 1 }, + [0x6EF76684] = { model = "cs_sd_streetkid_02", hash = 0x6EF76684, outfits = 1 }, + [0xE0D7A2B2] = { model = "cs_sean", hash = 0xE0D7A2B2, outfits = 17 }, + [0xC192917D] = { model = "cs_sherifffreeman", hash = 0xC192917D, outfits = 2 }, + [0xCEE81C27] = { model = "cs_sheriffowens", hash = 0xCEE81C27, outfits = 2 }, + [0x839CCCAC] = { model = "cs_sistercalderon", hash = 0x839CCCAC, outfits = 1 }, + [0xE9B80099] = { model = "cs_slavecatcher", hash = 0xE9B80099, outfits = 1 }, + [0x51C80EFD] = { model = "cs_soothsayer", hash = 0x51C80EFD, outfits = 2 }, + [0x4B7EAC47] = { model = "cs_strawberryoutlaw_01", hash = 0x4B7EAC47, outfits = 1 }, + [0x99D4C8F2] = { model = "cs_strawberryoutlaw_02", hash = 0x99D4C8F2, outfits = 1 }, + [0xA792AF18] = { model = "cs_strdeputy_01", hash = 0xA792AF18, outfits = 1 }, + [0xDDD99BA5] = { model = "cs_strdeputy_02", hash = 0xDDD99BA5, outfits = 1 }, + [0x83E7B7BB] = { model = "cs_strsheriff_01", hash = 0x83E7B7BB, outfits = 1 }, + [0x196D5830] = { model = "cs_sunworshipper", hash = 0x196D5830, outfits = 1 }, + [0x6509A069] = { model = "cs_susangrimshaw", hash = 0x6509A069, outfits = 12 }, + [0xA9A328D5] = { model = "cs_swampfreak", hash = 0xA9A328D5, outfits = 1 }, + [0x87A4C0B9] = { model = "cs_swampweirdosonny", hash = 0x87A4C0B9, outfits = 3 }, + [0x9654DDCF] = { model = "cs_sworddancer", hash = 0x9654DDCF, outfits = 1 }, + [0x53E86B71] = { model = "cs_tavishgray", hash = 0x53E86B71, outfits = 1 }, + [0x21914E41] = { model = "cs_taxidermist", hash = 0x21914E41, outfits = 1 }, + [0x49644A6F] = { model = "cs_theodorelevin", hash = 0x49644A6F, outfits = 2 }, + [0x03DFFD04] = { model = "cs_thomasdown", hash = 0x03DFFD04, outfits = 2 }, + [0xD690782C] = { model = "cs_tigerhandler", hash = 0xD690782C, outfits = 1 }, + [0x3DE6A545] = { model = "cs_tilly", hash = 0x3DE6A545, outfits = 12 }, + [0x8868C876] = { model = "cs_timothydonahue", hash = 0x8868C876, outfits = 2 }, + [0x8853FF79] = { model = "cs_tinyhermit", hash = 0x8853FF79, outfits = 2 }, + [0xBABFD910] = { model = "cs_tomdickens", hash = 0xBABFD910, outfits = 3 }, + [0x13458A93] = { model = "cs_towncrier", hash = 0x13458A93, outfits = 2 }, + [0x3AF591E8] = { model = "cs_treasurehunter", hash = 0x3AF591E8, outfits = 1 }, + [0x361005DD] = { model = "cs_twinbrother_01", hash = 0x361005DD, outfits = 2 }, + [0xA49B62BA] = { model = "cs_twinbrother_02", hash = 0xA49B62BA, outfits = 2 }, + [0xFD3C2696] = { model = "cs_twingroupie_01", hash = 0xFD3C2696, outfits = 1 }, + [0xEB8B8335] = { model = "cs_twingroupie_02", hash = 0xEB8B8335, outfits = 1 }, + [0xC63726DF] = { model = "cs_uncle", hash = 0xC63726DF, outfits = 12 }, + [0x87EF0B8D] = { model = "cs_unidusterjail_01", hash = 0x87EF0B8D, outfits = 1 }, + [0x70BEBBCF] = { model = "cs_valauctionboss_01", hash = 0x70BEBBCF, outfits = 2 }, + [0x6C07EC33] = { model = "cs_valdeputy_01", hash = 0x6C07EC33, outfits = 1 }, + [0x4124A908] = { model = "cs_valprayingman", hash = 0x4124A908, outfits = 1 }, + [0x3A643444] = { model = "cs_valprostitute_01", hash = 0x3A643444, outfits = 1 }, + [0x2B769669] = { model = "cs_valprostitute_02", hash = 0x2B769669, outfits = 1 }, + [0x8FB23370] = { model = "cs_valsheriff", hash = 0x8FB23370, outfits = 2 }, + [0xD95BCB7D] = { model = "cs_vampire", hash = 0xD95BCB7D, outfits = 1 }, + [0x36781BAC] = { model = "cs_vht_bathgirl", hash = 0x36781BAC, outfits = 1 }, + [0xFB0A7382] = { model = "cs_wapitiboy", hash = 0xFB0A7382, outfits = 1 }, + [0x9C0C8EE9] = { model = "cs_warvet", hash = 0x9C0C8EE9, outfits = 3 }, + [0x69439F09] = { model = "cs_watson_01", hash = 0x69439F09, outfits = 1 }, + [0x8C16E4AF] = { model = "cs_watson_02", hash = 0x8C16E4AF, outfits = 1 }, + [0x44EFD66E] = { model = "cs_watson_03", hash = 0x44EFD66E, outfits = 1 }, + [0x02E86DB1] = { model = "cs_welshfighter", hash = 0x02E86DB1, outfits = 1 }, + [0x03387076] = { model = "cs_wintonholmes", hash = 0x03387076, outfits = 3 }, + [0xBE52968B] = { model = "cs_wrobel", hash = 0xBE52968B, outfits = 1 }, + [0x512129F2] = { model = "u_f_m_bht_wife", hash = 0x512129F2, outfits = 1 }, + [0x5F3EE4D3] = { model = "u_f_m_circuswagon_01", hash = 0x5F3EE4D3, outfits = 1 }, + [0xD93F012D] = { model = "u_f_m_emrdaughter_01", hash = 0xD93F012D, outfits = 5 }, + [0xB1DCC83F] = { model = "u_f_m_fussar1lady_01", hash = 0xB1DCC83F, outfits = 1 }, + [0x76C45EF0] = { model = "u_f_m_htlwife_01", hash = 0x76C45EF0, outfits = 1 }, + [0x41ACC7BC] = { model = "u_f_m_lagmother_01", hash = 0x41ACC7BC, outfits = 9 }, + [0xAF6FBD47] = { model = "u_f_m_nbxresident_01", hash = 0xAF6FBD47, outfits = 2 }, + [0x99372227] = { model = "u_f_m_rhdnudewoman_01", hash = 0x99372227, outfits = 1 }, + [0xE96BC143] = { model = "u_f_m_rkshomesteadtenant_01", hash = 0xE96BC143, outfits = 1 }, + [0xC71BF1D1] = { model = "u_f_m_story_blackbelle_01", hash = 0xC71BF1D1, outfits = 1 }, + [0x3C1CEAE0] = { model = "u_f_m_story_nightfolk_01", hash = 0x3C1CEAE0, outfits = 1 }, + [0x0A219825] = { model = "u_f_m_tljbartender_01", hash = 0x0A219825, outfits = 9 }, + [0xF1711637] = { model = "u_f_m_tumgeneralstoreowner_01", hash = 0xF1711637, outfits = 9 }, + [0x8F549F46] = { model = "u_f_m_valtownfolk_01", hash = 0x8F549F46, outfits = 2 }, + [0x7CC2FA23] = { model = "u_f_m_valtownfolk_02", hash = 0x7CC2FA23, outfits = 2 }, + [0x3E471440] = { model = "u_f_m_vhtbartender_01", hash = 0x3E471440, outfits = 7 }, + [0xEDC0F72A] = { model = "u_f_o_hermit_woman_01", hash = 0xEDC0F72A, outfits = 1 }, + [0xAE38220C] = { model = "u_f_o_wtctownfolk_01", hash = 0xAE38220C, outfits = 1 }, + [0x74DF3938] = { model = "u_f_y_braithwaitessecret_01", hash = 0x74DF3938, outfits = 2 }, + [0xBCC8D35F] = { model = "u_f_y_czphomesteaddaughter_01", hash = 0xBCC8D35F, outfits = 1 }, + [0x8C9F0E5D] = { model = "u_m_m_announcer_01", hash = 0x8C9F0E5D, outfits = 2 }, + [0x0717C9F9] = { model = "u_m_m_apfdeadman_01", hash = 0x0717C9F9, outfits = 1 }, + [0xC5DF0CFE] = { model = "u_m_m_armgeneralstoreowner_01", hash = 0xC5DF0CFE, outfits = 9 }, + [0x2AB8094F] = { model = "u_m_m_armtrainstationworker_01", hash = 0x2AB8094F, outfits = 9 }, + [0x8E4FCB05] = { model = "u_m_m_armundertaker_01", hash = 0x8E4FCB05, outfits = 9 }, + [0x4F93F6BE] = { model = "u_m_m_armytrn4_01", hash = 0x4F93F6BE, outfits = 1 }, + [0x80D04451] = { model = "u_m_m_asbgunsmith_01", hash = 0x80D04451, outfits = 9 }, + [0x0B8D495D] = { model = "u_m_m_asbprisoner_01", hash = 0x0B8D495D, outfits = 2 }, + [0x1DCEEDE0] = { model = "u_m_m_asbprisoner_02", hash = 0x1DCEEDE0, outfits = 2 }, + [0xC3E1BC18] = { model = "u_m_m_bht_banditomine", hash = 0xC3E1BC18, outfits = 2 }, + [0xC3B9DF14] = { model = "u_m_m_bht_banditoshack", hash = 0xC3B9DF14, outfits = 4 }, + [0x2B0B3AC2] = { model = "u_m_m_bht_benedictallbright", hash = 0x2B0B3AC2, outfits = 1 }, + [0xACBA905B] = { model = "u_m_m_bht_blackwaterhunt", hash = 0xACBA905B, outfits = 1 }, + [0x652E0944] = { model = "u_m_m_bht_exconfedcampreturn", hash = 0x652E0944, outfits = 1 }, + [0xCC013F0A] = { model = "u_m_m_bht_laramiesleeping", hash = 0xCC013F0A, outfits = 1 }, + [0xB7281910] = { model = "u_m_m_bht_lover", hash = 0xB7281910, outfits = 1 }, + [0x60D033B6] = { model = "u_m_m_bht_mineforeman", hash = 0x60D033B6, outfits = 1 }, + [0x22944F0D] = { model = "u_m_m_bht_nathankirk", hash = 0x22944F0D, outfits = 1 }, + [0xC5BCD5E8] = { model = "u_m_m_bht_odriscolldrunk", hash = 0xC5BCD5E8, outfits = 1 }, + [0xA2B8EFDC] = { model = "u_m_m_bht_odriscollmauled", hash = 0xA2B8EFDC, outfits = 1 }, + [0x2E6B2DB0] = { model = "u_m_m_bht_odriscollsleeping", hash = 0x2E6B2DB0, outfits = 1 }, + [0xC82782C2] = { model = "u_m_m_bht_oldman", hash = 0xC82782C2, outfits = 1 }, + [0x62600029] = { model = "U_M_M_BHT_OUTLAWMAULED", hash = 0x62600029, outfits = 1 }, + [0x2AC6EC80] = { model = "u_m_m_bht_saintdenissaloon", hash = 0x2AC6EC80, outfits = 1 }, + [0x861F7616] = { model = "u_m_m_bht_shackescape", hash = 0x861F7616, outfits = 1 }, + [0x728D7C04] = { model = "u_m_m_bht_skinnerbrother", hash = 0x728D7C04, outfits = 3 }, + [0x8E18978A] = { model = "u_m_m_bht_skinnersearch", hash = 0x8E18978A, outfits = 3 }, + [0x66EAB43A] = { model = "u_m_m_bht_strawberryduel", hash = 0x66EAB43A, outfits = 1 }, + [0xB8195626] = { model = "u_m_m_bivforeman_01", hash = 0xB8195626, outfits = 5 }, + [0xD3A41495] = { model = "u_m_m_blwtrainstationworker_01", hash = 0xD3A41495, outfits = 9 }, + [0x143F8FAC] = { model = "u_m_m_bulletcatchvolunteer_01", hash = 0x143F8FAC, outfits = 2 }, + [0xA27B73FE] = { model = "u_m_m_bwmstablehand_01", hash = 0xA27B73FE, outfits = 4 }, + [0xF78F6717] = { model = "u_m_m_cabaretfirehat_01", hash = 0xF78F6717, outfits = 1 }, + [0x675B5537] = { model = "u_m_m_cajhomestead_01", hash = 0x675B5537, outfits = 1 }, + [0xA2FA1725] = { model = "u_m_m_chelonianjumper_01", hash = 0xA2FA1725, outfits = 2 }, + [0x913F73B0] = { model = "u_m_m_chelonianjumper_02", hash = 0x913F73B0, outfits = 2 }, + [0x7FDED0EF] = { model = "u_m_m_chelonianjumper_03", hash = 0x7FDED0EF, outfits = 2 }, + [0x5E1D8D6D] = { model = "u_m_m_chelonianjumper_04", hash = 0x5E1D8D6D, outfits = 2 }, + [0x67604D20] = { model = "u_m_m_circuswagon_01", hash = 0x67604D20, outfits = 1 }, + [0xC31F3D4D] = { model = "u_m_m_cktmanager_01", hash = 0xC31F3D4D, outfits = 1 }, + [0x4CB41AA6] = { model = "u_m_m_cornwalldriver_01", hash = 0x4CB41AA6, outfits = 1 }, + [0x32830A89] = { model = "u_m_m_crdhomesteadtenant_01", hash = 0x32830A89, outfits = 2 }, + [0x693D77FD] = { model = "u_m_m_crdhomesteadtenant_02", hash = 0x693D77FD, outfits = 2 }, + [0xD8053806] = { model = "u_m_m_crdwitness_01", hash = 0xD8053806, outfits = 2 }, + [0xDA855AC6] = { model = "u_m_m_creolecaptain_01", hash = 0xDA855AC6, outfits = 1 }, + [0x08C9910B] = { model = "u_m_m_czphomesteadfather_01", hash = 0x08C9910B, outfits = 1 }, + [0xA9A4DB09] = { model = "u_m_m_dorhomesteadhusband_01", hash = 0xA9A4DB09, outfits = 1 }, + [0xCA3F1D23] = { model = "u_m_m_emrfarmhand_03", hash = 0xCA3F1D23, outfits = 2 }, + [0xD08F9FEC] = { model = "u_m_m_emrfather_01", hash = 0xD08F9FEC, outfits = 5 }, + [0x9955028D] = { model = "u_m_m_executioner_01", hash = 0x9955028D, outfits = 1 }, + [0x0CD32813] = { model = "u_m_m_fatduster_01", hash = 0x0CD32813, outfits = 2 }, + [0x28F7679D] = { model = "u_m_m_finale2_aa_upperclass_01", hash = 0x28F7679D, outfits = 2 }, + [0x0E8B4AB9] = { model = "u_m_m_galastringquartet_01", hash = 0x0E8B4AB9, outfits = 2 }, + [0x4418B5DF] = { model = "u_m_m_galastringquartet_02", hash = 0x4418B5DF, outfits = 2 }, + [0x313F102C] = { model = "u_m_m_galastringquartet_03", hash = 0x313F102C, outfits = 2 }, + [0x677D7CA8] = { model = "u_m_m_galastringquartet_04", hash = 0x677D7CA8, outfits = 2 }, + [0x51B75106] = { model = "u_m_m_gamdoorman_01", hash = 0x51B75106, outfits = 2 }, + [0xE5DA06C1] = { model = "u_m_m_hhrrancher_01", hash = 0xE5DA06C1, outfits = 2 }, + [0x1E87BC0A] = { model = "u_m_m_htlforeman_01", hash = 0x1E87BC0A, outfits = 5 }, + [0xD1C51E05] = { model = "u_m_m_htlhusband_01", hash = 0xD1C51E05, outfits = 1 }, + [0x9B004750] = { model = "u_m_m_htlrancherbounty_01", hash = 0x9B004750, outfits = 2 }, + [0x8F6606D5] = { model = "u_m_m_islbum_01", hash = 0x8F6606D5, outfits = 1 }, + [0x1DEF8E8E] = { model = "u_m_m_lnsoutlaw_01", hash = 0x1DEF8E8E, outfits = 2 }, + [0x2BE12A71] = { model = "u_m_m_lnsoutlaw_02", hash = 0x2BE12A71, outfits = 2 }, + [0x68F3A489] = { model = "u_m_m_lnsoutlaw_03", hash = 0x68F3A489, outfits = 2 }, + [0x3881C3AA] = { model = "u_m_m_lnsoutlaw_04", hash = 0x3881C3AA, outfits = 2 }, + [0xCC4D780E] = { model = "u_m_m_lnsworker_01", hash = 0xCC4D780E, outfits = 2 }, + [0xB30E4590] = { model = "u_m_m_lnsworker_02", hash = 0xB30E4590, outfits = 2 }, + [0xA0EFA153] = { model = "u_m_m_lnsworker_03", hash = 0xA0EFA153, outfits = 2 }, + [0x91BD02EE] = { model = "u_m_m_lnsworker_04", hash = 0x91BD02EE, outfits = 2 }, + [0xF9EEA22E] = { model = "u_m_m_lrshomesteadtenant_01", hash = 0xF9EEA22E, outfits = 2 }, + [0xF91B281F] = { model = "u_m_m_mfrrancher_01", hash = 0xF91B281F, outfits = 2 }, + [0x6CD2AAFF] = { model = "u_m_m_mud3pimp_01", hash = 0x6CD2AAFF, outfits = 2 }, + [0x2E3911BA] = { model = "u_m_m_nbxbankerbounty_01", hash = 0x2E3911BA, outfits = 2 }, + [0x1EE53C9C] = { model = "u_m_m_nbxbartender_01", hash = 0x1EE53C9C, outfits = 9 }, + [0x0D1298F7] = { model = "u_m_m_nbxbartender_02", hash = 0x0D1298F7, outfits = 9 }, + [0xB752EDAF] = { model = "u_m_m_nbxboatticketseller_01", hash = 0xB752EDAF, outfits = 5 }, + [0x42507F3E] = { model = "u_m_m_nbxbronteasc_01", hash = 0x42507F3E, outfits = 1 }, + [0xB7F2F587] = { model = "u_m_m_nbxbrontegoon_01", hash = 0xB7F2F587, outfits = 1 }, + [0xE8BCA87C] = { model = "u_m_m_nbxbrontesecform_01", hash = 0xE8BCA87C, outfits = 1 }, + [0x54123716] = { model = "u_m_m_nbxgeneralstoreowner_01", hash = 0x54123716, outfits = 9 }, + [0xFC3D1E1B] = { model = "u_m_m_nbxgraverobber_01", hash = 0xFC3D1E1B, outfits = 2 }, + [0x7C7C9EA0] = { model = "u_m_m_nbxgraverobber_02", hash = 0x7C7C9EA0, outfits = 2 }, + [0x8FBDC522] = { model = "u_m_m_nbxgraverobber_03", hash = 0x8FBDC522, outfits = 2 }, + [0x3DB8A119] = { model = "u_m_m_nbxgraverobber_04", hash = 0x3DB8A119, outfits = 2 }, + [0x33EE8D85] = { model = "u_m_m_nbxgraverobber_05", hash = 0x33EE8D85, outfits = 2 }, + [0x2A66EA55] = { model = "u_m_m_nbxgunsmith_01", hash = 0x2A66EA55, outfits = 9 }, + [0x7A53E763] = { model = "u_m_m_nbxliveryworker_01", hash = 0x7A53E763, outfits = 2 }, + [0x668685E6] = { model = "u_m_m_nbxmusician_01", hash = 0x668685E6, outfits = 2 }, + [0xDD900EBD] = { model = "u_m_m_nbxpriest_01", hash = 0xDD900EBD, outfits = 1 }, + [0x6BE0A02F] = { model = "u_m_m_nbxresident_01", hash = 0x6BE0A02F, outfits = 2 }, + [0x4BB85FDB] = { model = "u_m_m_nbxresident_02", hash = 0x4BB85FDB, outfits = 2 }, + [0x597DFB66] = { model = "u_m_m_nbxresident_03", hash = 0x597DFB66, outfits = 2 }, + [0x271C96A4] = { model = "u_m_m_nbxresident_04", hash = 0x271C96A4, outfits = 2 }, + [0xE5C80F77] = { model = "u_m_m_nbxriverboatpitboss_01", hash = 0xE5C80F77, outfits = 2 }, + [0x16B38C17] = { model = "u_m_m_nbxriverboattarget_01", hash = 0x16B38C17, outfits = 2 }, + [0x1B2769D0] = { model = "u_m_m_nbxshadydealer_01", hash = 0x1B2769D0, outfits = 9 }, + [0xD43AE828] = { model = "u_m_m_nbxskiffdriver_01", hash = 0xD43AE828, outfits = 2 }, + [0x42352E08] = { model = "u_m_m_oddfellowparticipant_01", hash = 0x42352E08, outfits = 2 }, + [0xB6C0F55D] = { model = "u_m_m_odriscollbrawler_01", hash = 0xB6C0F55D, outfits = 3 }, + [0xC4162DA7] = { model = "u_m_m_orpguard_01", hash = 0xC4162DA7, outfits = 1 }, + [0xE0448D54] = { model = "u_m_m_racforeman_01", hash = 0xE0448D54, outfits = 5 }, + [0x6DE7AD0F] = { model = "u_m_m_racquartermaster_01", hash = 0x6DE7AD0F, outfits = 2 }, + [0x8E764EA7] = { model = "u_m_m_rhdbackupdeputy_01", hash = 0x8E764EA7, outfits = 2 }, + [0x7BABA912] = { model = "u_m_m_rhdbackupdeputy_02", hash = 0x7BABA912, outfits = 2 }, + [0x23DA7E9F] = { model = "u_m_m_rhdbartender_01", hash = 0x23DA7E9F, outfits = 7 }, + [0x2A37903E] = { model = "u_m_m_rhddoctor_01", hash = 0x2A37903E, outfits = 1 }, + [0x3A9FCA38] = { model = "u_m_m_rhdfiddleplayer_01", hash = 0x3A9FCA38, outfits = 2 }, + [0x9B9EF6B7] = { model = "u_m_m_rhdgenstoreowner_01", hash = 0x9B9EF6B7, outfits = 9 }, + [0x893751E8] = { model = "u_m_m_rhdgenstoreowner_02", hash = 0x893751E8, outfits = 9 }, + [0xADDA73CE] = { model = "u_m_m_rhdgunsmith_01", hash = 0xADDA73CE, outfits = 9 }, + [0x06B0DE6B] = { model = "u_m_m_rhdpreacher_01", hash = 0x06B0DE6B, outfits = 1 }, + [0xC76BB57A] = { model = "u_m_m_rhdsheriff_01", hash = 0xC76BB57A, outfits = 5 }, + [0x3F0EC349] = { model = "u_m_m_rhdtrainstationworker_01", hash = 0x3F0EC349, outfits = 5 }, + [0x2158A563] = { model = "u_m_m_rhdundertaker_01", hash = 0x2158A563, outfits = 1 }, + [0x6376F2EE] = { model = "u_m_m_riodonkeyrider_01", hash = 0x6376F2EE, outfits = 1 }, + [0x3B85803C] = { model = "u_m_m_rkfrancher_01", hash = 0x3B85803C, outfits = 1 }, + [0xA558BFEF] = { model = "u_m_m_rkrdonkeyrider_01", hash = 0xA558BFEF, outfits = 1 }, + [0xA209CB2A] = { model = "u_m_m_rwfrancher_01", hash = 0xA209CB2A, outfits = 1 }, + [0x128CDD40] = { model = "u_m_m_sdbankguard_01", hash = 0x128CDD40, outfits = 4 }, + [0x400E34A9] = { model = "u_m_m_sdcustomvendor_01", hash = 0x400E34A9, outfits = 9 }, + [0xF1029EA3] = { model = "u_m_m_sdexoticsshopkeeper_01", hash = 0xF1029EA3, outfits = 10 }, + [0xBE9D77E1] = { model = "u_m_m_sdphotographer_01", hash = 0xBE9D77E1, outfits = 2 }, + [0x5C99E1C2] = { model = "u_m_m_sdpolicechief_01", hash = 0x5C99E1C2, outfits = 5 }, + [0xCCB89BB7] = { model = "u_m_m_sdstrongwomanassistant_01", hash = 0xCCB89BB7, outfits = 1 }, + [0x23317990] = { model = "u_m_m_sdtrapper_01", hash = 0x23317990, outfits = 1 }, + [0x3FEE3412] = { model = "u_m_m_sdwealthytraveller_01", hash = 0x3FEE3412, outfits = 5 }, + [0x62AD6C6C] = { model = "u_m_m_shackserialkiller_01", hash = 0x62AD6C6C, outfits = 1 }, + [0x7D796588] = { model = "u_m_m_shacktwin_01", hash = 0x7D796588, outfits = 2 }, + [0x7A2F5EF4] = { model = "u_m_m_shacktwin_02", hash = 0x7A2F5EF4, outfits = 2 }, + [0x08534AF0] = { model = "u_m_m_skinnyoldguy_01", hash = 0x08534AF0, outfits = 1 }, + [0x199B5D2F] = { model = "u_m_m_story_armadillo_01", hash = 0x199B5D2F, outfits = 1 }, + [0x019AAC14] = { model = "u_m_m_story_cannibal_01", hash = 0x019AAC14, outfits = 1 }, + [0xA8FDA7E1] = { model = "u_m_m_story_chelonian_01", hash = 0xA8FDA7E1, outfits = 1 }, + [0x2E663310] = { model = "u_m_m_story_copperhead_01", hash = 0x2E663310, outfits = 1 }, + [0x4FFBC75C] = { model = "u_m_m_story_creeper_01", hash = 0x4FFBC75C, outfits = 1 }, + [0x7E80C06D] = { model = "u_m_m_story_emeraldranch_01", hash = 0x7E80C06D, outfits = 1 }, + [0x65B3401E] = { model = "u_m_m_story_hunter_01", hash = 0x65B3401E, outfits = 1 }, + [0x82D7E004] = { model = "u_m_m_story_manzanita_01", hash = 0x82D7E004, outfits = 2 }, + [0x474080E1] = { model = "u_m_m_story_murfee_01", hash = 0x474080E1, outfits = 1 }, + [0xD6CDC88D] = { model = "u_m_m_story_pigfarm_01", hash = 0xD6CDC88D, outfits = 1 }, + [0x42F42CBF] = { model = "u_m_m_story_princess_01", hash = 0x42F42CBF, outfits = 1 }, + [0x82212B0D] = { model = "u_m_m_story_redharlow_01", hash = 0x82212B0D, outfits = 1 }, + [0xEDDB93E8] = { model = "u_m_m_story_rhodes_01", hash = 0xEDDB93E8, outfits = 1 }, + [0xCFA8C361] = { model = "u_m_m_story_sdstatue_01", hash = 0xCFA8C361, outfits = 1 }, + [0x0CF1DA06] = { model = "u_m_m_story_spectre_01", hash = 0x0CF1DA06, outfits = 1 }, + [0x54A21893] = { model = "u_m_m_story_treasure_01", hash = 0x54A21893, outfits = 1 }, + [0x628EBD88] = { model = "u_m_m_story_tumbleweed_01", hash = 0x628EBD88, outfits = 1 }, + [0x565FF75B] = { model = "u_m_m_story_valentine_01", hash = 0x565FF75B, outfits = 1 }, + [0x1173F849] = { model = "u_m_m_strfreightstationowner_01", hash = 0x1173F849, outfits = 5 }, + [0x104FE6B3] = { model = "u_m_m_strgenstoreowner_01", hash = 0x104FE6B3, outfits = 9 }, + [0x77EEF186] = { model = "u_m_m_strsherriff_01", hash = 0x77EEF186, outfits = 5 }, + [0x4128755F] = { model = "u_m_m_strwelcomecenter_01", hash = 0x4128755F, outfits = 9 }, + [0xD31B229F] = { model = "u_m_m_tumbartender_01", hash = 0xD31B229F, outfits = 7 }, + [0x9168B88B] = { model = "u_m_m_tumbutcher_01", hash = 0x9168B88B, outfits = 9 }, + [0x79FB001C] = { model = "u_m_m_tumgunsmith_01", hash = 0x79FB001C, outfits = 9 }, + [0x6712F25D] = { model = "u_m_m_tumtrainstationworker_01", hash = 0x6712F25D, outfits = 1 }, + [0x7A5AC236] = { model = "u_m_m_unibountyhunter_01", hash = 0x7A5AC236, outfits = 1 }, + [0xB0962EB0] = { model = "u_m_m_unibountyhunter_02", hash = 0xB0962EB0, outfits = 1 }, + [0x0EBB9BCE] = { model = "u_m_m_unidusterhenchman_01", hash = 0x0EBB9BCE, outfits = 2 }, + [0xE302445C] = { model = "u_m_m_unidusterhenchman_02", hash = 0xE302445C, outfits = 2 }, + [0xD1B321BE] = { model = "u_m_m_unidusterhenchman_03", hash = 0xD1B321BE, outfits = 2 }, + [0x3C9E3212] = { model = "u_m_m_unidusterleader_01", hash = 0x3C9E3212, outfits = 2 }, + [0x1BC9C8FC] = { model = "u_m_m_uniexconfedsbounty_01", hash = 0x1BC9C8FC, outfits = 2 }, + [0x5FC8B319] = { model = "u_m_m_unionleader_01", hash = 0x5FC8B319, outfits = 2 }, + [0x6D1BCDBF] = { model = "u_m_m_unionleader_02", hash = 0x6D1BCDBF, outfits = 2 }, + [0x5E1148BF] = { model = "u_m_m_unipeepingtom_01", hash = 0x5E1148BF, outfits = 2 }, + [0x075398B9] = { model = "u_m_m_valauctionforman_01", hash = 0x075398B9, outfits = 7 }, + [0x4EDB27C7] = { model = "u_m_m_valauctionforman_02", hash = 0x4EDB27C7, outfits = 6 }, + [0xD371AE64] = { model = "u_m_m_valbarber_01", hash = 0xD371AE64, outfits = 9 }, + [0xB733CF0F] = { model = "u_m_m_valbartender_01", hash = 0xB733CF0F, outfits = 9 }, + [0x69019A68] = { model = "u_m_m_valbeartrap_01", hash = 0x69019A68, outfits = 5 }, + [0x23E0698B] = { model = "u_m_m_valbutcher_01", hash = 0x23E0698B, outfits = 9 }, + [0x71545DA5] = { model = "u_m_m_valdoctor_01", hash = 0x71545DA5, outfits = 9 }, + [0x9B3E551B] = { model = "u_m_m_valgenstoreowner_01", hash = 0x9B3E551B, outfits = 9 }, + [0xBBC5D27F] = { model = "u_m_m_valgunsmith_01", hash = 0xBBC5D27F, outfits = 9 }, + [0xB66F12F2] = { model = "u_m_m_valhotelowner_01", hash = 0xB66F12F2, outfits = 9 }, + [0xD6B24482] = { model = "u_m_m_valpokerplayer_01", hash = 0xD6B24482, outfits = 5 }, + [0x03969E2E] = { model = "u_m_m_valpokerplayer_02", hash = 0x03969E2E, outfits = 5 }, + [0x16681434] = { model = "u_m_m_valpoopingman_01", hash = 0x16681434, outfits = 4 }, + [0x93B09465] = { model = "u_m_m_valsheriff_01", hash = 0x93B09465, outfits = 5 }, + [0xD0D41B25] = { model = "u_m_m_valtheman_01", hash = 0xD0D41B25, outfits = 9 }, + [0xC4CC5EE6] = { model = "u_m_m_valtownfolk_01", hash = 0xC4CC5EE6, outfits = 4 }, + [0xA5F92140] = { model = "u_m_m_valtownfolk_02", hash = 0xA5F92140, outfits = 4 }, + [0xC606A445] = { model = "u_m_m_vhtstationclerk_01", hash = 0xC606A445, outfits = 9 }, + [0x42DD47BF] = { model = "u_m_m_walgeneralstoreowner_01", hash = 0x42DD47BF, outfits = 5 }, + [0x5EDC8972] = { model = "u_m_m_wapofficial_01", hash = 0x5EDC8972, outfits = 2 }, + [0xDF9051C0] = { model = "u_m_m_wtccowboy_04", hash = 0xDF9051C0, outfits = 2 }, + [0xDD6D1B34] = { model = "u_m_o_armbartender_01", hash = 0xDD6D1B34, outfits = 9 }, + [0x1CEF1945] = { model = "u_m_o_asbsheriff_01", hash = 0x1CEF1945, outfits = 5 }, + [0xA0325B4E] = { model = "u_m_o_bht_docwormwood", hash = 0xA0325B4E, outfits = 2 }, + [0x8E81C857] = { model = "u_m_o_blwbartender_01", hash = 0x8E81C857, outfits = 9 }, + [0x6958B082] = { model = "u_m_o_blwgeneralstoreowner_01", hash = 0x6958B082, outfits = 9 }, + [0x3B99237E] = { model = "u_m_o_blwphotographer_01", hash = 0x3B99237E, outfits = 9 }, + [0x67FB6A21] = { model = "u_m_o_blwpolicechief_01", hash = 0x67FB6A21, outfits = 7 }, + [0x10E06765] = { model = "u_m_o_cajhomestead_01", hash = 0x10E06765, outfits = 1 }, + [0xECA3D50D] = { model = "u_m_o_cmrcivilwarcommando_01", hash = 0xECA3D50D, outfits = 2 }, + [0xDE86823E] = { model = "u_m_o_mapwiseoldman_01", hash = 0xDE86823E, outfits = 5 }, + [0xAFFEF16E] = { model = "u_m_o_oldcajun_01", hash = 0xAFFEF16E, outfits = 1 }, + [0xDD1C10E8] = { model = "u_m_o_pshrancher_01", hash = 0xDD1C10E8, outfits = 5 }, + [0xABC22ABF] = { model = "u_m_o_rigtrainstationworker_01", hash = 0xABC22ABF, outfits = 5 }, + [0x904CC489] = { model = "u_m_o_valbartender_01", hash = 0x904CC489, outfits = 8 }, + [0xCE72526E] = { model = "u_m_o_vhtexoticshopkeeper_01", hash = 0xCE72526E, outfits = 9 }, + [0x1B8FD0E7] = { model = "u_m_y_cajhomestead_01", hash = 0x1B8FD0E7, outfits = 1 }, + [0x1B6F073A] = { model = "u_m_y_czphomesteadson_01", hash = 0x1B6F073A, outfits = 1 }, + [0x0530DABA] = { model = "u_m_y_czphomesteadson_02", hash = 0x0530DABA, outfits = 1 }, + [0xAE09AC6D] = { model = "u_m_y_czphomesteadson_03", hash = 0xAE09AC6D, outfits = 1 }, + [0x9992837F] = { model = "u_m_y_czphomesteadson_04", hash = 0x9992837F, outfits = 1 }, + [0xD23774C8] = { model = "u_m_y_czphomesteadson_05", hash = 0xD23774C8, outfits = 1 }, + [0x4152ADFB] = { model = "u_m_y_duellistbounty_01", hash = 0x4152ADFB, outfits = 2 }, + [0x559BD1B7] = { model = "u_m_y_emrson_01", hash = 0x559BD1B7, outfits = 4 }, + [0xB60F7B1B] = { model = "u_m_y_htlworker_01", hash = 0xB60F7B1B, outfits = 5 }, + [0xC8661FCC] = { model = "u_m_y_htlworker_02", hash = 0xC8661FCC, outfits = 5 }, + [0xBC5CFF49] = { model = "u_m_y_shackstarvingkid_01", hash = 0xBC5CFF49, outfits = 3 }, + [0x5087BED1] = { model = "cs_mp_agent_hixon", hash = 0x5087BED1, outfits = 2 }, + [0x81C2FD57] = { model = "cs_mp_dannylee", hash = 0x81C2FD57, outfits = 2 }, + [0x024BE4BE] = { model = "cs_mp_gus_macmillan", hash = 0x024BE4BE, outfits = 2 }, + [0x9BD92566] = { model = "cs_mp_harriet_davenport", hash = 0x9BD92566, outfits = 1 }, + [0x048FCA26] = { model = "cs_mp_lem", hash = 0x048FCA26, outfits = 3 }, + [0xF0DA3AE5] = { model = "cs_mp_maggie", hash = 0xF0DA3AE5, outfits = 2 }, + [0x7666911B] = { model = "cs_mp_seth", hash = 0x7666911B, outfits = 1 }, + [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [0x9A755448] = { model = "cs_mp_bessie_adair", hash = 0x9A755448, outfits = 1 }, + [0xAADC8018] = { model = "CS_MP_POLICECHIEF_LAMBERT", hash = 0xAADC8018, outfits = 1 }, + [0xBE651417] = { model = "CS_MP_SENATOR_RICARD", hash = 0xBE651417, outfits = 2 }, } return { Peds = Peds } - --- example usage ---[[ local LIB = Import("peds") -local ambientPeds = LIB.Peds.Ambient -local lawPeds = LIB.Peds.Law -]] diff --git a/shared/data/vehicles.lua b/shared/data/vehicles.lua index 6ffed6f..b75e83a 100644 --- a/shared/data/vehicles.lua +++ b/shared/data/vehicles.lua @@ -1,46 +1,259 @@ local Vehicles = {} -local function createEntry(model, extra) - local entry = { - model = model, - hash = joaat(model), - } +-- Source: femga/rdr3_discoveries vehicles/vehicles_list.lua +-- Vehicle categories are grouped heuristically. - if extra then - for key, value in pairs(extra) do - entry[key] = value - end - end - - return entry -end +Vehicles.All = { + [0xC8EF11A0] = { model = "armoredCar01x", hash = 0xC8EF11A0 }, + [0x22C976E4] = { model = "armoredCar03x", hash = 0x22C976E4 }, + [0x276DFE5E] = { model = "ArmySupplyWagon", hash = 0x276DFE5E }, + [0x876E6EB7] = { model = "boatsteam02x", hash = 0x876E6EB7 }, + [0x861D4C6A] = { model = "bountywagon01x", hash = 0x861D4C6A }, + [0x8979274C] = { model = "breach_cannon", hash = 0x8979274C }, + [0xB3C45542] = { model = "buggy01", hash = 0xB3C45542 }, + [0xBE696A8C] = { model = "buggy02", hash = 0xBE696A8C }, + [0x91068FC7] = { model = "buggy03", hash = 0x91068FC7 }, + [0x8C0224C6] = { model = "caboose01x", hash = 0x8C0224C6 }, + [0x578D6513] = { model = "canoe", hash = 0x578D6513 }, + [0xD84D4530] = { model = "canoeTreeTrunk", hash = 0xD84D4530 }, + [0xCEDED274] = { model = "cart01", hash = 0xCEDED274 }, + [0x85943FE0] = { model = "cart02", hash = 0x85943FE0 }, + [0xAFB2141B] = { model = "cart03", hash = 0xAFB2141B }, + [0xDDFBF0AE] = { model = "cart04", hash = 0xDDFBF0AE }, + [0x1656E157] = { model = "cart05", hash = 0x1656E157 }, + [0x0D10CECB] = { model = "cart06", hash = 0x0D10CECB }, + [0x02D03A4A] = { model = "cart07", hash = 0x02D03A4A }, + [0xE98507B4] = { model = "cart08", hash = 0xE98507B4 }, + [0x5F27ED25] = { model = "chuckwagon000x", hash = 0x5F27ED25 }, + [0x69897B5C] = { model = "chuckwagon002x", hash = 0x69897B5C }, + [0x68F6F8F3] = { model = "coach2", hash = 0x68F6F8F3 }, + [0xF775C720] = { model = "coach3_cutscene", hash = 0xF775C720 }, + [0xF7D816B7] = { model = "coach3", hash = 0xF7D816B7 }, + [0x0598B238] = { model = "coach4", hash = 0x0598B238 }, + [0x9324CD4E] = { model = "coach5", hash = 0x9324CD4E }, + [0xA3EC6EDD] = { model = "coach6", hash = 0xA3EC6EDD }, + [0x4E018632] = { model = "coalHopper01x", hash = 0x4E018632 }, + [0x61EC29C0] = { model = "coal_wagon", hash = 0x61EC29C0 }, + [0xF53E4390] = { model = "gatchuck_2", hash = 0xF53E4390 }, + [0x0538529A] = { model = "gatchuck", hash = 0x0538529A }, + [0x1EEBDBE5] = { model = "gatling_gun", hash = 0x1EEBDBE5 }, + [0x2C3B0296] = { model = "gatlingMaxim02", hash = 0x2C3B0296 }, + [0x20925D76] = { model = "GhostTrainCaboose", hash = 0x20925D76 }, + [0x1C10E9C9] = { model = "GhostTrainCoalCar", hash = 0x1C10E9C9 }, + [0x7724C788] = { model = "GhostTrainPassenger", hash = 0x7724C788 }, + [0x09D4E809] = { model = "GhostTrainSteamer", hash = 0x09D4E809 }, + [0x590420FE] = { model = "handcart", hash = 0x590420FE }, + [0x75BDDBD6] = { model = "horseBoat", hash = 0x75BDDBD6 }, + [0x5EB0BAE0] = { model = "hotAirBalloon01", hash = 0x5EB0BAE0 }, + [0x2CA8E7B6] = { model = "hotchkiss_cannon", hash = 0x2CA8E7B6 }, + [0x9AC2F93A] = { model = "huntercart01", hash = 0x9AC2F93A }, + [0xEF91537F] = { model = "keelboat", hash = 0xEF91537F }, + [0xE89274F1] = { model = "logwagon2", hash = 0xE89274F1 }, + [0x9A308177] = { model = "logwagon", hash = 0x9A308177 }, + [0x39584F5A] = { model = "midlandboxcar05x", hash = 0x39584F5A }, + [0xECD7E90E] = { model = "midlandrefrigeratorcar", hash = 0xECD7E90E }, + [0xC40B0265] = { model = "mineCart01x", hash = 0xC40B0265 }, + [0xDF86C25A] = { model = "northcoalcar01x", hash = 0xDF86C25A }, + [0x9A0A187A] = { model = "northflatcar01x", hash = 0x9A0A187A }, + [0x29EA09A9] = { model = "northpassenger01x", hash = 0x29EA09A9 }, + [0x930442EC] = { model = "northpassenger03x", hash = 0x930442EC }, + [0xF632A662] = { model = "northsteamer01x", hash = 0xF632A662 }, + [0xC3E6C004] = { model = "oilWagon01x", hash = 0xC3E6C004 }, + [0x824EBBB5] = { model = "oilWagon02x", hash = 0x824EBBB5 }, + [0xAE057F07] = { model = "pirogue2", hash = 0xAE057F07 }, + [0xF539E5A0] = { model = "pirogue", hash = 0xF539E5A0 }, + [0xB203C6B3] = { model = "policewagon01x", hash = 0xB203C6B3 }, + [0xB31F8075] = { model = "policeWagongatling01x", hash = 0xB31F8075 }, + [0x384E6422] = { model = "privateArmoured", hash = 0x384E6422 }, + [0x6A80D253] = { model = "privatebaggage01x", hash = 0x6A80D253 }, + [0xC50FC5D0] = { model = "privateboxcar01x", hash = 0xC50FC5D0 }, + [0x4D5B5089] = { model = "privateboxcar02x", hash = 0x4D5B5089 }, + [0x18296CDE] = { model = "privateboxcar04x", hash = 0x18296CDE }, + [0x4717D8D8] = { model = "privatecoalcar01x", hash = 0x4717D8D8 }, + [0x22250EF5] = { model = "privatedining01x", hash = 0x22250EF5 }, + [0x0F228F06] = { model = "privateflatcar01x", hash = 0x0F228F06 }, + [0xF1FE5FB8] = { model = "privateObservationcar", hash = 0xF1FE5FB8 }, + [0xC27964BE] = { model = "privateopensleeper01x", hash = 0xC27964BE }, + [0x7F4258C9] = { model = "privateopensleeper02x", hash = 0x7F4258C9 }, + [0x1C8D173A] = { model = "privatepassenger01x", hash = 0x1C8D173A }, + [0xEE645446] = { model = "privaterooms01x", hash = 0xEE645446 }, + [0x055BF98F] = { model = "privatesteamer01x", hash = 0x055BF98F }, + [0x5E56769C] = { model = "rcBoat", hash = 0x5E56769C }, + [0x9FD6BA58] = { model = "rowboat", hash = 0x9FD6BA58 }, + [0xF097BC6C] = { model = "rowboatSwamp02", hash = 0xF097BC6C }, + [0xE84E6B74] = { model = "rowboatSwamp", hash = 0xE84E6B74 }, + [0xA385E1C7] = { model = "ship_guama02", hash = 0xA385E1C7 }, + [0xC6FA5BFF] = { model = "ship_nbdGuama2", hash = 0xC6FA5BFF }, + [0x427A2D4C] = { model = "ship_nbdGuama", hash = 0x427A2D4C }, + [0xDADC0B67] = { model = "skiff", hash = 0xDADC0B67 }, + [0x0CFD1449] = { model = "smuggler02", hash = 0x0CFD1449 }, + [0x7DBBF975] = { model = "stagecoach001x", hash = 0x7DBBF975 }, + [0x680D3008] = { model = "stagecoach002x", hash = 0x680D3008 }, + [0xE7D930EA] = { model = "stagecoach003x", hash = 0xE7D930EA }, + [0x0CA650AA] = { model = "stagecoach004_2x", hash = 0x0CA650AA }, + [0x9B58946E] = { model = "stagecoach004x", hash = 0x9B58946E }, + [0xC474677D] = { model = "stagecoach005x", hash = 0xC474677D }, + [0xAAFEA8AE] = { model = "stagecoach006x", hash = 0xAAFEA8AE }, + [0xAD516118] = { model = "steamerDummy", hash = 0xAD516118 }, + [0xEC2A1018] = { model = "supplywagon2", hash = 0xEC2A1018 }, + [0x9780442F] = { model = "supplywagon", hash = 0x9780442F }, + [0xDA152CA6] = { model = "trolley01x", hash = 0xDA152CA6 }, + [0x7DD49B09] = { model = "TugBoat2", hash = 0x7DD49B09 }, + [0xE1FE4FD4] = { model = "turbineboat", hash = 0xE1FE4FD4 }, + [0x310A4F8B] = { model = "utilliwag", hash = 0x310A4F8B }, + [0xEF1F4829] = { model = "wagon02x", hash = 0xEF1F4829 }, + [0x90C51372] = { model = "wagon03x", hash = 0x90C51372 }, + [0x6FBDD4B8] = { model = "wagon04x", hash = 0x6FBDD4B8 }, + [0xAAC1A9FE] = { model = "wagon05x_2", hash = 0xAAC1A9FE }, + [0x9735A3CF] = { model = "wagon05x", hash = 0x9735A3CF }, + [0x3C9870A6] = { model = "wagon06x", hash = 0x3C9870A6 }, + [0x9658DD4C] = { model = "wagonarmoured01x", hash = 0x9658DD4C }, + [0xC2D200FE] = { model = "wagonCircus01x", hash = 0xC2D200FE }, + [0xEE8254F6] = { model = "wagonCircus02x", hash = 0xEE8254F6 }, + [0x08FF91ED] = { model = "wagondairy01x", hash = 0x08FF91ED }, + [0xF7E89A8D] = { model = "wagondoc01x", hash = 0xF7E89A8D }, + [0xCCC649AE] = { model = "wagonPrison01x", hash = 0xCCC649AE }, + [0xA7FBA623] = { model = "wagontraveller01x", hash = 0xA7FBA623 }, + [0xE96CFEFB] = { model = "wagonwork01x", hash = 0xE96CFEFB }, + [0xA37D73F6] = { model = "warwagon2", hash = 0xA37D73F6 }, + [0x0FD337B7] = { model = "wintercoalcar", hash = 0x0FD337B7 }, + [0x6F8F7EE4] = { model = "winterSteamer", hash = 0x6F8F7EE4 }, + [0x6422679D] = { model = "tugboat3", hash = 0x6422679D }, +} Vehicles.Boats = { - -- [`rowboat`] = createEntry("rowboat"), + [0x876E6EB7] = { model = "boatsteam02x", hash = 0x876E6EB7 }, + [0x578D6513] = { model = "canoe", hash = 0x578D6513 }, + [0xD84D4530] = { model = "canoeTreeTrunk", hash = 0xD84D4530 }, + [0x75BDDBD6] = { model = "horseBoat", hash = 0x75BDDBD6 }, + [0xEF91537F] = { model = "keelboat", hash = 0xEF91537F }, + [0xAE057F07] = { model = "pirogue2", hash = 0xAE057F07 }, + [0xF539E5A0] = { model = "pirogue", hash = 0xF539E5A0 }, + [0x5E56769C] = { model = "rcBoat", hash = 0x5E56769C }, + [0x9FD6BA58] = { model = "rowboat", hash = 0x9FD6BA58 }, + [0xF097BC6C] = { model = "rowboatSwamp02", hash = 0xF097BC6C }, + [0xE84E6B74] = { model = "rowboatSwamp", hash = 0xE84E6B74 }, + [0xDADC0B67] = { model = "skiff", hash = 0xDADC0B67 }, + [0x7DD49B09] = { model = "TugBoat2", hash = 0x7DD49B09 }, + [0xE1FE4FD4] = { model = "turbineboat", hash = 0xE1FE4FD4 }, + [0x6422679D] = { model = "tugboat3", hash = 0x6422679D }, } -Vehicles.Wagons = { - -- [`wagon02x`] = createEntry("wagon02x"), +Vehicles.Carts = { + [0xB3C45542] = { model = "buggy01", hash = 0xB3C45542 }, + [0xBE696A8C] = { model = "buggy02", hash = 0xBE696A8C }, + [0x91068FC7] = { model = "buggy03", hash = 0x91068FC7 }, + [0xCEDED274] = { model = "cart01", hash = 0xCEDED274 }, + [0x85943FE0] = { model = "cart02", hash = 0x85943FE0 }, + [0xAFB2141B] = { model = "cart03", hash = 0xAFB2141B }, + [0xDDFBF0AE] = { model = "cart04", hash = 0xDDFBF0AE }, + [0x1656E157] = { model = "cart05", hash = 0x1656E157 }, + [0x0D10CECB] = { model = "cart06", hash = 0x0D10CECB }, + [0x02D03A4A] = { model = "cart07", hash = 0x02D03A4A }, + [0xE98507B4] = { model = "cart08", hash = 0xE98507B4 }, + [0x590420FE] = { model = "handcart", hash = 0x590420FE }, + [0x9AC2F93A] = { model = "huntercart01", hash = 0x9AC2F93A }, + [0xC40B0265] = { model = "mineCart01x", hash = 0xC40B0265 }, } Vehicles.Coaches = { - -- [`coach2`] = createEntry("coach2"), + [0x68F6F8F3] = { model = "coach2", hash = 0x68F6F8F3 }, + [0xF775C720] = { model = "coach3_cutscene", hash = 0xF775C720 }, + [0xF7D816B7] = { model = "coach3", hash = 0xF7D816B7 }, + [0x0598B238] = { model = "coach4", hash = 0x0598B238 }, + [0x9324CD4E] = { model = "coach5", hash = 0x9324CD4E }, + [0xA3EC6EDD] = { model = "coach6", hash = 0xA3EC6EDD }, } -Vehicles.Carts = { - -- [`cart01`] = createEntry("cart01"), +Vehicles.Special = { + [0xC8EF11A0] = { model = "armoredCar01x", hash = 0xC8EF11A0 }, + [0x22C976E4] = { model = "armoredCar03x", hash = 0x22C976E4 }, + [0x8979274C] = { model = "breach_cannon", hash = 0x8979274C }, + [0xF53E4390] = { model = "gatchuck_2", hash = 0xF53E4390 }, + [0x0538529A] = { model = "gatchuck", hash = 0x0538529A }, + [0x1EEBDBE5] = { model = "gatling_gun", hash = 0x1EEBDBE5 }, + [0x2C3B0296] = { model = "gatlingMaxim02", hash = 0x2C3B0296 }, + [0x5EB0BAE0] = { model = "hotAirBalloon01", hash = 0x5EB0BAE0 }, + [0x2CA8E7B6] = { model = "hotchkiss_cannon", hash = 0x2CA8E7B6 }, + [0x384E6422] = { model = "privateArmoured", hash = 0x384E6422 }, + [0x6A80D253] = { model = "privatebaggage01x", hash = 0x6A80D253 }, + [0xA385E1C7] = { model = "ship_guama02", hash = 0xA385E1C7 }, + [0xC6FA5BFF] = { model = "ship_nbdGuama2", hash = 0xC6FA5BFF }, + [0x427A2D4C] = { model = "ship_nbdGuama", hash = 0x427A2D4C }, + [0x0CFD1449] = { model = "smuggler02", hash = 0x0CFD1449 }, + [0x7DBBF975] = { model = "stagecoach001x", hash = 0x7DBBF975 }, + [0x680D3008] = { model = "stagecoach002x", hash = 0x680D3008 }, + [0xE7D930EA] = { model = "stagecoach003x", hash = 0xE7D930EA }, + [0x0CA650AA] = { model = "stagecoach004_2x", hash = 0x0CA650AA }, + [0x9B58946E] = { model = "stagecoach004x", hash = 0x9B58946E }, + [0xC474677D] = { model = "stagecoach005x", hash = 0xC474677D }, + [0xAAFEA8AE] = { model = "stagecoach006x", hash = 0xAAFEA8AE }, + [0xDA152CA6] = { model = "trolley01x", hash = 0xDA152CA6 }, + [0x310A4F8B] = { model = "utilliwag", hash = 0x310A4F8B }, } Vehicles.Trains = { - -- [`northsteamer01x`] = createEntry("northsteamer01x"), + [0x8C0224C6] = { model = "caboose01x", hash = 0x8C0224C6 }, + [0x4E018632] = { model = "coalHopper01x", hash = 0x4E018632 }, + [0x20925D76] = { model = "GhostTrainCaboose", hash = 0x20925D76 }, + [0x1C10E9C9] = { model = "GhostTrainCoalCar", hash = 0x1C10E9C9 }, + [0x7724C788] = { model = "GhostTrainPassenger", hash = 0x7724C788 }, + [0x09D4E809] = { model = "GhostTrainSteamer", hash = 0x09D4E809 }, + [0x39584F5A] = { model = "midlandboxcar05x", hash = 0x39584F5A }, + [0xECD7E90E] = { model = "midlandrefrigeratorcar", hash = 0xECD7E90E }, + [0xDF86C25A] = { model = "northcoalcar01x", hash = 0xDF86C25A }, + [0x9A0A187A] = { model = "northflatcar01x", hash = 0x9A0A187A }, + [0x29EA09A9] = { model = "northpassenger01x", hash = 0x29EA09A9 }, + [0x930442EC] = { model = "northpassenger03x", hash = 0x930442EC }, + [0xF632A662] = { model = "northsteamer01x", hash = 0xF632A662 }, + [0xC50FC5D0] = { model = "privateboxcar01x", hash = 0xC50FC5D0 }, + [0x4D5B5089] = { model = "privateboxcar02x", hash = 0x4D5B5089 }, + [0x18296CDE] = { model = "privateboxcar04x", hash = 0x18296CDE }, + [0x4717D8D8] = { model = "privatecoalcar01x", hash = 0x4717D8D8 }, + [0x22250EF5] = { model = "privatedining01x", hash = 0x22250EF5 }, + [0x0F228F06] = { model = "privateflatcar01x", hash = 0x0F228F06 }, + [0xF1FE5FB8] = { model = "privateObservationcar", hash = 0xF1FE5FB8 }, + [0xC27964BE] = { model = "privateopensleeper01x", hash = 0xC27964BE }, + [0x7F4258C9] = { model = "privateopensleeper02x", hash = 0x7F4258C9 }, + [0x1C8D173A] = { model = "privatepassenger01x", hash = 0x1C8D173A }, + [0xEE645446] = { model = "privaterooms01x", hash = 0xEE645446 }, + [0x055BF98F] = { model = "privatesteamer01x", hash = 0x055BF98F }, + [0xAD516118] = { model = "steamerDummy", hash = 0xAD516118 }, + [0x0FD337B7] = { model = "wintercoalcar", hash = 0x0FD337B7 }, + [0x6F8F7EE4] = { model = "winterSteamer", hash = 0x6F8F7EE4 }, +} + +Vehicles.Wagons = { + [0x276DFE5E] = { model = "ArmySupplyWagon", hash = 0x276DFE5E }, + [0x861D4C6A] = { model = "bountywagon01x", hash = 0x861D4C6A }, + [0x5F27ED25] = { model = "chuckwagon000x", hash = 0x5F27ED25 }, + [0x69897B5C] = { model = "chuckwagon002x", hash = 0x69897B5C }, + [0x61EC29C0] = { model = "coal_wagon", hash = 0x61EC29C0 }, + [0xE89274F1] = { model = "logwagon2", hash = 0xE89274F1 }, + [0x9A308177] = { model = "logwagon", hash = 0x9A308177 }, + [0xC3E6C004] = { model = "oilWagon01x", hash = 0xC3E6C004 }, + [0x824EBBB5] = { model = "oilWagon02x", hash = 0x824EBBB5 }, + [0xB203C6B3] = { model = "policewagon01x", hash = 0xB203C6B3 }, + [0xB31F8075] = { model = "policeWagongatling01x", hash = 0xB31F8075 }, + [0xEC2A1018] = { model = "supplywagon2", hash = 0xEC2A1018 }, + [0x9780442F] = { model = "supplywagon", hash = 0x9780442F }, + [0xEF1F4829] = { model = "wagon02x", hash = 0xEF1F4829 }, + [0x90C51372] = { model = "wagon03x", hash = 0x90C51372 }, + [0x6FBDD4B8] = { model = "wagon04x", hash = 0x6FBDD4B8 }, + [0xAAC1A9FE] = { model = "wagon05x_2", hash = 0xAAC1A9FE }, + [0x9735A3CF] = { model = "wagon05x", hash = 0x9735A3CF }, + [0x3C9870A6] = { model = "wagon06x", hash = 0x3C9870A6 }, + [0x9658DD4C] = { model = "wagonarmoured01x", hash = 0x9658DD4C }, + [0xC2D200FE] = { model = "wagonCircus01x", hash = 0xC2D200FE }, + [0xEE8254F6] = { model = "wagonCircus02x", hash = 0xEE8254F6 }, + [0x08FF91ED] = { model = "wagondairy01x", hash = 0x08FF91ED }, + [0xF7E89A8D] = { model = "wagondoc01x", hash = 0xF7E89A8D }, + [0xCCC649AE] = { model = "wagonPrison01x", hash = 0xCCC649AE }, + [0xA7FBA623] = { model = "wagontraveller01x", hash = 0xA7FBA623 }, + [0xE96CFEFB] = { model = "wagonwork01x", hash = 0xE96CFEFB }, + [0xA37D73F6] = { model = "warwagon2", hash = 0xA37D73F6 }, } return { Vehicles = Vehicles } - --- example usage ---[[ local LIB = Import("vehicles") -local boats = LIB.Vehicles.Boats -local wagons = LIB.Vehicles.Wagons -]] From 28fb48e4861383ff75bb26df36b7603ea3d4c8ba Mon Sep 17 00:00:00 2001 From: lu-value Date: Wed, 25 Mar 2026 00:29:07 +0100 Subject: [PATCH 4/5] feat: use model keys for shared entity data --- shared/data/animals.lua | 1156 +++---- shared/data/peds.lua | 6728 +++++++++++++++++++------------------- shared/data/vehicles.lua | 460 +-- 3 files changed, 4172 insertions(+), 4172 deletions(-) diff --git a/shared/data/animals.lua b/shared/data/animals.lua index 7c92e2e..9ac5591 100644 --- a/shared/data/animals.lua +++ b/shared/data/animals.lua @@ -4,605 +4,605 @@ local Animals = {} -- Animals are extracted from the ped list and grouped heuristically. Animals.All = { - [0x8F361781] = { model = "a_c_alligator_01", hash = 0x8F361781, outfits = 4 }, - [0xA0B33A7B] = { model = "a_c_alligator_02", hash = 0xA0B33A7B, outfits = 1 }, - [0xB2C4DE9E] = { model = "a_c_alligator_03", hash = 0xB2C4DE9E, outfits = 3 }, - [0x94DA69A0] = { model = "a_c_armadillo_01", hash = 0x94DA69A0, outfits = 1 }, - [0xBA41697E] = { model = "a_c_badger_01", hash = 0xBA41697E, outfits = 3 }, - [0x28308168] = { model = "a_c_bat_01", hash = 0x28308168, outfits = 3 }, - [0x2B845466] = { model = "a_c_bearblack_01", hash = 0x2B845466, outfits = 4 }, - [0xBCFD0E7F] = { model = "a_c_bear_01", hash = 0xBCFD0E7F, outfits = 11 }, - [0x2D4B3F63] = { model = "a_c_beaver_01", hash = 0x2D4B3F63, outfits = 4 }, - [0xA27F49A3] = { model = "a_c_bighornram_01", hash = 0xA27F49A3, outfits = 19 }, - [0x5E5A761C] = { model = "a_c_bluejay_01", hash = 0x5E5A761C, outfits = 2 }, - [0xDE99DA6D] = { model = "a_c_boarlegendary_01", hash = 0xDE99DA6D, outfits = 1 }, - [0x78EBDA79] = { model = "a_c_boar_01", hash = 0x78EBDA79, outfits = 4 }, - [0x8AF5C2A8] = { model = "a_c_buck_01", hash = 0x8AF5C2A8, outfits = 6 }, - [0x5CC5E869] = { model = "a_c_buffalo_01", hash = 0x5CC5E869, outfits = 16 }, - [0x15E9B494] = { model = "a_c_buffalo_tatanka_01", hash = 0x15E9B494, outfits = 1 }, - [0x0BAA25A3] = { model = "a_c_bull_01", hash = 0x0BAA25A3, outfits = 4 }, - [0x47E1D597] = { model = "a_c_californiacondor_01", hash = 0x47E1D597, outfits = 3 }, - [0x6A640A7B] = { model = "a_c_cardinal_01", hash = 0x6A640A7B, outfits = 3 }, - [0x681E834B] = { model = "a_c_carolinaparakeet_01", hash = 0x681E834B, outfits = 1 }, - [0x573201B8] = { model = "a_c_cat_01", hash = 0x573201B8, outfits = 3 }, - [0xEE893817] = { model = "a_c_cedarwaxwing_01", hash = 0xEE893817, outfits = 3 }, - [0x8506531D] = { model = "a_c_chicken_01", hash = 0x8506531D, outfits = 3 }, - [0xA39125DC] = { model = "a_c_chipmunk_01", hash = 0xA39125DC, outfits = 1 }, - [0x846E8AF0] = { model = "a_c_cormorant_01", hash = 0x846E8AF0, outfits = 2 }, - [0x056154F7] = { model = "a_c_cougar_01", hash = 0x056154F7, outfits = 6 }, - [0xFCFA9E1E] = { model = "a_c_cow", hash = 0xFCFA9E1E, outfits = 22 }, - [0x1CA6B883] = { model = "a_c_coyote_01", hash = 0x1CA6B883, outfits = 7 }, - [0x868D0356] = { model = "a_c_crab_01", hash = 0x868D0356, outfits = 3 }, - [0xDE608788] = { model = "a_c_cranewhooping_01", hash = 0xDE608788, outfits = 2 }, - [0x96E9E689] = { model = "a_c_crawfish_01", hash = 0x96E9E689, outfits = 3 }, - [0x05DF8F2C] = { model = "a_c_crow_01", hash = 0x05DF8F2C, outfits = 1 }, - [0x423417A7] = { model = "a_c_deer_01", hash = 0x423417A7, outfits = 6 }, - [0x40E01848] = { model = "a_c_dogamericanfoxhound_01", hash = 0x40E01848, outfits = 5 }, - [0xAE6C236C] = { model = "a_c_dogaustraliansheperd_01", hash = 0xAE6C236C, outfits = 3 }, - [0x2552B009] = { model = "a_c_dogbluetickcoonhound_01", hash = 0x2552B009, outfits = 8 }, - [0xC25FE171] = { model = "a_c_dogcatahoulacur_01", hash = 0xC25FE171, outfits = 7 }, - [0xE8C446CB] = { model = "a_c_dogchesbayretriever_01", hash = 0xE8C446CB, outfits = 3 }, - [0x40D2BCBC] = { model = "a_c_dogcollie_01", hash = 0x40D2BCBC, outfits = 3 }, - [0xC5C5D255] = { model = "a_c_doghobo_01", hash = 0xC5C5D255, outfits = 1 }, - [0x801131EF] = { model = "a_c_doghound_01", hash = 0x801131EF, outfits = 8 }, - [0x62F7C1B3] = { model = "a_c_doghusky_01", hash = 0x62F7C1B3, outfits = 3 }, - [0xAD779EB4] = { model = "a_c_doglab_01", hash = 0xAD779EB4, outfits = 7 }, - [0xCA89FC80] = { model = "a_c_doglion_01", hash = 0xCA89FC80, outfits = 2 }, - [0x40CAC0E7] = { model = "a_c_dogpoodle_01", hash = 0x40CAC0E7, outfits = 3 }, - [0x5EDF32B4] = { model = "a_c_dogrufus_01", hash = 0x5EDF32B4, outfits = 1 }, - [0x3B313FCE] = { model = "a_c_dogstreet_01", hash = 0x3B313FCE, outfits = 3 }, - [0x387E129A] = { model = "re_lostdog_dogs_01", hash = 0x387E129A, outfits = 4 }, - [0x69A37A7B] = { model = "a_c_donkey_01", hash = 0x69A37A7B, outfits = 8 }, - [0xC42E08CB] = { model = "a_c_duck_01", hash = 0xC42E08CB, outfits = 3 }, - [0x57027587] = { model = "a_c_eagle_01", hash = 0x57027587, outfits = 4 }, - [0x31952A0B] = { model = "a_c_egret_01", hash = 0x31952A0B, outfits = 3 }, - [0x87895317] = { model = "a_c_elk_01", hash = 0x87895317, outfits = 8 }, - [0x6F4C2A6C] = { model = "a_c_fishbluegil_01_ms", hash = 0x6F4C2A6C, outfits = 2 }, - [0x81D4FAB9] = { model = "a_c_fishbluegil_01_sm", hash = 0x81D4FAB9, outfits = 2 }, - [0x29F1CB9D] = { model = "a_c_fishbullheadcat_01_ms", hash = 0x29F1CB9D, outfits = 2 }, - [0x5905A300] = { model = "a_c_fishbullheadcat_01_sm", hash = 0x5905A300, outfits = 2 }, - [0xB97D1BFD] = { model = "a_c_fishchainpickerel_01_ms", hash = 0xB97D1BFD, outfits = 2 }, - [0x0FBEB3FF] = { model = "a_c_fishchainpickerel_01_sm", hash = 0x0FBEB3FF, outfits = 2 }, - [0x5BAEE06E] = { model = "a_c_fishchannelcatfish_01_lg", hash = 0x5BAEE06E, outfits = 3 }, - [0x876CAA75] = { model = "a_c_fishchannelcatfish_01_xl", hash = 0x876CAA75, outfits = 2 }, - [0xEE111F34] = { model = "a_c_fishlakesturgeon_01_lg", hash = 0xEE111F34, outfits = 4 }, - [0x1BA2A2E8] = { model = "a_c_fishlargemouthbass_01_lg", hash = 0x1BA2A2E8, outfits = 2 }, - [0x0750FD65] = { model = "a_c_fishlargemouthbass_01_ms", hash = 0x0750FD65, outfits = 2 }, - [0xD5931B3F] = { model = "a_c_fishlongnosegar_01_lg", hash = 0xD5931B3F, outfits = 6 }, - [0xA3660A8D] = { model = "a_c_fishmuskie_01_lg", hash = 0xA3660A8D, outfits = 5 }, - [0x298C8600] = { model = "a_c_fishnorthernpike_01_lg", hash = 0x298C8600, outfits = 7 }, - [0xE50B98F0] = { model = "a_c_fishperch_01_ms", hash = 0xE50B98F0, outfits = 2 }, - [0x2A1C1C20] = { model = "a_c_fishperch_01_sm", hash = 0x2A1C1C20, outfits = 1 }, - [0x080814B2] = { model = "a_c_fishrainbowtrout_01_lg", hash = 0x080814B2, outfits = 2 }, - [0x1D373E24] = { model = "a_c_fishrainbowtrout_01_ms", hash = 0x1D373E24, outfits = 1 }, - [0xF1813D52] = { model = "a_c_fishredfinpickerel_01_ms", hash = 0xF1813D52, outfits = 2 }, - [0x1E9790B6] = { model = "a_c_fishredfinpickerel_01_sm", hash = 0x1E9790B6, outfits = 2 }, - [0x89E3C580] = { model = "a_c_fishrockbass_01_ms", hash = 0x89E3C580, outfits = 2 }, - [0x00173415] = { model = "a_c_fishrockbass_01_sm", hash = 0x00173415, outfits = 4 }, - [0x206B229A] = { model = "a_c_fishsalmonsockeye_01_lg", hash = 0x206B229A, outfits = 2 }, - [0x657C2DBF] = { model = "a_c_fishsalmonsockeye_01_ml", hash = 0x657C2DBF, outfits = 1 }, - [0x027C67C1] = { model = "a_c_fishsalmonsockeye_01_ms", hash = 0x027C67C1, outfits = 2 }, - [0x8FACF62D] = { model = "a_c_fishsmallmouthbass_01_lg", hash = 0x8FACF62D, outfits = 2 }, - [0x6EE63594] = { model = "a_c_fishsmallmouthbass_01_ms", hash = 0x6EE63594, outfits = 2 }, - [0x0F0F6D94] = { model = "a_c_fox_01", hash = 0x0F0F6D94, outfits = 7 }, - [0xC884C578] = { model = "a_c_frogbull_01", hash = 0xC884C578, outfits = 2 }, - [0x1B439EDF] = { model = "a_c_gilamonster_01", hash = 0x1B439EDF, outfits = 3 }, - [0xD3105A6D] = { model = "a_c_goat_01", hash = 0xD3105A6D, outfits = 3 }, - [0x2B1B02CA] = { model = "a_c_goosecanada_01", hash = 0x2B1B02CA, outfits = 3 }, - [0x80184D63] = { model = "a_c_hawk_01", hash = 0x80184D63, outfits = 3 }, - [0x41462AB0] = { model = "a_c_heron_01", hash = 0x41462AB0, outfits = 3 }, - [0x23685521] = { model = "a_c_horsemulepainted_01", hash = 0x23685521, outfits = 2 }, - [0xB6A7CE35] = { model = "a_c_horsemule_01", hash = 0xB6A7CE35, outfits = 2 }, - [0xEA523E18] = { model = "p_c_horse_01", hash = 0xEA523E18, outfits = 1 }, - [0x8AF8EE20] = { model = "a_c_horse_americanpaint_greyovero", hash = 0x8AF8EE20, outfits = 1 }, - [0xE52CB9B2] = { model = "a_c_horse_americanpaint_overo", hash = 0xE52CB9B2, outfits = 4 }, - [0x6ADB82FE] = { model = "a_c_horse_americanpaint_splashedwhite", hash = 0x6ADB82FE, outfits = 1 }, - [0x9BE270D3] = { model = "a_c_horse_americanpaint_tobiano", hash = 0x9BE270D3, outfits = 3 }, - [0xB57D0193] = { model = "a_c_horse_americanstandardbred_black", hash = 0xB57D0193, outfits = 1 }, - [0xED07737A] = { model = "a_c_horse_americanstandardbred_buckskin", hash = 0xED07737A, outfits = 2 }, - [0x703EBD85] = { model = "a_c_horse_americanstandardbred_lightbuckskin", hash = 0x703EBD85, outfits = 5 }, - [0x0348B323] = { model = "a_c_horse_americanstandardbred_palominodapple", hash = 0x0348B323, outfits = 2 }, - [0xE4AD6760] = { model = "a_c_horse_americanstandardbred_silvertailbuckskin", hash = 0xE4AD6760, outfits = 1 }, - [0xE57FC660] = { model = "a_c_horse_andalusian_darkbay", hash = 0xE57FC660, outfits = 1 }, - [0x2A100154] = { model = "a_c_horse_andalusian_perlino", hash = 0x2A100154, outfits = 1 }, - [0x2C80A080] = { model = "a_c_horse_andalusian_rosegray", hash = 0x2C80A080, outfits = 3 }, - [0xC2B8CE6B] = { model = "a_c_horse_appaloosa_blacksnowflake", hash = 0xC2B8CE6B, outfits = 2 }, - [0x7EF6A7DC] = { model = "a_c_horse_appaloosa_blanket", hash = 0x7EF6A7DC, outfits = 1 }, - [0xC2A67972] = { model = "a_c_horse_appaloosa_brownleopard", hash = 0xC2A67972, outfits = 1 }, - [0x2405C422] = { model = "a_c_horse_appaloosa_fewspotted_pc", hash = 0x2405C422, outfits = 2 }, - [0xBC030D85] = { model = "a_c_horse_appaloosa_leopard", hash = 0xBC030D85, outfits = 1 }, - [0xA353367A] = { model = "a_c_horse_appaloosa_leopardblanket", hash = 0xA353367A, outfits = 2 }, - [0x88D6A59E] = { model = "a_c_horse_arabian_black", hash = 0x88D6A59E, outfits = 1 }, - [0x05052866] = { model = "a_c_horse_arabian_grey", hash = 0x05052866, outfits = 1 }, - [0x5933FD24] = { model = "a_c_horse_arabian_redchestnut", hash = 0x5933FD24, outfits = 1 }, - [0xA52D4FC0] = { model = "a_c_horse_arabian_redchestnut_pc", hash = 0xA52D4FC0, outfits = 1 }, - [0xE7F3880C] = { model = "a_c_horse_arabian_rosegreybay", hash = 0xE7F3880C, outfits = 1 }, - [0x5DFCD1F9] = { model = "a_c_horse_arabian_warpedbrindle_pc", hash = 0x5DFCD1F9, outfits = 1 }, - [0xC8DA3400] = { model = "a_c_horse_arabian_white", hash = 0xC8DA3400, outfits = 4 }, - [0xA3C3F4C6] = { model = "a_c_horse_ardennes_bayroan", hash = 0xA3C3F4C6, outfits = 1 }, - [0x8739A629] = { model = "a_c_horse_ardennes_irongreyroan", hash = 0x8739A629, outfits = 1 }, - [0xDA23037A] = { model = "a_c_horse_ardennes_strawberryroan", hash = 0xDA23037A, outfits = 1 }, - [0xDD04A33F] = { model = "a_c_horse_belgian_blondchestnut", hash = 0xDD04A33F, outfits = 1 }, - [0x37DD4055] = { model = "a_c_horse_belgian_mealychestnut", hash = 0x37DD4055, outfits = 1 }, - [0xDB18CA2B] = { model = "a_c_horse_breton_grullodun", hash = 0xDB18CA2B, outfits = 1 }, - [0xAA19E1E1] = { model = "a_c_horse_breton_mealydapplebay", hash = 0xAA19E1E1, outfits = 1 }, - [0xD74136AD] = { model = "a_c_horse_breton_redroan", hash = 0xD74136AD, outfits = 1 }, - [0x5C0D2B7A] = { model = "a_c_horse_breton_sealbrown", hash = 0x5C0D2B7A, outfits = 1 }, - [0x1417E305] = { model = "a_c_horse_breton_sorrel", hash = 0x1417E305, outfits = 1 }, - [0x999E5DCF] = { model = "a_c_horse_breton_steelgrey", hash = 0x999E5DCF, outfits = 1 }, - [0x20C6D093] = { model = "a_c_horse_buell_warvets", hash = 0x20C6D093, outfits = 4 }, - [0x99770A35] = { model = "a_c_horse_criollo_baybrindle", hash = 0x99770A35, outfits = 1 }, - [0x2DACB4A3] = { model = "a_c_horse_criollo_bayframeovero", hash = 0x2DACB4A3, outfits = 1 }, - [0x6CCCC38E] = { model = "a_c_horse_criollo_blueroanovero", hash = 0x6CCCC38E, outfits = 1 }, - [0x43DB06BB] = { model = "a_c_horse_criollo_dun", hash = 0x43DB06BB, outfits = 1 }, - [0x7FF9E2AE] = { model = "a_c_horse_criollo_marblesabino", hash = 0x7FF9E2AE, outfits = 1 }, - [0x1E367ED2] = { model = "a_c_horse_criollo_sorrelovero", hash = 0x1E367ED2, outfits = 1 }, - [0x28F9976A] = { model = "a_c_horse_dutchwarmblood_chocolateroan", hash = 0x28F9976A, outfits = 1 }, - [0x33598622] = { model = "a_c_horse_dutchwarmblood_sealbrown", hash = 0x33598622, outfits = 1 }, - [0x5EF3CBDA] = { model = "a_c_horse_dutchwarmblood_sootybuckskin", hash = 0x5EF3CBDA, outfits = 1 }, - [0xAF2695EE] = { model = "a_c_horse_eagleflies", hash = 0xAF2695EE, outfits = 2 }, - [0x970E1781] = { model = "a_c_horse_gang_bill", hash = 0x970E1781, outfits = 2 }, - [0xDF55F5E6] = { model = "a_c_horse_gang_charles", hash = 0xDF55F5E6, outfits = 4 }, - [0x6B54E5D1] = { model = "a_c_horse_gang_charles_endlesssummer", hash = 0x6B54E5D1, outfits = 2 }, - [0xAD14C46D] = { model = "a_c_horse_gang_dutch", hash = 0xAD14C46D, outfits = 2 }, - [0xD977CC20] = { model = "a_c_horse_gang_hosea", hash = 0xD977CC20, outfits = 2 }, - [0xB998E803] = { model = "a_c_horse_gang_javier", hash = 0xB998E803, outfits = 2 }, - [0x9E19AA66] = { model = "a_c_horse_gang_john", hash = 0x9E19AA66, outfits = 2 }, - [0xA762AEDD] = { model = "a_c_horse_gang_karen", hash = 0xA762AEDD, outfits = 2 }, - [0x43F0DC62] = { model = "a_c_horse_gang_kieran", hash = 0x43F0DC62, outfits = 2 }, - [0xC132BAD0] = { model = "a_c_horse_gang_lenny", hash = 0xC132BAD0, outfits = 2 }, - [0xC7DE4819] = { model = "a_c_horse_gang_micah", hash = 0xC7DE4819, outfits = 2 }, - [0xBF5D6994] = { model = "a_c_horse_gang_sadie", hash = 0xBF5D6994, outfits = 2 }, - [0xDDAE9AEA] = { model = "a_c_horse_gang_sadie_endlesssummer", hash = 0xDDAE9AEA, outfits = 2 }, - [0x9997DF40] = { model = "a_c_horse_gang_sean", hash = 0x9997DF40, outfits = 2 }, - [0x3A5BC787] = { model = "a_c_horse_gang_trelawney", hash = 0x3A5BC787, outfits = 2 }, - [0x68F5058D] = { model = "a_c_horse_gang_uncle", hash = 0x68F5058D, outfits = 2 }, - [0x1165B6EB] = { model = "a_c_horse_gang_uncle_endlesssummer", hash = 0x1165B6EB, outfits = 2 }, - [0xCF246898] = { model = "a_c_horse_hungarianhalfbred_darkdapplegrey", hash = 0xCF246898, outfits = 1 }, - [0x65A30467] = { model = "a_c_horse_hungarianhalfbred_flaxenchestnut", hash = 0x65A30467, outfits = 1 }, - [0x8EF089E3] = { model = "a_c_horse_hungarianhalfbred_liverchestnut", hash = 0x8EF089E3, outfits = 1 }, - [0xFB55A30A] = { model = "a_c_horse_hungarianhalfbred_piebaldtobiano", hash = 0xFB55A30A, outfits = 2 }, - [0x8504B2AA] = { model = "a_c_horse_john_endlesssummer", hash = 0x8504B2AA, outfits = 2 }, - [0x9FA968B5] = { model = "a_c_horse_kladruber_black", hash = 0x9FA968B5, outfits = 1 }, - [0x8FDFD716] = { model = "a_c_horse_kladruber_cremello", hash = 0x8FDFD716, outfits = 1 }, - [0xD96F40C6] = { model = "a_c_horse_kladruber_dapplerosegrey", hash = 0xD96F40C6, outfits = 1 }, - [0xC7103AB0] = { model = "a_c_horse_kladruber_grey", hash = 0xC7103AB0, outfits = 1 }, - [0x91F36592] = { model = "a_c_horse_kladruber_silver", hash = 0x91F36592, outfits = 1 }, - [0xF867D7E4] = { model = "a_c_horse_kladruber_white", hash = 0xF867D7E4, outfits = 1 }, - [0xB0004639] = { model = "a_c_horse_missourifoxtrotter_amberchampagne", hash = 0xB0004639, outfits = 1 }, - [0xE6EE2A0B] = { model = "a_c_horse_missourifoxtrotter_sablechampagne", hash = 0xE6EE2A0B, outfits = 2 }, - [0xBB31267C] = { model = "a_c_horse_missourifoxtrotter_silverdapplepinto", hash = 0xBB31267C, outfits = 1 }, - [0x790B9F4B] = { model = "a_c_horse_morgan_bay", hash = 0x790B9F4B, outfits = 1 }, - [0x4955CBE3] = { model = "a_c_horse_morgan_bayroan", hash = 0x4955CBE3, outfits = 1 }, - [0xC21AB789] = { model = "a_c_horse_morgan_flaxenchestnut", hash = 0xC21AB789, outfits = 1 }, - [0xC0A1CE3D] = { model = "a_c_horse_morgan_liverchestnut_pc", hash = 0xC0A1CE3D, outfits = 1 }, - [0x05C70C99] = { model = "a_c_horse_morgan_palomino", hash = 0x05C70C99, outfits = 1 }, - [0x30331B80] = { model = "a_c_horse_mp_mangy_backup", hash = 0x30331B80, outfits = 7 }, - [0x36AE742C] = { model = "a_c_horse_murfreebrood_mange_01", hash = 0x36AE742C, outfits = 2 }, - [0xC97A99C6] = { model = "a_c_horse_murfreebrood_mange_02", hash = 0xC97A99C6, outfits = 2 }, - [0xDC4D3F6B] = { model = "a_c_horse_murfreebrood_mange_03", hash = 0xDC4D3F6B, outfits = 2 }, - [0x1C8CC068] = { model = "a_c_horse_mustang_goldendun", hash = 0x1C8CC068, outfits = 2 }, - [0xB9A41AA7] = { model = "a_c_horse_mustang_grullodun", hash = 0xB9A41AA7, outfits = 1 }, - [0x029CBA4A] = { model = "a_c_horse_mustang_tigerstripedbay", hash = 0x029CBA4A, outfits = 1 }, - [0x7E4DF66E] = { model = "a_c_horse_mustang_wildbay", hash = 0x7E4DF66E, outfits = 1 }, - [0x7FE4BEC5] = { model = "a_c_horse_nokota_blueroan", hash = 0x7FE4BEC5, outfits = 2 }, - [0x0660E640] = { model = "a_c_horse_nokota_reversedappleroan", hash = 0x0660E640, outfits = 1 }, - [0xB4CA3CB2] = { model = "a_c_horse_nokota_whiteroan", hash = 0xB4CA3CB2, outfits = 2 }, - [0x3F8A66B8] = { model = "a_c_horse_shire_darkbay", hash = 0x3F8A66B8, outfits = 1 }, - [0x0225752B] = { model = "a_c_horse_shire_lightgrey", hash = 0x0225752B, outfits = 1 }, - [0x2FD9844A] = { model = "a_c_horse_shire_ravenblack", hash = 0x2FD9844A, outfits = 1 }, - [0x9B099788] = { model = "a_c_horse_suffolkpunch_redchestnut", hash = 0x9B099788, outfits = 1 }, - [0xA0A6C640] = { model = "a_c_horse_suffolkpunch_sorrel", hash = 0xA0A6C640, outfits = 1 }, - [0x3FE5B95B] = { model = "a_c_horse_tennesseewalker_blackrabicano", hash = 0x3FE5B95B, outfits = 1 }, - [0x400B3937] = { model = "a_c_horse_tennesseewalker_chestnut", hash = 0x400B3937, outfits = 1 }, - [0xFAE16B63] = { model = "a_c_horse_tennesseewalker_dapplebay", hash = 0xFAE16B63, outfits = 1 }, - [0x9C978CB3] = { model = "a_c_horse_tennesseewalker_flaxenroan", hash = 0x9C978CB3, outfits = 1 }, - [0x3E85EE41] = { model = "a_c_horse_tennesseewalker_goldpalomino_pc", hash = 0x3E85EE41, outfits = 1 }, - [0x1A9FA880] = { model = "a_c_horse_tennesseewalker_mahoganybay", hash = 0x1A9FA880, outfits = 1 }, - [0xD4A3E715] = { model = "a_c_horse_tennesseewalker_redroan", hash = 0xD4A3E715, outfits = 1 }, - [0x7E67718B] = { model = "a_c_horse_thoroughbred_blackchestnut", hash = 0x7E67718B, outfits = 1 }, - [0x8D4BE5DE] = { model = "a_c_horse_thoroughbred_bloodbay", hash = 0x8D4BE5DE, outfits = 1 }, - [0xE0A34BD3] = { model = "a_c_horse_thoroughbred_brindle", hash = 0xE0A34BD3, outfits = 1 }, - [0x6EF6C345] = { model = "a_c_horse_thoroughbred_dapplegrey", hash = 0x6EF6C345, outfits = 3 }, - [0x35A71C98] = { model = "a_c_horse_thoroughbred_reversedappleblack", hash = 0x35A71C98, outfits = 1 }, - [0x4394FBA4] = { model = "a_c_horse_turkoman_darkbay", hash = 0x4394FBA4, outfits = 1 }, - [0x6572D46D] = { model = "a_c_horse_turkoman_gold", hash = 0x6572D46D, outfits = 1 }, - [0xA06225BC] = { model = "a_c_horse_turkoman_silver", hash = 0xA06225BC, outfits = 1 }, - [0xF31B7859] = { model = "a_c_horse_winter02_01", hash = 0xF31B7859, outfits = 2 }, - [0xDCA6ADCB] = { model = "a_c_iguanadesert_01", hash = 0xDCA6ADCB, outfits = 3 }, - [0x917D4CD7] = { model = "a_c_iguana_01", hash = 0x917D4CD7, outfits = 1 }, - [0x6868D59D] = { model = "a_c_javelina_01", hash = 0x6868D59D, outfits = 3 }, - [0xC68B3C66] = { model = "a_c_lionmangy_01", hash = 0xC68B3C66, outfits = 2 }, - [0x17099D5E] = { model = "a_c_loon_01", hash = 0x17099D5E, outfits = 3 }, - [0xBE871B28] = { model = "a_c_moose_01", hash = 0xBE871B28, outfits = 7 }, - [0xBC61ABDD] = { model = "a_c_muskrat_01", hash = 0xBC61ABDD, outfits = 3 }, - [0xB25884A5] = { model = "a_c_oriole_01", hash = 0xB25884A5, outfits = 3 }, - [0xCCA5E0B0] = { model = "a_c_owl_01", hash = 0xCCA5E0B0, outfits = 3 }, - [0x21294FD8] = { model = "a_c_ox_01", hash = 0x21294FD8, outfits = 2 }, - [0x629DDF49] = { model = "a_c_panther_01", hash = 0x629DDF49, outfits = 5 }, - [0x94DD14B8] = { model = "a_c_parrot_01", hash = 0x94DD14B8, outfits = 3 }, - [0x4B751E5C] = { model = "a_c_pelican_01", hash = 0x4B751E5C, outfits = 3 }, - [0x546B65F9] = { model = "a_c_pheasant_01", hash = 0x546B65F9, outfits = 3 }, - [0x06A20728] = { model = "a_c_pigeon", hash = 0x06A20728, outfits = 3 }, - [0x3C0BFE72] = { model = "a_c_pig_01", hash = 0x3C0BFE72, outfits = 3 }, - [0xABA8FB1F] = { model = "a_c_possum_01", hash = 0xABA8FB1F, outfits = 3 }, - [0x7BF5C03E] = { model = "a_c_prairiechicken_01", hash = 0x7BF5C03E, outfits = 2 }, - [0x68A4FCCD] = { model = "a_c_pronghorn_01", hash = 0x68A4FCCD, outfits = 20 }, - [0x7D7ED3F4] = { model = "a_c_quail_01", hash = 0x7D7ED3F4, outfits = 3 }, - [0xDFB55C81] = { model = "a_c_rabbit_01", hash = 0xDFB55C81, outfits = 5 }, - [0x56EF91BF] = { model = "a_c_raccoon_01", hash = 0x56EF91BF, outfits = 7 }, - [0x3AFD2922] = { model = "a_c_rat_01", hash = 0x3AFD2922, outfits = 5 }, - [0xDDB5012B] = { model = "a_c_raven_01", hash = 0xDDB5012B, outfits = 2 }, - [0xE42EE8E8] = { model = "a_c_redfootedbooby_01", hash = 0xE42EE8E8, outfits = 3 }, - [0xB7D8866C] = { model = "a_c_robin_01", hash = 0xB7D8866C, outfits = 1 }, - [0x789C821E] = { model = "a_c_rooster_01", hash = 0x789C821E, outfits = 3 }, - [0xBFD5C7DF] = { model = "a_c_roseatespoonbill_01", hash = 0xBFD5C7DF, outfits = 3 }, - [0xF62ADA90] = { model = "a_c_seagull_01", hash = 0xF62ADA90, outfits = 3 }, - [0xCDE2619F] = { model = "a_c_sharkhammerhead_01", hash = 0xCDE2619F, outfits = 3 }, - [0x06C3F072] = { model = "a_c_sharktiger", hash = 0x06C3F072, outfits = 3 }, - [0x02679F5C] = { model = "a_c_sheep_01", hash = 0x02679F5C, outfits = 8 }, - [0xB7C8F704] = { model = "a_c_skunk_01", hash = 0xB7C8F704, outfits = 4 }, - [0x3276FDB9] = { model = "a_c_snakeblacktailrattle_01", hash = 0x3276FDB9, outfits = 2 }, - [0x8587FD0F] = { model = "a_c_snakeblacktailrattle_pelt_01", hash = 0x8587FD0F, outfits = 2 }, - [0x57456DF5] = { model = "a_c_snakeferdelance_01", hash = 0x57456DF5, outfits = 3 }, - [0x2C201567] = { model = "a_c_snakeferdelance_pelt_01", hash = 0x2C201567, outfits = 3 }, - [0x97D56B7E] = { model = "a_c_snakeredboa10ft_01", hash = 0x97D56B7E, outfits = 1 }, - [0x9547268E] = { model = "a_c_snakeredboa_01", hash = 0x9547268E, outfits = 3 }, - [0x47B7B713] = { model = "a_c_snakeredboa_pelt_01", hash = 0x47B7B713, outfits = 3 }, - [0xF24F3CA3] = { model = "a_c_snakewater_01", hash = 0xF24F3CA3, outfits = 3 }, - [0xF887B8E8] = { model = "a_c_snakewater_pelt_01", hash = 0xF887B8E8, outfits = 3 }, - [0x207D15FA] = { model = "a_c_snake_01", hash = 0x207D15FA, outfits = 4 }, - [0xA001C8EC] = { model = "a_c_snake_pelt_01", hash = 0xA001C8EC, outfits = 4 }, - [0x8E1B9425] = { model = "a_c_songbird_01", hash = 0x8E1B9425, outfits = 2 }, - [0xC2B75D41] = { model = "a_c_sparrow_01", hash = 0xC2B75D41, outfits = 3 }, - [0x5758D069] = { model = "a_c_squirrel_01", hash = 0x5758D069, outfits = 6 }, - [0x598F9219] = { model = "a_c_toad_01", hash = 0x598F9219, outfits = 5 }, - [0x881F1C91] = { model = "a_c_turkeywild_01", hash = 0x881F1C91, outfits = 3 }, - [0xE438917C] = { model = "a_c_turkey_01", hash = 0xE438917C, outfits = 3 }, - [0xF61A353F] = { model = "a_c_turkey_02", hash = 0xF61A353F, outfits = 3 }, - [0xA97D7D0C] = { model = "a_c_turtlesea_01", hash = 0xA97D7D0C, outfits = 1 }, - [0xE7B286BA] = { model = "a_c_turtlesnapping_01", hash = 0xE7B286BA, outfits = 3 }, - [0x41D8593C] = { model = "a_c_vulture_01", hash = 0x41D8593C, outfits = 4 }, - [0xBBD91DDA] = { model = "A_C_Wolf", hash = 0xBBD91DDA, outfits = 9 }, - [0xCB391381] = { model = "a_c_wolf_medium", hash = 0xCB391381, outfits = 9 }, - [0xCE924A27] = { model = "a_c_wolf_small", hash = 0xCE924A27, outfits = 5 }, - [0x1E6ABEAD] = { model = "a_c_woodpecker_01", hash = 0x1E6ABEAD, outfits = 1 }, - [0x2B7AD8CD] = { model = "a_c_woodpecker_02", hash = 0x2B7AD8CD, outfits = 1 }, - [0xDCA942B9] = { model = "re_lostdog_teens_01", hash = 0xDCA942B9, outfits = 2 }, - [0x3C0E4E87] = { model = "a_c_horse_norfolkroadster_black", hash = 0x3C0E4E87, outfits = 1 }, - [0xF6ACED8C] = { model = "a_c_horse_norfolkroadster_dappledbuckskin", hash = 0xF6ACED8C, outfits = 1 }, - [0xAB13C4C9] = { model = "a_c_horse_norfolkroadster_piebaldroan", hash = 0xAB13C4C9, outfits = 1 }, - [0xF30EC4B4] = { model = "a_c_horse_norfolkroadster_rosegrey", hash = 0xF30EC4B4, outfits = 1 }, - [0x3D5A780F] = { model = "a_c_horse_norfolkroadster_speckledgrey", hash = 0x3D5A780F, outfits = 1 }, - [0x501BFB75] = { model = "a_c_horse_norfolkroadster_spottedtricolor", hash = 0x501BFB75, outfits = 1 }, - [0xBBE15017] = { model = "a_c_horse_gypsycob_palominoblagdon", hash = 0xBBE15017, outfits = 1 }, - [0xE8BEFB8D] = { model = "a_c_horse_gypsycob_piebald", hash = 0xE8BEFB8D, outfits = 1 }, - [0xE71EBBF9] = { model = "a_c_horse_gypsycob_skewbald", hash = 0xE71EBBF9, outfits = 1 }, - [0xA8EE5C74] = { model = "a_c_horse_gypsycob_splashedbay", hash = 0xA8EE5C74, outfits = 1 }, - [0x57FA17A0] = { model = "a_c_horse_gypsycob_splashedpiebald", hash = 0x57FA17A0, outfits = 1 }, - [0x41D65902] = { model = "a_c_horse_gypsycob_whiteblagdon", hash = 0x41D65902, outfits = 1 }, - [0x52AC7C75] = { model = "a_c_horse_missourifoxtrotter_blacktovero", hash = 0x52AC7C75, outfits = 1 }, - [0x1E31107B] = { model = "a_c_horse_missourifoxtrotter_blueroan", hash = 0x1E31107B, outfits = 1 }, - [0x797EDE19] = { model = "a_c_horse_missourifoxtrotter_buckskinbrindle", hash = 0x797EDE19, outfits = 1 }, - [0x5F5BC124] = { model = "a_c_horse_missourifoxtrotter_dapplegrey", hash = 0x5F5BC124, outfits = 1 }, - [0x707C8EBE] = { model = "a_c_horse_mustang_blackovero", hash = 0x707C8EBE, outfits = 2 }, - [0x62121AEC] = { model = "a_c_horse_mustang_buckskin", hash = 0x62121AEC, outfits = 2 }, - [0x44D40E4A] = { model = "a_c_horse_mustang_chestnuttovero", hash = 0x44D40E4A, outfits = 2 }, - [0x0471D5D2] = { model = "a_c_horse_mustang_reddunovero", hash = 0x0471D5D2, outfits = 2 }, - [0x88828382] = { model = "a_c_horse_turkoman_black", hash = 0x88828382, outfits = 1 }, - [0x29AD5E2F] = { model = "a_c_horse_turkoman_chestnut", hash = 0x29AD5E2F, outfits = 1 }, - [0x5A4153F2] = { model = "a_c_horse_turkoman_grey", hash = 0x5A4153F2, outfits = 1 }, - [0x2A0483C6] = { model = "a_c_horse_turkoman_perlino", hash = 0x2A0483C6, outfits = 1 }, + [`a_c_alligator_01`] = { model = "a_c_alligator_01", hash = 0x8F361781, outfits = 4 }, + [`a_c_alligator_02`] = { model = "a_c_alligator_02", hash = 0xA0B33A7B, outfits = 1 }, + [`a_c_alligator_03`] = { model = "a_c_alligator_03", hash = 0xB2C4DE9E, outfits = 3 }, + [`a_c_armadillo_01`] = { model = "a_c_armadillo_01", hash = 0x94DA69A0, outfits = 1 }, + [`a_c_badger_01`] = { model = "a_c_badger_01", hash = 0xBA41697E, outfits = 3 }, + [`a_c_bat_01`] = { model = "a_c_bat_01", hash = 0x28308168, outfits = 3 }, + [`a_c_bearblack_01`] = { model = "a_c_bearblack_01", hash = 0x2B845466, outfits = 4 }, + [`a_c_bear_01`] = { model = "a_c_bear_01", hash = 0xBCFD0E7F, outfits = 11 }, + [`a_c_beaver_01`] = { model = "a_c_beaver_01", hash = 0x2D4B3F63, outfits = 4 }, + [`a_c_bighornram_01`] = { model = "a_c_bighornram_01", hash = 0xA27F49A3, outfits = 19 }, + [`a_c_bluejay_01`] = { model = "a_c_bluejay_01", hash = 0x5E5A761C, outfits = 2 }, + [`a_c_boarlegendary_01`] = { model = "a_c_boarlegendary_01", hash = 0xDE99DA6D, outfits = 1 }, + [`a_c_boar_01`] = { model = "a_c_boar_01", hash = 0x78EBDA79, outfits = 4 }, + [`a_c_buck_01`] = { model = "a_c_buck_01", hash = 0x8AF5C2A8, outfits = 6 }, + [`a_c_buffalo_01`] = { model = "a_c_buffalo_01", hash = 0x5CC5E869, outfits = 16 }, + [`a_c_buffalo_tatanka_01`] = { model = "a_c_buffalo_tatanka_01", hash = 0x15E9B494, outfits = 1 }, + [`a_c_bull_01`] = { model = "a_c_bull_01", hash = 0x0BAA25A3, outfits = 4 }, + [`a_c_californiacondor_01`] = { model = "a_c_californiacondor_01", hash = 0x47E1D597, outfits = 3 }, + [`a_c_cardinal_01`] = { model = "a_c_cardinal_01", hash = 0x6A640A7B, outfits = 3 }, + [`a_c_carolinaparakeet_01`] = { model = "a_c_carolinaparakeet_01", hash = 0x681E834B, outfits = 1 }, + [`a_c_cat_01`] = { model = "a_c_cat_01", hash = 0x573201B8, outfits = 3 }, + [`a_c_cedarwaxwing_01`] = { model = "a_c_cedarwaxwing_01", hash = 0xEE893817, outfits = 3 }, + [`a_c_chicken_01`] = { model = "a_c_chicken_01", hash = 0x8506531D, outfits = 3 }, + [`a_c_chipmunk_01`] = { model = "a_c_chipmunk_01", hash = 0xA39125DC, outfits = 1 }, + [`a_c_cormorant_01`] = { model = "a_c_cormorant_01", hash = 0x846E8AF0, outfits = 2 }, + [`a_c_cougar_01`] = { model = "a_c_cougar_01", hash = 0x056154F7, outfits = 6 }, + [`a_c_cow`] = { model = "a_c_cow", hash = 0xFCFA9E1E, outfits = 22 }, + [`a_c_coyote_01`] = { model = "a_c_coyote_01", hash = 0x1CA6B883, outfits = 7 }, + [`a_c_crab_01`] = { model = "a_c_crab_01", hash = 0x868D0356, outfits = 3 }, + [`a_c_cranewhooping_01`] = { model = "a_c_cranewhooping_01", hash = 0xDE608788, outfits = 2 }, + [`a_c_crawfish_01`] = { model = "a_c_crawfish_01", hash = 0x96E9E689, outfits = 3 }, + [`a_c_crow_01`] = { model = "a_c_crow_01", hash = 0x05DF8F2C, outfits = 1 }, + [`a_c_deer_01`] = { model = "a_c_deer_01", hash = 0x423417A7, outfits = 6 }, + [`a_c_dogamericanfoxhound_01`] = { model = "a_c_dogamericanfoxhound_01", hash = 0x40E01848, outfits = 5 }, + [`a_c_dogaustraliansheperd_01`] = { model = "a_c_dogaustraliansheperd_01", hash = 0xAE6C236C, outfits = 3 }, + [`a_c_dogbluetickcoonhound_01`] = { model = "a_c_dogbluetickcoonhound_01", hash = 0x2552B009, outfits = 8 }, + [`a_c_dogcatahoulacur_01`] = { model = "a_c_dogcatahoulacur_01", hash = 0xC25FE171, outfits = 7 }, + [`a_c_dogchesbayretriever_01`] = { model = "a_c_dogchesbayretriever_01", hash = 0xE8C446CB, outfits = 3 }, + [`a_c_dogcollie_01`] = { model = "a_c_dogcollie_01", hash = 0x40D2BCBC, outfits = 3 }, + [`a_c_doghobo_01`] = { model = "a_c_doghobo_01", hash = 0xC5C5D255, outfits = 1 }, + [`a_c_doghound_01`] = { model = "a_c_doghound_01", hash = 0x801131EF, outfits = 8 }, + [`a_c_doghusky_01`] = { model = "a_c_doghusky_01", hash = 0x62F7C1B3, outfits = 3 }, + [`a_c_doglab_01`] = { model = "a_c_doglab_01", hash = 0xAD779EB4, outfits = 7 }, + [`a_c_doglion_01`] = { model = "a_c_doglion_01", hash = 0xCA89FC80, outfits = 2 }, + [`a_c_dogpoodle_01`] = { model = "a_c_dogpoodle_01", hash = 0x40CAC0E7, outfits = 3 }, + [`a_c_dogrufus_01`] = { model = "a_c_dogrufus_01", hash = 0x5EDF32B4, outfits = 1 }, + [`a_c_dogstreet_01`] = { model = "a_c_dogstreet_01", hash = 0x3B313FCE, outfits = 3 }, + [`re_lostdog_dogs_01`] = { model = "re_lostdog_dogs_01", hash = 0x387E129A, outfits = 4 }, + [`a_c_donkey_01`] = { model = "a_c_donkey_01", hash = 0x69A37A7B, outfits = 8 }, + [`a_c_duck_01`] = { model = "a_c_duck_01", hash = 0xC42E08CB, outfits = 3 }, + [`a_c_eagle_01`] = { model = "a_c_eagle_01", hash = 0x57027587, outfits = 4 }, + [`a_c_egret_01`] = { model = "a_c_egret_01", hash = 0x31952A0B, outfits = 3 }, + [`a_c_elk_01`] = { model = "a_c_elk_01", hash = 0x87895317, outfits = 8 }, + [`a_c_fishbluegil_01_ms`] = { model = "a_c_fishbluegil_01_ms", hash = 0x6F4C2A6C, outfits = 2 }, + [`a_c_fishbluegil_01_sm`] = { model = "a_c_fishbluegil_01_sm", hash = 0x81D4FAB9, outfits = 2 }, + [`a_c_fishbullheadcat_01_ms`] = { model = "a_c_fishbullheadcat_01_ms", hash = 0x29F1CB9D, outfits = 2 }, + [`a_c_fishbullheadcat_01_sm`] = { model = "a_c_fishbullheadcat_01_sm", hash = 0x5905A300, outfits = 2 }, + [`a_c_fishchainpickerel_01_ms`] = { model = "a_c_fishchainpickerel_01_ms", hash = 0xB97D1BFD, outfits = 2 }, + [`a_c_fishchainpickerel_01_sm`] = { model = "a_c_fishchainpickerel_01_sm", hash = 0x0FBEB3FF, outfits = 2 }, + [`a_c_fishchannelcatfish_01_lg`] = { model = "a_c_fishchannelcatfish_01_lg", hash = 0x5BAEE06E, outfits = 3 }, + [`a_c_fishchannelcatfish_01_xl`] = { model = "a_c_fishchannelcatfish_01_xl", hash = 0x876CAA75, outfits = 2 }, + [`a_c_fishlakesturgeon_01_lg`] = { model = "a_c_fishlakesturgeon_01_lg", hash = 0xEE111F34, outfits = 4 }, + [`a_c_fishlargemouthbass_01_lg`] = { model = "a_c_fishlargemouthbass_01_lg", hash = 0x1BA2A2E8, outfits = 2 }, + [`a_c_fishlargemouthbass_01_ms`] = { model = "a_c_fishlargemouthbass_01_ms", hash = 0x0750FD65, outfits = 2 }, + [`a_c_fishlongnosegar_01_lg`] = { model = "a_c_fishlongnosegar_01_lg", hash = 0xD5931B3F, outfits = 6 }, + [`a_c_fishmuskie_01_lg`] = { model = "a_c_fishmuskie_01_lg", hash = 0xA3660A8D, outfits = 5 }, + [`a_c_fishnorthernpike_01_lg`] = { model = "a_c_fishnorthernpike_01_lg", hash = 0x298C8600, outfits = 7 }, + [`a_c_fishperch_01_ms`] = { model = "a_c_fishperch_01_ms", hash = 0xE50B98F0, outfits = 2 }, + [`a_c_fishperch_01_sm`] = { model = "a_c_fishperch_01_sm", hash = 0x2A1C1C20, outfits = 1 }, + [`a_c_fishrainbowtrout_01_lg`] = { model = "a_c_fishrainbowtrout_01_lg", hash = 0x080814B2, outfits = 2 }, + [`a_c_fishrainbowtrout_01_ms`] = { model = "a_c_fishrainbowtrout_01_ms", hash = 0x1D373E24, outfits = 1 }, + [`a_c_fishredfinpickerel_01_ms`] = { model = "a_c_fishredfinpickerel_01_ms", hash = 0xF1813D52, outfits = 2 }, + [`a_c_fishredfinpickerel_01_sm`] = { model = "a_c_fishredfinpickerel_01_sm", hash = 0x1E9790B6, outfits = 2 }, + [`a_c_fishrockbass_01_ms`] = { model = "a_c_fishrockbass_01_ms", hash = 0x89E3C580, outfits = 2 }, + [`a_c_fishrockbass_01_sm`] = { model = "a_c_fishrockbass_01_sm", hash = 0x00173415, outfits = 4 }, + [`a_c_fishsalmonsockeye_01_lg`] = { model = "a_c_fishsalmonsockeye_01_lg", hash = 0x206B229A, outfits = 2 }, + [`a_c_fishsalmonsockeye_01_ml`] = { model = "a_c_fishsalmonsockeye_01_ml", hash = 0x657C2DBF, outfits = 1 }, + [`a_c_fishsalmonsockeye_01_ms`] = { model = "a_c_fishsalmonsockeye_01_ms", hash = 0x027C67C1, outfits = 2 }, + [`a_c_fishsmallmouthbass_01_lg`] = { model = "a_c_fishsmallmouthbass_01_lg", hash = 0x8FACF62D, outfits = 2 }, + [`a_c_fishsmallmouthbass_01_ms`] = { model = "a_c_fishsmallmouthbass_01_ms", hash = 0x6EE63594, outfits = 2 }, + [`a_c_fox_01`] = { model = "a_c_fox_01", hash = 0x0F0F6D94, outfits = 7 }, + [`a_c_frogbull_01`] = { model = "a_c_frogbull_01", hash = 0xC884C578, outfits = 2 }, + [`a_c_gilamonster_01`] = { model = "a_c_gilamonster_01", hash = 0x1B439EDF, outfits = 3 }, + [`a_c_goat_01`] = { model = "a_c_goat_01", hash = 0xD3105A6D, outfits = 3 }, + [`a_c_goosecanada_01`] = { model = "a_c_goosecanada_01", hash = 0x2B1B02CA, outfits = 3 }, + [`a_c_hawk_01`] = { model = "a_c_hawk_01", hash = 0x80184D63, outfits = 3 }, + [`a_c_heron_01`] = { model = "a_c_heron_01", hash = 0x41462AB0, outfits = 3 }, + [`a_c_horsemulepainted_01`] = { model = "a_c_horsemulepainted_01", hash = 0x23685521, outfits = 2 }, + [`a_c_horsemule_01`] = { model = "a_c_horsemule_01", hash = 0xB6A7CE35, outfits = 2 }, + [`p_c_horse_01`] = { model = "p_c_horse_01", hash = 0xEA523E18, outfits = 1 }, + [`a_c_horse_americanpaint_greyovero`] = { model = "a_c_horse_americanpaint_greyovero", hash = 0x8AF8EE20, outfits = 1 }, + [`a_c_horse_americanpaint_overo`] = { model = "a_c_horse_americanpaint_overo", hash = 0xE52CB9B2, outfits = 4 }, + [`a_c_horse_americanpaint_splashedwhite`] = { model = "a_c_horse_americanpaint_splashedwhite", hash = 0x6ADB82FE, outfits = 1 }, + [`a_c_horse_americanpaint_tobiano`] = { model = "a_c_horse_americanpaint_tobiano", hash = 0x9BE270D3, outfits = 3 }, + [`a_c_horse_americanstandardbred_black`] = { model = "a_c_horse_americanstandardbred_black", hash = 0xB57D0193, outfits = 1 }, + [`a_c_horse_americanstandardbred_buckskin`] = { model = "a_c_horse_americanstandardbred_buckskin", hash = 0xED07737A, outfits = 2 }, + [`a_c_horse_americanstandardbred_lightbuckskin`] = { model = "a_c_horse_americanstandardbred_lightbuckskin", hash = 0x703EBD85, outfits = 5 }, + [`a_c_horse_americanstandardbred_palominodapple`] = { model = "a_c_horse_americanstandardbred_palominodapple", hash = 0x0348B323, outfits = 2 }, + [`a_c_horse_americanstandardbred_silvertailbuckskin`] = { model = "a_c_horse_americanstandardbred_silvertailbuckskin", hash = 0xE4AD6760, outfits = 1 }, + [`a_c_horse_andalusian_darkbay`] = { model = "a_c_horse_andalusian_darkbay", hash = 0xE57FC660, outfits = 1 }, + [`a_c_horse_andalusian_perlino`] = { model = "a_c_horse_andalusian_perlino", hash = 0x2A100154, outfits = 1 }, + [`a_c_horse_andalusian_rosegray`] = { model = "a_c_horse_andalusian_rosegray", hash = 0x2C80A080, outfits = 3 }, + [`a_c_horse_appaloosa_blacksnowflake`] = { model = "a_c_horse_appaloosa_blacksnowflake", hash = 0xC2B8CE6B, outfits = 2 }, + [`a_c_horse_appaloosa_blanket`] = { model = "a_c_horse_appaloosa_blanket", hash = 0x7EF6A7DC, outfits = 1 }, + [`a_c_horse_appaloosa_brownleopard`] = { model = "a_c_horse_appaloosa_brownleopard", hash = 0xC2A67972, outfits = 1 }, + [`a_c_horse_appaloosa_fewspotted_pc`] = { model = "a_c_horse_appaloosa_fewspotted_pc", hash = 0x2405C422, outfits = 2 }, + [`a_c_horse_appaloosa_leopard`] = { model = "a_c_horse_appaloosa_leopard", hash = 0xBC030D85, outfits = 1 }, + [`a_c_horse_appaloosa_leopardblanket`] = { model = "a_c_horse_appaloosa_leopardblanket", hash = 0xA353367A, outfits = 2 }, + [`a_c_horse_arabian_black`] = { model = "a_c_horse_arabian_black", hash = 0x88D6A59E, outfits = 1 }, + [`a_c_horse_arabian_grey`] = { model = "a_c_horse_arabian_grey", hash = 0x05052866, outfits = 1 }, + [`a_c_horse_arabian_redchestnut`] = { model = "a_c_horse_arabian_redchestnut", hash = 0x5933FD24, outfits = 1 }, + [`a_c_horse_arabian_redchestnut_pc`] = { model = "a_c_horse_arabian_redchestnut_pc", hash = 0xA52D4FC0, outfits = 1 }, + [`a_c_horse_arabian_rosegreybay`] = { model = "a_c_horse_arabian_rosegreybay", hash = 0xE7F3880C, outfits = 1 }, + [`a_c_horse_arabian_warpedbrindle_pc`] = { model = "a_c_horse_arabian_warpedbrindle_pc", hash = 0x5DFCD1F9, outfits = 1 }, + [`a_c_horse_arabian_white`] = { model = "a_c_horse_arabian_white", hash = 0xC8DA3400, outfits = 4 }, + [`a_c_horse_ardennes_bayroan`] = { model = "a_c_horse_ardennes_bayroan", hash = 0xA3C3F4C6, outfits = 1 }, + [`a_c_horse_ardennes_irongreyroan`] = { model = "a_c_horse_ardennes_irongreyroan", hash = 0x8739A629, outfits = 1 }, + [`a_c_horse_ardennes_strawberryroan`] = { model = "a_c_horse_ardennes_strawberryroan", hash = 0xDA23037A, outfits = 1 }, + [`a_c_horse_belgian_blondchestnut`] = { model = "a_c_horse_belgian_blondchestnut", hash = 0xDD04A33F, outfits = 1 }, + [`a_c_horse_belgian_mealychestnut`] = { model = "a_c_horse_belgian_mealychestnut", hash = 0x37DD4055, outfits = 1 }, + [`a_c_horse_breton_grullodun`] = { model = "a_c_horse_breton_grullodun", hash = 0xDB18CA2B, outfits = 1 }, + [`a_c_horse_breton_mealydapplebay`] = { model = "a_c_horse_breton_mealydapplebay", hash = 0xAA19E1E1, outfits = 1 }, + [`a_c_horse_breton_redroan`] = { model = "a_c_horse_breton_redroan", hash = 0xD74136AD, outfits = 1 }, + [`a_c_horse_breton_sealbrown`] = { model = "a_c_horse_breton_sealbrown", hash = 0x5C0D2B7A, outfits = 1 }, + [`a_c_horse_breton_sorrel`] = { model = "a_c_horse_breton_sorrel", hash = 0x1417E305, outfits = 1 }, + [`a_c_horse_breton_steelgrey`] = { model = "a_c_horse_breton_steelgrey", hash = 0x999E5DCF, outfits = 1 }, + [`a_c_horse_buell_warvets`] = { model = "a_c_horse_buell_warvets", hash = 0x20C6D093, outfits = 4 }, + [`a_c_horse_criollo_baybrindle`] = { model = "a_c_horse_criollo_baybrindle", hash = 0x99770A35, outfits = 1 }, + [`a_c_horse_criollo_bayframeovero`] = { model = "a_c_horse_criollo_bayframeovero", hash = 0x2DACB4A3, outfits = 1 }, + [`a_c_horse_criollo_blueroanovero`] = { model = "a_c_horse_criollo_blueroanovero", hash = 0x6CCCC38E, outfits = 1 }, + [`a_c_horse_criollo_dun`] = { model = "a_c_horse_criollo_dun", hash = 0x43DB06BB, outfits = 1 }, + [`a_c_horse_criollo_marblesabino`] = { model = "a_c_horse_criollo_marblesabino", hash = 0x7FF9E2AE, outfits = 1 }, + [`a_c_horse_criollo_sorrelovero`] = { model = "a_c_horse_criollo_sorrelovero", hash = 0x1E367ED2, outfits = 1 }, + [`a_c_horse_dutchwarmblood_chocolateroan`] = { model = "a_c_horse_dutchwarmblood_chocolateroan", hash = 0x28F9976A, outfits = 1 }, + [`a_c_horse_dutchwarmblood_sealbrown`] = { model = "a_c_horse_dutchwarmblood_sealbrown", hash = 0x33598622, outfits = 1 }, + [`a_c_horse_dutchwarmblood_sootybuckskin`] = { model = "a_c_horse_dutchwarmblood_sootybuckskin", hash = 0x5EF3CBDA, outfits = 1 }, + [`a_c_horse_eagleflies`] = { model = "a_c_horse_eagleflies", hash = 0xAF2695EE, outfits = 2 }, + [`a_c_horse_gang_bill`] = { model = "a_c_horse_gang_bill", hash = 0x970E1781, outfits = 2 }, + [`a_c_horse_gang_charles`] = { model = "a_c_horse_gang_charles", hash = 0xDF55F5E6, outfits = 4 }, + [`a_c_horse_gang_charles_endlesssummer`] = { model = "a_c_horse_gang_charles_endlesssummer", hash = 0x6B54E5D1, outfits = 2 }, + [`a_c_horse_gang_dutch`] = { model = "a_c_horse_gang_dutch", hash = 0xAD14C46D, outfits = 2 }, + [`a_c_horse_gang_hosea`] = { model = "a_c_horse_gang_hosea", hash = 0xD977CC20, outfits = 2 }, + [`a_c_horse_gang_javier`] = { model = "a_c_horse_gang_javier", hash = 0xB998E803, outfits = 2 }, + [`a_c_horse_gang_john`] = { model = "a_c_horse_gang_john", hash = 0x9E19AA66, outfits = 2 }, + [`a_c_horse_gang_karen`] = { model = "a_c_horse_gang_karen", hash = 0xA762AEDD, outfits = 2 }, + [`a_c_horse_gang_kieran`] = { model = "a_c_horse_gang_kieran", hash = 0x43F0DC62, outfits = 2 }, + [`a_c_horse_gang_lenny`] = { model = "a_c_horse_gang_lenny", hash = 0xC132BAD0, outfits = 2 }, + [`a_c_horse_gang_micah`] = { model = "a_c_horse_gang_micah", hash = 0xC7DE4819, outfits = 2 }, + [`a_c_horse_gang_sadie`] = { model = "a_c_horse_gang_sadie", hash = 0xBF5D6994, outfits = 2 }, + [`a_c_horse_gang_sadie_endlesssummer`] = { model = "a_c_horse_gang_sadie_endlesssummer", hash = 0xDDAE9AEA, outfits = 2 }, + [`a_c_horse_gang_sean`] = { model = "a_c_horse_gang_sean", hash = 0x9997DF40, outfits = 2 }, + [`a_c_horse_gang_trelawney`] = { model = "a_c_horse_gang_trelawney", hash = 0x3A5BC787, outfits = 2 }, + [`a_c_horse_gang_uncle`] = { model = "a_c_horse_gang_uncle", hash = 0x68F5058D, outfits = 2 }, + [`a_c_horse_gang_uncle_endlesssummer`] = { model = "a_c_horse_gang_uncle_endlesssummer", hash = 0x1165B6EB, outfits = 2 }, + [`a_c_horse_hungarianhalfbred_darkdapplegrey`] = { model = "a_c_horse_hungarianhalfbred_darkdapplegrey", hash = 0xCF246898, outfits = 1 }, + [`a_c_horse_hungarianhalfbred_flaxenchestnut`] = { model = "a_c_horse_hungarianhalfbred_flaxenchestnut", hash = 0x65A30467, outfits = 1 }, + [`a_c_horse_hungarianhalfbred_liverchestnut`] = { model = "a_c_horse_hungarianhalfbred_liverchestnut", hash = 0x8EF089E3, outfits = 1 }, + [`a_c_horse_hungarianhalfbred_piebaldtobiano`] = { model = "a_c_horse_hungarianhalfbred_piebaldtobiano", hash = 0xFB55A30A, outfits = 2 }, + [`a_c_horse_john_endlesssummer`] = { model = "a_c_horse_john_endlesssummer", hash = 0x8504B2AA, outfits = 2 }, + [`a_c_horse_kladruber_black`] = { model = "a_c_horse_kladruber_black", hash = 0x9FA968B5, outfits = 1 }, + [`a_c_horse_kladruber_cremello`] = { model = "a_c_horse_kladruber_cremello", hash = 0x8FDFD716, outfits = 1 }, + [`a_c_horse_kladruber_dapplerosegrey`] = { model = "a_c_horse_kladruber_dapplerosegrey", hash = 0xD96F40C6, outfits = 1 }, + [`a_c_horse_kladruber_grey`] = { model = "a_c_horse_kladruber_grey", hash = 0xC7103AB0, outfits = 1 }, + [`a_c_horse_kladruber_silver`] = { model = "a_c_horse_kladruber_silver", hash = 0x91F36592, outfits = 1 }, + [`a_c_horse_kladruber_white`] = { model = "a_c_horse_kladruber_white", hash = 0xF867D7E4, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_amberchampagne`] = { model = "a_c_horse_missourifoxtrotter_amberchampagne", hash = 0xB0004639, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_sablechampagne`] = { model = "a_c_horse_missourifoxtrotter_sablechampagne", hash = 0xE6EE2A0B, outfits = 2 }, + [`a_c_horse_missourifoxtrotter_silverdapplepinto`] = { model = "a_c_horse_missourifoxtrotter_silverdapplepinto", hash = 0xBB31267C, outfits = 1 }, + [`a_c_horse_morgan_bay`] = { model = "a_c_horse_morgan_bay", hash = 0x790B9F4B, outfits = 1 }, + [`a_c_horse_morgan_bayroan`] = { model = "a_c_horse_morgan_bayroan", hash = 0x4955CBE3, outfits = 1 }, + [`a_c_horse_morgan_flaxenchestnut`] = { model = "a_c_horse_morgan_flaxenchestnut", hash = 0xC21AB789, outfits = 1 }, + [`a_c_horse_morgan_liverchestnut_pc`] = { model = "a_c_horse_morgan_liverchestnut_pc", hash = 0xC0A1CE3D, outfits = 1 }, + [`a_c_horse_morgan_palomino`] = { model = "a_c_horse_morgan_palomino", hash = 0x05C70C99, outfits = 1 }, + [`a_c_horse_mp_mangy_backup`] = { model = "a_c_horse_mp_mangy_backup", hash = 0x30331B80, outfits = 7 }, + [`a_c_horse_murfreebrood_mange_01`] = { model = "a_c_horse_murfreebrood_mange_01", hash = 0x36AE742C, outfits = 2 }, + [`a_c_horse_murfreebrood_mange_02`] = { model = "a_c_horse_murfreebrood_mange_02", hash = 0xC97A99C6, outfits = 2 }, + [`a_c_horse_murfreebrood_mange_03`] = { model = "a_c_horse_murfreebrood_mange_03", hash = 0xDC4D3F6B, outfits = 2 }, + [`a_c_horse_mustang_goldendun`] = { model = "a_c_horse_mustang_goldendun", hash = 0x1C8CC068, outfits = 2 }, + [`a_c_horse_mustang_grullodun`] = { model = "a_c_horse_mustang_grullodun", hash = 0xB9A41AA7, outfits = 1 }, + [`a_c_horse_mustang_tigerstripedbay`] = { model = "a_c_horse_mustang_tigerstripedbay", hash = 0x029CBA4A, outfits = 1 }, + [`a_c_horse_mustang_wildbay`] = { model = "a_c_horse_mustang_wildbay", hash = 0x7E4DF66E, outfits = 1 }, + [`a_c_horse_nokota_blueroan`] = { model = "a_c_horse_nokota_blueroan", hash = 0x7FE4BEC5, outfits = 2 }, + [`a_c_horse_nokota_reversedappleroan`] = { model = "a_c_horse_nokota_reversedappleroan", hash = 0x0660E640, outfits = 1 }, + [`a_c_horse_nokota_whiteroan`] = { model = "a_c_horse_nokota_whiteroan", hash = 0xB4CA3CB2, outfits = 2 }, + [`a_c_horse_shire_darkbay`] = { model = "a_c_horse_shire_darkbay", hash = 0x3F8A66B8, outfits = 1 }, + [`a_c_horse_shire_lightgrey`] = { model = "a_c_horse_shire_lightgrey", hash = 0x0225752B, outfits = 1 }, + [`a_c_horse_shire_ravenblack`] = { model = "a_c_horse_shire_ravenblack", hash = 0x2FD9844A, outfits = 1 }, + [`a_c_horse_suffolkpunch_redchestnut`] = { model = "a_c_horse_suffolkpunch_redchestnut", hash = 0x9B099788, outfits = 1 }, + [`a_c_horse_suffolkpunch_sorrel`] = { model = "a_c_horse_suffolkpunch_sorrel", hash = 0xA0A6C640, outfits = 1 }, + [`a_c_horse_tennesseewalker_blackrabicano`] = { model = "a_c_horse_tennesseewalker_blackrabicano", hash = 0x3FE5B95B, outfits = 1 }, + [`a_c_horse_tennesseewalker_chestnut`] = { model = "a_c_horse_tennesseewalker_chestnut", hash = 0x400B3937, outfits = 1 }, + [`a_c_horse_tennesseewalker_dapplebay`] = { model = "a_c_horse_tennesseewalker_dapplebay", hash = 0xFAE16B63, outfits = 1 }, + [`a_c_horse_tennesseewalker_flaxenroan`] = { model = "a_c_horse_tennesseewalker_flaxenroan", hash = 0x9C978CB3, outfits = 1 }, + [`a_c_horse_tennesseewalker_goldpalomino_pc`] = { model = "a_c_horse_tennesseewalker_goldpalomino_pc", hash = 0x3E85EE41, outfits = 1 }, + [`a_c_horse_tennesseewalker_mahoganybay`] = { model = "a_c_horse_tennesseewalker_mahoganybay", hash = 0x1A9FA880, outfits = 1 }, + [`a_c_horse_tennesseewalker_redroan`] = { model = "a_c_horse_tennesseewalker_redroan", hash = 0xD4A3E715, outfits = 1 }, + [`a_c_horse_thoroughbred_blackchestnut`] = { model = "a_c_horse_thoroughbred_blackchestnut", hash = 0x7E67718B, outfits = 1 }, + [`a_c_horse_thoroughbred_bloodbay`] = { model = "a_c_horse_thoroughbred_bloodbay", hash = 0x8D4BE5DE, outfits = 1 }, + [`a_c_horse_thoroughbred_brindle`] = { model = "a_c_horse_thoroughbred_brindle", hash = 0xE0A34BD3, outfits = 1 }, + [`a_c_horse_thoroughbred_dapplegrey`] = { model = "a_c_horse_thoroughbred_dapplegrey", hash = 0x6EF6C345, outfits = 3 }, + [`a_c_horse_thoroughbred_reversedappleblack`] = { model = "a_c_horse_thoroughbred_reversedappleblack", hash = 0x35A71C98, outfits = 1 }, + [`a_c_horse_turkoman_darkbay`] = { model = "a_c_horse_turkoman_darkbay", hash = 0x4394FBA4, outfits = 1 }, + [`a_c_horse_turkoman_gold`] = { model = "a_c_horse_turkoman_gold", hash = 0x6572D46D, outfits = 1 }, + [`a_c_horse_turkoman_silver`] = { model = "a_c_horse_turkoman_silver", hash = 0xA06225BC, outfits = 1 }, + [`a_c_horse_winter02_01`] = { model = "a_c_horse_winter02_01", hash = 0xF31B7859, outfits = 2 }, + [`a_c_iguanadesert_01`] = { model = "a_c_iguanadesert_01", hash = 0xDCA6ADCB, outfits = 3 }, + [`a_c_iguana_01`] = { model = "a_c_iguana_01", hash = 0x917D4CD7, outfits = 1 }, + [`a_c_javelina_01`] = { model = "a_c_javelina_01", hash = 0x6868D59D, outfits = 3 }, + [`a_c_lionmangy_01`] = { model = "a_c_lionmangy_01", hash = 0xC68B3C66, outfits = 2 }, + [`a_c_loon_01`] = { model = "a_c_loon_01", hash = 0x17099D5E, outfits = 3 }, + [`a_c_moose_01`] = { model = "a_c_moose_01", hash = 0xBE871B28, outfits = 7 }, + [`a_c_muskrat_01`] = { model = "a_c_muskrat_01", hash = 0xBC61ABDD, outfits = 3 }, + [`a_c_oriole_01`] = { model = "a_c_oriole_01", hash = 0xB25884A5, outfits = 3 }, + [`a_c_owl_01`] = { model = "a_c_owl_01", hash = 0xCCA5E0B0, outfits = 3 }, + [`a_c_ox_01`] = { model = "a_c_ox_01", hash = 0x21294FD8, outfits = 2 }, + [`a_c_panther_01`] = { model = "a_c_panther_01", hash = 0x629DDF49, outfits = 5 }, + [`a_c_parrot_01`] = { model = "a_c_parrot_01", hash = 0x94DD14B8, outfits = 3 }, + [`a_c_pelican_01`] = { model = "a_c_pelican_01", hash = 0x4B751E5C, outfits = 3 }, + [`a_c_pheasant_01`] = { model = "a_c_pheasant_01", hash = 0x546B65F9, outfits = 3 }, + [`a_c_pigeon`] = { model = "a_c_pigeon", hash = 0x06A20728, outfits = 3 }, + [`a_c_pig_01`] = { model = "a_c_pig_01", hash = 0x3C0BFE72, outfits = 3 }, + [`a_c_possum_01`] = { model = "a_c_possum_01", hash = 0xABA8FB1F, outfits = 3 }, + [`a_c_prairiechicken_01`] = { model = "a_c_prairiechicken_01", hash = 0x7BF5C03E, outfits = 2 }, + [`a_c_pronghorn_01`] = { model = "a_c_pronghorn_01", hash = 0x68A4FCCD, outfits = 20 }, + [`a_c_quail_01`] = { model = "a_c_quail_01", hash = 0x7D7ED3F4, outfits = 3 }, + [`a_c_rabbit_01`] = { model = "a_c_rabbit_01", hash = 0xDFB55C81, outfits = 5 }, + [`a_c_raccoon_01`] = { model = "a_c_raccoon_01", hash = 0x56EF91BF, outfits = 7 }, + [`a_c_rat_01`] = { model = "a_c_rat_01", hash = 0x3AFD2922, outfits = 5 }, + [`a_c_raven_01`] = { model = "a_c_raven_01", hash = 0xDDB5012B, outfits = 2 }, + [`a_c_redfootedbooby_01`] = { model = "a_c_redfootedbooby_01", hash = 0xE42EE8E8, outfits = 3 }, + [`a_c_robin_01`] = { model = "a_c_robin_01", hash = 0xB7D8866C, outfits = 1 }, + [`a_c_rooster_01`] = { model = "a_c_rooster_01", hash = 0x789C821E, outfits = 3 }, + [`a_c_roseatespoonbill_01`] = { model = "a_c_roseatespoonbill_01", hash = 0xBFD5C7DF, outfits = 3 }, + [`a_c_seagull_01`] = { model = "a_c_seagull_01", hash = 0xF62ADA90, outfits = 3 }, + [`a_c_sharkhammerhead_01`] = { model = "a_c_sharkhammerhead_01", hash = 0xCDE2619F, outfits = 3 }, + [`a_c_sharktiger`] = { model = "a_c_sharktiger", hash = 0x06C3F072, outfits = 3 }, + [`a_c_sheep_01`] = { model = "a_c_sheep_01", hash = 0x02679F5C, outfits = 8 }, + [`a_c_skunk_01`] = { model = "a_c_skunk_01", hash = 0xB7C8F704, outfits = 4 }, + [`a_c_snakeblacktailrattle_01`] = { model = "a_c_snakeblacktailrattle_01", hash = 0x3276FDB9, outfits = 2 }, + [`a_c_snakeblacktailrattle_pelt_01`] = { model = "a_c_snakeblacktailrattle_pelt_01", hash = 0x8587FD0F, outfits = 2 }, + [`a_c_snakeferdelance_01`] = { model = "a_c_snakeferdelance_01", hash = 0x57456DF5, outfits = 3 }, + [`a_c_snakeferdelance_pelt_01`] = { model = "a_c_snakeferdelance_pelt_01", hash = 0x2C201567, outfits = 3 }, + [`a_c_snakeredboa10ft_01`] = { model = "a_c_snakeredboa10ft_01", hash = 0x97D56B7E, outfits = 1 }, + [`a_c_snakeredboa_01`] = { model = "a_c_snakeredboa_01", hash = 0x9547268E, outfits = 3 }, + [`a_c_snakeredboa_pelt_01`] = { model = "a_c_snakeredboa_pelt_01", hash = 0x47B7B713, outfits = 3 }, + [`a_c_snakewater_01`] = { model = "a_c_snakewater_01", hash = 0xF24F3CA3, outfits = 3 }, + [`a_c_snakewater_pelt_01`] = { model = "a_c_snakewater_pelt_01", hash = 0xF887B8E8, outfits = 3 }, + [`a_c_snake_01`] = { model = "a_c_snake_01", hash = 0x207D15FA, outfits = 4 }, + [`a_c_snake_pelt_01`] = { model = "a_c_snake_pelt_01", hash = 0xA001C8EC, outfits = 4 }, + [`a_c_songbird_01`] = { model = "a_c_songbird_01", hash = 0x8E1B9425, outfits = 2 }, + [`a_c_sparrow_01`] = { model = "a_c_sparrow_01", hash = 0xC2B75D41, outfits = 3 }, + [`a_c_squirrel_01`] = { model = "a_c_squirrel_01", hash = 0x5758D069, outfits = 6 }, + [`a_c_toad_01`] = { model = "a_c_toad_01", hash = 0x598F9219, outfits = 5 }, + [`a_c_turkeywild_01`] = { model = "a_c_turkeywild_01", hash = 0x881F1C91, outfits = 3 }, + [`a_c_turkey_01`] = { model = "a_c_turkey_01", hash = 0xE438917C, outfits = 3 }, + [`a_c_turkey_02`] = { model = "a_c_turkey_02", hash = 0xF61A353F, outfits = 3 }, + [`a_c_turtlesea_01`] = { model = "a_c_turtlesea_01", hash = 0xA97D7D0C, outfits = 1 }, + [`a_c_turtlesnapping_01`] = { model = "a_c_turtlesnapping_01", hash = 0xE7B286BA, outfits = 3 }, + [`a_c_vulture_01`] = { model = "a_c_vulture_01", hash = 0x41D8593C, outfits = 4 }, + [`A_C_Wolf`] = { model = "A_C_Wolf", hash = 0xBBD91DDA, outfits = 9 }, + [`a_c_wolf_medium`] = { model = "a_c_wolf_medium", hash = 0xCB391381, outfits = 9 }, + [`a_c_wolf_small`] = { model = "a_c_wolf_small", hash = 0xCE924A27, outfits = 5 }, + [`a_c_woodpecker_01`] = { model = "a_c_woodpecker_01", hash = 0x1E6ABEAD, outfits = 1 }, + [`a_c_woodpecker_02`] = { model = "a_c_woodpecker_02", hash = 0x2B7AD8CD, outfits = 1 }, + [`re_lostdog_teens_01`] = { model = "re_lostdog_teens_01", hash = 0xDCA942B9, outfits = 2 }, + [`a_c_horse_norfolkroadster_black`] = { model = "a_c_horse_norfolkroadster_black", hash = 0x3C0E4E87, outfits = 1 }, + [`a_c_horse_norfolkroadster_dappledbuckskin`] = { model = "a_c_horse_norfolkroadster_dappledbuckskin", hash = 0xF6ACED8C, outfits = 1 }, + [`a_c_horse_norfolkroadster_piebaldroan`] = { model = "a_c_horse_norfolkroadster_piebaldroan", hash = 0xAB13C4C9, outfits = 1 }, + [`a_c_horse_norfolkroadster_rosegrey`] = { model = "a_c_horse_norfolkroadster_rosegrey", hash = 0xF30EC4B4, outfits = 1 }, + [`a_c_horse_norfolkroadster_speckledgrey`] = { model = "a_c_horse_norfolkroadster_speckledgrey", hash = 0x3D5A780F, outfits = 1 }, + [`a_c_horse_norfolkroadster_spottedtricolor`] = { model = "a_c_horse_norfolkroadster_spottedtricolor", hash = 0x501BFB75, outfits = 1 }, + [`a_c_horse_gypsycob_palominoblagdon`] = { model = "a_c_horse_gypsycob_palominoblagdon", hash = 0xBBE15017, outfits = 1 }, + [`a_c_horse_gypsycob_piebald`] = { model = "a_c_horse_gypsycob_piebald", hash = 0xE8BEFB8D, outfits = 1 }, + [`a_c_horse_gypsycob_skewbald`] = { model = "a_c_horse_gypsycob_skewbald", hash = 0xE71EBBF9, outfits = 1 }, + [`a_c_horse_gypsycob_splashedbay`] = { model = "a_c_horse_gypsycob_splashedbay", hash = 0xA8EE5C74, outfits = 1 }, + [`a_c_horse_gypsycob_splashedpiebald`] = { model = "a_c_horse_gypsycob_splashedpiebald", hash = 0x57FA17A0, outfits = 1 }, + [`a_c_horse_gypsycob_whiteblagdon`] = { model = "a_c_horse_gypsycob_whiteblagdon", hash = 0x41D65902, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_blacktovero`] = { model = "a_c_horse_missourifoxtrotter_blacktovero", hash = 0x52AC7C75, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_blueroan`] = { model = "a_c_horse_missourifoxtrotter_blueroan", hash = 0x1E31107B, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_buckskinbrindle`] = { model = "a_c_horse_missourifoxtrotter_buckskinbrindle", hash = 0x797EDE19, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_dapplegrey`] = { model = "a_c_horse_missourifoxtrotter_dapplegrey", hash = 0x5F5BC124, outfits = 1 }, + [`a_c_horse_mustang_blackovero`] = { model = "a_c_horse_mustang_blackovero", hash = 0x707C8EBE, outfits = 2 }, + [`a_c_horse_mustang_buckskin`] = { model = "a_c_horse_mustang_buckskin", hash = 0x62121AEC, outfits = 2 }, + [`a_c_horse_mustang_chestnuttovero`] = { model = "a_c_horse_mustang_chestnuttovero", hash = 0x44D40E4A, outfits = 2 }, + [`a_c_horse_mustang_reddunovero`] = { model = "a_c_horse_mustang_reddunovero", hash = 0x0471D5D2, outfits = 2 }, + [`a_c_horse_turkoman_black`] = { model = "a_c_horse_turkoman_black", hash = 0x88828382, outfits = 1 }, + [`a_c_horse_turkoman_chestnut`] = { model = "a_c_horse_turkoman_chestnut", hash = 0x29AD5E2F, outfits = 1 }, + [`a_c_horse_turkoman_grey`] = { model = "a_c_horse_turkoman_grey", hash = 0x5A4153F2, outfits = 1 }, + [`a_c_horse_turkoman_perlino`] = { model = "a_c_horse_turkoman_perlino", hash = 0x2A0483C6, outfits = 1 }, } Animals.Birds = { - [0x5E5A761C] = { model = "a_c_bluejay_01", hash = 0x5E5A761C, outfits = 2 }, - [0x47E1D597] = { model = "a_c_californiacondor_01", hash = 0x47E1D597, outfits = 3 }, - [0x6A640A7B] = { model = "a_c_cardinal_01", hash = 0x6A640A7B, outfits = 3 }, - [0x681E834B] = { model = "a_c_carolinaparakeet_01", hash = 0x681E834B, outfits = 1 }, - [0xEE893817] = { model = "a_c_cedarwaxwing_01", hash = 0xEE893817, outfits = 3 }, - [0x8506531D] = { model = "a_c_chicken_01", hash = 0x8506531D, outfits = 3 }, - [0x846E8AF0] = { model = "a_c_cormorant_01", hash = 0x846E8AF0, outfits = 2 }, - [0xDE608788] = { model = "a_c_cranewhooping_01", hash = 0xDE608788, outfits = 2 }, - [0x05DF8F2C] = { model = "a_c_crow_01", hash = 0x05DF8F2C, outfits = 1 }, - [0xC42E08CB] = { model = "a_c_duck_01", hash = 0xC42E08CB, outfits = 3 }, - [0x57027587] = { model = "a_c_eagle_01", hash = 0x57027587, outfits = 4 }, - [0x31952A0B] = { model = "a_c_egret_01", hash = 0x31952A0B, outfits = 3 }, - [0x2B1B02CA] = { model = "a_c_goosecanada_01", hash = 0x2B1B02CA, outfits = 3 }, - [0x80184D63] = { model = "a_c_hawk_01", hash = 0x80184D63, outfits = 3 }, - [0x41462AB0] = { model = "a_c_heron_01", hash = 0x41462AB0, outfits = 3 }, - [0x17099D5E] = { model = "a_c_loon_01", hash = 0x17099D5E, outfits = 3 }, - [0xB25884A5] = { model = "a_c_oriole_01", hash = 0xB25884A5, outfits = 3 }, - [0xCCA5E0B0] = { model = "a_c_owl_01", hash = 0xCCA5E0B0, outfits = 3 }, - [0x94DD14B8] = { model = "a_c_parrot_01", hash = 0x94DD14B8, outfits = 3 }, - [0x4B751E5C] = { model = "a_c_pelican_01", hash = 0x4B751E5C, outfits = 3 }, - [0x546B65F9] = { model = "a_c_pheasant_01", hash = 0x546B65F9, outfits = 3 }, - [0x06A20728] = { model = "a_c_pigeon", hash = 0x06A20728, outfits = 3 }, - [0x7BF5C03E] = { model = "a_c_prairiechicken_01", hash = 0x7BF5C03E, outfits = 2 }, - [0x7D7ED3F4] = { model = "a_c_quail_01", hash = 0x7D7ED3F4, outfits = 3 }, - [0xDDB5012B] = { model = "a_c_raven_01", hash = 0xDDB5012B, outfits = 2 }, - [0xB7D8866C] = { model = "a_c_robin_01", hash = 0xB7D8866C, outfits = 1 }, - [0x789C821E] = { model = "a_c_rooster_01", hash = 0x789C821E, outfits = 3 }, - [0xBFD5C7DF] = { model = "a_c_roseatespoonbill_01", hash = 0xBFD5C7DF, outfits = 3 }, - [0xF62ADA90] = { model = "a_c_seagull_01", hash = 0xF62ADA90, outfits = 3 }, - [0x8E1B9425] = { model = "a_c_songbird_01", hash = 0x8E1B9425, outfits = 2 }, - [0xC2B75D41] = { model = "a_c_sparrow_01", hash = 0xC2B75D41, outfits = 3 }, - [0x881F1C91] = { model = "a_c_turkeywild_01", hash = 0x881F1C91, outfits = 3 }, - [0xE438917C] = { model = "a_c_turkey_01", hash = 0xE438917C, outfits = 3 }, - [0xF61A353F] = { model = "a_c_turkey_02", hash = 0xF61A353F, outfits = 3 }, - [0x41D8593C] = { model = "a_c_vulture_01", hash = 0x41D8593C, outfits = 4 }, - [0x1E6ABEAD] = { model = "a_c_woodpecker_01", hash = 0x1E6ABEAD, outfits = 1 }, - [0x2B7AD8CD] = { model = "a_c_woodpecker_02", hash = 0x2B7AD8CD, outfits = 1 }, + [`a_c_bluejay_01`] = { model = "a_c_bluejay_01", hash = 0x5E5A761C, outfits = 2 }, + [`a_c_californiacondor_01`] = { model = "a_c_californiacondor_01", hash = 0x47E1D597, outfits = 3 }, + [`a_c_cardinal_01`] = { model = "a_c_cardinal_01", hash = 0x6A640A7B, outfits = 3 }, + [`a_c_carolinaparakeet_01`] = { model = "a_c_carolinaparakeet_01", hash = 0x681E834B, outfits = 1 }, + [`a_c_cedarwaxwing_01`] = { model = "a_c_cedarwaxwing_01", hash = 0xEE893817, outfits = 3 }, + [`a_c_chicken_01`] = { model = "a_c_chicken_01", hash = 0x8506531D, outfits = 3 }, + [`a_c_cormorant_01`] = { model = "a_c_cormorant_01", hash = 0x846E8AF0, outfits = 2 }, + [`a_c_cranewhooping_01`] = { model = "a_c_cranewhooping_01", hash = 0xDE608788, outfits = 2 }, + [`a_c_crow_01`] = { model = "a_c_crow_01", hash = 0x05DF8F2C, outfits = 1 }, + [`a_c_duck_01`] = { model = "a_c_duck_01", hash = 0xC42E08CB, outfits = 3 }, + [`a_c_eagle_01`] = { model = "a_c_eagle_01", hash = 0x57027587, outfits = 4 }, + [`a_c_egret_01`] = { model = "a_c_egret_01", hash = 0x31952A0B, outfits = 3 }, + [`a_c_goosecanada_01`] = { model = "a_c_goosecanada_01", hash = 0x2B1B02CA, outfits = 3 }, + [`a_c_hawk_01`] = { model = "a_c_hawk_01", hash = 0x80184D63, outfits = 3 }, + [`a_c_heron_01`] = { model = "a_c_heron_01", hash = 0x41462AB0, outfits = 3 }, + [`a_c_loon_01`] = { model = "a_c_loon_01", hash = 0x17099D5E, outfits = 3 }, + [`a_c_oriole_01`] = { model = "a_c_oriole_01", hash = 0xB25884A5, outfits = 3 }, + [`a_c_owl_01`] = { model = "a_c_owl_01", hash = 0xCCA5E0B0, outfits = 3 }, + [`a_c_parrot_01`] = { model = "a_c_parrot_01", hash = 0x94DD14B8, outfits = 3 }, + [`a_c_pelican_01`] = { model = "a_c_pelican_01", hash = 0x4B751E5C, outfits = 3 }, + [`a_c_pheasant_01`] = { model = "a_c_pheasant_01", hash = 0x546B65F9, outfits = 3 }, + [`a_c_pigeon`] = { model = "a_c_pigeon", hash = 0x06A20728, outfits = 3 }, + [`a_c_prairiechicken_01`] = { model = "a_c_prairiechicken_01", hash = 0x7BF5C03E, outfits = 2 }, + [`a_c_quail_01`] = { model = "a_c_quail_01", hash = 0x7D7ED3F4, outfits = 3 }, + [`a_c_raven_01`] = { model = "a_c_raven_01", hash = 0xDDB5012B, outfits = 2 }, + [`a_c_robin_01`] = { model = "a_c_robin_01", hash = 0xB7D8866C, outfits = 1 }, + [`a_c_rooster_01`] = { model = "a_c_rooster_01", hash = 0x789C821E, outfits = 3 }, + [`a_c_roseatespoonbill_01`] = { model = "a_c_roseatespoonbill_01", hash = 0xBFD5C7DF, outfits = 3 }, + [`a_c_seagull_01`] = { model = "a_c_seagull_01", hash = 0xF62ADA90, outfits = 3 }, + [`a_c_songbird_01`] = { model = "a_c_songbird_01", hash = 0x8E1B9425, outfits = 2 }, + [`a_c_sparrow_01`] = { model = "a_c_sparrow_01", hash = 0xC2B75D41, outfits = 3 }, + [`a_c_turkeywild_01`] = { model = "a_c_turkeywild_01", hash = 0x881F1C91, outfits = 3 }, + [`a_c_turkey_01`] = { model = "a_c_turkey_01", hash = 0xE438917C, outfits = 3 }, + [`a_c_turkey_02`] = { model = "a_c_turkey_02", hash = 0xF61A353F, outfits = 3 }, + [`a_c_vulture_01`] = { model = "a_c_vulture_01", hash = 0x41D8593C, outfits = 4 }, + [`a_c_woodpecker_01`] = { model = "a_c_woodpecker_01", hash = 0x1E6ABEAD, outfits = 1 }, + [`a_c_woodpecker_02`] = { model = "a_c_woodpecker_02", hash = 0x2B7AD8CD, outfits = 1 }, } Animals.Dogs = { - [0x40E01848] = { model = "a_c_dogamericanfoxhound_01", hash = 0x40E01848, outfits = 5 }, - [0xAE6C236C] = { model = "a_c_dogaustraliansheperd_01", hash = 0xAE6C236C, outfits = 3 }, - [0x2552B009] = { model = "a_c_dogbluetickcoonhound_01", hash = 0x2552B009, outfits = 8 }, - [0xC25FE171] = { model = "a_c_dogcatahoulacur_01", hash = 0xC25FE171, outfits = 7 }, - [0xE8C446CB] = { model = "a_c_dogchesbayretriever_01", hash = 0xE8C446CB, outfits = 3 }, - [0x40D2BCBC] = { model = "a_c_dogcollie_01", hash = 0x40D2BCBC, outfits = 3 }, - [0xC5C5D255] = { model = "a_c_doghobo_01", hash = 0xC5C5D255, outfits = 1 }, - [0x801131EF] = { model = "a_c_doghound_01", hash = 0x801131EF, outfits = 8 }, - [0x62F7C1B3] = { model = "a_c_doghusky_01", hash = 0x62F7C1B3, outfits = 3 }, - [0xAD779EB4] = { model = "a_c_doglab_01", hash = 0xAD779EB4, outfits = 7 }, - [0xCA89FC80] = { model = "a_c_doglion_01", hash = 0xCA89FC80, outfits = 2 }, - [0x40CAC0E7] = { model = "a_c_dogpoodle_01", hash = 0x40CAC0E7, outfits = 3 }, - [0x5EDF32B4] = { model = "a_c_dogrufus_01", hash = 0x5EDF32B4, outfits = 1 }, - [0x3B313FCE] = { model = "a_c_dogstreet_01", hash = 0x3B313FCE, outfits = 3 }, - [0x387E129A] = { model = "re_lostdog_dogs_01", hash = 0x387E129A, outfits = 4 }, - [0xDCA942B9] = { model = "re_lostdog_teens_01", hash = 0xDCA942B9, outfits = 2 }, + [`a_c_dogamericanfoxhound_01`] = { model = "a_c_dogamericanfoxhound_01", hash = 0x40E01848, outfits = 5 }, + [`a_c_dogaustraliansheperd_01`] = { model = "a_c_dogaustraliansheperd_01", hash = 0xAE6C236C, outfits = 3 }, + [`a_c_dogbluetickcoonhound_01`] = { model = "a_c_dogbluetickcoonhound_01", hash = 0x2552B009, outfits = 8 }, + [`a_c_dogcatahoulacur_01`] = { model = "a_c_dogcatahoulacur_01", hash = 0xC25FE171, outfits = 7 }, + [`a_c_dogchesbayretriever_01`] = { model = "a_c_dogchesbayretriever_01", hash = 0xE8C446CB, outfits = 3 }, + [`a_c_dogcollie_01`] = { model = "a_c_dogcollie_01", hash = 0x40D2BCBC, outfits = 3 }, + [`a_c_doghobo_01`] = { model = "a_c_doghobo_01", hash = 0xC5C5D255, outfits = 1 }, + [`a_c_doghound_01`] = { model = "a_c_doghound_01", hash = 0x801131EF, outfits = 8 }, + [`a_c_doghusky_01`] = { model = "a_c_doghusky_01", hash = 0x62F7C1B3, outfits = 3 }, + [`a_c_doglab_01`] = { model = "a_c_doglab_01", hash = 0xAD779EB4, outfits = 7 }, + [`a_c_doglion_01`] = { model = "a_c_doglion_01", hash = 0xCA89FC80, outfits = 2 }, + [`a_c_dogpoodle_01`] = { model = "a_c_dogpoodle_01", hash = 0x40CAC0E7, outfits = 3 }, + [`a_c_dogrufus_01`] = { model = "a_c_dogrufus_01", hash = 0x5EDF32B4, outfits = 1 }, + [`a_c_dogstreet_01`] = { model = "a_c_dogstreet_01", hash = 0x3B313FCE, outfits = 3 }, + [`re_lostdog_dogs_01`] = { model = "re_lostdog_dogs_01", hash = 0x387E129A, outfits = 4 }, + [`re_lostdog_teens_01`] = { model = "re_lostdog_teens_01", hash = 0xDCA942B9, outfits = 2 }, } Animals.Farm = { - [0xDE99DA6D] = { model = "a_c_boarlegendary_01", hash = 0xDE99DA6D, outfits = 1 }, - [0x78EBDA79] = { model = "a_c_boar_01", hash = 0x78EBDA79, outfits = 4 }, - [0x0BAA25A3] = { model = "a_c_bull_01", hash = 0x0BAA25A3, outfits = 4 }, - [0xFCFA9E1E] = { model = "a_c_cow", hash = 0xFCFA9E1E, outfits = 22 }, - [0x0F0F6D94] = { model = "a_c_fox_01", hash = 0x0F0F6D94, outfits = 7 }, - [0xD3105A6D] = { model = "a_c_goat_01", hash = 0xD3105A6D, outfits = 3 }, - [0x21294FD8] = { model = "a_c_ox_01", hash = 0x21294FD8, outfits = 2 }, - [0x3C0BFE72] = { model = "a_c_pig_01", hash = 0x3C0BFE72, outfits = 3 }, - [0x02679F5C] = { model = "a_c_sheep_01", hash = 0x02679F5C, outfits = 8 }, + [`a_c_boarlegendary_01`] = { model = "a_c_boarlegendary_01", hash = 0xDE99DA6D, outfits = 1 }, + [`a_c_boar_01`] = { model = "a_c_boar_01", hash = 0x78EBDA79, outfits = 4 }, + [`a_c_bull_01`] = { model = "a_c_bull_01", hash = 0x0BAA25A3, outfits = 4 }, + [`a_c_cow`] = { model = "a_c_cow", hash = 0xFCFA9E1E, outfits = 22 }, + [`a_c_fox_01`] = { model = "a_c_fox_01", hash = 0x0F0F6D94, outfits = 7 }, + [`a_c_goat_01`] = { model = "a_c_goat_01", hash = 0xD3105A6D, outfits = 3 }, + [`a_c_ox_01`] = { model = "a_c_ox_01", hash = 0x21294FD8, outfits = 2 }, + [`a_c_pig_01`] = { model = "a_c_pig_01", hash = 0x3C0BFE72, outfits = 3 }, + [`a_c_sheep_01`] = { model = "a_c_sheep_01", hash = 0x02679F5C, outfits = 8 }, } Animals.Fish = { - [0x6F4C2A6C] = { model = "a_c_fishbluegil_01_ms", hash = 0x6F4C2A6C, outfits = 2 }, - [0x81D4FAB9] = { model = "a_c_fishbluegil_01_sm", hash = 0x81D4FAB9, outfits = 2 }, - [0x29F1CB9D] = { model = "a_c_fishbullheadcat_01_ms", hash = 0x29F1CB9D, outfits = 2 }, - [0x5905A300] = { model = "a_c_fishbullheadcat_01_sm", hash = 0x5905A300, outfits = 2 }, - [0xB97D1BFD] = { model = "a_c_fishchainpickerel_01_ms", hash = 0xB97D1BFD, outfits = 2 }, - [0x0FBEB3FF] = { model = "a_c_fishchainpickerel_01_sm", hash = 0x0FBEB3FF, outfits = 2 }, - [0x5BAEE06E] = { model = "a_c_fishchannelcatfish_01_lg", hash = 0x5BAEE06E, outfits = 3 }, - [0x876CAA75] = { model = "a_c_fishchannelcatfish_01_xl", hash = 0x876CAA75, outfits = 2 }, - [0xEE111F34] = { model = "a_c_fishlakesturgeon_01_lg", hash = 0xEE111F34, outfits = 4 }, - [0x1BA2A2E8] = { model = "a_c_fishlargemouthbass_01_lg", hash = 0x1BA2A2E8, outfits = 2 }, - [0x0750FD65] = { model = "a_c_fishlargemouthbass_01_ms", hash = 0x0750FD65, outfits = 2 }, - [0xD5931B3F] = { model = "a_c_fishlongnosegar_01_lg", hash = 0xD5931B3F, outfits = 6 }, - [0xA3660A8D] = { model = "a_c_fishmuskie_01_lg", hash = 0xA3660A8D, outfits = 5 }, - [0x298C8600] = { model = "a_c_fishnorthernpike_01_lg", hash = 0x298C8600, outfits = 7 }, - [0xE50B98F0] = { model = "a_c_fishperch_01_ms", hash = 0xE50B98F0, outfits = 2 }, - [0x2A1C1C20] = { model = "a_c_fishperch_01_sm", hash = 0x2A1C1C20, outfits = 1 }, - [0x080814B2] = { model = "a_c_fishrainbowtrout_01_lg", hash = 0x080814B2, outfits = 2 }, - [0x1D373E24] = { model = "a_c_fishrainbowtrout_01_ms", hash = 0x1D373E24, outfits = 1 }, - [0xF1813D52] = { model = "a_c_fishredfinpickerel_01_ms", hash = 0xF1813D52, outfits = 2 }, - [0x1E9790B6] = { model = "a_c_fishredfinpickerel_01_sm", hash = 0x1E9790B6, outfits = 2 }, - [0x89E3C580] = { model = "a_c_fishrockbass_01_ms", hash = 0x89E3C580, outfits = 2 }, - [0x00173415] = { model = "a_c_fishrockbass_01_sm", hash = 0x00173415, outfits = 4 }, - [0x206B229A] = { model = "a_c_fishsalmonsockeye_01_lg", hash = 0x206B229A, outfits = 2 }, - [0x657C2DBF] = { model = "a_c_fishsalmonsockeye_01_ml", hash = 0x657C2DBF, outfits = 1 }, - [0x027C67C1] = { model = "a_c_fishsalmonsockeye_01_ms", hash = 0x027C67C1, outfits = 2 }, - [0x8FACF62D] = { model = "a_c_fishsmallmouthbass_01_lg", hash = 0x8FACF62D, outfits = 2 }, - [0x6EE63594] = { model = "a_c_fishsmallmouthbass_01_ms", hash = 0x6EE63594, outfits = 2 }, + [`a_c_fishbluegil_01_ms`] = { model = "a_c_fishbluegil_01_ms", hash = 0x6F4C2A6C, outfits = 2 }, + [`a_c_fishbluegil_01_sm`] = { model = "a_c_fishbluegil_01_sm", hash = 0x81D4FAB9, outfits = 2 }, + [`a_c_fishbullheadcat_01_ms`] = { model = "a_c_fishbullheadcat_01_ms", hash = 0x29F1CB9D, outfits = 2 }, + [`a_c_fishbullheadcat_01_sm`] = { model = "a_c_fishbullheadcat_01_sm", hash = 0x5905A300, outfits = 2 }, + [`a_c_fishchainpickerel_01_ms`] = { model = "a_c_fishchainpickerel_01_ms", hash = 0xB97D1BFD, outfits = 2 }, + [`a_c_fishchainpickerel_01_sm`] = { model = "a_c_fishchainpickerel_01_sm", hash = 0x0FBEB3FF, outfits = 2 }, + [`a_c_fishchannelcatfish_01_lg`] = { model = "a_c_fishchannelcatfish_01_lg", hash = 0x5BAEE06E, outfits = 3 }, + [`a_c_fishchannelcatfish_01_xl`] = { model = "a_c_fishchannelcatfish_01_xl", hash = 0x876CAA75, outfits = 2 }, + [`a_c_fishlakesturgeon_01_lg`] = { model = "a_c_fishlakesturgeon_01_lg", hash = 0xEE111F34, outfits = 4 }, + [`a_c_fishlargemouthbass_01_lg`] = { model = "a_c_fishlargemouthbass_01_lg", hash = 0x1BA2A2E8, outfits = 2 }, + [`a_c_fishlargemouthbass_01_ms`] = { model = "a_c_fishlargemouthbass_01_ms", hash = 0x0750FD65, outfits = 2 }, + [`a_c_fishlongnosegar_01_lg`] = { model = "a_c_fishlongnosegar_01_lg", hash = 0xD5931B3F, outfits = 6 }, + [`a_c_fishmuskie_01_lg`] = { model = "a_c_fishmuskie_01_lg", hash = 0xA3660A8D, outfits = 5 }, + [`a_c_fishnorthernpike_01_lg`] = { model = "a_c_fishnorthernpike_01_lg", hash = 0x298C8600, outfits = 7 }, + [`a_c_fishperch_01_ms`] = { model = "a_c_fishperch_01_ms", hash = 0xE50B98F0, outfits = 2 }, + [`a_c_fishperch_01_sm`] = { model = "a_c_fishperch_01_sm", hash = 0x2A1C1C20, outfits = 1 }, + [`a_c_fishrainbowtrout_01_lg`] = { model = "a_c_fishrainbowtrout_01_lg", hash = 0x080814B2, outfits = 2 }, + [`a_c_fishrainbowtrout_01_ms`] = { model = "a_c_fishrainbowtrout_01_ms", hash = 0x1D373E24, outfits = 1 }, + [`a_c_fishredfinpickerel_01_ms`] = { model = "a_c_fishredfinpickerel_01_ms", hash = 0xF1813D52, outfits = 2 }, + [`a_c_fishredfinpickerel_01_sm`] = { model = "a_c_fishredfinpickerel_01_sm", hash = 0x1E9790B6, outfits = 2 }, + [`a_c_fishrockbass_01_ms`] = { model = "a_c_fishrockbass_01_ms", hash = 0x89E3C580, outfits = 2 }, + [`a_c_fishrockbass_01_sm`] = { model = "a_c_fishrockbass_01_sm", hash = 0x00173415, outfits = 4 }, + [`a_c_fishsalmonsockeye_01_lg`] = { model = "a_c_fishsalmonsockeye_01_lg", hash = 0x206B229A, outfits = 2 }, + [`a_c_fishsalmonsockeye_01_ml`] = { model = "a_c_fishsalmonsockeye_01_ml", hash = 0x657C2DBF, outfits = 1 }, + [`a_c_fishsalmonsockeye_01_ms`] = { model = "a_c_fishsalmonsockeye_01_ms", hash = 0x027C67C1, outfits = 2 }, + [`a_c_fishsmallmouthbass_01_lg`] = { model = "a_c_fishsmallmouthbass_01_lg", hash = 0x8FACF62D, outfits = 2 }, + [`a_c_fishsmallmouthbass_01_ms`] = { model = "a_c_fishsmallmouthbass_01_ms", hash = 0x6EE63594, outfits = 2 }, } Animals.Horses = { - [0x69A37A7B] = { model = "a_c_donkey_01", hash = 0x69A37A7B, outfits = 8 }, - [0x23685521] = { model = "a_c_horsemulepainted_01", hash = 0x23685521, outfits = 2 }, - [0xB6A7CE35] = { model = "a_c_horsemule_01", hash = 0xB6A7CE35, outfits = 2 }, - [0xEA523E18] = { model = "p_c_horse_01", hash = 0xEA523E18, outfits = 1 }, - [0x8AF8EE20] = { model = "a_c_horse_americanpaint_greyovero", hash = 0x8AF8EE20, outfits = 1 }, - [0xE52CB9B2] = { model = "a_c_horse_americanpaint_overo", hash = 0xE52CB9B2, outfits = 4 }, - [0x6ADB82FE] = { model = "a_c_horse_americanpaint_splashedwhite", hash = 0x6ADB82FE, outfits = 1 }, - [0x9BE270D3] = { model = "a_c_horse_americanpaint_tobiano", hash = 0x9BE270D3, outfits = 3 }, - [0xB57D0193] = { model = "a_c_horse_americanstandardbred_black", hash = 0xB57D0193, outfits = 1 }, - [0xED07737A] = { model = "a_c_horse_americanstandardbred_buckskin", hash = 0xED07737A, outfits = 2 }, - [0x703EBD85] = { model = "a_c_horse_americanstandardbred_lightbuckskin", hash = 0x703EBD85, outfits = 5 }, - [0x0348B323] = { model = "a_c_horse_americanstandardbred_palominodapple", hash = 0x0348B323, outfits = 2 }, - [0xE4AD6760] = { model = "a_c_horse_americanstandardbred_silvertailbuckskin", hash = 0xE4AD6760, outfits = 1 }, - [0xE57FC660] = { model = "a_c_horse_andalusian_darkbay", hash = 0xE57FC660, outfits = 1 }, - [0x2A100154] = { model = "a_c_horse_andalusian_perlino", hash = 0x2A100154, outfits = 1 }, - [0x2C80A080] = { model = "a_c_horse_andalusian_rosegray", hash = 0x2C80A080, outfits = 3 }, - [0xC2B8CE6B] = { model = "a_c_horse_appaloosa_blacksnowflake", hash = 0xC2B8CE6B, outfits = 2 }, - [0x7EF6A7DC] = { model = "a_c_horse_appaloosa_blanket", hash = 0x7EF6A7DC, outfits = 1 }, - [0xC2A67972] = { model = "a_c_horse_appaloosa_brownleopard", hash = 0xC2A67972, outfits = 1 }, - [0x2405C422] = { model = "a_c_horse_appaloosa_fewspotted_pc", hash = 0x2405C422, outfits = 2 }, - [0xBC030D85] = { model = "a_c_horse_appaloosa_leopard", hash = 0xBC030D85, outfits = 1 }, - [0xA353367A] = { model = "a_c_horse_appaloosa_leopardblanket", hash = 0xA353367A, outfits = 2 }, - [0x88D6A59E] = { model = "a_c_horse_arabian_black", hash = 0x88D6A59E, outfits = 1 }, - [0x05052866] = { model = "a_c_horse_arabian_grey", hash = 0x05052866, outfits = 1 }, - [0x5933FD24] = { model = "a_c_horse_arabian_redchestnut", hash = 0x5933FD24, outfits = 1 }, - [0xA52D4FC0] = { model = "a_c_horse_arabian_redchestnut_pc", hash = 0xA52D4FC0, outfits = 1 }, - [0xE7F3880C] = { model = "a_c_horse_arabian_rosegreybay", hash = 0xE7F3880C, outfits = 1 }, - [0x5DFCD1F9] = { model = "a_c_horse_arabian_warpedbrindle_pc", hash = 0x5DFCD1F9, outfits = 1 }, - [0xC8DA3400] = { model = "a_c_horse_arabian_white", hash = 0xC8DA3400, outfits = 4 }, - [0xA3C3F4C6] = { model = "a_c_horse_ardennes_bayroan", hash = 0xA3C3F4C6, outfits = 1 }, - [0x8739A629] = { model = "a_c_horse_ardennes_irongreyroan", hash = 0x8739A629, outfits = 1 }, - [0xDA23037A] = { model = "a_c_horse_ardennes_strawberryroan", hash = 0xDA23037A, outfits = 1 }, - [0xDD04A33F] = { model = "a_c_horse_belgian_blondchestnut", hash = 0xDD04A33F, outfits = 1 }, - [0x37DD4055] = { model = "a_c_horse_belgian_mealychestnut", hash = 0x37DD4055, outfits = 1 }, - [0xDB18CA2B] = { model = "a_c_horse_breton_grullodun", hash = 0xDB18CA2B, outfits = 1 }, - [0xAA19E1E1] = { model = "a_c_horse_breton_mealydapplebay", hash = 0xAA19E1E1, outfits = 1 }, - [0xD74136AD] = { model = "a_c_horse_breton_redroan", hash = 0xD74136AD, outfits = 1 }, - [0x5C0D2B7A] = { model = "a_c_horse_breton_sealbrown", hash = 0x5C0D2B7A, outfits = 1 }, - [0x1417E305] = { model = "a_c_horse_breton_sorrel", hash = 0x1417E305, outfits = 1 }, - [0x999E5DCF] = { model = "a_c_horse_breton_steelgrey", hash = 0x999E5DCF, outfits = 1 }, - [0x20C6D093] = { model = "a_c_horse_buell_warvets", hash = 0x20C6D093, outfits = 4 }, - [0x99770A35] = { model = "a_c_horse_criollo_baybrindle", hash = 0x99770A35, outfits = 1 }, - [0x2DACB4A3] = { model = "a_c_horse_criollo_bayframeovero", hash = 0x2DACB4A3, outfits = 1 }, - [0x6CCCC38E] = { model = "a_c_horse_criollo_blueroanovero", hash = 0x6CCCC38E, outfits = 1 }, - [0x43DB06BB] = { model = "a_c_horse_criollo_dun", hash = 0x43DB06BB, outfits = 1 }, - [0x7FF9E2AE] = { model = "a_c_horse_criollo_marblesabino", hash = 0x7FF9E2AE, outfits = 1 }, - [0x1E367ED2] = { model = "a_c_horse_criollo_sorrelovero", hash = 0x1E367ED2, outfits = 1 }, - [0x28F9976A] = { model = "a_c_horse_dutchwarmblood_chocolateroan", hash = 0x28F9976A, outfits = 1 }, - [0x33598622] = { model = "a_c_horse_dutchwarmblood_sealbrown", hash = 0x33598622, outfits = 1 }, - [0x5EF3CBDA] = { model = "a_c_horse_dutchwarmblood_sootybuckskin", hash = 0x5EF3CBDA, outfits = 1 }, - [0xAF2695EE] = { model = "a_c_horse_eagleflies", hash = 0xAF2695EE, outfits = 2 }, - [0x970E1781] = { model = "a_c_horse_gang_bill", hash = 0x970E1781, outfits = 2 }, - [0xDF55F5E6] = { model = "a_c_horse_gang_charles", hash = 0xDF55F5E6, outfits = 4 }, - [0x6B54E5D1] = { model = "a_c_horse_gang_charles_endlesssummer", hash = 0x6B54E5D1, outfits = 2 }, - [0xAD14C46D] = { model = "a_c_horse_gang_dutch", hash = 0xAD14C46D, outfits = 2 }, - [0xD977CC20] = { model = "a_c_horse_gang_hosea", hash = 0xD977CC20, outfits = 2 }, - [0xB998E803] = { model = "a_c_horse_gang_javier", hash = 0xB998E803, outfits = 2 }, - [0x9E19AA66] = { model = "a_c_horse_gang_john", hash = 0x9E19AA66, outfits = 2 }, - [0xA762AEDD] = { model = "a_c_horse_gang_karen", hash = 0xA762AEDD, outfits = 2 }, - [0x43F0DC62] = { model = "a_c_horse_gang_kieran", hash = 0x43F0DC62, outfits = 2 }, - [0xC132BAD0] = { model = "a_c_horse_gang_lenny", hash = 0xC132BAD0, outfits = 2 }, - [0xC7DE4819] = { model = "a_c_horse_gang_micah", hash = 0xC7DE4819, outfits = 2 }, - [0xBF5D6994] = { model = "a_c_horse_gang_sadie", hash = 0xBF5D6994, outfits = 2 }, - [0xDDAE9AEA] = { model = "a_c_horse_gang_sadie_endlesssummer", hash = 0xDDAE9AEA, outfits = 2 }, - [0x9997DF40] = { model = "a_c_horse_gang_sean", hash = 0x9997DF40, outfits = 2 }, - [0x3A5BC787] = { model = "a_c_horse_gang_trelawney", hash = 0x3A5BC787, outfits = 2 }, - [0x68F5058D] = { model = "a_c_horse_gang_uncle", hash = 0x68F5058D, outfits = 2 }, - [0x1165B6EB] = { model = "a_c_horse_gang_uncle_endlesssummer", hash = 0x1165B6EB, outfits = 2 }, - [0xCF246898] = { model = "a_c_horse_hungarianhalfbred_darkdapplegrey", hash = 0xCF246898, outfits = 1 }, - [0x65A30467] = { model = "a_c_horse_hungarianhalfbred_flaxenchestnut", hash = 0x65A30467, outfits = 1 }, - [0x8EF089E3] = { model = "a_c_horse_hungarianhalfbred_liverchestnut", hash = 0x8EF089E3, outfits = 1 }, - [0xFB55A30A] = { model = "a_c_horse_hungarianhalfbred_piebaldtobiano", hash = 0xFB55A30A, outfits = 2 }, - [0x8504B2AA] = { model = "a_c_horse_john_endlesssummer", hash = 0x8504B2AA, outfits = 2 }, - [0x9FA968B5] = { model = "a_c_horse_kladruber_black", hash = 0x9FA968B5, outfits = 1 }, - [0x8FDFD716] = { model = "a_c_horse_kladruber_cremello", hash = 0x8FDFD716, outfits = 1 }, - [0xD96F40C6] = { model = "a_c_horse_kladruber_dapplerosegrey", hash = 0xD96F40C6, outfits = 1 }, - [0xC7103AB0] = { model = "a_c_horse_kladruber_grey", hash = 0xC7103AB0, outfits = 1 }, - [0x91F36592] = { model = "a_c_horse_kladruber_silver", hash = 0x91F36592, outfits = 1 }, - [0xF867D7E4] = { model = "a_c_horse_kladruber_white", hash = 0xF867D7E4, outfits = 1 }, - [0xB0004639] = { model = "a_c_horse_missourifoxtrotter_amberchampagne", hash = 0xB0004639, outfits = 1 }, - [0xE6EE2A0B] = { model = "a_c_horse_missourifoxtrotter_sablechampagne", hash = 0xE6EE2A0B, outfits = 2 }, - [0xBB31267C] = { model = "a_c_horse_missourifoxtrotter_silverdapplepinto", hash = 0xBB31267C, outfits = 1 }, - [0x790B9F4B] = { model = "a_c_horse_morgan_bay", hash = 0x790B9F4B, outfits = 1 }, - [0x4955CBE3] = { model = "a_c_horse_morgan_bayroan", hash = 0x4955CBE3, outfits = 1 }, - [0xC21AB789] = { model = "a_c_horse_morgan_flaxenchestnut", hash = 0xC21AB789, outfits = 1 }, - [0xC0A1CE3D] = { model = "a_c_horse_morgan_liverchestnut_pc", hash = 0xC0A1CE3D, outfits = 1 }, - [0x05C70C99] = { model = "a_c_horse_morgan_palomino", hash = 0x05C70C99, outfits = 1 }, - [0x30331B80] = { model = "a_c_horse_mp_mangy_backup", hash = 0x30331B80, outfits = 7 }, - [0x36AE742C] = { model = "a_c_horse_murfreebrood_mange_01", hash = 0x36AE742C, outfits = 2 }, - [0xC97A99C6] = { model = "a_c_horse_murfreebrood_mange_02", hash = 0xC97A99C6, outfits = 2 }, - [0xDC4D3F6B] = { model = "a_c_horse_murfreebrood_mange_03", hash = 0xDC4D3F6B, outfits = 2 }, - [0x1C8CC068] = { model = "a_c_horse_mustang_goldendun", hash = 0x1C8CC068, outfits = 2 }, - [0xB9A41AA7] = { model = "a_c_horse_mustang_grullodun", hash = 0xB9A41AA7, outfits = 1 }, - [0x029CBA4A] = { model = "a_c_horse_mustang_tigerstripedbay", hash = 0x029CBA4A, outfits = 1 }, - [0x7E4DF66E] = { model = "a_c_horse_mustang_wildbay", hash = 0x7E4DF66E, outfits = 1 }, - [0x7FE4BEC5] = { model = "a_c_horse_nokota_blueroan", hash = 0x7FE4BEC5, outfits = 2 }, - [0x0660E640] = { model = "a_c_horse_nokota_reversedappleroan", hash = 0x0660E640, outfits = 1 }, - [0xB4CA3CB2] = { model = "a_c_horse_nokota_whiteroan", hash = 0xB4CA3CB2, outfits = 2 }, - [0x3F8A66B8] = { model = "a_c_horse_shire_darkbay", hash = 0x3F8A66B8, outfits = 1 }, - [0x0225752B] = { model = "a_c_horse_shire_lightgrey", hash = 0x0225752B, outfits = 1 }, - [0x2FD9844A] = { model = "a_c_horse_shire_ravenblack", hash = 0x2FD9844A, outfits = 1 }, - [0x9B099788] = { model = "a_c_horse_suffolkpunch_redchestnut", hash = 0x9B099788, outfits = 1 }, - [0xA0A6C640] = { model = "a_c_horse_suffolkpunch_sorrel", hash = 0xA0A6C640, outfits = 1 }, - [0x3FE5B95B] = { model = "a_c_horse_tennesseewalker_blackrabicano", hash = 0x3FE5B95B, outfits = 1 }, - [0x400B3937] = { model = "a_c_horse_tennesseewalker_chestnut", hash = 0x400B3937, outfits = 1 }, - [0xFAE16B63] = { model = "a_c_horse_tennesseewalker_dapplebay", hash = 0xFAE16B63, outfits = 1 }, - [0x9C978CB3] = { model = "a_c_horse_tennesseewalker_flaxenroan", hash = 0x9C978CB3, outfits = 1 }, - [0x3E85EE41] = { model = "a_c_horse_tennesseewalker_goldpalomino_pc", hash = 0x3E85EE41, outfits = 1 }, - [0x1A9FA880] = { model = "a_c_horse_tennesseewalker_mahoganybay", hash = 0x1A9FA880, outfits = 1 }, - [0xD4A3E715] = { model = "a_c_horse_tennesseewalker_redroan", hash = 0xD4A3E715, outfits = 1 }, - [0x7E67718B] = { model = "a_c_horse_thoroughbred_blackchestnut", hash = 0x7E67718B, outfits = 1 }, - [0x8D4BE5DE] = { model = "a_c_horse_thoroughbred_bloodbay", hash = 0x8D4BE5DE, outfits = 1 }, - [0xE0A34BD3] = { model = "a_c_horse_thoroughbred_brindle", hash = 0xE0A34BD3, outfits = 1 }, - [0x6EF6C345] = { model = "a_c_horse_thoroughbred_dapplegrey", hash = 0x6EF6C345, outfits = 3 }, - [0x35A71C98] = { model = "a_c_horse_thoroughbred_reversedappleblack", hash = 0x35A71C98, outfits = 1 }, - [0x4394FBA4] = { model = "a_c_horse_turkoman_darkbay", hash = 0x4394FBA4, outfits = 1 }, - [0x6572D46D] = { model = "a_c_horse_turkoman_gold", hash = 0x6572D46D, outfits = 1 }, - [0xA06225BC] = { model = "a_c_horse_turkoman_silver", hash = 0xA06225BC, outfits = 1 }, - [0xF31B7859] = { model = "a_c_horse_winter02_01", hash = 0xF31B7859, outfits = 2 }, - [0x3C0E4E87] = { model = "a_c_horse_norfolkroadster_black", hash = 0x3C0E4E87, outfits = 1 }, - [0xF6ACED8C] = { model = "a_c_horse_norfolkroadster_dappledbuckskin", hash = 0xF6ACED8C, outfits = 1 }, - [0xAB13C4C9] = { model = "a_c_horse_norfolkroadster_piebaldroan", hash = 0xAB13C4C9, outfits = 1 }, - [0xF30EC4B4] = { model = "a_c_horse_norfolkroadster_rosegrey", hash = 0xF30EC4B4, outfits = 1 }, - [0x3D5A780F] = { model = "a_c_horse_norfolkroadster_speckledgrey", hash = 0x3D5A780F, outfits = 1 }, - [0x501BFB75] = { model = "a_c_horse_norfolkroadster_spottedtricolor", hash = 0x501BFB75, outfits = 1 }, - [0xBBE15017] = { model = "a_c_horse_gypsycob_palominoblagdon", hash = 0xBBE15017, outfits = 1 }, - [0xE8BEFB8D] = { model = "a_c_horse_gypsycob_piebald", hash = 0xE8BEFB8D, outfits = 1 }, - [0xE71EBBF9] = { model = "a_c_horse_gypsycob_skewbald", hash = 0xE71EBBF9, outfits = 1 }, - [0xA8EE5C74] = { model = "a_c_horse_gypsycob_splashedbay", hash = 0xA8EE5C74, outfits = 1 }, - [0x57FA17A0] = { model = "a_c_horse_gypsycob_splashedpiebald", hash = 0x57FA17A0, outfits = 1 }, - [0x41D65902] = { model = "a_c_horse_gypsycob_whiteblagdon", hash = 0x41D65902, outfits = 1 }, - [0x52AC7C75] = { model = "a_c_horse_missourifoxtrotter_blacktovero", hash = 0x52AC7C75, outfits = 1 }, - [0x1E31107B] = { model = "a_c_horse_missourifoxtrotter_blueroan", hash = 0x1E31107B, outfits = 1 }, - [0x797EDE19] = { model = "a_c_horse_missourifoxtrotter_buckskinbrindle", hash = 0x797EDE19, outfits = 1 }, - [0x5F5BC124] = { model = "a_c_horse_missourifoxtrotter_dapplegrey", hash = 0x5F5BC124, outfits = 1 }, - [0x707C8EBE] = { model = "a_c_horse_mustang_blackovero", hash = 0x707C8EBE, outfits = 2 }, - [0x62121AEC] = { model = "a_c_horse_mustang_buckskin", hash = 0x62121AEC, outfits = 2 }, - [0x44D40E4A] = { model = "a_c_horse_mustang_chestnuttovero", hash = 0x44D40E4A, outfits = 2 }, - [0x0471D5D2] = { model = "a_c_horse_mustang_reddunovero", hash = 0x0471D5D2, outfits = 2 }, - [0x88828382] = { model = "a_c_horse_turkoman_black", hash = 0x88828382, outfits = 1 }, - [0x29AD5E2F] = { model = "a_c_horse_turkoman_chestnut", hash = 0x29AD5E2F, outfits = 1 }, - [0x5A4153F2] = { model = "a_c_horse_turkoman_grey", hash = 0x5A4153F2, outfits = 1 }, - [0x2A0483C6] = { model = "a_c_horse_turkoman_perlino", hash = 0x2A0483C6, outfits = 1 }, + [`a_c_donkey_01`] = { model = "a_c_donkey_01", hash = 0x69A37A7B, outfits = 8 }, + [`a_c_horsemulepainted_01`] = { model = "a_c_horsemulepainted_01", hash = 0x23685521, outfits = 2 }, + [`a_c_horsemule_01`] = { model = "a_c_horsemule_01", hash = 0xB6A7CE35, outfits = 2 }, + [`p_c_horse_01`] = { model = "p_c_horse_01", hash = 0xEA523E18, outfits = 1 }, + [`a_c_horse_americanpaint_greyovero`] = { model = "a_c_horse_americanpaint_greyovero", hash = 0x8AF8EE20, outfits = 1 }, + [`a_c_horse_americanpaint_overo`] = { model = "a_c_horse_americanpaint_overo", hash = 0xE52CB9B2, outfits = 4 }, + [`a_c_horse_americanpaint_splashedwhite`] = { model = "a_c_horse_americanpaint_splashedwhite", hash = 0x6ADB82FE, outfits = 1 }, + [`a_c_horse_americanpaint_tobiano`] = { model = "a_c_horse_americanpaint_tobiano", hash = 0x9BE270D3, outfits = 3 }, + [`a_c_horse_americanstandardbred_black`] = { model = "a_c_horse_americanstandardbred_black", hash = 0xB57D0193, outfits = 1 }, + [`a_c_horse_americanstandardbred_buckskin`] = { model = "a_c_horse_americanstandardbred_buckskin", hash = 0xED07737A, outfits = 2 }, + [`a_c_horse_americanstandardbred_lightbuckskin`] = { model = "a_c_horse_americanstandardbred_lightbuckskin", hash = 0x703EBD85, outfits = 5 }, + [`a_c_horse_americanstandardbred_palominodapple`] = { model = "a_c_horse_americanstandardbred_palominodapple", hash = 0x0348B323, outfits = 2 }, + [`a_c_horse_americanstandardbred_silvertailbuckskin`] = { model = "a_c_horse_americanstandardbred_silvertailbuckskin", hash = 0xE4AD6760, outfits = 1 }, + [`a_c_horse_andalusian_darkbay`] = { model = "a_c_horse_andalusian_darkbay", hash = 0xE57FC660, outfits = 1 }, + [`a_c_horse_andalusian_perlino`] = { model = "a_c_horse_andalusian_perlino", hash = 0x2A100154, outfits = 1 }, + [`a_c_horse_andalusian_rosegray`] = { model = "a_c_horse_andalusian_rosegray", hash = 0x2C80A080, outfits = 3 }, + [`a_c_horse_appaloosa_blacksnowflake`] = { model = "a_c_horse_appaloosa_blacksnowflake", hash = 0xC2B8CE6B, outfits = 2 }, + [`a_c_horse_appaloosa_blanket`] = { model = "a_c_horse_appaloosa_blanket", hash = 0x7EF6A7DC, outfits = 1 }, + [`a_c_horse_appaloosa_brownleopard`] = { model = "a_c_horse_appaloosa_brownleopard", hash = 0xC2A67972, outfits = 1 }, + [`a_c_horse_appaloosa_fewspotted_pc`] = { model = "a_c_horse_appaloosa_fewspotted_pc", hash = 0x2405C422, outfits = 2 }, + [`a_c_horse_appaloosa_leopard`] = { model = "a_c_horse_appaloosa_leopard", hash = 0xBC030D85, outfits = 1 }, + [`a_c_horse_appaloosa_leopardblanket`] = { model = "a_c_horse_appaloosa_leopardblanket", hash = 0xA353367A, outfits = 2 }, + [`a_c_horse_arabian_black`] = { model = "a_c_horse_arabian_black", hash = 0x88D6A59E, outfits = 1 }, + [`a_c_horse_arabian_grey`] = { model = "a_c_horse_arabian_grey", hash = 0x05052866, outfits = 1 }, + [`a_c_horse_arabian_redchestnut`] = { model = "a_c_horse_arabian_redchestnut", hash = 0x5933FD24, outfits = 1 }, + [`a_c_horse_arabian_redchestnut_pc`] = { model = "a_c_horse_arabian_redchestnut_pc", hash = 0xA52D4FC0, outfits = 1 }, + [`a_c_horse_arabian_rosegreybay`] = { model = "a_c_horse_arabian_rosegreybay", hash = 0xE7F3880C, outfits = 1 }, + [`a_c_horse_arabian_warpedbrindle_pc`] = { model = "a_c_horse_arabian_warpedbrindle_pc", hash = 0x5DFCD1F9, outfits = 1 }, + [`a_c_horse_arabian_white`] = { model = "a_c_horse_arabian_white", hash = 0xC8DA3400, outfits = 4 }, + [`a_c_horse_ardennes_bayroan`] = { model = "a_c_horse_ardennes_bayroan", hash = 0xA3C3F4C6, outfits = 1 }, + [`a_c_horse_ardennes_irongreyroan`] = { model = "a_c_horse_ardennes_irongreyroan", hash = 0x8739A629, outfits = 1 }, + [`a_c_horse_ardennes_strawberryroan`] = { model = "a_c_horse_ardennes_strawberryroan", hash = 0xDA23037A, outfits = 1 }, + [`a_c_horse_belgian_blondchestnut`] = { model = "a_c_horse_belgian_blondchestnut", hash = 0xDD04A33F, outfits = 1 }, + [`a_c_horse_belgian_mealychestnut`] = { model = "a_c_horse_belgian_mealychestnut", hash = 0x37DD4055, outfits = 1 }, + [`a_c_horse_breton_grullodun`] = { model = "a_c_horse_breton_grullodun", hash = 0xDB18CA2B, outfits = 1 }, + [`a_c_horse_breton_mealydapplebay`] = { model = "a_c_horse_breton_mealydapplebay", hash = 0xAA19E1E1, outfits = 1 }, + [`a_c_horse_breton_redroan`] = { model = "a_c_horse_breton_redroan", hash = 0xD74136AD, outfits = 1 }, + [`a_c_horse_breton_sealbrown`] = { model = "a_c_horse_breton_sealbrown", hash = 0x5C0D2B7A, outfits = 1 }, + [`a_c_horse_breton_sorrel`] = { model = "a_c_horse_breton_sorrel", hash = 0x1417E305, outfits = 1 }, + [`a_c_horse_breton_steelgrey`] = { model = "a_c_horse_breton_steelgrey", hash = 0x999E5DCF, outfits = 1 }, + [`a_c_horse_buell_warvets`] = { model = "a_c_horse_buell_warvets", hash = 0x20C6D093, outfits = 4 }, + [`a_c_horse_criollo_baybrindle`] = { model = "a_c_horse_criollo_baybrindle", hash = 0x99770A35, outfits = 1 }, + [`a_c_horse_criollo_bayframeovero`] = { model = "a_c_horse_criollo_bayframeovero", hash = 0x2DACB4A3, outfits = 1 }, + [`a_c_horse_criollo_blueroanovero`] = { model = "a_c_horse_criollo_blueroanovero", hash = 0x6CCCC38E, outfits = 1 }, + [`a_c_horse_criollo_dun`] = { model = "a_c_horse_criollo_dun", hash = 0x43DB06BB, outfits = 1 }, + [`a_c_horse_criollo_marblesabino`] = { model = "a_c_horse_criollo_marblesabino", hash = 0x7FF9E2AE, outfits = 1 }, + [`a_c_horse_criollo_sorrelovero`] = { model = "a_c_horse_criollo_sorrelovero", hash = 0x1E367ED2, outfits = 1 }, + [`a_c_horse_dutchwarmblood_chocolateroan`] = { model = "a_c_horse_dutchwarmblood_chocolateroan", hash = 0x28F9976A, outfits = 1 }, + [`a_c_horse_dutchwarmblood_sealbrown`] = { model = "a_c_horse_dutchwarmblood_sealbrown", hash = 0x33598622, outfits = 1 }, + [`a_c_horse_dutchwarmblood_sootybuckskin`] = { model = "a_c_horse_dutchwarmblood_sootybuckskin", hash = 0x5EF3CBDA, outfits = 1 }, + [`a_c_horse_eagleflies`] = { model = "a_c_horse_eagleflies", hash = 0xAF2695EE, outfits = 2 }, + [`a_c_horse_gang_bill`] = { model = "a_c_horse_gang_bill", hash = 0x970E1781, outfits = 2 }, + [`a_c_horse_gang_charles`] = { model = "a_c_horse_gang_charles", hash = 0xDF55F5E6, outfits = 4 }, + [`a_c_horse_gang_charles_endlesssummer`] = { model = "a_c_horse_gang_charles_endlesssummer", hash = 0x6B54E5D1, outfits = 2 }, + [`a_c_horse_gang_dutch`] = { model = "a_c_horse_gang_dutch", hash = 0xAD14C46D, outfits = 2 }, + [`a_c_horse_gang_hosea`] = { model = "a_c_horse_gang_hosea", hash = 0xD977CC20, outfits = 2 }, + [`a_c_horse_gang_javier`] = { model = "a_c_horse_gang_javier", hash = 0xB998E803, outfits = 2 }, + [`a_c_horse_gang_john`] = { model = "a_c_horse_gang_john", hash = 0x9E19AA66, outfits = 2 }, + [`a_c_horse_gang_karen`] = { model = "a_c_horse_gang_karen", hash = 0xA762AEDD, outfits = 2 }, + [`a_c_horse_gang_kieran`] = { model = "a_c_horse_gang_kieran", hash = 0x43F0DC62, outfits = 2 }, + [`a_c_horse_gang_lenny`] = { model = "a_c_horse_gang_lenny", hash = 0xC132BAD0, outfits = 2 }, + [`a_c_horse_gang_micah`] = { model = "a_c_horse_gang_micah", hash = 0xC7DE4819, outfits = 2 }, + [`a_c_horse_gang_sadie`] = { model = "a_c_horse_gang_sadie", hash = 0xBF5D6994, outfits = 2 }, + [`a_c_horse_gang_sadie_endlesssummer`] = { model = "a_c_horse_gang_sadie_endlesssummer", hash = 0xDDAE9AEA, outfits = 2 }, + [`a_c_horse_gang_sean`] = { model = "a_c_horse_gang_sean", hash = 0x9997DF40, outfits = 2 }, + [`a_c_horse_gang_trelawney`] = { model = "a_c_horse_gang_trelawney", hash = 0x3A5BC787, outfits = 2 }, + [`a_c_horse_gang_uncle`] = { model = "a_c_horse_gang_uncle", hash = 0x68F5058D, outfits = 2 }, + [`a_c_horse_gang_uncle_endlesssummer`] = { model = "a_c_horse_gang_uncle_endlesssummer", hash = 0x1165B6EB, outfits = 2 }, + [`a_c_horse_hungarianhalfbred_darkdapplegrey`] = { model = "a_c_horse_hungarianhalfbred_darkdapplegrey", hash = 0xCF246898, outfits = 1 }, + [`a_c_horse_hungarianhalfbred_flaxenchestnut`] = { model = "a_c_horse_hungarianhalfbred_flaxenchestnut", hash = 0x65A30467, outfits = 1 }, + [`a_c_horse_hungarianhalfbred_liverchestnut`] = { model = "a_c_horse_hungarianhalfbred_liverchestnut", hash = 0x8EF089E3, outfits = 1 }, + [`a_c_horse_hungarianhalfbred_piebaldtobiano`] = { model = "a_c_horse_hungarianhalfbred_piebaldtobiano", hash = 0xFB55A30A, outfits = 2 }, + [`a_c_horse_john_endlesssummer`] = { model = "a_c_horse_john_endlesssummer", hash = 0x8504B2AA, outfits = 2 }, + [`a_c_horse_kladruber_black`] = { model = "a_c_horse_kladruber_black", hash = 0x9FA968B5, outfits = 1 }, + [`a_c_horse_kladruber_cremello`] = { model = "a_c_horse_kladruber_cremello", hash = 0x8FDFD716, outfits = 1 }, + [`a_c_horse_kladruber_dapplerosegrey`] = { model = "a_c_horse_kladruber_dapplerosegrey", hash = 0xD96F40C6, outfits = 1 }, + [`a_c_horse_kladruber_grey`] = { model = "a_c_horse_kladruber_grey", hash = 0xC7103AB0, outfits = 1 }, + [`a_c_horse_kladruber_silver`] = { model = "a_c_horse_kladruber_silver", hash = 0x91F36592, outfits = 1 }, + [`a_c_horse_kladruber_white`] = { model = "a_c_horse_kladruber_white", hash = 0xF867D7E4, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_amberchampagne`] = { model = "a_c_horse_missourifoxtrotter_amberchampagne", hash = 0xB0004639, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_sablechampagne`] = { model = "a_c_horse_missourifoxtrotter_sablechampagne", hash = 0xE6EE2A0B, outfits = 2 }, + [`a_c_horse_missourifoxtrotter_silverdapplepinto`] = { model = "a_c_horse_missourifoxtrotter_silverdapplepinto", hash = 0xBB31267C, outfits = 1 }, + [`a_c_horse_morgan_bay`] = { model = "a_c_horse_morgan_bay", hash = 0x790B9F4B, outfits = 1 }, + [`a_c_horse_morgan_bayroan`] = { model = "a_c_horse_morgan_bayroan", hash = 0x4955CBE3, outfits = 1 }, + [`a_c_horse_morgan_flaxenchestnut`] = { model = "a_c_horse_morgan_flaxenchestnut", hash = 0xC21AB789, outfits = 1 }, + [`a_c_horse_morgan_liverchestnut_pc`] = { model = "a_c_horse_morgan_liverchestnut_pc", hash = 0xC0A1CE3D, outfits = 1 }, + [`a_c_horse_morgan_palomino`] = { model = "a_c_horse_morgan_palomino", hash = 0x05C70C99, outfits = 1 }, + [`a_c_horse_mp_mangy_backup`] = { model = "a_c_horse_mp_mangy_backup", hash = 0x30331B80, outfits = 7 }, + [`a_c_horse_murfreebrood_mange_01`] = { model = "a_c_horse_murfreebrood_mange_01", hash = 0x36AE742C, outfits = 2 }, + [`a_c_horse_murfreebrood_mange_02`] = { model = "a_c_horse_murfreebrood_mange_02", hash = 0xC97A99C6, outfits = 2 }, + [`a_c_horse_murfreebrood_mange_03`] = { model = "a_c_horse_murfreebrood_mange_03", hash = 0xDC4D3F6B, outfits = 2 }, + [`a_c_horse_mustang_goldendun`] = { model = "a_c_horse_mustang_goldendun", hash = 0x1C8CC068, outfits = 2 }, + [`a_c_horse_mustang_grullodun`] = { model = "a_c_horse_mustang_grullodun", hash = 0xB9A41AA7, outfits = 1 }, + [`a_c_horse_mustang_tigerstripedbay`] = { model = "a_c_horse_mustang_tigerstripedbay", hash = 0x029CBA4A, outfits = 1 }, + [`a_c_horse_mustang_wildbay`] = { model = "a_c_horse_mustang_wildbay", hash = 0x7E4DF66E, outfits = 1 }, + [`a_c_horse_nokota_blueroan`] = { model = "a_c_horse_nokota_blueroan", hash = 0x7FE4BEC5, outfits = 2 }, + [`a_c_horse_nokota_reversedappleroan`] = { model = "a_c_horse_nokota_reversedappleroan", hash = 0x0660E640, outfits = 1 }, + [`a_c_horse_nokota_whiteroan`] = { model = "a_c_horse_nokota_whiteroan", hash = 0xB4CA3CB2, outfits = 2 }, + [`a_c_horse_shire_darkbay`] = { model = "a_c_horse_shire_darkbay", hash = 0x3F8A66B8, outfits = 1 }, + [`a_c_horse_shire_lightgrey`] = { model = "a_c_horse_shire_lightgrey", hash = 0x0225752B, outfits = 1 }, + [`a_c_horse_shire_ravenblack`] = { model = "a_c_horse_shire_ravenblack", hash = 0x2FD9844A, outfits = 1 }, + [`a_c_horse_suffolkpunch_redchestnut`] = { model = "a_c_horse_suffolkpunch_redchestnut", hash = 0x9B099788, outfits = 1 }, + [`a_c_horse_suffolkpunch_sorrel`] = { model = "a_c_horse_suffolkpunch_sorrel", hash = 0xA0A6C640, outfits = 1 }, + [`a_c_horse_tennesseewalker_blackrabicano`] = { model = "a_c_horse_tennesseewalker_blackrabicano", hash = 0x3FE5B95B, outfits = 1 }, + [`a_c_horse_tennesseewalker_chestnut`] = { model = "a_c_horse_tennesseewalker_chestnut", hash = 0x400B3937, outfits = 1 }, + [`a_c_horse_tennesseewalker_dapplebay`] = { model = "a_c_horse_tennesseewalker_dapplebay", hash = 0xFAE16B63, outfits = 1 }, + [`a_c_horse_tennesseewalker_flaxenroan`] = { model = "a_c_horse_tennesseewalker_flaxenroan", hash = 0x9C978CB3, outfits = 1 }, + [`a_c_horse_tennesseewalker_goldpalomino_pc`] = { model = "a_c_horse_tennesseewalker_goldpalomino_pc", hash = 0x3E85EE41, outfits = 1 }, + [`a_c_horse_tennesseewalker_mahoganybay`] = { model = "a_c_horse_tennesseewalker_mahoganybay", hash = 0x1A9FA880, outfits = 1 }, + [`a_c_horse_tennesseewalker_redroan`] = { model = "a_c_horse_tennesseewalker_redroan", hash = 0xD4A3E715, outfits = 1 }, + [`a_c_horse_thoroughbred_blackchestnut`] = { model = "a_c_horse_thoroughbred_blackchestnut", hash = 0x7E67718B, outfits = 1 }, + [`a_c_horse_thoroughbred_bloodbay`] = { model = "a_c_horse_thoroughbred_bloodbay", hash = 0x8D4BE5DE, outfits = 1 }, + [`a_c_horse_thoroughbred_brindle`] = { model = "a_c_horse_thoroughbred_brindle", hash = 0xE0A34BD3, outfits = 1 }, + [`a_c_horse_thoroughbred_dapplegrey`] = { model = "a_c_horse_thoroughbred_dapplegrey", hash = 0x6EF6C345, outfits = 3 }, + [`a_c_horse_thoroughbred_reversedappleblack`] = { model = "a_c_horse_thoroughbred_reversedappleblack", hash = 0x35A71C98, outfits = 1 }, + [`a_c_horse_turkoman_darkbay`] = { model = "a_c_horse_turkoman_darkbay", hash = 0x4394FBA4, outfits = 1 }, + [`a_c_horse_turkoman_gold`] = { model = "a_c_horse_turkoman_gold", hash = 0x6572D46D, outfits = 1 }, + [`a_c_horse_turkoman_silver`] = { model = "a_c_horse_turkoman_silver", hash = 0xA06225BC, outfits = 1 }, + [`a_c_horse_winter02_01`] = { model = "a_c_horse_winter02_01", hash = 0xF31B7859, outfits = 2 }, + [`a_c_horse_norfolkroadster_black`] = { model = "a_c_horse_norfolkroadster_black", hash = 0x3C0E4E87, outfits = 1 }, + [`a_c_horse_norfolkroadster_dappledbuckskin`] = { model = "a_c_horse_norfolkroadster_dappledbuckskin", hash = 0xF6ACED8C, outfits = 1 }, + [`a_c_horse_norfolkroadster_piebaldroan`] = { model = "a_c_horse_norfolkroadster_piebaldroan", hash = 0xAB13C4C9, outfits = 1 }, + [`a_c_horse_norfolkroadster_rosegrey`] = { model = "a_c_horse_norfolkroadster_rosegrey", hash = 0xF30EC4B4, outfits = 1 }, + [`a_c_horse_norfolkroadster_speckledgrey`] = { model = "a_c_horse_norfolkroadster_speckledgrey", hash = 0x3D5A780F, outfits = 1 }, + [`a_c_horse_norfolkroadster_spottedtricolor`] = { model = "a_c_horse_norfolkroadster_spottedtricolor", hash = 0x501BFB75, outfits = 1 }, + [`a_c_horse_gypsycob_palominoblagdon`] = { model = "a_c_horse_gypsycob_palominoblagdon", hash = 0xBBE15017, outfits = 1 }, + [`a_c_horse_gypsycob_piebald`] = { model = "a_c_horse_gypsycob_piebald", hash = 0xE8BEFB8D, outfits = 1 }, + [`a_c_horse_gypsycob_skewbald`] = { model = "a_c_horse_gypsycob_skewbald", hash = 0xE71EBBF9, outfits = 1 }, + [`a_c_horse_gypsycob_splashedbay`] = { model = "a_c_horse_gypsycob_splashedbay", hash = 0xA8EE5C74, outfits = 1 }, + [`a_c_horse_gypsycob_splashedpiebald`] = { model = "a_c_horse_gypsycob_splashedpiebald", hash = 0x57FA17A0, outfits = 1 }, + [`a_c_horse_gypsycob_whiteblagdon`] = { model = "a_c_horse_gypsycob_whiteblagdon", hash = 0x41D65902, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_blacktovero`] = { model = "a_c_horse_missourifoxtrotter_blacktovero", hash = 0x52AC7C75, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_blueroan`] = { model = "a_c_horse_missourifoxtrotter_blueroan", hash = 0x1E31107B, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_buckskinbrindle`] = { model = "a_c_horse_missourifoxtrotter_buckskinbrindle", hash = 0x797EDE19, outfits = 1 }, + [`a_c_horse_missourifoxtrotter_dapplegrey`] = { model = "a_c_horse_missourifoxtrotter_dapplegrey", hash = 0x5F5BC124, outfits = 1 }, + [`a_c_horse_mustang_blackovero`] = { model = "a_c_horse_mustang_blackovero", hash = 0x707C8EBE, outfits = 2 }, + [`a_c_horse_mustang_buckskin`] = { model = "a_c_horse_mustang_buckskin", hash = 0x62121AEC, outfits = 2 }, + [`a_c_horse_mustang_chestnuttovero`] = { model = "a_c_horse_mustang_chestnuttovero", hash = 0x44D40E4A, outfits = 2 }, + [`a_c_horse_mustang_reddunovero`] = { model = "a_c_horse_mustang_reddunovero", hash = 0x0471D5D2, outfits = 2 }, + [`a_c_horse_turkoman_black`] = { model = "a_c_horse_turkoman_black", hash = 0x88828382, outfits = 1 }, + [`a_c_horse_turkoman_chestnut`] = { model = "a_c_horse_turkoman_chestnut", hash = 0x29AD5E2F, outfits = 1 }, + [`a_c_horse_turkoman_grey`] = { model = "a_c_horse_turkoman_grey", hash = 0x5A4153F2, outfits = 1 }, + [`a_c_horse_turkoman_perlino`] = { model = "a_c_horse_turkoman_perlino", hash = 0x2A0483C6, outfits = 1 }, } Animals.Reptiles = { - [0x8F361781] = { model = "a_c_alligator_01", hash = 0x8F361781, outfits = 4 }, - [0xA0B33A7B] = { model = "a_c_alligator_02", hash = 0xA0B33A7B, outfits = 1 }, - [0xB2C4DE9E] = { model = "a_c_alligator_03", hash = 0xB2C4DE9E, outfits = 3 }, - [0x868D0356] = { model = "a_c_crab_01", hash = 0x868D0356, outfits = 3 }, - [0x96E9E689] = { model = "a_c_crawfish_01", hash = 0x96E9E689, outfits = 3 }, - [0xC884C578] = { model = "a_c_frogbull_01", hash = 0xC884C578, outfits = 2 }, - [0x1B439EDF] = { model = "a_c_gilamonster_01", hash = 0x1B439EDF, outfits = 3 }, - [0xDCA6ADCB] = { model = "a_c_iguanadesert_01", hash = 0xDCA6ADCB, outfits = 3 }, - [0x917D4CD7] = { model = "a_c_iguana_01", hash = 0x917D4CD7, outfits = 1 }, - [0x3276FDB9] = { model = "a_c_snakeblacktailrattle_01", hash = 0x3276FDB9, outfits = 2 }, - [0x8587FD0F] = { model = "a_c_snakeblacktailrattle_pelt_01", hash = 0x8587FD0F, outfits = 2 }, - [0x57456DF5] = { model = "a_c_snakeferdelance_01", hash = 0x57456DF5, outfits = 3 }, - [0x2C201567] = { model = "a_c_snakeferdelance_pelt_01", hash = 0x2C201567, outfits = 3 }, - [0x97D56B7E] = { model = "a_c_snakeredboa10ft_01", hash = 0x97D56B7E, outfits = 1 }, - [0x9547268E] = { model = "a_c_snakeredboa_01", hash = 0x9547268E, outfits = 3 }, - [0x47B7B713] = { model = "a_c_snakeredboa_pelt_01", hash = 0x47B7B713, outfits = 3 }, - [0xF24F3CA3] = { model = "a_c_snakewater_01", hash = 0xF24F3CA3, outfits = 3 }, - [0xF887B8E8] = { model = "a_c_snakewater_pelt_01", hash = 0xF887B8E8, outfits = 3 }, - [0x207D15FA] = { model = "a_c_snake_01", hash = 0x207D15FA, outfits = 4 }, - [0xA001C8EC] = { model = "a_c_snake_pelt_01", hash = 0xA001C8EC, outfits = 4 }, - [0x598F9219] = { model = "a_c_toad_01", hash = 0x598F9219, outfits = 5 }, - [0xA97D7D0C] = { model = "a_c_turtlesea_01", hash = 0xA97D7D0C, outfits = 1 }, - [0xE7B286BA] = { model = "a_c_turtlesnapping_01", hash = 0xE7B286BA, outfits = 3 }, + [`a_c_alligator_01`] = { model = "a_c_alligator_01", hash = 0x8F361781, outfits = 4 }, + [`a_c_alligator_02`] = { model = "a_c_alligator_02", hash = 0xA0B33A7B, outfits = 1 }, + [`a_c_alligator_03`] = { model = "a_c_alligator_03", hash = 0xB2C4DE9E, outfits = 3 }, + [`a_c_crab_01`] = { model = "a_c_crab_01", hash = 0x868D0356, outfits = 3 }, + [`a_c_crawfish_01`] = { model = "a_c_crawfish_01", hash = 0x96E9E689, outfits = 3 }, + [`a_c_frogbull_01`] = { model = "a_c_frogbull_01", hash = 0xC884C578, outfits = 2 }, + [`a_c_gilamonster_01`] = { model = "a_c_gilamonster_01", hash = 0x1B439EDF, outfits = 3 }, + [`a_c_iguanadesert_01`] = { model = "a_c_iguanadesert_01", hash = 0xDCA6ADCB, outfits = 3 }, + [`a_c_iguana_01`] = { model = "a_c_iguana_01", hash = 0x917D4CD7, outfits = 1 }, + [`a_c_snakeblacktailrattle_01`] = { model = "a_c_snakeblacktailrattle_01", hash = 0x3276FDB9, outfits = 2 }, + [`a_c_snakeblacktailrattle_pelt_01`] = { model = "a_c_snakeblacktailrattle_pelt_01", hash = 0x8587FD0F, outfits = 2 }, + [`a_c_snakeferdelance_01`] = { model = "a_c_snakeferdelance_01", hash = 0x57456DF5, outfits = 3 }, + [`a_c_snakeferdelance_pelt_01`] = { model = "a_c_snakeferdelance_pelt_01", hash = 0x2C201567, outfits = 3 }, + [`a_c_snakeredboa10ft_01`] = { model = "a_c_snakeredboa10ft_01", hash = 0x97D56B7E, outfits = 1 }, + [`a_c_snakeredboa_01`] = { model = "a_c_snakeredboa_01", hash = 0x9547268E, outfits = 3 }, + [`a_c_snakeredboa_pelt_01`] = { model = "a_c_snakeredboa_pelt_01", hash = 0x47B7B713, outfits = 3 }, + [`a_c_snakewater_01`] = { model = "a_c_snakewater_01", hash = 0xF24F3CA3, outfits = 3 }, + [`a_c_snakewater_pelt_01`] = { model = "a_c_snakewater_pelt_01", hash = 0xF887B8E8, outfits = 3 }, + [`a_c_snake_01`] = { model = "a_c_snake_01", hash = 0x207D15FA, outfits = 4 }, + [`a_c_snake_pelt_01`] = { model = "a_c_snake_pelt_01", hash = 0xA001C8EC, outfits = 4 }, + [`a_c_toad_01`] = { model = "a_c_toad_01", hash = 0x598F9219, outfits = 5 }, + [`a_c_turtlesea_01`] = { model = "a_c_turtlesea_01", hash = 0xA97D7D0C, outfits = 1 }, + [`a_c_turtlesnapping_01`] = { model = "a_c_turtlesnapping_01", hash = 0xE7B286BA, outfits = 3 }, } Animals.Wild = { - [0x94DA69A0] = { model = "a_c_armadillo_01", hash = 0x94DA69A0, outfits = 1 }, - [0xBA41697E] = { model = "a_c_badger_01", hash = 0xBA41697E, outfits = 3 }, - [0x28308168] = { model = "a_c_bat_01", hash = 0x28308168, outfits = 3 }, - [0x2B845466] = { model = "a_c_bearblack_01", hash = 0x2B845466, outfits = 4 }, - [0xBCFD0E7F] = { model = "a_c_bear_01", hash = 0xBCFD0E7F, outfits = 11 }, - [0x2D4B3F63] = { model = "a_c_beaver_01", hash = 0x2D4B3F63, outfits = 4 }, - [0xA27F49A3] = { model = "a_c_bighornram_01", hash = 0xA27F49A3, outfits = 19 }, - [0x8AF5C2A8] = { model = "a_c_buck_01", hash = 0x8AF5C2A8, outfits = 6 }, - [0x5CC5E869] = { model = "a_c_buffalo_01", hash = 0x5CC5E869, outfits = 16 }, - [0x15E9B494] = { model = "a_c_buffalo_tatanka_01", hash = 0x15E9B494, outfits = 1 }, - [0x573201B8] = { model = "a_c_cat_01", hash = 0x573201B8, outfits = 3 }, - [0xA39125DC] = { model = "a_c_chipmunk_01", hash = 0xA39125DC, outfits = 1 }, - [0x056154F7] = { model = "a_c_cougar_01", hash = 0x056154F7, outfits = 6 }, - [0x1CA6B883] = { model = "a_c_coyote_01", hash = 0x1CA6B883, outfits = 7 }, - [0x423417A7] = { model = "a_c_deer_01", hash = 0x423417A7, outfits = 6 }, - [0x87895317] = { model = "a_c_elk_01", hash = 0x87895317, outfits = 8 }, - [0x6868D59D] = { model = "a_c_javelina_01", hash = 0x6868D59D, outfits = 3 }, - [0xC68B3C66] = { model = "a_c_lionmangy_01", hash = 0xC68B3C66, outfits = 2 }, - [0xBE871B28] = { model = "a_c_moose_01", hash = 0xBE871B28, outfits = 7 }, - [0xBC61ABDD] = { model = "a_c_muskrat_01", hash = 0xBC61ABDD, outfits = 3 }, - [0x629DDF49] = { model = "a_c_panther_01", hash = 0x629DDF49, outfits = 5 }, - [0xABA8FB1F] = { model = "a_c_possum_01", hash = 0xABA8FB1F, outfits = 3 }, - [0x68A4FCCD] = { model = "a_c_pronghorn_01", hash = 0x68A4FCCD, outfits = 20 }, - [0xDFB55C81] = { model = "a_c_rabbit_01", hash = 0xDFB55C81, outfits = 5 }, - [0x56EF91BF] = { model = "a_c_raccoon_01", hash = 0x56EF91BF, outfits = 7 }, - [0x3AFD2922] = { model = "a_c_rat_01", hash = 0x3AFD2922, outfits = 5 }, - [0xE42EE8E8] = { model = "a_c_redfootedbooby_01", hash = 0xE42EE8E8, outfits = 3 }, - [0xCDE2619F] = { model = "a_c_sharkhammerhead_01", hash = 0xCDE2619F, outfits = 3 }, - [0x06C3F072] = { model = "a_c_sharktiger", hash = 0x06C3F072, outfits = 3 }, - [0xB7C8F704] = { model = "a_c_skunk_01", hash = 0xB7C8F704, outfits = 4 }, - [0x5758D069] = { model = "a_c_squirrel_01", hash = 0x5758D069, outfits = 6 }, - [0xBBD91DDA] = { model = "A_C_Wolf", hash = 0xBBD91DDA, outfits = 9 }, - [0xCB391381] = { model = "a_c_wolf_medium", hash = 0xCB391381, outfits = 9 }, - [0xCE924A27] = { model = "a_c_wolf_small", hash = 0xCE924A27, outfits = 5 }, + [`a_c_armadillo_01`] = { model = "a_c_armadillo_01", hash = 0x94DA69A0, outfits = 1 }, + [`a_c_badger_01`] = { model = "a_c_badger_01", hash = 0xBA41697E, outfits = 3 }, + [`a_c_bat_01`] = { model = "a_c_bat_01", hash = 0x28308168, outfits = 3 }, + [`a_c_bearblack_01`] = { model = "a_c_bearblack_01", hash = 0x2B845466, outfits = 4 }, + [`a_c_bear_01`] = { model = "a_c_bear_01", hash = 0xBCFD0E7F, outfits = 11 }, + [`a_c_beaver_01`] = { model = "a_c_beaver_01", hash = 0x2D4B3F63, outfits = 4 }, + [`a_c_bighornram_01`] = { model = "a_c_bighornram_01", hash = 0xA27F49A3, outfits = 19 }, + [`a_c_buck_01`] = { model = "a_c_buck_01", hash = 0x8AF5C2A8, outfits = 6 }, + [`a_c_buffalo_01`] = { model = "a_c_buffalo_01", hash = 0x5CC5E869, outfits = 16 }, + [`a_c_buffalo_tatanka_01`] = { model = "a_c_buffalo_tatanka_01", hash = 0x15E9B494, outfits = 1 }, + [`a_c_cat_01`] = { model = "a_c_cat_01", hash = 0x573201B8, outfits = 3 }, + [`a_c_chipmunk_01`] = { model = "a_c_chipmunk_01", hash = 0xA39125DC, outfits = 1 }, + [`a_c_cougar_01`] = { model = "a_c_cougar_01", hash = 0x056154F7, outfits = 6 }, + [`a_c_coyote_01`] = { model = "a_c_coyote_01", hash = 0x1CA6B883, outfits = 7 }, + [`a_c_deer_01`] = { model = "a_c_deer_01", hash = 0x423417A7, outfits = 6 }, + [`a_c_elk_01`] = { model = "a_c_elk_01", hash = 0x87895317, outfits = 8 }, + [`a_c_javelina_01`] = { model = "a_c_javelina_01", hash = 0x6868D59D, outfits = 3 }, + [`a_c_lionmangy_01`] = { model = "a_c_lionmangy_01", hash = 0xC68B3C66, outfits = 2 }, + [`a_c_moose_01`] = { model = "a_c_moose_01", hash = 0xBE871B28, outfits = 7 }, + [`a_c_muskrat_01`] = { model = "a_c_muskrat_01", hash = 0xBC61ABDD, outfits = 3 }, + [`a_c_panther_01`] = { model = "a_c_panther_01", hash = 0x629DDF49, outfits = 5 }, + [`a_c_possum_01`] = { model = "a_c_possum_01", hash = 0xABA8FB1F, outfits = 3 }, + [`a_c_pronghorn_01`] = { model = "a_c_pronghorn_01", hash = 0x68A4FCCD, outfits = 20 }, + [`a_c_rabbit_01`] = { model = "a_c_rabbit_01", hash = 0xDFB55C81, outfits = 5 }, + [`a_c_raccoon_01`] = { model = "a_c_raccoon_01", hash = 0x56EF91BF, outfits = 7 }, + [`a_c_rat_01`] = { model = "a_c_rat_01", hash = 0x3AFD2922, outfits = 5 }, + [`a_c_redfootedbooby_01`] = { model = "a_c_redfootedbooby_01", hash = 0xE42EE8E8, outfits = 3 }, + [`a_c_sharkhammerhead_01`] = { model = "a_c_sharkhammerhead_01", hash = 0xCDE2619F, outfits = 3 }, + [`a_c_sharktiger`] = { model = "a_c_sharktiger", hash = 0x06C3F072, outfits = 3 }, + [`a_c_skunk_01`] = { model = "a_c_skunk_01", hash = 0xB7C8F704, outfits = 4 }, + [`a_c_squirrel_01`] = { model = "a_c_squirrel_01", hash = 0x5758D069, outfits = 6 }, + [`A_C_Wolf`] = { model = "A_C_Wolf", hash = 0xBBD91DDA, outfits = 9 }, + [`a_c_wolf_medium`] = { model = "a_c_wolf_medium", hash = 0xCB391381, outfits = 9 }, + [`a_c_wolf_small`] = { model = "a_c_wolf_small", hash = 0xCE924A27, outfits = 5 }, } return { diff --git a/shared/data/peds.lua b/shared/data/peds.lua index 006745f..1073d56 100644 --- a/shared/data/peds.lua +++ b/shared/data/peds.lua @@ -4,3388 +4,3388 @@ local Peds = {} -- Human ped categories are grouped heuristically. Peds.All = { - [0xF5C1611E] = { model = "mp_male", hash = 0xF5C1611E, outfits = 138 }, - [0xA7AF20C0] = { model = "mp_female", hash = 0xA7AF20C0, outfits = 120 }, - [0x0926B79B] = { model = "amsp_robsdgunsmith_males_01", hash = 0x0926B79B, outfits = 5 }, - [0x3D27C285] = { model = "am_valentinedoctors_females_01", hash = 0x3D27C285, outfits = 1 }, - [0x53367A8A] = { model = "a_f_m_armcholeracorpse_01", hash = 0x53367A8A, outfits = 40 }, - [0x9854FB06] = { model = "a_f_m_armtownfolk_01", hash = 0x9854FB06, outfits = 34 }, - [0x2ECE27FA] = { model = "a_f_m_armtownfolk_02", hash = 0x2ECE27FA, outfits = 24 }, - [0x6A01E5AF] = { model = "a_f_m_asbtownfolk_01", hash = 0x6A01E5AF, outfits = 35 }, - [0x9EF80CC3] = { model = "a_f_m_bivfancytravellers_01", hash = 0x9EF80CC3, outfits = 40 }, - [0x68D9612B] = { model = "a_f_m_blwtownfolk_01", hash = 0x68D9612B, outfits = 40 }, - [0x5EAF4CD7] = { model = "a_f_m_blwtownfolk_02", hash = 0x5EAF4CD7, outfits = 40 }, - [0x559F1795] = { model = "a_f_m_blwupperclass_01", hash = 0x559F1795, outfits = 50 }, - [0x156B2B5B] = { model = "a_f_m_btchillbilly_01", hash = 0x156B2B5B, outfits = 17 }, - [0x18FE1EB6] = { model = "a_f_m_btcobesewomen_01", hash = 0x18FE1EB6, outfits = 1 }, - [0xE6CA7A74] = { model = "a_f_m_bynfancytravellers_01", hash = 0xE6CA7A74, outfits = 30 }, - [0x41FCD560] = { model = "a_f_m_familytravelers_cool_01", hash = 0x41FCD560, outfits = 20 }, - [0x02FF9BBF] = { model = "a_f_m_familytravelers_warm_01", hash = 0x02FF9BBF, outfits = 20 }, - [0xDC9B1FAF] = { model = "a_f_m_gamhighsociety_01", hash = 0xDC9B1FAF, outfits = 39 }, - [0xF4D38A44] = { model = "a_f_m_grifancytravellers_01", hash = 0xF4D38A44, outfits = 40 }, - [0x7991217C] = { model = "a_f_m_guatownfolk_01", hash = 0x7991217C, outfits = 25 }, - [0xC53BAC3B] = { model = "a_f_m_htlfancytravellers_01", hash = 0xC53BAC3B, outfits = 40 }, - [0xFC3C9932] = { model = "a_f_m_lagtownfolk_01", hash = 0xFC3C9932, outfits = 12 }, - [0x98A1C808] = { model = "a_f_m_lowersdtownfolk_01", hash = 0x98A1C808, outfits = 42 }, - [0x88BB283B] = { model = "a_f_m_lowersdtownfolk_02", hash = 0x88BB283B, outfits = 40 }, - [0x777905B7] = { model = "a_f_m_lowersdtownfolk_03", hash = 0x777905B7, outfits = 42 }, - [0xBF41104A] = { model = "a_f_m_lowertrainpassengers_01", hash = 0xBF41104A, outfits = 25 }, - [0x26F2C9A7] = { model = "a_f_m_middlesdtownfolk_01", hash = 0x26F2C9A7, outfits = 45 }, - [0x37556A6C] = { model = "a_f_m_middlesdtownfolk_02", hash = 0x37556A6C, outfits = 30 }, - [0xC29280E8] = { model = "a_f_m_middlesdtownfolk_03", hash = 0xC29280E8, outfits = 20 }, - [0xFBA4F677] = { model = "a_f_m_middletrainpassengers_01", hash = 0xFBA4F677, outfits = 25 }, - [0xADABE58C] = { model = "a_f_m_nbxslums_01", hash = 0xADABE58C, outfits = 42 }, - [0xC20A03C0] = { model = "a_f_m_nbxupperclass_01", hash = 0xC20A03C0, outfits = 45 }, - [0x0E5BDB04] = { model = "a_f_m_nbxwhore_01", hash = 0x0E5BDB04, outfits = 25 }, - [0x768C0686] = { model = "a_f_m_rhdprostitute_01", hash = 0x768C0686, outfits = 35 }, - [0x2029479B] = { model = "a_f_m_rhdtownfolk_01", hash = 0x2029479B, outfits = 23 }, - [0x7108E959] = { model = "a_f_m_rhdtownfolk_02", hash = 0x7108E959, outfits = 22 }, - [0x7EC886E0] = { model = "a_f_m_rhdupperclass_01", hash = 0x7EC886E0, outfits = 50 }, - [0xADA8C252] = { model = "a_f_m_rkrfancytravellers_01", hash = 0xADA8C252, outfits = 40 }, - [0xC53D076D] = { model = "a_f_m_roughtravellers_01", hash = 0xC53D076D, outfits = 30 }, - [0x697CE9F6] = { model = "a_f_m_sclfancytravellers_01", hash = 0x697CE9F6, outfits = 21 }, - [0xF9EABA1F] = { model = "a_f_m_sdchinatown_01", hash = 0xF9EABA1F, outfits = 20 }, - [0x6C844384] = { model = "a_f_m_sdfancywhore_01", hash = 0x6C844384, outfits = 20 }, - [0x8DC3DD27] = { model = "a_f_m_sdobesewomen_01", hash = 0x8DC3DD27, outfits = 1 }, - [0x254A0D7B] = { model = "a_f_m_sdserversformal_01", hash = 0x254A0D7B, outfits = 10 }, - [0x10B716A1] = { model = "a_f_m_sdslums_02", hash = 0x10B716A1, outfits = 42 }, - [0xF0CED965] = { model = "a_f_m_skpprisononline_01", hash = 0xF0CED965, outfits = 8 }, - [0xAD789542] = { model = "a_f_m_strtownfolk_01", hash = 0xAD789542, outfits = 20 }, - [0x0C6E57DB] = { model = "a_f_m_tumtownfolk_01", hash = 0x0C6E57DB, outfits = 22 }, - [0xB545A97B] = { model = "a_f_m_tumtownfolk_02", hash = 0xB545A97B, outfits = 22 }, - [0xE533D2B4] = { model = "a_f_m_unicorpse_01", hash = 0xE533D2B4, outfits = 49 }, - [0xC16B7BA8] = { model = "a_f_m_uppertrainpassengers_01", hash = 0xC16B7BA8, outfits = 25 }, - [0x8E301D96] = { model = "a_f_m_valprostitute_01", hash = 0x8E301D96, outfits = 23 }, - [0xF666E887] = { model = "a_f_m_valtownfolk_01", hash = 0xF666E887, outfits = 20 }, - [0xB7A9EA0E] = { model = "a_f_m_vhtprostitute_01", hash = 0xB7A9EA0E, outfits = 11 }, - [0x008F4AD5] = { model = "a_f_m_vhttownfolk_01", hash = 0x008F4AD5, outfits = 25 }, - [0xF7E2135D] = { model = "a_f_m_waptownfolk_01", hash = 0xF7E2135D, outfits = 25 }, - [0xD0A31078] = { model = "a_f_o_blwupperclass_01", hash = 0xD0A31078, outfits = 45 }, - [0x86B4227A] = { model = "a_f_o_btchillbilly_01", hash = 0x86B4227A, outfits = 11 }, - [0xA0600CFB] = { model = "a_f_o_guatownfolk_01", hash = 0xA0600CFB, outfits = 15 }, - [0x17C91016] = { model = "a_f_o_lagtownfolk_01", hash = 0x17C91016, outfits = 12 }, - [0x322B92BF] = { model = "a_f_o_sdchinatown_01", hash = 0x322B92BF, outfits = 20 }, - [0x4057BCEE] = { model = "a_f_o_sdupperclass_01", hash = 0x4057BCEE, outfits = 45 }, - [0x837B740E] = { model = "a_f_o_waptownfolk_01", hash = 0x837B740E, outfits = 21 }, - [0xD076C393] = { model = "a_m_m_armcholeracorpse_01", hash = 0xD076C393, outfits = 38 }, - [0xB5771CFC] = { model = "a_m_m_armdeputyresident_01", hash = 0xB5771CFC, outfits = 56 }, - [0xCF7E73BE] = { model = "a_m_m_armtownfolk_01", hash = 0xCF7E73BE, outfits = 49 }, - [0xC137D731] = { model = "a_m_m_armtownfolk_02", hash = 0xC137D731, outfits = 60 }, - [0x37DAA98A] = { model = "a_m_m_asbboatcrew_01", hash = 0x37DAA98A, outfits = 30 }, - [0x9C00E2A0] = { model = "a_m_m_asbdeputyresident_01", hash = 0x9C00E2A0, outfits = 21 }, - [0x68A1DDE7] = { model = "a_m_m_asbminer_01", hash = 0x68A1DDE7, outfits = 61 }, - [0x3E500944] = { model = "a_m_m_asbminer_02", hash = 0x3E500944, outfits = 42 }, - [0x50ABADFB] = { model = "a_m_m_asbminer_03", hash = 0x50ABADFB, outfits = 81 }, - [0x19E7406F] = { model = "a_m_m_asbminer_04", hash = 0x19E7406F, outfits = 69 }, - [0x0B54641C] = { model = "a_m_m_asbtownfolk_01", hash = 0x0B54641C, outfits = 86 }, - [0xA5E02A13] = { model = "a_m_m_asbtownfolk_01_laborer", hash = 0xA5E02A13, outfits = 70 }, - [0x613A4B8E] = { model = "a_m_m_bivfancydrivers_01", hash = 0x613A4B8E, outfits = 10 }, - [0x0D8C9D0B] = { model = "a_m_m_bivfancytravellers_01", hash = 0x0D8C9D0B, outfits = 21 }, - [0x4ADABFBA] = { model = "a_m_m_bivroughtravellers_01", hash = 0x4ADABFBA, outfits = 41 }, - [0x9384F640] = { model = "a_m_m_bivworker_01", hash = 0x9384F640, outfits = 29 }, - [0x5B91D27E] = { model = "a_m_m_blwforeman_01", hash = 0x5B91D27E, outfits = 35 }, - [0xC509B26F] = { model = "a_m_m_blwlaborer_01", hash = 0xC509B26F, outfits = 35 }, - [0xDBC6DFE9] = { model = "a_m_m_blwlaborer_02", hash = 0xDBC6DFE9, outfits = 45 }, - [0x41907533] = { model = "a_m_m_blwobesemen_01", hash = 0x41907533, outfits = 3 }, - [0xD10CE853] = { model = "a_m_m_blwtownfolk_01", hash = 0xD10CE853, outfits = 77 }, - [0x3CF00F0B] = { model = "a_m_m_blwupperclass_01", hash = 0x3CF00F0B, outfits = 85 }, - [0xE232B9EF] = { model = "a_m_m_btchillbilly_01", hash = 0xE232B9EF, outfits = 42 }, - [0x002A0F51] = { model = "a_m_m_btcobesemen_01", hash = 0x002A0F51, outfits = 1 }, - [0x70B728D7] = { model = "a_m_m_bynfancydrivers_01", hash = 0x70B728D7, outfits = 10 }, - [0xECBDF082] = { model = "a_m_m_bynfancytravellers_01", hash = 0xECBDF082, outfits = 20 }, - [0x7D65D747] = { model = "a_m_m_bynroughtravellers_01", hash = 0x7D65D747, outfits = 40 }, - [0x3B777AC0] = { model = "a_m_m_bynsurvivalist_01", hash = 0x3B777AC0, outfits = 15 }, - [0xC7458219] = { model = "a_m_m_cardgameplayers_01", hash = 0xC7458219, outfits = 84 }, - [0x5A3ABACE] = { model = "a_m_m_chelonian_01", hash = 0x5A3ABACE, outfits = 24 }, - [0xDB5C4A62] = { model = "a_m_m_deliverytravelers_cool_01", hash = 0xDB5C4A62, outfits = 20 }, - [0xA56A4C3D] = { model = "a_m_m_deliverytravelers_warm_01", hash = 0xA56A4C3D, outfits = 20 }, - [0xD4B37D8A] = { model = "a_m_m_dominoesplayers_01", hash = 0xD4B37D8A, outfits = 18 }, - [0xE5CED83E] = { model = "a_m_m_emrfarmhand_01", hash = 0xE5CED83E, outfits = 20 }, - [0x570B9957] = { model = "a_m_m_familytravelers_cool_01", hash = 0x570B9957, outfits = 20 }, - [0xEF53FC1C] = { model = "a_m_m_familytravelers_warm_01", hash = 0xEF53FC1C, outfits = 20 }, - [0x584626EE] = { model = "a_m_m_farmtravelers_cool_01", hash = 0x584626EE, outfits = 20 }, - [0x2F9417F1] = { model = "a_m_m_farmtravelers_warm_01", hash = 0x2F9417F1, outfits = 20 }, - [0x18E143CA] = { model = "a_m_m_fivefingerfilletplayers_01", hash = 0x18E143CA, outfits = 12 }, - [0x0DB7B411] = { model = "a_m_m_foreman", hash = 0x0DB7B411, outfits = 10 }, - [0x8DABAE42] = { model = "a_m_m_gamhighsociety_01", hash = 0x8DABAE42, outfits = 40 }, - [0x542A035C] = { model = "a_m_m_grifancydrivers_01", hash = 0x542A035C, outfits = 10 }, - [0x761D319E] = { model = "a_m_m_grifancytravellers_01", hash = 0x761D319E, outfits = 20 }, - [0x97273585] = { model = "a_m_m_griroughtravellers_01", hash = 0x97273585, outfits = 40 }, - [0x9DDE71E1] = { model = "a_m_m_grisurvivalist_01", hash = 0x9DDE71E1, outfits = 15 }, - [0x0D4DB92F] = { model = "a_m_m_guatownfolk_01", hash = 0x0D4DB92F, outfits = 27 }, - [0xEEF71080] = { model = "a_m_m_htlfancydrivers_01", hash = 0xEEF71080, outfits = 10 }, - [0xB05F73A6] = { model = "a_m_m_htlfancytravellers_01", hash = 0xB05F73A6, outfits = 20 }, - [0xA9DCFB5A] = { model = "a_m_m_htlroughtravellers_01", hash = 0xA9DCFB5A, outfits = 40 }, - [0xB3410109] = { model = "a_m_m_htlsurvivalist_01", hash = 0xB3410109, outfits = 15 }, - [0x5729EC23] = { model = "a_m_m_huntertravelers_cool_01", hash = 0x5729EC23, outfits = 20 }, - [0xD898CFD4] = { model = "a_m_m_huntertravelers_warm_01", hash = 0xD898CFD4, outfits = 21 }, - [0x9233448C] = { model = "a_m_m_jamesonguard_01", hash = 0x9233448C, outfits = 56 }, - [0xBD48CFD4] = { model = "a_m_m_lagtownfolk_01", hash = 0xBD48CFD4, outfits = 12 }, - [0xE40C9EB8] = { model = "a_m_m_lowersdtownfolk_01", hash = 0xE40C9EB8, outfits = 91 }, - [0x82AF5BFB] = { model = "a_m_m_lowersdtownfolk_02", hash = 0x82AF5BFB, outfits = 91 }, - [0x950C61AA] = { model = "a_m_m_lowertrainpassengers_01", hash = 0x950C61AA, outfits = 25 }, - [0x7F2FF3A2] = { model = "a_m_m_middlesdtownfolk_01", hash = 0x7F2FF3A2, outfits = 65 }, - [0x6E8E525F] = { model = "a_m_m_middlesdtownfolk_02", hash = 0x6E8E525F, outfits = 51 }, - [0x20C236C8] = { model = "a_m_m_middlesdtownfolk_03", hash = 0x20C236C8, outfits = 51 }, - [0xB56ED02B] = { model = "a_m_m_middletrainpassengers_01", hash = 0xB56ED02B, outfits = 25 }, - [0xB14CEEEF] = { model = "a_m_m_moonshiners_01", hash = 0xB14CEEEF, outfits = 10 }, - [0xED78C02F] = { model = "a_m_m_nbxdockworkers_01", hash = 0xED78C02F, outfits = 70 }, - [0x9881BCFA] = { model = "a_m_m_nbxlaborers_01", hash = 0x9881BCFA, outfits = 70 }, - [0x56A5800A] = { model = "a_m_m_nbxslums_01", hash = 0x56A5800A, outfits = 85 }, - [0x04B7D63B] = { model = "a_m_m_nbxupperclass_01", hash = 0x04B7D63B, outfits = 50 }, - [0x6D027AB7] = { model = "a_m_m_nearoughtravellers_01", hash = 0x6D027AB7, outfits = 35 }, - [0x2C9C69C2] = { model = "a_m_m_ranchertravelers_cool_01", hash = 0x2C9C69C2, outfits = 20 }, - [0xF7649D04] = { model = "a_m_m_ranchertravelers_warm_01", hash = 0xF7649D04, outfits = 20 }, - [0x54D8BE8E] = { model = "a_m_m_rancher_01", hash = 0x54D8BE8E, outfits = 20 }, - [0x0B5B9D98] = { model = "a_m_m_rhddeputyresident_01", hash = 0x0B5B9D98, outfits = 23 }, - [0x94EAA58F] = { model = "a_m_m_rhdforeman_01", hash = 0x94EAA58F, outfits = 30 }, - [0x602993B2] = { model = "a_m_m_rhdobesemen_01", hash = 0x602993B2, outfits = 3 }, - [0x3A489018] = { model = "a_m_m_rhdtownfolk_01", hash = 0x3A489018, outfits = 42 }, - [0x009F6A48] = { model = "a_m_m_rhdtownfolk_01_laborer", hash = 0x009F6A48, outfits = 10 }, - [0x6833EBEE] = { model = "a_m_m_rhdtownfolk_02", hash = 0x6833EBEE, outfits = 35 }, - [0xAFCAF759] = { model = "a_m_m_rhdupperclass_01", hash = 0xAFCAF759, outfits = 63 }, - [0x921DA99E] = { model = "a_m_m_rkrfancydrivers_01", hash = 0x921DA99E, outfits = 10 }, - [0x76C805FE] = { model = "a_m_m_rkrfancytravellers_01", hash = 0x76C805FE, outfits = 20 }, - [0xAD581ACB] = { model = "a_m_m_rkrroughtravellers_01", hash = 0xAD581ACB, outfits = 40 }, - [0x2FABD7A9] = { model = "a_m_m_rkrsurvivalist_01", hash = 0x2FABD7A9, outfits = 15 }, - [0xBCA4A7DC] = { model = "a_m_m_sclfancydrivers_01", hash = 0xBCA4A7DC, outfits = 10 }, - [0x45B96600] = { model = "a_m_m_sclfancytravellers_01", hash = 0x45B96600, outfits = 20 }, - [0xD93C654F] = { model = "a_m_m_sclroughtravellers_01", hash = 0xD93C654F, outfits = 41 }, - [0x26878D5C] = { model = "a_m_m_sdchinatown_01", hash = 0x26878D5C, outfits = 21 }, - [0x44BCB3C8] = { model = "a_m_m_sddockforeman_01", hash = 0x44BCB3C8, outfits = 25 }, - [0xA1875C33] = { model = "a_m_m_sddockworkers_02", hash = 0xA1875C33, outfits = 70 }, - [0xF20E6FFA] = { model = "a_m_m_sdfancytravellers_01", hash = 0xF20E6FFA, outfits = 20 }, - [0xD0EEF17B] = { model = "a_m_m_sdlaborers_02", hash = 0xD0EEF17B, outfits = 70 }, - [0x36E3135B] = { model = "a_m_m_sdobesemen_01", hash = 0x36E3135B, outfits = 3 }, - [0x885C429E] = { model = "a_m_m_sdroughtravellers_01", hash = 0x885C429E, outfits = 40 }, - [0x8FC7F8DD] = { model = "a_m_m_sdserversformal_01", hash = 0x8FC7F8DD, outfits = 6 }, - [0xAA5C3EA9] = { model = "a_m_m_sdslums_02", hash = 0xAA5C3EA9, outfits = 85 }, - [0x16958B7D] = { model = "a_m_m_skpprisoner_01", hash = 0x16958B7D, outfits = 20 }, - [0x6D78A035] = { model = "a_m_m_skpprisonline_01", hash = 0x6D78A035, outfits = 24 }, - [0xDCA53CEE] = { model = "a_m_m_smhthug_01", hash = 0xDCA53CEE, outfits = 24 }, - [0xF0379DF1] = { model = "a_m_m_strdeputyresident_01", hash = 0xF0379DF1, outfits = 21 }, - [0x2A19CF1B] = { model = "a_m_m_strfancytourist_01", hash = 0x2A19CF1B, outfits = 5 }, - [0x9E51CBEB] = { model = "a_m_m_strlaborer_01", hash = 0x9E51CBEB, outfits = 18 }, - [0x4335A6E5] = { model = "a_m_m_strtownfolk_01", hash = 0x4335A6E5, outfits = 26 }, - [0x1C9C6388] = { model = "a_m_m_tumtownfolk_01", hash = 0x1C9C6388, outfits = 60 }, - [0x39A29D9C] = { model = "a_m_m_tumtownfolk_02", hash = 0x39A29D9C, outfits = 60 }, - [0xFE70D544] = { model = "a_m_m_uniboatcrew_01", hash = 0xFE70D544, outfits = 20 }, - [0x1CC906ED] = { model = "a_m_m_unicoachguards_01", hash = 0x1CC906ED, outfits = 20 }, - [0x4C6C6086] = { model = "a_m_m_unicorpse_01", hash = 0x4C6C6086, outfits = 186 }, - [0x39F19DB8] = { model = "a_m_m_unigunslinger_01", hash = 0x39F19DB8, outfits = 40 }, - [0x752ADF85] = { model = "a_m_m_uppertrainpassengers_01", hash = 0x752ADF85, outfits = 25 }, - [0xF90FDED2] = { model = "a_m_m_valcriminals_01", hash = 0xF90FDED2, outfits = 10 }, - [0x639CD8CD] = { model = "a_m_m_valdeputyresident_01", hash = 0x639CD8CD, outfits = 30 }, - [0x1F52F239] = { model = "a_m_m_valfarmer_01", hash = 0x1F52F239, outfits = 29 }, - [0xDC64F897] = { model = "a_m_m_vallaborer_01", hash = 0xDC64F897, outfits = 58 }, - [0x838F50CE] = { model = "a_m_m_valtownfolk_01", hash = 0x838F50CE, outfits = 36 }, - [0x9550F451] = { model = "a_m_m_valtownfolk_02", hash = 0x9550F451, outfits = 44 }, - [0xAA7C134D] = { model = "a_m_m_vhtboatcrew_01", hash = 0xAA7C134D, outfits = 30 }, - [0xC703A880] = { model = "a_m_m_vhtthug_01", hash = 0xC703A880, outfits = 40 }, - [0x36C66682] = { model = "a_m_m_vhttownfolk_01", hash = 0x36C66682, outfits = 86 }, - [0x3183AABD] = { model = "a_m_m_wapwarriors_01", hash = 0x3183AABD, outfits = 69 }, - [0x57B730CA] = { model = "a_m_o_blwupperclass_01", hash = 0x57B730CA, outfits = 80 }, - [0xA9D376B5] = { model = "a_m_o_btchillbilly_01", hash = 0xA9D376B5, outfits = 29 }, - [0x153790EE] = { model = "a_m_o_guatownfolk_01", hash = 0x153790EE, outfits = 15 }, - [0xD02B6700] = { model = "a_m_o_lagtownfolk_01", hash = 0xD02B6700, outfits = 12 }, - [0x34EEA2A1] = { model = "a_m_o_sdchinatown_01", hash = 0x34EEA2A1, outfits = 21 }, - [0x8C74A816] = { model = "a_m_o_sdupperclass_01", hash = 0x8C74A816, outfits = 50 }, - [0x8C850F6C] = { model = "a_m_o_waptownfolk_01", hash = 0x8C850F6C, outfits = 26 }, - [0x8E76B9B9] = { model = "a_m_y_asbminer_01", hash = 0x8E76B9B9, outfits = 60 }, - [0x5C0454CD] = { model = "a_m_y_asbminer_02", hash = 0x5C0454CD, outfits = 42 }, - [0x14FD46C4] = { model = "a_m_y_asbminer_03", hash = 0x14FD46C4, outfits = 81 }, - [0x30407D4A] = { model = "a_m_y_asbminer_04", hash = 0x30407D4A, outfits = 69 }, - [0x0FC40064] = { model = "a_m_y_nbxstreetkids_01", hash = 0x0FC40064, outfits = 8 }, - [0xACA57303] = { model = "a_m_y_nbxstreetkids_slums_01", hash = 0xACA57303, outfits = 20 }, - [0xCA57B2C4] = { model = "a_m_y_sdstreetkids_slums_02", hash = 0xCA57B2C4, outfits = 8 }, - [0x75CC2B66] = { model = "a_m_y_unicorpse_01", hash = 0x75CC2B66, outfits = 2 }, - [0x6B6968AA] = { model = "casp_coachrobbery_lenny_males_01", hash = 0x6B6968AA, outfits = 2 }, - [0x63F5A730] = { model = "casp_coachrobbery_micah_males_01", hash = 0x63F5A730, outfits = 1 }, - [0x7A8FF723] = { model = "casp_hunting02_males_01", hash = 0x7A8FF723, outfits = 2 }, - [0x0B4466F8] = { model = "cr_strawberry_males_01", hash = 0x0B4466F8, outfits = 19 }, - [0xA8B1C9F7] = { model = "cs_abe", hash = 0xA8B1C9F7, outfits = 2 }, - [0xAB6C83B9] = { model = "cs_aberdeenpigfarmer", hash = 0xAB6C83B9, outfits = 1 }, - [0x78F9C32F] = { model = "cs_aberdeensister", hash = 0x78F9C32F, outfits = 2 }, - [0xEED46B48] = { model = "cs_abigailroberts", hash = 0xEED46B48, outfits = 15 }, - [0x582954CA] = { model = "cs_acrobat", hash = 0x582954CA, outfits = 1 }, - [0x6A7308E5] = { model = "cs_adamgray", hash = 0x6A7308E5, outfits = 1 }, - [0x0596AA7B] = { model = "cs_agnesdowd", hash = 0x0596AA7B, outfits = 4 }, - [0x28E45219] = { model = "cs_albertcakeesquire", hash = 0x28E45219, outfits = 1 }, - [0x1E9A4722] = { model = "cs_albertmason", hash = 0x1E9A4722, outfits = 2 }, - [0x19ACF207] = { model = "cs_andershelgerson", hash = 0x19ACF207, outfits = 4 }, - [0x31DC5CD8] = { model = "cs_angel", hash = 0x31DC5CD8, outfits = 1 }, - [0x17F33DAA] = { model = "cs_angryhusband", hash = 0x17F33DAA, outfits = 1 }, - [0xF5FE5824] = { model = "cs_angusgeddes", hash = 0xF5FE5824, outfits = 2 }, - [0x563E79E7] = { model = "cs_ansel_atherton", hash = 0x563E79E7, outfits = 1 }, - [0xCADCA094] = { model = "cs_antonyforemen", hash = 0xCADCA094, outfits = 2 }, - [0x328BA546] = { model = "cs_archerfordham", hash = 0x328BA546, outfits = 2 }, - [0x7920404D] = { model = "cs_archibaldjameson", hash = 0x7920404D, outfits = 2 }, - [0xF8BAA439] = { model = "cs_archiedown", hash = 0xF8BAA439, outfits = 4 }, - [0x5FA98D21] = { model = "cs_artappraiser", hash = 0x5FA98D21, outfits = 1 }, - [0x1B703333] = { model = "cs_asbdeputy_01", hash = 0x1B703333, outfits = 1 }, - [0xB6AC4FC1] = { model = "cs_ashton", hash = 0xB6AC4FC1, outfits = 1 }, - [0x253EF371] = { model = "cs_balloonoperator", hash = 0x253EF371, outfits = 4 }, - [0x3C3844C4] = { model = "cs_bandbassist", hash = 0x3C3844C4, outfits = 1 }, - [0x559E17B2] = { model = "cs_banddrummer", hash = 0x559E17B2, outfits = 1 }, - [0x8EA36E09] = { model = "cs_bandpianist", hash = 0x8EA36E09, outfits = 1 }, - [0xF3178A28] = { model = "cs_bandsinger", hash = 0xF3178A28, outfits = 1 }, - [0xF3C61748] = { model = "cs_baptiste", hash = 0xF3C61748, outfits = 1 }, - [0xFB614B3F] = { model = "cs_bartholomewbraithwaite", hash = 0xFB614B3F, outfits = 2 }, - [0xD29F17B9] = { model = "cs_bathingladies_01", hash = 0xD29F17B9, outfits = 7 }, - [0xFCAF1AFE] = { model = "cs_beatenupcaptain", hash = 0xFCAF1AFE, outfits = 1 }, - [0x4B780F88] = { model = "cs_beaugray", hash = 0x4B780F88, outfits = 3 }, - [0x7B67B26A] = { model = "cs_billwilliamson", hash = 0x7B67B26A, outfits = 28 }, - [0xDF333F2B] = { model = "cs_bivcoachdriver", hash = 0xDF333F2B, outfits = 1 }, - [0x1AA22618] = { model = "cs_blwphotographer", hash = 0x1AA22618, outfits = 1 }, - [0x4D3B6EF2] = { model = "cs_blwwitness", hash = 0x4D3B6EF2, outfits = 2 }, - [0xDFE6F4B8] = { model = "cs_braithwaitebutler", hash = 0xDFE6F4B8, outfits = 1 }, - [0xEB20D71E] = { model = "cs_braithwaitemaid", hash = 0xEB20D71E, outfits = 1 }, - [0x1C76CA2D] = { model = "cs_braithwaiteservant", hash = 0x1C76CA2D, outfits = 1 }, - [0x0DBD6C20] = { model = "cs_brendacrawley", hash = 0x0DBD6C20, outfits = 2 }, - [0x90C94DCD] = { model = "cs_bronte", hash = 0x90C94DCD, outfits = 4 }, - [0xD18A3207] = { model = "cs_brontesbutler", hash = 0xD18A3207, outfits = 1 }, - [0x1CC577E5] = { model = "cs_brotherdorkins", hash = 0x1CC577E5, outfits = 1 }, - [0x0AF97379] = { model = "cs_brynntildon", hash = 0x0AF97379, outfits = 2 }, - [0xD012554C] = { model = "cs_bubba", hash = 0xD012554C, outfits = 2 }, - [0x5411589F] = { model = "cs_cabaretmc", hash = 0x5411589F, outfits = 1 }, - [0xF344B612] = { model = "cs_cajun", hash = 0xF344B612, outfits = 1 }, - [0x2D0C353F] = { model = "cs_cancanman_01", hash = 0x2D0C353F, outfits = 1 }, - [0xD0C13881] = { model = "cs_cancan_01", hash = 0xD0C13881, outfits = 1 }, - [0x2F5D75D4] = { model = "cs_cancan_02", hash = 0x2F5D75D4, outfits = 1 }, - [0xBD791211] = { model = "cs_cancan_03", hash = 0xBD791211, outfits = 1 }, - [0x12DABCCF] = { model = "cs_cancan_04", hash = 0x12DABCCF, outfits = 1 }, - [0x4EB9996F] = { model = "cs_captainmonroe", hash = 0x4EB9996F, outfits = 1 }, - [0x2E6B8F33] = { model = "cs_cassidy", hash = 0x2E6B8F33, outfits = 3 }, - [0x5262264D] = { model = "cs_catherinebraithwaite", hash = 0x5262264D, outfits = 2 }, - [0x5F1AD166] = { model = "cs_cattlerustler", hash = 0x5F1AD166, outfits = 1 }, - [0x074B53CC] = { model = "cs_cavehermit", hash = 0x074B53CC, outfits = 1 }, - [0x8451929D] = { model = "cs_chainprisoner_01", hash = 0x8451929D, outfits = 4 }, - [0xF367F0C8] = { model = "cs_chainprisoner_02", hash = 0xF367F0C8, outfits = 4 }, - [0x53DD98DF] = { model = "cs_charlessmith", hash = 0x53DD98DF, outfits = 34 }, - [0x34F835DE] = { model = "cs_chelonianmaster", hash = 0x34F835DE, outfits = 5 }, - [0xD303ACD2] = { model = "cs_cigcardguy", hash = 0xD303ACD2, outfits = 1 }, - [0xDBCB9834] = { model = "cs_clay", hash = 0xDBCB9834, outfits = 1 }, - [0xE44D789F] = { model = "cs_cleet", hash = 0xE44D789F, outfits = 3 }, - [0xFF292AA4] = { model = "cs_clive", hash = 0xFF292AA4, outfits = 1 }, - [0x0E174AF7] = { model = "cs_colfavours", hash = 0x0E174AF7, outfits = 1 }, - [0xCF10E769] = { model = "cs_colmodriscoll", hash = 0xCF10E769, outfits = 6 }, - [0x72A3A733] = { model = "cs_cooper", hash = 0x72A3A733, outfits = 1 }, - [0xC43EAC49] = { model = "cs_cornwalltrainconductor", hash = 0xC43EAC49, outfits = 1 }, - [0x4BBF80D3] = { model = "cs_crackpotinventor", hash = 0x4BBF80D3, outfits = 5 }, - [0x3BF7829E] = { model = "cs_crackpotrobot", hash = 0x3BF7829E, outfits = 2 }, - [0xC061B459] = { model = "cs_creepyoldlady", hash = 0xC061B459, outfits = 1 }, - [0xD163B76B] = { model = "cs_creolecaptain", hash = 0xD163B76B, outfits = 1 }, - [0x3B38C996] = { model = "cs_creoledoctor", hash = 0x3B38C996, outfits = 1 }, - [0x96C421E4] = { model = "cs_creoleguy", hash = 0x96C421E4, outfits = 1 }, - [0x16C57A26] = { model = "cs_dalemaroney", hash = 0x16C57A26, outfits = 2 }, - [0x65A7F0E7] = { model = "cs_daveycallender", hash = 0x65A7F0E7, outfits = 1 }, - [0x9EAF0DAE] = { model = "cs_davidgeddes", hash = 0x9EAF0DAE, outfits = 2 }, - [0x66E939A1] = { model = "cs_desmond", hash = 0x66E939A1, outfits = 1 }, - [0x8ACCB671] = { model = "cs_didsbury", hash = 0x8ACCB671, outfits = 1 }, - [0x4AB3D571] = { model = "cs_dinoboneslady", hash = 0x4AB3D571, outfits = 2 }, - [0x32C998FD] = { model = "cs_disguisedduster_01", hash = 0x32C998FD, outfits = 1 }, - [0x5888E47B] = { model = "cs_disguisedduster_02", hash = 0x5888E47B, outfits = 1 }, - [0x4A3D47E4] = { model = "cs_disguisedduster_03", hash = 0x4A3D47E4, outfits = 1 }, - [0x0748A3DA] = { model = "cs_doroetheawicklow", hash = 0x0748A3DA, outfits = 3 }, - [0xF45739BF] = { model = "cs_drhiggins", hash = 0xF45739BF, outfits = 1 }, - [0xC8245F3C] = { model = "cs_drmalcolmmacintosh", hash = 0xC8245F3C, outfits = 1 }, - [0x9FC15494] = { model = "cs_duncangeddes", hash = 0x9FC15494, outfits = 1 }, - [0xA02C1ADB] = { model = "cs_dusterinformant_01", hash = 0xA02C1ADB, outfits = 1 }, - [0x73E82274] = { model = "cs_dutch", hash = 0x73E82274, outfits = 31 }, - [0x9660A42D] = { model = "cs_eagleflies", hash = 0x9660A42D, outfits = 10 }, - [0xFD38D463] = { model = "cs_edgarross", hash = 0xFD38D463, outfits = 2 }, - [0xE52A1621] = { model = "cs_edithdown", hash = 0xE52A1621, outfits = 7 }, - [0xCB790850] = { model = "cs_edith_john", hash = 0xCB790850, outfits = 1 }, - [0x58672CFB] = { model = "cs_edmundlowry", hash = 0x58672CFB, outfits = 1 }, - [0x88A17BE6] = { model = "cs_escapeartist", hash = 0x88A17BE6, outfits = 5 }, - [0x929C4793] = { model = "cs_escapeartistassistant", hash = 0x929C4793, outfits = 1 }, - [0x2C4CA0A0] = { model = "cs_evelynmiller", hash = 0x2C4CA0A0, outfits = 3 }, - [0xF0EAC712] = { model = "cs_exconfedinformant", hash = 0xF0EAC712, outfits = 1 }, - [0x11E95A0F] = { model = "cs_exconfedsleader_01", hash = 0x11E95A0F, outfits = 1 }, - [0x59D39598] = { model = "cs_exoticcollector", hash = 0x59D39598, outfits = 2 }, - [0xFA274E38] = { model = "cs_famousgunslinger_01", hash = 0xFA274E38, outfits = 2 }, - [0x504E7A85] = { model = "cs_famousgunslinger_02", hash = 0x504E7A85, outfits = 1 }, - [0xDEBB9761] = { model = "cs_famousgunslinger_03", hash = 0xDEBB9761, outfits = 1 }, - [0x14F583D4] = { model = "cs_famousgunslinger_04", hash = 0x14F583D4, outfits = 1 }, - [0x236820B9] = { model = "cs_famousgunslinger_05", hash = 0x236820B9, outfits = 1 }, - [0x79B7CD5F] = { model = "cs_famousgunslinger_06", hash = 0x79B7CD5F, outfits = 3 }, - [0x8D374040] = { model = "cs_featherstonchambers", hash = 0x8D374040, outfits = 1 }, - [0x8D6618C3] = { model = "cs_featsofstrength", hash = 0x8D6618C3, outfits = 2 }, - [0x53308B76] = { model = "cs_fightref", hash = 0x53308B76, outfits = 1 }, - [0xEADD5782] = { model = "cs_fire_breather", hash = 0xEADD5782, outfits = 4 }, - [0x5A3FC29E] = { model = "cs_fishcollector", hash = 0x5A3FC29E, outfits = 4 }, - [0x61F3D8F8] = { model = "cs_forgivenhusband_01", hash = 0x61F3D8F8, outfits = 1 }, - [0xD36D9790] = { model = "cs_forgivenwife_01", hash = 0xD36D9790, outfits = 1 }, - [0xB4449A8A] = { model = "cs_formyartbigwoman", hash = 0xB4449A8A, outfits = 1 }, - [0x9634D7B5] = { model = "cs_francis_sinclair", hash = 0x9634D7B5, outfits = 1 }, - [0xD809F182] = { model = "cs_frenchartist", hash = 0xD809F182, outfits = 2 }, - [0xF258BC07] = { model = "cs_frenchman_01", hash = 0xF258BC07, outfits = 1 }, - [0x8D883B70] = { model = "cs_fussar", hash = 0x8D883B70, outfits = 2 }, - [0x968AB03C] = { model = "cs_garethbraithwaite", hash = 0x968AB03C, outfits = 1 }, - [0x4C5C60B2] = { model = "cs_gavin", hash = 0x4C5C60B2, outfits = 2 }, - [0x3CCC99B1] = { model = "cs_genstoryfemale", hash = 0x3CCC99B1, outfits = 2 }, - [0xD9E8B86A] = { model = "cs_genstorymale", hash = 0xD9E8B86A, outfits = 1 }, - [0xBB35418E] = { model = "cs_geraldbraithwaite", hash = 0xBB35418E, outfits = 2 }, - [0x39FD28AE] = { model = "cs_germandaughter", hash = 0x39FD28AE, outfits = 1 }, - [0x5205A246] = { model = "cs_germanfather", hash = 0x5205A246, outfits = 5 }, - [0x771EA179] = { model = "cs_germanmother", hash = 0x771EA179, outfits = 3 }, - [0x0D5EB39A] = { model = "cs_germanson", hash = 0x0D5EB39A, outfits = 2 }, - [0xE1B35B43] = { model = "cs_gilbertknightly", hash = 0xE1B35B43, outfits = 1 }, - [0x9B5487C9] = { model = "cs_gloria", hash = 0x9B5487C9, outfits = 1 }, - [0xBDB43F31] = { model = "cs_grizzledjon", hash = 0xBDB43F31, outfits = 2 }, - [0x9EDFC6EB] = { model = "cs_guidomartelli", hash = 0x9EDFC6EB, outfits = 3 }, - [0x6D084810] = { model = "cs_hamish", hash = 0x6D084810, outfits = 1 }, - [0x6D8B4BB9] = { model = "cs_hectorfellowes", hash = 0x6D8B4BB9, outfits = 3 }, - [0x30324925] = { model = "cs_henrilemiux", hash = 0x30324925, outfits = 2 }, - [0x0C60474A] = { model = "cs_herbalist", hash = 0x0C60474A, outfits = 1 }, - [0x4C165ECF] = { model = "cs_hercule", hash = 0x4C165ECF, outfits = 2 }, - [0xA560451D] = { model = "cs_hestonjameson", hash = 0xA560451D, outfits = 2 }, - [0xB0C337A3] = { model = "cs_hobartcrawley", hash = 0xB0C337A3, outfits = 2 }, - [0x490733E8] = { model = "cs_hoseamatthews", hash = 0x490733E8, outfits = 13 }, - [0x88094B37] = { model = "cs_iangray", hash = 0x88094B37, outfits = 1 }, - [0x71F7EE1B] = { model = "cs_jackmarston", hash = 0x71F7EE1B, outfits = 8 }, - [0xDA5990BC] = { model = "cs_jackmarston_teen", hash = 0xDA5990BC, outfits = 10 }, - [0x004C2AF4] = { model = "cs_jamie", hash = 0x004C2AF4, outfits = 1 }, - [0xD2E125B6] = { model = "cs_janson", hash = 0xD2E125B6, outfits = 1 }, - [0x6DE3800C] = { model = "cs_javierescuella", hash = 0x6DE3800C, outfits = 32 }, - [0x5548F1E9] = { model = "cs_jeb", hash = 0x5548F1E9, outfits = 3 }, - [0x6C30159E] = { model = "cs_jimcalloway", hash = 0x6C30159E, outfits = 1 }, - [0x9DE34628] = { model = "cs_jockgray", hash = 0x9DE34628, outfits = 1 }, - [0xE569265F] = { model = "cs_joe", hash = 0xE569265F, outfits = 2 }, - [0x54951099] = { model = "cs_joebutler", hash = 0x54951099, outfits = 2 }, - [0x05B6D06D] = { model = "cs_johnmarston", hash = 0x05B6D06D, outfits = 31 }, - [0x442FBDDC] = { model = "cs_johnthebaptisingmadman", hash = 0x442FBDDC, outfits = 2 }, - [0x7D357931] = { model = "cs_johnweathers", hash = 0x7D357931, outfits = 1 }, - [0x3BFD7D5D] = { model = "cs_josiahtrelawny", hash = 0x3BFD7D5D, outfits = 10 }, - [0xB4F83876] = { model = "cs_jules", hash = 0xB4F83876, outfits = 2 }, - [0x9A3E29FB] = { model = "cs_karen", hash = 0x9A3E29FB, outfits = 16 }, - [0x013504F0] = { model = "cs_karensjohn_01", hash = 0x013504F0, outfits = 2 }, - [0x739BA0D6] = { model = "cs_kieran", hash = 0x739BA0D6, outfits = 11 }, - [0xBFD90AEA] = { model = "cs_laramie", hash = 0xBFD90AEA, outfits = 2 }, - [0x97F8823A] = { model = "cs_leighgray", hash = 0x97F8823A, outfits = 1 }, - [0x3AEDE260] = { model = "cs_lemiuxassistant", hash = 0x3AEDE260, outfits = 2 }, - [0xF8AE5F8D] = { model = "cs_lenny", hash = 0xF8AE5F8D, outfits = 17 }, - [0xC91ADF62] = { model = "cs_leon", hash = 0xC91ADF62, outfits = 3 }, - [0xFA0312B3] = { model = "cs_leostrauss", hash = 0xFA0312B3, outfits = 11 }, - [0x4D24C49A] = { model = "cs_levisimon", hash = 0x4D24C49A, outfits = 1 }, - [0x8A1FCA47] = { model = "cs_leviticuscornwall", hash = 0x8A1FCA47, outfits = 1 }, - [0x19686DFA] = { model = "cs_lillianpowell", hash = 0x19686DFA, outfits = 3 }, - [0x55C7D09F] = { model = "cs_lillymillet", hash = 0x55C7D09F, outfits = 1 }, - [0x4DBE35B8] = { model = "cs_londonderryson", hash = 0x4DBE35B8, outfits = 1 }, - [0x77435EF1] = { model = "cs_lucanapoli", hash = 0x77435EF1, outfits = 1 }, - [0x5F5942DD] = { model = "cs_magnifico", hash = 0x5F5942DD, outfits = 2 }, - [0x4B6ECAEF] = { model = "cs_mamawatson", hash = 0x4B6ECAEF, outfits = 1 }, - [0x3940877D] = { model = "cs_marshall_thurwell", hash = 0x3940877D, outfits = 1 }, - [0x9B37429C] = { model = "cs_marybeth", hash = 0x9B37429C, outfits = 8 }, - [0x3EA5B5BC] = { model = "cs_marylinton", hash = 0x3EA5B5BC, outfits = 5 }, - [0xF04DEE7E] = { model = "cs_meditatingmonk", hash = 0xF04DEE7E, outfits = 1 }, - [0xC0321438] = { model = "cs_meredith", hash = 0xC0321438, outfits = 1 }, - [0x3112E4AC] = { model = "cs_meredithsmother", hash = 0x3112E4AC, outfits = 1 }, - [0xDE361D65] = { model = "cs_micahbell", hash = 0xDE361D65, outfits = 32 }, - [0xE2D294AB] = { model = "cs_micahsnemesis", hash = 0xE2D294AB, outfits = 1 }, - [0xA1DFB431] = { model = "cs_mickey", hash = 0xA1DFB431, outfits = 2 }, - [0x01004B26] = { model = "cs_miltonandrews", hash = 0x01004B26, outfits = 2 }, - [0x859CBAAC] = { model = "cs_missmarjorie", hash = 0x859CBAAC, outfits = 3 }, - [0xFBBC94C6] = { model = "cs_mixedracekid", hash = 0xFBBC94C6, outfits = 2 }, - [0x9BAAB546] = { model = "cs_moira", hash = 0x9BAAB546, outfits = 1 }, - [0xEB55C35E] = { model = "cs_mollyoshea", hash = 0xEB55C35E, outfits = 8 }, - [0x4C4448BA] = { model = "cs_mp_alfredo_montez", hash = 0x4C4448BA, outfits = 4 }, - [0x931F01E5] = { model = "cs_mp_allison", hash = 0x931F01E5, outfits = 1 }, - [0x30E034CA] = { model = "cs_mp_amos_lansing", hash = 0x30E034CA, outfits = 1 }, - [0x39456FEE] = { model = "cs_mp_bonnie", hash = 0x39456FEE, outfits = 1 }, - [0x892944C5] = { model = "cs_mp_bountyhunter", hash = 0x892944C5, outfits = 1 }, - [0x9F7769F3] = { model = "cs_mp_camp_cook", hash = 0x9F7769F3, outfits = 3 }, - [0xEADDA26C] = { model = "cs_mp_cliff", hash = 0xEADDA26C, outfits = 1 }, - [0x1DD24709] = { model = "cs_mp_cripps", hash = 0x1DD24709, outfits = 25 }, - [0x2CDA4B15] = { model = "cs_mp_grace_lancing", hash = 0x2CDA4B15, outfits = 1 }, - [0x893E6E25] = { model = "cs_mp_hans", hash = 0x893E6E25, outfits = 1 }, - [0xDAB77DF1] = { model = "cs_mp_henchman", hash = 0xDAB77DF1, outfits = 3 }, - [0x4BFBF802] = { model = "cs_mp_horley", hash = 0x4BFBF802, outfits = 1 }, - [0x2EDEF9ED] = { model = "cs_mp_jeremiah_shaw", hash = 0x2EDEF9ED, outfits = 1 }, - [0x6B759DBB] = { model = "cs_mp_jessica", hash = 0x6B759DBB, outfits = 3 }, - [0x8BF81D72] = { model = "cs_mp_jorge_montez", hash = 0x8BF81D72, outfits = 2 }, - [0x9A00FB76] = { model = "cs_mp_langston", hash = 0x9A00FB76, outfits = 1 }, - [0x75DCACF2] = { model = "cs_mp_lee", hash = 0x75DCACF2, outfits = 1 }, - [0xB93CB429] = { model = "cs_mp_mabel", hash = 0xB93CB429, outfits = 1 }, - [0xE24327D2] = { model = "cs_mp_marshall_davies", hash = 0xE24327D2, outfits = 2 }, - [0x65C51599] = { model = "cs_mp_moonshiner", hash = 0x65C51599, outfits = 1 }, - [0xA3261C0D] = { model = "cs_mp_mradler", hash = 0xA3261C0D, outfits = 1 }, - [0xE87FE55D] = { model = "cs_mp_oldman_jones", hash = 0xE87FE55D, outfits = 2 }, - [0x4549CCA0] = { model = "cs_mp_revenge_marshall", hash = 0x4549CCA0, outfits = 1 }, - [0xE757DE29] = { model = "cs_mp_samson_finch", hash = 0xE757DE29, outfits = 3 }, - [0x9A3713AD] = { model = "cs_mp_shaky", hash = 0x9A3713AD, outfits = 1 }, - [0x28AE1CF3] = { model = "cs_mp_sherifffreeman", hash = 0x28AE1CF3, outfits = 1 }, - [0xBB202735] = { model = "cs_mp_teddybrown", hash = 0xBB202735, outfits = 2 }, - [0xB36FBE5E] = { model = "cs_mp_terrance", hash = 0xB36FBE5E, outfits = 1 }, - [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, - [0xE20455E9] = { model = "cs_mp_travellingsaleswoman", hash = 0xE20455E9, outfits = 1 }, - [0xB496E3FB] = { model = "cs_mp_went", hash = 0xB496E3FB, outfits = 3 }, - [0xAB270CC9] = { model = "cs_mradler", hash = 0xAB270CC9, outfits = 3 }, - [0xA89E5746] = { model = "cs_mrdevon", hash = 0xA89E5746, outfits = 1 }, - [0xEFBFEDB1] = { model = "cs_mrlinton", hash = 0xEFBFEDB1, outfits = 1 }, - [0x3AAAB060] = { model = "cs_mrpearson", hash = 0x3AAAB060, outfits = 9 }, - [0x155E51DB] = { model = "cs_mrsadler", hash = 0x155E51DB, outfits = 22 }, - [0x2AB79B76] = { model = "cs_mrsfellows", hash = 0x2AB79B76, outfits = 1 }, - [0xEFC21975] = { model = "cs_mrsgeddes", hash = 0xEFC21975, outfits = 1 }, - [0x5187C29B] = { model = "cs_mrslondonderry", hash = 0x5187C29B, outfits = 1 }, - [0xFEFB81C0] = { model = "cs_mrsweathers", hash = 0xFEFB81C0, outfits = 1 }, - [0x4481AEDF] = { model = "cs_mrs_calhoun", hash = 0x4481AEDF, outfits = 1 }, - [0x62C1389E] = { model = "cs_mrs_sinclair", hash = 0x62C1389E, outfits = 1 }, - [0x41A0B3F7] = { model = "cs_mrwayne", hash = 0x41A0B3F7, outfits = 1 }, - [0x84490A12] = { model = "cs_mud2bigguy", hash = 0x84490A12, outfits = 6 }, - [0xF65EE3E1] = { model = "cs_mysteriousstranger", hash = 0xF65EE3E1, outfits = 1 }, - [0x753590C4] = { model = "cs_nbxdrunk", hash = 0x753590C4, outfits = 2 }, - [0x79AEBA08] = { model = "cs_nbxexecuted", hash = 0x79AEBA08, outfits = 2 }, - [0xC19649AA] = { model = "cs_nbxpolicechiefformal", hash = 0xC19649AA, outfits = 1 }, - [0xC175E70A] = { model = "cs_nbxreceptionist_01", hash = 0xC175E70A, outfits = 1 }, - [0xB304BB4D] = { model = "cs_nial_whelan", hash = 0xB304BB4D, outfits = 1 }, - [0x4995C0A5] = { model = "cs_nicholastimmins", hash = 0x4995C0A5, outfits = 2 }, - [0x031076F6] = { model = "cs_nils", hash = 0x031076F6, outfits = 1 }, - [0xB4B65231] = { model = "cs_norrisforsythe", hash = 0xB4B65231, outfits = 2 }, - [0x04156A73] = { model = "cs_obediahhinton", hash = 0x04156A73, outfits = 1 }, - [0xA91215CD] = { model = "cs_oddfellowspinhead", hash = 0xA91215CD, outfits = 2 }, - [0x62589584] = { model = "cs_odprostitute", hash = 0x62589584, outfits = 1 }, - [0x5B00992C] = { model = "cs_operasinger", hash = 0x5B00992C, outfits = 1 }, - [0xBC537EB7] = { model = "cs_paytah", hash = 0xBC537EB7, outfits = 4 }, - [0x8617AB88] = { model = "cs_penelopebraithwaite", hash = 0x8617AB88, outfits = 2 }, - [0xA06649D4] = { model = "cs_pinkertongoon", hash = 0xA06649D4, outfits = 1 }, - [0x2E258627] = { model = "cs_poisonwellshaman", hash = 0x2E258627, outfits = 2 }, - [0x19E97506] = { model = "cs_poorjoe", hash = 0x19E97506, outfits = 1 }, - [0xDD5F0343] = { model = "cs_priest_wedding", hash = 0xDD5F0343, outfits = 1 }, - [0x89F94DED] = { model = "cs_princessisabeau", hash = 0x89F94DED, outfits = 1 }, - [0x7E1809E8] = { model = "cs_professorbell", hash = 0x7E1809E8, outfits = 1 }, - [0x85FE1E48] = { model = "cs_rainsfall", hash = 0x85FE1E48, outfits = 5 }, - [0x7CF95C98] = { model = "cs_ramon_cortez", hash = 0x7CF95C98, outfits = 1 }, - [0x656E59CC] = { model = "cs_reverendfortheringham", hash = 0x656E59CC, outfits = 2 }, - [0x60713474] = { model = "cs_revswanson", hash = 0x60713474, outfits = 7 }, - [0xC7BB68D5] = { model = "cs_rhodeputy_01", hash = 0xC7BB68D5, outfits = 1 }, - [0x583389C7] = { model = "cs_rhodeputy_02", hash = 0x583389C7, outfits = 1 }, - [0x774AB298] = { model = "cs_rhodesassistant", hash = 0x774AB298, outfits = 1 }, - [0x0F23E138] = { model = "cs_rhodeskidnapvictim", hash = 0x0F23E138, outfits = 1 }, - [0x7FA4ED12] = { model = "cs_rhodessaloonbouncer", hash = 0x7FA4ED12, outfits = 1 }, - [0x772D9802] = { model = "cs_ringmaster", hash = 0x772D9802, outfits = 1 }, - [0xF79A7EC2] = { model = "cs_rockyseven_widow", hash = 0xF79A7EC2, outfits = 5 }, - [0xF0297311] = { model = "cs_samaritan", hash = 0xF0297311, outfits = 1 }, - [0xCF75E336] = { model = "cs_scottgray", hash = 0xCF75E336, outfits = 1 }, - [0xCF12BFF0] = { model = "cs_sddoctor_01", hash = 0xCF12BFF0, outfits = 1 }, - [0xE4E66C41] = { model = "cs_sdpriest", hash = 0xE4E66C41, outfits = 1 }, - [0x6DC2F2F2] = { model = "cs_sdsaloondrunk_01", hash = 0x6DC2F2F2, outfits = 1 }, - [0x0F274F72] = { model = "cs_sdstreetkidthief", hash = 0x0F274F72, outfits = 1 }, - [0xEEB2E5FD] = { model = "cs_sd_streetkid_01", hash = 0xEEB2E5FD, outfits = 1 }, - [0x678E7CA0] = { model = "cs_sd_streetkid_01a", hash = 0x678E7CA0, outfits = 1 }, - [0x32541234] = { model = "cs_sd_streetkid_01b", hash = 0x32541234, outfits = 1 }, - [0x6EF76684] = { model = "cs_sd_streetkid_02", hash = 0x6EF76684, outfits = 1 }, - [0xE0D7A2B2] = { model = "cs_sean", hash = 0xE0D7A2B2, outfits = 17 }, - [0xC192917D] = { model = "cs_sherifffreeman", hash = 0xC192917D, outfits = 2 }, - [0xCEE81C27] = { model = "cs_sheriffowens", hash = 0xCEE81C27, outfits = 2 }, - [0x839CCCAC] = { model = "cs_sistercalderon", hash = 0x839CCCAC, outfits = 1 }, - [0xE9B80099] = { model = "cs_slavecatcher", hash = 0xE9B80099, outfits = 1 }, - [0x51C80EFD] = { model = "cs_soothsayer", hash = 0x51C80EFD, outfits = 2 }, - [0x4B7EAC47] = { model = "cs_strawberryoutlaw_01", hash = 0x4B7EAC47, outfits = 1 }, - [0x99D4C8F2] = { model = "cs_strawberryoutlaw_02", hash = 0x99D4C8F2, outfits = 1 }, - [0xA792AF18] = { model = "cs_strdeputy_01", hash = 0xA792AF18, outfits = 1 }, - [0xDDD99BA5] = { model = "cs_strdeputy_02", hash = 0xDDD99BA5, outfits = 1 }, - [0x83E7B7BB] = { model = "cs_strsheriff_01", hash = 0x83E7B7BB, outfits = 1 }, - [0x196D5830] = { model = "cs_sunworshipper", hash = 0x196D5830, outfits = 1 }, - [0x6509A069] = { model = "cs_susangrimshaw", hash = 0x6509A069, outfits = 12 }, - [0xA9A328D5] = { model = "cs_swampfreak", hash = 0xA9A328D5, outfits = 1 }, - [0x87A4C0B9] = { model = "cs_swampweirdosonny", hash = 0x87A4C0B9, outfits = 3 }, - [0x9654DDCF] = { model = "cs_sworddancer", hash = 0x9654DDCF, outfits = 1 }, - [0x53E86B71] = { model = "cs_tavishgray", hash = 0x53E86B71, outfits = 1 }, - [0x21914E41] = { model = "cs_taxidermist", hash = 0x21914E41, outfits = 1 }, - [0x49644A6F] = { model = "cs_theodorelevin", hash = 0x49644A6F, outfits = 2 }, - [0x03DFFD04] = { model = "cs_thomasdown", hash = 0x03DFFD04, outfits = 2 }, - [0xD690782C] = { model = "cs_tigerhandler", hash = 0xD690782C, outfits = 1 }, - [0x3DE6A545] = { model = "cs_tilly", hash = 0x3DE6A545, outfits = 12 }, - [0x8868C876] = { model = "cs_timothydonahue", hash = 0x8868C876, outfits = 2 }, - [0x8853FF79] = { model = "cs_tinyhermit", hash = 0x8853FF79, outfits = 2 }, - [0xBABFD910] = { model = "cs_tomdickens", hash = 0xBABFD910, outfits = 3 }, - [0x13458A93] = { model = "cs_towncrier", hash = 0x13458A93, outfits = 2 }, - [0x3AF591E8] = { model = "cs_treasurehunter", hash = 0x3AF591E8, outfits = 1 }, - [0x361005DD] = { model = "cs_twinbrother_01", hash = 0x361005DD, outfits = 2 }, - [0xA49B62BA] = { model = "cs_twinbrother_02", hash = 0xA49B62BA, outfits = 2 }, - [0xFD3C2696] = { model = "cs_twingroupie_01", hash = 0xFD3C2696, outfits = 1 }, - [0xEB8B8335] = { model = "cs_twingroupie_02", hash = 0xEB8B8335, outfits = 1 }, - [0xC63726DF] = { model = "cs_uncle", hash = 0xC63726DF, outfits = 12 }, - [0x87EF0B8D] = { model = "cs_unidusterjail_01", hash = 0x87EF0B8D, outfits = 1 }, - [0x70BEBBCF] = { model = "cs_valauctionboss_01", hash = 0x70BEBBCF, outfits = 2 }, - [0x6C07EC33] = { model = "cs_valdeputy_01", hash = 0x6C07EC33, outfits = 1 }, - [0x4124A908] = { model = "cs_valprayingman", hash = 0x4124A908, outfits = 1 }, - [0x3A643444] = { model = "cs_valprostitute_01", hash = 0x3A643444, outfits = 1 }, - [0x2B769669] = { model = "cs_valprostitute_02", hash = 0x2B769669, outfits = 1 }, - [0x8FB23370] = { model = "cs_valsheriff", hash = 0x8FB23370, outfits = 2 }, - [0xD95BCB7D] = { model = "cs_vampire", hash = 0xD95BCB7D, outfits = 1 }, - [0x36781BAC] = { model = "cs_vht_bathgirl", hash = 0x36781BAC, outfits = 1 }, - [0xFB0A7382] = { model = "cs_wapitiboy", hash = 0xFB0A7382, outfits = 1 }, - [0x9C0C8EE9] = { model = "cs_warvet", hash = 0x9C0C8EE9, outfits = 3 }, - [0x69439F09] = { model = "cs_watson_01", hash = 0x69439F09, outfits = 1 }, - [0x8C16E4AF] = { model = "cs_watson_02", hash = 0x8C16E4AF, outfits = 1 }, - [0x44EFD66E] = { model = "cs_watson_03", hash = 0x44EFD66E, outfits = 1 }, - [0x02E86DB1] = { model = "cs_welshfighter", hash = 0x02E86DB1, outfits = 1 }, - [0x03387076] = { model = "cs_wintonholmes", hash = 0x03387076, outfits = 3 }, - [0xBE52968B] = { model = "cs_wrobel", hash = 0xBE52968B, outfits = 1 }, - [0x0D7B4617] = { model = "female_skeleton", hash = 0x0D7B4617, outfits = 7 }, - [0x86B3E995] = { model = "gc_lemoynecaptive_males_01", hash = 0x86B3E995, outfits = 1 }, - [0x8C1DC732] = { model = "gc_skinnertorture_males_01", hash = 0x8C1DC732, outfits = 2 }, - [0x70E42FE7] = { model = "ge_delloboparty_females_01", hash = 0x70E42FE7, outfits = 2 }, - [0x335F7F4B] = { model = "g_f_m_uniduster_01", hash = 0x335F7F4B, outfits = 3 }, - [0x1973FE45] = { model = "g_m_m_bountyhunters_01", hash = 0x1973FE45, outfits = 65 }, - [0xBB343A2C] = { model = "g_m_m_uniafricanamericangang_01", hash = 0xBB343A2C, outfits = 42 }, - [0x19486791] = { model = "g_m_m_unibanditos_01", hash = 0x19486791, outfits = 167 }, - [0x2B92A067] = { model = "g_m_m_unibraithwaites_01", hash = 0x2B92A067, outfits = 50 }, - [0x58277E70] = { model = "g_m_m_unibrontegoons_01", hash = 0x58277E70, outfits = 83 }, - [0x93A369F1] = { model = "g_m_m_unicornwallgoons_01", hash = 0x93A369F1, outfits = 86 }, - [0x3F094007] = { model = "g_m_m_unicriminals_01", hash = 0x3F094007, outfits = 150 }, - [0x8954549C] = { model = "g_m_m_unicriminals_02", hash = 0x8954549C, outfits = 60 }, - [0x14B7F44D] = { model = "g_m_m_uniduster_01", hash = 0x14B7F44D, outfits = 184 }, - [0x030250E2] = { model = "g_m_m_uniduster_02", hash = 0x030250E2, outfits = 56 }, - [0xB4163307] = { model = "g_m_m_uniduster_03", hash = 0xB4163307, outfits = 37 }, - [0xD2846FE3] = { model = "g_m_m_uniduster_04", hash = 0xD2846FE3, outfits = 9 }, - [0x4FAEEA3A] = { model = "g_m_m_uniduster_05", hash = 0x4FAEEA3A, outfits = 26 }, - [0x15EB41F6] = { model = "g_m_m_unigrays_01", hash = 0x15EB41F6, outfits = 51 }, - [0x07A1A563] = { model = "g_m_m_unigrays_02", hash = 0x07A1A563, outfits = 30 }, - [0x15AF635E] = { model = "g_m_m_uniinbred_01", hash = 0x15AF635E, outfits = 131 }, - [0x5B44EF58] = { model = "g_m_m_unilangstonboys_01", hash = 0x5B44EF58, outfits = 35 }, - [0x0FD91413] = { model = "g_m_m_unimicahgoons_01", hash = 0x0FD91413, outfits = 31 }, - [0xAB3EBD92] = { model = "g_m_m_unimountainmen_01", hash = 0xAB3EBD92, outfits = 129 }, - [0xBF03A565] = { model = "g_m_m_uniranchers_01", hash = 0xBF03A565, outfits = 87 }, - [0xE0165EA0] = { model = "g_m_m_uniswamp_01", hash = 0xE0165EA0, outfits = 43 }, - [0xEAD13D7C] = { model = "g_m_o_uniexconfeds_01", hash = 0xEAD13D7C, outfits = 93 }, - [0xDA82E29B] = { model = "g_m_y_uniexconfeds_01", hash = 0xDA82E29B, outfits = 124 }, - [0xC631B9F9] = { model = "g_m_y_uniexconfeds_02", hash = 0xC631B9F9, outfits = 33 }, - [0xA9567850] = { model = "loansharking_asbminer_males_01", hash = 0xA9567850, outfits = 1 }, - [0x9DD82D05] = { model = "loansharking_horsechase1_males_01", hash = 0x9DD82D05, outfits = 2 }, - [0x4E711917] = { model = "loansharking_undertaker_females_01", hash = 0x4E711917, outfits = 4 }, - [0x67C00DFB] = { model = "loansharking_undertaker_males_01", hash = 0x67C00DFB, outfits = 3 }, - [0xDFEF070E] = { model = "male_skeleton", hash = 0xDFEF070E, outfits = 4 }, - [0xC4C0600A] = { model = "mbh_rhodesrancher_females_01", hash = 0xC4C0600A, outfits = 1 }, - [0x5F0A1475] = { model = "mbh_rhodesrancher_teens_01", hash = 0x5F0A1475, outfits = 1 }, - [0xDF4A4EAC] = { model = "mbh_skinnersearch_males_01", hash = 0xDF4A4EAC, outfits = 2 }, - [0x741E7444] = { model = "mes_abigail2_males_01", hash = 0x741E7444, outfits = 4 }, - [0xB7E1A569] = { model = "mes_finale2_females_01", hash = 0xB7E1A569, outfits = 1 }, - [0x28618747] = { model = "mes_finale2_males_01", hash = 0x28618747, outfits = 4 }, - [0x389A64ED] = { model = "mes_finale3_males_01", hash = 0x389A64ED, outfits = 3 }, - [0x45402C7A] = { model = "mes_marston1_males_01", hash = 0x45402C7A, outfits = 2 }, - [0x991856F4] = { model = "mes_marston2_males_01", hash = 0x991856F4, outfits = 4 }, - [0x3E837D5B] = { model = "mes_marston5_2_males_01", hash = 0x3E837D5B, outfits = 1 }, - [0x01C0B992] = { model = "mes_marston6_females_01", hash = 0x01C0B992, outfits = 1 }, - [0x7BE6B9E8] = { model = "mes_marston6_males_01", hash = 0x7BE6B9E8, outfits = 29 }, - [0x1DE80335] = { model = "mes_marston6_teens_01", hash = 0x1DE80335, outfits = 1 }, - [0x74B85769] = { model = "mes_sadie4_males_01", hash = 0x74B85769, outfits = 1 }, - [0x09FBB7EC] = { model = "mes_sadie5_males_01", hash = 0x09FBB7EC, outfits = 7 }, - [0x9775AA11] = { model = "mp_asntrk_elysianpool_males_01", hash = 0x9775AA11, outfits = 6 }, - [0xA8D76FEE] = { model = "mp_asntrk_grizzlieswest_males_01", hash = 0xA8D76FEE, outfits = 6 }, - [0x6F3BC4E1] = { model = "mp_asntrk_hagenorchard_males_01", hash = 0x6F3BC4E1, outfits = 6 }, - [0xE9C4EF73] = { model = "mp_asntrk_isabella_males_01", hash = 0xE9C4EF73, outfits = 6 }, - [0x61227303] = { model = "mp_asntrk_talltrees_males_01", hash = 0x61227303, outfits = 6 }, - [0xE30D07F8] = { model = "mp_asn_benedictpoint_females_01", hash = 0xE30D07F8, outfits = 1 }, - [0x8F4385F4] = { model = "mp_asn_benedictpoint_males_01", hash = 0x8F4385F4, outfits = 6 }, - [0x9A33030D] = { model = "mp_asn_blackwater_males_01", hash = 0x9A33030D, outfits = 6 }, - [0xFF2ED4F7] = { model = "mp_asn_braithwaitemanor_males_01", hash = 0xFF2ED4F7, outfits = 2 }, - [0xA6EFA47E] = { model = "mp_asn_braithwaitemanor_males_02", hash = 0xA6EFA47E, outfits = 4 }, - [0xA1A899F0] = { model = "mp_asn_braithwaitemanor_males_03", hash = 0xA1A899F0, outfits = 5 }, - [0x157604BC] = { model = "mp_asn_civilwarfort_males_01", hash = 0x157604BC, outfits = 6 }, - [0x3A31D8F5] = { model = "mp_asn_gaptoothbreach_males_01", hash = 0x3A31D8F5, outfits = 6 }, - [0x83DD3196] = { model = "mp_asn_pikesbasin_males_01", hash = 0x83DD3196, outfits = 5 }, - [0x75D3315F] = { model = "mp_asn_sdpolicestation_males_01", hash = 0x75D3315F, outfits = 6 }, - [0xA04152A6] = { model = "mp_asn_sdwedding_females_01", hash = 0xA04152A6, outfits = 3 }, - [0xEB1EA62E] = { model = "mp_asn_sdwedding_males_01", hash = 0xEB1EA62E, outfits = 5 }, - [0x4B40DFF1] = { model = "mp_asn_shadybelle_females_01", hash = 0x4B40DFF1, outfits = 1 }, - [0xBAD040F0] = { model = "mp_asn_stillwater_males_01", hash = 0xBAD040F0, outfits = 6 }, - [0x586000CF] = { model = "MP_A_C_HORSECORPSE_01", hash = 0x586000CF, outfits = 16 }, - [0xEE6C00F6] = { model = "mp_a_f_m_cardgameplayers_01", hash = 0xEE6C00F6, outfits = 40 }, - [0x37DF19AF] = { model = "MP_A_F_M_UniCorpse_01", hash = 0x37DF19AF, outfits = 44 }, - [0xC7FDE9D0] = { model = "mp_a_m_m_laboruprisers_01", hash = 0xC7FDE9D0, outfits = 53 }, - [0x82868F58] = { model = "MP_A_M_M_UniCorpse_01", hash = 0x82868F58, outfits = 142 }, - [0x79E64F11] = { model = "mp_campdef_bluewater_females_01", hash = 0x79E64F11, outfits = 1 }, - [0xD26B0098] = { model = "mp_campdef_bluewater_males_01", hash = 0xD26B0098, outfits = 1 }, - [0x82228527] = { model = "mp_campdef_chollasprings_females_01", hash = 0x82228527, outfits = 1 }, - [0xB128F981] = { model = "mp_campdef_chollasprings_males_01", hash = 0xB128F981, outfits = 2 }, - [0x91ACA5B0] = { model = "mp_campdef_eastnewhanover_females_01", hash = 0x91ACA5B0, outfits = 1 }, - [0x4F356F45] = { model = "mp_campdef_eastnewhanover_males_01", hash = 0x4F356F45, outfits = 1 }, - [0xF1C2D3BB] = { model = "mp_campdef_gaptoothbreach_females_01", hash = 0xF1C2D3BB, outfits = 1 }, - [0xAAD4292A] = { model = "mp_campdef_gaptoothbreach_males_01", hash = 0xAAD4292A, outfits = 3 }, - [0x219743D5] = { model = "mp_campdef_gaptoothridge_females_01", hash = 0x219743D5, outfits = 1 }, - [0xB5FEE612] = { model = "mp_campdef_gaptoothridge_males_01", hash = 0xB5FEE612, outfits = 1 }, - [0xC1B6341E] = { model = "mp_campdef_greatplains_males_01", hash = 0xC1B6341E, outfits = 2 }, - [0x543F0860] = { model = "mp_campdef_grizzlies_males_01", hash = 0x543F0860, outfits = 2 }, - [0x476306CA] = { model = "mp_campdef_heartlands1_males_01", hash = 0x476306CA, outfits = 2 }, - [0xCF202B72] = { model = "mp_campdef_heartlands2_females_01", hash = 0xCF202B72, outfits = 1 }, - [0x3B46C480] = { model = "mp_campdef_heartlands2_males_01", hash = 0x3B46C480, outfits = 2 }, - [0x4166D3EF] = { model = "mp_campdef_hennigans_females_01", hash = 0x4166D3EF, outfits = 1 }, - [0x62593BC8] = { model = "mp_campdef_hennigans_males_01", hash = 0x62593BC8, outfits = 1 }, - [0xF5A25A7E] = { model = "mp_campdef_littlecreek_females_01", hash = 0xF5A25A7E, outfits = 1 }, - [0xF4CAA01F] = { model = "mp_campdef_littlecreek_males_01", hash = 0xF4CAA01F, outfits = 1 }, - [0xE572A054] = { model = "mp_campdef_radleyspasture_females_01", hash = 0xE572A054, outfits = 1 }, - [0x4A465245] = { model = "mp_campdef_radleyspasture_males_01", hash = 0x4A465245, outfits = 1 }, - [0xC4DB3101] = { model = "mp_campdef_riobravo_females_01", hash = 0xC4DB3101, outfits = 1 }, - [0x5CE15A39] = { model = "mp_campdef_riobravo_males_01", hash = 0x5CE15A39, outfits = 1 }, - [0xEA68B402] = { model = "mp_campdef_roanoke_females_01", hash = 0xEA68B402, outfits = 1 }, - [0x24673B50] = { model = "mp_campdef_roanoke_males_01", hash = 0x24673B50, outfits = 1 }, - [0x5608A222] = { model = "mp_campdef_talltrees_females_01", hash = 0x5608A222, outfits = 1 }, - [0xD429EEF9] = { model = "mp_campdef_talltrees_males_01", hash = 0xD429EEF9, outfits = 1 }, - [0xB05F95C2] = { model = "mp_campdef_tworocks_females_01", hash = 0xB05F95C2, outfits = 2 }, - [0x20D9D1FF] = { model = "mp_chu_kid_armadillo_males_01", hash = 0x20D9D1FF, outfits = 4 }, - [0xD081C01E] = { model = "mp_chu_kid_diabloridge_males_01", hash = 0xD081C01E, outfits = 4 }, - [0xC45D87AE] = { model = "mp_chu_kid_emrstation_males_01", hash = 0xC45D87AE, outfits = 4 }, - [0xD5B76DF0] = { model = "mp_chu_kid_greatplains2_males_01", hash = 0xD5B76DF0, outfits = 4 }, - [0xDBB0CB10] = { model = "mp_chu_kid_greatplains_males_01", hash = 0xDBB0CB10, outfits = 4 }, - [0x4E7A9BCF] = { model = "mp_chu_kid_heartlands_males_01", hash = 0x4E7A9BCF, outfits = 4 }, - [0xBF8EE294] = { model = "mp_chu_kid_lagras_males_01", hash = 0xBF8EE294, outfits = 4 }, - [0x26D5E34F] = { model = "mp_chu_kid_lemoyne_females_01", hash = 0x26D5E34F, outfits = 2 }, - [0x24E340FC] = { model = "mp_chu_kid_lemoyne_males_01", hash = 0x24E340FC, outfits = 2 }, - [0xCE06BE54] = { model = "mp_chu_kid_recipient_males_01", hash = 0xCE06BE54, outfits = 22 }, - [0x562372BD] = { model = "mp_chu_kid_rhodes_males_01", hash = 0x562372BD, outfits = 4 }, - [0xF7B029BE] = { model = "mp_chu_kid_saintdenis_females_01", hash = 0xF7B029BE, outfits = 1 }, - [0xF21F12DE] = { model = "mp_chu_kid_saintdenis_males_01", hash = 0xF21F12DE, outfits = 3 }, - [0xBB574D98] = { model = "mp_chu_kid_scarlettmeadows_males_01", hash = 0xBB574D98, outfits = 4 }, - [0x199209F3] = { model = "mp_chu_kid_tumbleweed_males_01", hash = 0x199209F3, outfits = 4 }, - [0xB59A184C] = { model = "mp_chu_kid_valentine_males_01", hash = 0xB59A184C, outfits = 4 }, - [0x91359C49] = { model = "mp_chu_rob_ambarino_males_01", hash = 0x91359C49, outfits = 3 }, - [0xE8B7EB0E] = { model = "mp_chu_rob_annesburg_males_01", hash = 0xE8B7EB0E, outfits = 4 }, - [0xED566DA8] = { model = "mp_chu_rob_benedictpoint_females_01", hash = 0xED566DA8, outfits = 2 }, - [0x2361B4FF] = { model = "mp_chu_rob_benedictpoint_males_01", hash = 0x2361B4FF, outfits = 2 }, - [0x4DF62143] = { model = "mp_chu_rob_blackwater_males_01", hash = 0x4DF62143, outfits = 4 }, - [0xD1DD5373] = { model = "mp_chu_rob_caligahall_males_01", hash = 0xD1DD5373, outfits = 4 }, - [0xE910B9B1] = { model = "mp_chu_rob_coronado_males_01", hash = 0xE910B9B1, outfits = 4 }, - [0xEEB13746] = { model = "mp_chu_rob_cumberland_males_01", hash = 0xEEB13746, outfits = 4 }, - [0x3D8A8881] = { model = "mp_chu_rob_fortmercer_females_01", hash = 0x3D8A8881, outfits = 2 }, - [0xA3C40220] = { model = "mp_chu_rob_fortmercer_males_01", hash = 0xA3C40220, outfits = 2 }, - [0x2B7FB829] = { model = "mp_chu_rob_greenhollow_males_01", hash = 0x2B7FB829, outfits = 4 }, - [0x900768E4] = { model = "mp_chu_rob_macfarlanes_females_01", hash = 0x900768E4, outfits = 2 }, - [0x0C11A638] = { model = "mp_chu_rob_macfarlanes_males_01", hash = 0x0C11A638, outfits = 2 }, - [0xA23C0877] = { model = "mp_chu_rob_macleans_males_01", hash = 0xA23C0877, outfits = 4 }, - [0x71F63119] = { model = "mp_chu_rob_millesani_males_01", hash = 0x71F63119, outfits = 4 }, - [0xA33F8565] = { model = "mp_chu_rob_montanariver_males_01", hash = 0xA33F8565, outfits = 4 }, - [0xAE81DF28] = { model = "mp_chu_rob_paintedsky_males_01", hash = 0xAE81DF28, outfits = 4 }, - [0x26141D84] = { model = "mp_chu_rob_rathskeller_males_01", hash = 0x26141D84, outfits = 4 }, - [0xB5796996] = { model = "mp_chu_rob_recipient_males_01", hash = 0xB5796996, outfits = 33 }, - [0x67C9491C] = { model = "mp_chu_rob_rhodes_males_01", hash = 0x67C9491C, outfits = 4 }, - [0x37AA104A] = { model = "mp_chu_rob_strawberry_males_01", hash = 0x37AA104A, outfits = 4 }, - [0xDEC0EF74] = { model = "mp_clay", hash = 0xDEC0EF74, outfits = 1 }, - [0x36C085D8] = { model = "mp_convoy_recipient_females_01", hash = 0x36C085D8, outfits = 2 }, - [0xE5ED64CE] = { model = "mp_convoy_recipient_males_01", hash = 0xE5ED64CE, outfits = 19 }, - [0xD2AFC802] = { model = "mp_de_u_f_m_bigvalley_01", hash = 0xD2AFC802, outfits = 1 }, - [0xEB7C292D] = { model = "mp_de_u_f_m_bluewatermarsh_01", hash = 0xEB7C292D, outfits = 1 }, - [0xC615E4DE] = { model = "mp_de_u_f_m_braithwaite_01", hash = 0xC615E4DE, outfits = 2 }, - [0xFF7134DC] = { model = "mp_de_u_f_m_doverhill_01", hash = 0xFF7134DC, outfits = 1 }, - [0xDD895162] = { model = "mp_de_u_f_m_greatplains_01", hash = 0xDD895162, outfits = 1 }, - [0xCB42A78F] = { model = "mp_de_u_f_m_hangingrock_01", hash = 0xCB42A78F, outfits = 1 }, - [0x410D82BF] = { model = "mp_de_u_f_m_heartlands_01", hash = 0x410D82BF, outfits = 1 }, - [0x8841B9D2] = { model = "mp_de_u_f_m_hennigansstead_01", hash = 0x8841B9D2, outfits = 2 }, - [0xC50A2A9C] = { model = "mp_de_u_f_m_silentstead_01", hash = 0xC50A2A9C, outfits = 1 }, - [0xE079768D] = { model = "mp_de_u_m_m_aurorabasin_01", hash = 0xE079768D, outfits = 1 }, - [0x1A06F260] = { model = "mp_de_u_m_m_barrowlagoon_01", hash = 0x1A06F260, outfits = 1 }, - [0x30F2FBC2] = { model = "mp_de_u_m_m_bigvalleygraves_01", hash = 0x30F2FBC2, outfits = 1 }, - [0x54666FF4] = { model = "mp_de_u_m_m_centralunionrr_01", hash = 0x54666FF4, outfits = 1 }, - [0x6965178B] = { model = "mp_de_u_m_m_pleasance_01", hash = 0x6965178B, outfits = 1 }, - [0x7C77D19F] = { model = "mp_de_u_m_m_rileyscharge_01", hash = 0x7C77D19F, outfits = 1 }, - [0x7AA6CC47] = { model = "mp_de_u_m_m_vanhorn_01", hash = 0x7AA6CC47, outfits = 1 }, - [0x196B59E0] = { model = "mp_de_u_m_m_westernhomestead_01", hash = 0x196B59E0, outfits = 1 }, - [0x1029BAEF] = { model = "mp_dr_u_f_m_bayougatorfood_01", hash = 0x1029BAEF, outfits = 1 }, - [0x803C4357] = { model = "mp_dr_u_f_m_bigvalleycave_01", hash = 0x803C4357, outfits = 1 }, - [0xE782AB5E] = { model = "mp_dr_u_f_m_bigvalleycliff_01", hash = 0xE782AB5E, outfits = 1 }, - [0x5A8DED76] = { model = "mp_dr_u_f_m_bluewaterkidnap_01", hash = 0x5A8DED76, outfits = 1 }, - [0xA3696C2E] = { model = "mp_dr_u_f_m_colterbandits_01", hash = 0xA3696C2E, outfits = 1 }, - [0x911B4792] = { model = "mp_dr_u_f_m_colterbandits_02", hash = 0x911B4792, outfits = 1 }, - [0xB9E9E8B1] = { model = "mp_dr_u_f_m_missingfisherman_01", hash = 0xB9E9E8B1, outfits = 1 }, - [0x87AB8435] = { model = "mp_dr_u_f_m_missingfisherman_02", hash = 0x87AB8435, outfits = 1 }, - [0xA4C6684C] = { model = "mp_dr_u_f_m_mistakenbounties_01", hash = 0xA4C6684C, outfits = 1 }, - [0x8C3740DD] = { model = "mp_dr_u_f_m_plaguetown_01", hash = 0x8C3740DD, outfits = 1 }, - [0xEF81CFCA] = { model = "mp_dr_u_f_m_quakerscove_01", hash = 0xEF81CFCA, outfits = 1 }, - [0xFD486B57] = { model = "mp_dr_u_f_m_quakerscove_02", hash = 0xFD486B57, outfits = 1 }, - [0x20A8A154] = { model = "mp_dr_u_f_m_sdgraveyard_01", hash = 0x20A8A154, outfits = 1 }, - [0xC7DE347E] = { model = "mp_dr_u_m_m_bigvalleycave_01", hash = 0xC7DE347E, outfits = 1 }, - [0xD9E86551] = { model = "mp_dr_u_m_m_bigvalleycliff_01", hash = 0xD9E86551, outfits = 1 }, - [0xA445B5D7] = { model = "mp_dr_u_m_m_bluewaterkidnap_01", hash = 0xA445B5D7, outfits = 1 }, - [0x23135A75] = { model = "mp_dr_u_m_m_canoeescape_01", hash = 0x23135A75, outfits = 1 }, - [0x322BCA91] = { model = "mp_dr_u_m_m_hwyrobbery_01", hash = 0x322BCA91, outfits = 1 }, - [0x103F4CF2] = { model = "mp_dr_u_m_m_mistakenbounties_01", hash = 0x103F4CF2, outfits = 1 }, - [0xD63E91BF] = { model = "mp_dr_u_m_m_pikesbasin_01", hash = 0xD63E91BF, outfits = 1 }, - [0xF2CDCADD] = { model = "mp_dr_u_m_m_pikesbasin_02", hash = 0xF2CDCADD, outfits = 1 }, - [0x59D8AB63] = { model = "mp_dr_u_m_m_plaguetown_01", hash = 0x59D8AB63, outfits = 1 }, - [0x9A8AF99B] = { model = "mp_dr_u_m_m_roanokestandoff_01", hash = 0x9A8AF99B, outfits = 1 }, - [0xE80A6258] = { model = "mp_dr_u_m_m_sdgraveyard_01", hash = 0xE80A6258, outfits = 1 }, - [0xC33224A7] = { model = "mp_dr_u_m_m_sdmugging_01", hash = 0xC33224A7, outfits = 1 }, - [0x957FC943] = { model = "mp_dr_u_m_m_sdmugging_02", hash = 0x957FC943, outfits = 1 }, - [0xAA266E1C] = { model = "mp_freeroam_tut_females_01", hash = 0xAA266E1C, outfits = 5 }, - [0x217A0594] = { model = "mp_freeroam_tut_males_01", hash = 0x217A0594, outfits = 8 }, - [0xC36F9B8C] = { model = "mp_gunvoutd2_males_01", hash = 0xC36F9B8C, outfits = 11 }, - [0x3D6054E3] = { model = "mp_gunvoutd3_bht_01", hash = 0x3D6054E3, outfits = 2 }, - [0xAD674654] = { model = "mp_gunvoutd3_males_01", hash = 0xAD674654, outfits = 3 }, - [0x556ADA44] = { model = "mp_g_f_m_laperlegang_01", hash = 0x556ADA44, outfits = 26 }, - [0x64F76F7E] = { model = "mp_g_f_m_laperlevips_01", hash = 0x64F76F7E, outfits = 13 }, - [0xF7A82771] = { model = "mp_g_f_m_owlhootfamily_01", hash = 0xF7A82771, outfits = 17 }, - [0x9E00472E] = { model = "mp_g_m_m_armoredjuggernauts_01", hash = 0x9E00472E, outfits = 12 }, - [0xC6BEFCC7] = { model = "mp_g_m_m_bountyhunters_01", hash = 0xC6BEFCC7, outfits = 50 }, - [0x8496557A] = { model = "mp_g_m_m_owlhootfamily_01", hash = 0x8496557A, outfits = 25 }, - [0xC848BCB9] = { model = "mp_g_m_m_redbengang_01", hash = 0xC848BCB9, outfits = 38 }, - [0xBC696111] = { model = "mp_g_m_m_uniafricanamericangang_01", hash = 0xBC696111, outfits = 42 }, - [0xD9D85AA4] = { model = "mp_g_m_m_unibanditos_01", hash = 0xD9D85AA4, outfits = 141 }, - [0xC0A5F6FB] = { model = "mp_g_m_m_unibraithwaites_01", hash = 0xC0A5F6FB, outfits = 40 }, - [0x079D07F0] = { model = "mp_g_m_m_unibrontegoons_01", hash = 0x079D07F0, outfits = 55 }, - [0xB6A13AB3] = { model = "mp_g_m_m_unicornwallgoons_01", hash = 0xB6A13AB3, outfits = 60 }, - [0xACB79D83] = { model = "mp_g_m_m_unicriminals_01", hash = 0xACB79D83, outfits = 88 }, - [0xFE0F4031] = { model = "mp_g_m_m_unicriminals_02", hash = 0xFE0F4031, outfits = 67 }, - [0x6B5CA98B] = { model = "mp_g_m_m_uniduster_01", hash = 0x6B5CA98B, outfits = 111 }, - [0x59528577] = { model = "mp_g_m_m_uniduster_02", hash = 0x59528577, outfits = 53 }, - [0x871160F4] = { model = "mp_g_m_m_uniduster_03", hash = 0x871160F4, outfits = 30 }, - [0x711F7A23] = { model = "mp_g_m_m_unigrays_01", hash = 0x711F7A23, outfits = 45 }, - [0x013268A4] = { model = "mp_g_m_m_uniinbred_01", hash = 0x013268A4, outfits = 67 }, - [0xD42E4CA3] = { model = "mp_g_m_m_unilangstonboys_01", hash = 0xD42E4CA3, outfits = 35 }, - [0xAEB6BF6F] = { model = "mp_g_m_m_unimountainmen_01", hash = 0xAEB6BF6F, outfits = 80 }, - [0x90E48CB5] = { model = "mp_g_m_m_uniranchers_01", hash = 0x90E48CB5, outfits = 61 }, - [0xA45E623D] = { model = "mp_g_m_m_uniswamp_01", hash = 0xA45E623D, outfits = 30 }, - [0x17F4271B] = { model = "mp_g_m_o_uniexconfeds_01", hash = 0x17F4271B, outfits = 64 }, - [0x66AB70C0] = { model = "mp_g_m_y_uniexconfeds_01", hash = 0x66AB70C0, outfits = 63 }, - [0x74A42620] = { model = "mp_horse_owlhootvictim_01", hash = 0x74A42620, outfits = 2 }, - [0xA4805CEF] = { model = "mp_intercept_recipient_females_01", hash = 0xA4805CEF, outfits = 8 }, - [0x4FFF04AC] = { model = "mp_intercept_recipient_males_01", hash = 0x4FFF04AC, outfits = 29 }, - [0xC7897D53] = { model = "mp_intro_females_01", hash = 0xC7897D53, outfits = 7 }, - [0x1AC64C7E] = { model = "mp_intro_males_01", hash = 0x1AC64C7E, outfits = 15 }, - [0x9CF21703] = { model = "mp_jailbreak_males_01", hash = 0x9CF21703, outfits = 4 }, - [0xD5A51ED9] = { model = "mp_jailbreak_recipient_males_01", hash = 0xD5A51ED9, outfits = 6 }, - [0x1A94D3F2] = { model = "mp_lbt_m3_males_01", hash = 0x1A94D3F2, outfits = 8 }, - [0xB2CBE1E8] = { model = "mp_lbt_m6_females_01", hash = 0xB2CBE1E8, outfits = 2 }, - [0xF08C75E6] = { model = "mp_lbt_m6_males_01", hash = 0xF08C75E6, outfits = 5 }, - [0xD304CBEC] = { model = "mp_lbt_m7_males_01", hash = 0xD304CBEC, outfits = 8 }, - [0x265C2EDE] = { model = "mp_oth_recipient_males_01", hash = 0x265C2EDE, outfits = 5 }, - [0xE1E49865] = { model = "mp_outlaw1_males_01", hash = 0xE1E49865, outfits = 6 }, - [0x2FDCB16A] = { model = "mp_outlaw2_males_01", hash = 0x2FDCB16A, outfits = 1 }, - [0x7CCE73C7] = { model = "mp_post_multipackage_females_01", hash = 0x7CCE73C7, outfits = 10 }, - [0x9BA2E621] = { model = "mp_post_multipackage_males_01", hash = 0x9BA2E621, outfits = 34 }, - [0xF6846F69] = { model = "mp_post_multirelay_females_01", hash = 0xF6846F69, outfits = 5 }, - [0x49302DBB] = { model = "mp_post_multirelay_males_01", hash = 0x49302DBB, outfits = 20 }, - [0xBAC09F5F] = { model = "mp_post_relay_females_01", hash = 0xBAC09F5F, outfits = 1 }, - [0x6D8D4CA6] = { model = "mp_post_relay_males_01", hash = 0x6D8D4CA6, outfits = 23 }, - [0x2C7D2748] = { model = "mp_predator", hash = 0x2C7D2748, outfits = 8 }, - [0x9BCC5B80] = { model = "mp_prsn_asn_males_01", hash = 0x9BCC5B80, outfits = 14 }, - [0xD050B3FD] = { model = "mp_recover_recipient_females_01", hash = 0xD050B3FD, outfits = 1 }, - [0xFEE21E87] = { model = "mp_recover_recipient_males_01", hash = 0xFEE21E87, outfits = 5 }, - [0x8A118776] = { model = "mp_repoboat_recipient_females_01", hash = 0x8A118776, outfits = 2 }, - [0x817E92C2] = { model = "mp_repoboat_recipient_males_01", hash = 0x817E92C2, outfits = 5 }, - [0x4852F2D1] = { model = "mp_repo_recipient_females_01", hash = 0x4852F2D1, outfits = 2 }, - [0x93A9A5FC] = { model = "mp_repo_recipient_males_01", hash = 0x93A9A5FC, outfits = 12 }, - [0xEED4DB96] = { model = "mp_rescue_bottletree_females_01", hash = 0xEED4DB96, outfits = 1 }, - [0x5530F95C] = { model = "mp_rescue_bottletree_males_01", hash = 0x5530F95C, outfits = 2 }, - [0x90008F71] = { model = "mp_rescue_colter_males_01", hash = 0x90008F71, outfits = 1 }, - [0x46FD1150] = { model = "mp_rescue_cratersacrifice_males_01", hash = 0x46FD1150, outfits = 2 }, - [0x2A503D51] = { model = "mp_rescue_heartlands_males_01", hash = 0x2A503D51, outfits = 1 }, - [0xBEA076E0] = { model = "mp_rescue_loftkidnap_males_01", hash = 0xBEA076E0, outfits = 1 }, - [0x8CAC82BE] = { model = "mp_rescue_lonniesshack_males_01", hash = 0x8CAC82BE, outfits = 3 }, - [0x36234B83] = { model = "mp_rescue_moonstone_males_01", hash = 0x36234B83, outfits = 1 }, - [0x74B18E0F] = { model = "mp_rescue_mtnmanshack_males_01", hash = 0x74B18E0F, outfits = 3 }, - [0xE63DF429] = { model = "mp_rescue_recipient_females_01", hash = 0xE63DF429, outfits = 1 }, - [0x1738A70F] = { model = "mp_rescue_recipient_males_01", hash = 0x1738A70F, outfits = 7 }, - [0xDA91092F] = { model = "mp_rescue_rivalshack_males_01", hash = 0xDA91092F, outfits = 2 }, - [0x10482CCC] = { model = "mp_rescue_scarlettmeadows_males_01", hash = 0x10482CCC, outfits = 1 }, - [0x01AC6CA3] = { model = "mp_rescue_sddogfight_females_01", hash = 0x01AC6CA3, outfits = 1 }, - [0x80AB3DA0] = { model = "mp_rescue_sddogfight_males_01", hash = 0x80AB3DA0, outfits = 1 }, - [0x89C49271] = { model = "mp_resupply_recipient_females_01", hash = 0x89C49271, outfits = 7 }, - [0x028C5916] = { model = "mp_resupply_recipient_males_01", hash = 0x028C5916, outfits = 11 }, - [0x340E6CFB] = { model = "mp_revenge1_males_01", hash = 0x340E6CFB, outfits = 3 }, - [0x89330281] = { model = "mp_re_animalattack_females_01", hash = 0x89330281, outfits = 4 }, - [0x2C1694A4] = { model = "mp_re_animalattack_males_01", hash = 0x2C1694A4, outfits = 4 }, - [0x9D90BC3C] = { model = "mp_re_duel_females_01", hash = 0x9D90BC3C, outfits = 4 }, - [0x34F02197] = { model = "mp_re_duel_males_01", hash = 0x34F02197, outfits = 4 }, - [0x7C6C7C1D] = { model = "mp_re_graverobber_females_01", hash = 0x7C6C7C1D, outfits = 1 }, - [0x55B73907] = { model = "mp_re_graverobber_males_01", hash = 0x55B73907, outfits = 1 }, - [0x263B0853] = { model = "mp_re_hobodog_females_01", hash = 0x263B0853, outfits = 2 }, - [0x401C6EC1] = { model = "mp_re_hobodog_males_01", hash = 0x401C6EC1, outfits = 4 }, - [0x45178DBF] = { model = "mp_re_kidnapped_females_01", hash = 0x45178DBF, outfits = 6 }, - [0x5E5607C3] = { model = "mp_re_kidnapped_males_01", hash = 0x5E5607C3, outfits = 6 }, - [0x5730F05E] = { model = "mp_re_photography_females_01", hash = 0x5730F05E, outfits = 2 }, - [0x65D60DA8] = { model = "mp_re_photography_females_02", hash = 0x65D60DA8, outfits = 2 }, - [0x8AE666DA] = { model = "mp_re_photography_males_01", hash = 0x8AE666DA, outfits = 2 }, - [0x98D1F6B3] = { model = "mp_re_rivalcollector_males_01", hash = 0x98D1F6B3, outfits = 20 }, - [0xFA0BF8E9] = { model = "mp_re_runawaywagon_females_01", hash = 0xFA0BF8E9, outfits = 3 }, - [0xD99C62B9] = { model = "mp_re_runawaywagon_males_01", hash = 0xD99C62B9, outfits = 3 }, - [0x3EB8315D] = { model = "mp_re_treasurehunter_females_01", hash = 0x3EB8315D, outfits = 2 }, - [0x36754ABE] = { model = "mp_re_treasurehunter_males_01", hash = 0x36754ABE, outfits = 2 }, - [0x40C07582] = { model = "mp_re_wildman_males_01", hash = 0x40C07582, outfits = 1 }, - [0x6D8072BA] = { model = "mp_stealboat_recipient_males_01", hash = 0x6D8072BA, outfits = 10 }, - [0x6BF26D7E] = { model = "mp_stealhorse_recipient_males_01", hash = 0x6BF26D7E, outfits = 29 }, - [0x05BC439E] = { model = "mp_stealwagon_recipient_males_01", hash = 0x05BC439E, outfits = 22 }, - [0x0C890518] = { model = "mp_s_m_m_cornwallguard_01", hash = 0x0C890518, outfits = 32 }, - [0xAD87E95D] = { model = "mp_s_m_m_pinlaw_01", hash = 0xAD87E95D, outfits = 40 }, - [0xE82A9EF5] = { model = "mp_tattoo_female", hash = 0xE82A9EF5, outfits = 1 }, - [0x02EC2BF7] = { model = "mp_tattoo_male", hash = 0x02EC2BF7, outfits = 1 }, - [0x30B5B617] = { model = "mp_u_f_m_bountytarget_001", hash = 0x30B5B617, outfits = 2 }, - [0x8AE66A77] = { model = "mp_u_f_m_bountytarget_002", hash = 0x8AE66A77, outfits = 2 }, - [0x53507B4C] = { model = "mp_u_f_m_bountytarget_003", hash = 0x53507B4C, outfits = 2 }, - [0x241D9CE7] = { model = "mp_u_f_m_bountytarget_004", hash = 0x241D9CE7, outfits = 2 }, - [0xE5D02049] = { model = "mp_u_f_m_bountytarget_005", hash = 0xE5D02049, outfits = 2 }, - [0x389945DE] = { model = "mp_u_f_m_bountytarget_006", hash = 0x389945DE, outfits = 2 }, - [0x06F56293] = { model = "mp_u_f_m_bountytarget_007", hash = 0x06F56293, outfits = 2 }, - [0xD8E38670] = { model = "mp_u_f_m_bountytarget_008", hash = 0xD8E38670, outfits = 2 }, - [0xABA92BFC] = { model = "mp_u_f_m_bountytarget_009", hash = 0xABA92BFC, outfits = 2 }, - [0x1C1C1174] = { model = "mp_u_f_m_bountytarget_010", hash = 0x1C1C1174, outfits = 2 }, - [0x2DE1B4FF] = { model = "mp_u_f_m_bountytarget_011", hash = 0x2DE1B4FF, outfits = 2 }, - [0x3F97D86B] = { model = "MP_U_F_M_BOUNTYTARGET_012", hash = 0x3F97D86B, outfits = 1 }, - [0x4F947864] = { model = "mp_u_f_m_bountytarget_013", hash = 0x4F947864, outfits = 2 }, - [0xD56E8422] = { model = "mp_u_f_m_bountytarget_014", hash = 0xD56E8422, outfits = 2 }, - [0x0EF547D0] = { model = "mp_u_f_m_gunslinger3_rifleman_02", hash = 0x0EF547D0, outfits = 1 }, - [0xC9E8C3C3] = { model = "mp_u_f_m_gunslinger3_sharpshooter_01", hash = 0xC9E8C3C3, outfits = 1 }, - [0x96A8968C] = { model = "mp_u_f_m_laperlevipmasked_01", hash = 0x96A8968C, outfits = 1 }, - [0xCE6085F7] = { model = "mp_u_f_m_laperlevipmasked_02", hash = 0xCE6085F7, outfits = 1 }, - [0xDFA9A889] = { model = "mp_u_f_m_laperlevipmasked_03", hash = 0xDFA9A889, outfits = 1 }, - [0xA3F030F3] = { model = "mp_u_f_m_laperlevipmasked_04", hash = 0xA3F030F3, outfits = 1 }, - [0x28F501C1] = { model = "mp_u_f_m_laperlevipunmasked_01", hash = 0x28F501C1, outfits = 1 }, - [0x3A3AA44C] = { model = "mp_u_f_m_laperlevipunmasked_02", hash = 0x3A3AA44C, outfits = 1 }, - [0x4CB3C93E] = { model = "mp_u_f_m_laperlevipunmasked_03", hash = 0x4CB3C93E, outfits = 1 }, - [0x5EEE6DB3] = { model = "mp_u_f_m_laperlevipunmasked_04", hash = 0x5EEE6DB3, outfits = 1 }, - [0x2CE57EFF] = { model = "mp_u_f_m_lbt_owlhootvictim_01", hash = 0x2CE57EFF, outfits = 1 }, - [0x507A33A6] = { model = "mp_u_f_m_legendarybounty_001", hash = 0x507A33A6, outfits = 1 }, - [0x88A423FD] = { model = "mp_u_f_m_legendarybounty_002", hash = 0x88A423FD, outfits = 8 }, - [0xA1EF7AAF] = { model = "mp_u_f_m_outlaw3_warner_01", hash = 0xA1EF7AAF, outfits = 1 }, - [0x33BC1E4A] = { model = "mp_u_f_m_outlaw3_warner_02", hash = 0x33BC1E4A, outfits = 1 }, - [0xC679DED7] = { model = "mp_u_f_m_revenge2_passerby_01", hash = 0xC679DED7, outfits = 1 }, - [0x2B38C3F4] = { model = "mp_u_m_m_armsheriff_01", hash = 0x2B38C3F4, outfits = 1 }, - [0x66B75A18] = { model = "mp_u_m_m_bountyinjuredman_01", hash = 0x66B75A18, outfits = 1 }, - [0xAE2D0F40] = { model = "mp_u_m_m_bountytarget_001", hash = 0xAE2D0F40, outfits = 2 }, - [0x9066D3B0] = { model = "mp_u_m_m_bountytarget_002", hash = 0x9066D3B0, outfits = 2 }, - [0xA095740D] = { model = "mp_u_m_m_bountytarget_003", hash = 0xA095740D, outfits = 2 }, - [0xF314990E] = { model = "mp_u_m_m_bountytarget_005", hash = 0xF314990E, outfits = 2 }, - [0xD7BB625C] = { model = "mp_u_m_m_bountytarget_008", hash = 0xD7BB625C, outfits = 2 }, - [0x5C366B54] = { model = "mp_u_m_m_bountytarget_009", hash = 0x5C366B54, outfits = 2 }, - [0x9710DFFC] = { model = "mp_u_m_m_bountytarget_010", hash = 0x9710DFFC, outfits = 2 }, - [0xF74DA078] = { model = "mp_u_m_m_bountytarget_011", hash = 0xF74DA078, outfits = 2 }, - [0xE98404E5] = { model = "mp_u_m_m_bountytarget_012", hash = 0xE98404E5, outfits = 2 }, - [0xDE80EEDF] = { model = "mp_u_m_m_bountytarget_013", hash = 0xDE80EEDF, outfits = 2 }, - [0xCDBA4D52] = { model = "mp_u_m_m_bountytarget_014", hash = 0xCDBA4D52, outfits = 2 }, - [0x00C8B356] = { model = "mp_u_m_m_bountytarget_015", hash = 0x00C8B356, outfits = 2 }, - [0xEF8B10DB] = { model = "mp_u_m_m_bountytarget_016", hash = 0xEF8B10DB, outfits = 2 }, - [0xE479FAB9] = { model = "mp_u_m_m_bountytarget_017", hash = 0xE479FAB9, outfits = 2 }, - [0xD6375E34] = { model = "mp_u_m_m_bountytarget_018", hash = 0xD6375E34, outfits = 2 }, - [0x37DC2180] = { model = "mp_u_m_m_bountytarget_019", hash = 0x37DC2180, outfits = 2 }, - [0x67D9F5A3] = { model = "mp_u_m_m_bountytarget_020", hash = 0x67D9F5A3, outfits = 2 }, - [0x34228E35] = { model = "mp_u_m_m_bountytarget_021", hash = 0x34228E35, outfits = 2 }, - [0x0B61BCAC] = { model = "mp_u_m_m_bountytarget_022", hash = 0x0B61BCAC, outfits = 2 }, - [0x59BCD969] = { model = "mp_u_m_m_bountytarget_023", hash = 0x59BCD969, outfits = 2 }, - [0x0D244031] = { model = "mp_u_m_m_bountytarget_024", hash = 0x0D244031, outfits = 2 }, - [0xFB5D1CA3] = { model = "mp_u_m_m_bountytarget_025", hash = 0xFB5D1CA3, outfits = 2 }, - [0xB1460876] = { model = "mp_u_m_m_bountytarget_026", hash = 0xB1460876, outfits = 2 }, - [0xC10827FA] = { model = "mp_u_m_m_bountytarget_027", hash = 0xC10827FA, outfits = 2 }, - [0xD5E2D1AF] = { model = "mp_u_m_m_bountytarget_028", hash = 0xD5E2D1AF, outfits = 2 }, - [0xE39BED21] = { model = "mp_u_m_m_bountytarget_029", hash = 0xE39BED21, outfits = 2 }, - [0xF41B8F40] = { model = "mp_u_m_m_bountytarget_030", hash = 0xF41B8F40, outfits = 2 }, - [0x55F252F4] = { model = "mp_u_m_m_bountytarget_031", hash = 0x55F252F4, outfits = 2 }, - [0x10AAC85E] = { model = "mp_u_m_m_bountytarget_032", hash = 0x10AAC85E, outfits = 2 }, - [0x02682BD9] = { model = "mp_u_m_m_bountytarget_033", hash = 0x02682BD9, outfits = 2 }, - [0xAD5581B5] = { model = "mp_u_m_m_bountytarget_034", hash = 0xAD5581B5, outfits = 2 }, - [0x1F32E56E] = { model = "mp_u_m_m_bountytarget_035", hash = 0x1F32E56E, outfits = 2 }, - [0xD96359D0] = { model = "mp_u_m_m_bountytarget_036", hash = 0xD96359D0, outfits = 2 }, - [0xCBCEBEA7] = { model = "mp_u_m_m_bountytarget_037", hash = 0xCBCEBEA7, outfits = 2 }, - [0x7618133B] = { model = "mp_u_m_m_bountytarget_038", hash = 0x7618133B, outfits = 2 }, - [0xE8277758] = { model = "mp_u_m_m_bountytarget_039", hash = 0xE8277758, outfits = 2 }, - [0x2D8122D2] = { model = "mp_u_m_m_bountytarget_044", hash = 0x2D8122D2, outfits = 2 }, - [0x3F4BC667] = { model = "mp_u_m_m_bountytarget_045", hash = 0x3F4BC667, outfits = 2 }, - [0x519CEB09] = { model = "mp_u_m_m_bountytarget_046", hash = 0x519CEB09, outfits = 2 }, - [0xE055886C] = { model = "mp_u_m_m_bountytarget_047", hash = 0xE055886C, outfits = 2 }, - [0xF032A826] = { model = "mp_u_m_m_bountytarget_048", hash = 0xF032A826, outfits = 2 }, - [0x05EFD3A0] = { model = "mp_u_m_m_bountytarget_049", hash = 0x05EFD3A0, outfits = 2 }, - [0x48B93642] = { model = "mp_u_m_m_bountytarget_050", hash = 0x48B93642, outfits = 2 }, - [0x968351D5] = { model = "mp_u_m_m_bountytarget_051", hash = 0x968351D5, outfits = 2 }, - [0x6A34F939] = { model = "mp_u_m_m_bountytarget_052", hash = 0x6A34F939, outfits = 2 }, - [0x381594FB] = { model = "mp_u_m_m_bountytarget_053", hash = 0x381594FB, outfits = 2 }, - [0xFDA5A014] = { model = "mp_u_m_m_bountytarget_054", hash = 0xFDA5A014, outfits = 2 }, - [0x4F89C3E3] = { model = "mp_u_m_m_bountytarget_055", hash = 0x4F89C3E3, outfits = 2 }, - [0x3A99297A] = { model = "mp_u_m_m_gunforhireclerk_01", hash = 0x3A99297A, outfits = 2 }, - [0xA8AC5B68] = { model = "mp_u_m_m_gunslinger3_rifleman_01", hash = 0xA8AC5B68, outfits = 1 }, - [0xB8B24C69] = { model = "mp_u_m_m_gunslinger3_sharpshooter_02", hash = 0xB8B24C69, outfits = 1 }, - [0xE9E0AEC7] = { model = "mp_u_m_m_gunslinger3_shotgunner_01", hash = 0xE9E0AEC7, outfits = 1 }, - [0x13AA0259] = { model = "mp_u_m_m_gunslinger3_shotgunner_02", hash = 0x13AA0259, outfits = 1 }, - [0xC3433CEF] = { model = "mp_u_m_m_gunslinger4_warner_01", hash = 0xC3433CEF, outfits = 1 }, - [0xC0669CB9] = { model = "mp_u_m_m_lbt_accomplice_01", hash = 0xC0669CB9, outfits = 1 }, - [0xD5DF9EC1] = { model = "mp_u_m_m_lbt_barbsvictim_01", hash = 0xD5DF9EC1, outfits = 1 }, - [0x3708EB8F] = { model = "mp_u_m_m_lbt_bribeinformant_01", hash = 0x3708EB8F, outfits = 1 }, - [0x23AC3035] = { model = "mp_u_m_m_lbt_coachdriver_01", hash = 0x23AC3035, outfits = 1 }, - [0xCF46EAEB] = { model = "mp_u_m_m_lbt_hostagemarshal_01", hash = 0xCF46EAEB, outfits = 1 }, - [0x7C32AD3B] = { model = "mp_u_m_m_lbt_owlhootvictim_01", hash = 0x7C32AD3B, outfits = 1 }, - [0xCA5CC98E] = { model = "mp_u_m_m_lbt_owlhootvictim_02", hash = 0xCA5CC98E, outfits = 1 }, - [0x5833651B] = { model = "mp_u_m_m_lbt_philipsvictim_01", hash = 0x5833651B, outfits = 2 }, - [0xA0968AC2] = { model = "mp_u_m_m_legendarybounty_001", hash = 0xA0968AC2, outfits = 1 }, - [0xB2752E7F] = { model = "mp_u_m_m_legendarybounty_002", hash = 0xB2752E7F, outfits = 1 }, - [0xBCF04375] = { model = "mp_u_m_m_legendarybounty_003", hash = 0xBCF04375, outfits = 1 }, - [0xCF21E7D8] = { model = "mp_u_m_m_legendarybounty_004", hash = 0xCF21E7D8, outfits = 1 }, - [0xE772187C] = { model = "mp_u_m_m_legendarybounty_005", hash = 0xE772187C, outfits = 2 }, - [0xF9BCBD11] = { model = "mp_u_m_m_legendarybounty_006", hash = 0xF9BCBD11, outfits = 2 }, - [0x03E5D163] = { model = "mp_u_m_m_legendarybounty_007", hash = 0x03E5D163, outfits = 1 }, - [0xD214F911] = { model = "mp_u_m_m_outlaw3_prisoner_01", hash = 0xD214F911, outfits = 1 }, - [0xA041956B] = { model = "mp_u_m_m_outlaw3_prisoner_02", hash = 0xA041956B, outfits = 1 }, - [0xCB422A48] = { model = "mp_u_m_m_outlaw3_warner_01", hash = 0xCB422A48, outfits = 1 }, - [0x9E094FD3] = { model = "mp_u_m_m_outlaw3_warner_02", hash = 0x9E094FD3, outfits = 1 }, - [0x8FF2C135] = { model = "mp_u_m_m_prisonwagon_01", hash = 0x8FF2C135, outfits = 2 }, - [0x39AB9484] = { model = "mp_u_m_m_prisonwagon_02", hash = 0x39AB9484, outfits = 2 }, - [0x4F65BFF8] = { model = "mp_u_m_m_prisonwagon_03", hash = 0x4F65BFF8, outfits = 2 }, - [0x189E526A] = { model = "mp_u_m_m_prisonwagon_04", hash = 0x189E526A, outfits = 2 }, - [0x2AE4F6F7] = { model = "mp_u_m_m_prisonwagon_05", hash = 0x2AE4F6F7, outfits = 2 }, - [0x74378993] = { model = "mp_u_m_m_prisonwagon_06", hash = 0x74378993, outfits = 2 }, - [0x530BE231] = { model = "mp_u_m_m_revenge2_handshaker_01", hash = 0x530BE231, outfits = 1 }, - [0x07D731A4] = { model = "mp_u_m_m_revenge2_passerby_01", hash = 0x07D731A4, outfits = 1 }, - [0xCD442B40] = { model = "mp_u_m_m_traderintroclerk_01", hash = 0xCD442B40, outfits = 1 }, - [0x7F96CF37] = { model = "mp_u_m_m_trader_01", hash = 0x7F96CF37, outfits = 2 }, - [0xB16AD39D] = { model = "mp_u_m_m_tvlfence_01", hash = 0xB16AD39D, outfits = 1 }, - [0x32D2C56D] = { model = "mp_u_m_o_blwpolicechief_01", hash = 0x32D2C56D, outfits = 8 }, - [0x749DDBE2] = { model = "mp_wgnbrkout_recipient_males_01", hash = 0x749DDBE2, outfits = 27 }, - [0xFD9DC5E0] = { model = "mp_wgnthief_recipient_males_01", hash = 0xFD9DC5E0, outfits = 24 }, - [0xF61DB75E] = { model = "msp_bountyhunter1_females_01", hash = 0xF61DB75E, outfits = 1 }, - [0xF4CED35C] = { model = "msp_braithwaites1_males_01", hash = 0xF4CED35C, outfits = 1 }, - [0x11C73FBE] = { model = "msp_feud1_males_01", hash = 0x11C73FBE, outfits = 4 }, - [0x776A1598] = { model = "msp_fussar2_males_01", hash = 0x776A1598, outfits = 3 }, - [0xD871A306] = { model = "msp_gang2_males_01", hash = 0xD871A306, outfits = 1 }, - [0x144452D7] = { model = "msp_gang3_males_01", hash = 0x144452D7, outfits = 2 }, - [0x39FF837C] = { model = "msp_grays1_males_01", hash = 0x39FF837C, outfits = 1 }, - [0xEA4A504D] = { model = "msp_grays2_males_01", hash = 0xEA4A504D, outfits = 1 }, - [0xDBAC89A0] = { model = "msp_guarma2_males_01", hash = 0xDBAC89A0, outfits = 3 }, - [0x1E9549CA] = { model = "msp_industry1_females_01", hash = 0x1E9549CA, outfits = 7 }, - [0xB294E4CA] = { model = "msp_industry1_males_01", hash = 0xB294E4CA, outfits = 8 }, - [0x59B2E634] = { model = "msp_industry3_females_01", hash = 0x59B2E634, outfits = 1 }, - [0x00E36FB7] = { model = "msp_industry3_males_01", hash = 0x00E36FB7, outfits = 8 }, - [0x25319F37] = { model = "msp_mary1_females_01", hash = 0x25319F37, outfits = 1 }, - [0x283AECFD] = { model = "msp_mary1_males_01", hash = 0x283AECFD, outfits = 2 }, - [0xC1040D2C] = { model = "msp_mary3_males_01", hash = 0xC1040D2C, outfits = 6 }, - [0x28F695AC] = { model = "msp_mob0_males_01", hash = 0x28F695AC, outfits = 1 }, - [0xF148DBF6] = { model = "msp_mob1_females_01", hash = 0xF148DBF6, outfits = 8 }, - [0x45453194] = { model = "msp_mob1_males_01", hash = 0x45453194, outfits = 7 }, - [0x391B7870] = { model = "msp_mob1_teens_01", hash = 0x391B7870, outfits = 7 }, - [0x90ADB7F1] = { model = "msp_mob3_females_01", hash = 0x90ADB7F1, outfits = 2 }, - [0xF1804E11] = { model = "msp_mob3_males_01", hash = 0xF1804E11, outfits = 4 }, - [0xB4F27E28] = { model = "msp_mudtown3b_females_01", hash = 0xB4F27E28, outfits = 20 }, - [0x90BA2D73] = { model = "msp_mudtown3b_males_01", hash = 0x90BA2D73, outfits = 20 }, - [0xC237B30F] = { model = "msp_mudtown3_males_01", hash = 0xC237B30F, outfits = 2 }, - [0x297869BA] = { model = "msp_mudtown5_males_01", hash = 0x297869BA, outfits = 5 }, - [0xB4685DE4] = { model = "msp_native1_males_01", hash = 0xB4685DE4, outfits = 3 }, - [0x97990286] = { model = "msp_reverend1_males_01", hash = 0x97990286, outfits = 4 }, - [0x77807351] = { model = "msp_saintdenis1_females_01", hash = 0x77807351, outfits = 6 }, - [0xF21ED93D] = { model = "msp_saintdenis1_males_01", hash = 0xF21ED93D, outfits = 17 }, - [0x961D2A2D] = { model = "msp_saloon1_females_01", hash = 0x961D2A2D, outfits = 22 }, - [0x8F03BE01] = { model = "msp_saloon1_males_01", hash = 0x8F03BE01, outfits = 45 }, - [0x1A2459CB] = { model = "msp_smuggler2_males_01", hash = 0x1A2459CB, outfits = 2 }, - [0x1754F82F] = { model = "msp_trainrobbery2_males_01", hash = 0x1754F82F, outfits = 4 }, - [0x840FA9CD] = { model = "msp_trelawny1_males_01", hash = 0x840FA9CD, outfits = 7 }, - [0x12EDDBCE] = { model = "msp_utopia1_males_01", hash = 0x12EDDBCE, outfits = 10 }, - [0xDE01E0F9] = { model = "msp_winter4_males_01", hash = 0xDE01E0F9, outfits = 1 }, - [0x00B69710] = { model = "player_three", hash = 0x00B69710, outfits = 33 }, - [0x0D7114C9] = { model = "player_zero", hash = 0x0D7114C9, outfits = 74 }, - [0x5C32DA8F] = { model = "rces_abigail3_females_01", hash = 0x5C32DA8F, outfits = 2 }, - [0x7BA67807] = { model = "rces_abigail3_males_01", hash = 0x7BA67807, outfits = 1 }, - [0xE1566351] = { model = "rces_beechers1_males_01", hash = 0xE1566351, outfits = 4 }, - [0xF63E07A5] = { model = "rces_evelynmiller_males_01", hash = 0xF63E07A5, outfits = 3 }, - [0xFB1CC58C] = { model = "rcsp_beauandpenelope1_females_01", hash = 0xFB1CC58C, outfits = 16 }, - [0x7BD8E784] = { model = "rcsp_beauandpenelope_males_01", hash = 0x7BD8E784, outfits = 5 }, - [0x6A407345] = { model = "rcsp_calderonstage2_males_01", hash = 0x6A407345, outfits = 2 }, - [0x21DF353D] = { model = "rcsp_calderonstage2_teens_01", hash = 0x21DF353D, outfits = 3 }, - [0x5278C19E] = { model = "rcsp_calderon_males_01", hash = 0x5278C19E, outfits = 3 }, - [0xCAF14192] = { model = "rcsp_calloway_males_01", hash = 0xCAF14192, outfits = 5 }, - [0xF9FF65FA] = { model = "rcsp_coachrobbery_males_01", hash = 0xF9FF65FA, outfits = 5 }, - [0xDF975FD2] = { model = "rcsp_crackpot_females_01", hash = 0xDF975FD2, outfits = 2 }, - [0x79A9623E] = { model = "rcsp_crackpot_males_01", hash = 0x79A9623E, outfits = 4 }, - [0x7F993AAD] = { model = "rcsp_creole_males_01", hash = 0x7F993AAD, outfits = 1 }, - [0xF9EB2E96] = { model = "rcsp_dutch1_males_01", hash = 0xF9EB2E96, outfits = 8 }, - [0x880560E1] = { model = "rcsp_dutch3_males_01", hash = 0x880560E1, outfits = 2 }, - [0x2B814C4B] = { model = "rcsp_edithdownes2_males_01", hash = 0x2B814C4B, outfits = 2 }, - [0xC4C59AD4] = { model = "rcsp_formyart_females_01", hash = 0xC4C59AD4, outfits = 6 }, - [0x158FFD8B] = { model = "rcsp_formyart_males_01", hash = 0x158FFD8B, outfits = 10 }, - [0x494FC69B] = { model = "rcsp_gunslingerduel4_males_01", hash = 0x494FC69B, outfits = 4 }, - [0x1268B0C9] = { model = "rcsp_herekittykitty_males_01", hash = 0x1268B0C9, outfits = 2 }, - [0x1319E95B] = { model = "rcsp_hunting1_males_01", hash = 0x1319E95B, outfits = 2 }, - [0x48EE7011] = { model = "rcsp_mrmayor_males_01", hash = 0x48EE7011, outfits = 1 }, - [0xB11093B2] = { model = "rcsp_native1s2_males_01", hash = 0xB11093B2, outfits = 5 }, - [0x4AAE5FA2] = { model = "rcsp_native_americanfathers_males_01", hash = 0x4AAE5FA2, outfits = 1 }, - [0x1B92FA61] = { model = "rcsp_oddfellows_males_01", hash = 0x1B92FA61, outfits = 1 }, - [0xBB375EE3] = { model = "rcsp_odriscolls2_females_01", hash = 0xBB375EE3, outfits = 3 }, - [0xC00FA82A] = { model = "rcsp_poisonedwell_females_01", hash = 0xC00FA82A, outfits = 4 }, - [0x36C54685] = { model = "rcsp_poisonedwell_males_01", hash = 0x36C54685, outfits = 6 }, - [0x4F0CE5B2] = { model = "rcsp_poisonedwell_teens_01", hash = 0x4F0CE5B2, outfits = 2 }, - [0xA4FD4905] = { model = "rcsp_ridethelightning_females_01", hash = 0xA4FD4905, outfits = 3 }, - [0x6325ED08] = { model = "rcsp_ridethelightning_males_01", hash = 0x6325ED08, outfits = 1 }, - [0xA3727520] = { model = "rcsp_sadie1_males_01", hash = 0xA3727520, outfits = 4 }, - [0xD8F7A42D] = { model = "rcsp_slavecatcher_males_01", hash = 0xD8F7A42D, outfits = 2 }, - [0xE486EF71] = { model = "re_animalattack_females_01", hash = 0xE486EF71, outfits = 1 }, - [0x62C7CB3C] = { model = "re_animalattack_males_01", hash = 0x62C7CB3C, outfits = 2 }, - [0x703FBE93] = { model = "re_animalmauling_males_01", hash = 0x703FBE93, outfits = 3 }, - [0xCA6AE495] = { model = "re_approach_males_01", hash = 0xCA6AE495, outfits = 2 }, - [0x5CB5E6EA] = { model = "re_beartrap_males_01", hash = 0x5CB5E6EA, outfits = 4 }, - [0xFB4137F2] = { model = "re_boatattack_males_01", hash = 0xFB4137F2, outfits = 3 }, - [0x367E8D6C] = { model = "re_burningbodies_males_01", hash = 0x367E8D6C, outfits = 3 }, - [0x95EC9DD3] = { model = "re_checkpoint_males_01", hash = 0x95EC9DD3, outfits = 2 }, - [0x629F1377] = { model = "re_coachrobbery_females_01", hash = 0x629F1377, outfits = 1 }, - [0x4499F637] = { model = "re_coachrobbery_males_01", hash = 0x4499F637, outfits = 8 }, - [0xE1568603] = { model = "re_consequence_males_01", hash = 0xE1568603, outfits = 8 }, - [0xD4AEC8B8] = { model = "re_corpsecart_females_01", hash = 0xD4AEC8B8, outfits = 2 }, - [0x5220FFBE] = { model = "re_corpsecart_males_01", hash = 0x5220FFBE, outfits = 3 }, - [0x79AC27BA] = { model = "re_crashedwagon_males_01", hash = 0x79AC27BA, outfits = 5 }, - [0xCE48FB7A] = { model = "re_darkalleyambush_males_01", hash = 0xCE48FB7A, outfits = 4 }, - [0x3069C374] = { model = "re_darkalleybum_males_01", hash = 0x3069C374, outfits = 5 }, - [0xA6D580A6] = { model = "re_darkalleystabbing_males_01", hash = 0xA6D580A6, outfits = 5 }, - [0x33DC2EF2] = { model = "re_deadbodies_males_01", hash = 0x33DC2EF2, outfits = 2 }, - [0xACDE9302] = { model = "re_deadjohn_females_01", hash = 0xACDE9302, outfits = 1 }, - [0xFDEB46B0] = { model = "re_deadjohn_males_01", hash = 0xFDEB46B0, outfits = 2 }, - [0x1FCA2943] = { model = "re_disabledbeggar_males_01", hash = 0x1FCA2943, outfits = 5 }, - [0x9DB7B801] = { model = "re_domesticdispute_females_01", hash = 0x9DB7B801, outfits = 3 }, - [0x6A11617F] = { model = "re_domesticdispute_males_01", hash = 0x6A11617F, outfits = 4 }, - [0x0E4180E1] = { model = "re_drownmurder_females_01", hash = 0x0E4180E1, outfits = 3 }, - [0xAEE8FDCD] = { model = "re_drownmurder_males_01", hash = 0xAEE8FDCD, outfits = 3 }, - [0xE5965991] = { model = "re_drunkcamp_males_01", hash = 0xE5965991, outfits = 5 }, - [0x58AF6095] = { model = "re_drunkdueler_males_01", hash = 0x58AF6095, outfits = 2 }, - [0xEF2609C7] = { model = "re_duelboaster_males_01", hash = 0xEF2609C7, outfits = 2 }, - [0xC96A4211] = { model = "re_duelwinner_females_01", hash = 0xC96A4211, outfits = 6 }, - [0x0DECFCD7] = { model = "re_duelwinner_males_01", hash = 0x0DECFCD7, outfits = 22 }, - [0x81978D28] = { model = "re_escort_females_01", hash = 0x81978D28, outfits = 2 }, - [0x2321E38B] = { model = "re_executions_males_01", hash = 0x2321E38B, outfits = 5 }, - [0xB2AC568B] = { model = "re_fleeingfamily_females_01", hash = 0xB2AC568B, outfits = 1 }, - [0x09FC3CA1] = { model = "re_fleeingfamily_males_01", hash = 0x09FC3CA1, outfits = 1 }, - [0x66F6F941] = { model = "re_footrobbery_males_01", hash = 0x66F6F941, outfits = 3 }, - [0x81BF6232] = { model = "re_friendlyoutdoorsman_males_01", hash = 0x81BF6232, outfits = 1 }, - [0x8755FDCB] = { model = "re_frozentodeath_females_01", hash = 0x8755FDCB, outfits = 1 }, - [0xC9CFCE6D] = { model = "re_frozentodeath_males_01", hash = 0xC9CFCE6D, outfits = 1 }, - [0x2E30B6C8] = { model = "re_fundraiser_females_01", hash = 0x2E30B6C8, outfits = 2 }, - [0xE459A4A5] = { model = "re_fussarchase_males_01", hash = 0xE459A4A5, outfits = 2 }, - [0x4E504380] = { model = "re_goldpanner_males_01", hash = 0x4E504380, outfits = 4 }, - [0xF502975D] = { model = "re_horserace_females_01", hash = 0xF502975D, outfits = 2 }, - [0x6CC05760] = { model = "re_horserace_males_01", hash = 0x6CC05760, outfits = 2 }, - [0x5D3650C0] = { model = "re_hostagerescue_females_01", hash = 0x5D3650C0, outfits = 2 }, - [0x65C6382C] = { model = "re_hostagerescue_males_01", hash = 0x65C6382C, outfits = 4 }, - [0xD1E15C65] = { model = "re_inbredkidnap_females_01", hash = 0xD1E15C65, outfits = 2 }, - [0x387C96BF] = { model = "re_inbredkidnap_males_01", hash = 0x387C96BF, outfits = 2 }, - [0x66CB93BC] = { model = "re_injuredrider_males_01", hash = 0x66CB93BC, outfits = 9 }, - [0x11D854F4] = { model = "re_kidnappedvictim_females_01", hash = 0x11D854F4, outfits = 4 }, - [0x1A468CD5] = { model = "re_laramiegangrustling_males_01", hash = 0x1A468CD5, outfits = 2 }, - [0xBEA07BE3] = { model = "re_loneprisoner_males_01", hash = 0xBEA07BE3, outfits = 2 }, - [0x42C14B8A] = { model = "re_lostdrunk_females_01", hash = 0x42C14B8A, outfits = 3 }, - [0x8AB27C20] = { model = "re_lostdrunk_males_01", hash = 0x8AB27C20, outfits = 4 }, - [0x0684C863] = { model = "re_lostfriend_males_01", hash = 0x0684C863, outfits = 5 }, - [0x24EA5130] = { model = "re_lostman_males_01", hash = 0x24EA5130, outfits = 1 }, - [0x791111A2] = { model = "re_moonshinecamp_males_01", hash = 0x791111A2, outfits = 4 }, - [0xCAB23E50] = { model = "re_murdercamp_males_01", hash = 0xCAB23E50, outfits = 3 }, - [0x6BB3CF86] = { model = "re_murdersuicide_females_01", hash = 0x6BB3CF86, outfits = 3 }, - [0x440BD544] = { model = "re_murdersuicide_males_01", hash = 0x440BD544, outfits = 3 }, - [0x29908B97] = { model = "re_nakedswimmer_males_01", hash = 0x29908B97, outfits = 1 }, - [0x8E6C0C2E] = { model = "re_ontherun_males_01", hash = 0x8E6C0C2E, outfits = 2 }, - [0xEEF6045E] = { model = "re_outlawlooter_males_01", hash = 0xEEF6045E, outfits = 24 }, - [0xB0D2EE63] = { model = "re_parlorambush_males_01", hash = 0xB0D2EE63, outfits = 1 }, - [0x1FD195D2] = { model = "re_peepingtom_females_01", hash = 0x1FD195D2, outfits = 3 }, - [0xDF72A84B] = { model = "re_peepingtom_males_01", hash = 0xDF72A84B, outfits = 8 }, - [0x91824246] = { model = "re_pickpocket_males_01", hash = 0x91824246, outfits = 3 }, - [0xEFF51021] = { model = "re_pisspot_females_01", hash = 0xEFF51021, outfits = 6 }, - [0xD730B466] = { model = "re_pisspot_males_01", hash = 0xD730B466, outfits = 10 }, - [0x531B5B75] = { model = "re_playercampstrangers_females_01", hash = 0x531B5B75, outfits = 2 }, - [0x2AC9BAAF] = { model = "re_playercampstrangers_males_01", hash = 0x2AC9BAAF, outfits = 1 }, - [0x7BCC9C83] = { model = "re_poisoned_males_01", hash = 0x7BCC9C83, outfits = 2 }, - [0x2BFFE26F] = { model = "re_policechase_males_01", hash = 0x2BFFE26F, outfits = 4 }, - [0x3EC9C4BC] = { model = "re_prisonwagon_females_01", hash = 0x3EC9C4BC, outfits = 5 }, - [0x2D438F6C] = { model = "re_prisonwagon_males_01", hash = 0x2D438F6C, outfits = 4 }, - [0xB2F47EFD] = { model = "re_publichanging_females_01", hash = 0xB2F47EFD, outfits = 17 }, - [0x6826C60C] = { model = "re_publichanging_males_01", hash = 0x6826C60C, outfits = 74 }, - [0xB2B11AFC] = { model = "re_publichanging_teens_01", hash = 0xB2B11AFC, outfits = 2 }, - [0xBB6D5452] = { model = "re_rallydispute_males_01", hash = 0xBB6D5452, outfits = 4 }, - [0x39C84A35] = { model = "re_rallysetup_males_01", hash = 0x39C84A35, outfits = 3 }, - [0x08486093] = { model = "re_rally_males_01", hash = 0x08486093, outfits = 13 }, - [0x89FB8610] = { model = "re_ratinfestation_males_01", hash = 0x89FB8610, outfits = 1 }, - [0x487E0B26] = { model = "re_rowdydrunks_males_01", hash = 0x487E0B26, outfits = 13 }, - [0xA8D0FBF7] = { model = "re_savageaftermath_females_01", hash = 0xA8D0FBF7, outfits = 2 }, - [0xF7C4FD8C] = { model = "re_savageaftermath_males_01", hash = 0xF7C4FD8C, outfits = 5 }, - [0x0D4D77B7] = { model = "re_savagefight_females_01", hash = 0x0D4D77B7, outfits = 3 }, - [0xBA652DBE] = { model = "re_savagefight_males_01", hash = 0xBA652DBE, outfits = 3 }, - [0xFFB2BFA4] = { model = "re_savagewagon_females_01", hash = 0xFFB2BFA4, outfits = 4 }, - [0xA9CDF6A9] = { model = "re_savagewagon_males_01", hash = 0xA9CDF6A9, outfits = 6 }, - [0x6461654D] = { model = "re_savagewarning_males_01", hash = 0x6461654D, outfits = 7 }, - [0x69723D9A] = { model = "re_sharpshooter_males_01", hash = 0x69723D9A, outfits = 2 }, - [0xE47AAB16] = { model = "re_showoff_males_01", hash = 0xE47AAB16, outfits = 8 }, - [0x548636CD] = { model = "re_skippingstones_males_01", hash = 0x548636CD, outfits = 1 }, - [0x38DB4E99] = { model = "re_skippingstones_teens_01", hash = 0x38DB4E99, outfits = 1 }, - [0x717C4D5F] = { model = "re_slumambush_females_01", hash = 0x717C4D5F, outfits = 2 }, - [0x6EB40313] = { model = "re_snakebite_males_01", hash = 0x6EB40313, outfits = 2 }, - [0xF3FAA72B] = { model = "re_stalkinghunter_males_01", hash = 0xF3FAA72B, outfits = 3 }, - [0x8CB8566C] = { model = "re_strandedrider_males_01", hash = 0x8CB8566C, outfits = 4 }, - [0x0834334E] = { model = "re_street_fight_males_01", hash = 0x0834334E, outfits = 24 }, - [0xFE6B32C9] = { model = "re_taunting_01", hash = 0xFE6B32C9, outfits = 2 }, - [0x6B768512] = { model = "re_taunting_males_01", hash = 0x6B768512, outfits = 3 }, - [0x789023D8] = { model = "re_torturingcaptive_males_01", hash = 0x789023D8, outfits = 2 }, - [0x13AB574F] = { model = "re_townburial_males_01", hash = 0x13AB574F, outfits = 18 }, - [0x6C3B3B5B] = { model = "re_townconfrontation_females_01", hash = 0x6C3B3B5B, outfits = 1 }, - [0xBE60CA00] = { model = "re_townconfrontation_males_01", hash = 0xBE60CA00, outfits = 4 }, - [0x0F3C1689] = { model = "re_townrobbery_males_01", hash = 0x0F3C1689, outfits = 2 }, - [0x436EBD6C] = { model = "re_townwidow_females_01", hash = 0x436EBD6C, outfits = 3 }, - [0x3F8A4F75] = { model = "re_trainholdup_females_01", hash = 0x3F8A4F75, outfits = 3 }, - [0xB985F131] = { model = "re_trainholdup_males_01", hash = 0xB985F131, outfits = 30 }, - [0xA99399B2] = { model = "re_trappedwoman_females_01", hash = 0xA99399B2, outfits = 3 }, - [0xF1E3C6B0] = { model = "re_treasurehunter_males_01", hash = 0xF1E3C6B0, outfits = 4 }, - [0x6A5B1E21] = { model = "re_voice_females_01", hash = 0x6A5B1E21, outfits = 1 }, - [0xEE8C468A] = { model = "re_wagonthreat_females_01", hash = 0xEE8C468A, outfits = 1 }, - [0xCA5501C8] = { model = "re_wagonthreat_males_01", hash = 0xCA5501C8, outfits = 2 }, - [0xAFC8B271] = { model = "re_washedashore_males_01", hash = 0xAFC8B271, outfits = 2 }, - [0x7EB7235E] = { model = "re_wealthycouple_females_01", hash = 0x7EB7235E, outfits = 2 }, - [0x76C957EC] = { model = "re_wealthycouple_males_01", hash = 0x76C957EC, outfits = 2 }, - [0x25D32467] = { model = "re_wildman_01", hash = 0x25D32467, outfits = 2 }, - [0x52938369] = { model = "shack_missinghusband_males_01", hash = 0x52938369, outfits = 1 }, - [0x98688D36] = { model = "shack_ontherun_males_01", hash = 0x98688D36, outfits = 3 }, - [0x9295AF45] = { model = "s_f_m_bwmworker_01", hash = 0x9295AF45, outfits = 20 }, - [0xDCEE66D9] = { model = "s_f_m_cghworker_01", hash = 0xDCEE66D9, outfits = 20 }, - [0xC463C94D] = { model = "s_f_m_mapworker_01", hash = 0xC463C94D, outfits = 10 }, - [0x8F45DDEB] = { model = "s_m_m_ambientblwpolice_01", hash = 0x8F45DDEB, outfits = 43 }, - [0x6D22857B] = { model = "s_m_m_ambientlawrural_01", hash = 0x6D22857B, outfits = 95 }, - [0xA9AD1A7D] = { model = "s_m_m_ambientsdpolice_01", hash = 0xA9AD1A7D, outfits = 44 }, - [0x2B0C75A7] = { model = "s_m_m_army_01", hash = 0x2B0C75A7, outfits = 59 }, - [0xBC548357] = { model = "s_m_m_asbcowpoke_01", hash = 0xBC548357, outfits = 30 }, - [0xA76308C1] = { model = "s_m_m_asbdealer_01", hash = 0xA76308C1, outfits = 10 }, - [0x40C51B9B] = { model = "s_m_m_bankclerk_01", hash = 0x40C51B9B, outfits = 13 }, - [0xD2FA5F10] = { model = "s_m_m_barber_01", hash = 0xD2FA5F10, outfits = 7 }, - [0x45B1C269] = { model = "s_m_m_blwcowpoke_01", hash = 0x45B1C269, outfits = 30 }, - [0x96B4CDFD] = { model = "s_m_m_blwdealer_01", hash = 0x96B4CDFD, outfits = 8 }, - [0x7FA7B097] = { model = "s_m_m_bwmworker_01", hash = 0x7FA7B097, outfits = 20 }, - [0x9E19AFE2] = { model = "s_m_m_cghworker_01", hash = 0x9E19AFE2, outfits = 30 }, - [0xCC2B5869] = { model = "s_m_m_cktworker_01", hash = 0xCC2B5869, outfits = 50 }, - [0x76F815AD] = { model = "s_m_m_coachtaxidriver_01", hash = 0x76F815AD, outfits = 16 }, - [0xBF1F0776] = { model = "s_m_m_cornwallguard_01", hash = 0xBF1F0776, outfits = 43 }, - [0xE9F4AB20] = { model = "s_m_m_dispatchlawrural_01", hash = 0xE9F4AB20, outfits = 65 }, - [0x7E16EC8D] = { model = "s_m_m_dispatchleaderpolice_01", hash = 0x7E16EC8D, outfits = 20 }, - [0x5040FF5C] = { model = "s_m_m_dispatchleaderrural_01", hash = 0x5040FF5C, outfits = 11 }, - [0xFFBABBF9] = { model = "s_m_m_dispatchpolice_01", hash = 0xFFBABBF9, outfits = 40 }, - [0xE917380E] = { model = "s_m_m_fussarhenchman_01", hash = 0xE917380E, outfits = 67 }, - [0x56016AD3] = { model = "s_m_m_genconductor_01", hash = 0x56016AD3, outfits = 11 }, - [0x2C8D5F17] = { model = "s_m_m_hofguard_01", hash = 0x2C8D5F17, outfits = 20 }, - [0x8649EF17] = { model = "s_m_m_liveryworker_01", hash = 0x8649EF17, outfits = 24 }, - [0x236B99E0] = { model = "s_m_m_magiclantern_01", hash = 0x236B99E0, outfits = 4 }, - [0x4A6B07B5] = { model = "s_m_m_mapworker_01", hash = 0x4A6B07B5, outfits = 10 }, - [0x5339E46B] = { model = "s_m_m_marketvendor_01", hash = 0x5339E46B, outfits = 16 }, - [0x3141A535] = { model = "s_m_m_marshallsrural_01", hash = 0x3141A535, outfits = 33 }, - [0xD952E41C] = { model = "s_m_m_micguard_01", hash = 0xD952E41C, outfits = 23 }, - [0x5D6431A9] = { model = "s_m_m_nbxriverboatdealers_01", hash = 0x5D6431A9, outfits = 20 }, - [0xDF00FFF5] = { model = "s_m_m_nbxriverboatguards_01", hash = 0xDF00FFF5, outfits = 25 }, - [0x6A4E496F] = { model = "s_m_m_orpguard_01", hash = 0x6A4E496F, outfits = 20 }, - [0x2BFB9F8F] = { model = "s_m_m_pinlaw_01", hash = 0x2BFB9F8F, outfits = 55 }, - [0xB72270C2] = { model = "s_m_m_racrailguards_01", hash = 0xB72270C2, outfits = 20 }, - [0x6CC9E1B0] = { model = "s_m_m_racrailworker_01", hash = 0x6CC9E1B0, outfits = 30 }, - [0xEDF61C81] = { model = "s_m_m_rhdcowpoke_01", hash = 0xEDF61C81, outfits = 20 }, - [0xD819DA9D] = { model = "s_m_m_rhddealer_01", hash = 0xD819DA9D, outfits = 8 }, - [0xC8C55680] = { model = "s_m_m_sdcowpoke_01", hash = 0xC8C55680, outfits = 35 }, - [0x6C604B17] = { model = "s_m_m_sddealer_01", hash = 0x6C604B17, outfits = 8 }, - [0xE02AEA58] = { model = "s_m_m_sdticketseller_01", hash = 0xE02AEA58, outfits = 6 }, - [0x459610AE] = { model = "s_m_m_skpguard_01", hash = 0x459610AE, outfits = 20 }, - [0xC55DA177] = { model = "s_m_m_stgsailor_01", hash = 0xC55DA177, outfits = 20 }, - [0xFCF4C01C] = { model = "s_m_m_strcowpoke_01", hash = 0xFCF4C01C, outfits = 21 }, - [0x65E1C35F] = { model = "s_m_m_strdealer_01", hash = 0x65E1C35F, outfits = 8 }, - [0x18A9A8A5] = { model = "s_m_m_strlumberjack_01", hash = 0x18A9A8A5, outfits = 16 }, - [0x2AE5771F] = { model = "s_m_m_tailor_01", hash = 0x2AE5771F, outfits = 7 }, - [0xE9694F3F] = { model = "s_m_m_trainstationworker_01", hash = 0xE9694F3F, outfits = 28 }, - [0xB27C0016] = { model = "s_m_m_tumdeputies_01", hash = 0xB27C0016, outfits = 22 }, - [0x0633DF9F] = { model = "s_m_m_unibutchers_01", hash = 0x0633DF9F, outfits = 13 }, - [0xD1264F4D] = { model = "s_m_m_unitrainengineer_01", hash = 0xD1264F4D, outfits = 10 }, - [0x083BB629] = { model = "s_m_m_unitrainguards_01", hash = 0x083BB629, outfits = 21 }, - [0x96AB9699] = { model = "s_m_m_valbankguards_01", hash = 0x96AB9699, outfits = 10 }, - [0x4304BF5C] = { model = "s_m_m_valcowpoke_01", hash = 0x4304BF5C, outfits = 21 }, - [0x9BCF0362] = { model = "s_m_m_valdealer_01", hash = 0x9BCF0362, outfits = 8 }, - [0xF4B4127A] = { model = "s_m_m_valdeputy_01", hash = 0xF4B4127A, outfits = 20 }, - [0x398349E3] = { model = "s_m_m_vhtdealer_01", hash = 0x398349E3, outfits = 8 }, - [0x50152A20] = { model = "s_m_o_cktworker_01", hash = 0x50152A20, outfits = 8 }, - [0x802760F9] = { model = "s_m_y_army_01", hash = 0x802760F9, outfits = 43 }, - [0x111A98CA] = { model = "s_m_y_newspaperboy_01", hash = 0x111A98CA, outfits = 16 }, - [0x84F58DCD] = { model = "s_m_y_racrailworker_01", hash = 0x84F58DCD, outfits = 30 }, - [0x512129F2] = { model = "u_f_m_bht_wife", hash = 0x512129F2, outfits = 1 }, - [0x5F3EE4D3] = { model = "u_f_m_circuswagon_01", hash = 0x5F3EE4D3, outfits = 1 }, - [0xD93F012D] = { model = "u_f_m_emrdaughter_01", hash = 0xD93F012D, outfits = 5 }, - [0xB1DCC83F] = { model = "u_f_m_fussar1lady_01", hash = 0xB1DCC83F, outfits = 1 }, - [0x76C45EF0] = { model = "u_f_m_htlwife_01", hash = 0x76C45EF0, outfits = 1 }, - [0x41ACC7BC] = { model = "u_f_m_lagmother_01", hash = 0x41ACC7BC, outfits = 9 }, - [0xAF6FBD47] = { model = "u_f_m_nbxresident_01", hash = 0xAF6FBD47, outfits = 2 }, - [0x99372227] = { model = "u_f_m_rhdnudewoman_01", hash = 0x99372227, outfits = 1 }, - [0xE96BC143] = { model = "u_f_m_rkshomesteadtenant_01", hash = 0xE96BC143, outfits = 1 }, - [0xC71BF1D1] = { model = "u_f_m_story_blackbelle_01", hash = 0xC71BF1D1, outfits = 1 }, - [0x3C1CEAE0] = { model = "u_f_m_story_nightfolk_01", hash = 0x3C1CEAE0, outfits = 1 }, - [0x0A219825] = { model = "u_f_m_tljbartender_01", hash = 0x0A219825, outfits = 9 }, - [0xF1711637] = { model = "u_f_m_tumgeneralstoreowner_01", hash = 0xF1711637, outfits = 9 }, - [0x8F549F46] = { model = "u_f_m_valtownfolk_01", hash = 0x8F549F46, outfits = 2 }, - [0x7CC2FA23] = { model = "u_f_m_valtownfolk_02", hash = 0x7CC2FA23, outfits = 2 }, - [0x3E471440] = { model = "u_f_m_vhtbartender_01", hash = 0x3E471440, outfits = 7 }, - [0xEDC0F72A] = { model = "u_f_o_hermit_woman_01", hash = 0xEDC0F72A, outfits = 1 }, - [0xAE38220C] = { model = "u_f_o_wtctownfolk_01", hash = 0xAE38220C, outfits = 1 }, - [0x74DF3938] = { model = "u_f_y_braithwaitessecret_01", hash = 0x74DF3938, outfits = 2 }, - [0xBCC8D35F] = { model = "u_f_y_czphomesteaddaughter_01", hash = 0xBCC8D35F, outfits = 1 }, - [0x8C9F0E5D] = { model = "u_m_m_announcer_01", hash = 0x8C9F0E5D, outfits = 2 }, - [0x0717C9F9] = { model = "u_m_m_apfdeadman_01", hash = 0x0717C9F9, outfits = 1 }, - [0xC5DF0CFE] = { model = "u_m_m_armgeneralstoreowner_01", hash = 0xC5DF0CFE, outfits = 9 }, - [0x2AB8094F] = { model = "u_m_m_armtrainstationworker_01", hash = 0x2AB8094F, outfits = 9 }, - [0x8E4FCB05] = { model = "u_m_m_armundertaker_01", hash = 0x8E4FCB05, outfits = 9 }, - [0x4F93F6BE] = { model = "u_m_m_armytrn4_01", hash = 0x4F93F6BE, outfits = 1 }, - [0x80D04451] = { model = "u_m_m_asbgunsmith_01", hash = 0x80D04451, outfits = 9 }, - [0x0B8D495D] = { model = "u_m_m_asbprisoner_01", hash = 0x0B8D495D, outfits = 2 }, - [0x1DCEEDE0] = { model = "u_m_m_asbprisoner_02", hash = 0x1DCEEDE0, outfits = 2 }, - [0xC3E1BC18] = { model = "u_m_m_bht_banditomine", hash = 0xC3E1BC18, outfits = 2 }, - [0xC3B9DF14] = { model = "u_m_m_bht_banditoshack", hash = 0xC3B9DF14, outfits = 4 }, - [0x2B0B3AC2] = { model = "u_m_m_bht_benedictallbright", hash = 0x2B0B3AC2, outfits = 1 }, - [0xACBA905B] = { model = "u_m_m_bht_blackwaterhunt", hash = 0xACBA905B, outfits = 1 }, - [0x652E0944] = { model = "u_m_m_bht_exconfedcampreturn", hash = 0x652E0944, outfits = 1 }, - [0xCC013F0A] = { model = "u_m_m_bht_laramiesleeping", hash = 0xCC013F0A, outfits = 1 }, - [0xB7281910] = { model = "u_m_m_bht_lover", hash = 0xB7281910, outfits = 1 }, - [0x60D033B6] = { model = "u_m_m_bht_mineforeman", hash = 0x60D033B6, outfits = 1 }, - [0x22944F0D] = { model = "u_m_m_bht_nathankirk", hash = 0x22944F0D, outfits = 1 }, - [0xC5BCD5E8] = { model = "u_m_m_bht_odriscolldrunk", hash = 0xC5BCD5E8, outfits = 1 }, - [0xA2B8EFDC] = { model = "u_m_m_bht_odriscollmauled", hash = 0xA2B8EFDC, outfits = 1 }, - [0x2E6B2DB0] = { model = "u_m_m_bht_odriscollsleeping", hash = 0x2E6B2DB0, outfits = 1 }, - [0xC82782C2] = { model = "u_m_m_bht_oldman", hash = 0xC82782C2, outfits = 1 }, - [0x62600029] = { model = "U_M_M_BHT_OUTLAWMAULED", hash = 0x62600029, outfits = 1 }, - [0x2AC6EC80] = { model = "u_m_m_bht_saintdenissaloon", hash = 0x2AC6EC80, outfits = 1 }, - [0x861F7616] = { model = "u_m_m_bht_shackescape", hash = 0x861F7616, outfits = 1 }, - [0x728D7C04] = { model = "u_m_m_bht_skinnerbrother", hash = 0x728D7C04, outfits = 3 }, - [0x8E18978A] = { model = "u_m_m_bht_skinnersearch", hash = 0x8E18978A, outfits = 3 }, - [0x66EAB43A] = { model = "u_m_m_bht_strawberryduel", hash = 0x66EAB43A, outfits = 1 }, - [0xB8195626] = { model = "u_m_m_bivforeman_01", hash = 0xB8195626, outfits = 5 }, - [0xD3A41495] = { model = "u_m_m_blwtrainstationworker_01", hash = 0xD3A41495, outfits = 9 }, - [0x143F8FAC] = { model = "u_m_m_bulletcatchvolunteer_01", hash = 0x143F8FAC, outfits = 2 }, - [0xA27B73FE] = { model = "u_m_m_bwmstablehand_01", hash = 0xA27B73FE, outfits = 4 }, - [0xF78F6717] = { model = "u_m_m_cabaretfirehat_01", hash = 0xF78F6717, outfits = 1 }, - [0x675B5537] = { model = "u_m_m_cajhomestead_01", hash = 0x675B5537, outfits = 1 }, - [0xA2FA1725] = { model = "u_m_m_chelonianjumper_01", hash = 0xA2FA1725, outfits = 2 }, - [0x913F73B0] = { model = "u_m_m_chelonianjumper_02", hash = 0x913F73B0, outfits = 2 }, - [0x7FDED0EF] = { model = "u_m_m_chelonianjumper_03", hash = 0x7FDED0EF, outfits = 2 }, - [0x5E1D8D6D] = { model = "u_m_m_chelonianjumper_04", hash = 0x5E1D8D6D, outfits = 2 }, - [0x67604D20] = { model = "u_m_m_circuswagon_01", hash = 0x67604D20, outfits = 1 }, - [0xC31F3D4D] = { model = "u_m_m_cktmanager_01", hash = 0xC31F3D4D, outfits = 1 }, - [0x4CB41AA6] = { model = "u_m_m_cornwalldriver_01", hash = 0x4CB41AA6, outfits = 1 }, - [0x32830A89] = { model = "u_m_m_crdhomesteadtenant_01", hash = 0x32830A89, outfits = 2 }, - [0x693D77FD] = { model = "u_m_m_crdhomesteadtenant_02", hash = 0x693D77FD, outfits = 2 }, - [0xD8053806] = { model = "u_m_m_crdwitness_01", hash = 0xD8053806, outfits = 2 }, - [0xDA855AC6] = { model = "u_m_m_creolecaptain_01", hash = 0xDA855AC6, outfits = 1 }, - [0x08C9910B] = { model = "u_m_m_czphomesteadfather_01", hash = 0x08C9910B, outfits = 1 }, - [0xA9A4DB09] = { model = "u_m_m_dorhomesteadhusband_01", hash = 0xA9A4DB09, outfits = 1 }, - [0xCA3F1D23] = { model = "u_m_m_emrfarmhand_03", hash = 0xCA3F1D23, outfits = 2 }, - [0xD08F9FEC] = { model = "u_m_m_emrfather_01", hash = 0xD08F9FEC, outfits = 5 }, - [0x9955028D] = { model = "u_m_m_executioner_01", hash = 0x9955028D, outfits = 1 }, - [0x0CD32813] = { model = "u_m_m_fatduster_01", hash = 0x0CD32813, outfits = 2 }, - [0x28F7679D] = { model = "u_m_m_finale2_aa_upperclass_01", hash = 0x28F7679D, outfits = 2 }, - [0x0E8B4AB9] = { model = "u_m_m_galastringquartet_01", hash = 0x0E8B4AB9, outfits = 2 }, - [0x4418B5DF] = { model = "u_m_m_galastringquartet_02", hash = 0x4418B5DF, outfits = 2 }, - [0x313F102C] = { model = "u_m_m_galastringquartet_03", hash = 0x313F102C, outfits = 2 }, - [0x677D7CA8] = { model = "u_m_m_galastringquartet_04", hash = 0x677D7CA8, outfits = 2 }, - [0x51B75106] = { model = "u_m_m_gamdoorman_01", hash = 0x51B75106, outfits = 2 }, - [0xE5DA06C1] = { model = "u_m_m_hhrrancher_01", hash = 0xE5DA06C1, outfits = 2 }, - [0x1E87BC0A] = { model = "u_m_m_htlforeman_01", hash = 0x1E87BC0A, outfits = 5 }, - [0xD1C51E05] = { model = "u_m_m_htlhusband_01", hash = 0xD1C51E05, outfits = 1 }, - [0x9B004750] = { model = "u_m_m_htlrancherbounty_01", hash = 0x9B004750, outfits = 2 }, - [0x8F6606D5] = { model = "u_m_m_islbum_01", hash = 0x8F6606D5, outfits = 1 }, - [0x1DEF8E8E] = { model = "u_m_m_lnsoutlaw_01", hash = 0x1DEF8E8E, outfits = 2 }, - [0x2BE12A71] = { model = "u_m_m_lnsoutlaw_02", hash = 0x2BE12A71, outfits = 2 }, - [0x68F3A489] = { model = "u_m_m_lnsoutlaw_03", hash = 0x68F3A489, outfits = 2 }, - [0x3881C3AA] = { model = "u_m_m_lnsoutlaw_04", hash = 0x3881C3AA, outfits = 2 }, - [0xCC4D780E] = { model = "u_m_m_lnsworker_01", hash = 0xCC4D780E, outfits = 2 }, - [0xB30E4590] = { model = "u_m_m_lnsworker_02", hash = 0xB30E4590, outfits = 2 }, - [0xA0EFA153] = { model = "u_m_m_lnsworker_03", hash = 0xA0EFA153, outfits = 2 }, - [0x91BD02EE] = { model = "u_m_m_lnsworker_04", hash = 0x91BD02EE, outfits = 2 }, - [0xF9EEA22E] = { model = "u_m_m_lrshomesteadtenant_01", hash = 0xF9EEA22E, outfits = 2 }, - [0xF91B281F] = { model = "u_m_m_mfrrancher_01", hash = 0xF91B281F, outfits = 2 }, - [0x6CD2AAFF] = { model = "u_m_m_mud3pimp_01", hash = 0x6CD2AAFF, outfits = 2 }, - [0x2E3911BA] = { model = "u_m_m_nbxbankerbounty_01", hash = 0x2E3911BA, outfits = 2 }, - [0x1EE53C9C] = { model = "u_m_m_nbxbartender_01", hash = 0x1EE53C9C, outfits = 9 }, - [0x0D1298F7] = { model = "u_m_m_nbxbartender_02", hash = 0x0D1298F7, outfits = 9 }, - [0xB752EDAF] = { model = "u_m_m_nbxboatticketseller_01", hash = 0xB752EDAF, outfits = 5 }, - [0x42507F3E] = { model = "u_m_m_nbxbronteasc_01", hash = 0x42507F3E, outfits = 1 }, - [0xB7F2F587] = { model = "u_m_m_nbxbrontegoon_01", hash = 0xB7F2F587, outfits = 1 }, - [0xE8BCA87C] = { model = "u_m_m_nbxbrontesecform_01", hash = 0xE8BCA87C, outfits = 1 }, - [0x54123716] = { model = "u_m_m_nbxgeneralstoreowner_01", hash = 0x54123716, outfits = 9 }, - [0xFC3D1E1B] = { model = "u_m_m_nbxgraverobber_01", hash = 0xFC3D1E1B, outfits = 2 }, - [0x7C7C9EA0] = { model = "u_m_m_nbxgraverobber_02", hash = 0x7C7C9EA0, outfits = 2 }, - [0x8FBDC522] = { model = "u_m_m_nbxgraverobber_03", hash = 0x8FBDC522, outfits = 2 }, - [0x3DB8A119] = { model = "u_m_m_nbxgraverobber_04", hash = 0x3DB8A119, outfits = 2 }, - [0x33EE8D85] = { model = "u_m_m_nbxgraverobber_05", hash = 0x33EE8D85, outfits = 2 }, - [0x2A66EA55] = { model = "u_m_m_nbxgunsmith_01", hash = 0x2A66EA55, outfits = 9 }, - [0x7A53E763] = { model = "u_m_m_nbxliveryworker_01", hash = 0x7A53E763, outfits = 2 }, - [0x668685E6] = { model = "u_m_m_nbxmusician_01", hash = 0x668685E6, outfits = 2 }, - [0xDD900EBD] = { model = "u_m_m_nbxpriest_01", hash = 0xDD900EBD, outfits = 1 }, - [0x6BE0A02F] = { model = "u_m_m_nbxresident_01", hash = 0x6BE0A02F, outfits = 2 }, - [0x4BB85FDB] = { model = "u_m_m_nbxresident_02", hash = 0x4BB85FDB, outfits = 2 }, - [0x597DFB66] = { model = "u_m_m_nbxresident_03", hash = 0x597DFB66, outfits = 2 }, - [0x271C96A4] = { model = "u_m_m_nbxresident_04", hash = 0x271C96A4, outfits = 2 }, - [0xE5C80F77] = { model = "u_m_m_nbxriverboatpitboss_01", hash = 0xE5C80F77, outfits = 2 }, - [0x16B38C17] = { model = "u_m_m_nbxriverboattarget_01", hash = 0x16B38C17, outfits = 2 }, - [0x1B2769D0] = { model = "u_m_m_nbxshadydealer_01", hash = 0x1B2769D0, outfits = 9 }, - [0xD43AE828] = { model = "u_m_m_nbxskiffdriver_01", hash = 0xD43AE828, outfits = 2 }, - [0x42352E08] = { model = "u_m_m_oddfellowparticipant_01", hash = 0x42352E08, outfits = 2 }, - [0xB6C0F55D] = { model = "u_m_m_odriscollbrawler_01", hash = 0xB6C0F55D, outfits = 3 }, - [0xC4162DA7] = { model = "u_m_m_orpguard_01", hash = 0xC4162DA7, outfits = 1 }, - [0xE0448D54] = { model = "u_m_m_racforeman_01", hash = 0xE0448D54, outfits = 5 }, - [0x6DE7AD0F] = { model = "u_m_m_racquartermaster_01", hash = 0x6DE7AD0F, outfits = 2 }, - [0x8E764EA7] = { model = "u_m_m_rhdbackupdeputy_01", hash = 0x8E764EA7, outfits = 2 }, - [0x7BABA912] = { model = "u_m_m_rhdbackupdeputy_02", hash = 0x7BABA912, outfits = 2 }, - [0x23DA7E9F] = { model = "u_m_m_rhdbartender_01", hash = 0x23DA7E9F, outfits = 7 }, - [0x2A37903E] = { model = "u_m_m_rhddoctor_01", hash = 0x2A37903E, outfits = 1 }, - [0x3A9FCA38] = { model = "u_m_m_rhdfiddleplayer_01", hash = 0x3A9FCA38, outfits = 2 }, - [0x9B9EF6B7] = { model = "u_m_m_rhdgenstoreowner_01", hash = 0x9B9EF6B7, outfits = 9 }, - [0x893751E8] = { model = "u_m_m_rhdgenstoreowner_02", hash = 0x893751E8, outfits = 9 }, - [0xADDA73CE] = { model = "u_m_m_rhdgunsmith_01", hash = 0xADDA73CE, outfits = 9 }, - [0x06B0DE6B] = { model = "u_m_m_rhdpreacher_01", hash = 0x06B0DE6B, outfits = 1 }, - [0xC76BB57A] = { model = "u_m_m_rhdsheriff_01", hash = 0xC76BB57A, outfits = 5 }, - [0x3F0EC349] = { model = "u_m_m_rhdtrainstationworker_01", hash = 0x3F0EC349, outfits = 5 }, - [0x2158A563] = { model = "u_m_m_rhdundertaker_01", hash = 0x2158A563, outfits = 1 }, - [0x6376F2EE] = { model = "u_m_m_riodonkeyrider_01", hash = 0x6376F2EE, outfits = 1 }, - [0x3B85803C] = { model = "u_m_m_rkfrancher_01", hash = 0x3B85803C, outfits = 1 }, - [0xA558BFEF] = { model = "u_m_m_rkrdonkeyrider_01", hash = 0xA558BFEF, outfits = 1 }, - [0xA209CB2A] = { model = "u_m_m_rwfrancher_01", hash = 0xA209CB2A, outfits = 1 }, - [0x128CDD40] = { model = "u_m_m_sdbankguard_01", hash = 0x128CDD40, outfits = 4 }, - [0x400E34A9] = { model = "u_m_m_sdcustomvendor_01", hash = 0x400E34A9, outfits = 9 }, - [0xF1029EA3] = { model = "u_m_m_sdexoticsshopkeeper_01", hash = 0xF1029EA3, outfits = 10 }, - [0xBE9D77E1] = { model = "u_m_m_sdphotographer_01", hash = 0xBE9D77E1, outfits = 2 }, - [0x5C99E1C2] = { model = "u_m_m_sdpolicechief_01", hash = 0x5C99E1C2, outfits = 5 }, - [0xCCB89BB7] = { model = "u_m_m_sdstrongwomanassistant_01", hash = 0xCCB89BB7, outfits = 1 }, - [0x23317990] = { model = "u_m_m_sdtrapper_01", hash = 0x23317990, outfits = 1 }, - [0x3FEE3412] = { model = "u_m_m_sdwealthytraveller_01", hash = 0x3FEE3412, outfits = 5 }, - [0x62AD6C6C] = { model = "u_m_m_shackserialkiller_01", hash = 0x62AD6C6C, outfits = 1 }, - [0x7D796588] = { model = "u_m_m_shacktwin_01", hash = 0x7D796588, outfits = 2 }, - [0x7A2F5EF4] = { model = "u_m_m_shacktwin_02", hash = 0x7A2F5EF4, outfits = 2 }, - [0x08534AF0] = { model = "u_m_m_skinnyoldguy_01", hash = 0x08534AF0, outfits = 1 }, - [0x199B5D2F] = { model = "u_m_m_story_armadillo_01", hash = 0x199B5D2F, outfits = 1 }, - [0x019AAC14] = { model = "u_m_m_story_cannibal_01", hash = 0x019AAC14, outfits = 1 }, - [0xA8FDA7E1] = { model = "u_m_m_story_chelonian_01", hash = 0xA8FDA7E1, outfits = 1 }, - [0x2E663310] = { model = "u_m_m_story_copperhead_01", hash = 0x2E663310, outfits = 1 }, - [0x4FFBC75C] = { model = "u_m_m_story_creeper_01", hash = 0x4FFBC75C, outfits = 1 }, - [0x7E80C06D] = { model = "u_m_m_story_emeraldranch_01", hash = 0x7E80C06D, outfits = 1 }, - [0x65B3401E] = { model = "u_m_m_story_hunter_01", hash = 0x65B3401E, outfits = 1 }, - [0x82D7E004] = { model = "u_m_m_story_manzanita_01", hash = 0x82D7E004, outfits = 2 }, - [0x474080E1] = { model = "u_m_m_story_murfee_01", hash = 0x474080E1, outfits = 1 }, - [0xD6CDC88D] = { model = "u_m_m_story_pigfarm_01", hash = 0xD6CDC88D, outfits = 1 }, - [0x42F42CBF] = { model = "u_m_m_story_princess_01", hash = 0x42F42CBF, outfits = 1 }, - [0x82212B0D] = { model = "u_m_m_story_redharlow_01", hash = 0x82212B0D, outfits = 1 }, - [0xEDDB93E8] = { model = "u_m_m_story_rhodes_01", hash = 0xEDDB93E8, outfits = 1 }, - [0xCFA8C361] = { model = "u_m_m_story_sdstatue_01", hash = 0xCFA8C361, outfits = 1 }, - [0x0CF1DA06] = { model = "u_m_m_story_spectre_01", hash = 0x0CF1DA06, outfits = 1 }, - [0x54A21893] = { model = "u_m_m_story_treasure_01", hash = 0x54A21893, outfits = 1 }, - [0x628EBD88] = { model = "u_m_m_story_tumbleweed_01", hash = 0x628EBD88, outfits = 1 }, - [0x565FF75B] = { model = "u_m_m_story_valentine_01", hash = 0x565FF75B, outfits = 1 }, - [0x1173F849] = { model = "u_m_m_strfreightstationowner_01", hash = 0x1173F849, outfits = 5 }, - [0x104FE6B3] = { model = "u_m_m_strgenstoreowner_01", hash = 0x104FE6B3, outfits = 9 }, - [0x77EEF186] = { model = "u_m_m_strsherriff_01", hash = 0x77EEF186, outfits = 5 }, - [0x4128755F] = { model = "u_m_m_strwelcomecenter_01", hash = 0x4128755F, outfits = 9 }, - [0xD31B229F] = { model = "u_m_m_tumbartender_01", hash = 0xD31B229F, outfits = 7 }, - [0x9168B88B] = { model = "u_m_m_tumbutcher_01", hash = 0x9168B88B, outfits = 9 }, - [0x79FB001C] = { model = "u_m_m_tumgunsmith_01", hash = 0x79FB001C, outfits = 9 }, - [0x6712F25D] = { model = "u_m_m_tumtrainstationworker_01", hash = 0x6712F25D, outfits = 1 }, - [0x7A5AC236] = { model = "u_m_m_unibountyhunter_01", hash = 0x7A5AC236, outfits = 1 }, - [0xB0962EB0] = { model = "u_m_m_unibountyhunter_02", hash = 0xB0962EB0, outfits = 1 }, - [0x0EBB9BCE] = { model = "u_m_m_unidusterhenchman_01", hash = 0x0EBB9BCE, outfits = 2 }, - [0xE302445C] = { model = "u_m_m_unidusterhenchman_02", hash = 0xE302445C, outfits = 2 }, - [0xD1B321BE] = { model = "u_m_m_unidusterhenchman_03", hash = 0xD1B321BE, outfits = 2 }, - [0x3C9E3212] = { model = "u_m_m_unidusterleader_01", hash = 0x3C9E3212, outfits = 2 }, - [0x1BC9C8FC] = { model = "u_m_m_uniexconfedsbounty_01", hash = 0x1BC9C8FC, outfits = 2 }, - [0x5FC8B319] = { model = "u_m_m_unionleader_01", hash = 0x5FC8B319, outfits = 2 }, - [0x6D1BCDBF] = { model = "u_m_m_unionleader_02", hash = 0x6D1BCDBF, outfits = 2 }, - [0x5E1148BF] = { model = "u_m_m_unipeepingtom_01", hash = 0x5E1148BF, outfits = 2 }, - [0x075398B9] = { model = "u_m_m_valauctionforman_01", hash = 0x075398B9, outfits = 7 }, - [0x4EDB27C7] = { model = "u_m_m_valauctionforman_02", hash = 0x4EDB27C7, outfits = 6 }, - [0xD371AE64] = { model = "u_m_m_valbarber_01", hash = 0xD371AE64, outfits = 9 }, - [0xB733CF0F] = { model = "u_m_m_valbartender_01", hash = 0xB733CF0F, outfits = 9 }, - [0x69019A68] = { model = "u_m_m_valbeartrap_01", hash = 0x69019A68, outfits = 5 }, - [0x23E0698B] = { model = "u_m_m_valbutcher_01", hash = 0x23E0698B, outfits = 9 }, - [0x71545DA5] = { model = "u_m_m_valdoctor_01", hash = 0x71545DA5, outfits = 9 }, - [0x9B3E551B] = { model = "u_m_m_valgenstoreowner_01", hash = 0x9B3E551B, outfits = 9 }, - [0xBBC5D27F] = { model = "u_m_m_valgunsmith_01", hash = 0xBBC5D27F, outfits = 9 }, - [0xB66F12F2] = { model = "u_m_m_valhotelowner_01", hash = 0xB66F12F2, outfits = 9 }, - [0xD6B24482] = { model = "u_m_m_valpokerplayer_01", hash = 0xD6B24482, outfits = 5 }, - [0x03969E2E] = { model = "u_m_m_valpokerplayer_02", hash = 0x03969E2E, outfits = 5 }, - [0x16681434] = { model = "u_m_m_valpoopingman_01", hash = 0x16681434, outfits = 4 }, - [0x93B09465] = { model = "u_m_m_valsheriff_01", hash = 0x93B09465, outfits = 5 }, - [0xD0D41B25] = { model = "u_m_m_valtheman_01", hash = 0xD0D41B25, outfits = 9 }, - [0xC4CC5EE6] = { model = "u_m_m_valtownfolk_01", hash = 0xC4CC5EE6, outfits = 4 }, - [0xA5F92140] = { model = "u_m_m_valtownfolk_02", hash = 0xA5F92140, outfits = 4 }, - [0xC606A445] = { model = "u_m_m_vhtstationclerk_01", hash = 0xC606A445, outfits = 9 }, - [0x42DD47BF] = { model = "u_m_m_walgeneralstoreowner_01", hash = 0x42DD47BF, outfits = 5 }, - [0x5EDC8972] = { model = "u_m_m_wapofficial_01", hash = 0x5EDC8972, outfits = 2 }, - [0xDF9051C0] = { model = "u_m_m_wtccowboy_04", hash = 0xDF9051C0, outfits = 2 }, - [0xDD6D1B34] = { model = "u_m_o_armbartender_01", hash = 0xDD6D1B34, outfits = 9 }, - [0x1CEF1945] = { model = "u_m_o_asbsheriff_01", hash = 0x1CEF1945, outfits = 5 }, - [0xA0325B4E] = { model = "u_m_o_bht_docwormwood", hash = 0xA0325B4E, outfits = 2 }, - [0x8E81C857] = { model = "u_m_o_blwbartender_01", hash = 0x8E81C857, outfits = 9 }, - [0x6958B082] = { model = "u_m_o_blwgeneralstoreowner_01", hash = 0x6958B082, outfits = 9 }, - [0x3B99237E] = { model = "u_m_o_blwphotographer_01", hash = 0x3B99237E, outfits = 9 }, - [0x67FB6A21] = { model = "u_m_o_blwpolicechief_01", hash = 0x67FB6A21, outfits = 7 }, - [0x10E06765] = { model = "u_m_o_cajhomestead_01", hash = 0x10E06765, outfits = 1 }, - [0xECA3D50D] = { model = "u_m_o_cmrcivilwarcommando_01", hash = 0xECA3D50D, outfits = 2 }, - [0xDE86823E] = { model = "u_m_o_mapwiseoldman_01", hash = 0xDE86823E, outfits = 5 }, - [0xAFFEF16E] = { model = "u_m_o_oldcajun_01", hash = 0xAFFEF16E, outfits = 1 }, - [0xDD1C10E8] = { model = "u_m_o_pshrancher_01", hash = 0xDD1C10E8, outfits = 5 }, - [0xABC22ABF] = { model = "u_m_o_rigtrainstationworker_01", hash = 0xABC22ABF, outfits = 5 }, - [0x904CC489] = { model = "u_m_o_valbartender_01", hash = 0x904CC489, outfits = 8 }, - [0xCE72526E] = { model = "u_m_o_vhtexoticshopkeeper_01", hash = 0xCE72526E, outfits = 9 }, - [0x1B8FD0E7] = { model = "u_m_y_cajhomestead_01", hash = 0x1B8FD0E7, outfits = 1 }, - [0x1B6F073A] = { model = "u_m_y_czphomesteadson_01", hash = 0x1B6F073A, outfits = 1 }, - [0x0530DABA] = { model = "u_m_y_czphomesteadson_02", hash = 0x0530DABA, outfits = 1 }, - [0xAE09AC6D] = { model = "u_m_y_czphomesteadson_03", hash = 0xAE09AC6D, outfits = 1 }, - [0x9992837F] = { model = "u_m_y_czphomesteadson_04", hash = 0x9992837F, outfits = 1 }, - [0xD23774C8] = { model = "u_m_y_czphomesteadson_05", hash = 0xD23774C8, outfits = 1 }, - [0x4152ADFB] = { model = "u_m_y_duellistbounty_01", hash = 0x4152ADFB, outfits = 2 }, - [0x559BD1B7] = { model = "u_m_y_emrson_01", hash = 0x559BD1B7, outfits = 4 }, - [0xB60F7B1B] = { model = "u_m_y_htlworker_01", hash = 0xB60F7B1B, outfits = 5 }, - [0xC8661FCC] = { model = "u_m_y_htlworker_02", hash = 0xC8661FCC, outfits = 5 }, - [0xBC5CFF49] = { model = "u_m_y_shackstarvingkid_01", hash = 0xBC5CFF49, outfits = 3 }, - [0x5087BED1] = { model = "cs_mp_agent_hixon", hash = 0x5087BED1, outfits = 2 }, - [0x81C2FD57] = { model = "cs_mp_dannylee", hash = 0x81C2FD57, outfits = 2 }, - [0x024BE4BE] = { model = "cs_mp_gus_macmillan", hash = 0x024BE4BE, outfits = 2 }, - [0x9BD92566] = { model = "cs_mp_harriet_davenport", hash = 0x9BD92566, outfits = 1 }, - [0x048FCA26] = { model = "cs_mp_lem", hash = 0x048FCA26, outfits = 3 }, - [0xF0DA3AE5] = { model = "cs_mp_maggie", hash = 0xF0DA3AE5, outfits = 2 }, - [0x7666911B] = { model = "cs_mp_seth", hash = 0x7666911B, outfits = 1 }, - [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, - [0x2830CF33] = { model = "mp_a_c_alligator_01", hash = 0x2830CF33, outfits = 4 }, - [0xBB746741] = { model = "mp_a_c_beaver_01", hash = 0xBB746741, outfits = 3 }, - [0xE8CBC01C] = { model = "mp_a_c_boar_01", hash = 0xE8CBC01C, outfits = 5 }, - [0xAA89BB8D] = { model = "mp_a_c_cougar_01", hash = 0xAA89BB8D, outfits = 4 }, - [0xB20D360D] = { model = "mp_a_c_coyote_01", hash = 0xB20D360D, outfits = 4 }, - [0xB91BAB89] = { model = "mp_a_c_panther_01", hash = 0xB91BAB89, outfits = 4 }, - [0xAD02460F] = { model = "mp_a_c_wolf_01", hash = 0xAD02460F, outfits = 5 }, - [0x2DA2EA3B] = { model = "mp_a_f_m_saloonpatrons_01", hash = 0x2DA2EA3B, outfits = 20 }, - [0x51323159] = { model = "mp_a_f_m_saloonpatrons_02", hash = 0x51323159, outfits = 22 }, - [0x6336D562] = { model = "mp_a_f_m_saloonpatrons_03", hash = 0x6336D562, outfits = 20 }, - [0x715D71AF] = { model = "mp_a_f_m_saloonpatrons_04", hash = 0x715D71AF, outfits = 20 }, - [0x83181528] = { model = "mp_a_f_m_saloonpatrons_05", hash = 0x83181528, outfits = 20 }, - [0x80451592] = { model = "mp_a_m_m_moonshinemakers_01", hash = 0x80451592, outfits = 30 }, - [0x9A2437B7] = { model = "mp_a_m_m_saloonpatrons_01", hash = 0x9A2437B7, outfits = 35 }, - [0x51AB26BE] = { model = "mp_a_m_m_saloonpatrons_02", hash = 0x51AB26BE, outfits = 35 }, - [0x40E58533] = { model = "mp_a_m_m_saloonpatrons_03", hash = 0x40E58533, outfits = 35 }, - [0x7610EF89] = { model = "mp_a_m_m_saloonpatrons_04", hash = 0x7610EF89, outfits = 35 }, - [0x63D64B14] = { model = "mp_a_m_m_saloonpatrons_05", hash = 0x63D64B14, outfits = 35 }, - [0xBAD963AE] = { model = "mp_g_m_m_animalpoachers_01", hash = 0xBAD963AE, outfits = 71 }, - [0xF2C429A7] = { model = "mp_g_m_m_unicriminals_03", hash = 0xF2C429A7, outfits = 55 }, - [0x44AA4D72] = { model = "mp_g_m_m_unicriminals_04", hash = 0x44AA4D72, outfits = 55 }, - [0x5736728A] = { model = "mp_g_m_m_unicriminals_05", hash = 0x5736728A, outfits = 55 }, - [0x2928966F] = { model = "mp_g_m_m_unicriminals_06", hash = 0x2928966F, outfits = 50 }, - [0x3D89BF31] = { model = "mp_g_m_m_unicriminals_07", hash = 0x3D89BF31, outfits = 55 }, - [0x8F336283] = { model = "mp_g_m_m_unicriminals_08", hash = 0x8F336283, outfits = 50 }, - [0x5E058028] = { model = "mp_g_m_m_unicriminals_09", hash = 0x5E058028, outfits = 50 }, - [0xD3754E47] = { model = "mp_re_moonshinecamp_males_01", hash = 0xD3754E47, outfits = 10 }, - [0xD0AC86C4] = { model = "mp_s_m_m_revenueagents_01", hash = 0xD0AC86C4, outfits = 49 }, - [0xA7E717F4] = { model = "mp_u_f_m_buyer_improved_01", hash = 0xA7E717F4, outfits = 1 }, - [0xB7FC381E] = { model = "mp_u_f_m_buyer_improved_02", hash = 0xB7FC381E, outfits = 1 }, - [0x8AB3310A] = { model = "mp_u_f_m_buyer_regular_01", hash = 0x8AB3310A, outfits = 1 }, - [0xE065DC6E] = { model = "mp_u_f_m_buyer_regular_02", hash = 0xE065DC6E, outfits = 1 }, - [0x5DDFB326] = { model = "mp_u_f_m_buyer_special_01", hash = 0x5DDFB326, outfits = 1 }, - [0x53A19EAA] = { model = "mp_u_f_m_buyer_special_02", hash = 0x53A19EAA, outfits = 1 }, - [0x32ED72B1] = { model = "mp_u_m_m_buyer_default_01", hash = 0x32ED72B1, outfits = 1 }, - [0x60F676A5] = { model = "mp_u_m_m_buyer_improved_01", hash = 0x60F676A5, outfits = 1 }, - [0xE7BD8435] = { model = "mp_u_m_m_buyer_improved_02", hash = 0xE7BD8435, outfits = 1 }, - [0x0380BBBB] = { model = "mp_u_m_m_buyer_improved_03", hash = 0x0380BBBB, outfits = 1 }, - [0x9767E38B] = { model = "mp_u_m_m_buyer_improved_04", hash = 0x9767E38B, outfits = 1 }, - [0x6929070E] = { model = "mp_u_m_m_buyer_improved_05", hash = 0x6929070E, outfits = 1 }, - [0x3AC5AA44] = { model = "mp_u_m_m_buyer_improved_06", hash = 0x3AC5AA44, outfits = 1 }, - [0x8A9AC9F1] = { model = "mp_u_m_m_buyer_improved_07", hash = 0x8A9AC9F1, outfits = 1 }, - [0x75CFA027] = { model = "mp_u_m_m_buyer_improved_08", hash = 0x75CFA027, outfits = 1 }, - [0x1DBD9378] = { model = "mp_u_m_m_buyer_regular_01", hash = 0x1DBD9378, outfits = 1 }, - [0x2FEC37D5] = { model = "mp_u_m_m_buyer_regular_02", hash = 0x2FEC37D5, outfits = 1 }, - [0x41235A43] = { model = "mp_u_m_m_buyer_regular_03", hash = 0x41235A43, outfits = 1 }, - [0x5358FEAE] = { model = "mp_u_m_m_buyer_regular_04", hash = 0x5358FEAE, outfits = 1 }, - [0x41125A1D] = { model = "mp_u_m_m_buyer_regular_05", hash = 0x41125A1D, outfits = 1 }, - [0x5373FEE0] = { model = "mp_u_m_m_buyer_regular_06", hash = 0x5373FEE0, outfits = 1 }, - [0xE6BB2570] = { model = "mp_u_m_m_buyer_regular_07", hash = 0xE6BB2570, outfits = 1 }, - [0xF8F549E4] = { model = "mp_u_m_m_buyer_regular_08", hash = 0xF8F549E4, outfits = 1 }, - [0x31227E9C] = { model = "mp_u_m_m_buyer_special_01", hash = 0x31227E9C, outfits = 1 }, - [0xFED89A09] = { model = "mp_u_m_m_buyer_special_02", hash = 0xFED89A09, outfits = 1 }, - [0x0DF73846] = { model = "mp_u_m_m_buyer_special_03", hash = 0x0DF73846, outfits = 1 }, - [0xE479E544] = { model = "mp_u_m_m_buyer_special_04", hash = 0xE479E544, outfits = 1 }, - [0xB23B00C7] = { model = "mp_u_m_m_buyer_special_05", hash = 0xB23B00C7, outfits = 1 }, - [0xC8052C5B] = { model = "mp_u_m_m_buyer_special_06", hash = 0xC8052C5B, outfits = 1 }, - [0xB6FF8A54] = { model = "mp_u_m_m_buyer_special_07", hash = 0xB6FF8A54, outfits = 1 }, - [0xCDCAB7EA] = { model = "mp_u_m_m_buyer_special_08", hash = 0xCDCAB7EA, outfits = 1 }, - [0x54B1C872] = { model = "mp_u_m_m_lawcamp_prisoner_01", hash = 0x54B1C872, outfits = 1 }, - [0x60C69F07] = { model = "mp_u_m_m_saloonbrawler_01", hash = 0x60C69F07, outfits = 1 }, - [0xC45F6627] = { model = "mp_u_m_m_saloonbrawler_02", hash = 0xC45F6627, outfits = 1 }, - [0x928C8282] = { model = "mp_u_m_m_saloonbrawler_03", hash = 0x928C8282, outfits = 1 }, - [0xED9F38AE] = { model = "mp_u_m_m_saloonbrawler_04", hash = 0xED9F38AE, outfits = 1 }, - [0xB427C5B8] = { model = "mp_u_m_m_saloonbrawler_05", hash = 0xB427C5B8, outfits = 1 }, - [0x5B9D94A5] = { model = "mp_u_m_m_saloonbrawler_06", hash = 0x5B9D94A5, outfits = 1 }, - [0x6B3733D8] = { model = "mp_u_m_m_saloonbrawler_07", hash = 0x6B3733D8, outfits = 1 }, - [0xA8FBAF60] = { model = "mp_u_m_m_saloonbrawler_08", hash = 0xA8FBAF60, outfits = 1 }, - [0x76BDCAE5] = { model = "mp_u_m_m_saloonbrawler_09", hash = 0x76BDCAE5, outfits = 1 }, - [0x1150FEA9] = { model = "mp_u_m_m_saloonbrawler_10", hash = 0x1150FEA9, outfits = 1 }, - [0xE29AA13D] = { model = "mp_u_m_m_saloonbrawler_11", hash = 0xE29AA13D, outfits = 1 }, - [0x2DAFB766] = { model = "mp_u_m_m_saloonbrawler_12", hash = 0x2DAFB766, outfits = 1 }, - [0xFFDC5BC0] = { model = "mp_u_m_m_saloonbrawler_13", hash = 0xFFDC5BC0, outfits = 1 }, - [0x96390873] = { model = "mp_u_m_m_saloonbrawler_14", hash = 0x96390873, outfits = 1 }, - [0xDF251C39] = { model = "mp_a_c_bear_01", hash = 0xDF251C39, outfits = 4 }, - [0xE1884260] = { model = "mp_a_c_bighornram_01", hash = 0xE1884260, outfits = 5 }, - [0x9770DD23] = { model = "mp_a_c_buck_01", hash = 0x9770DD23, outfits = 6 }, - [0xC971C4C6] = { model = "mp_a_c_buffalo_01", hash = 0xC971C4C6, outfits = 4 }, - [0xBFDC1D2A] = { model = "mp_a_c_dogamericanfoxhound_01", hash = 0xBFDC1D2A, outfits = 2 }, - [0xD1641E60] = { model = "mp_a_c_elk_01", hash = 0xD1641E60, outfits = 4 }, - [0xDECA9205] = { model = "mp_a_c_fox_01", hash = 0xDECA9205, outfits = 4 }, - [0xF8FC8F63] = { model = "mp_a_c_moose_01", hash = 0xF8FC8F63, outfits = 4 }, - [0x24C5B680] = { model = "mp_a_c_owl_01", hash = 0x24C5B680, outfits = 1 }, - [0xDECED2FD] = { model = "mp_a_c_possum_01", hash = 0xDECED2FD, outfits = 1 }, - [0xFE40DC76] = { model = "mp_a_c_pronghorn_01", hash = 0xFE40DC76, outfits = 1 }, - [0xF4EA3B49] = { model = "mp_a_c_rabbit_01", hash = 0xF4EA3B49, outfits = 1 }, - [0x9A61FCB8] = { model = "mp_a_c_sheep_01", hash = 0x9A61FCB8, outfits = 1 }, - [0x3B7BD8D3] = { model = "mp_a_f_m_saloonband_females_01", hash = 0x3B7BD8D3, outfits = 5 }, - [0xF00A64EC] = { model = "mp_u_m_m_animalpoacher_01", hash = 0xF00A64EC, outfits = 1 }, - [0xE1D74886] = { model = "mp_u_m_m_animalpoacher_02", hash = 0xE1D74886, outfits = 1 }, - [0x92552983] = { model = "mp_u_m_m_animalpoacher_03", hash = 0x92552983, outfits = 1 }, - [0x84298D2C] = { model = "mp_u_m_m_animalpoacher_04", hash = 0x84298D2C, outfits = 1 }, - [0xA6F2D2BE] = { model = "mp_u_m_m_animalpoacher_05", hash = 0xA6F2D2BE, outfits = 2 }, - [0x5895B605] = { model = "mp_u_m_m_animalpoacher_06", hash = 0x5895B605, outfits = 1 }, - [0x3DA8002A] = { model = "mp_u_m_m_animalpoacher_07", hash = 0x3DA8002A, outfits = 1 }, - [0x7001E4DD] = { model = "mp_u_m_m_animalpoacher_08", hash = 0x7001E4DD, outfits = 1 }, - [0x624BC971] = { model = "mp_u_m_m_animalpoacher_09", hash = 0x624BC971, outfits = 1 }, - [0xB25E4617] = { model = "mp_g_f_m_armyoffear_01", hash = 0xB25E4617, outfits = 20 }, - [0x19382FFC] = { model = "mp_g_m_m_armyoffear_01", hash = 0x19382FFC, outfits = 30 }, - [0x9A755448] = { model = "cs_mp_bessie_adair", hash = 0x9A755448, outfits = 1 }, - [0x29465719] = { model = "mp_a_c_chicken_01", hash = 0x29465719, outfits = 2 }, - [0x2EA769DD] = { model = "mp_a_c_deer_01", hash = 0x2EA769DD, outfits = 1 }, - [0xBAFD3C1A] = { model = "mp_a_m_m_saloonband_males_01", hash = 0xBAFD3C1A, outfits = 20 }, - [0x482F6E79] = { model = "mp_re_slumpedhunter_females_01", hash = 0x482F6E79, outfits = 4 }, - [0x48F23D48] = { model = "mp_re_slumpedhunter_males_01", hash = 0x48F23D48, outfits = 6 }, - [0xD2D2D2D4] = { model = "mp_re_suspendedhunter_males_01", hash = 0xD2D2D2D4, outfits = 2 }, - [0xEE7487F0] = { model = "mp_u_f_m_nat_traveler_01", hash = 0xEE7487F0, outfits = 1 }, - [0x71E6D0A6] = { model = "mp_u_f_m_nat_worker_01", hash = 0x71E6D0A6, outfits = 1 }, - [0xA48BB5F3] = { model = "mp_u_f_m_nat_worker_02", hash = 0xA48BB5F3, outfits = 1 }, - [0x846A2728] = { model = "mp_u_f_m_saloonpianist_01", hash = 0x846A2728, outfits = 1 }, - [0xCF9DD811] = { model = "mp_u_m_m_dyingpoacher_01", hash = 0xCF9DD811, outfits = 1 }, - [0xDF5BF78D] = { model = "mp_u_m_m_dyingpoacher_02", hash = 0xDF5BF78D, outfits = 1 }, - [0x6C51917A] = { model = "mp_u_m_m_dyingpoacher_03", hash = 0x6C51917A, outfits = 1 }, - [0x89F8CCC8] = { model = "mp_u_m_m_dyingpoacher_04", hash = 0x89F8CCC8, outfits = 1 }, - [0x9AB66E43] = { model = "mp_u_m_m_dyingpoacher_05", hash = 0x9AB66E43, outfits = 1 }, - [0x0B979763] = { model = "mp_u_m_m_lawcamp_lawman_01", hash = 0x0B979763, outfits = 1 }, - [0xF9A5F380] = { model = "mp_u_m_m_lawcamp_lawman_02", hash = 0xF9A5F380, outfits = 1 }, - [0x7B379BDB] = { model = "mp_u_m_m_lawcamp_leadofficer_01", hash = 0x7B379BDB, outfits = 1 }, - [0x58E9D4F4] = { model = "mp_u_m_m_nat_farmer_01", hash = 0x58E9D4F4, outfits = 1 }, - [0xDB15D94E] = { model = "mp_u_m_m_nat_farmer_02", hash = 0xDB15D94E, outfits = 1 }, - [0x0D3CBD9B] = { model = "mp_u_m_m_nat_farmer_03", hash = 0x0D3CBD9B, outfits = 1 }, - [0xEFDC82DB] = { model = "mp_u_m_m_nat_farmer_04", hash = 0xEFDC82DB, outfits = 1 }, - [0x2CDF85F7] = { model = "mp_u_m_m_nat_photographer_01", hash = 0x2CDF85F7, outfits = 1 }, - [0x3E92A95D] = { model = "mp_u_m_m_nat_photographer_02", hash = 0x3E92A95D, outfits = 1 }, - [0x2BE8BC9C] = { model = "mp_u_m_m_nat_rancher_01", hash = 0x2BE8BC9C, outfits = 1 }, - [0x7AA6DA17] = { model = "mp_u_m_m_nat_rancher_02", hash = 0x7AA6DA17, outfits = 1 }, - [0x02A89468] = { model = "mp_u_m_m_nat_townfolk_01", hash = 0x02A89468, outfits = 1 }, - [0xB9629EFC] = { model = "mp_u_m_m_strwelcomecenter_02", hash = 0xB9629EFC, outfits = 1 }, - [0xC161E8A4] = { model = "MP_BEAU_BINK_FEMALES_01", hash = 0xC161E8A4, outfits = 1 }, - [0xEDF51277] = { model = "MP_BEAU_BINK_MALES_01", hash = 0xEDF51277, outfits = 7 }, - [0x9ACE7910] = { model = "MP_CARMELA_BINK_VICTIM_MALES_01", hash = 0x9ACE7910, outfits = 5 }, - [0x878040F4] = { model = "MP_CD_REVENGEMAYOR_01", hash = 0x878040F4, outfits = 21 }, - [0xF7831C85] = { model = "mp_fm_bounty_caged_males_01", hash = 0xF7831C85, outfits = 2 }, - [0x3F85E344] = { model = "mp_fm_bounty_ct_corpses_01", hash = 0x3F85E344, outfits = 2 }, - [0x85885C97] = { model = "mp_fm_bounty_hideout_males_01", hash = 0x85885C97, outfits = 1 }, - [0x696D66E4] = { model = "mp_fm_bounty_horde_males_01", hash = 0x696D66E4, outfits = 5 }, - [0x813F5ED3] = { model = "mp_fm_bounty_infiltration_males_01", hash = 0x813F5ED3, outfits = 2 }, - [0xF6458169] = { model = "MP_FM_BOUNTYTARGET_MALES_DLC008_01", hash = 0xF6458169, outfits = 53 }, - [0xC1FD6394] = { model = "mp_fm_knownbounty_guards_01", hash = 0xC1FD6394, outfits = 1 }, - [0xD9162F29] = { model = "MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", hash = 0xD9162F29, outfits = 1 }, - [0xA97E2D65] = { model = "mp_fm_knownbounty_informants_males_01", hash = 0xA97E2D65, outfits = 7 }, - [0x32C42256] = { model = "mp_fm_multitrack_victims_males_01", hash = 0x32C42256, outfits = 2 }, - [0x4957CFEF] = { model = "mp_fm_stakeout_corpses_males_01", hash = 0x4957CFEF, outfits = 2 }, - [0x24497ABF] = { model = "mp_fm_stakeout_poker_males_01", hash = 0x24497ABF, outfits = 2 }, - [0xA5F85792] = { model = "mp_fm_stakeout_target_males_01", hash = 0xA5F85792, outfits = 6 }, - [0x1E14106E] = { model = "mp_fm_track_prospector_01", hash = 0x1E14106E, outfits = 1 }, - [0xC8A1EC4C] = { model = "mp_fm_track_sd_lawman_01", hash = 0xC8A1EC4C, outfits = 1 }, - [0xAA6CE21D] = { model = "mp_fm_track_targets_males_01", hash = 0xAA6CE21D, outfits = 3 }, - [0x83CA7BB6] = { model = "MP_G_F_M_CULTGUARDS_01", hash = 0x83CA7BB6, outfits = 16 }, - [0xC882A3EE] = { model = "mp_g_f_m_cultmembers_01", hash = 0xC882A3EE, outfits = 13 }, - [0xD0DFAE8C] = { model = "MP_G_M_M_CULTGUARDS_01", hash = 0xD0DFAE8C, outfits = 27 }, - [0xAE40CCCC] = { model = "mp_g_m_m_cultmembers_01", hash = 0xAE40CCCC, outfits = 22 }, - [0x7F1377B7] = { model = "MP_G_M_M_MERCS_01", hash = 0x7F1377B7, outfits = 2 }, - [0xE733264E] = { model = "MP_G_M_M_RIFLECRONIES_01", hash = 0xE733264E, outfits = 6 }, - [0x9C1EBED9] = { model = "MP_LBM_CARMELA_BANDITOS_01", hash = 0x9C1EBED9, outfits = 4 }, - [0x96CEA293] = { model = "MP_LM_STEALHORSE_BUYERS_01", hash = 0x96CEA293, outfits = 3 }, - [0x8C5F7BCC] = { model = "MP_U_F_M_CULTPRIEST_01", hash = 0x8C5F7BCC, outfits = 1 }, - [0x5A5EA2DF] = { model = "MP_U_F_M_LEGENDARYBOUNTY_03", hash = 0x5A5EA2DF, outfits = 5 }, - [0xF99F0909] = { model = "MP_U_M_M_BANKPRISONER_01", hash = 0xF99F0909, outfits = 1 }, - [0xA8BEA305] = { model = "MP_U_M_M_BINKMERCS_01", hash = 0xA8BEA305, outfits = 7 }, - [0xBF0B11F0] = { model = "MP_U_M_M_CULTPRIEST_01", hash = 0xBF0B11F0, outfits = 3 }, - [0xBA59A221] = { model = "MP_U_M_M_DROPOFF_JOSIAH_01", hash = 0xBA59A221, outfits = 1 }, - [0x9A9164E1] = { model = "MP_U_M_M_LEGENDARYBOUNTY_08", hash = 0x9A9164E1, outfits = 3 }, - [0x872A3E13] = { model = "MP_U_M_M_LEGENDARYBOUNTY_09", hash = 0x872A3E13, outfits = 1 }, - [0x11952F60] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_01", hash = 0x11952F60, outfits = 1 }, - [0xFFE38BFD] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_02", hash = 0xFFE38BFD, outfits = 1 }, - [0x2D22E67B] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03", hash = 0x2D22E67B, outfits = 1 }, - [0x76D0DAE4] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03B", hash = 0x76D0DAE4, outfits = 1 }, - [0x0329C664] = { model = "MP_U_M_M_LOM_TRAIN_CONDUCTOR_01", hash = 0x0329C664, outfits = 1 }, - [0x059D1627] = { model = "MP_U_M_M_OUTLAW_COACHDRIVER_01", hash = 0x059D1627, outfits = 1 }, - [0x08258837] = { model = "MP_U_M_M_FOS_DOCKWORKER_01", hash = 0x08258837, outfits = 1 }, - [0x0838D137] = { model = "MP_U_M_M_DROPOFF_BRONTE_01", hash = 0x0838D137, outfits = 1 }, - [0x0BE08FB6] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_02", hash = 0x0BE08FB6, outfits = 1 }, - [0x0DD5100A] = { model = "MP_U_M_M_FOS_HARBORMASTER_01", hash = 0x0DD5100A, outfits = 1 }, - [0x0FD9B9AD] = { model = "MP_U_M_M_FOS_TOWN_VIGILANTE_01", hash = 0x0FD9B9AD, outfits = 1 }, - [0x139CC38E] = { model = "MP_U_M_M_OUTLAW_COVINGTON_01", hash = 0x139CC38E, outfits = 1 }, - [0x194B76E7] = { model = "MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x194B76E7, outfits = 5 }, - [0x1AA818AE] = { model = "MP_U_M_M_FOS_BAGHOLDERS_01", hash = 0x1AA818AE, outfits = 5 }, - [0x1D9AB32A] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_01", hash = 0x1D9AB32A, outfits = 1 }, - [0x25CBE18C] = { model = "MP_U_M_M_LOM_TRAIN_BARRICADE_01", hash = 0x25CBE18C, outfits = 7 }, - [0x30ED986F] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_02", hash = 0x30ED986F, outfits = 1 }, - [0x33191090] = { model = "MP_U_M_M_FOS_MUSICIAN_01", hash = 0x33191090, outfits = 1 }, - [0x358E2F94] = { model = "MP_CS_ANTONYFOREMEN", hash = 0x358E2F94, outfits = 2 }, - [0x358EDB23] = { model = "MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x358EDB23, outfits = 5 }, - [0x36B00529] = { model = "MP_U_M_M_FOS_RAILWAY_FOREMAN_01", hash = 0x36B00529, outfits = 1 }, - [0x3EECF401] = { model = "MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", hash = 0x3EECF401, outfits = 5 }, - [0x3F629157] = { model = "MP_U_M_M_PROTECT_ARMADILLO_01", hash = 0x3F629157, outfits = 1 }, - [0x46B92ED0] = { model = "MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01", hash = 0x46B92ED0, outfits = 5 }, - [0x510EBF17] = { model = "MP_U_M_M_LOM_TRAIN_PRISONERS_01", hash = 0x510EBF17, outfits = 2 }, - [0x57D3AE19] = { model = "MP_A_M_M_COACHGUARDS_01", hash = 0x57D3AE19, outfits = 15 }, - [0x58181CAF] = { model = "MP_U_M_M_FOS_ROGUETHIEF_01", hash = 0x58181CAF, outfits = 1 }, - [0x592FCF55] = { model = "MP_U_M_M_FOS_RAILWAY_DRIVER_01", hash = 0x592FCF55, outfits = 1 }, - [0x5DE76175] = { model = "MP_U_M_M_LOM_ASBMERCS_01", hash = 0x5DE76175, outfits = 2 }, - [0x5FBDB3E7] = { model = "MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01", hash = 0x5FBDB3E7, outfits = 1 }, - [0x617AD6A7] = { model = "MP_U_M_O_LOM_ASBFOREMAN_01", hash = 0x617AD6A7, outfits = 1 }, - [0x64BCC144] = { model = "MP_G_M_M_MOUNTAINMEN_01", hash = 0x64BCC144, outfits = 25 }, - [0x6829879B] = { model = "MP_U_M_M_PROTECT_STRAWBERRY_01", hash = 0x6829879B, outfits = 1 }, - [0x68CFBA8F] = { model = "MP_U_M_M_PROTECT_HALLOWEEN_NED_01", hash = 0x68CFBA8F, outfits = 1 }, - [0x6A78FE6C] = { model = "MP_U_M_M_OUTLAW_MPVICTIM_01", hash = 0x6A78FE6C, outfits = 1 }, - [0x6AB56BDA] = { model = "MP_U_M_M_LOM_SD_DOCKWORKER_01", hash = 0x6AB56BDA, outfits = 1 }, - [0x71A35899] = { model = "MP_U_M_M_FOS_TOWN_OUTLAW_01", hash = 0x71A35899, outfits = 4 }, - [0x7494D380] = { model = "MP_U_M_M_FOS_RECOVERY_RECIPIENT_01", hash = 0x7494D380, outfits = 6 }, - [0x7875E8E3] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_03", hash = 0x7875E8E3, outfits = 1 }, - [0x79912CAE] = { model = "MP_U_M_M_FOS_DROPOFF_01", hash = 0x79912CAE, outfits = 1 }, - [0x83123AF1] = { model = "MP_U_M_M_FOS_SDSALOON_GAMBLER_01", hash = 0x83123AF1, outfits = 1 }, - [0x8C37025E] = { model = "MP_U_M_M_LOM_TRAIN_LAWTARGET_01", hash = 0x8C37025E, outfits = 1 }, - [0x8D357D39] = { model = "MP_G_M_M_FOS_DEBTGANGCAPITALI_01", hash = 0x8D357D39, outfits = 5 }, - [0x8EA8D407] = { model = "MP_A_M_M_LOM_ASBMINERS_01", hash = 0x8EA8D407, outfits = 2 }, - [0x9012A8C2] = { model = "MP_FM_BOUNTY_HORDE_LAW_01", hash = 0x9012A8C2, outfits = 2 }, - [0x982C82C5] = { model = "MP_U_M_M_LOM_HEAD_SECURITY_01", hash = 0x982C82C5, outfits = 4 }, - [0x98C03046] = { model = "MP_U_M_M_FOS_SDSALOON_OWNER_01", hash = 0x98C03046, outfits = 1 }, - [0x9B2A9005] = { model = "MP_U_M_M_MUSICIAN_01", hash = 0x9B2A9005, outfits = 1 }, - [0x9DFA9B6E] = { model = "MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01", hash = 0x9DFA9B6E, outfits = 1 }, - [0x9E96638B] = { model = "MP_U_M_M_FOS_RAILWAY_BARON_01", hash = 0x9E96638B, outfits = 1 }, - [0xA1B84FC1] = { model = "MP_G_M_O_UNIEXCONFEDS_CAP_01", hash = 0xA1B84FC1, outfits = 1 }, - [0xA303FC9A] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_01", hash = 0xA303FC9A, outfits = 2 }, - [0xA37DBD30] = { model = "MP_U_M_M_INTERROGATOR_01", hash = 0xA37DBD30, outfits = 1 }, - [0xAADC8018] = { model = "CS_MP_POLICECHIEF_LAMBERT", hash = 0xAADC8018, outfits = 1 }, - [0xAF86511B] = { model = "MP_A_M_M_ASBMINERS_01", hash = 0xAF86511B, outfits = 2 }, - [0xAF9B36E2] = { model = "MP_U_M_M_ASBDEPUTY_01", hash = 0xAF9B36E2, outfits = 1 }, - [0xB06054ED] = { model = "MP_U_M_M_LOM_DROPOFF_BRONTE_01", hash = 0xB06054ED, outfits = 1 }, - [0xB4CD18D6] = { model = "MP_BINK_EMBER_OF_THE_EAST_MALES_01", hash = 0xB4CD18D6, outfits = 9 }, - [0xB4F3EF87] = { model = "mp_U_M_M_FOS_RAILWAY_GUARDS_01", hash = 0xB4F3EF87, outfits = 3 }, - [0xB50453FF] = { model = "MP_G_M_M_FOS_VIGILANTES_01", hash = 0xB50453FF, outfits = 10 }, - [0xBB22D33E] = { model = "mp_S_M_M_REVENUEAGENTS_CAP_01", hash = 0xBB22D33E, outfits = 3 }, - [0xBD27319D] = { model = "MP_U_M_M_LOM_SALOON_DRUNK_01", hash = 0xBD27319D, outfits = 1 }, - [0xBDD36DB5] = { model = "MP_A_M_M_ASBMINERS_02", hash = 0xBDD36DB5, outfits = 2 }, - [0xBE651417] = { model = "CS_MP_SENATOR_RICARD", hash = 0xBE651417, outfits = 2 }, - [0xC2B71883] = { model = "MP_U_M_M_LOM_TRAIN_CLERK_01", hash = 0xC2B71883, outfits = 1 }, - [0xC358949B] = { model = "MP_U_M_M_PROTECT_VALENTINE_01", hash = 0xC358949B, outfits = 1 }, - [0xC37F22A8] = { model = "MP_S_M_M_FOS_HARBORGUARDS_01", hash = 0xC37F22A8, outfits = 20 }, - [0xCB86F5E4] = { model = "MP_U_M_M_PROTECT_MERCER_CONTACT_01", hash = 0xCB86F5E4, outfits = 1 }, - [0xCD3F93CC] = { model = "MP_U_M_M_OUTLAW_RHD_NOBLE_01", hash = 0xCD3F93CC, outfits = 4 }, - [0xD2D648CE] = { model = "MP_A_M_M_JAMESONGUARD_01", hash = 0xD2D648CE, outfits = 50 }, - [0xD34CCF4F] = { model = "MP_U_M_M_FOS_RAILWAY_RECIPIENT_01", hash = 0xD34CCF4F, outfits = 1 }, - [0xD7A31642] = { model = "MP_U_M_M_PROTECT_BLACKWATER_01", hash = 0xD7A31642, outfits = 1 }, - [0xDA440097] = { model = "MP_U_M_M_HCTEL_SD_TARGET_02", hash = 0xDA440097, outfits = 2 }, - [0xDA5BAF27] = { model = "MP_G_M_M_FOS_DEBTGANG_01", hash = 0xDA5BAF27, outfits = 15 }, - [0xDA664071] = { model = "MP_U_M_M_FOS_SABOTEUR_01", hash = 0xDA664071, outfits = 1 }, - [0xDC558720] = { model = "MP_U_M_M_HCTEL_SD_GANG_01", hash = 0xDC558720, outfits = 3 }, - [0xE2DCE94B] = { model = "MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01", hash = 0xE2DCE94B, outfits = 1 }, - [0xE514F0BF] = { model = "MP_U_M_M_LOM_DOCKWORKER_01", hash = 0xE514F0BF, outfits = 1 }, - [0xE58B4A18] = { model = "MP_U_M_M_FOS_DOCKRECIPIENTS_01", hash = 0xE58B4A18, outfits = 2 }, - [0xE5E2AAE3] = { model = "MP_U_F_M_OUTLAW_SOCIETYLADY_01", hash = 0xE5E2AAE3, outfits = 1 }, - [0xE8F03F0A] = { model = "MP_U_M_M_LOM_RHD_SHERIFF_01", hash = 0xE8F03F0A, outfits = 1 }, - [0xEA3457D9] = { model = "MP_U_M_M_FOS_CORNWALL_BANDITS_01", hash = 0xEA3457D9, outfits = 3 }, - [0xEA626A60] = { model = "MP_U_M_M_PROTECT_STRAWBERRY", hash = 0xEA626A60, outfits = 1 }, - [0xEAA42177] = { model = "MP_GuidoMartelli", hash = 0xEAA42177, outfits = 1 }, - [0xEAAE023B] = { model = "MP_U_M_M_HARBORMASTER_01", hash = 0xEAAE023B, outfits = 1 }, - [0xEB2B8251] = { model = "MP_U_M_M_LOM_RHD_SMITHASSISTANT_01", hash = 0xEB2B8251, outfits = 1 }, - [0xED2FDF9A] = { model = "MP_U_M_M_FOS_INTERROGATOR_02", hash = 0xED2FDF9A, outfits = 1 }, - [0xED64E004] = { model = "MP_U_M_M_FOS_INTERROGATOR_01", hash = 0xED64E004, outfits = 1 }, - [0xED7DA70A] = { model = "MP_U_M_M_HCTEL_SD_TARGET_01", hash = 0xED7DA70A, outfits = 1 }, - [0xEE6A6493] = { model = "MP_U_M_M_FOS_CORNWALLGUARD_01", hash = 0xEE6A6493, outfits = 2 }, - [0xEF9BAB0C] = { model = "MP_A_M_M_FOS_COACHGUARDS_01", hash = 0xEF9BAB0C, outfits = 15 }, - [0xF14E5BDB] = { model = "MP_U_F_M_PROTECT_MERCER_01", hash = 0xF14E5BDB, outfits = 5 }, - [0xF24DC82F] = { model = "MP_U_M_M_DOCKRECIPIENTS_01", hash = 0xF24DC82F, outfits = 2 }, - [0xFDA2404B] = { model = "MP_U_M_M_LOM_RHD_DEALERS_01", hash = 0xFDA2404B, outfits = 3 }, - [0xFE3F4984] = { model = "MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01", hash = 0xFE3F4984, outfits = 6 }, - [0xFFDFCBCE] = { model = "MP_U_M_M_HCTEL_SD_TARGET_03", hash = 0xFFDFCBCE, outfits = 6 }, - [0xFFF1AB44] = { model = "MP_U_M_M_FOS_RAILWAY_HUNTER_01", hash = 0xFFF1AB44, outfits = 1 }, + [`mp_male`] = { model = "mp_male", hash = 0xF5C1611E, outfits = 138 }, + [`mp_female`] = { model = "mp_female", hash = 0xA7AF20C0, outfits = 120 }, + [`amsp_robsdgunsmith_males_01`] = { model = "amsp_robsdgunsmith_males_01", hash = 0x0926B79B, outfits = 5 }, + [`am_valentinedoctors_females_01`] = { model = "am_valentinedoctors_females_01", hash = 0x3D27C285, outfits = 1 }, + [`a_f_m_armcholeracorpse_01`] = { model = "a_f_m_armcholeracorpse_01", hash = 0x53367A8A, outfits = 40 }, + [`a_f_m_armtownfolk_01`] = { model = "a_f_m_armtownfolk_01", hash = 0x9854FB06, outfits = 34 }, + [`a_f_m_armtownfolk_02`] = { model = "a_f_m_armtownfolk_02", hash = 0x2ECE27FA, outfits = 24 }, + [`a_f_m_asbtownfolk_01`] = { model = "a_f_m_asbtownfolk_01", hash = 0x6A01E5AF, outfits = 35 }, + [`a_f_m_bivfancytravellers_01`] = { model = "a_f_m_bivfancytravellers_01", hash = 0x9EF80CC3, outfits = 40 }, + [`a_f_m_blwtownfolk_01`] = { model = "a_f_m_blwtownfolk_01", hash = 0x68D9612B, outfits = 40 }, + [`a_f_m_blwtownfolk_02`] = { model = "a_f_m_blwtownfolk_02", hash = 0x5EAF4CD7, outfits = 40 }, + [`a_f_m_blwupperclass_01`] = { model = "a_f_m_blwupperclass_01", hash = 0x559F1795, outfits = 50 }, + [`a_f_m_btchillbilly_01`] = { model = "a_f_m_btchillbilly_01", hash = 0x156B2B5B, outfits = 17 }, + [`a_f_m_btcobesewomen_01`] = { model = "a_f_m_btcobesewomen_01", hash = 0x18FE1EB6, outfits = 1 }, + [`a_f_m_bynfancytravellers_01`] = { model = "a_f_m_bynfancytravellers_01", hash = 0xE6CA7A74, outfits = 30 }, + [`a_f_m_familytravelers_cool_01`] = { model = "a_f_m_familytravelers_cool_01", hash = 0x41FCD560, outfits = 20 }, + [`a_f_m_familytravelers_warm_01`] = { model = "a_f_m_familytravelers_warm_01", hash = 0x02FF9BBF, outfits = 20 }, + [`a_f_m_gamhighsociety_01`] = { model = "a_f_m_gamhighsociety_01", hash = 0xDC9B1FAF, outfits = 39 }, + [`a_f_m_grifancytravellers_01`] = { model = "a_f_m_grifancytravellers_01", hash = 0xF4D38A44, outfits = 40 }, + [`a_f_m_guatownfolk_01`] = { model = "a_f_m_guatownfolk_01", hash = 0x7991217C, outfits = 25 }, + [`a_f_m_htlfancytravellers_01`] = { model = "a_f_m_htlfancytravellers_01", hash = 0xC53BAC3B, outfits = 40 }, + [`a_f_m_lagtownfolk_01`] = { model = "a_f_m_lagtownfolk_01", hash = 0xFC3C9932, outfits = 12 }, + [`a_f_m_lowersdtownfolk_01`] = { model = "a_f_m_lowersdtownfolk_01", hash = 0x98A1C808, outfits = 42 }, + [`a_f_m_lowersdtownfolk_02`] = { model = "a_f_m_lowersdtownfolk_02", hash = 0x88BB283B, outfits = 40 }, + [`a_f_m_lowersdtownfolk_03`] = { model = "a_f_m_lowersdtownfolk_03", hash = 0x777905B7, outfits = 42 }, + [`a_f_m_lowertrainpassengers_01`] = { model = "a_f_m_lowertrainpassengers_01", hash = 0xBF41104A, outfits = 25 }, + [`a_f_m_middlesdtownfolk_01`] = { model = "a_f_m_middlesdtownfolk_01", hash = 0x26F2C9A7, outfits = 45 }, + [`a_f_m_middlesdtownfolk_02`] = { model = "a_f_m_middlesdtownfolk_02", hash = 0x37556A6C, outfits = 30 }, + [`a_f_m_middlesdtownfolk_03`] = { model = "a_f_m_middlesdtownfolk_03", hash = 0xC29280E8, outfits = 20 }, + [`a_f_m_middletrainpassengers_01`] = { model = "a_f_m_middletrainpassengers_01", hash = 0xFBA4F677, outfits = 25 }, + [`a_f_m_nbxslums_01`] = { model = "a_f_m_nbxslums_01", hash = 0xADABE58C, outfits = 42 }, + [`a_f_m_nbxupperclass_01`] = { model = "a_f_m_nbxupperclass_01", hash = 0xC20A03C0, outfits = 45 }, + [`a_f_m_nbxwhore_01`] = { model = "a_f_m_nbxwhore_01", hash = 0x0E5BDB04, outfits = 25 }, + [`a_f_m_rhdprostitute_01`] = { model = "a_f_m_rhdprostitute_01", hash = 0x768C0686, outfits = 35 }, + [`a_f_m_rhdtownfolk_01`] = { model = "a_f_m_rhdtownfolk_01", hash = 0x2029479B, outfits = 23 }, + [`a_f_m_rhdtownfolk_02`] = { model = "a_f_m_rhdtownfolk_02", hash = 0x7108E959, outfits = 22 }, + [`a_f_m_rhdupperclass_01`] = { model = "a_f_m_rhdupperclass_01", hash = 0x7EC886E0, outfits = 50 }, + [`a_f_m_rkrfancytravellers_01`] = { model = "a_f_m_rkrfancytravellers_01", hash = 0xADA8C252, outfits = 40 }, + [`a_f_m_roughtravellers_01`] = { model = "a_f_m_roughtravellers_01", hash = 0xC53D076D, outfits = 30 }, + [`a_f_m_sclfancytravellers_01`] = { model = "a_f_m_sclfancytravellers_01", hash = 0x697CE9F6, outfits = 21 }, + [`a_f_m_sdchinatown_01`] = { model = "a_f_m_sdchinatown_01", hash = 0xF9EABA1F, outfits = 20 }, + [`a_f_m_sdfancywhore_01`] = { model = "a_f_m_sdfancywhore_01", hash = 0x6C844384, outfits = 20 }, + [`a_f_m_sdobesewomen_01`] = { model = "a_f_m_sdobesewomen_01", hash = 0x8DC3DD27, outfits = 1 }, + [`a_f_m_sdserversformal_01`] = { model = "a_f_m_sdserversformal_01", hash = 0x254A0D7B, outfits = 10 }, + [`a_f_m_sdslums_02`] = { model = "a_f_m_sdslums_02", hash = 0x10B716A1, outfits = 42 }, + [`a_f_m_skpprisononline_01`] = { model = "a_f_m_skpprisononline_01", hash = 0xF0CED965, outfits = 8 }, + [`a_f_m_strtownfolk_01`] = { model = "a_f_m_strtownfolk_01", hash = 0xAD789542, outfits = 20 }, + [`a_f_m_tumtownfolk_01`] = { model = "a_f_m_tumtownfolk_01", hash = 0x0C6E57DB, outfits = 22 }, + [`a_f_m_tumtownfolk_02`] = { model = "a_f_m_tumtownfolk_02", hash = 0xB545A97B, outfits = 22 }, + [`a_f_m_unicorpse_01`] = { model = "a_f_m_unicorpse_01", hash = 0xE533D2B4, outfits = 49 }, + [`a_f_m_uppertrainpassengers_01`] = { model = "a_f_m_uppertrainpassengers_01", hash = 0xC16B7BA8, outfits = 25 }, + [`a_f_m_valprostitute_01`] = { model = "a_f_m_valprostitute_01", hash = 0x8E301D96, outfits = 23 }, + [`a_f_m_valtownfolk_01`] = { model = "a_f_m_valtownfolk_01", hash = 0xF666E887, outfits = 20 }, + [`a_f_m_vhtprostitute_01`] = { model = "a_f_m_vhtprostitute_01", hash = 0xB7A9EA0E, outfits = 11 }, + [`a_f_m_vhttownfolk_01`] = { model = "a_f_m_vhttownfolk_01", hash = 0x008F4AD5, outfits = 25 }, + [`a_f_m_waptownfolk_01`] = { model = "a_f_m_waptownfolk_01", hash = 0xF7E2135D, outfits = 25 }, + [`a_f_o_blwupperclass_01`] = { model = "a_f_o_blwupperclass_01", hash = 0xD0A31078, outfits = 45 }, + [`a_f_o_btchillbilly_01`] = { model = "a_f_o_btchillbilly_01", hash = 0x86B4227A, outfits = 11 }, + [`a_f_o_guatownfolk_01`] = { model = "a_f_o_guatownfolk_01", hash = 0xA0600CFB, outfits = 15 }, + [`a_f_o_lagtownfolk_01`] = { model = "a_f_o_lagtownfolk_01", hash = 0x17C91016, outfits = 12 }, + [`a_f_o_sdchinatown_01`] = { model = "a_f_o_sdchinatown_01", hash = 0x322B92BF, outfits = 20 }, + [`a_f_o_sdupperclass_01`] = { model = "a_f_o_sdupperclass_01", hash = 0x4057BCEE, outfits = 45 }, + [`a_f_o_waptownfolk_01`] = { model = "a_f_o_waptownfolk_01", hash = 0x837B740E, outfits = 21 }, + [`a_m_m_armcholeracorpse_01`] = { model = "a_m_m_armcholeracorpse_01", hash = 0xD076C393, outfits = 38 }, + [`a_m_m_armdeputyresident_01`] = { model = "a_m_m_armdeputyresident_01", hash = 0xB5771CFC, outfits = 56 }, + [`a_m_m_armtownfolk_01`] = { model = "a_m_m_armtownfolk_01", hash = 0xCF7E73BE, outfits = 49 }, + [`a_m_m_armtownfolk_02`] = { model = "a_m_m_armtownfolk_02", hash = 0xC137D731, outfits = 60 }, + [`a_m_m_asbboatcrew_01`] = { model = "a_m_m_asbboatcrew_01", hash = 0x37DAA98A, outfits = 30 }, + [`a_m_m_asbdeputyresident_01`] = { model = "a_m_m_asbdeputyresident_01", hash = 0x9C00E2A0, outfits = 21 }, + [`a_m_m_asbminer_01`] = { model = "a_m_m_asbminer_01", hash = 0x68A1DDE7, outfits = 61 }, + [`a_m_m_asbminer_02`] = { model = "a_m_m_asbminer_02", hash = 0x3E500944, outfits = 42 }, + [`a_m_m_asbminer_03`] = { model = "a_m_m_asbminer_03", hash = 0x50ABADFB, outfits = 81 }, + [`a_m_m_asbminer_04`] = { model = "a_m_m_asbminer_04", hash = 0x19E7406F, outfits = 69 }, + [`a_m_m_asbtownfolk_01`] = { model = "a_m_m_asbtownfolk_01", hash = 0x0B54641C, outfits = 86 }, + [`a_m_m_asbtownfolk_01_laborer`] = { model = "a_m_m_asbtownfolk_01_laborer", hash = 0xA5E02A13, outfits = 70 }, + [`a_m_m_bivfancydrivers_01`] = { model = "a_m_m_bivfancydrivers_01", hash = 0x613A4B8E, outfits = 10 }, + [`a_m_m_bivfancytravellers_01`] = { model = "a_m_m_bivfancytravellers_01", hash = 0x0D8C9D0B, outfits = 21 }, + [`a_m_m_bivroughtravellers_01`] = { model = "a_m_m_bivroughtravellers_01", hash = 0x4ADABFBA, outfits = 41 }, + [`a_m_m_bivworker_01`] = { model = "a_m_m_bivworker_01", hash = 0x9384F640, outfits = 29 }, + [`a_m_m_blwforeman_01`] = { model = "a_m_m_blwforeman_01", hash = 0x5B91D27E, outfits = 35 }, + [`a_m_m_blwlaborer_01`] = { model = "a_m_m_blwlaborer_01", hash = 0xC509B26F, outfits = 35 }, + [`a_m_m_blwlaborer_02`] = { model = "a_m_m_blwlaborer_02", hash = 0xDBC6DFE9, outfits = 45 }, + [`a_m_m_blwobesemen_01`] = { model = "a_m_m_blwobesemen_01", hash = 0x41907533, outfits = 3 }, + [`a_m_m_blwtownfolk_01`] = { model = "a_m_m_blwtownfolk_01", hash = 0xD10CE853, outfits = 77 }, + [`a_m_m_blwupperclass_01`] = { model = "a_m_m_blwupperclass_01", hash = 0x3CF00F0B, outfits = 85 }, + [`a_m_m_btchillbilly_01`] = { model = "a_m_m_btchillbilly_01", hash = 0xE232B9EF, outfits = 42 }, + [`a_m_m_btcobesemen_01`] = { model = "a_m_m_btcobesemen_01", hash = 0x002A0F51, outfits = 1 }, + [`a_m_m_bynfancydrivers_01`] = { model = "a_m_m_bynfancydrivers_01", hash = 0x70B728D7, outfits = 10 }, + [`a_m_m_bynfancytravellers_01`] = { model = "a_m_m_bynfancytravellers_01", hash = 0xECBDF082, outfits = 20 }, + [`a_m_m_bynroughtravellers_01`] = { model = "a_m_m_bynroughtravellers_01", hash = 0x7D65D747, outfits = 40 }, + [`a_m_m_bynsurvivalist_01`] = { model = "a_m_m_bynsurvivalist_01", hash = 0x3B777AC0, outfits = 15 }, + [`a_m_m_cardgameplayers_01`] = { model = "a_m_m_cardgameplayers_01", hash = 0xC7458219, outfits = 84 }, + [`a_m_m_chelonian_01`] = { model = "a_m_m_chelonian_01", hash = 0x5A3ABACE, outfits = 24 }, + [`a_m_m_deliverytravelers_cool_01`] = { model = "a_m_m_deliverytravelers_cool_01", hash = 0xDB5C4A62, outfits = 20 }, + [`a_m_m_deliverytravelers_warm_01`] = { model = "a_m_m_deliverytravelers_warm_01", hash = 0xA56A4C3D, outfits = 20 }, + [`a_m_m_dominoesplayers_01`] = { model = "a_m_m_dominoesplayers_01", hash = 0xD4B37D8A, outfits = 18 }, + [`a_m_m_emrfarmhand_01`] = { model = "a_m_m_emrfarmhand_01", hash = 0xE5CED83E, outfits = 20 }, + [`a_m_m_familytravelers_cool_01`] = { model = "a_m_m_familytravelers_cool_01", hash = 0x570B9957, outfits = 20 }, + [`a_m_m_familytravelers_warm_01`] = { model = "a_m_m_familytravelers_warm_01", hash = 0xEF53FC1C, outfits = 20 }, + [`a_m_m_farmtravelers_cool_01`] = { model = "a_m_m_farmtravelers_cool_01", hash = 0x584626EE, outfits = 20 }, + [`a_m_m_farmtravelers_warm_01`] = { model = "a_m_m_farmtravelers_warm_01", hash = 0x2F9417F1, outfits = 20 }, + [`a_m_m_fivefingerfilletplayers_01`] = { model = "a_m_m_fivefingerfilletplayers_01", hash = 0x18E143CA, outfits = 12 }, + [`a_m_m_foreman`] = { model = "a_m_m_foreman", hash = 0x0DB7B411, outfits = 10 }, + [`a_m_m_gamhighsociety_01`] = { model = "a_m_m_gamhighsociety_01", hash = 0x8DABAE42, outfits = 40 }, + [`a_m_m_grifancydrivers_01`] = { model = "a_m_m_grifancydrivers_01", hash = 0x542A035C, outfits = 10 }, + [`a_m_m_grifancytravellers_01`] = { model = "a_m_m_grifancytravellers_01", hash = 0x761D319E, outfits = 20 }, + [`a_m_m_griroughtravellers_01`] = { model = "a_m_m_griroughtravellers_01", hash = 0x97273585, outfits = 40 }, + [`a_m_m_grisurvivalist_01`] = { model = "a_m_m_grisurvivalist_01", hash = 0x9DDE71E1, outfits = 15 }, + [`a_m_m_guatownfolk_01`] = { model = "a_m_m_guatownfolk_01", hash = 0x0D4DB92F, outfits = 27 }, + [`a_m_m_htlfancydrivers_01`] = { model = "a_m_m_htlfancydrivers_01", hash = 0xEEF71080, outfits = 10 }, + [`a_m_m_htlfancytravellers_01`] = { model = "a_m_m_htlfancytravellers_01", hash = 0xB05F73A6, outfits = 20 }, + [`a_m_m_htlroughtravellers_01`] = { model = "a_m_m_htlroughtravellers_01", hash = 0xA9DCFB5A, outfits = 40 }, + [`a_m_m_htlsurvivalist_01`] = { model = "a_m_m_htlsurvivalist_01", hash = 0xB3410109, outfits = 15 }, + [`a_m_m_huntertravelers_cool_01`] = { model = "a_m_m_huntertravelers_cool_01", hash = 0x5729EC23, outfits = 20 }, + [`a_m_m_huntertravelers_warm_01`] = { model = "a_m_m_huntertravelers_warm_01", hash = 0xD898CFD4, outfits = 21 }, + [`a_m_m_jamesonguard_01`] = { model = "a_m_m_jamesonguard_01", hash = 0x9233448C, outfits = 56 }, + [`a_m_m_lagtownfolk_01`] = { model = "a_m_m_lagtownfolk_01", hash = 0xBD48CFD4, outfits = 12 }, + [`a_m_m_lowersdtownfolk_01`] = { model = "a_m_m_lowersdtownfolk_01", hash = 0xE40C9EB8, outfits = 91 }, + [`a_m_m_lowersdtownfolk_02`] = { model = "a_m_m_lowersdtownfolk_02", hash = 0x82AF5BFB, outfits = 91 }, + [`a_m_m_lowertrainpassengers_01`] = { model = "a_m_m_lowertrainpassengers_01", hash = 0x950C61AA, outfits = 25 }, + [`a_m_m_middlesdtownfolk_01`] = { model = "a_m_m_middlesdtownfolk_01", hash = 0x7F2FF3A2, outfits = 65 }, + [`a_m_m_middlesdtownfolk_02`] = { model = "a_m_m_middlesdtownfolk_02", hash = 0x6E8E525F, outfits = 51 }, + [`a_m_m_middlesdtownfolk_03`] = { model = "a_m_m_middlesdtownfolk_03", hash = 0x20C236C8, outfits = 51 }, + [`a_m_m_middletrainpassengers_01`] = { model = "a_m_m_middletrainpassengers_01", hash = 0xB56ED02B, outfits = 25 }, + [`a_m_m_moonshiners_01`] = { model = "a_m_m_moonshiners_01", hash = 0xB14CEEEF, outfits = 10 }, + [`a_m_m_nbxdockworkers_01`] = { model = "a_m_m_nbxdockworkers_01", hash = 0xED78C02F, outfits = 70 }, + [`a_m_m_nbxlaborers_01`] = { model = "a_m_m_nbxlaborers_01", hash = 0x9881BCFA, outfits = 70 }, + [`a_m_m_nbxslums_01`] = { model = "a_m_m_nbxslums_01", hash = 0x56A5800A, outfits = 85 }, + [`a_m_m_nbxupperclass_01`] = { model = "a_m_m_nbxupperclass_01", hash = 0x04B7D63B, outfits = 50 }, + [`a_m_m_nearoughtravellers_01`] = { model = "a_m_m_nearoughtravellers_01", hash = 0x6D027AB7, outfits = 35 }, + [`a_m_m_ranchertravelers_cool_01`] = { model = "a_m_m_ranchertravelers_cool_01", hash = 0x2C9C69C2, outfits = 20 }, + [`a_m_m_ranchertravelers_warm_01`] = { model = "a_m_m_ranchertravelers_warm_01", hash = 0xF7649D04, outfits = 20 }, + [`a_m_m_rancher_01`] = { model = "a_m_m_rancher_01", hash = 0x54D8BE8E, outfits = 20 }, + [`a_m_m_rhddeputyresident_01`] = { model = "a_m_m_rhddeputyresident_01", hash = 0x0B5B9D98, outfits = 23 }, + [`a_m_m_rhdforeman_01`] = { model = "a_m_m_rhdforeman_01", hash = 0x94EAA58F, outfits = 30 }, + [`a_m_m_rhdobesemen_01`] = { model = "a_m_m_rhdobesemen_01", hash = 0x602993B2, outfits = 3 }, + [`a_m_m_rhdtownfolk_01`] = { model = "a_m_m_rhdtownfolk_01", hash = 0x3A489018, outfits = 42 }, + [`a_m_m_rhdtownfolk_01_laborer`] = { model = "a_m_m_rhdtownfolk_01_laborer", hash = 0x009F6A48, outfits = 10 }, + [`a_m_m_rhdtownfolk_02`] = { model = "a_m_m_rhdtownfolk_02", hash = 0x6833EBEE, outfits = 35 }, + [`a_m_m_rhdupperclass_01`] = { model = "a_m_m_rhdupperclass_01", hash = 0xAFCAF759, outfits = 63 }, + [`a_m_m_rkrfancydrivers_01`] = { model = "a_m_m_rkrfancydrivers_01", hash = 0x921DA99E, outfits = 10 }, + [`a_m_m_rkrfancytravellers_01`] = { model = "a_m_m_rkrfancytravellers_01", hash = 0x76C805FE, outfits = 20 }, + [`a_m_m_rkrroughtravellers_01`] = { model = "a_m_m_rkrroughtravellers_01", hash = 0xAD581ACB, outfits = 40 }, + [`a_m_m_rkrsurvivalist_01`] = { model = "a_m_m_rkrsurvivalist_01", hash = 0x2FABD7A9, outfits = 15 }, + [`a_m_m_sclfancydrivers_01`] = { model = "a_m_m_sclfancydrivers_01", hash = 0xBCA4A7DC, outfits = 10 }, + [`a_m_m_sclfancytravellers_01`] = { model = "a_m_m_sclfancytravellers_01", hash = 0x45B96600, outfits = 20 }, + [`a_m_m_sclroughtravellers_01`] = { model = "a_m_m_sclroughtravellers_01", hash = 0xD93C654F, outfits = 41 }, + [`a_m_m_sdchinatown_01`] = { model = "a_m_m_sdchinatown_01", hash = 0x26878D5C, outfits = 21 }, + [`a_m_m_sddockforeman_01`] = { model = "a_m_m_sddockforeman_01", hash = 0x44BCB3C8, outfits = 25 }, + [`a_m_m_sddockworkers_02`] = { model = "a_m_m_sddockworkers_02", hash = 0xA1875C33, outfits = 70 }, + [`a_m_m_sdfancytravellers_01`] = { model = "a_m_m_sdfancytravellers_01", hash = 0xF20E6FFA, outfits = 20 }, + [`a_m_m_sdlaborers_02`] = { model = "a_m_m_sdlaborers_02", hash = 0xD0EEF17B, outfits = 70 }, + [`a_m_m_sdobesemen_01`] = { model = "a_m_m_sdobesemen_01", hash = 0x36E3135B, outfits = 3 }, + [`a_m_m_sdroughtravellers_01`] = { model = "a_m_m_sdroughtravellers_01", hash = 0x885C429E, outfits = 40 }, + [`a_m_m_sdserversformal_01`] = { model = "a_m_m_sdserversformal_01", hash = 0x8FC7F8DD, outfits = 6 }, + [`a_m_m_sdslums_02`] = { model = "a_m_m_sdslums_02", hash = 0xAA5C3EA9, outfits = 85 }, + [`a_m_m_skpprisoner_01`] = { model = "a_m_m_skpprisoner_01", hash = 0x16958B7D, outfits = 20 }, + [`a_m_m_skpprisonline_01`] = { model = "a_m_m_skpprisonline_01", hash = 0x6D78A035, outfits = 24 }, + [`a_m_m_smhthug_01`] = { model = "a_m_m_smhthug_01", hash = 0xDCA53CEE, outfits = 24 }, + [`a_m_m_strdeputyresident_01`] = { model = "a_m_m_strdeputyresident_01", hash = 0xF0379DF1, outfits = 21 }, + [`a_m_m_strfancytourist_01`] = { model = "a_m_m_strfancytourist_01", hash = 0x2A19CF1B, outfits = 5 }, + [`a_m_m_strlaborer_01`] = { model = "a_m_m_strlaborer_01", hash = 0x9E51CBEB, outfits = 18 }, + [`a_m_m_strtownfolk_01`] = { model = "a_m_m_strtownfolk_01", hash = 0x4335A6E5, outfits = 26 }, + [`a_m_m_tumtownfolk_01`] = { model = "a_m_m_tumtownfolk_01", hash = 0x1C9C6388, outfits = 60 }, + [`a_m_m_tumtownfolk_02`] = { model = "a_m_m_tumtownfolk_02", hash = 0x39A29D9C, outfits = 60 }, + [`a_m_m_uniboatcrew_01`] = { model = "a_m_m_uniboatcrew_01", hash = 0xFE70D544, outfits = 20 }, + [`a_m_m_unicoachguards_01`] = { model = "a_m_m_unicoachguards_01", hash = 0x1CC906ED, outfits = 20 }, + [`a_m_m_unicorpse_01`] = { model = "a_m_m_unicorpse_01", hash = 0x4C6C6086, outfits = 186 }, + [`a_m_m_unigunslinger_01`] = { model = "a_m_m_unigunslinger_01", hash = 0x39F19DB8, outfits = 40 }, + [`a_m_m_uppertrainpassengers_01`] = { model = "a_m_m_uppertrainpassengers_01", hash = 0x752ADF85, outfits = 25 }, + [`a_m_m_valcriminals_01`] = { model = "a_m_m_valcriminals_01", hash = 0xF90FDED2, outfits = 10 }, + [`a_m_m_valdeputyresident_01`] = { model = "a_m_m_valdeputyresident_01", hash = 0x639CD8CD, outfits = 30 }, + [`a_m_m_valfarmer_01`] = { model = "a_m_m_valfarmer_01", hash = 0x1F52F239, outfits = 29 }, + [`a_m_m_vallaborer_01`] = { model = "a_m_m_vallaborer_01", hash = 0xDC64F897, outfits = 58 }, + [`a_m_m_valtownfolk_01`] = { model = "a_m_m_valtownfolk_01", hash = 0x838F50CE, outfits = 36 }, + [`a_m_m_valtownfolk_02`] = { model = "a_m_m_valtownfolk_02", hash = 0x9550F451, outfits = 44 }, + [`a_m_m_vhtboatcrew_01`] = { model = "a_m_m_vhtboatcrew_01", hash = 0xAA7C134D, outfits = 30 }, + [`a_m_m_vhtthug_01`] = { model = "a_m_m_vhtthug_01", hash = 0xC703A880, outfits = 40 }, + [`a_m_m_vhttownfolk_01`] = { model = "a_m_m_vhttownfolk_01", hash = 0x36C66682, outfits = 86 }, + [`a_m_m_wapwarriors_01`] = { model = "a_m_m_wapwarriors_01", hash = 0x3183AABD, outfits = 69 }, + [`a_m_o_blwupperclass_01`] = { model = "a_m_o_blwupperclass_01", hash = 0x57B730CA, outfits = 80 }, + [`a_m_o_btchillbilly_01`] = { model = "a_m_o_btchillbilly_01", hash = 0xA9D376B5, outfits = 29 }, + [`a_m_o_guatownfolk_01`] = { model = "a_m_o_guatownfolk_01", hash = 0x153790EE, outfits = 15 }, + [`a_m_o_lagtownfolk_01`] = { model = "a_m_o_lagtownfolk_01", hash = 0xD02B6700, outfits = 12 }, + [`a_m_o_sdchinatown_01`] = { model = "a_m_o_sdchinatown_01", hash = 0x34EEA2A1, outfits = 21 }, + [`a_m_o_sdupperclass_01`] = { model = "a_m_o_sdupperclass_01", hash = 0x8C74A816, outfits = 50 }, + [`a_m_o_waptownfolk_01`] = { model = "a_m_o_waptownfolk_01", hash = 0x8C850F6C, outfits = 26 }, + [`a_m_y_asbminer_01`] = { model = "a_m_y_asbminer_01", hash = 0x8E76B9B9, outfits = 60 }, + [`a_m_y_asbminer_02`] = { model = "a_m_y_asbminer_02", hash = 0x5C0454CD, outfits = 42 }, + [`a_m_y_asbminer_03`] = { model = "a_m_y_asbminer_03", hash = 0x14FD46C4, outfits = 81 }, + [`a_m_y_asbminer_04`] = { model = "a_m_y_asbminer_04", hash = 0x30407D4A, outfits = 69 }, + [`a_m_y_nbxstreetkids_01`] = { model = "a_m_y_nbxstreetkids_01", hash = 0x0FC40064, outfits = 8 }, + [`a_m_y_nbxstreetkids_slums_01`] = { model = "a_m_y_nbxstreetkids_slums_01", hash = 0xACA57303, outfits = 20 }, + [`a_m_y_sdstreetkids_slums_02`] = { model = "a_m_y_sdstreetkids_slums_02", hash = 0xCA57B2C4, outfits = 8 }, + [`a_m_y_unicorpse_01`] = { model = "a_m_y_unicorpse_01", hash = 0x75CC2B66, outfits = 2 }, + [`casp_coachrobbery_lenny_males_01`] = { model = "casp_coachrobbery_lenny_males_01", hash = 0x6B6968AA, outfits = 2 }, + [`casp_coachrobbery_micah_males_01`] = { model = "casp_coachrobbery_micah_males_01", hash = 0x63F5A730, outfits = 1 }, + [`casp_hunting02_males_01`] = { model = "casp_hunting02_males_01", hash = 0x7A8FF723, outfits = 2 }, + [`cr_strawberry_males_01`] = { model = "cr_strawberry_males_01", hash = 0x0B4466F8, outfits = 19 }, + [`cs_abe`] = { model = "cs_abe", hash = 0xA8B1C9F7, outfits = 2 }, + [`cs_aberdeenpigfarmer`] = { model = "cs_aberdeenpigfarmer", hash = 0xAB6C83B9, outfits = 1 }, + [`cs_aberdeensister`] = { model = "cs_aberdeensister", hash = 0x78F9C32F, outfits = 2 }, + [`cs_abigailroberts`] = { model = "cs_abigailroberts", hash = 0xEED46B48, outfits = 15 }, + [`cs_acrobat`] = { model = "cs_acrobat", hash = 0x582954CA, outfits = 1 }, + [`cs_adamgray`] = { model = "cs_adamgray", hash = 0x6A7308E5, outfits = 1 }, + [`cs_agnesdowd`] = { model = "cs_agnesdowd", hash = 0x0596AA7B, outfits = 4 }, + [`cs_albertcakeesquire`] = { model = "cs_albertcakeesquire", hash = 0x28E45219, outfits = 1 }, + [`cs_albertmason`] = { model = "cs_albertmason", hash = 0x1E9A4722, outfits = 2 }, + [`cs_andershelgerson`] = { model = "cs_andershelgerson", hash = 0x19ACF207, outfits = 4 }, + [`cs_angel`] = { model = "cs_angel", hash = 0x31DC5CD8, outfits = 1 }, + [`cs_angryhusband`] = { model = "cs_angryhusband", hash = 0x17F33DAA, outfits = 1 }, + [`cs_angusgeddes`] = { model = "cs_angusgeddes", hash = 0xF5FE5824, outfits = 2 }, + [`cs_ansel_atherton`] = { model = "cs_ansel_atherton", hash = 0x563E79E7, outfits = 1 }, + [`cs_antonyforemen`] = { model = "cs_antonyforemen", hash = 0xCADCA094, outfits = 2 }, + [`cs_archerfordham`] = { model = "cs_archerfordham", hash = 0x328BA546, outfits = 2 }, + [`cs_archibaldjameson`] = { model = "cs_archibaldjameson", hash = 0x7920404D, outfits = 2 }, + [`cs_archiedown`] = { model = "cs_archiedown", hash = 0xF8BAA439, outfits = 4 }, + [`cs_artappraiser`] = { model = "cs_artappraiser", hash = 0x5FA98D21, outfits = 1 }, + [`cs_asbdeputy_01`] = { model = "cs_asbdeputy_01", hash = 0x1B703333, outfits = 1 }, + [`cs_ashton`] = { model = "cs_ashton", hash = 0xB6AC4FC1, outfits = 1 }, + [`cs_balloonoperator`] = { model = "cs_balloonoperator", hash = 0x253EF371, outfits = 4 }, + [`cs_bandbassist`] = { model = "cs_bandbassist", hash = 0x3C3844C4, outfits = 1 }, + [`cs_banddrummer`] = { model = "cs_banddrummer", hash = 0x559E17B2, outfits = 1 }, + [`cs_bandpianist`] = { model = "cs_bandpianist", hash = 0x8EA36E09, outfits = 1 }, + [`cs_bandsinger`] = { model = "cs_bandsinger", hash = 0xF3178A28, outfits = 1 }, + [`cs_baptiste`] = { model = "cs_baptiste", hash = 0xF3C61748, outfits = 1 }, + [`cs_bartholomewbraithwaite`] = { model = "cs_bartholomewbraithwaite", hash = 0xFB614B3F, outfits = 2 }, + [`cs_bathingladies_01`] = { model = "cs_bathingladies_01", hash = 0xD29F17B9, outfits = 7 }, + [`cs_beatenupcaptain`] = { model = "cs_beatenupcaptain", hash = 0xFCAF1AFE, outfits = 1 }, + [`cs_beaugray`] = { model = "cs_beaugray", hash = 0x4B780F88, outfits = 3 }, + [`cs_billwilliamson`] = { model = "cs_billwilliamson", hash = 0x7B67B26A, outfits = 28 }, + [`cs_bivcoachdriver`] = { model = "cs_bivcoachdriver", hash = 0xDF333F2B, outfits = 1 }, + [`cs_blwphotographer`] = { model = "cs_blwphotographer", hash = 0x1AA22618, outfits = 1 }, + [`cs_blwwitness`] = { model = "cs_blwwitness", hash = 0x4D3B6EF2, outfits = 2 }, + [`cs_braithwaitebutler`] = { model = "cs_braithwaitebutler", hash = 0xDFE6F4B8, outfits = 1 }, + [`cs_braithwaitemaid`] = { model = "cs_braithwaitemaid", hash = 0xEB20D71E, outfits = 1 }, + [`cs_braithwaiteservant`] = { model = "cs_braithwaiteservant", hash = 0x1C76CA2D, outfits = 1 }, + [`cs_brendacrawley`] = { model = "cs_brendacrawley", hash = 0x0DBD6C20, outfits = 2 }, + [`cs_bronte`] = { model = "cs_bronte", hash = 0x90C94DCD, outfits = 4 }, + [`cs_brontesbutler`] = { model = "cs_brontesbutler", hash = 0xD18A3207, outfits = 1 }, + [`cs_brotherdorkins`] = { model = "cs_brotherdorkins", hash = 0x1CC577E5, outfits = 1 }, + [`cs_brynntildon`] = { model = "cs_brynntildon", hash = 0x0AF97379, outfits = 2 }, + [`cs_bubba`] = { model = "cs_bubba", hash = 0xD012554C, outfits = 2 }, + [`cs_cabaretmc`] = { model = "cs_cabaretmc", hash = 0x5411589F, outfits = 1 }, + [`cs_cajun`] = { model = "cs_cajun", hash = 0xF344B612, outfits = 1 }, + [`cs_cancanman_01`] = { model = "cs_cancanman_01", hash = 0x2D0C353F, outfits = 1 }, + [`cs_cancan_01`] = { model = "cs_cancan_01", hash = 0xD0C13881, outfits = 1 }, + [`cs_cancan_02`] = { model = "cs_cancan_02", hash = 0x2F5D75D4, outfits = 1 }, + [`cs_cancan_03`] = { model = "cs_cancan_03", hash = 0xBD791211, outfits = 1 }, + [`cs_cancan_04`] = { model = "cs_cancan_04", hash = 0x12DABCCF, outfits = 1 }, + [`cs_captainmonroe`] = { model = "cs_captainmonroe", hash = 0x4EB9996F, outfits = 1 }, + [`cs_cassidy`] = { model = "cs_cassidy", hash = 0x2E6B8F33, outfits = 3 }, + [`cs_catherinebraithwaite`] = { model = "cs_catherinebraithwaite", hash = 0x5262264D, outfits = 2 }, + [`cs_cattlerustler`] = { model = "cs_cattlerustler", hash = 0x5F1AD166, outfits = 1 }, + [`cs_cavehermit`] = { model = "cs_cavehermit", hash = 0x074B53CC, outfits = 1 }, + [`cs_chainprisoner_01`] = { model = "cs_chainprisoner_01", hash = 0x8451929D, outfits = 4 }, + [`cs_chainprisoner_02`] = { model = "cs_chainprisoner_02", hash = 0xF367F0C8, outfits = 4 }, + [`cs_charlessmith`] = { model = "cs_charlessmith", hash = 0x53DD98DF, outfits = 34 }, + [`cs_chelonianmaster`] = { model = "cs_chelonianmaster", hash = 0x34F835DE, outfits = 5 }, + [`cs_cigcardguy`] = { model = "cs_cigcardguy", hash = 0xD303ACD2, outfits = 1 }, + [`cs_clay`] = { model = "cs_clay", hash = 0xDBCB9834, outfits = 1 }, + [`cs_cleet`] = { model = "cs_cleet", hash = 0xE44D789F, outfits = 3 }, + [`cs_clive`] = { model = "cs_clive", hash = 0xFF292AA4, outfits = 1 }, + [`cs_colfavours`] = { model = "cs_colfavours", hash = 0x0E174AF7, outfits = 1 }, + [`cs_colmodriscoll`] = { model = "cs_colmodriscoll", hash = 0xCF10E769, outfits = 6 }, + [`cs_cooper`] = { model = "cs_cooper", hash = 0x72A3A733, outfits = 1 }, + [`cs_cornwalltrainconductor`] = { model = "cs_cornwalltrainconductor", hash = 0xC43EAC49, outfits = 1 }, + [`cs_crackpotinventor`] = { model = "cs_crackpotinventor", hash = 0x4BBF80D3, outfits = 5 }, + [`cs_crackpotrobot`] = { model = "cs_crackpotrobot", hash = 0x3BF7829E, outfits = 2 }, + [`cs_creepyoldlady`] = { model = "cs_creepyoldlady", hash = 0xC061B459, outfits = 1 }, + [`cs_creolecaptain`] = { model = "cs_creolecaptain", hash = 0xD163B76B, outfits = 1 }, + [`cs_creoledoctor`] = { model = "cs_creoledoctor", hash = 0x3B38C996, outfits = 1 }, + [`cs_creoleguy`] = { model = "cs_creoleguy", hash = 0x96C421E4, outfits = 1 }, + [`cs_dalemaroney`] = { model = "cs_dalemaroney", hash = 0x16C57A26, outfits = 2 }, + [`cs_daveycallender`] = { model = "cs_daveycallender", hash = 0x65A7F0E7, outfits = 1 }, + [`cs_davidgeddes`] = { model = "cs_davidgeddes", hash = 0x9EAF0DAE, outfits = 2 }, + [`cs_desmond`] = { model = "cs_desmond", hash = 0x66E939A1, outfits = 1 }, + [`cs_didsbury`] = { model = "cs_didsbury", hash = 0x8ACCB671, outfits = 1 }, + [`cs_dinoboneslady`] = { model = "cs_dinoboneslady", hash = 0x4AB3D571, outfits = 2 }, + [`cs_disguisedduster_01`] = { model = "cs_disguisedduster_01", hash = 0x32C998FD, outfits = 1 }, + [`cs_disguisedduster_02`] = { model = "cs_disguisedduster_02", hash = 0x5888E47B, outfits = 1 }, + [`cs_disguisedduster_03`] = { model = "cs_disguisedduster_03", hash = 0x4A3D47E4, outfits = 1 }, + [`cs_doroetheawicklow`] = { model = "cs_doroetheawicklow", hash = 0x0748A3DA, outfits = 3 }, + [`cs_drhiggins`] = { model = "cs_drhiggins", hash = 0xF45739BF, outfits = 1 }, + [`cs_drmalcolmmacintosh`] = { model = "cs_drmalcolmmacintosh", hash = 0xC8245F3C, outfits = 1 }, + [`cs_duncangeddes`] = { model = "cs_duncangeddes", hash = 0x9FC15494, outfits = 1 }, + [`cs_dusterinformant_01`] = { model = "cs_dusterinformant_01", hash = 0xA02C1ADB, outfits = 1 }, + [`cs_dutch`] = { model = "cs_dutch", hash = 0x73E82274, outfits = 31 }, + [`cs_eagleflies`] = { model = "cs_eagleflies", hash = 0x9660A42D, outfits = 10 }, + [`cs_edgarross`] = { model = "cs_edgarross", hash = 0xFD38D463, outfits = 2 }, + [`cs_edithdown`] = { model = "cs_edithdown", hash = 0xE52A1621, outfits = 7 }, + [`cs_edith_john`] = { model = "cs_edith_john", hash = 0xCB790850, outfits = 1 }, + [`cs_edmundlowry`] = { model = "cs_edmundlowry", hash = 0x58672CFB, outfits = 1 }, + [`cs_escapeartist`] = { model = "cs_escapeartist", hash = 0x88A17BE6, outfits = 5 }, + [`cs_escapeartistassistant`] = { model = "cs_escapeartistassistant", hash = 0x929C4793, outfits = 1 }, + [`cs_evelynmiller`] = { model = "cs_evelynmiller", hash = 0x2C4CA0A0, outfits = 3 }, + [`cs_exconfedinformant`] = { model = "cs_exconfedinformant", hash = 0xF0EAC712, outfits = 1 }, + [`cs_exconfedsleader_01`] = { model = "cs_exconfedsleader_01", hash = 0x11E95A0F, outfits = 1 }, + [`cs_exoticcollector`] = { model = "cs_exoticcollector", hash = 0x59D39598, outfits = 2 }, + [`cs_famousgunslinger_01`] = { model = "cs_famousgunslinger_01", hash = 0xFA274E38, outfits = 2 }, + [`cs_famousgunslinger_02`] = { model = "cs_famousgunslinger_02", hash = 0x504E7A85, outfits = 1 }, + [`cs_famousgunslinger_03`] = { model = "cs_famousgunslinger_03", hash = 0xDEBB9761, outfits = 1 }, + [`cs_famousgunslinger_04`] = { model = "cs_famousgunslinger_04", hash = 0x14F583D4, outfits = 1 }, + [`cs_famousgunslinger_05`] = { model = "cs_famousgunslinger_05", hash = 0x236820B9, outfits = 1 }, + [`cs_famousgunslinger_06`] = { model = "cs_famousgunslinger_06", hash = 0x79B7CD5F, outfits = 3 }, + [`cs_featherstonchambers`] = { model = "cs_featherstonchambers", hash = 0x8D374040, outfits = 1 }, + [`cs_featsofstrength`] = { model = "cs_featsofstrength", hash = 0x8D6618C3, outfits = 2 }, + [`cs_fightref`] = { model = "cs_fightref", hash = 0x53308B76, outfits = 1 }, + [`cs_fire_breather`] = { model = "cs_fire_breather", hash = 0xEADD5782, outfits = 4 }, + [`cs_fishcollector`] = { model = "cs_fishcollector", hash = 0x5A3FC29E, outfits = 4 }, + [`cs_forgivenhusband_01`] = { model = "cs_forgivenhusband_01", hash = 0x61F3D8F8, outfits = 1 }, + [`cs_forgivenwife_01`] = { model = "cs_forgivenwife_01", hash = 0xD36D9790, outfits = 1 }, + [`cs_formyartbigwoman`] = { model = "cs_formyartbigwoman", hash = 0xB4449A8A, outfits = 1 }, + [`cs_francis_sinclair`] = { model = "cs_francis_sinclair", hash = 0x9634D7B5, outfits = 1 }, + [`cs_frenchartist`] = { model = "cs_frenchartist", hash = 0xD809F182, outfits = 2 }, + [`cs_frenchman_01`] = { model = "cs_frenchman_01", hash = 0xF258BC07, outfits = 1 }, + [`cs_fussar`] = { model = "cs_fussar", hash = 0x8D883B70, outfits = 2 }, + [`cs_garethbraithwaite`] = { model = "cs_garethbraithwaite", hash = 0x968AB03C, outfits = 1 }, + [`cs_gavin`] = { model = "cs_gavin", hash = 0x4C5C60B2, outfits = 2 }, + [`cs_genstoryfemale`] = { model = "cs_genstoryfemale", hash = 0x3CCC99B1, outfits = 2 }, + [`cs_genstorymale`] = { model = "cs_genstorymale", hash = 0xD9E8B86A, outfits = 1 }, + [`cs_geraldbraithwaite`] = { model = "cs_geraldbraithwaite", hash = 0xBB35418E, outfits = 2 }, + [`cs_germandaughter`] = { model = "cs_germandaughter", hash = 0x39FD28AE, outfits = 1 }, + [`cs_germanfather`] = { model = "cs_germanfather", hash = 0x5205A246, outfits = 5 }, + [`cs_germanmother`] = { model = "cs_germanmother", hash = 0x771EA179, outfits = 3 }, + [`cs_germanson`] = { model = "cs_germanson", hash = 0x0D5EB39A, outfits = 2 }, + [`cs_gilbertknightly`] = { model = "cs_gilbertknightly", hash = 0xE1B35B43, outfits = 1 }, + [`cs_gloria`] = { model = "cs_gloria", hash = 0x9B5487C9, outfits = 1 }, + [`cs_grizzledjon`] = { model = "cs_grizzledjon", hash = 0xBDB43F31, outfits = 2 }, + [`cs_guidomartelli`] = { model = "cs_guidomartelli", hash = 0x9EDFC6EB, outfits = 3 }, + [`cs_hamish`] = { model = "cs_hamish", hash = 0x6D084810, outfits = 1 }, + [`cs_hectorfellowes`] = { model = "cs_hectorfellowes", hash = 0x6D8B4BB9, outfits = 3 }, + [`cs_henrilemiux`] = { model = "cs_henrilemiux", hash = 0x30324925, outfits = 2 }, + [`cs_herbalist`] = { model = "cs_herbalist", hash = 0x0C60474A, outfits = 1 }, + [`cs_hercule`] = { model = "cs_hercule", hash = 0x4C165ECF, outfits = 2 }, + [`cs_hestonjameson`] = { model = "cs_hestonjameson", hash = 0xA560451D, outfits = 2 }, + [`cs_hobartcrawley`] = { model = "cs_hobartcrawley", hash = 0xB0C337A3, outfits = 2 }, + [`cs_hoseamatthews`] = { model = "cs_hoseamatthews", hash = 0x490733E8, outfits = 13 }, + [`cs_iangray`] = { model = "cs_iangray", hash = 0x88094B37, outfits = 1 }, + [`cs_jackmarston`] = { model = "cs_jackmarston", hash = 0x71F7EE1B, outfits = 8 }, + [`cs_jackmarston_teen`] = { model = "cs_jackmarston_teen", hash = 0xDA5990BC, outfits = 10 }, + [`cs_jamie`] = { model = "cs_jamie", hash = 0x004C2AF4, outfits = 1 }, + [`cs_janson`] = { model = "cs_janson", hash = 0xD2E125B6, outfits = 1 }, + [`cs_javierescuella`] = { model = "cs_javierescuella", hash = 0x6DE3800C, outfits = 32 }, + [`cs_jeb`] = { model = "cs_jeb", hash = 0x5548F1E9, outfits = 3 }, + [`cs_jimcalloway`] = { model = "cs_jimcalloway", hash = 0x6C30159E, outfits = 1 }, + [`cs_jockgray`] = { model = "cs_jockgray", hash = 0x9DE34628, outfits = 1 }, + [`cs_joe`] = { model = "cs_joe", hash = 0xE569265F, outfits = 2 }, + [`cs_joebutler`] = { model = "cs_joebutler", hash = 0x54951099, outfits = 2 }, + [`cs_johnmarston`] = { model = "cs_johnmarston", hash = 0x05B6D06D, outfits = 31 }, + [`cs_johnthebaptisingmadman`] = { model = "cs_johnthebaptisingmadman", hash = 0x442FBDDC, outfits = 2 }, + [`cs_johnweathers`] = { model = "cs_johnweathers", hash = 0x7D357931, outfits = 1 }, + [`cs_josiahtrelawny`] = { model = "cs_josiahtrelawny", hash = 0x3BFD7D5D, outfits = 10 }, + [`cs_jules`] = { model = "cs_jules", hash = 0xB4F83876, outfits = 2 }, + [`cs_karen`] = { model = "cs_karen", hash = 0x9A3E29FB, outfits = 16 }, + [`cs_karensjohn_01`] = { model = "cs_karensjohn_01", hash = 0x013504F0, outfits = 2 }, + [`cs_kieran`] = { model = "cs_kieran", hash = 0x739BA0D6, outfits = 11 }, + [`cs_laramie`] = { model = "cs_laramie", hash = 0xBFD90AEA, outfits = 2 }, + [`cs_leighgray`] = { model = "cs_leighgray", hash = 0x97F8823A, outfits = 1 }, + [`cs_lemiuxassistant`] = { model = "cs_lemiuxassistant", hash = 0x3AEDE260, outfits = 2 }, + [`cs_lenny`] = { model = "cs_lenny", hash = 0xF8AE5F8D, outfits = 17 }, + [`cs_leon`] = { model = "cs_leon", hash = 0xC91ADF62, outfits = 3 }, + [`cs_leostrauss`] = { model = "cs_leostrauss", hash = 0xFA0312B3, outfits = 11 }, + [`cs_levisimon`] = { model = "cs_levisimon", hash = 0x4D24C49A, outfits = 1 }, + [`cs_leviticuscornwall`] = { model = "cs_leviticuscornwall", hash = 0x8A1FCA47, outfits = 1 }, + [`cs_lillianpowell`] = { model = "cs_lillianpowell", hash = 0x19686DFA, outfits = 3 }, + [`cs_lillymillet`] = { model = "cs_lillymillet", hash = 0x55C7D09F, outfits = 1 }, + [`cs_londonderryson`] = { model = "cs_londonderryson", hash = 0x4DBE35B8, outfits = 1 }, + [`cs_lucanapoli`] = { model = "cs_lucanapoli", hash = 0x77435EF1, outfits = 1 }, + [`cs_magnifico`] = { model = "cs_magnifico", hash = 0x5F5942DD, outfits = 2 }, + [`cs_mamawatson`] = { model = "cs_mamawatson", hash = 0x4B6ECAEF, outfits = 1 }, + [`cs_marshall_thurwell`] = { model = "cs_marshall_thurwell", hash = 0x3940877D, outfits = 1 }, + [`cs_marybeth`] = { model = "cs_marybeth", hash = 0x9B37429C, outfits = 8 }, + [`cs_marylinton`] = { model = "cs_marylinton", hash = 0x3EA5B5BC, outfits = 5 }, + [`cs_meditatingmonk`] = { model = "cs_meditatingmonk", hash = 0xF04DEE7E, outfits = 1 }, + [`cs_meredith`] = { model = "cs_meredith", hash = 0xC0321438, outfits = 1 }, + [`cs_meredithsmother`] = { model = "cs_meredithsmother", hash = 0x3112E4AC, outfits = 1 }, + [`cs_micahbell`] = { model = "cs_micahbell", hash = 0xDE361D65, outfits = 32 }, + [`cs_micahsnemesis`] = { model = "cs_micahsnemesis", hash = 0xE2D294AB, outfits = 1 }, + [`cs_mickey`] = { model = "cs_mickey", hash = 0xA1DFB431, outfits = 2 }, + [`cs_miltonandrews`] = { model = "cs_miltonandrews", hash = 0x01004B26, outfits = 2 }, + [`cs_missmarjorie`] = { model = "cs_missmarjorie", hash = 0x859CBAAC, outfits = 3 }, + [`cs_mixedracekid`] = { model = "cs_mixedracekid", hash = 0xFBBC94C6, outfits = 2 }, + [`cs_moira`] = { model = "cs_moira", hash = 0x9BAAB546, outfits = 1 }, + [`cs_mollyoshea`] = { model = "cs_mollyoshea", hash = 0xEB55C35E, outfits = 8 }, + [`cs_mp_alfredo_montez`] = { model = "cs_mp_alfredo_montez", hash = 0x4C4448BA, outfits = 4 }, + [`cs_mp_allison`] = { model = "cs_mp_allison", hash = 0x931F01E5, outfits = 1 }, + [`cs_mp_amos_lansing`] = { model = "cs_mp_amos_lansing", hash = 0x30E034CA, outfits = 1 }, + [`cs_mp_bonnie`] = { model = "cs_mp_bonnie", hash = 0x39456FEE, outfits = 1 }, + [`cs_mp_bountyhunter`] = { model = "cs_mp_bountyhunter", hash = 0x892944C5, outfits = 1 }, + [`cs_mp_camp_cook`] = { model = "cs_mp_camp_cook", hash = 0x9F7769F3, outfits = 3 }, + [`cs_mp_cliff`] = { model = "cs_mp_cliff", hash = 0xEADDA26C, outfits = 1 }, + [`cs_mp_cripps`] = { model = "cs_mp_cripps", hash = 0x1DD24709, outfits = 25 }, + [`cs_mp_grace_lancing`] = { model = "cs_mp_grace_lancing", hash = 0x2CDA4B15, outfits = 1 }, + [`cs_mp_hans`] = { model = "cs_mp_hans", hash = 0x893E6E25, outfits = 1 }, + [`cs_mp_henchman`] = { model = "cs_mp_henchman", hash = 0xDAB77DF1, outfits = 3 }, + [`cs_mp_horley`] = { model = "cs_mp_horley", hash = 0x4BFBF802, outfits = 1 }, + [`cs_mp_jeremiah_shaw`] = { model = "cs_mp_jeremiah_shaw", hash = 0x2EDEF9ED, outfits = 1 }, + [`cs_mp_jessica`] = { model = "cs_mp_jessica", hash = 0x6B759DBB, outfits = 3 }, + [`cs_mp_jorge_montez`] = { model = "cs_mp_jorge_montez", hash = 0x8BF81D72, outfits = 2 }, + [`cs_mp_langston`] = { model = "cs_mp_langston", hash = 0x9A00FB76, outfits = 1 }, + [`cs_mp_lee`] = { model = "cs_mp_lee", hash = 0x75DCACF2, outfits = 1 }, + [`cs_mp_mabel`] = { model = "cs_mp_mabel", hash = 0xB93CB429, outfits = 1 }, + [`cs_mp_marshall_davies`] = { model = "cs_mp_marshall_davies", hash = 0xE24327D2, outfits = 2 }, + [`cs_mp_moonshiner`] = { model = "cs_mp_moonshiner", hash = 0x65C51599, outfits = 1 }, + [`cs_mp_mradler`] = { model = "cs_mp_mradler", hash = 0xA3261C0D, outfits = 1 }, + [`cs_mp_oldman_jones`] = { model = "cs_mp_oldman_jones", hash = 0xE87FE55D, outfits = 2 }, + [`cs_mp_revenge_marshall`] = { model = "cs_mp_revenge_marshall", hash = 0x4549CCA0, outfits = 1 }, + [`cs_mp_samson_finch`] = { model = "cs_mp_samson_finch", hash = 0xE757DE29, outfits = 3 }, + [`cs_mp_shaky`] = { model = "cs_mp_shaky", hash = 0x9A3713AD, outfits = 1 }, + [`cs_mp_sherifffreeman`] = { model = "cs_mp_sherifffreeman", hash = 0x28AE1CF3, outfits = 1 }, + [`cs_mp_teddybrown`] = { model = "cs_mp_teddybrown", hash = 0xBB202735, outfits = 2 }, + [`cs_mp_terrance`] = { model = "cs_mp_terrance", hash = 0xB36FBE5E, outfits = 1 }, + [`cs_mp_the_boy`] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [`cs_mp_travellingsaleswoman`] = { model = "cs_mp_travellingsaleswoman", hash = 0xE20455E9, outfits = 1 }, + [`cs_mp_went`] = { model = "cs_mp_went", hash = 0xB496E3FB, outfits = 3 }, + [`cs_mradler`] = { model = "cs_mradler", hash = 0xAB270CC9, outfits = 3 }, + [`cs_mrdevon`] = { model = "cs_mrdevon", hash = 0xA89E5746, outfits = 1 }, + [`cs_mrlinton`] = { model = "cs_mrlinton", hash = 0xEFBFEDB1, outfits = 1 }, + [`cs_mrpearson`] = { model = "cs_mrpearson", hash = 0x3AAAB060, outfits = 9 }, + [`cs_mrsadler`] = { model = "cs_mrsadler", hash = 0x155E51DB, outfits = 22 }, + [`cs_mrsfellows`] = { model = "cs_mrsfellows", hash = 0x2AB79B76, outfits = 1 }, + [`cs_mrsgeddes`] = { model = "cs_mrsgeddes", hash = 0xEFC21975, outfits = 1 }, + [`cs_mrslondonderry`] = { model = "cs_mrslondonderry", hash = 0x5187C29B, outfits = 1 }, + [`cs_mrsweathers`] = { model = "cs_mrsweathers", hash = 0xFEFB81C0, outfits = 1 }, + [`cs_mrs_calhoun`] = { model = "cs_mrs_calhoun", hash = 0x4481AEDF, outfits = 1 }, + [`cs_mrs_sinclair`] = { model = "cs_mrs_sinclair", hash = 0x62C1389E, outfits = 1 }, + [`cs_mrwayne`] = { model = "cs_mrwayne", hash = 0x41A0B3F7, outfits = 1 }, + [`cs_mud2bigguy`] = { model = "cs_mud2bigguy", hash = 0x84490A12, outfits = 6 }, + [`cs_mysteriousstranger`] = { model = "cs_mysteriousstranger", hash = 0xF65EE3E1, outfits = 1 }, + [`cs_nbxdrunk`] = { model = "cs_nbxdrunk", hash = 0x753590C4, outfits = 2 }, + [`cs_nbxexecuted`] = { model = "cs_nbxexecuted", hash = 0x79AEBA08, outfits = 2 }, + [`cs_nbxpolicechiefformal`] = { model = "cs_nbxpolicechiefformal", hash = 0xC19649AA, outfits = 1 }, + [`cs_nbxreceptionist_01`] = { model = "cs_nbxreceptionist_01", hash = 0xC175E70A, outfits = 1 }, + [`cs_nial_whelan`] = { model = "cs_nial_whelan", hash = 0xB304BB4D, outfits = 1 }, + [`cs_nicholastimmins`] = { model = "cs_nicholastimmins", hash = 0x4995C0A5, outfits = 2 }, + [`cs_nils`] = { model = "cs_nils", hash = 0x031076F6, outfits = 1 }, + [`cs_norrisforsythe`] = { model = "cs_norrisforsythe", hash = 0xB4B65231, outfits = 2 }, + [`cs_obediahhinton`] = { model = "cs_obediahhinton", hash = 0x04156A73, outfits = 1 }, + [`cs_oddfellowspinhead`] = { model = "cs_oddfellowspinhead", hash = 0xA91215CD, outfits = 2 }, + [`cs_odprostitute`] = { model = "cs_odprostitute", hash = 0x62589584, outfits = 1 }, + [`cs_operasinger`] = { model = "cs_operasinger", hash = 0x5B00992C, outfits = 1 }, + [`cs_paytah`] = { model = "cs_paytah", hash = 0xBC537EB7, outfits = 4 }, + [`cs_penelopebraithwaite`] = { model = "cs_penelopebraithwaite", hash = 0x8617AB88, outfits = 2 }, + [`cs_pinkertongoon`] = { model = "cs_pinkertongoon", hash = 0xA06649D4, outfits = 1 }, + [`cs_poisonwellshaman`] = { model = "cs_poisonwellshaman", hash = 0x2E258627, outfits = 2 }, + [`cs_poorjoe`] = { model = "cs_poorjoe", hash = 0x19E97506, outfits = 1 }, + [`cs_priest_wedding`] = { model = "cs_priest_wedding", hash = 0xDD5F0343, outfits = 1 }, + [`cs_princessisabeau`] = { model = "cs_princessisabeau", hash = 0x89F94DED, outfits = 1 }, + [`cs_professorbell`] = { model = "cs_professorbell", hash = 0x7E1809E8, outfits = 1 }, + [`cs_rainsfall`] = { model = "cs_rainsfall", hash = 0x85FE1E48, outfits = 5 }, + [`cs_ramon_cortez`] = { model = "cs_ramon_cortez", hash = 0x7CF95C98, outfits = 1 }, + [`cs_reverendfortheringham`] = { model = "cs_reverendfortheringham", hash = 0x656E59CC, outfits = 2 }, + [`cs_revswanson`] = { model = "cs_revswanson", hash = 0x60713474, outfits = 7 }, + [`cs_rhodeputy_01`] = { model = "cs_rhodeputy_01", hash = 0xC7BB68D5, outfits = 1 }, + [`cs_rhodeputy_02`] = { model = "cs_rhodeputy_02", hash = 0x583389C7, outfits = 1 }, + [`cs_rhodesassistant`] = { model = "cs_rhodesassistant", hash = 0x774AB298, outfits = 1 }, + [`cs_rhodeskidnapvictim`] = { model = "cs_rhodeskidnapvictim", hash = 0x0F23E138, outfits = 1 }, + [`cs_rhodessaloonbouncer`] = { model = "cs_rhodessaloonbouncer", hash = 0x7FA4ED12, outfits = 1 }, + [`cs_ringmaster`] = { model = "cs_ringmaster", hash = 0x772D9802, outfits = 1 }, + [`cs_rockyseven_widow`] = { model = "cs_rockyseven_widow", hash = 0xF79A7EC2, outfits = 5 }, + [`cs_samaritan`] = { model = "cs_samaritan", hash = 0xF0297311, outfits = 1 }, + [`cs_scottgray`] = { model = "cs_scottgray", hash = 0xCF75E336, outfits = 1 }, + [`cs_sddoctor_01`] = { model = "cs_sddoctor_01", hash = 0xCF12BFF0, outfits = 1 }, + [`cs_sdpriest`] = { model = "cs_sdpriest", hash = 0xE4E66C41, outfits = 1 }, + [`cs_sdsaloondrunk_01`] = { model = "cs_sdsaloondrunk_01", hash = 0x6DC2F2F2, outfits = 1 }, + [`cs_sdstreetkidthief`] = { model = "cs_sdstreetkidthief", hash = 0x0F274F72, outfits = 1 }, + [`cs_sd_streetkid_01`] = { model = "cs_sd_streetkid_01", hash = 0xEEB2E5FD, outfits = 1 }, + [`cs_sd_streetkid_01a`] = { model = "cs_sd_streetkid_01a", hash = 0x678E7CA0, outfits = 1 }, + [`cs_sd_streetkid_01b`] = { model = "cs_sd_streetkid_01b", hash = 0x32541234, outfits = 1 }, + [`cs_sd_streetkid_02`] = { model = "cs_sd_streetkid_02", hash = 0x6EF76684, outfits = 1 }, + [`cs_sean`] = { model = "cs_sean", hash = 0xE0D7A2B2, outfits = 17 }, + [`cs_sherifffreeman`] = { model = "cs_sherifffreeman", hash = 0xC192917D, outfits = 2 }, + [`cs_sheriffowens`] = { model = "cs_sheriffowens", hash = 0xCEE81C27, outfits = 2 }, + [`cs_sistercalderon`] = { model = "cs_sistercalderon", hash = 0x839CCCAC, outfits = 1 }, + [`cs_slavecatcher`] = { model = "cs_slavecatcher", hash = 0xE9B80099, outfits = 1 }, + [`cs_soothsayer`] = { model = "cs_soothsayer", hash = 0x51C80EFD, outfits = 2 }, + [`cs_strawberryoutlaw_01`] = { model = "cs_strawberryoutlaw_01", hash = 0x4B7EAC47, outfits = 1 }, + [`cs_strawberryoutlaw_02`] = { model = "cs_strawberryoutlaw_02", hash = 0x99D4C8F2, outfits = 1 }, + [`cs_strdeputy_01`] = { model = "cs_strdeputy_01", hash = 0xA792AF18, outfits = 1 }, + [`cs_strdeputy_02`] = { model = "cs_strdeputy_02", hash = 0xDDD99BA5, outfits = 1 }, + [`cs_strsheriff_01`] = { model = "cs_strsheriff_01", hash = 0x83E7B7BB, outfits = 1 }, + [`cs_sunworshipper`] = { model = "cs_sunworshipper", hash = 0x196D5830, outfits = 1 }, + [`cs_susangrimshaw`] = { model = "cs_susangrimshaw", hash = 0x6509A069, outfits = 12 }, + [`cs_swampfreak`] = { model = "cs_swampfreak", hash = 0xA9A328D5, outfits = 1 }, + [`cs_swampweirdosonny`] = { model = "cs_swampweirdosonny", hash = 0x87A4C0B9, outfits = 3 }, + [`cs_sworddancer`] = { model = "cs_sworddancer", hash = 0x9654DDCF, outfits = 1 }, + [`cs_tavishgray`] = { model = "cs_tavishgray", hash = 0x53E86B71, outfits = 1 }, + [`cs_taxidermist`] = { model = "cs_taxidermist", hash = 0x21914E41, outfits = 1 }, + [`cs_theodorelevin`] = { model = "cs_theodorelevin", hash = 0x49644A6F, outfits = 2 }, + [`cs_thomasdown`] = { model = "cs_thomasdown", hash = 0x03DFFD04, outfits = 2 }, + [`cs_tigerhandler`] = { model = "cs_tigerhandler", hash = 0xD690782C, outfits = 1 }, + [`cs_tilly`] = { model = "cs_tilly", hash = 0x3DE6A545, outfits = 12 }, + [`cs_timothydonahue`] = { model = "cs_timothydonahue", hash = 0x8868C876, outfits = 2 }, + [`cs_tinyhermit`] = { model = "cs_tinyhermit", hash = 0x8853FF79, outfits = 2 }, + [`cs_tomdickens`] = { model = "cs_tomdickens", hash = 0xBABFD910, outfits = 3 }, + [`cs_towncrier`] = { model = "cs_towncrier", hash = 0x13458A93, outfits = 2 }, + [`cs_treasurehunter`] = { model = "cs_treasurehunter", hash = 0x3AF591E8, outfits = 1 }, + [`cs_twinbrother_01`] = { model = "cs_twinbrother_01", hash = 0x361005DD, outfits = 2 }, + [`cs_twinbrother_02`] = { model = "cs_twinbrother_02", hash = 0xA49B62BA, outfits = 2 }, + [`cs_twingroupie_01`] = { model = "cs_twingroupie_01", hash = 0xFD3C2696, outfits = 1 }, + [`cs_twingroupie_02`] = { model = "cs_twingroupie_02", hash = 0xEB8B8335, outfits = 1 }, + [`cs_uncle`] = { model = "cs_uncle", hash = 0xC63726DF, outfits = 12 }, + [`cs_unidusterjail_01`] = { model = "cs_unidusterjail_01", hash = 0x87EF0B8D, outfits = 1 }, + [`cs_valauctionboss_01`] = { model = "cs_valauctionboss_01", hash = 0x70BEBBCF, outfits = 2 }, + [`cs_valdeputy_01`] = { model = "cs_valdeputy_01", hash = 0x6C07EC33, outfits = 1 }, + [`cs_valprayingman`] = { model = "cs_valprayingman", hash = 0x4124A908, outfits = 1 }, + [`cs_valprostitute_01`] = { model = "cs_valprostitute_01", hash = 0x3A643444, outfits = 1 }, + [`cs_valprostitute_02`] = { model = "cs_valprostitute_02", hash = 0x2B769669, outfits = 1 }, + [`cs_valsheriff`] = { model = "cs_valsheriff", hash = 0x8FB23370, outfits = 2 }, + [`cs_vampire`] = { model = "cs_vampire", hash = 0xD95BCB7D, outfits = 1 }, + [`cs_vht_bathgirl`] = { model = "cs_vht_bathgirl", hash = 0x36781BAC, outfits = 1 }, + [`cs_wapitiboy`] = { model = "cs_wapitiboy", hash = 0xFB0A7382, outfits = 1 }, + [`cs_warvet`] = { model = "cs_warvet", hash = 0x9C0C8EE9, outfits = 3 }, + [`cs_watson_01`] = { model = "cs_watson_01", hash = 0x69439F09, outfits = 1 }, + [`cs_watson_02`] = { model = "cs_watson_02", hash = 0x8C16E4AF, outfits = 1 }, + [`cs_watson_03`] = { model = "cs_watson_03", hash = 0x44EFD66E, outfits = 1 }, + [`cs_welshfighter`] = { model = "cs_welshfighter", hash = 0x02E86DB1, outfits = 1 }, + [`cs_wintonholmes`] = { model = "cs_wintonholmes", hash = 0x03387076, outfits = 3 }, + [`cs_wrobel`] = { model = "cs_wrobel", hash = 0xBE52968B, outfits = 1 }, + [`female_skeleton`] = { model = "female_skeleton", hash = 0x0D7B4617, outfits = 7 }, + [`gc_lemoynecaptive_males_01`] = { model = "gc_lemoynecaptive_males_01", hash = 0x86B3E995, outfits = 1 }, + [`gc_skinnertorture_males_01`] = { model = "gc_skinnertorture_males_01", hash = 0x8C1DC732, outfits = 2 }, + [`ge_delloboparty_females_01`] = { model = "ge_delloboparty_females_01", hash = 0x70E42FE7, outfits = 2 }, + [`g_f_m_uniduster_01`] = { model = "g_f_m_uniduster_01", hash = 0x335F7F4B, outfits = 3 }, + [`g_m_m_bountyhunters_01`] = { model = "g_m_m_bountyhunters_01", hash = 0x1973FE45, outfits = 65 }, + [`g_m_m_uniafricanamericangang_01`] = { model = "g_m_m_uniafricanamericangang_01", hash = 0xBB343A2C, outfits = 42 }, + [`g_m_m_unibanditos_01`] = { model = "g_m_m_unibanditos_01", hash = 0x19486791, outfits = 167 }, + [`g_m_m_unibraithwaites_01`] = { model = "g_m_m_unibraithwaites_01", hash = 0x2B92A067, outfits = 50 }, + [`g_m_m_unibrontegoons_01`] = { model = "g_m_m_unibrontegoons_01", hash = 0x58277E70, outfits = 83 }, + [`g_m_m_unicornwallgoons_01`] = { model = "g_m_m_unicornwallgoons_01", hash = 0x93A369F1, outfits = 86 }, + [`g_m_m_unicriminals_01`] = { model = "g_m_m_unicriminals_01", hash = 0x3F094007, outfits = 150 }, + [`g_m_m_unicriminals_02`] = { model = "g_m_m_unicriminals_02", hash = 0x8954549C, outfits = 60 }, + [`g_m_m_uniduster_01`] = { model = "g_m_m_uniduster_01", hash = 0x14B7F44D, outfits = 184 }, + [`g_m_m_uniduster_02`] = { model = "g_m_m_uniduster_02", hash = 0x030250E2, outfits = 56 }, + [`g_m_m_uniduster_03`] = { model = "g_m_m_uniduster_03", hash = 0xB4163307, outfits = 37 }, + [`g_m_m_uniduster_04`] = { model = "g_m_m_uniduster_04", hash = 0xD2846FE3, outfits = 9 }, + [`g_m_m_uniduster_05`] = { model = "g_m_m_uniduster_05", hash = 0x4FAEEA3A, outfits = 26 }, + [`g_m_m_unigrays_01`] = { model = "g_m_m_unigrays_01", hash = 0x15EB41F6, outfits = 51 }, + [`g_m_m_unigrays_02`] = { model = "g_m_m_unigrays_02", hash = 0x07A1A563, outfits = 30 }, + [`g_m_m_uniinbred_01`] = { model = "g_m_m_uniinbred_01", hash = 0x15AF635E, outfits = 131 }, + [`g_m_m_unilangstonboys_01`] = { model = "g_m_m_unilangstonboys_01", hash = 0x5B44EF58, outfits = 35 }, + [`g_m_m_unimicahgoons_01`] = { model = "g_m_m_unimicahgoons_01", hash = 0x0FD91413, outfits = 31 }, + [`g_m_m_unimountainmen_01`] = { model = "g_m_m_unimountainmen_01", hash = 0xAB3EBD92, outfits = 129 }, + [`g_m_m_uniranchers_01`] = { model = "g_m_m_uniranchers_01", hash = 0xBF03A565, outfits = 87 }, + [`g_m_m_uniswamp_01`] = { model = "g_m_m_uniswamp_01", hash = 0xE0165EA0, outfits = 43 }, + [`g_m_o_uniexconfeds_01`] = { model = "g_m_o_uniexconfeds_01", hash = 0xEAD13D7C, outfits = 93 }, + [`g_m_y_uniexconfeds_01`] = { model = "g_m_y_uniexconfeds_01", hash = 0xDA82E29B, outfits = 124 }, + [`g_m_y_uniexconfeds_02`] = { model = "g_m_y_uniexconfeds_02", hash = 0xC631B9F9, outfits = 33 }, + [`loansharking_asbminer_males_01`] = { model = "loansharking_asbminer_males_01", hash = 0xA9567850, outfits = 1 }, + [`loansharking_horsechase1_males_01`] = { model = "loansharking_horsechase1_males_01", hash = 0x9DD82D05, outfits = 2 }, + [`loansharking_undertaker_females_01`] = { model = "loansharking_undertaker_females_01", hash = 0x4E711917, outfits = 4 }, + [`loansharking_undertaker_males_01`] = { model = "loansharking_undertaker_males_01", hash = 0x67C00DFB, outfits = 3 }, + [`male_skeleton`] = { model = "male_skeleton", hash = 0xDFEF070E, outfits = 4 }, + [`mbh_rhodesrancher_females_01`] = { model = "mbh_rhodesrancher_females_01", hash = 0xC4C0600A, outfits = 1 }, + [`mbh_rhodesrancher_teens_01`] = { model = "mbh_rhodesrancher_teens_01", hash = 0x5F0A1475, outfits = 1 }, + [`mbh_skinnersearch_males_01`] = { model = "mbh_skinnersearch_males_01", hash = 0xDF4A4EAC, outfits = 2 }, + [`mes_abigail2_males_01`] = { model = "mes_abigail2_males_01", hash = 0x741E7444, outfits = 4 }, + [`mes_finale2_females_01`] = { model = "mes_finale2_females_01", hash = 0xB7E1A569, outfits = 1 }, + [`mes_finale2_males_01`] = { model = "mes_finale2_males_01", hash = 0x28618747, outfits = 4 }, + [`mes_finale3_males_01`] = { model = "mes_finale3_males_01", hash = 0x389A64ED, outfits = 3 }, + [`mes_marston1_males_01`] = { model = "mes_marston1_males_01", hash = 0x45402C7A, outfits = 2 }, + [`mes_marston2_males_01`] = { model = "mes_marston2_males_01", hash = 0x991856F4, outfits = 4 }, + [`mes_marston5_2_males_01`] = { model = "mes_marston5_2_males_01", hash = 0x3E837D5B, outfits = 1 }, + [`mes_marston6_females_01`] = { model = "mes_marston6_females_01", hash = 0x01C0B992, outfits = 1 }, + [`mes_marston6_males_01`] = { model = "mes_marston6_males_01", hash = 0x7BE6B9E8, outfits = 29 }, + [`mes_marston6_teens_01`] = { model = "mes_marston6_teens_01", hash = 0x1DE80335, outfits = 1 }, + [`mes_sadie4_males_01`] = { model = "mes_sadie4_males_01", hash = 0x74B85769, outfits = 1 }, + [`mes_sadie5_males_01`] = { model = "mes_sadie5_males_01", hash = 0x09FBB7EC, outfits = 7 }, + [`mp_asntrk_elysianpool_males_01`] = { model = "mp_asntrk_elysianpool_males_01", hash = 0x9775AA11, outfits = 6 }, + [`mp_asntrk_grizzlieswest_males_01`] = { model = "mp_asntrk_grizzlieswest_males_01", hash = 0xA8D76FEE, outfits = 6 }, + [`mp_asntrk_hagenorchard_males_01`] = { model = "mp_asntrk_hagenorchard_males_01", hash = 0x6F3BC4E1, outfits = 6 }, + [`mp_asntrk_isabella_males_01`] = { model = "mp_asntrk_isabella_males_01", hash = 0xE9C4EF73, outfits = 6 }, + [`mp_asntrk_talltrees_males_01`] = { model = "mp_asntrk_talltrees_males_01", hash = 0x61227303, outfits = 6 }, + [`mp_asn_benedictpoint_females_01`] = { model = "mp_asn_benedictpoint_females_01", hash = 0xE30D07F8, outfits = 1 }, + [`mp_asn_benedictpoint_males_01`] = { model = "mp_asn_benedictpoint_males_01", hash = 0x8F4385F4, outfits = 6 }, + [`mp_asn_blackwater_males_01`] = { model = "mp_asn_blackwater_males_01", hash = 0x9A33030D, outfits = 6 }, + [`mp_asn_braithwaitemanor_males_01`] = { model = "mp_asn_braithwaitemanor_males_01", hash = 0xFF2ED4F7, outfits = 2 }, + [`mp_asn_braithwaitemanor_males_02`] = { model = "mp_asn_braithwaitemanor_males_02", hash = 0xA6EFA47E, outfits = 4 }, + [`mp_asn_braithwaitemanor_males_03`] = { model = "mp_asn_braithwaitemanor_males_03", hash = 0xA1A899F0, outfits = 5 }, + [`mp_asn_civilwarfort_males_01`] = { model = "mp_asn_civilwarfort_males_01", hash = 0x157604BC, outfits = 6 }, + [`mp_asn_gaptoothbreach_males_01`] = { model = "mp_asn_gaptoothbreach_males_01", hash = 0x3A31D8F5, outfits = 6 }, + [`mp_asn_pikesbasin_males_01`] = { model = "mp_asn_pikesbasin_males_01", hash = 0x83DD3196, outfits = 5 }, + [`mp_asn_sdpolicestation_males_01`] = { model = "mp_asn_sdpolicestation_males_01", hash = 0x75D3315F, outfits = 6 }, + [`mp_asn_sdwedding_females_01`] = { model = "mp_asn_sdwedding_females_01", hash = 0xA04152A6, outfits = 3 }, + [`mp_asn_sdwedding_males_01`] = { model = "mp_asn_sdwedding_males_01", hash = 0xEB1EA62E, outfits = 5 }, + [`mp_asn_shadybelle_females_01`] = { model = "mp_asn_shadybelle_females_01", hash = 0x4B40DFF1, outfits = 1 }, + [`mp_asn_stillwater_males_01`] = { model = "mp_asn_stillwater_males_01", hash = 0xBAD040F0, outfits = 6 }, + [`MP_A_C_HORSECORPSE_01`] = { model = "MP_A_C_HORSECORPSE_01", hash = 0x586000CF, outfits = 16 }, + [`mp_a_f_m_cardgameplayers_01`] = { model = "mp_a_f_m_cardgameplayers_01", hash = 0xEE6C00F6, outfits = 40 }, + [`MP_A_F_M_UniCorpse_01`] = { model = "MP_A_F_M_UniCorpse_01", hash = 0x37DF19AF, outfits = 44 }, + [`mp_a_m_m_laboruprisers_01`] = { model = "mp_a_m_m_laboruprisers_01", hash = 0xC7FDE9D0, outfits = 53 }, + [`MP_A_M_M_UniCorpse_01`] = { model = "MP_A_M_M_UniCorpse_01", hash = 0x82868F58, outfits = 142 }, + [`mp_campdef_bluewater_females_01`] = { model = "mp_campdef_bluewater_females_01", hash = 0x79E64F11, outfits = 1 }, + [`mp_campdef_bluewater_males_01`] = { model = "mp_campdef_bluewater_males_01", hash = 0xD26B0098, outfits = 1 }, + [`mp_campdef_chollasprings_females_01`] = { model = "mp_campdef_chollasprings_females_01", hash = 0x82228527, outfits = 1 }, + [`mp_campdef_chollasprings_males_01`] = { model = "mp_campdef_chollasprings_males_01", hash = 0xB128F981, outfits = 2 }, + [`mp_campdef_eastnewhanover_females_01`] = { model = "mp_campdef_eastnewhanover_females_01", hash = 0x91ACA5B0, outfits = 1 }, + [`mp_campdef_eastnewhanover_males_01`] = { model = "mp_campdef_eastnewhanover_males_01", hash = 0x4F356F45, outfits = 1 }, + [`mp_campdef_gaptoothbreach_females_01`] = { model = "mp_campdef_gaptoothbreach_females_01", hash = 0xF1C2D3BB, outfits = 1 }, + [`mp_campdef_gaptoothbreach_males_01`] = { model = "mp_campdef_gaptoothbreach_males_01", hash = 0xAAD4292A, outfits = 3 }, + [`mp_campdef_gaptoothridge_females_01`] = { model = "mp_campdef_gaptoothridge_females_01", hash = 0x219743D5, outfits = 1 }, + [`mp_campdef_gaptoothridge_males_01`] = { model = "mp_campdef_gaptoothridge_males_01", hash = 0xB5FEE612, outfits = 1 }, + [`mp_campdef_greatplains_males_01`] = { model = "mp_campdef_greatplains_males_01", hash = 0xC1B6341E, outfits = 2 }, + [`mp_campdef_grizzlies_males_01`] = { model = "mp_campdef_grizzlies_males_01", hash = 0x543F0860, outfits = 2 }, + [`mp_campdef_heartlands1_males_01`] = { model = "mp_campdef_heartlands1_males_01", hash = 0x476306CA, outfits = 2 }, + [`mp_campdef_heartlands2_females_01`] = { model = "mp_campdef_heartlands2_females_01", hash = 0xCF202B72, outfits = 1 }, + [`mp_campdef_heartlands2_males_01`] = { model = "mp_campdef_heartlands2_males_01", hash = 0x3B46C480, outfits = 2 }, + [`mp_campdef_hennigans_females_01`] = { model = "mp_campdef_hennigans_females_01", hash = 0x4166D3EF, outfits = 1 }, + [`mp_campdef_hennigans_males_01`] = { model = "mp_campdef_hennigans_males_01", hash = 0x62593BC8, outfits = 1 }, + [`mp_campdef_littlecreek_females_01`] = { model = "mp_campdef_littlecreek_females_01", hash = 0xF5A25A7E, outfits = 1 }, + [`mp_campdef_littlecreek_males_01`] = { model = "mp_campdef_littlecreek_males_01", hash = 0xF4CAA01F, outfits = 1 }, + [`mp_campdef_radleyspasture_females_01`] = { model = "mp_campdef_radleyspasture_females_01", hash = 0xE572A054, outfits = 1 }, + [`mp_campdef_radleyspasture_males_01`] = { model = "mp_campdef_radleyspasture_males_01", hash = 0x4A465245, outfits = 1 }, + [`mp_campdef_riobravo_females_01`] = { model = "mp_campdef_riobravo_females_01", hash = 0xC4DB3101, outfits = 1 }, + [`mp_campdef_riobravo_males_01`] = { model = "mp_campdef_riobravo_males_01", hash = 0x5CE15A39, outfits = 1 }, + [`mp_campdef_roanoke_females_01`] = { model = "mp_campdef_roanoke_females_01", hash = 0xEA68B402, outfits = 1 }, + [`mp_campdef_roanoke_males_01`] = { model = "mp_campdef_roanoke_males_01", hash = 0x24673B50, outfits = 1 }, + [`mp_campdef_talltrees_females_01`] = { model = "mp_campdef_talltrees_females_01", hash = 0x5608A222, outfits = 1 }, + [`mp_campdef_talltrees_males_01`] = { model = "mp_campdef_talltrees_males_01", hash = 0xD429EEF9, outfits = 1 }, + [`mp_campdef_tworocks_females_01`] = { model = "mp_campdef_tworocks_females_01", hash = 0xB05F95C2, outfits = 2 }, + [`mp_chu_kid_armadillo_males_01`] = { model = "mp_chu_kid_armadillo_males_01", hash = 0x20D9D1FF, outfits = 4 }, + [`mp_chu_kid_diabloridge_males_01`] = { model = "mp_chu_kid_diabloridge_males_01", hash = 0xD081C01E, outfits = 4 }, + [`mp_chu_kid_emrstation_males_01`] = { model = "mp_chu_kid_emrstation_males_01", hash = 0xC45D87AE, outfits = 4 }, + [`mp_chu_kid_greatplains2_males_01`] = { model = "mp_chu_kid_greatplains2_males_01", hash = 0xD5B76DF0, outfits = 4 }, + [`mp_chu_kid_greatplains_males_01`] = { model = "mp_chu_kid_greatplains_males_01", hash = 0xDBB0CB10, outfits = 4 }, + [`mp_chu_kid_heartlands_males_01`] = { model = "mp_chu_kid_heartlands_males_01", hash = 0x4E7A9BCF, outfits = 4 }, + [`mp_chu_kid_lagras_males_01`] = { model = "mp_chu_kid_lagras_males_01", hash = 0xBF8EE294, outfits = 4 }, + [`mp_chu_kid_lemoyne_females_01`] = { model = "mp_chu_kid_lemoyne_females_01", hash = 0x26D5E34F, outfits = 2 }, + [`mp_chu_kid_lemoyne_males_01`] = { model = "mp_chu_kid_lemoyne_males_01", hash = 0x24E340FC, outfits = 2 }, + [`mp_chu_kid_recipient_males_01`] = { model = "mp_chu_kid_recipient_males_01", hash = 0xCE06BE54, outfits = 22 }, + [`mp_chu_kid_rhodes_males_01`] = { model = "mp_chu_kid_rhodes_males_01", hash = 0x562372BD, outfits = 4 }, + [`mp_chu_kid_saintdenis_females_01`] = { model = "mp_chu_kid_saintdenis_females_01", hash = 0xF7B029BE, outfits = 1 }, + [`mp_chu_kid_saintdenis_males_01`] = { model = "mp_chu_kid_saintdenis_males_01", hash = 0xF21F12DE, outfits = 3 }, + [`mp_chu_kid_scarlettmeadows_males_01`] = { model = "mp_chu_kid_scarlettmeadows_males_01", hash = 0xBB574D98, outfits = 4 }, + [`mp_chu_kid_tumbleweed_males_01`] = { model = "mp_chu_kid_tumbleweed_males_01", hash = 0x199209F3, outfits = 4 }, + [`mp_chu_kid_valentine_males_01`] = { model = "mp_chu_kid_valentine_males_01", hash = 0xB59A184C, outfits = 4 }, + [`mp_chu_rob_ambarino_males_01`] = { model = "mp_chu_rob_ambarino_males_01", hash = 0x91359C49, outfits = 3 }, + [`mp_chu_rob_annesburg_males_01`] = { model = "mp_chu_rob_annesburg_males_01", hash = 0xE8B7EB0E, outfits = 4 }, + [`mp_chu_rob_benedictpoint_females_01`] = { model = "mp_chu_rob_benedictpoint_females_01", hash = 0xED566DA8, outfits = 2 }, + [`mp_chu_rob_benedictpoint_males_01`] = { model = "mp_chu_rob_benedictpoint_males_01", hash = 0x2361B4FF, outfits = 2 }, + [`mp_chu_rob_blackwater_males_01`] = { model = "mp_chu_rob_blackwater_males_01", hash = 0x4DF62143, outfits = 4 }, + [`mp_chu_rob_caligahall_males_01`] = { model = "mp_chu_rob_caligahall_males_01", hash = 0xD1DD5373, outfits = 4 }, + [`mp_chu_rob_coronado_males_01`] = { model = "mp_chu_rob_coronado_males_01", hash = 0xE910B9B1, outfits = 4 }, + [`mp_chu_rob_cumberland_males_01`] = { model = "mp_chu_rob_cumberland_males_01", hash = 0xEEB13746, outfits = 4 }, + [`mp_chu_rob_fortmercer_females_01`] = { model = "mp_chu_rob_fortmercer_females_01", hash = 0x3D8A8881, outfits = 2 }, + [`mp_chu_rob_fortmercer_males_01`] = { model = "mp_chu_rob_fortmercer_males_01", hash = 0xA3C40220, outfits = 2 }, + [`mp_chu_rob_greenhollow_males_01`] = { model = "mp_chu_rob_greenhollow_males_01", hash = 0x2B7FB829, outfits = 4 }, + [`mp_chu_rob_macfarlanes_females_01`] = { model = "mp_chu_rob_macfarlanes_females_01", hash = 0x900768E4, outfits = 2 }, + [`mp_chu_rob_macfarlanes_males_01`] = { model = "mp_chu_rob_macfarlanes_males_01", hash = 0x0C11A638, outfits = 2 }, + [`mp_chu_rob_macleans_males_01`] = { model = "mp_chu_rob_macleans_males_01", hash = 0xA23C0877, outfits = 4 }, + [`mp_chu_rob_millesani_males_01`] = { model = "mp_chu_rob_millesani_males_01", hash = 0x71F63119, outfits = 4 }, + [`mp_chu_rob_montanariver_males_01`] = { model = "mp_chu_rob_montanariver_males_01", hash = 0xA33F8565, outfits = 4 }, + [`mp_chu_rob_paintedsky_males_01`] = { model = "mp_chu_rob_paintedsky_males_01", hash = 0xAE81DF28, outfits = 4 }, + [`mp_chu_rob_rathskeller_males_01`] = { model = "mp_chu_rob_rathskeller_males_01", hash = 0x26141D84, outfits = 4 }, + [`mp_chu_rob_recipient_males_01`] = { model = "mp_chu_rob_recipient_males_01", hash = 0xB5796996, outfits = 33 }, + [`mp_chu_rob_rhodes_males_01`] = { model = "mp_chu_rob_rhodes_males_01", hash = 0x67C9491C, outfits = 4 }, + [`mp_chu_rob_strawberry_males_01`] = { model = "mp_chu_rob_strawberry_males_01", hash = 0x37AA104A, outfits = 4 }, + [`mp_clay`] = { model = "mp_clay", hash = 0xDEC0EF74, outfits = 1 }, + [`mp_convoy_recipient_females_01`] = { model = "mp_convoy_recipient_females_01", hash = 0x36C085D8, outfits = 2 }, + [`mp_convoy_recipient_males_01`] = { model = "mp_convoy_recipient_males_01", hash = 0xE5ED64CE, outfits = 19 }, + [`mp_de_u_f_m_bigvalley_01`] = { model = "mp_de_u_f_m_bigvalley_01", hash = 0xD2AFC802, outfits = 1 }, + [`mp_de_u_f_m_bluewatermarsh_01`] = { model = "mp_de_u_f_m_bluewatermarsh_01", hash = 0xEB7C292D, outfits = 1 }, + [`mp_de_u_f_m_braithwaite_01`] = { model = "mp_de_u_f_m_braithwaite_01", hash = 0xC615E4DE, outfits = 2 }, + [`mp_de_u_f_m_doverhill_01`] = { model = "mp_de_u_f_m_doverhill_01", hash = 0xFF7134DC, outfits = 1 }, + [`mp_de_u_f_m_greatplains_01`] = { model = "mp_de_u_f_m_greatplains_01", hash = 0xDD895162, outfits = 1 }, + [`mp_de_u_f_m_hangingrock_01`] = { model = "mp_de_u_f_m_hangingrock_01", hash = 0xCB42A78F, outfits = 1 }, + [`mp_de_u_f_m_heartlands_01`] = { model = "mp_de_u_f_m_heartlands_01", hash = 0x410D82BF, outfits = 1 }, + [`mp_de_u_f_m_hennigansstead_01`] = { model = "mp_de_u_f_m_hennigansstead_01", hash = 0x8841B9D2, outfits = 2 }, + [`mp_de_u_f_m_silentstead_01`] = { model = "mp_de_u_f_m_silentstead_01", hash = 0xC50A2A9C, outfits = 1 }, + [`mp_de_u_m_m_aurorabasin_01`] = { model = "mp_de_u_m_m_aurorabasin_01", hash = 0xE079768D, outfits = 1 }, + [`mp_de_u_m_m_barrowlagoon_01`] = { model = "mp_de_u_m_m_barrowlagoon_01", hash = 0x1A06F260, outfits = 1 }, + [`mp_de_u_m_m_bigvalleygraves_01`] = { model = "mp_de_u_m_m_bigvalleygraves_01", hash = 0x30F2FBC2, outfits = 1 }, + [`mp_de_u_m_m_centralunionrr_01`] = { model = "mp_de_u_m_m_centralunionrr_01", hash = 0x54666FF4, outfits = 1 }, + [`mp_de_u_m_m_pleasance_01`] = { model = "mp_de_u_m_m_pleasance_01", hash = 0x6965178B, outfits = 1 }, + [`mp_de_u_m_m_rileyscharge_01`] = { model = "mp_de_u_m_m_rileyscharge_01", hash = 0x7C77D19F, outfits = 1 }, + [`mp_de_u_m_m_vanhorn_01`] = { model = "mp_de_u_m_m_vanhorn_01", hash = 0x7AA6CC47, outfits = 1 }, + [`mp_de_u_m_m_westernhomestead_01`] = { model = "mp_de_u_m_m_westernhomestead_01", hash = 0x196B59E0, outfits = 1 }, + [`mp_dr_u_f_m_bayougatorfood_01`] = { model = "mp_dr_u_f_m_bayougatorfood_01", hash = 0x1029BAEF, outfits = 1 }, + [`mp_dr_u_f_m_bigvalleycave_01`] = { model = "mp_dr_u_f_m_bigvalleycave_01", hash = 0x803C4357, outfits = 1 }, + [`mp_dr_u_f_m_bigvalleycliff_01`] = { model = "mp_dr_u_f_m_bigvalleycliff_01", hash = 0xE782AB5E, outfits = 1 }, + [`mp_dr_u_f_m_bluewaterkidnap_01`] = { model = "mp_dr_u_f_m_bluewaterkidnap_01", hash = 0x5A8DED76, outfits = 1 }, + [`mp_dr_u_f_m_colterbandits_01`] = { model = "mp_dr_u_f_m_colterbandits_01", hash = 0xA3696C2E, outfits = 1 }, + [`mp_dr_u_f_m_colterbandits_02`] = { model = "mp_dr_u_f_m_colterbandits_02", hash = 0x911B4792, outfits = 1 }, + [`mp_dr_u_f_m_missingfisherman_01`] = { model = "mp_dr_u_f_m_missingfisherman_01", hash = 0xB9E9E8B1, outfits = 1 }, + [`mp_dr_u_f_m_missingfisherman_02`] = { model = "mp_dr_u_f_m_missingfisherman_02", hash = 0x87AB8435, outfits = 1 }, + [`mp_dr_u_f_m_mistakenbounties_01`] = { model = "mp_dr_u_f_m_mistakenbounties_01", hash = 0xA4C6684C, outfits = 1 }, + [`mp_dr_u_f_m_plaguetown_01`] = { model = "mp_dr_u_f_m_plaguetown_01", hash = 0x8C3740DD, outfits = 1 }, + [`mp_dr_u_f_m_quakerscove_01`] = { model = "mp_dr_u_f_m_quakerscove_01", hash = 0xEF81CFCA, outfits = 1 }, + [`mp_dr_u_f_m_quakerscove_02`] = { model = "mp_dr_u_f_m_quakerscove_02", hash = 0xFD486B57, outfits = 1 }, + [`mp_dr_u_f_m_sdgraveyard_01`] = { model = "mp_dr_u_f_m_sdgraveyard_01", hash = 0x20A8A154, outfits = 1 }, + [`mp_dr_u_m_m_bigvalleycave_01`] = { model = "mp_dr_u_m_m_bigvalleycave_01", hash = 0xC7DE347E, outfits = 1 }, + [`mp_dr_u_m_m_bigvalleycliff_01`] = { model = "mp_dr_u_m_m_bigvalleycliff_01", hash = 0xD9E86551, outfits = 1 }, + [`mp_dr_u_m_m_bluewaterkidnap_01`] = { model = "mp_dr_u_m_m_bluewaterkidnap_01", hash = 0xA445B5D7, outfits = 1 }, + [`mp_dr_u_m_m_canoeescape_01`] = { model = "mp_dr_u_m_m_canoeescape_01", hash = 0x23135A75, outfits = 1 }, + [`mp_dr_u_m_m_hwyrobbery_01`] = { model = "mp_dr_u_m_m_hwyrobbery_01", hash = 0x322BCA91, outfits = 1 }, + [`mp_dr_u_m_m_mistakenbounties_01`] = { model = "mp_dr_u_m_m_mistakenbounties_01", hash = 0x103F4CF2, outfits = 1 }, + [`mp_dr_u_m_m_pikesbasin_01`] = { model = "mp_dr_u_m_m_pikesbasin_01", hash = 0xD63E91BF, outfits = 1 }, + [`mp_dr_u_m_m_pikesbasin_02`] = { model = "mp_dr_u_m_m_pikesbasin_02", hash = 0xF2CDCADD, outfits = 1 }, + [`mp_dr_u_m_m_plaguetown_01`] = { model = "mp_dr_u_m_m_plaguetown_01", hash = 0x59D8AB63, outfits = 1 }, + [`mp_dr_u_m_m_roanokestandoff_01`] = { model = "mp_dr_u_m_m_roanokestandoff_01", hash = 0x9A8AF99B, outfits = 1 }, + [`mp_dr_u_m_m_sdgraveyard_01`] = { model = "mp_dr_u_m_m_sdgraveyard_01", hash = 0xE80A6258, outfits = 1 }, + [`mp_dr_u_m_m_sdmugging_01`] = { model = "mp_dr_u_m_m_sdmugging_01", hash = 0xC33224A7, outfits = 1 }, + [`mp_dr_u_m_m_sdmugging_02`] = { model = "mp_dr_u_m_m_sdmugging_02", hash = 0x957FC943, outfits = 1 }, + [`mp_freeroam_tut_females_01`] = { model = "mp_freeroam_tut_females_01", hash = 0xAA266E1C, outfits = 5 }, + [`mp_freeroam_tut_males_01`] = { model = "mp_freeroam_tut_males_01", hash = 0x217A0594, outfits = 8 }, + [`mp_gunvoutd2_males_01`] = { model = "mp_gunvoutd2_males_01", hash = 0xC36F9B8C, outfits = 11 }, + [`mp_gunvoutd3_bht_01`] = { model = "mp_gunvoutd3_bht_01", hash = 0x3D6054E3, outfits = 2 }, + [`mp_gunvoutd3_males_01`] = { model = "mp_gunvoutd3_males_01", hash = 0xAD674654, outfits = 3 }, + [`mp_g_f_m_laperlegang_01`] = { model = "mp_g_f_m_laperlegang_01", hash = 0x556ADA44, outfits = 26 }, + [`mp_g_f_m_laperlevips_01`] = { model = "mp_g_f_m_laperlevips_01", hash = 0x64F76F7E, outfits = 13 }, + [`mp_g_f_m_owlhootfamily_01`] = { model = "mp_g_f_m_owlhootfamily_01", hash = 0xF7A82771, outfits = 17 }, + [`mp_g_m_m_armoredjuggernauts_01`] = { model = "mp_g_m_m_armoredjuggernauts_01", hash = 0x9E00472E, outfits = 12 }, + [`mp_g_m_m_bountyhunters_01`] = { model = "mp_g_m_m_bountyhunters_01", hash = 0xC6BEFCC7, outfits = 50 }, + [`mp_g_m_m_owlhootfamily_01`] = { model = "mp_g_m_m_owlhootfamily_01", hash = 0x8496557A, outfits = 25 }, + [`mp_g_m_m_redbengang_01`] = { model = "mp_g_m_m_redbengang_01", hash = 0xC848BCB9, outfits = 38 }, + [`mp_g_m_m_uniafricanamericangang_01`] = { model = "mp_g_m_m_uniafricanamericangang_01", hash = 0xBC696111, outfits = 42 }, + [`mp_g_m_m_unibanditos_01`] = { model = "mp_g_m_m_unibanditos_01", hash = 0xD9D85AA4, outfits = 141 }, + [`mp_g_m_m_unibraithwaites_01`] = { model = "mp_g_m_m_unibraithwaites_01", hash = 0xC0A5F6FB, outfits = 40 }, + [`mp_g_m_m_unibrontegoons_01`] = { model = "mp_g_m_m_unibrontegoons_01", hash = 0x079D07F0, outfits = 55 }, + [`mp_g_m_m_unicornwallgoons_01`] = { model = "mp_g_m_m_unicornwallgoons_01", hash = 0xB6A13AB3, outfits = 60 }, + [`mp_g_m_m_unicriminals_01`] = { model = "mp_g_m_m_unicriminals_01", hash = 0xACB79D83, outfits = 88 }, + [`mp_g_m_m_unicriminals_02`] = { model = "mp_g_m_m_unicriminals_02", hash = 0xFE0F4031, outfits = 67 }, + [`mp_g_m_m_uniduster_01`] = { model = "mp_g_m_m_uniduster_01", hash = 0x6B5CA98B, outfits = 111 }, + [`mp_g_m_m_uniduster_02`] = { model = "mp_g_m_m_uniduster_02", hash = 0x59528577, outfits = 53 }, + [`mp_g_m_m_uniduster_03`] = { model = "mp_g_m_m_uniduster_03", hash = 0x871160F4, outfits = 30 }, + [`mp_g_m_m_unigrays_01`] = { model = "mp_g_m_m_unigrays_01", hash = 0x711F7A23, outfits = 45 }, + [`mp_g_m_m_uniinbred_01`] = { model = "mp_g_m_m_uniinbred_01", hash = 0x013268A4, outfits = 67 }, + [`mp_g_m_m_unilangstonboys_01`] = { model = "mp_g_m_m_unilangstonboys_01", hash = 0xD42E4CA3, outfits = 35 }, + [`mp_g_m_m_unimountainmen_01`] = { model = "mp_g_m_m_unimountainmen_01", hash = 0xAEB6BF6F, outfits = 80 }, + [`mp_g_m_m_uniranchers_01`] = { model = "mp_g_m_m_uniranchers_01", hash = 0x90E48CB5, outfits = 61 }, + [`mp_g_m_m_uniswamp_01`] = { model = "mp_g_m_m_uniswamp_01", hash = 0xA45E623D, outfits = 30 }, + [`mp_g_m_o_uniexconfeds_01`] = { model = "mp_g_m_o_uniexconfeds_01", hash = 0x17F4271B, outfits = 64 }, + [`mp_g_m_y_uniexconfeds_01`] = { model = "mp_g_m_y_uniexconfeds_01", hash = 0x66AB70C0, outfits = 63 }, + [`mp_horse_owlhootvictim_01`] = { model = "mp_horse_owlhootvictim_01", hash = 0x74A42620, outfits = 2 }, + [`mp_intercept_recipient_females_01`] = { model = "mp_intercept_recipient_females_01", hash = 0xA4805CEF, outfits = 8 }, + [`mp_intercept_recipient_males_01`] = { model = "mp_intercept_recipient_males_01", hash = 0x4FFF04AC, outfits = 29 }, + [`mp_intro_females_01`] = { model = "mp_intro_females_01", hash = 0xC7897D53, outfits = 7 }, + [`mp_intro_males_01`] = { model = "mp_intro_males_01", hash = 0x1AC64C7E, outfits = 15 }, + [`mp_jailbreak_males_01`] = { model = "mp_jailbreak_males_01", hash = 0x9CF21703, outfits = 4 }, + [`mp_jailbreak_recipient_males_01`] = { model = "mp_jailbreak_recipient_males_01", hash = 0xD5A51ED9, outfits = 6 }, + [`mp_lbt_m3_males_01`] = { model = "mp_lbt_m3_males_01", hash = 0x1A94D3F2, outfits = 8 }, + [`mp_lbt_m6_females_01`] = { model = "mp_lbt_m6_females_01", hash = 0xB2CBE1E8, outfits = 2 }, + [`mp_lbt_m6_males_01`] = { model = "mp_lbt_m6_males_01", hash = 0xF08C75E6, outfits = 5 }, + [`mp_lbt_m7_males_01`] = { model = "mp_lbt_m7_males_01", hash = 0xD304CBEC, outfits = 8 }, + [`mp_oth_recipient_males_01`] = { model = "mp_oth_recipient_males_01", hash = 0x265C2EDE, outfits = 5 }, + [`mp_outlaw1_males_01`] = { model = "mp_outlaw1_males_01", hash = 0xE1E49865, outfits = 6 }, + [`mp_outlaw2_males_01`] = { model = "mp_outlaw2_males_01", hash = 0x2FDCB16A, outfits = 1 }, + [`mp_post_multipackage_females_01`] = { model = "mp_post_multipackage_females_01", hash = 0x7CCE73C7, outfits = 10 }, + [`mp_post_multipackage_males_01`] = { model = "mp_post_multipackage_males_01", hash = 0x9BA2E621, outfits = 34 }, + [`mp_post_multirelay_females_01`] = { model = "mp_post_multirelay_females_01", hash = 0xF6846F69, outfits = 5 }, + [`mp_post_multirelay_males_01`] = { model = "mp_post_multirelay_males_01", hash = 0x49302DBB, outfits = 20 }, + [`mp_post_relay_females_01`] = { model = "mp_post_relay_females_01", hash = 0xBAC09F5F, outfits = 1 }, + [`mp_post_relay_males_01`] = { model = "mp_post_relay_males_01", hash = 0x6D8D4CA6, outfits = 23 }, + [`mp_predator`] = { model = "mp_predator", hash = 0x2C7D2748, outfits = 8 }, + [`mp_prsn_asn_males_01`] = { model = "mp_prsn_asn_males_01", hash = 0x9BCC5B80, outfits = 14 }, + [`mp_recover_recipient_females_01`] = { model = "mp_recover_recipient_females_01", hash = 0xD050B3FD, outfits = 1 }, + [`mp_recover_recipient_males_01`] = { model = "mp_recover_recipient_males_01", hash = 0xFEE21E87, outfits = 5 }, + [`mp_repoboat_recipient_females_01`] = { model = "mp_repoboat_recipient_females_01", hash = 0x8A118776, outfits = 2 }, + [`mp_repoboat_recipient_males_01`] = { model = "mp_repoboat_recipient_males_01", hash = 0x817E92C2, outfits = 5 }, + [`mp_repo_recipient_females_01`] = { model = "mp_repo_recipient_females_01", hash = 0x4852F2D1, outfits = 2 }, + [`mp_repo_recipient_males_01`] = { model = "mp_repo_recipient_males_01", hash = 0x93A9A5FC, outfits = 12 }, + [`mp_rescue_bottletree_females_01`] = { model = "mp_rescue_bottletree_females_01", hash = 0xEED4DB96, outfits = 1 }, + [`mp_rescue_bottletree_males_01`] = { model = "mp_rescue_bottletree_males_01", hash = 0x5530F95C, outfits = 2 }, + [`mp_rescue_colter_males_01`] = { model = "mp_rescue_colter_males_01", hash = 0x90008F71, outfits = 1 }, + [`mp_rescue_cratersacrifice_males_01`] = { model = "mp_rescue_cratersacrifice_males_01", hash = 0x46FD1150, outfits = 2 }, + [`mp_rescue_heartlands_males_01`] = { model = "mp_rescue_heartlands_males_01", hash = 0x2A503D51, outfits = 1 }, + [`mp_rescue_loftkidnap_males_01`] = { model = "mp_rescue_loftkidnap_males_01", hash = 0xBEA076E0, outfits = 1 }, + [`mp_rescue_lonniesshack_males_01`] = { model = "mp_rescue_lonniesshack_males_01", hash = 0x8CAC82BE, outfits = 3 }, + [`mp_rescue_moonstone_males_01`] = { model = "mp_rescue_moonstone_males_01", hash = 0x36234B83, outfits = 1 }, + [`mp_rescue_mtnmanshack_males_01`] = { model = "mp_rescue_mtnmanshack_males_01", hash = 0x74B18E0F, outfits = 3 }, + [`mp_rescue_recipient_females_01`] = { model = "mp_rescue_recipient_females_01", hash = 0xE63DF429, outfits = 1 }, + [`mp_rescue_recipient_males_01`] = { model = "mp_rescue_recipient_males_01", hash = 0x1738A70F, outfits = 7 }, + [`mp_rescue_rivalshack_males_01`] = { model = "mp_rescue_rivalshack_males_01", hash = 0xDA91092F, outfits = 2 }, + [`mp_rescue_scarlettmeadows_males_01`] = { model = "mp_rescue_scarlettmeadows_males_01", hash = 0x10482CCC, outfits = 1 }, + [`mp_rescue_sddogfight_females_01`] = { model = "mp_rescue_sddogfight_females_01", hash = 0x01AC6CA3, outfits = 1 }, + [`mp_rescue_sddogfight_males_01`] = { model = "mp_rescue_sddogfight_males_01", hash = 0x80AB3DA0, outfits = 1 }, + [`mp_resupply_recipient_females_01`] = { model = "mp_resupply_recipient_females_01", hash = 0x89C49271, outfits = 7 }, + [`mp_resupply_recipient_males_01`] = { model = "mp_resupply_recipient_males_01", hash = 0x028C5916, outfits = 11 }, + [`mp_revenge1_males_01`] = { model = "mp_revenge1_males_01", hash = 0x340E6CFB, outfits = 3 }, + [`mp_re_animalattack_females_01`] = { model = "mp_re_animalattack_females_01", hash = 0x89330281, outfits = 4 }, + [`mp_re_animalattack_males_01`] = { model = "mp_re_animalattack_males_01", hash = 0x2C1694A4, outfits = 4 }, + [`mp_re_duel_females_01`] = { model = "mp_re_duel_females_01", hash = 0x9D90BC3C, outfits = 4 }, + [`mp_re_duel_males_01`] = { model = "mp_re_duel_males_01", hash = 0x34F02197, outfits = 4 }, + [`mp_re_graverobber_females_01`] = { model = "mp_re_graverobber_females_01", hash = 0x7C6C7C1D, outfits = 1 }, + [`mp_re_graverobber_males_01`] = { model = "mp_re_graverobber_males_01", hash = 0x55B73907, outfits = 1 }, + [`mp_re_hobodog_females_01`] = { model = "mp_re_hobodog_females_01", hash = 0x263B0853, outfits = 2 }, + [`mp_re_hobodog_males_01`] = { model = "mp_re_hobodog_males_01", hash = 0x401C6EC1, outfits = 4 }, + [`mp_re_kidnapped_females_01`] = { model = "mp_re_kidnapped_females_01", hash = 0x45178DBF, outfits = 6 }, + [`mp_re_kidnapped_males_01`] = { model = "mp_re_kidnapped_males_01", hash = 0x5E5607C3, outfits = 6 }, + [`mp_re_photography_females_01`] = { model = "mp_re_photography_females_01", hash = 0x5730F05E, outfits = 2 }, + [`mp_re_photography_females_02`] = { model = "mp_re_photography_females_02", hash = 0x65D60DA8, outfits = 2 }, + [`mp_re_photography_males_01`] = { model = "mp_re_photography_males_01", hash = 0x8AE666DA, outfits = 2 }, + [`mp_re_rivalcollector_males_01`] = { model = "mp_re_rivalcollector_males_01", hash = 0x98D1F6B3, outfits = 20 }, + [`mp_re_runawaywagon_females_01`] = { model = "mp_re_runawaywagon_females_01", hash = 0xFA0BF8E9, outfits = 3 }, + [`mp_re_runawaywagon_males_01`] = { model = "mp_re_runawaywagon_males_01", hash = 0xD99C62B9, outfits = 3 }, + [`mp_re_treasurehunter_females_01`] = { model = "mp_re_treasurehunter_females_01", hash = 0x3EB8315D, outfits = 2 }, + [`mp_re_treasurehunter_males_01`] = { model = "mp_re_treasurehunter_males_01", hash = 0x36754ABE, outfits = 2 }, + [`mp_re_wildman_males_01`] = { model = "mp_re_wildman_males_01", hash = 0x40C07582, outfits = 1 }, + [`mp_stealboat_recipient_males_01`] = { model = "mp_stealboat_recipient_males_01", hash = 0x6D8072BA, outfits = 10 }, + [`mp_stealhorse_recipient_males_01`] = { model = "mp_stealhorse_recipient_males_01", hash = 0x6BF26D7E, outfits = 29 }, + [`mp_stealwagon_recipient_males_01`] = { model = "mp_stealwagon_recipient_males_01", hash = 0x05BC439E, outfits = 22 }, + [`mp_s_m_m_cornwallguard_01`] = { model = "mp_s_m_m_cornwallguard_01", hash = 0x0C890518, outfits = 32 }, + [`mp_s_m_m_pinlaw_01`] = { model = "mp_s_m_m_pinlaw_01", hash = 0xAD87E95D, outfits = 40 }, + [`mp_tattoo_female`] = { model = "mp_tattoo_female", hash = 0xE82A9EF5, outfits = 1 }, + [`mp_tattoo_male`] = { model = "mp_tattoo_male", hash = 0x02EC2BF7, outfits = 1 }, + [`mp_u_f_m_bountytarget_001`] = { model = "mp_u_f_m_bountytarget_001", hash = 0x30B5B617, outfits = 2 }, + [`mp_u_f_m_bountytarget_002`] = { model = "mp_u_f_m_bountytarget_002", hash = 0x8AE66A77, outfits = 2 }, + [`mp_u_f_m_bountytarget_003`] = { model = "mp_u_f_m_bountytarget_003", hash = 0x53507B4C, outfits = 2 }, + [`mp_u_f_m_bountytarget_004`] = { model = "mp_u_f_m_bountytarget_004", hash = 0x241D9CE7, outfits = 2 }, + [`mp_u_f_m_bountytarget_005`] = { model = "mp_u_f_m_bountytarget_005", hash = 0xE5D02049, outfits = 2 }, + [`mp_u_f_m_bountytarget_006`] = { model = "mp_u_f_m_bountytarget_006", hash = 0x389945DE, outfits = 2 }, + [`mp_u_f_m_bountytarget_007`] = { model = "mp_u_f_m_bountytarget_007", hash = 0x06F56293, outfits = 2 }, + [`mp_u_f_m_bountytarget_008`] = { model = "mp_u_f_m_bountytarget_008", hash = 0xD8E38670, outfits = 2 }, + [`mp_u_f_m_bountytarget_009`] = { model = "mp_u_f_m_bountytarget_009", hash = 0xABA92BFC, outfits = 2 }, + [`mp_u_f_m_bountytarget_010`] = { model = "mp_u_f_m_bountytarget_010", hash = 0x1C1C1174, outfits = 2 }, + [`mp_u_f_m_bountytarget_011`] = { model = "mp_u_f_m_bountytarget_011", hash = 0x2DE1B4FF, outfits = 2 }, + [`MP_U_F_M_BOUNTYTARGET_012`] = { model = "MP_U_F_M_BOUNTYTARGET_012", hash = 0x3F97D86B, outfits = 1 }, + [`mp_u_f_m_bountytarget_013`] = { model = "mp_u_f_m_bountytarget_013", hash = 0x4F947864, outfits = 2 }, + [`mp_u_f_m_bountytarget_014`] = { model = "mp_u_f_m_bountytarget_014", hash = 0xD56E8422, outfits = 2 }, + [`mp_u_f_m_gunslinger3_rifleman_02`] = { model = "mp_u_f_m_gunslinger3_rifleman_02", hash = 0x0EF547D0, outfits = 1 }, + [`mp_u_f_m_gunslinger3_sharpshooter_01`] = { model = "mp_u_f_m_gunslinger3_sharpshooter_01", hash = 0xC9E8C3C3, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_01`] = { model = "mp_u_f_m_laperlevipmasked_01", hash = 0x96A8968C, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_02`] = { model = "mp_u_f_m_laperlevipmasked_02", hash = 0xCE6085F7, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_03`] = { model = "mp_u_f_m_laperlevipmasked_03", hash = 0xDFA9A889, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_04`] = { model = "mp_u_f_m_laperlevipmasked_04", hash = 0xA3F030F3, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_01`] = { model = "mp_u_f_m_laperlevipunmasked_01", hash = 0x28F501C1, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_02`] = { model = "mp_u_f_m_laperlevipunmasked_02", hash = 0x3A3AA44C, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_03`] = { model = "mp_u_f_m_laperlevipunmasked_03", hash = 0x4CB3C93E, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_04`] = { model = "mp_u_f_m_laperlevipunmasked_04", hash = 0x5EEE6DB3, outfits = 1 }, + [`mp_u_f_m_lbt_owlhootvictim_01`] = { model = "mp_u_f_m_lbt_owlhootvictim_01", hash = 0x2CE57EFF, outfits = 1 }, + [`mp_u_f_m_legendarybounty_001`] = { model = "mp_u_f_m_legendarybounty_001", hash = 0x507A33A6, outfits = 1 }, + [`mp_u_f_m_legendarybounty_002`] = { model = "mp_u_f_m_legendarybounty_002", hash = 0x88A423FD, outfits = 8 }, + [`mp_u_f_m_outlaw3_warner_01`] = { model = "mp_u_f_m_outlaw3_warner_01", hash = 0xA1EF7AAF, outfits = 1 }, + [`mp_u_f_m_outlaw3_warner_02`] = { model = "mp_u_f_m_outlaw3_warner_02", hash = 0x33BC1E4A, outfits = 1 }, + [`mp_u_f_m_revenge2_passerby_01`] = { model = "mp_u_f_m_revenge2_passerby_01", hash = 0xC679DED7, outfits = 1 }, + [`mp_u_m_m_armsheriff_01`] = { model = "mp_u_m_m_armsheriff_01", hash = 0x2B38C3F4, outfits = 1 }, + [`mp_u_m_m_bountyinjuredman_01`] = { model = "mp_u_m_m_bountyinjuredman_01", hash = 0x66B75A18, outfits = 1 }, + [`mp_u_m_m_bountytarget_001`] = { model = "mp_u_m_m_bountytarget_001", hash = 0xAE2D0F40, outfits = 2 }, + [`mp_u_m_m_bountytarget_002`] = { model = "mp_u_m_m_bountytarget_002", hash = 0x9066D3B0, outfits = 2 }, + [`mp_u_m_m_bountytarget_003`] = { model = "mp_u_m_m_bountytarget_003", hash = 0xA095740D, outfits = 2 }, + [`mp_u_m_m_bountytarget_005`] = { model = "mp_u_m_m_bountytarget_005", hash = 0xF314990E, outfits = 2 }, + [`mp_u_m_m_bountytarget_008`] = { model = "mp_u_m_m_bountytarget_008", hash = 0xD7BB625C, outfits = 2 }, + [`mp_u_m_m_bountytarget_009`] = { model = "mp_u_m_m_bountytarget_009", hash = 0x5C366B54, outfits = 2 }, + [`mp_u_m_m_bountytarget_010`] = { model = "mp_u_m_m_bountytarget_010", hash = 0x9710DFFC, outfits = 2 }, + [`mp_u_m_m_bountytarget_011`] = { model = "mp_u_m_m_bountytarget_011", hash = 0xF74DA078, outfits = 2 }, + [`mp_u_m_m_bountytarget_012`] = { model = "mp_u_m_m_bountytarget_012", hash = 0xE98404E5, outfits = 2 }, + [`mp_u_m_m_bountytarget_013`] = { model = "mp_u_m_m_bountytarget_013", hash = 0xDE80EEDF, outfits = 2 }, + [`mp_u_m_m_bountytarget_014`] = { model = "mp_u_m_m_bountytarget_014", hash = 0xCDBA4D52, outfits = 2 }, + [`mp_u_m_m_bountytarget_015`] = { model = "mp_u_m_m_bountytarget_015", hash = 0x00C8B356, outfits = 2 }, + [`mp_u_m_m_bountytarget_016`] = { model = "mp_u_m_m_bountytarget_016", hash = 0xEF8B10DB, outfits = 2 }, + [`mp_u_m_m_bountytarget_017`] = { model = "mp_u_m_m_bountytarget_017", hash = 0xE479FAB9, outfits = 2 }, + [`mp_u_m_m_bountytarget_018`] = { model = "mp_u_m_m_bountytarget_018", hash = 0xD6375E34, outfits = 2 }, + [`mp_u_m_m_bountytarget_019`] = { model = "mp_u_m_m_bountytarget_019", hash = 0x37DC2180, outfits = 2 }, + [`mp_u_m_m_bountytarget_020`] = { model = "mp_u_m_m_bountytarget_020", hash = 0x67D9F5A3, outfits = 2 }, + [`mp_u_m_m_bountytarget_021`] = { model = "mp_u_m_m_bountytarget_021", hash = 0x34228E35, outfits = 2 }, + [`mp_u_m_m_bountytarget_022`] = { model = "mp_u_m_m_bountytarget_022", hash = 0x0B61BCAC, outfits = 2 }, + [`mp_u_m_m_bountytarget_023`] = { model = "mp_u_m_m_bountytarget_023", hash = 0x59BCD969, outfits = 2 }, + [`mp_u_m_m_bountytarget_024`] = { model = "mp_u_m_m_bountytarget_024", hash = 0x0D244031, outfits = 2 }, + [`mp_u_m_m_bountytarget_025`] = { model = "mp_u_m_m_bountytarget_025", hash = 0xFB5D1CA3, outfits = 2 }, + [`mp_u_m_m_bountytarget_026`] = { model = "mp_u_m_m_bountytarget_026", hash = 0xB1460876, outfits = 2 }, + [`mp_u_m_m_bountytarget_027`] = { model = "mp_u_m_m_bountytarget_027", hash = 0xC10827FA, outfits = 2 }, + [`mp_u_m_m_bountytarget_028`] = { model = "mp_u_m_m_bountytarget_028", hash = 0xD5E2D1AF, outfits = 2 }, + [`mp_u_m_m_bountytarget_029`] = { model = "mp_u_m_m_bountytarget_029", hash = 0xE39BED21, outfits = 2 }, + [`mp_u_m_m_bountytarget_030`] = { model = "mp_u_m_m_bountytarget_030", hash = 0xF41B8F40, outfits = 2 }, + [`mp_u_m_m_bountytarget_031`] = { model = "mp_u_m_m_bountytarget_031", hash = 0x55F252F4, outfits = 2 }, + [`mp_u_m_m_bountytarget_032`] = { model = "mp_u_m_m_bountytarget_032", hash = 0x10AAC85E, outfits = 2 }, + [`mp_u_m_m_bountytarget_033`] = { model = "mp_u_m_m_bountytarget_033", hash = 0x02682BD9, outfits = 2 }, + [`mp_u_m_m_bountytarget_034`] = { model = "mp_u_m_m_bountytarget_034", hash = 0xAD5581B5, outfits = 2 }, + [`mp_u_m_m_bountytarget_035`] = { model = "mp_u_m_m_bountytarget_035", hash = 0x1F32E56E, outfits = 2 }, + [`mp_u_m_m_bountytarget_036`] = { model = "mp_u_m_m_bountytarget_036", hash = 0xD96359D0, outfits = 2 }, + [`mp_u_m_m_bountytarget_037`] = { model = "mp_u_m_m_bountytarget_037", hash = 0xCBCEBEA7, outfits = 2 }, + [`mp_u_m_m_bountytarget_038`] = { model = "mp_u_m_m_bountytarget_038", hash = 0x7618133B, outfits = 2 }, + [`mp_u_m_m_bountytarget_039`] = { model = "mp_u_m_m_bountytarget_039", hash = 0xE8277758, outfits = 2 }, + [`mp_u_m_m_bountytarget_044`] = { model = "mp_u_m_m_bountytarget_044", hash = 0x2D8122D2, outfits = 2 }, + [`mp_u_m_m_bountytarget_045`] = { model = "mp_u_m_m_bountytarget_045", hash = 0x3F4BC667, outfits = 2 }, + [`mp_u_m_m_bountytarget_046`] = { model = "mp_u_m_m_bountytarget_046", hash = 0x519CEB09, outfits = 2 }, + [`mp_u_m_m_bountytarget_047`] = { model = "mp_u_m_m_bountytarget_047", hash = 0xE055886C, outfits = 2 }, + [`mp_u_m_m_bountytarget_048`] = { model = "mp_u_m_m_bountytarget_048", hash = 0xF032A826, outfits = 2 }, + [`mp_u_m_m_bountytarget_049`] = { model = "mp_u_m_m_bountytarget_049", hash = 0x05EFD3A0, outfits = 2 }, + [`mp_u_m_m_bountytarget_050`] = { model = "mp_u_m_m_bountytarget_050", hash = 0x48B93642, outfits = 2 }, + [`mp_u_m_m_bountytarget_051`] = { model = "mp_u_m_m_bountytarget_051", hash = 0x968351D5, outfits = 2 }, + [`mp_u_m_m_bountytarget_052`] = { model = "mp_u_m_m_bountytarget_052", hash = 0x6A34F939, outfits = 2 }, + [`mp_u_m_m_bountytarget_053`] = { model = "mp_u_m_m_bountytarget_053", hash = 0x381594FB, outfits = 2 }, + [`mp_u_m_m_bountytarget_054`] = { model = "mp_u_m_m_bountytarget_054", hash = 0xFDA5A014, outfits = 2 }, + [`mp_u_m_m_bountytarget_055`] = { model = "mp_u_m_m_bountytarget_055", hash = 0x4F89C3E3, outfits = 2 }, + [`mp_u_m_m_gunforhireclerk_01`] = { model = "mp_u_m_m_gunforhireclerk_01", hash = 0x3A99297A, outfits = 2 }, + [`mp_u_m_m_gunslinger3_rifleman_01`] = { model = "mp_u_m_m_gunslinger3_rifleman_01", hash = 0xA8AC5B68, outfits = 1 }, + [`mp_u_m_m_gunslinger3_sharpshooter_02`] = { model = "mp_u_m_m_gunslinger3_sharpshooter_02", hash = 0xB8B24C69, outfits = 1 }, + [`mp_u_m_m_gunslinger3_shotgunner_01`] = { model = "mp_u_m_m_gunslinger3_shotgunner_01", hash = 0xE9E0AEC7, outfits = 1 }, + [`mp_u_m_m_gunslinger3_shotgunner_02`] = { model = "mp_u_m_m_gunslinger3_shotgunner_02", hash = 0x13AA0259, outfits = 1 }, + [`mp_u_m_m_gunslinger4_warner_01`] = { model = "mp_u_m_m_gunslinger4_warner_01", hash = 0xC3433CEF, outfits = 1 }, + [`mp_u_m_m_lbt_accomplice_01`] = { model = "mp_u_m_m_lbt_accomplice_01", hash = 0xC0669CB9, outfits = 1 }, + [`mp_u_m_m_lbt_barbsvictim_01`] = { model = "mp_u_m_m_lbt_barbsvictim_01", hash = 0xD5DF9EC1, outfits = 1 }, + [`mp_u_m_m_lbt_bribeinformant_01`] = { model = "mp_u_m_m_lbt_bribeinformant_01", hash = 0x3708EB8F, outfits = 1 }, + [`mp_u_m_m_lbt_coachdriver_01`] = { model = "mp_u_m_m_lbt_coachdriver_01", hash = 0x23AC3035, outfits = 1 }, + [`mp_u_m_m_lbt_hostagemarshal_01`] = { model = "mp_u_m_m_lbt_hostagemarshal_01", hash = 0xCF46EAEB, outfits = 1 }, + [`mp_u_m_m_lbt_owlhootvictim_01`] = { model = "mp_u_m_m_lbt_owlhootvictim_01", hash = 0x7C32AD3B, outfits = 1 }, + [`mp_u_m_m_lbt_owlhootvictim_02`] = { model = "mp_u_m_m_lbt_owlhootvictim_02", hash = 0xCA5CC98E, outfits = 1 }, + [`mp_u_m_m_lbt_philipsvictim_01`] = { model = "mp_u_m_m_lbt_philipsvictim_01", hash = 0x5833651B, outfits = 2 }, + [`mp_u_m_m_legendarybounty_001`] = { model = "mp_u_m_m_legendarybounty_001", hash = 0xA0968AC2, outfits = 1 }, + [`mp_u_m_m_legendarybounty_002`] = { model = "mp_u_m_m_legendarybounty_002", hash = 0xB2752E7F, outfits = 1 }, + [`mp_u_m_m_legendarybounty_003`] = { model = "mp_u_m_m_legendarybounty_003", hash = 0xBCF04375, outfits = 1 }, + [`mp_u_m_m_legendarybounty_004`] = { model = "mp_u_m_m_legendarybounty_004", hash = 0xCF21E7D8, outfits = 1 }, + [`mp_u_m_m_legendarybounty_005`] = { model = "mp_u_m_m_legendarybounty_005", hash = 0xE772187C, outfits = 2 }, + [`mp_u_m_m_legendarybounty_006`] = { model = "mp_u_m_m_legendarybounty_006", hash = 0xF9BCBD11, outfits = 2 }, + [`mp_u_m_m_legendarybounty_007`] = { model = "mp_u_m_m_legendarybounty_007", hash = 0x03E5D163, outfits = 1 }, + [`mp_u_m_m_outlaw3_prisoner_01`] = { model = "mp_u_m_m_outlaw3_prisoner_01", hash = 0xD214F911, outfits = 1 }, + [`mp_u_m_m_outlaw3_prisoner_02`] = { model = "mp_u_m_m_outlaw3_prisoner_02", hash = 0xA041956B, outfits = 1 }, + [`mp_u_m_m_outlaw3_warner_01`] = { model = "mp_u_m_m_outlaw3_warner_01", hash = 0xCB422A48, outfits = 1 }, + [`mp_u_m_m_outlaw3_warner_02`] = { model = "mp_u_m_m_outlaw3_warner_02", hash = 0x9E094FD3, outfits = 1 }, + [`mp_u_m_m_prisonwagon_01`] = { model = "mp_u_m_m_prisonwagon_01", hash = 0x8FF2C135, outfits = 2 }, + [`mp_u_m_m_prisonwagon_02`] = { model = "mp_u_m_m_prisonwagon_02", hash = 0x39AB9484, outfits = 2 }, + [`mp_u_m_m_prisonwagon_03`] = { model = "mp_u_m_m_prisonwagon_03", hash = 0x4F65BFF8, outfits = 2 }, + [`mp_u_m_m_prisonwagon_04`] = { model = "mp_u_m_m_prisonwagon_04", hash = 0x189E526A, outfits = 2 }, + [`mp_u_m_m_prisonwagon_05`] = { model = "mp_u_m_m_prisonwagon_05", hash = 0x2AE4F6F7, outfits = 2 }, + [`mp_u_m_m_prisonwagon_06`] = { model = "mp_u_m_m_prisonwagon_06", hash = 0x74378993, outfits = 2 }, + [`mp_u_m_m_revenge2_handshaker_01`] = { model = "mp_u_m_m_revenge2_handshaker_01", hash = 0x530BE231, outfits = 1 }, + [`mp_u_m_m_revenge2_passerby_01`] = { model = "mp_u_m_m_revenge2_passerby_01", hash = 0x07D731A4, outfits = 1 }, + [`mp_u_m_m_traderintroclerk_01`] = { model = "mp_u_m_m_traderintroclerk_01", hash = 0xCD442B40, outfits = 1 }, + [`mp_u_m_m_trader_01`] = { model = "mp_u_m_m_trader_01", hash = 0x7F96CF37, outfits = 2 }, + [`mp_u_m_m_tvlfence_01`] = { model = "mp_u_m_m_tvlfence_01", hash = 0xB16AD39D, outfits = 1 }, + [`mp_u_m_o_blwpolicechief_01`] = { model = "mp_u_m_o_blwpolicechief_01", hash = 0x32D2C56D, outfits = 8 }, + [`mp_wgnbrkout_recipient_males_01`] = { model = "mp_wgnbrkout_recipient_males_01", hash = 0x749DDBE2, outfits = 27 }, + [`mp_wgnthief_recipient_males_01`] = { model = "mp_wgnthief_recipient_males_01", hash = 0xFD9DC5E0, outfits = 24 }, + [`msp_bountyhunter1_females_01`] = { model = "msp_bountyhunter1_females_01", hash = 0xF61DB75E, outfits = 1 }, + [`msp_braithwaites1_males_01`] = { model = "msp_braithwaites1_males_01", hash = 0xF4CED35C, outfits = 1 }, + [`msp_feud1_males_01`] = { model = "msp_feud1_males_01", hash = 0x11C73FBE, outfits = 4 }, + [`msp_fussar2_males_01`] = { model = "msp_fussar2_males_01", hash = 0x776A1598, outfits = 3 }, + [`msp_gang2_males_01`] = { model = "msp_gang2_males_01", hash = 0xD871A306, outfits = 1 }, + [`msp_gang3_males_01`] = { model = "msp_gang3_males_01", hash = 0x144452D7, outfits = 2 }, + [`msp_grays1_males_01`] = { model = "msp_grays1_males_01", hash = 0x39FF837C, outfits = 1 }, + [`msp_grays2_males_01`] = { model = "msp_grays2_males_01", hash = 0xEA4A504D, outfits = 1 }, + [`msp_guarma2_males_01`] = { model = "msp_guarma2_males_01", hash = 0xDBAC89A0, outfits = 3 }, + [`msp_industry1_females_01`] = { model = "msp_industry1_females_01", hash = 0x1E9549CA, outfits = 7 }, + [`msp_industry1_males_01`] = { model = "msp_industry1_males_01", hash = 0xB294E4CA, outfits = 8 }, + [`msp_industry3_females_01`] = { model = "msp_industry3_females_01", hash = 0x59B2E634, outfits = 1 }, + [`msp_industry3_males_01`] = { model = "msp_industry3_males_01", hash = 0x00E36FB7, outfits = 8 }, + [`msp_mary1_females_01`] = { model = "msp_mary1_females_01", hash = 0x25319F37, outfits = 1 }, + [`msp_mary1_males_01`] = { model = "msp_mary1_males_01", hash = 0x283AECFD, outfits = 2 }, + [`msp_mary3_males_01`] = { model = "msp_mary3_males_01", hash = 0xC1040D2C, outfits = 6 }, + [`msp_mob0_males_01`] = { model = "msp_mob0_males_01", hash = 0x28F695AC, outfits = 1 }, + [`msp_mob1_females_01`] = { model = "msp_mob1_females_01", hash = 0xF148DBF6, outfits = 8 }, + [`msp_mob1_males_01`] = { model = "msp_mob1_males_01", hash = 0x45453194, outfits = 7 }, + [`msp_mob1_teens_01`] = { model = "msp_mob1_teens_01", hash = 0x391B7870, outfits = 7 }, + [`msp_mob3_females_01`] = { model = "msp_mob3_females_01", hash = 0x90ADB7F1, outfits = 2 }, + [`msp_mob3_males_01`] = { model = "msp_mob3_males_01", hash = 0xF1804E11, outfits = 4 }, + [`msp_mudtown3b_females_01`] = { model = "msp_mudtown3b_females_01", hash = 0xB4F27E28, outfits = 20 }, + [`msp_mudtown3b_males_01`] = { model = "msp_mudtown3b_males_01", hash = 0x90BA2D73, outfits = 20 }, + [`msp_mudtown3_males_01`] = { model = "msp_mudtown3_males_01", hash = 0xC237B30F, outfits = 2 }, + [`msp_mudtown5_males_01`] = { model = "msp_mudtown5_males_01", hash = 0x297869BA, outfits = 5 }, + [`msp_native1_males_01`] = { model = "msp_native1_males_01", hash = 0xB4685DE4, outfits = 3 }, + [`msp_reverend1_males_01`] = { model = "msp_reverend1_males_01", hash = 0x97990286, outfits = 4 }, + [`msp_saintdenis1_females_01`] = { model = "msp_saintdenis1_females_01", hash = 0x77807351, outfits = 6 }, + [`msp_saintdenis1_males_01`] = { model = "msp_saintdenis1_males_01", hash = 0xF21ED93D, outfits = 17 }, + [`msp_saloon1_females_01`] = { model = "msp_saloon1_females_01", hash = 0x961D2A2D, outfits = 22 }, + [`msp_saloon1_males_01`] = { model = "msp_saloon1_males_01", hash = 0x8F03BE01, outfits = 45 }, + [`msp_smuggler2_males_01`] = { model = "msp_smuggler2_males_01", hash = 0x1A2459CB, outfits = 2 }, + [`msp_trainrobbery2_males_01`] = { model = "msp_trainrobbery2_males_01", hash = 0x1754F82F, outfits = 4 }, + [`msp_trelawny1_males_01`] = { model = "msp_trelawny1_males_01", hash = 0x840FA9CD, outfits = 7 }, + [`msp_utopia1_males_01`] = { model = "msp_utopia1_males_01", hash = 0x12EDDBCE, outfits = 10 }, + [`msp_winter4_males_01`] = { model = "msp_winter4_males_01", hash = 0xDE01E0F9, outfits = 1 }, + [`player_three`] = { model = "player_three", hash = 0x00B69710, outfits = 33 }, + [`player_zero`] = { model = "player_zero", hash = 0x0D7114C9, outfits = 74 }, + [`rces_abigail3_females_01`] = { model = "rces_abigail3_females_01", hash = 0x5C32DA8F, outfits = 2 }, + [`rces_abigail3_males_01`] = { model = "rces_abigail3_males_01", hash = 0x7BA67807, outfits = 1 }, + [`rces_beechers1_males_01`] = { model = "rces_beechers1_males_01", hash = 0xE1566351, outfits = 4 }, + [`rces_evelynmiller_males_01`] = { model = "rces_evelynmiller_males_01", hash = 0xF63E07A5, outfits = 3 }, + [`rcsp_beauandpenelope1_females_01`] = { model = "rcsp_beauandpenelope1_females_01", hash = 0xFB1CC58C, outfits = 16 }, + [`rcsp_beauandpenelope_males_01`] = { model = "rcsp_beauandpenelope_males_01", hash = 0x7BD8E784, outfits = 5 }, + [`rcsp_calderonstage2_males_01`] = { model = "rcsp_calderonstage2_males_01", hash = 0x6A407345, outfits = 2 }, + [`rcsp_calderonstage2_teens_01`] = { model = "rcsp_calderonstage2_teens_01", hash = 0x21DF353D, outfits = 3 }, + [`rcsp_calderon_males_01`] = { model = "rcsp_calderon_males_01", hash = 0x5278C19E, outfits = 3 }, + [`rcsp_calloway_males_01`] = { model = "rcsp_calloway_males_01", hash = 0xCAF14192, outfits = 5 }, + [`rcsp_coachrobbery_males_01`] = { model = "rcsp_coachrobbery_males_01", hash = 0xF9FF65FA, outfits = 5 }, + [`rcsp_crackpot_females_01`] = { model = "rcsp_crackpot_females_01", hash = 0xDF975FD2, outfits = 2 }, + [`rcsp_crackpot_males_01`] = { model = "rcsp_crackpot_males_01", hash = 0x79A9623E, outfits = 4 }, + [`rcsp_creole_males_01`] = { model = "rcsp_creole_males_01", hash = 0x7F993AAD, outfits = 1 }, + [`rcsp_dutch1_males_01`] = { model = "rcsp_dutch1_males_01", hash = 0xF9EB2E96, outfits = 8 }, + [`rcsp_dutch3_males_01`] = { model = "rcsp_dutch3_males_01", hash = 0x880560E1, outfits = 2 }, + [`rcsp_edithdownes2_males_01`] = { model = "rcsp_edithdownes2_males_01", hash = 0x2B814C4B, outfits = 2 }, + [`rcsp_formyart_females_01`] = { model = "rcsp_formyart_females_01", hash = 0xC4C59AD4, outfits = 6 }, + [`rcsp_formyart_males_01`] = { model = "rcsp_formyart_males_01", hash = 0x158FFD8B, outfits = 10 }, + [`rcsp_gunslingerduel4_males_01`] = { model = "rcsp_gunslingerduel4_males_01", hash = 0x494FC69B, outfits = 4 }, + [`rcsp_herekittykitty_males_01`] = { model = "rcsp_herekittykitty_males_01", hash = 0x1268B0C9, outfits = 2 }, + [`rcsp_hunting1_males_01`] = { model = "rcsp_hunting1_males_01", hash = 0x1319E95B, outfits = 2 }, + [`rcsp_mrmayor_males_01`] = { model = "rcsp_mrmayor_males_01", hash = 0x48EE7011, outfits = 1 }, + [`rcsp_native1s2_males_01`] = { model = "rcsp_native1s2_males_01", hash = 0xB11093B2, outfits = 5 }, + [`rcsp_native_americanfathers_males_01`] = { model = "rcsp_native_americanfathers_males_01", hash = 0x4AAE5FA2, outfits = 1 }, + [`rcsp_oddfellows_males_01`] = { model = "rcsp_oddfellows_males_01", hash = 0x1B92FA61, outfits = 1 }, + [`rcsp_odriscolls2_females_01`] = { model = "rcsp_odriscolls2_females_01", hash = 0xBB375EE3, outfits = 3 }, + [`rcsp_poisonedwell_females_01`] = { model = "rcsp_poisonedwell_females_01", hash = 0xC00FA82A, outfits = 4 }, + [`rcsp_poisonedwell_males_01`] = { model = "rcsp_poisonedwell_males_01", hash = 0x36C54685, outfits = 6 }, + [`rcsp_poisonedwell_teens_01`] = { model = "rcsp_poisonedwell_teens_01", hash = 0x4F0CE5B2, outfits = 2 }, + [`rcsp_ridethelightning_females_01`] = { model = "rcsp_ridethelightning_females_01", hash = 0xA4FD4905, outfits = 3 }, + [`rcsp_ridethelightning_males_01`] = { model = "rcsp_ridethelightning_males_01", hash = 0x6325ED08, outfits = 1 }, + [`rcsp_sadie1_males_01`] = { model = "rcsp_sadie1_males_01", hash = 0xA3727520, outfits = 4 }, + [`rcsp_slavecatcher_males_01`] = { model = "rcsp_slavecatcher_males_01", hash = 0xD8F7A42D, outfits = 2 }, + [`re_animalattack_females_01`] = { model = "re_animalattack_females_01", hash = 0xE486EF71, outfits = 1 }, + [`re_animalattack_males_01`] = { model = "re_animalattack_males_01", hash = 0x62C7CB3C, outfits = 2 }, + [`re_animalmauling_males_01`] = { model = "re_animalmauling_males_01", hash = 0x703FBE93, outfits = 3 }, + [`re_approach_males_01`] = { model = "re_approach_males_01", hash = 0xCA6AE495, outfits = 2 }, + [`re_beartrap_males_01`] = { model = "re_beartrap_males_01", hash = 0x5CB5E6EA, outfits = 4 }, + [`re_boatattack_males_01`] = { model = "re_boatattack_males_01", hash = 0xFB4137F2, outfits = 3 }, + [`re_burningbodies_males_01`] = { model = "re_burningbodies_males_01", hash = 0x367E8D6C, outfits = 3 }, + [`re_checkpoint_males_01`] = { model = "re_checkpoint_males_01", hash = 0x95EC9DD3, outfits = 2 }, + [`re_coachrobbery_females_01`] = { model = "re_coachrobbery_females_01", hash = 0x629F1377, outfits = 1 }, + [`re_coachrobbery_males_01`] = { model = "re_coachrobbery_males_01", hash = 0x4499F637, outfits = 8 }, + [`re_consequence_males_01`] = { model = "re_consequence_males_01", hash = 0xE1568603, outfits = 8 }, + [`re_corpsecart_females_01`] = { model = "re_corpsecart_females_01", hash = 0xD4AEC8B8, outfits = 2 }, + [`re_corpsecart_males_01`] = { model = "re_corpsecart_males_01", hash = 0x5220FFBE, outfits = 3 }, + [`re_crashedwagon_males_01`] = { model = "re_crashedwagon_males_01", hash = 0x79AC27BA, outfits = 5 }, + [`re_darkalleyambush_males_01`] = { model = "re_darkalleyambush_males_01", hash = 0xCE48FB7A, outfits = 4 }, + [`re_darkalleybum_males_01`] = { model = "re_darkalleybum_males_01", hash = 0x3069C374, outfits = 5 }, + [`re_darkalleystabbing_males_01`] = { model = "re_darkalleystabbing_males_01", hash = 0xA6D580A6, outfits = 5 }, + [`re_deadbodies_males_01`] = { model = "re_deadbodies_males_01", hash = 0x33DC2EF2, outfits = 2 }, + [`re_deadjohn_females_01`] = { model = "re_deadjohn_females_01", hash = 0xACDE9302, outfits = 1 }, + [`re_deadjohn_males_01`] = { model = "re_deadjohn_males_01", hash = 0xFDEB46B0, outfits = 2 }, + [`re_disabledbeggar_males_01`] = { model = "re_disabledbeggar_males_01", hash = 0x1FCA2943, outfits = 5 }, + [`re_domesticdispute_females_01`] = { model = "re_domesticdispute_females_01", hash = 0x9DB7B801, outfits = 3 }, + [`re_domesticdispute_males_01`] = { model = "re_domesticdispute_males_01", hash = 0x6A11617F, outfits = 4 }, + [`re_drownmurder_females_01`] = { model = "re_drownmurder_females_01", hash = 0x0E4180E1, outfits = 3 }, + [`re_drownmurder_males_01`] = { model = "re_drownmurder_males_01", hash = 0xAEE8FDCD, outfits = 3 }, + [`re_drunkcamp_males_01`] = { model = "re_drunkcamp_males_01", hash = 0xE5965991, outfits = 5 }, + [`re_drunkdueler_males_01`] = { model = "re_drunkdueler_males_01", hash = 0x58AF6095, outfits = 2 }, + [`re_duelboaster_males_01`] = { model = "re_duelboaster_males_01", hash = 0xEF2609C7, outfits = 2 }, + [`re_duelwinner_females_01`] = { model = "re_duelwinner_females_01", hash = 0xC96A4211, outfits = 6 }, + [`re_duelwinner_males_01`] = { model = "re_duelwinner_males_01", hash = 0x0DECFCD7, outfits = 22 }, + [`re_escort_females_01`] = { model = "re_escort_females_01", hash = 0x81978D28, outfits = 2 }, + [`re_executions_males_01`] = { model = "re_executions_males_01", hash = 0x2321E38B, outfits = 5 }, + [`re_fleeingfamily_females_01`] = { model = "re_fleeingfamily_females_01", hash = 0xB2AC568B, outfits = 1 }, + [`re_fleeingfamily_males_01`] = { model = "re_fleeingfamily_males_01", hash = 0x09FC3CA1, outfits = 1 }, + [`re_footrobbery_males_01`] = { model = "re_footrobbery_males_01", hash = 0x66F6F941, outfits = 3 }, + [`re_friendlyoutdoorsman_males_01`] = { model = "re_friendlyoutdoorsman_males_01", hash = 0x81BF6232, outfits = 1 }, + [`re_frozentodeath_females_01`] = { model = "re_frozentodeath_females_01", hash = 0x8755FDCB, outfits = 1 }, + [`re_frozentodeath_males_01`] = { model = "re_frozentodeath_males_01", hash = 0xC9CFCE6D, outfits = 1 }, + [`re_fundraiser_females_01`] = { model = "re_fundraiser_females_01", hash = 0x2E30B6C8, outfits = 2 }, + [`re_fussarchase_males_01`] = { model = "re_fussarchase_males_01", hash = 0xE459A4A5, outfits = 2 }, + [`re_goldpanner_males_01`] = { model = "re_goldpanner_males_01", hash = 0x4E504380, outfits = 4 }, + [`re_horserace_females_01`] = { model = "re_horserace_females_01", hash = 0xF502975D, outfits = 2 }, + [`re_horserace_males_01`] = { model = "re_horserace_males_01", hash = 0x6CC05760, outfits = 2 }, + [`re_hostagerescue_females_01`] = { model = "re_hostagerescue_females_01", hash = 0x5D3650C0, outfits = 2 }, + [`re_hostagerescue_males_01`] = { model = "re_hostagerescue_males_01", hash = 0x65C6382C, outfits = 4 }, + [`re_inbredkidnap_females_01`] = { model = "re_inbredkidnap_females_01", hash = 0xD1E15C65, outfits = 2 }, + [`re_inbredkidnap_males_01`] = { model = "re_inbredkidnap_males_01", hash = 0x387C96BF, outfits = 2 }, + [`re_injuredrider_males_01`] = { model = "re_injuredrider_males_01", hash = 0x66CB93BC, outfits = 9 }, + [`re_kidnappedvictim_females_01`] = { model = "re_kidnappedvictim_females_01", hash = 0x11D854F4, outfits = 4 }, + [`re_laramiegangrustling_males_01`] = { model = "re_laramiegangrustling_males_01", hash = 0x1A468CD5, outfits = 2 }, + [`re_loneprisoner_males_01`] = { model = "re_loneprisoner_males_01", hash = 0xBEA07BE3, outfits = 2 }, + [`re_lostdrunk_females_01`] = { model = "re_lostdrunk_females_01", hash = 0x42C14B8A, outfits = 3 }, + [`re_lostdrunk_males_01`] = { model = "re_lostdrunk_males_01", hash = 0x8AB27C20, outfits = 4 }, + [`re_lostfriend_males_01`] = { model = "re_lostfriend_males_01", hash = 0x0684C863, outfits = 5 }, + [`re_lostman_males_01`] = { model = "re_lostman_males_01", hash = 0x24EA5130, outfits = 1 }, + [`re_moonshinecamp_males_01`] = { model = "re_moonshinecamp_males_01", hash = 0x791111A2, outfits = 4 }, + [`re_murdercamp_males_01`] = { model = "re_murdercamp_males_01", hash = 0xCAB23E50, outfits = 3 }, + [`re_murdersuicide_females_01`] = { model = "re_murdersuicide_females_01", hash = 0x6BB3CF86, outfits = 3 }, + [`re_murdersuicide_males_01`] = { model = "re_murdersuicide_males_01", hash = 0x440BD544, outfits = 3 }, + [`re_nakedswimmer_males_01`] = { model = "re_nakedswimmer_males_01", hash = 0x29908B97, outfits = 1 }, + [`re_ontherun_males_01`] = { model = "re_ontherun_males_01", hash = 0x8E6C0C2E, outfits = 2 }, + [`re_outlawlooter_males_01`] = { model = "re_outlawlooter_males_01", hash = 0xEEF6045E, outfits = 24 }, + [`re_parlorambush_males_01`] = { model = "re_parlorambush_males_01", hash = 0xB0D2EE63, outfits = 1 }, + [`re_peepingtom_females_01`] = { model = "re_peepingtom_females_01", hash = 0x1FD195D2, outfits = 3 }, + [`re_peepingtom_males_01`] = { model = "re_peepingtom_males_01", hash = 0xDF72A84B, outfits = 8 }, + [`re_pickpocket_males_01`] = { model = "re_pickpocket_males_01", hash = 0x91824246, outfits = 3 }, + [`re_pisspot_females_01`] = { model = "re_pisspot_females_01", hash = 0xEFF51021, outfits = 6 }, + [`re_pisspot_males_01`] = { model = "re_pisspot_males_01", hash = 0xD730B466, outfits = 10 }, + [`re_playercampstrangers_females_01`] = { model = "re_playercampstrangers_females_01", hash = 0x531B5B75, outfits = 2 }, + [`re_playercampstrangers_males_01`] = { model = "re_playercampstrangers_males_01", hash = 0x2AC9BAAF, outfits = 1 }, + [`re_poisoned_males_01`] = { model = "re_poisoned_males_01", hash = 0x7BCC9C83, outfits = 2 }, + [`re_policechase_males_01`] = { model = "re_policechase_males_01", hash = 0x2BFFE26F, outfits = 4 }, + [`re_prisonwagon_females_01`] = { model = "re_prisonwagon_females_01", hash = 0x3EC9C4BC, outfits = 5 }, + [`re_prisonwagon_males_01`] = { model = "re_prisonwagon_males_01", hash = 0x2D438F6C, outfits = 4 }, + [`re_publichanging_females_01`] = { model = "re_publichanging_females_01", hash = 0xB2F47EFD, outfits = 17 }, + [`re_publichanging_males_01`] = { model = "re_publichanging_males_01", hash = 0x6826C60C, outfits = 74 }, + [`re_publichanging_teens_01`] = { model = "re_publichanging_teens_01", hash = 0xB2B11AFC, outfits = 2 }, + [`re_rallydispute_males_01`] = { model = "re_rallydispute_males_01", hash = 0xBB6D5452, outfits = 4 }, + [`re_rallysetup_males_01`] = { model = "re_rallysetup_males_01", hash = 0x39C84A35, outfits = 3 }, + [`re_rally_males_01`] = { model = "re_rally_males_01", hash = 0x08486093, outfits = 13 }, + [`re_ratinfestation_males_01`] = { model = "re_ratinfestation_males_01", hash = 0x89FB8610, outfits = 1 }, + [`re_rowdydrunks_males_01`] = { model = "re_rowdydrunks_males_01", hash = 0x487E0B26, outfits = 13 }, + [`re_savageaftermath_females_01`] = { model = "re_savageaftermath_females_01", hash = 0xA8D0FBF7, outfits = 2 }, + [`re_savageaftermath_males_01`] = { model = "re_savageaftermath_males_01", hash = 0xF7C4FD8C, outfits = 5 }, + [`re_savagefight_females_01`] = { model = "re_savagefight_females_01", hash = 0x0D4D77B7, outfits = 3 }, + [`re_savagefight_males_01`] = { model = "re_savagefight_males_01", hash = 0xBA652DBE, outfits = 3 }, + [`re_savagewagon_females_01`] = { model = "re_savagewagon_females_01", hash = 0xFFB2BFA4, outfits = 4 }, + [`re_savagewagon_males_01`] = { model = "re_savagewagon_males_01", hash = 0xA9CDF6A9, outfits = 6 }, + [`re_savagewarning_males_01`] = { model = "re_savagewarning_males_01", hash = 0x6461654D, outfits = 7 }, + [`re_sharpshooter_males_01`] = { model = "re_sharpshooter_males_01", hash = 0x69723D9A, outfits = 2 }, + [`re_showoff_males_01`] = { model = "re_showoff_males_01", hash = 0xE47AAB16, outfits = 8 }, + [`re_skippingstones_males_01`] = { model = "re_skippingstones_males_01", hash = 0x548636CD, outfits = 1 }, + [`re_skippingstones_teens_01`] = { model = "re_skippingstones_teens_01", hash = 0x38DB4E99, outfits = 1 }, + [`re_slumambush_females_01`] = { model = "re_slumambush_females_01", hash = 0x717C4D5F, outfits = 2 }, + [`re_snakebite_males_01`] = { model = "re_snakebite_males_01", hash = 0x6EB40313, outfits = 2 }, + [`re_stalkinghunter_males_01`] = { model = "re_stalkinghunter_males_01", hash = 0xF3FAA72B, outfits = 3 }, + [`re_strandedrider_males_01`] = { model = "re_strandedrider_males_01", hash = 0x8CB8566C, outfits = 4 }, + [`re_street_fight_males_01`] = { model = "re_street_fight_males_01", hash = 0x0834334E, outfits = 24 }, + [`re_taunting_01`] = { model = "re_taunting_01", hash = 0xFE6B32C9, outfits = 2 }, + [`re_taunting_males_01`] = { model = "re_taunting_males_01", hash = 0x6B768512, outfits = 3 }, + [`re_torturingcaptive_males_01`] = { model = "re_torturingcaptive_males_01", hash = 0x789023D8, outfits = 2 }, + [`re_townburial_males_01`] = { model = "re_townburial_males_01", hash = 0x13AB574F, outfits = 18 }, + [`re_townconfrontation_females_01`] = { model = "re_townconfrontation_females_01", hash = 0x6C3B3B5B, outfits = 1 }, + [`re_townconfrontation_males_01`] = { model = "re_townconfrontation_males_01", hash = 0xBE60CA00, outfits = 4 }, + [`re_townrobbery_males_01`] = { model = "re_townrobbery_males_01", hash = 0x0F3C1689, outfits = 2 }, + [`re_townwidow_females_01`] = { model = "re_townwidow_females_01", hash = 0x436EBD6C, outfits = 3 }, + [`re_trainholdup_females_01`] = { model = "re_trainholdup_females_01", hash = 0x3F8A4F75, outfits = 3 }, + [`re_trainholdup_males_01`] = { model = "re_trainholdup_males_01", hash = 0xB985F131, outfits = 30 }, + [`re_trappedwoman_females_01`] = { model = "re_trappedwoman_females_01", hash = 0xA99399B2, outfits = 3 }, + [`re_treasurehunter_males_01`] = { model = "re_treasurehunter_males_01", hash = 0xF1E3C6B0, outfits = 4 }, + [`re_voice_females_01`] = { model = "re_voice_females_01", hash = 0x6A5B1E21, outfits = 1 }, + [`re_wagonthreat_females_01`] = { model = "re_wagonthreat_females_01", hash = 0xEE8C468A, outfits = 1 }, + [`re_wagonthreat_males_01`] = { model = "re_wagonthreat_males_01", hash = 0xCA5501C8, outfits = 2 }, + [`re_washedashore_males_01`] = { model = "re_washedashore_males_01", hash = 0xAFC8B271, outfits = 2 }, + [`re_wealthycouple_females_01`] = { model = "re_wealthycouple_females_01", hash = 0x7EB7235E, outfits = 2 }, + [`re_wealthycouple_males_01`] = { model = "re_wealthycouple_males_01", hash = 0x76C957EC, outfits = 2 }, + [`re_wildman_01`] = { model = "re_wildman_01", hash = 0x25D32467, outfits = 2 }, + [`shack_missinghusband_males_01`] = { model = "shack_missinghusband_males_01", hash = 0x52938369, outfits = 1 }, + [`shack_ontherun_males_01`] = { model = "shack_ontherun_males_01", hash = 0x98688D36, outfits = 3 }, + [`s_f_m_bwmworker_01`] = { model = "s_f_m_bwmworker_01", hash = 0x9295AF45, outfits = 20 }, + [`s_f_m_cghworker_01`] = { model = "s_f_m_cghworker_01", hash = 0xDCEE66D9, outfits = 20 }, + [`s_f_m_mapworker_01`] = { model = "s_f_m_mapworker_01", hash = 0xC463C94D, outfits = 10 }, + [`s_m_m_ambientblwpolice_01`] = { model = "s_m_m_ambientblwpolice_01", hash = 0x8F45DDEB, outfits = 43 }, + [`s_m_m_ambientlawrural_01`] = { model = "s_m_m_ambientlawrural_01", hash = 0x6D22857B, outfits = 95 }, + [`s_m_m_ambientsdpolice_01`] = { model = "s_m_m_ambientsdpolice_01", hash = 0xA9AD1A7D, outfits = 44 }, + [`s_m_m_army_01`] = { model = "s_m_m_army_01", hash = 0x2B0C75A7, outfits = 59 }, + [`s_m_m_asbcowpoke_01`] = { model = "s_m_m_asbcowpoke_01", hash = 0xBC548357, outfits = 30 }, + [`s_m_m_asbdealer_01`] = { model = "s_m_m_asbdealer_01", hash = 0xA76308C1, outfits = 10 }, + [`s_m_m_bankclerk_01`] = { model = "s_m_m_bankclerk_01", hash = 0x40C51B9B, outfits = 13 }, + [`s_m_m_barber_01`] = { model = "s_m_m_barber_01", hash = 0xD2FA5F10, outfits = 7 }, + [`s_m_m_blwcowpoke_01`] = { model = "s_m_m_blwcowpoke_01", hash = 0x45B1C269, outfits = 30 }, + [`s_m_m_blwdealer_01`] = { model = "s_m_m_blwdealer_01", hash = 0x96B4CDFD, outfits = 8 }, + [`s_m_m_bwmworker_01`] = { model = "s_m_m_bwmworker_01", hash = 0x7FA7B097, outfits = 20 }, + [`s_m_m_cghworker_01`] = { model = "s_m_m_cghworker_01", hash = 0x9E19AFE2, outfits = 30 }, + [`s_m_m_cktworker_01`] = { model = "s_m_m_cktworker_01", hash = 0xCC2B5869, outfits = 50 }, + [`s_m_m_coachtaxidriver_01`] = { model = "s_m_m_coachtaxidriver_01", hash = 0x76F815AD, outfits = 16 }, + [`s_m_m_cornwallguard_01`] = { model = "s_m_m_cornwallguard_01", hash = 0xBF1F0776, outfits = 43 }, + [`s_m_m_dispatchlawrural_01`] = { model = "s_m_m_dispatchlawrural_01", hash = 0xE9F4AB20, outfits = 65 }, + [`s_m_m_dispatchleaderpolice_01`] = { model = "s_m_m_dispatchleaderpolice_01", hash = 0x7E16EC8D, outfits = 20 }, + [`s_m_m_dispatchleaderrural_01`] = { model = "s_m_m_dispatchleaderrural_01", hash = 0x5040FF5C, outfits = 11 }, + [`s_m_m_dispatchpolice_01`] = { model = "s_m_m_dispatchpolice_01", hash = 0xFFBABBF9, outfits = 40 }, + [`s_m_m_fussarhenchman_01`] = { model = "s_m_m_fussarhenchman_01", hash = 0xE917380E, outfits = 67 }, + [`s_m_m_genconductor_01`] = { model = "s_m_m_genconductor_01", hash = 0x56016AD3, outfits = 11 }, + [`s_m_m_hofguard_01`] = { model = "s_m_m_hofguard_01", hash = 0x2C8D5F17, outfits = 20 }, + [`s_m_m_liveryworker_01`] = { model = "s_m_m_liveryworker_01", hash = 0x8649EF17, outfits = 24 }, + [`s_m_m_magiclantern_01`] = { model = "s_m_m_magiclantern_01", hash = 0x236B99E0, outfits = 4 }, + [`s_m_m_mapworker_01`] = { model = "s_m_m_mapworker_01", hash = 0x4A6B07B5, outfits = 10 }, + [`s_m_m_marketvendor_01`] = { model = "s_m_m_marketvendor_01", hash = 0x5339E46B, outfits = 16 }, + [`s_m_m_marshallsrural_01`] = { model = "s_m_m_marshallsrural_01", hash = 0x3141A535, outfits = 33 }, + [`s_m_m_micguard_01`] = { model = "s_m_m_micguard_01", hash = 0xD952E41C, outfits = 23 }, + [`s_m_m_nbxriverboatdealers_01`] = { model = "s_m_m_nbxriverboatdealers_01", hash = 0x5D6431A9, outfits = 20 }, + [`s_m_m_nbxriverboatguards_01`] = { model = "s_m_m_nbxriverboatguards_01", hash = 0xDF00FFF5, outfits = 25 }, + [`s_m_m_orpguard_01`] = { model = "s_m_m_orpguard_01", hash = 0x6A4E496F, outfits = 20 }, + [`s_m_m_pinlaw_01`] = { model = "s_m_m_pinlaw_01", hash = 0x2BFB9F8F, outfits = 55 }, + [`s_m_m_racrailguards_01`] = { model = "s_m_m_racrailguards_01", hash = 0xB72270C2, outfits = 20 }, + [`s_m_m_racrailworker_01`] = { model = "s_m_m_racrailworker_01", hash = 0x6CC9E1B0, outfits = 30 }, + [`s_m_m_rhdcowpoke_01`] = { model = "s_m_m_rhdcowpoke_01", hash = 0xEDF61C81, outfits = 20 }, + [`s_m_m_rhddealer_01`] = { model = "s_m_m_rhddealer_01", hash = 0xD819DA9D, outfits = 8 }, + [`s_m_m_sdcowpoke_01`] = { model = "s_m_m_sdcowpoke_01", hash = 0xC8C55680, outfits = 35 }, + [`s_m_m_sddealer_01`] = { model = "s_m_m_sddealer_01", hash = 0x6C604B17, outfits = 8 }, + [`s_m_m_sdticketseller_01`] = { model = "s_m_m_sdticketseller_01", hash = 0xE02AEA58, outfits = 6 }, + [`s_m_m_skpguard_01`] = { model = "s_m_m_skpguard_01", hash = 0x459610AE, outfits = 20 }, + [`s_m_m_stgsailor_01`] = { model = "s_m_m_stgsailor_01", hash = 0xC55DA177, outfits = 20 }, + [`s_m_m_strcowpoke_01`] = { model = "s_m_m_strcowpoke_01", hash = 0xFCF4C01C, outfits = 21 }, + [`s_m_m_strdealer_01`] = { model = "s_m_m_strdealer_01", hash = 0x65E1C35F, outfits = 8 }, + [`s_m_m_strlumberjack_01`] = { model = "s_m_m_strlumberjack_01", hash = 0x18A9A8A5, outfits = 16 }, + [`s_m_m_tailor_01`] = { model = "s_m_m_tailor_01", hash = 0x2AE5771F, outfits = 7 }, + [`s_m_m_trainstationworker_01`] = { model = "s_m_m_trainstationworker_01", hash = 0xE9694F3F, outfits = 28 }, + [`s_m_m_tumdeputies_01`] = { model = "s_m_m_tumdeputies_01", hash = 0xB27C0016, outfits = 22 }, + [`s_m_m_unibutchers_01`] = { model = "s_m_m_unibutchers_01", hash = 0x0633DF9F, outfits = 13 }, + [`s_m_m_unitrainengineer_01`] = { model = "s_m_m_unitrainengineer_01", hash = 0xD1264F4D, outfits = 10 }, + [`s_m_m_unitrainguards_01`] = { model = "s_m_m_unitrainguards_01", hash = 0x083BB629, outfits = 21 }, + [`s_m_m_valbankguards_01`] = { model = "s_m_m_valbankguards_01", hash = 0x96AB9699, outfits = 10 }, + [`s_m_m_valcowpoke_01`] = { model = "s_m_m_valcowpoke_01", hash = 0x4304BF5C, outfits = 21 }, + [`s_m_m_valdealer_01`] = { model = "s_m_m_valdealer_01", hash = 0x9BCF0362, outfits = 8 }, + [`s_m_m_valdeputy_01`] = { model = "s_m_m_valdeputy_01", hash = 0xF4B4127A, outfits = 20 }, + [`s_m_m_vhtdealer_01`] = { model = "s_m_m_vhtdealer_01", hash = 0x398349E3, outfits = 8 }, + [`s_m_o_cktworker_01`] = { model = "s_m_o_cktworker_01", hash = 0x50152A20, outfits = 8 }, + [`s_m_y_army_01`] = { model = "s_m_y_army_01", hash = 0x802760F9, outfits = 43 }, + [`s_m_y_newspaperboy_01`] = { model = "s_m_y_newspaperboy_01", hash = 0x111A98CA, outfits = 16 }, + [`s_m_y_racrailworker_01`] = { model = "s_m_y_racrailworker_01", hash = 0x84F58DCD, outfits = 30 }, + [`u_f_m_bht_wife`] = { model = "u_f_m_bht_wife", hash = 0x512129F2, outfits = 1 }, + [`u_f_m_circuswagon_01`] = { model = "u_f_m_circuswagon_01", hash = 0x5F3EE4D3, outfits = 1 }, + [`u_f_m_emrdaughter_01`] = { model = "u_f_m_emrdaughter_01", hash = 0xD93F012D, outfits = 5 }, + [`u_f_m_fussar1lady_01`] = { model = "u_f_m_fussar1lady_01", hash = 0xB1DCC83F, outfits = 1 }, + [`u_f_m_htlwife_01`] = { model = "u_f_m_htlwife_01", hash = 0x76C45EF0, outfits = 1 }, + [`u_f_m_lagmother_01`] = { model = "u_f_m_lagmother_01", hash = 0x41ACC7BC, outfits = 9 }, + [`u_f_m_nbxresident_01`] = { model = "u_f_m_nbxresident_01", hash = 0xAF6FBD47, outfits = 2 }, + [`u_f_m_rhdnudewoman_01`] = { model = "u_f_m_rhdnudewoman_01", hash = 0x99372227, outfits = 1 }, + [`u_f_m_rkshomesteadtenant_01`] = { model = "u_f_m_rkshomesteadtenant_01", hash = 0xE96BC143, outfits = 1 }, + [`u_f_m_story_blackbelle_01`] = { model = "u_f_m_story_blackbelle_01", hash = 0xC71BF1D1, outfits = 1 }, + [`u_f_m_story_nightfolk_01`] = { model = "u_f_m_story_nightfolk_01", hash = 0x3C1CEAE0, outfits = 1 }, + [`u_f_m_tljbartender_01`] = { model = "u_f_m_tljbartender_01", hash = 0x0A219825, outfits = 9 }, + [`u_f_m_tumgeneralstoreowner_01`] = { model = "u_f_m_tumgeneralstoreowner_01", hash = 0xF1711637, outfits = 9 }, + [`u_f_m_valtownfolk_01`] = { model = "u_f_m_valtownfolk_01", hash = 0x8F549F46, outfits = 2 }, + [`u_f_m_valtownfolk_02`] = { model = "u_f_m_valtownfolk_02", hash = 0x7CC2FA23, outfits = 2 }, + [`u_f_m_vhtbartender_01`] = { model = "u_f_m_vhtbartender_01", hash = 0x3E471440, outfits = 7 }, + [`u_f_o_hermit_woman_01`] = { model = "u_f_o_hermit_woman_01", hash = 0xEDC0F72A, outfits = 1 }, + [`u_f_o_wtctownfolk_01`] = { model = "u_f_o_wtctownfolk_01", hash = 0xAE38220C, outfits = 1 }, + [`u_f_y_braithwaitessecret_01`] = { model = "u_f_y_braithwaitessecret_01", hash = 0x74DF3938, outfits = 2 }, + [`u_f_y_czphomesteaddaughter_01`] = { model = "u_f_y_czphomesteaddaughter_01", hash = 0xBCC8D35F, outfits = 1 }, + [`u_m_m_announcer_01`] = { model = "u_m_m_announcer_01", hash = 0x8C9F0E5D, outfits = 2 }, + [`u_m_m_apfdeadman_01`] = { model = "u_m_m_apfdeadman_01", hash = 0x0717C9F9, outfits = 1 }, + [`u_m_m_armgeneralstoreowner_01`] = { model = "u_m_m_armgeneralstoreowner_01", hash = 0xC5DF0CFE, outfits = 9 }, + [`u_m_m_armtrainstationworker_01`] = { model = "u_m_m_armtrainstationworker_01", hash = 0x2AB8094F, outfits = 9 }, + [`u_m_m_armundertaker_01`] = { model = "u_m_m_armundertaker_01", hash = 0x8E4FCB05, outfits = 9 }, + [`u_m_m_armytrn4_01`] = { model = "u_m_m_armytrn4_01", hash = 0x4F93F6BE, outfits = 1 }, + [`u_m_m_asbgunsmith_01`] = { model = "u_m_m_asbgunsmith_01", hash = 0x80D04451, outfits = 9 }, + [`u_m_m_asbprisoner_01`] = { model = "u_m_m_asbprisoner_01", hash = 0x0B8D495D, outfits = 2 }, + [`u_m_m_asbprisoner_02`] = { model = "u_m_m_asbprisoner_02", hash = 0x1DCEEDE0, outfits = 2 }, + [`u_m_m_bht_banditomine`] = { model = "u_m_m_bht_banditomine", hash = 0xC3E1BC18, outfits = 2 }, + [`u_m_m_bht_banditoshack`] = { model = "u_m_m_bht_banditoshack", hash = 0xC3B9DF14, outfits = 4 }, + [`u_m_m_bht_benedictallbright`] = { model = "u_m_m_bht_benedictallbright", hash = 0x2B0B3AC2, outfits = 1 }, + [`u_m_m_bht_blackwaterhunt`] = { model = "u_m_m_bht_blackwaterhunt", hash = 0xACBA905B, outfits = 1 }, + [`u_m_m_bht_exconfedcampreturn`] = { model = "u_m_m_bht_exconfedcampreturn", hash = 0x652E0944, outfits = 1 }, + [`u_m_m_bht_laramiesleeping`] = { model = "u_m_m_bht_laramiesleeping", hash = 0xCC013F0A, outfits = 1 }, + [`u_m_m_bht_lover`] = { model = "u_m_m_bht_lover", hash = 0xB7281910, outfits = 1 }, + [`u_m_m_bht_mineforeman`] = { model = "u_m_m_bht_mineforeman", hash = 0x60D033B6, outfits = 1 }, + [`u_m_m_bht_nathankirk`] = { model = "u_m_m_bht_nathankirk", hash = 0x22944F0D, outfits = 1 }, + [`u_m_m_bht_odriscolldrunk`] = { model = "u_m_m_bht_odriscolldrunk", hash = 0xC5BCD5E8, outfits = 1 }, + [`u_m_m_bht_odriscollmauled`] = { model = "u_m_m_bht_odriscollmauled", hash = 0xA2B8EFDC, outfits = 1 }, + [`u_m_m_bht_odriscollsleeping`] = { model = "u_m_m_bht_odriscollsleeping", hash = 0x2E6B2DB0, outfits = 1 }, + [`u_m_m_bht_oldman`] = { model = "u_m_m_bht_oldman", hash = 0xC82782C2, outfits = 1 }, + [`U_M_M_BHT_OUTLAWMAULED`] = { model = "U_M_M_BHT_OUTLAWMAULED", hash = 0x62600029, outfits = 1 }, + [`u_m_m_bht_saintdenissaloon`] = { model = "u_m_m_bht_saintdenissaloon", hash = 0x2AC6EC80, outfits = 1 }, + [`u_m_m_bht_shackescape`] = { model = "u_m_m_bht_shackescape", hash = 0x861F7616, outfits = 1 }, + [`u_m_m_bht_skinnerbrother`] = { model = "u_m_m_bht_skinnerbrother", hash = 0x728D7C04, outfits = 3 }, + [`u_m_m_bht_skinnersearch`] = { model = "u_m_m_bht_skinnersearch", hash = 0x8E18978A, outfits = 3 }, + [`u_m_m_bht_strawberryduel`] = { model = "u_m_m_bht_strawberryduel", hash = 0x66EAB43A, outfits = 1 }, + [`u_m_m_bivforeman_01`] = { model = "u_m_m_bivforeman_01", hash = 0xB8195626, outfits = 5 }, + [`u_m_m_blwtrainstationworker_01`] = { model = "u_m_m_blwtrainstationworker_01", hash = 0xD3A41495, outfits = 9 }, + [`u_m_m_bulletcatchvolunteer_01`] = { model = "u_m_m_bulletcatchvolunteer_01", hash = 0x143F8FAC, outfits = 2 }, + [`u_m_m_bwmstablehand_01`] = { model = "u_m_m_bwmstablehand_01", hash = 0xA27B73FE, outfits = 4 }, + [`u_m_m_cabaretfirehat_01`] = { model = "u_m_m_cabaretfirehat_01", hash = 0xF78F6717, outfits = 1 }, + [`u_m_m_cajhomestead_01`] = { model = "u_m_m_cajhomestead_01", hash = 0x675B5537, outfits = 1 }, + [`u_m_m_chelonianjumper_01`] = { model = "u_m_m_chelonianjumper_01", hash = 0xA2FA1725, outfits = 2 }, + [`u_m_m_chelonianjumper_02`] = { model = "u_m_m_chelonianjumper_02", hash = 0x913F73B0, outfits = 2 }, + [`u_m_m_chelonianjumper_03`] = { model = "u_m_m_chelonianjumper_03", hash = 0x7FDED0EF, outfits = 2 }, + [`u_m_m_chelonianjumper_04`] = { model = "u_m_m_chelonianjumper_04", hash = 0x5E1D8D6D, outfits = 2 }, + [`u_m_m_circuswagon_01`] = { model = "u_m_m_circuswagon_01", hash = 0x67604D20, outfits = 1 }, + [`u_m_m_cktmanager_01`] = { model = "u_m_m_cktmanager_01", hash = 0xC31F3D4D, outfits = 1 }, + [`u_m_m_cornwalldriver_01`] = { model = "u_m_m_cornwalldriver_01", hash = 0x4CB41AA6, outfits = 1 }, + [`u_m_m_crdhomesteadtenant_01`] = { model = "u_m_m_crdhomesteadtenant_01", hash = 0x32830A89, outfits = 2 }, + [`u_m_m_crdhomesteadtenant_02`] = { model = "u_m_m_crdhomesteadtenant_02", hash = 0x693D77FD, outfits = 2 }, + [`u_m_m_crdwitness_01`] = { model = "u_m_m_crdwitness_01", hash = 0xD8053806, outfits = 2 }, + [`u_m_m_creolecaptain_01`] = { model = "u_m_m_creolecaptain_01", hash = 0xDA855AC6, outfits = 1 }, + [`u_m_m_czphomesteadfather_01`] = { model = "u_m_m_czphomesteadfather_01", hash = 0x08C9910B, outfits = 1 }, + [`u_m_m_dorhomesteadhusband_01`] = { model = "u_m_m_dorhomesteadhusband_01", hash = 0xA9A4DB09, outfits = 1 }, + [`u_m_m_emrfarmhand_03`] = { model = "u_m_m_emrfarmhand_03", hash = 0xCA3F1D23, outfits = 2 }, + [`u_m_m_emrfather_01`] = { model = "u_m_m_emrfather_01", hash = 0xD08F9FEC, outfits = 5 }, + [`u_m_m_executioner_01`] = { model = "u_m_m_executioner_01", hash = 0x9955028D, outfits = 1 }, + [`u_m_m_fatduster_01`] = { model = "u_m_m_fatduster_01", hash = 0x0CD32813, outfits = 2 }, + [`u_m_m_finale2_aa_upperclass_01`] = { model = "u_m_m_finale2_aa_upperclass_01", hash = 0x28F7679D, outfits = 2 }, + [`u_m_m_galastringquartet_01`] = { model = "u_m_m_galastringquartet_01", hash = 0x0E8B4AB9, outfits = 2 }, + [`u_m_m_galastringquartet_02`] = { model = "u_m_m_galastringquartet_02", hash = 0x4418B5DF, outfits = 2 }, + [`u_m_m_galastringquartet_03`] = { model = "u_m_m_galastringquartet_03", hash = 0x313F102C, outfits = 2 }, + [`u_m_m_galastringquartet_04`] = { model = "u_m_m_galastringquartet_04", hash = 0x677D7CA8, outfits = 2 }, + [`u_m_m_gamdoorman_01`] = { model = "u_m_m_gamdoorman_01", hash = 0x51B75106, outfits = 2 }, + [`u_m_m_hhrrancher_01`] = { model = "u_m_m_hhrrancher_01", hash = 0xE5DA06C1, outfits = 2 }, + [`u_m_m_htlforeman_01`] = { model = "u_m_m_htlforeman_01", hash = 0x1E87BC0A, outfits = 5 }, + [`u_m_m_htlhusband_01`] = { model = "u_m_m_htlhusband_01", hash = 0xD1C51E05, outfits = 1 }, + [`u_m_m_htlrancherbounty_01`] = { model = "u_m_m_htlrancherbounty_01", hash = 0x9B004750, outfits = 2 }, + [`u_m_m_islbum_01`] = { model = "u_m_m_islbum_01", hash = 0x8F6606D5, outfits = 1 }, + [`u_m_m_lnsoutlaw_01`] = { model = "u_m_m_lnsoutlaw_01", hash = 0x1DEF8E8E, outfits = 2 }, + [`u_m_m_lnsoutlaw_02`] = { model = "u_m_m_lnsoutlaw_02", hash = 0x2BE12A71, outfits = 2 }, + [`u_m_m_lnsoutlaw_03`] = { model = "u_m_m_lnsoutlaw_03", hash = 0x68F3A489, outfits = 2 }, + [`u_m_m_lnsoutlaw_04`] = { model = "u_m_m_lnsoutlaw_04", hash = 0x3881C3AA, outfits = 2 }, + [`u_m_m_lnsworker_01`] = { model = "u_m_m_lnsworker_01", hash = 0xCC4D780E, outfits = 2 }, + [`u_m_m_lnsworker_02`] = { model = "u_m_m_lnsworker_02", hash = 0xB30E4590, outfits = 2 }, + [`u_m_m_lnsworker_03`] = { model = "u_m_m_lnsworker_03", hash = 0xA0EFA153, outfits = 2 }, + [`u_m_m_lnsworker_04`] = { model = "u_m_m_lnsworker_04", hash = 0x91BD02EE, outfits = 2 }, + [`u_m_m_lrshomesteadtenant_01`] = { model = "u_m_m_lrshomesteadtenant_01", hash = 0xF9EEA22E, outfits = 2 }, + [`u_m_m_mfrrancher_01`] = { model = "u_m_m_mfrrancher_01", hash = 0xF91B281F, outfits = 2 }, + [`u_m_m_mud3pimp_01`] = { model = "u_m_m_mud3pimp_01", hash = 0x6CD2AAFF, outfits = 2 }, + [`u_m_m_nbxbankerbounty_01`] = { model = "u_m_m_nbxbankerbounty_01", hash = 0x2E3911BA, outfits = 2 }, + [`u_m_m_nbxbartender_01`] = { model = "u_m_m_nbxbartender_01", hash = 0x1EE53C9C, outfits = 9 }, + [`u_m_m_nbxbartender_02`] = { model = "u_m_m_nbxbartender_02", hash = 0x0D1298F7, outfits = 9 }, + [`u_m_m_nbxboatticketseller_01`] = { model = "u_m_m_nbxboatticketseller_01", hash = 0xB752EDAF, outfits = 5 }, + [`u_m_m_nbxbronteasc_01`] = { model = "u_m_m_nbxbronteasc_01", hash = 0x42507F3E, outfits = 1 }, + [`u_m_m_nbxbrontegoon_01`] = { model = "u_m_m_nbxbrontegoon_01", hash = 0xB7F2F587, outfits = 1 }, + [`u_m_m_nbxbrontesecform_01`] = { model = "u_m_m_nbxbrontesecform_01", hash = 0xE8BCA87C, outfits = 1 }, + [`u_m_m_nbxgeneralstoreowner_01`] = { model = "u_m_m_nbxgeneralstoreowner_01", hash = 0x54123716, outfits = 9 }, + [`u_m_m_nbxgraverobber_01`] = { model = "u_m_m_nbxgraverobber_01", hash = 0xFC3D1E1B, outfits = 2 }, + [`u_m_m_nbxgraverobber_02`] = { model = "u_m_m_nbxgraverobber_02", hash = 0x7C7C9EA0, outfits = 2 }, + [`u_m_m_nbxgraverobber_03`] = { model = "u_m_m_nbxgraverobber_03", hash = 0x8FBDC522, outfits = 2 }, + [`u_m_m_nbxgraverobber_04`] = { model = "u_m_m_nbxgraverobber_04", hash = 0x3DB8A119, outfits = 2 }, + [`u_m_m_nbxgraverobber_05`] = { model = "u_m_m_nbxgraverobber_05", hash = 0x33EE8D85, outfits = 2 }, + [`u_m_m_nbxgunsmith_01`] = { model = "u_m_m_nbxgunsmith_01", hash = 0x2A66EA55, outfits = 9 }, + [`u_m_m_nbxliveryworker_01`] = { model = "u_m_m_nbxliveryworker_01", hash = 0x7A53E763, outfits = 2 }, + [`u_m_m_nbxmusician_01`] = { model = "u_m_m_nbxmusician_01", hash = 0x668685E6, outfits = 2 }, + [`u_m_m_nbxpriest_01`] = { model = "u_m_m_nbxpriest_01", hash = 0xDD900EBD, outfits = 1 }, + [`u_m_m_nbxresident_01`] = { model = "u_m_m_nbxresident_01", hash = 0x6BE0A02F, outfits = 2 }, + [`u_m_m_nbxresident_02`] = { model = "u_m_m_nbxresident_02", hash = 0x4BB85FDB, outfits = 2 }, + [`u_m_m_nbxresident_03`] = { model = "u_m_m_nbxresident_03", hash = 0x597DFB66, outfits = 2 }, + [`u_m_m_nbxresident_04`] = { model = "u_m_m_nbxresident_04", hash = 0x271C96A4, outfits = 2 }, + [`u_m_m_nbxriverboatpitboss_01`] = { model = "u_m_m_nbxriverboatpitboss_01", hash = 0xE5C80F77, outfits = 2 }, + [`u_m_m_nbxriverboattarget_01`] = { model = "u_m_m_nbxriverboattarget_01", hash = 0x16B38C17, outfits = 2 }, + [`u_m_m_nbxshadydealer_01`] = { model = "u_m_m_nbxshadydealer_01", hash = 0x1B2769D0, outfits = 9 }, + [`u_m_m_nbxskiffdriver_01`] = { model = "u_m_m_nbxskiffdriver_01", hash = 0xD43AE828, outfits = 2 }, + [`u_m_m_oddfellowparticipant_01`] = { model = "u_m_m_oddfellowparticipant_01", hash = 0x42352E08, outfits = 2 }, + [`u_m_m_odriscollbrawler_01`] = { model = "u_m_m_odriscollbrawler_01", hash = 0xB6C0F55D, outfits = 3 }, + [`u_m_m_orpguard_01`] = { model = "u_m_m_orpguard_01", hash = 0xC4162DA7, outfits = 1 }, + [`u_m_m_racforeman_01`] = { model = "u_m_m_racforeman_01", hash = 0xE0448D54, outfits = 5 }, + [`u_m_m_racquartermaster_01`] = { model = "u_m_m_racquartermaster_01", hash = 0x6DE7AD0F, outfits = 2 }, + [`u_m_m_rhdbackupdeputy_01`] = { model = "u_m_m_rhdbackupdeputy_01", hash = 0x8E764EA7, outfits = 2 }, + [`u_m_m_rhdbackupdeputy_02`] = { model = "u_m_m_rhdbackupdeputy_02", hash = 0x7BABA912, outfits = 2 }, + [`u_m_m_rhdbartender_01`] = { model = "u_m_m_rhdbartender_01", hash = 0x23DA7E9F, outfits = 7 }, + [`u_m_m_rhddoctor_01`] = { model = "u_m_m_rhddoctor_01", hash = 0x2A37903E, outfits = 1 }, + [`u_m_m_rhdfiddleplayer_01`] = { model = "u_m_m_rhdfiddleplayer_01", hash = 0x3A9FCA38, outfits = 2 }, + [`u_m_m_rhdgenstoreowner_01`] = { model = "u_m_m_rhdgenstoreowner_01", hash = 0x9B9EF6B7, outfits = 9 }, + [`u_m_m_rhdgenstoreowner_02`] = { model = "u_m_m_rhdgenstoreowner_02", hash = 0x893751E8, outfits = 9 }, + [`u_m_m_rhdgunsmith_01`] = { model = "u_m_m_rhdgunsmith_01", hash = 0xADDA73CE, outfits = 9 }, + [`u_m_m_rhdpreacher_01`] = { model = "u_m_m_rhdpreacher_01", hash = 0x06B0DE6B, outfits = 1 }, + [`u_m_m_rhdsheriff_01`] = { model = "u_m_m_rhdsheriff_01", hash = 0xC76BB57A, outfits = 5 }, + [`u_m_m_rhdtrainstationworker_01`] = { model = "u_m_m_rhdtrainstationworker_01", hash = 0x3F0EC349, outfits = 5 }, + [`u_m_m_rhdundertaker_01`] = { model = "u_m_m_rhdundertaker_01", hash = 0x2158A563, outfits = 1 }, + [`u_m_m_riodonkeyrider_01`] = { model = "u_m_m_riodonkeyrider_01", hash = 0x6376F2EE, outfits = 1 }, + [`u_m_m_rkfrancher_01`] = { model = "u_m_m_rkfrancher_01", hash = 0x3B85803C, outfits = 1 }, + [`u_m_m_rkrdonkeyrider_01`] = { model = "u_m_m_rkrdonkeyrider_01", hash = 0xA558BFEF, outfits = 1 }, + [`u_m_m_rwfrancher_01`] = { model = "u_m_m_rwfrancher_01", hash = 0xA209CB2A, outfits = 1 }, + [`u_m_m_sdbankguard_01`] = { model = "u_m_m_sdbankguard_01", hash = 0x128CDD40, outfits = 4 }, + [`u_m_m_sdcustomvendor_01`] = { model = "u_m_m_sdcustomvendor_01", hash = 0x400E34A9, outfits = 9 }, + [`u_m_m_sdexoticsshopkeeper_01`] = { model = "u_m_m_sdexoticsshopkeeper_01", hash = 0xF1029EA3, outfits = 10 }, + [`u_m_m_sdphotographer_01`] = { model = "u_m_m_sdphotographer_01", hash = 0xBE9D77E1, outfits = 2 }, + [`u_m_m_sdpolicechief_01`] = { model = "u_m_m_sdpolicechief_01", hash = 0x5C99E1C2, outfits = 5 }, + [`u_m_m_sdstrongwomanassistant_01`] = { model = "u_m_m_sdstrongwomanassistant_01", hash = 0xCCB89BB7, outfits = 1 }, + [`u_m_m_sdtrapper_01`] = { model = "u_m_m_sdtrapper_01", hash = 0x23317990, outfits = 1 }, + [`u_m_m_sdwealthytraveller_01`] = { model = "u_m_m_sdwealthytraveller_01", hash = 0x3FEE3412, outfits = 5 }, + [`u_m_m_shackserialkiller_01`] = { model = "u_m_m_shackserialkiller_01", hash = 0x62AD6C6C, outfits = 1 }, + [`u_m_m_shacktwin_01`] = { model = "u_m_m_shacktwin_01", hash = 0x7D796588, outfits = 2 }, + [`u_m_m_shacktwin_02`] = { model = "u_m_m_shacktwin_02", hash = 0x7A2F5EF4, outfits = 2 }, + [`u_m_m_skinnyoldguy_01`] = { model = "u_m_m_skinnyoldguy_01", hash = 0x08534AF0, outfits = 1 }, + [`u_m_m_story_armadillo_01`] = { model = "u_m_m_story_armadillo_01", hash = 0x199B5D2F, outfits = 1 }, + [`u_m_m_story_cannibal_01`] = { model = "u_m_m_story_cannibal_01", hash = 0x019AAC14, outfits = 1 }, + [`u_m_m_story_chelonian_01`] = { model = "u_m_m_story_chelonian_01", hash = 0xA8FDA7E1, outfits = 1 }, + [`u_m_m_story_copperhead_01`] = { model = "u_m_m_story_copperhead_01", hash = 0x2E663310, outfits = 1 }, + [`u_m_m_story_creeper_01`] = { model = "u_m_m_story_creeper_01", hash = 0x4FFBC75C, outfits = 1 }, + [`u_m_m_story_emeraldranch_01`] = { model = "u_m_m_story_emeraldranch_01", hash = 0x7E80C06D, outfits = 1 }, + [`u_m_m_story_hunter_01`] = { model = "u_m_m_story_hunter_01", hash = 0x65B3401E, outfits = 1 }, + [`u_m_m_story_manzanita_01`] = { model = "u_m_m_story_manzanita_01", hash = 0x82D7E004, outfits = 2 }, + [`u_m_m_story_murfee_01`] = { model = "u_m_m_story_murfee_01", hash = 0x474080E1, outfits = 1 }, + [`u_m_m_story_pigfarm_01`] = { model = "u_m_m_story_pigfarm_01", hash = 0xD6CDC88D, outfits = 1 }, + [`u_m_m_story_princess_01`] = { model = "u_m_m_story_princess_01", hash = 0x42F42CBF, outfits = 1 }, + [`u_m_m_story_redharlow_01`] = { model = "u_m_m_story_redharlow_01", hash = 0x82212B0D, outfits = 1 }, + [`u_m_m_story_rhodes_01`] = { model = "u_m_m_story_rhodes_01", hash = 0xEDDB93E8, outfits = 1 }, + [`u_m_m_story_sdstatue_01`] = { model = "u_m_m_story_sdstatue_01", hash = 0xCFA8C361, outfits = 1 }, + [`u_m_m_story_spectre_01`] = { model = "u_m_m_story_spectre_01", hash = 0x0CF1DA06, outfits = 1 }, + [`u_m_m_story_treasure_01`] = { model = "u_m_m_story_treasure_01", hash = 0x54A21893, outfits = 1 }, + [`u_m_m_story_tumbleweed_01`] = { model = "u_m_m_story_tumbleweed_01", hash = 0x628EBD88, outfits = 1 }, + [`u_m_m_story_valentine_01`] = { model = "u_m_m_story_valentine_01", hash = 0x565FF75B, outfits = 1 }, + [`u_m_m_strfreightstationowner_01`] = { model = "u_m_m_strfreightstationowner_01", hash = 0x1173F849, outfits = 5 }, + [`u_m_m_strgenstoreowner_01`] = { model = "u_m_m_strgenstoreowner_01", hash = 0x104FE6B3, outfits = 9 }, + [`u_m_m_strsherriff_01`] = { model = "u_m_m_strsherriff_01", hash = 0x77EEF186, outfits = 5 }, + [`u_m_m_strwelcomecenter_01`] = { model = "u_m_m_strwelcomecenter_01", hash = 0x4128755F, outfits = 9 }, + [`u_m_m_tumbartender_01`] = { model = "u_m_m_tumbartender_01", hash = 0xD31B229F, outfits = 7 }, + [`u_m_m_tumbutcher_01`] = { model = "u_m_m_tumbutcher_01", hash = 0x9168B88B, outfits = 9 }, + [`u_m_m_tumgunsmith_01`] = { model = "u_m_m_tumgunsmith_01", hash = 0x79FB001C, outfits = 9 }, + [`u_m_m_tumtrainstationworker_01`] = { model = "u_m_m_tumtrainstationworker_01", hash = 0x6712F25D, outfits = 1 }, + [`u_m_m_unibountyhunter_01`] = { model = "u_m_m_unibountyhunter_01", hash = 0x7A5AC236, outfits = 1 }, + [`u_m_m_unibountyhunter_02`] = { model = "u_m_m_unibountyhunter_02", hash = 0xB0962EB0, outfits = 1 }, + [`u_m_m_unidusterhenchman_01`] = { model = "u_m_m_unidusterhenchman_01", hash = 0x0EBB9BCE, outfits = 2 }, + [`u_m_m_unidusterhenchman_02`] = { model = "u_m_m_unidusterhenchman_02", hash = 0xE302445C, outfits = 2 }, + [`u_m_m_unidusterhenchman_03`] = { model = "u_m_m_unidusterhenchman_03", hash = 0xD1B321BE, outfits = 2 }, + [`u_m_m_unidusterleader_01`] = { model = "u_m_m_unidusterleader_01", hash = 0x3C9E3212, outfits = 2 }, + [`u_m_m_uniexconfedsbounty_01`] = { model = "u_m_m_uniexconfedsbounty_01", hash = 0x1BC9C8FC, outfits = 2 }, + [`u_m_m_unionleader_01`] = { model = "u_m_m_unionleader_01", hash = 0x5FC8B319, outfits = 2 }, + [`u_m_m_unionleader_02`] = { model = "u_m_m_unionleader_02", hash = 0x6D1BCDBF, outfits = 2 }, + [`u_m_m_unipeepingtom_01`] = { model = "u_m_m_unipeepingtom_01", hash = 0x5E1148BF, outfits = 2 }, + [`u_m_m_valauctionforman_01`] = { model = "u_m_m_valauctionforman_01", hash = 0x075398B9, outfits = 7 }, + [`u_m_m_valauctionforman_02`] = { model = "u_m_m_valauctionforman_02", hash = 0x4EDB27C7, outfits = 6 }, + [`u_m_m_valbarber_01`] = { model = "u_m_m_valbarber_01", hash = 0xD371AE64, outfits = 9 }, + [`u_m_m_valbartender_01`] = { model = "u_m_m_valbartender_01", hash = 0xB733CF0F, outfits = 9 }, + [`u_m_m_valbeartrap_01`] = { model = "u_m_m_valbeartrap_01", hash = 0x69019A68, outfits = 5 }, + [`u_m_m_valbutcher_01`] = { model = "u_m_m_valbutcher_01", hash = 0x23E0698B, outfits = 9 }, + [`u_m_m_valdoctor_01`] = { model = "u_m_m_valdoctor_01", hash = 0x71545DA5, outfits = 9 }, + [`u_m_m_valgenstoreowner_01`] = { model = "u_m_m_valgenstoreowner_01", hash = 0x9B3E551B, outfits = 9 }, + [`u_m_m_valgunsmith_01`] = { model = "u_m_m_valgunsmith_01", hash = 0xBBC5D27F, outfits = 9 }, + [`u_m_m_valhotelowner_01`] = { model = "u_m_m_valhotelowner_01", hash = 0xB66F12F2, outfits = 9 }, + [`u_m_m_valpokerplayer_01`] = { model = "u_m_m_valpokerplayer_01", hash = 0xD6B24482, outfits = 5 }, + [`u_m_m_valpokerplayer_02`] = { model = "u_m_m_valpokerplayer_02", hash = 0x03969E2E, outfits = 5 }, + [`u_m_m_valpoopingman_01`] = { model = "u_m_m_valpoopingman_01", hash = 0x16681434, outfits = 4 }, + [`u_m_m_valsheriff_01`] = { model = "u_m_m_valsheriff_01", hash = 0x93B09465, outfits = 5 }, + [`u_m_m_valtheman_01`] = { model = "u_m_m_valtheman_01", hash = 0xD0D41B25, outfits = 9 }, + [`u_m_m_valtownfolk_01`] = { model = "u_m_m_valtownfolk_01", hash = 0xC4CC5EE6, outfits = 4 }, + [`u_m_m_valtownfolk_02`] = { model = "u_m_m_valtownfolk_02", hash = 0xA5F92140, outfits = 4 }, + [`u_m_m_vhtstationclerk_01`] = { model = "u_m_m_vhtstationclerk_01", hash = 0xC606A445, outfits = 9 }, + [`u_m_m_walgeneralstoreowner_01`] = { model = "u_m_m_walgeneralstoreowner_01", hash = 0x42DD47BF, outfits = 5 }, + [`u_m_m_wapofficial_01`] = { model = "u_m_m_wapofficial_01", hash = 0x5EDC8972, outfits = 2 }, + [`u_m_m_wtccowboy_04`] = { model = "u_m_m_wtccowboy_04", hash = 0xDF9051C0, outfits = 2 }, + [`u_m_o_armbartender_01`] = { model = "u_m_o_armbartender_01", hash = 0xDD6D1B34, outfits = 9 }, + [`u_m_o_asbsheriff_01`] = { model = "u_m_o_asbsheriff_01", hash = 0x1CEF1945, outfits = 5 }, + [`u_m_o_bht_docwormwood`] = { model = "u_m_o_bht_docwormwood", hash = 0xA0325B4E, outfits = 2 }, + [`u_m_o_blwbartender_01`] = { model = "u_m_o_blwbartender_01", hash = 0x8E81C857, outfits = 9 }, + [`u_m_o_blwgeneralstoreowner_01`] = { model = "u_m_o_blwgeneralstoreowner_01", hash = 0x6958B082, outfits = 9 }, + [`u_m_o_blwphotographer_01`] = { model = "u_m_o_blwphotographer_01", hash = 0x3B99237E, outfits = 9 }, + [`u_m_o_blwpolicechief_01`] = { model = "u_m_o_blwpolicechief_01", hash = 0x67FB6A21, outfits = 7 }, + [`u_m_o_cajhomestead_01`] = { model = "u_m_o_cajhomestead_01", hash = 0x10E06765, outfits = 1 }, + [`u_m_o_cmrcivilwarcommando_01`] = { model = "u_m_o_cmrcivilwarcommando_01", hash = 0xECA3D50D, outfits = 2 }, + [`u_m_o_mapwiseoldman_01`] = { model = "u_m_o_mapwiseoldman_01", hash = 0xDE86823E, outfits = 5 }, + [`u_m_o_oldcajun_01`] = { model = "u_m_o_oldcajun_01", hash = 0xAFFEF16E, outfits = 1 }, + [`u_m_o_pshrancher_01`] = { model = "u_m_o_pshrancher_01", hash = 0xDD1C10E8, outfits = 5 }, + [`u_m_o_rigtrainstationworker_01`] = { model = "u_m_o_rigtrainstationworker_01", hash = 0xABC22ABF, outfits = 5 }, + [`u_m_o_valbartender_01`] = { model = "u_m_o_valbartender_01", hash = 0x904CC489, outfits = 8 }, + [`u_m_o_vhtexoticshopkeeper_01`] = { model = "u_m_o_vhtexoticshopkeeper_01", hash = 0xCE72526E, outfits = 9 }, + [`u_m_y_cajhomestead_01`] = { model = "u_m_y_cajhomestead_01", hash = 0x1B8FD0E7, outfits = 1 }, + [`u_m_y_czphomesteadson_01`] = { model = "u_m_y_czphomesteadson_01", hash = 0x1B6F073A, outfits = 1 }, + [`u_m_y_czphomesteadson_02`] = { model = "u_m_y_czphomesteadson_02", hash = 0x0530DABA, outfits = 1 }, + [`u_m_y_czphomesteadson_03`] = { model = "u_m_y_czphomesteadson_03", hash = 0xAE09AC6D, outfits = 1 }, + [`u_m_y_czphomesteadson_04`] = { model = "u_m_y_czphomesteadson_04", hash = 0x9992837F, outfits = 1 }, + [`u_m_y_czphomesteadson_05`] = { model = "u_m_y_czphomesteadson_05", hash = 0xD23774C8, outfits = 1 }, + [`u_m_y_duellistbounty_01`] = { model = "u_m_y_duellistbounty_01", hash = 0x4152ADFB, outfits = 2 }, + [`u_m_y_emrson_01`] = { model = "u_m_y_emrson_01", hash = 0x559BD1B7, outfits = 4 }, + [`u_m_y_htlworker_01`] = { model = "u_m_y_htlworker_01", hash = 0xB60F7B1B, outfits = 5 }, + [`u_m_y_htlworker_02`] = { model = "u_m_y_htlworker_02", hash = 0xC8661FCC, outfits = 5 }, + [`u_m_y_shackstarvingkid_01`] = { model = "u_m_y_shackstarvingkid_01", hash = 0xBC5CFF49, outfits = 3 }, + [`cs_mp_agent_hixon`] = { model = "cs_mp_agent_hixon", hash = 0x5087BED1, outfits = 2 }, + [`cs_mp_dannylee`] = { model = "cs_mp_dannylee", hash = 0x81C2FD57, outfits = 2 }, + [`cs_mp_gus_macmillan`] = { model = "cs_mp_gus_macmillan", hash = 0x024BE4BE, outfits = 2 }, + [`cs_mp_harriet_davenport`] = { model = "cs_mp_harriet_davenport", hash = 0x9BD92566, outfits = 1 }, + [`cs_mp_lem`] = { model = "cs_mp_lem", hash = 0x048FCA26, outfits = 3 }, + [`cs_mp_maggie`] = { model = "cs_mp_maggie", hash = 0xF0DA3AE5, outfits = 2 }, + [`cs_mp_seth`] = { model = "cs_mp_seth", hash = 0x7666911B, outfits = 1 }, + [`cs_mp_the_boy`] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [`mp_a_c_alligator_01`] = { model = "mp_a_c_alligator_01", hash = 0x2830CF33, outfits = 4 }, + [`mp_a_c_beaver_01`] = { model = "mp_a_c_beaver_01", hash = 0xBB746741, outfits = 3 }, + [`mp_a_c_boar_01`] = { model = "mp_a_c_boar_01", hash = 0xE8CBC01C, outfits = 5 }, + [`mp_a_c_cougar_01`] = { model = "mp_a_c_cougar_01", hash = 0xAA89BB8D, outfits = 4 }, + [`mp_a_c_coyote_01`] = { model = "mp_a_c_coyote_01", hash = 0xB20D360D, outfits = 4 }, + [`mp_a_c_panther_01`] = { model = "mp_a_c_panther_01", hash = 0xB91BAB89, outfits = 4 }, + [`mp_a_c_wolf_01`] = { model = "mp_a_c_wolf_01", hash = 0xAD02460F, outfits = 5 }, + [`mp_a_f_m_saloonpatrons_01`] = { model = "mp_a_f_m_saloonpatrons_01", hash = 0x2DA2EA3B, outfits = 20 }, + [`mp_a_f_m_saloonpatrons_02`] = { model = "mp_a_f_m_saloonpatrons_02", hash = 0x51323159, outfits = 22 }, + [`mp_a_f_m_saloonpatrons_03`] = { model = "mp_a_f_m_saloonpatrons_03", hash = 0x6336D562, outfits = 20 }, + [`mp_a_f_m_saloonpatrons_04`] = { model = "mp_a_f_m_saloonpatrons_04", hash = 0x715D71AF, outfits = 20 }, + [`mp_a_f_m_saloonpatrons_05`] = { model = "mp_a_f_m_saloonpatrons_05", hash = 0x83181528, outfits = 20 }, + [`mp_a_m_m_moonshinemakers_01`] = { model = "mp_a_m_m_moonshinemakers_01", hash = 0x80451592, outfits = 30 }, + [`mp_a_m_m_saloonpatrons_01`] = { model = "mp_a_m_m_saloonpatrons_01", hash = 0x9A2437B7, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_02`] = { model = "mp_a_m_m_saloonpatrons_02", hash = 0x51AB26BE, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_03`] = { model = "mp_a_m_m_saloonpatrons_03", hash = 0x40E58533, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_04`] = { model = "mp_a_m_m_saloonpatrons_04", hash = 0x7610EF89, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_05`] = { model = "mp_a_m_m_saloonpatrons_05", hash = 0x63D64B14, outfits = 35 }, + [`mp_g_m_m_animalpoachers_01`] = { model = "mp_g_m_m_animalpoachers_01", hash = 0xBAD963AE, outfits = 71 }, + [`mp_g_m_m_unicriminals_03`] = { model = "mp_g_m_m_unicriminals_03", hash = 0xF2C429A7, outfits = 55 }, + [`mp_g_m_m_unicriminals_04`] = { model = "mp_g_m_m_unicriminals_04", hash = 0x44AA4D72, outfits = 55 }, + [`mp_g_m_m_unicriminals_05`] = { model = "mp_g_m_m_unicriminals_05", hash = 0x5736728A, outfits = 55 }, + [`mp_g_m_m_unicriminals_06`] = { model = "mp_g_m_m_unicriminals_06", hash = 0x2928966F, outfits = 50 }, + [`mp_g_m_m_unicriminals_07`] = { model = "mp_g_m_m_unicriminals_07", hash = 0x3D89BF31, outfits = 55 }, + [`mp_g_m_m_unicriminals_08`] = { model = "mp_g_m_m_unicriminals_08", hash = 0x8F336283, outfits = 50 }, + [`mp_g_m_m_unicriminals_09`] = { model = "mp_g_m_m_unicriminals_09", hash = 0x5E058028, outfits = 50 }, + [`mp_re_moonshinecamp_males_01`] = { model = "mp_re_moonshinecamp_males_01", hash = 0xD3754E47, outfits = 10 }, + [`mp_s_m_m_revenueagents_01`] = { model = "mp_s_m_m_revenueagents_01", hash = 0xD0AC86C4, outfits = 49 }, + [`mp_u_f_m_buyer_improved_01`] = { model = "mp_u_f_m_buyer_improved_01", hash = 0xA7E717F4, outfits = 1 }, + [`mp_u_f_m_buyer_improved_02`] = { model = "mp_u_f_m_buyer_improved_02", hash = 0xB7FC381E, outfits = 1 }, + [`mp_u_f_m_buyer_regular_01`] = { model = "mp_u_f_m_buyer_regular_01", hash = 0x8AB3310A, outfits = 1 }, + [`mp_u_f_m_buyer_regular_02`] = { model = "mp_u_f_m_buyer_regular_02", hash = 0xE065DC6E, outfits = 1 }, + [`mp_u_f_m_buyer_special_01`] = { model = "mp_u_f_m_buyer_special_01", hash = 0x5DDFB326, outfits = 1 }, + [`mp_u_f_m_buyer_special_02`] = { model = "mp_u_f_m_buyer_special_02", hash = 0x53A19EAA, outfits = 1 }, + [`mp_u_m_m_buyer_default_01`] = { model = "mp_u_m_m_buyer_default_01", hash = 0x32ED72B1, outfits = 1 }, + [`mp_u_m_m_buyer_improved_01`] = { model = "mp_u_m_m_buyer_improved_01", hash = 0x60F676A5, outfits = 1 }, + [`mp_u_m_m_buyer_improved_02`] = { model = "mp_u_m_m_buyer_improved_02", hash = 0xE7BD8435, outfits = 1 }, + [`mp_u_m_m_buyer_improved_03`] = { model = "mp_u_m_m_buyer_improved_03", hash = 0x0380BBBB, outfits = 1 }, + [`mp_u_m_m_buyer_improved_04`] = { model = "mp_u_m_m_buyer_improved_04", hash = 0x9767E38B, outfits = 1 }, + [`mp_u_m_m_buyer_improved_05`] = { model = "mp_u_m_m_buyer_improved_05", hash = 0x6929070E, outfits = 1 }, + [`mp_u_m_m_buyer_improved_06`] = { model = "mp_u_m_m_buyer_improved_06", hash = 0x3AC5AA44, outfits = 1 }, + [`mp_u_m_m_buyer_improved_07`] = { model = "mp_u_m_m_buyer_improved_07", hash = 0x8A9AC9F1, outfits = 1 }, + [`mp_u_m_m_buyer_improved_08`] = { model = "mp_u_m_m_buyer_improved_08", hash = 0x75CFA027, outfits = 1 }, + [`mp_u_m_m_buyer_regular_01`] = { model = "mp_u_m_m_buyer_regular_01", hash = 0x1DBD9378, outfits = 1 }, + [`mp_u_m_m_buyer_regular_02`] = { model = "mp_u_m_m_buyer_regular_02", hash = 0x2FEC37D5, outfits = 1 }, + [`mp_u_m_m_buyer_regular_03`] = { model = "mp_u_m_m_buyer_regular_03", hash = 0x41235A43, outfits = 1 }, + [`mp_u_m_m_buyer_regular_04`] = { model = "mp_u_m_m_buyer_regular_04", hash = 0x5358FEAE, outfits = 1 }, + [`mp_u_m_m_buyer_regular_05`] = { model = "mp_u_m_m_buyer_regular_05", hash = 0x41125A1D, outfits = 1 }, + [`mp_u_m_m_buyer_regular_06`] = { model = "mp_u_m_m_buyer_regular_06", hash = 0x5373FEE0, outfits = 1 }, + [`mp_u_m_m_buyer_regular_07`] = { model = "mp_u_m_m_buyer_regular_07", hash = 0xE6BB2570, outfits = 1 }, + [`mp_u_m_m_buyer_regular_08`] = { model = "mp_u_m_m_buyer_regular_08", hash = 0xF8F549E4, outfits = 1 }, + [`mp_u_m_m_buyer_special_01`] = { model = "mp_u_m_m_buyer_special_01", hash = 0x31227E9C, outfits = 1 }, + [`mp_u_m_m_buyer_special_02`] = { model = "mp_u_m_m_buyer_special_02", hash = 0xFED89A09, outfits = 1 }, + [`mp_u_m_m_buyer_special_03`] = { model = "mp_u_m_m_buyer_special_03", hash = 0x0DF73846, outfits = 1 }, + [`mp_u_m_m_buyer_special_04`] = { model = "mp_u_m_m_buyer_special_04", hash = 0xE479E544, outfits = 1 }, + [`mp_u_m_m_buyer_special_05`] = { model = "mp_u_m_m_buyer_special_05", hash = 0xB23B00C7, outfits = 1 }, + [`mp_u_m_m_buyer_special_06`] = { model = "mp_u_m_m_buyer_special_06", hash = 0xC8052C5B, outfits = 1 }, + [`mp_u_m_m_buyer_special_07`] = { model = "mp_u_m_m_buyer_special_07", hash = 0xB6FF8A54, outfits = 1 }, + [`mp_u_m_m_buyer_special_08`] = { model = "mp_u_m_m_buyer_special_08", hash = 0xCDCAB7EA, outfits = 1 }, + [`mp_u_m_m_lawcamp_prisoner_01`] = { model = "mp_u_m_m_lawcamp_prisoner_01", hash = 0x54B1C872, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_01`] = { model = "mp_u_m_m_saloonbrawler_01", hash = 0x60C69F07, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_02`] = { model = "mp_u_m_m_saloonbrawler_02", hash = 0xC45F6627, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_03`] = { model = "mp_u_m_m_saloonbrawler_03", hash = 0x928C8282, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_04`] = { model = "mp_u_m_m_saloonbrawler_04", hash = 0xED9F38AE, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_05`] = { model = "mp_u_m_m_saloonbrawler_05", hash = 0xB427C5B8, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_06`] = { model = "mp_u_m_m_saloonbrawler_06", hash = 0x5B9D94A5, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_07`] = { model = "mp_u_m_m_saloonbrawler_07", hash = 0x6B3733D8, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_08`] = { model = "mp_u_m_m_saloonbrawler_08", hash = 0xA8FBAF60, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_09`] = { model = "mp_u_m_m_saloonbrawler_09", hash = 0x76BDCAE5, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_10`] = { model = "mp_u_m_m_saloonbrawler_10", hash = 0x1150FEA9, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_11`] = { model = "mp_u_m_m_saloonbrawler_11", hash = 0xE29AA13D, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_12`] = { model = "mp_u_m_m_saloonbrawler_12", hash = 0x2DAFB766, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_13`] = { model = "mp_u_m_m_saloonbrawler_13", hash = 0xFFDC5BC0, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_14`] = { model = "mp_u_m_m_saloonbrawler_14", hash = 0x96390873, outfits = 1 }, + [`mp_a_c_bear_01`] = { model = "mp_a_c_bear_01", hash = 0xDF251C39, outfits = 4 }, + [`mp_a_c_bighornram_01`] = { model = "mp_a_c_bighornram_01", hash = 0xE1884260, outfits = 5 }, + [`mp_a_c_buck_01`] = { model = "mp_a_c_buck_01", hash = 0x9770DD23, outfits = 6 }, + [`mp_a_c_buffalo_01`] = { model = "mp_a_c_buffalo_01", hash = 0xC971C4C6, outfits = 4 }, + [`mp_a_c_dogamericanfoxhound_01`] = { model = "mp_a_c_dogamericanfoxhound_01", hash = 0xBFDC1D2A, outfits = 2 }, + [`mp_a_c_elk_01`] = { model = "mp_a_c_elk_01", hash = 0xD1641E60, outfits = 4 }, + [`mp_a_c_fox_01`] = { model = "mp_a_c_fox_01", hash = 0xDECA9205, outfits = 4 }, + [`mp_a_c_moose_01`] = { model = "mp_a_c_moose_01", hash = 0xF8FC8F63, outfits = 4 }, + [`mp_a_c_owl_01`] = { model = "mp_a_c_owl_01", hash = 0x24C5B680, outfits = 1 }, + [`mp_a_c_possum_01`] = { model = "mp_a_c_possum_01", hash = 0xDECED2FD, outfits = 1 }, + [`mp_a_c_pronghorn_01`] = { model = "mp_a_c_pronghorn_01", hash = 0xFE40DC76, outfits = 1 }, + [`mp_a_c_rabbit_01`] = { model = "mp_a_c_rabbit_01", hash = 0xF4EA3B49, outfits = 1 }, + [`mp_a_c_sheep_01`] = { model = "mp_a_c_sheep_01", hash = 0x9A61FCB8, outfits = 1 }, + [`mp_a_f_m_saloonband_females_01`] = { model = "mp_a_f_m_saloonband_females_01", hash = 0x3B7BD8D3, outfits = 5 }, + [`mp_u_m_m_animalpoacher_01`] = { model = "mp_u_m_m_animalpoacher_01", hash = 0xF00A64EC, outfits = 1 }, + [`mp_u_m_m_animalpoacher_02`] = { model = "mp_u_m_m_animalpoacher_02", hash = 0xE1D74886, outfits = 1 }, + [`mp_u_m_m_animalpoacher_03`] = { model = "mp_u_m_m_animalpoacher_03", hash = 0x92552983, outfits = 1 }, + [`mp_u_m_m_animalpoacher_04`] = { model = "mp_u_m_m_animalpoacher_04", hash = 0x84298D2C, outfits = 1 }, + [`mp_u_m_m_animalpoacher_05`] = { model = "mp_u_m_m_animalpoacher_05", hash = 0xA6F2D2BE, outfits = 2 }, + [`mp_u_m_m_animalpoacher_06`] = { model = "mp_u_m_m_animalpoacher_06", hash = 0x5895B605, outfits = 1 }, + [`mp_u_m_m_animalpoacher_07`] = { model = "mp_u_m_m_animalpoacher_07", hash = 0x3DA8002A, outfits = 1 }, + [`mp_u_m_m_animalpoacher_08`] = { model = "mp_u_m_m_animalpoacher_08", hash = 0x7001E4DD, outfits = 1 }, + [`mp_u_m_m_animalpoacher_09`] = { model = "mp_u_m_m_animalpoacher_09", hash = 0x624BC971, outfits = 1 }, + [`mp_g_f_m_armyoffear_01`] = { model = "mp_g_f_m_armyoffear_01", hash = 0xB25E4617, outfits = 20 }, + [`mp_g_m_m_armyoffear_01`] = { model = "mp_g_m_m_armyoffear_01", hash = 0x19382FFC, outfits = 30 }, + [`cs_mp_bessie_adair`] = { model = "cs_mp_bessie_adair", hash = 0x9A755448, outfits = 1 }, + [`mp_a_c_chicken_01`] = { model = "mp_a_c_chicken_01", hash = 0x29465719, outfits = 2 }, + [`mp_a_c_deer_01`] = { model = "mp_a_c_deer_01", hash = 0x2EA769DD, outfits = 1 }, + [`mp_a_m_m_saloonband_males_01`] = { model = "mp_a_m_m_saloonband_males_01", hash = 0xBAFD3C1A, outfits = 20 }, + [`mp_re_slumpedhunter_females_01`] = { model = "mp_re_slumpedhunter_females_01", hash = 0x482F6E79, outfits = 4 }, + [`mp_re_slumpedhunter_males_01`] = { model = "mp_re_slumpedhunter_males_01", hash = 0x48F23D48, outfits = 6 }, + [`mp_re_suspendedhunter_males_01`] = { model = "mp_re_suspendedhunter_males_01", hash = 0xD2D2D2D4, outfits = 2 }, + [`mp_u_f_m_nat_traveler_01`] = { model = "mp_u_f_m_nat_traveler_01", hash = 0xEE7487F0, outfits = 1 }, + [`mp_u_f_m_nat_worker_01`] = { model = "mp_u_f_m_nat_worker_01", hash = 0x71E6D0A6, outfits = 1 }, + [`mp_u_f_m_nat_worker_02`] = { model = "mp_u_f_m_nat_worker_02", hash = 0xA48BB5F3, outfits = 1 }, + [`mp_u_f_m_saloonpianist_01`] = { model = "mp_u_f_m_saloonpianist_01", hash = 0x846A2728, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_01`] = { model = "mp_u_m_m_dyingpoacher_01", hash = 0xCF9DD811, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_02`] = { model = "mp_u_m_m_dyingpoacher_02", hash = 0xDF5BF78D, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_03`] = { model = "mp_u_m_m_dyingpoacher_03", hash = 0x6C51917A, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_04`] = { model = "mp_u_m_m_dyingpoacher_04", hash = 0x89F8CCC8, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_05`] = { model = "mp_u_m_m_dyingpoacher_05", hash = 0x9AB66E43, outfits = 1 }, + [`mp_u_m_m_lawcamp_lawman_01`] = { model = "mp_u_m_m_lawcamp_lawman_01", hash = 0x0B979763, outfits = 1 }, + [`mp_u_m_m_lawcamp_lawman_02`] = { model = "mp_u_m_m_lawcamp_lawman_02", hash = 0xF9A5F380, outfits = 1 }, + [`mp_u_m_m_lawcamp_leadofficer_01`] = { model = "mp_u_m_m_lawcamp_leadofficer_01", hash = 0x7B379BDB, outfits = 1 }, + [`mp_u_m_m_nat_farmer_01`] = { model = "mp_u_m_m_nat_farmer_01", hash = 0x58E9D4F4, outfits = 1 }, + [`mp_u_m_m_nat_farmer_02`] = { model = "mp_u_m_m_nat_farmer_02", hash = 0xDB15D94E, outfits = 1 }, + [`mp_u_m_m_nat_farmer_03`] = { model = "mp_u_m_m_nat_farmer_03", hash = 0x0D3CBD9B, outfits = 1 }, + [`mp_u_m_m_nat_farmer_04`] = { model = "mp_u_m_m_nat_farmer_04", hash = 0xEFDC82DB, outfits = 1 }, + [`mp_u_m_m_nat_photographer_01`] = { model = "mp_u_m_m_nat_photographer_01", hash = 0x2CDF85F7, outfits = 1 }, + [`mp_u_m_m_nat_photographer_02`] = { model = "mp_u_m_m_nat_photographer_02", hash = 0x3E92A95D, outfits = 1 }, + [`mp_u_m_m_nat_rancher_01`] = { model = "mp_u_m_m_nat_rancher_01", hash = 0x2BE8BC9C, outfits = 1 }, + [`mp_u_m_m_nat_rancher_02`] = { model = "mp_u_m_m_nat_rancher_02", hash = 0x7AA6DA17, outfits = 1 }, + [`mp_u_m_m_nat_townfolk_01`] = { model = "mp_u_m_m_nat_townfolk_01", hash = 0x02A89468, outfits = 1 }, + [`mp_u_m_m_strwelcomecenter_02`] = { model = "mp_u_m_m_strwelcomecenter_02", hash = 0xB9629EFC, outfits = 1 }, + [`MP_BEAU_BINK_FEMALES_01`] = { model = "MP_BEAU_BINK_FEMALES_01", hash = 0xC161E8A4, outfits = 1 }, + [`MP_BEAU_BINK_MALES_01`] = { model = "MP_BEAU_BINK_MALES_01", hash = 0xEDF51277, outfits = 7 }, + [`MP_CARMELA_BINK_VICTIM_MALES_01`] = { model = "MP_CARMELA_BINK_VICTIM_MALES_01", hash = 0x9ACE7910, outfits = 5 }, + [`MP_CD_REVENGEMAYOR_01`] = { model = "MP_CD_REVENGEMAYOR_01", hash = 0x878040F4, outfits = 21 }, + [`mp_fm_bounty_caged_males_01`] = { model = "mp_fm_bounty_caged_males_01", hash = 0xF7831C85, outfits = 2 }, + [`mp_fm_bounty_ct_corpses_01`] = { model = "mp_fm_bounty_ct_corpses_01", hash = 0x3F85E344, outfits = 2 }, + [`mp_fm_bounty_hideout_males_01`] = { model = "mp_fm_bounty_hideout_males_01", hash = 0x85885C97, outfits = 1 }, + [`mp_fm_bounty_horde_males_01`] = { model = "mp_fm_bounty_horde_males_01", hash = 0x696D66E4, outfits = 5 }, + [`mp_fm_bounty_infiltration_males_01`] = { model = "mp_fm_bounty_infiltration_males_01", hash = 0x813F5ED3, outfits = 2 }, + [`MP_FM_BOUNTYTARGET_MALES_DLC008_01`] = { model = "MP_FM_BOUNTYTARGET_MALES_DLC008_01", hash = 0xF6458169, outfits = 53 }, + [`mp_fm_knownbounty_guards_01`] = { model = "mp_fm_knownbounty_guards_01", hash = 0xC1FD6394, outfits = 1 }, + [`MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01`] = { model = "MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", hash = 0xD9162F29, outfits = 1 }, + [`mp_fm_knownbounty_informants_males_01`] = { model = "mp_fm_knownbounty_informants_males_01", hash = 0xA97E2D65, outfits = 7 }, + [`mp_fm_multitrack_victims_males_01`] = { model = "mp_fm_multitrack_victims_males_01", hash = 0x32C42256, outfits = 2 }, + [`mp_fm_stakeout_corpses_males_01`] = { model = "mp_fm_stakeout_corpses_males_01", hash = 0x4957CFEF, outfits = 2 }, + [`mp_fm_stakeout_poker_males_01`] = { model = "mp_fm_stakeout_poker_males_01", hash = 0x24497ABF, outfits = 2 }, + [`mp_fm_stakeout_target_males_01`] = { model = "mp_fm_stakeout_target_males_01", hash = 0xA5F85792, outfits = 6 }, + [`mp_fm_track_prospector_01`] = { model = "mp_fm_track_prospector_01", hash = 0x1E14106E, outfits = 1 }, + [`mp_fm_track_sd_lawman_01`] = { model = "mp_fm_track_sd_lawman_01", hash = 0xC8A1EC4C, outfits = 1 }, + [`mp_fm_track_targets_males_01`] = { model = "mp_fm_track_targets_males_01", hash = 0xAA6CE21D, outfits = 3 }, + [`MP_G_F_M_CULTGUARDS_01`] = { model = "MP_G_F_M_CULTGUARDS_01", hash = 0x83CA7BB6, outfits = 16 }, + [`mp_g_f_m_cultmembers_01`] = { model = "mp_g_f_m_cultmembers_01", hash = 0xC882A3EE, outfits = 13 }, + [`MP_G_M_M_CULTGUARDS_01`] = { model = "MP_G_M_M_CULTGUARDS_01", hash = 0xD0DFAE8C, outfits = 27 }, + [`mp_g_m_m_cultmembers_01`] = { model = "mp_g_m_m_cultmembers_01", hash = 0xAE40CCCC, outfits = 22 }, + [`MP_G_M_M_MERCS_01`] = { model = "MP_G_M_M_MERCS_01", hash = 0x7F1377B7, outfits = 2 }, + [`MP_G_M_M_RIFLECRONIES_01`] = { model = "MP_G_M_M_RIFLECRONIES_01", hash = 0xE733264E, outfits = 6 }, + [`MP_LBM_CARMELA_BANDITOS_01`] = { model = "MP_LBM_CARMELA_BANDITOS_01", hash = 0x9C1EBED9, outfits = 4 }, + [`MP_LM_STEALHORSE_BUYERS_01`] = { model = "MP_LM_STEALHORSE_BUYERS_01", hash = 0x96CEA293, outfits = 3 }, + [`MP_U_F_M_CULTPRIEST_01`] = { model = "MP_U_F_M_CULTPRIEST_01", hash = 0x8C5F7BCC, outfits = 1 }, + [`MP_U_F_M_LEGENDARYBOUNTY_03`] = { model = "MP_U_F_M_LEGENDARYBOUNTY_03", hash = 0x5A5EA2DF, outfits = 5 }, + [`MP_U_M_M_BANKPRISONER_01`] = { model = "MP_U_M_M_BANKPRISONER_01", hash = 0xF99F0909, outfits = 1 }, + [`MP_U_M_M_BINKMERCS_01`] = { model = "MP_U_M_M_BINKMERCS_01", hash = 0xA8BEA305, outfits = 7 }, + [`MP_U_M_M_CULTPRIEST_01`] = { model = "MP_U_M_M_CULTPRIEST_01", hash = 0xBF0B11F0, outfits = 3 }, + [`MP_U_M_M_DROPOFF_JOSIAH_01`] = { model = "MP_U_M_M_DROPOFF_JOSIAH_01", hash = 0xBA59A221, outfits = 1 }, + [`MP_U_M_M_LEGENDARYBOUNTY_08`] = { model = "MP_U_M_M_LEGENDARYBOUNTY_08", hash = 0x9A9164E1, outfits = 3 }, + [`MP_U_M_M_LEGENDARYBOUNTY_09`] = { model = "MP_U_M_M_LEGENDARYBOUNTY_09", hash = 0x872A3E13, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_01`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_01", hash = 0x11952F60, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_02`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_02", hash = 0xFFE38BFD, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_03`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03", hash = 0x2D22E67B, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_03B`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03B", hash = 0x76D0DAE4, outfits = 1 }, + [`MP_U_M_M_LOM_TRAIN_CONDUCTOR_01`] = { model = "MP_U_M_M_LOM_TRAIN_CONDUCTOR_01", hash = 0x0329C664, outfits = 1 }, + [`MP_U_M_M_OUTLAW_COACHDRIVER_01`] = { model = "MP_U_M_M_OUTLAW_COACHDRIVER_01", hash = 0x059D1627, outfits = 1 }, + [`MP_U_M_M_FOS_DOCKWORKER_01`] = { model = "MP_U_M_M_FOS_DOCKWORKER_01", hash = 0x08258837, outfits = 1 }, + [`MP_U_M_M_DROPOFF_BRONTE_01`] = { model = "MP_U_M_M_DROPOFF_BRONTE_01", hash = 0x0838D137, outfits = 1 }, + [`MP_U_M_M_HCTEL_ARM_HOSTAGE_02`] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_02", hash = 0x0BE08FB6, outfits = 1 }, + [`MP_U_M_M_FOS_HARBORMASTER_01`] = { model = "MP_U_M_M_FOS_HARBORMASTER_01", hash = 0x0DD5100A, outfits = 1 }, + [`MP_U_M_M_FOS_TOWN_VIGILANTE_01`] = { model = "MP_U_M_M_FOS_TOWN_VIGILANTE_01", hash = 0x0FD9B9AD, outfits = 1 }, + [`MP_U_M_M_OUTLAW_COVINGTON_01`] = { model = "MP_U_M_M_OUTLAW_COVINGTON_01", hash = 0x139CC38E, outfits = 1 }, + [`MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01`] = { model = "MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x194B76E7, outfits = 5 }, + [`MP_U_M_M_FOS_BAGHOLDERS_01`] = { model = "MP_U_M_M_FOS_BAGHOLDERS_01", hash = 0x1AA818AE, outfits = 5 }, + [`MP_U_M_M_HCTEL_ARM_HOSTAGE_01`] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_01", hash = 0x1D9AB32A, outfits = 1 }, + [`MP_U_M_M_LOM_TRAIN_BARRICADE_01`] = { model = "MP_U_M_M_LOM_TRAIN_BARRICADE_01", hash = 0x25CBE18C, outfits = 7 }, + [`MP_U_M_M_FOS_SDSALOON_RECIPIENT_02`] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_02", hash = 0x30ED986F, outfits = 1 }, + [`MP_U_M_M_FOS_MUSICIAN_01`] = { model = "MP_U_M_M_FOS_MUSICIAN_01", hash = 0x33191090, outfits = 1 }, + [`MP_CS_ANTONYFOREMEN`] = { model = "MP_CS_ANTONYFOREMEN", hash = 0x358E2F94, outfits = 2 }, + [`MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01`] = { model = "MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x358EDB23, outfits = 5 }, + [`MP_U_M_M_FOS_RAILWAY_FOREMAN_01`] = { model = "MP_U_M_M_FOS_RAILWAY_FOREMAN_01", hash = 0x36B00529, outfits = 1 }, + [`MP_FM_BOUNTYTARGET_FEMALES_DLC008_01`] = { model = "MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", hash = 0x3EECF401, outfits = 5 }, + [`MP_U_M_M_PROTECT_ARMADILLO_01`] = { model = "MP_U_M_M_PROTECT_ARMADILLO_01", hash = 0x3F629157, outfits = 1 }, + [`MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01`] = { model = "MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01", hash = 0x46B92ED0, outfits = 5 }, + [`MP_U_M_M_LOM_TRAIN_PRISONERS_01`] = { model = "MP_U_M_M_LOM_TRAIN_PRISONERS_01", hash = 0x510EBF17, outfits = 2 }, + [`MP_A_M_M_COACHGUARDS_01`] = { model = "MP_A_M_M_COACHGUARDS_01", hash = 0x57D3AE19, outfits = 15 }, + [`MP_U_M_M_FOS_ROGUETHIEF_01`] = { model = "MP_U_M_M_FOS_ROGUETHIEF_01", hash = 0x58181CAF, outfits = 1 }, + [`MP_U_M_M_FOS_RAILWAY_DRIVER_01`] = { model = "MP_U_M_M_FOS_RAILWAY_DRIVER_01", hash = 0x592FCF55, outfits = 1 }, + [`MP_U_M_M_LOM_ASBMERCS_01`] = { model = "MP_U_M_M_LOM_ASBMERCS_01", hash = 0x5DE76175, outfits = 2 }, + [`MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01`] = { model = "MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01", hash = 0x5FBDB3E7, outfits = 1 }, + [`MP_U_M_O_LOM_ASBFOREMAN_01`] = { model = "MP_U_M_O_LOM_ASBFOREMAN_01", hash = 0x617AD6A7, outfits = 1 }, + [`MP_G_M_M_MOUNTAINMEN_01`] = { model = "MP_G_M_M_MOUNTAINMEN_01", hash = 0x64BCC144, outfits = 25 }, + [`MP_U_M_M_PROTECT_STRAWBERRY_01`] = { model = "MP_U_M_M_PROTECT_STRAWBERRY_01", hash = 0x6829879B, outfits = 1 }, + [`MP_U_M_M_PROTECT_HALLOWEEN_NED_01`] = { model = "MP_U_M_M_PROTECT_HALLOWEEN_NED_01", hash = 0x68CFBA8F, outfits = 1 }, + [`MP_U_M_M_OUTLAW_MPVICTIM_01`] = { model = "MP_U_M_M_OUTLAW_MPVICTIM_01", hash = 0x6A78FE6C, outfits = 1 }, + [`MP_U_M_M_LOM_SD_DOCKWORKER_01`] = { model = "MP_U_M_M_LOM_SD_DOCKWORKER_01", hash = 0x6AB56BDA, outfits = 1 }, + [`MP_U_M_M_FOS_TOWN_OUTLAW_01`] = { model = "MP_U_M_M_FOS_TOWN_OUTLAW_01", hash = 0x71A35899, outfits = 4 }, + [`MP_U_M_M_FOS_RECOVERY_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_RECOVERY_RECIPIENT_01", hash = 0x7494D380, outfits = 6 }, + [`MP_U_M_M_HCTEL_ARM_HOSTAGE_03`] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_03", hash = 0x7875E8E3, outfits = 1 }, + [`MP_U_M_M_FOS_DROPOFF_01`] = { model = "MP_U_M_M_FOS_DROPOFF_01", hash = 0x79912CAE, outfits = 1 }, + [`MP_U_M_M_FOS_SDSALOON_GAMBLER_01`] = { model = "MP_U_M_M_FOS_SDSALOON_GAMBLER_01", hash = 0x83123AF1, outfits = 1 }, + [`MP_U_M_M_LOM_TRAIN_LAWTARGET_01`] = { model = "MP_U_M_M_LOM_TRAIN_LAWTARGET_01", hash = 0x8C37025E, outfits = 1 }, + [`MP_G_M_M_FOS_DEBTGANGCAPITALI_01`] = { model = "MP_G_M_M_FOS_DEBTGANGCAPITALI_01", hash = 0x8D357D39, outfits = 5 }, + [`MP_A_M_M_LOM_ASBMINERS_01`] = { model = "MP_A_M_M_LOM_ASBMINERS_01", hash = 0x8EA8D407, outfits = 2 }, + [`MP_FM_BOUNTY_HORDE_LAW_01`] = { model = "MP_FM_BOUNTY_HORDE_LAW_01", hash = 0x9012A8C2, outfits = 2 }, + [`MP_U_M_M_LOM_HEAD_SECURITY_01`] = { model = "MP_U_M_M_LOM_HEAD_SECURITY_01", hash = 0x982C82C5, outfits = 4 }, + [`MP_U_M_M_FOS_SDSALOON_OWNER_01`] = { model = "MP_U_M_M_FOS_SDSALOON_OWNER_01", hash = 0x98C03046, outfits = 1 }, + [`MP_U_M_M_MUSICIAN_01`] = { model = "MP_U_M_M_MUSICIAN_01", hash = 0x9B2A9005, outfits = 1 }, + [`MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01`] = { model = "MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01", hash = 0x9DFA9B6E, outfits = 1 }, + [`MP_U_M_M_FOS_RAILWAY_BARON_01`] = { model = "MP_U_M_M_FOS_RAILWAY_BARON_01", hash = 0x9E96638B, outfits = 1 }, + [`MP_G_M_O_UNIEXCONFEDS_CAP_01`] = { model = "MP_G_M_O_UNIEXCONFEDS_CAP_01", hash = 0xA1B84FC1, outfits = 1 }, + [`MP_U_M_M_FOS_SDSALOON_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_01", hash = 0xA303FC9A, outfits = 2 }, + [`MP_U_M_M_INTERROGATOR_01`] = { model = "MP_U_M_M_INTERROGATOR_01", hash = 0xA37DBD30, outfits = 1 }, + [`CS_MP_POLICECHIEF_LAMBERT`] = { model = "CS_MP_POLICECHIEF_LAMBERT", hash = 0xAADC8018, outfits = 1 }, + [`MP_A_M_M_ASBMINERS_01`] = { model = "MP_A_M_M_ASBMINERS_01", hash = 0xAF86511B, outfits = 2 }, + [`MP_U_M_M_ASBDEPUTY_01`] = { model = "MP_U_M_M_ASBDEPUTY_01", hash = 0xAF9B36E2, outfits = 1 }, + [`MP_U_M_M_LOM_DROPOFF_BRONTE_01`] = { model = "MP_U_M_M_LOM_DROPOFF_BRONTE_01", hash = 0xB06054ED, outfits = 1 }, + [`MP_BINK_EMBER_OF_THE_EAST_MALES_01`] = { model = "MP_BINK_EMBER_OF_THE_EAST_MALES_01", hash = 0xB4CD18D6, outfits = 9 }, + [`mp_U_M_M_FOS_RAILWAY_GUARDS_01`] = { model = "mp_U_M_M_FOS_RAILWAY_GUARDS_01", hash = 0xB4F3EF87, outfits = 3 }, + [`MP_G_M_M_FOS_VIGILANTES_01`] = { model = "MP_G_M_M_FOS_VIGILANTES_01", hash = 0xB50453FF, outfits = 10 }, + [`mp_S_M_M_REVENUEAGENTS_CAP_01`] = { model = "mp_S_M_M_REVENUEAGENTS_CAP_01", hash = 0xBB22D33E, outfits = 3 }, + [`MP_U_M_M_LOM_SALOON_DRUNK_01`] = { model = "MP_U_M_M_LOM_SALOON_DRUNK_01", hash = 0xBD27319D, outfits = 1 }, + [`MP_A_M_M_ASBMINERS_02`] = { model = "MP_A_M_M_ASBMINERS_02", hash = 0xBDD36DB5, outfits = 2 }, + [`CS_MP_SENATOR_RICARD`] = { model = "CS_MP_SENATOR_RICARD", hash = 0xBE651417, outfits = 2 }, + [`MP_U_M_M_LOM_TRAIN_CLERK_01`] = { model = "MP_U_M_M_LOM_TRAIN_CLERK_01", hash = 0xC2B71883, outfits = 1 }, + [`MP_U_M_M_PROTECT_VALENTINE_01`] = { model = "MP_U_M_M_PROTECT_VALENTINE_01", hash = 0xC358949B, outfits = 1 }, + [`MP_S_M_M_FOS_HARBORGUARDS_01`] = { model = "MP_S_M_M_FOS_HARBORGUARDS_01", hash = 0xC37F22A8, outfits = 20 }, + [`MP_U_M_M_PROTECT_MERCER_CONTACT_01`] = { model = "MP_U_M_M_PROTECT_MERCER_CONTACT_01", hash = 0xCB86F5E4, outfits = 1 }, + [`MP_U_M_M_OUTLAW_RHD_NOBLE_01`] = { model = "MP_U_M_M_OUTLAW_RHD_NOBLE_01", hash = 0xCD3F93CC, outfits = 4 }, + [`MP_A_M_M_JAMESONGUARD_01`] = { model = "MP_A_M_M_JAMESONGUARD_01", hash = 0xD2D648CE, outfits = 50 }, + [`MP_U_M_M_FOS_RAILWAY_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_RAILWAY_RECIPIENT_01", hash = 0xD34CCF4F, outfits = 1 }, + [`MP_U_M_M_PROTECT_BLACKWATER_01`] = { model = "MP_U_M_M_PROTECT_BLACKWATER_01", hash = 0xD7A31642, outfits = 1 }, + [`MP_U_M_M_HCTEL_SD_TARGET_02`] = { model = "MP_U_M_M_HCTEL_SD_TARGET_02", hash = 0xDA440097, outfits = 2 }, + [`MP_G_M_M_FOS_DEBTGANG_01`] = { model = "MP_G_M_M_FOS_DEBTGANG_01", hash = 0xDA5BAF27, outfits = 15 }, + [`MP_U_M_M_FOS_SABOTEUR_01`] = { model = "MP_U_M_M_FOS_SABOTEUR_01", hash = 0xDA664071, outfits = 1 }, + [`MP_U_M_M_HCTEL_SD_GANG_01`] = { model = "MP_U_M_M_HCTEL_SD_GANG_01", hash = 0xDC558720, outfits = 3 }, + [`MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01`] = { model = "MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01", hash = 0xE2DCE94B, outfits = 1 }, + [`MP_U_M_M_LOM_DOCKWORKER_01`] = { model = "MP_U_M_M_LOM_DOCKWORKER_01", hash = 0xE514F0BF, outfits = 1 }, + [`MP_U_M_M_FOS_DOCKRECIPIENTS_01`] = { model = "MP_U_M_M_FOS_DOCKRECIPIENTS_01", hash = 0xE58B4A18, outfits = 2 }, + [`MP_U_F_M_OUTLAW_SOCIETYLADY_01`] = { model = "MP_U_F_M_OUTLAW_SOCIETYLADY_01", hash = 0xE5E2AAE3, outfits = 1 }, + [`MP_U_M_M_LOM_RHD_SHERIFF_01`] = { model = "MP_U_M_M_LOM_RHD_SHERIFF_01", hash = 0xE8F03F0A, outfits = 1 }, + [`MP_U_M_M_FOS_CORNWALL_BANDITS_01`] = { model = "MP_U_M_M_FOS_CORNWALL_BANDITS_01", hash = 0xEA3457D9, outfits = 3 }, + [`MP_U_M_M_PROTECT_STRAWBERRY`] = { model = "MP_U_M_M_PROTECT_STRAWBERRY", hash = 0xEA626A60, outfits = 1 }, + [`MP_GuidoMartelli`] = { model = "MP_GuidoMartelli", hash = 0xEAA42177, outfits = 1 }, + [`MP_U_M_M_HARBORMASTER_01`] = { model = "MP_U_M_M_HARBORMASTER_01", hash = 0xEAAE023B, outfits = 1 }, + [`MP_U_M_M_LOM_RHD_SMITHASSISTANT_01`] = { model = "MP_U_M_M_LOM_RHD_SMITHASSISTANT_01", hash = 0xEB2B8251, outfits = 1 }, + [`MP_U_M_M_FOS_INTERROGATOR_02`] = { model = "MP_U_M_M_FOS_INTERROGATOR_02", hash = 0xED2FDF9A, outfits = 1 }, + [`MP_U_M_M_FOS_INTERROGATOR_01`] = { model = "MP_U_M_M_FOS_INTERROGATOR_01", hash = 0xED64E004, outfits = 1 }, + [`MP_U_M_M_HCTEL_SD_TARGET_01`] = { model = "MP_U_M_M_HCTEL_SD_TARGET_01", hash = 0xED7DA70A, outfits = 1 }, + [`MP_U_M_M_FOS_CORNWALLGUARD_01`] = { model = "MP_U_M_M_FOS_CORNWALLGUARD_01", hash = 0xEE6A6493, outfits = 2 }, + [`MP_A_M_M_FOS_COACHGUARDS_01`] = { model = "MP_A_M_M_FOS_COACHGUARDS_01", hash = 0xEF9BAB0C, outfits = 15 }, + [`MP_U_F_M_PROTECT_MERCER_01`] = { model = "MP_U_F_M_PROTECT_MERCER_01", hash = 0xF14E5BDB, outfits = 5 }, + [`MP_U_M_M_DOCKRECIPIENTS_01`] = { model = "MP_U_M_M_DOCKRECIPIENTS_01", hash = 0xF24DC82F, outfits = 2 }, + [`MP_U_M_M_LOM_RHD_DEALERS_01`] = { model = "MP_U_M_M_LOM_RHD_DEALERS_01", hash = 0xFDA2404B, outfits = 3 }, + [`MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01", hash = 0xFE3F4984, outfits = 6 }, + [`MP_U_M_M_HCTEL_SD_TARGET_03`] = { model = "MP_U_M_M_HCTEL_SD_TARGET_03", hash = 0xFFDFCBCE, outfits = 6 }, + [`MP_U_M_M_FOS_RAILWAY_HUNTER_01`] = { model = "MP_U_M_M_FOS_RAILWAY_HUNTER_01", hash = 0xFFF1AB44, outfits = 1 }, } Peds.Ambient = { - [0x53367A8A] = { model = "a_f_m_armcholeracorpse_01", hash = 0x53367A8A, outfits = 40 }, - [0x9854FB06] = { model = "a_f_m_armtownfolk_01", hash = 0x9854FB06, outfits = 34 }, - [0x2ECE27FA] = { model = "a_f_m_armtownfolk_02", hash = 0x2ECE27FA, outfits = 24 }, - [0x6A01E5AF] = { model = "a_f_m_asbtownfolk_01", hash = 0x6A01E5AF, outfits = 35 }, - [0x9EF80CC3] = { model = "a_f_m_bivfancytravellers_01", hash = 0x9EF80CC3, outfits = 40 }, - [0x68D9612B] = { model = "a_f_m_blwtownfolk_01", hash = 0x68D9612B, outfits = 40 }, - [0x5EAF4CD7] = { model = "a_f_m_blwtownfolk_02", hash = 0x5EAF4CD7, outfits = 40 }, - [0x559F1795] = { model = "a_f_m_blwupperclass_01", hash = 0x559F1795, outfits = 50 }, - [0x156B2B5B] = { model = "a_f_m_btchillbilly_01", hash = 0x156B2B5B, outfits = 17 }, - [0x18FE1EB6] = { model = "a_f_m_btcobesewomen_01", hash = 0x18FE1EB6, outfits = 1 }, - [0xE6CA7A74] = { model = "a_f_m_bynfancytravellers_01", hash = 0xE6CA7A74, outfits = 30 }, - [0x41FCD560] = { model = "a_f_m_familytravelers_cool_01", hash = 0x41FCD560, outfits = 20 }, - [0x02FF9BBF] = { model = "a_f_m_familytravelers_warm_01", hash = 0x02FF9BBF, outfits = 20 }, - [0xDC9B1FAF] = { model = "a_f_m_gamhighsociety_01", hash = 0xDC9B1FAF, outfits = 39 }, - [0xF4D38A44] = { model = "a_f_m_grifancytravellers_01", hash = 0xF4D38A44, outfits = 40 }, - [0x7991217C] = { model = "a_f_m_guatownfolk_01", hash = 0x7991217C, outfits = 25 }, - [0xC53BAC3B] = { model = "a_f_m_htlfancytravellers_01", hash = 0xC53BAC3B, outfits = 40 }, - [0xFC3C9932] = { model = "a_f_m_lagtownfolk_01", hash = 0xFC3C9932, outfits = 12 }, - [0x98A1C808] = { model = "a_f_m_lowersdtownfolk_01", hash = 0x98A1C808, outfits = 42 }, - [0x88BB283B] = { model = "a_f_m_lowersdtownfolk_02", hash = 0x88BB283B, outfits = 40 }, - [0x777905B7] = { model = "a_f_m_lowersdtownfolk_03", hash = 0x777905B7, outfits = 42 }, - [0xBF41104A] = { model = "a_f_m_lowertrainpassengers_01", hash = 0xBF41104A, outfits = 25 }, - [0x26F2C9A7] = { model = "a_f_m_middlesdtownfolk_01", hash = 0x26F2C9A7, outfits = 45 }, - [0x37556A6C] = { model = "a_f_m_middlesdtownfolk_02", hash = 0x37556A6C, outfits = 30 }, - [0xC29280E8] = { model = "a_f_m_middlesdtownfolk_03", hash = 0xC29280E8, outfits = 20 }, - [0xFBA4F677] = { model = "a_f_m_middletrainpassengers_01", hash = 0xFBA4F677, outfits = 25 }, - [0xADABE58C] = { model = "a_f_m_nbxslums_01", hash = 0xADABE58C, outfits = 42 }, - [0xC20A03C0] = { model = "a_f_m_nbxupperclass_01", hash = 0xC20A03C0, outfits = 45 }, - [0x0E5BDB04] = { model = "a_f_m_nbxwhore_01", hash = 0x0E5BDB04, outfits = 25 }, - [0x768C0686] = { model = "a_f_m_rhdprostitute_01", hash = 0x768C0686, outfits = 35 }, - [0x2029479B] = { model = "a_f_m_rhdtownfolk_01", hash = 0x2029479B, outfits = 23 }, - [0x7108E959] = { model = "a_f_m_rhdtownfolk_02", hash = 0x7108E959, outfits = 22 }, - [0x7EC886E0] = { model = "a_f_m_rhdupperclass_01", hash = 0x7EC886E0, outfits = 50 }, - [0xADA8C252] = { model = "a_f_m_rkrfancytravellers_01", hash = 0xADA8C252, outfits = 40 }, - [0xC53D076D] = { model = "a_f_m_roughtravellers_01", hash = 0xC53D076D, outfits = 30 }, - [0x697CE9F6] = { model = "a_f_m_sclfancytravellers_01", hash = 0x697CE9F6, outfits = 21 }, - [0xF9EABA1F] = { model = "a_f_m_sdchinatown_01", hash = 0xF9EABA1F, outfits = 20 }, - [0x6C844384] = { model = "a_f_m_sdfancywhore_01", hash = 0x6C844384, outfits = 20 }, - [0x8DC3DD27] = { model = "a_f_m_sdobesewomen_01", hash = 0x8DC3DD27, outfits = 1 }, - [0x254A0D7B] = { model = "a_f_m_sdserversformal_01", hash = 0x254A0D7B, outfits = 10 }, - [0x10B716A1] = { model = "a_f_m_sdslums_02", hash = 0x10B716A1, outfits = 42 }, - [0xF0CED965] = { model = "a_f_m_skpprisononline_01", hash = 0xF0CED965, outfits = 8 }, - [0xAD789542] = { model = "a_f_m_strtownfolk_01", hash = 0xAD789542, outfits = 20 }, - [0x0C6E57DB] = { model = "a_f_m_tumtownfolk_01", hash = 0x0C6E57DB, outfits = 22 }, - [0xB545A97B] = { model = "a_f_m_tumtownfolk_02", hash = 0xB545A97B, outfits = 22 }, - [0xE533D2B4] = { model = "a_f_m_unicorpse_01", hash = 0xE533D2B4, outfits = 49 }, - [0xC16B7BA8] = { model = "a_f_m_uppertrainpassengers_01", hash = 0xC16B7BA8, outfits = 25 }, - [0x8E301D96] = { model = "a_f_m_valprostitute_01", hash = 0x8E301D96, outfits = 23 }, - [0xF666E887] = { model = "a_f_m_valtownfolk_01", hash = 0xF666E887, outfits = 20 }, - [0xB7A9EA0E] = { model = "a_f_m_vhtprostitute_01", hash = 0xB7A9EA0E, outfits = 11 }, - [0x008F4AD5] = { model = "a_f_m_vhttownfolk_01", hash = 0x008F4AD5, outfits = 25 }, - [0xF7E2135D] = { model = "a_f_m_waptownfolk_01", hash = 0xF7E2135D, outfits = 25 }, - [0xD0A31078] = { model = "a_f_o_blwupperclass_01", hash = 0xD0A31078, outfits = 45 }, - [0x86B4227A] = { model = "a_f_o_btchillbilly_01", hash = 0x86B4227A, outfits = 11 }, - [0xA0600CFB] = { model = "a_f_o_guatownfolk_01", hash = 0xA0600CFB, outfits = 15 }, - [0x17C91016] = { model = "a_f_o_lagtownfolk_01", hash = 0x17C91016, outfits = 12 }, - [0x322B92BF] = { model = "a_f_o_sdchinatown_01", hash = 0x322B92BF, outfits = 20 }, - [0x4057BCEE] = { model = "a_f_o_sdupperclass_01", hash = 0x4057BCEE, outfits = 45 }, - [0x837B740E] = { model = "a_f_o_waptownfolk_01", hash = 0x837B740E, outfits = 21 }, - [0xD076C393] = { model = "a_m_m_armcholeracorpse_01", hash = 0xD076C393, outfits = 38 }, - [0xCF7E73BE] = { model = "a_m_m_armtownfolk_01", hash = 0xCF7E73BE, outfits = 49 }, - [0xC137D731] = { model = "a_m_m_armtownfolk_02", hash = 0xC137D731, outfits = 60 }, - [0x37DAA98A] = { model = "a_m_m_asbboatcrew_01", hash = 0x37DAA98A, outfits = 30 }, - [0x68A1DDE7] = { model = "a_m_m_asbminer_01", hash = 0x68A1DDE7, outfits = 61 }, - [0x3E500944] = { model = "a_m_m_asbminer_02", hash = 0x3E500944, outfits = 42 }, - [0x50ABADFB] = { model = "a_m_m_asbminer_03", hash = 0x50ABADFB, outfits = 81 }, - [0x19E7406F] = { model = "a_m_m_asbminer_04", hash = 0x19E7406F, outfits = 69 }, - [0x0B54641C] = { model = "a_m_m_asbtownfolk_01", hash = 0x0B54641C, outfits = 86 }, - [0xA5E02A13] = { model = "a_m_m_asbtownfolk_01_laborer", hash = 0xA5E02A13, outfits = 70 }, - [0x613A4B8E] = { model = "a_m_m_bivfancydrivers_01", hash = 0x613A4B8E, outfits = 10 }, - [0x0D8C9D0B] = { model = "a_m_m_bivfancytravellers_01", hash = 0x0D8C9D0B, outfits = 21 }, - [0x4ADABFBA] = { model = "a_m_m_bivroughtravellers_01", hash = 0x4ADABFBA, outfits = 41 }, - [0x9384F640] = { model = "a_m_m_bivworker_01", hash = 0x9384F640, outfits = 29 }, - [0x5B91D27E] = { model = "a_m_m_blwforeman_01", hash = 0x5B91D27E, outfits = 35 }, - [0xC509B26F] = { model = "a_m_m_blwlaborer_01", hash = 0xC509B26F, outfits = 35 }, - [0xDBC6DFE9] = { model = "a_m_m_blwlaborer_02", hash = 0xDBC6DFE9, outfits = 45 }, - [0x41907533] = { model = "a_m_m_blwobesemen_01", hash = 0x41907533, outfits = 3 }, - [0xD10CE853] = { model = "a_m_m_blwtownfolk_01", hash = 0xD10CE853, outfits = 77 }, - [0x3CF00F0B] = { model = "a_m_m_blwupperclass_01", hash = 0x3CF00F0B, outfits = 85 }, - [0xE232B9EF] = { model = "a_m_m_btchillbilly_01", hash = 0xE232B9EF, outfits = 42 }, - [0x002A0F51] = { model = "a_m_m_btcobesemen_01", hash = 0x002A0F51, outfits = 1 }, - [0x70B728D7] = { model = "a_m_m_bynfancydrivers_01", hash = 0x70B728D7, outfits = 10 }, - [0xECBDF082] = { model = "a_m_m_bynfancytravellers_01", hash = 0xECBDF082, outfits = 20 }, - [0x7D65D747] = { model = "a_m_m_bynroughtravellers_01", hash = 0x7D65D747, outfits = 40 }, - [0x3B777AC0] = { model = "a_m_m_bynsurvivalist_01", hash = 0x3B777AC0, outfits = 15 }, - [0xC7458219] = { model = "a_m_m_cardgameplayers_01", hash = 0xC7458219, outfits = 84 }, - [0x5A3ABACE] = { model = "a_m_m_chelonian_01", hash = 0x5A3ABACE, outfits = 24 }, - [0xDB5C4A62] = { model = "a_m_m_deliverytravelers_cool_01", hash = 0xDB5C4A62, outfits = 20 }, - [0xA56A4C3D] = { model = "a_m_m_deliverytravelers_warm_01", hash = 0xA56A4C3D, outfits = 20 }, - [0xD4B37D8A] = { model = "a_m_m_dominoesplayers_01", hash = 0xD4B37D8A, outfits = 18 }, - [0xE5CED83E] = { model = "a_m_m_emrfarmhand_01", hash = 0xE5CED83E, outfits = 20 }, - [0x570B9957] = { model = "a_m_m_familytravelers_cool_01", hash = 0x570B9957, outfits = 20 }, - [0xEF53FC1C] = { model = "a_m_m_familytravelers_warm_01", hash = 0xEF53FC1C, outfits = 20 }, - [0x584626EE] = { model = "a_m_m_farmtravelers_cool_01", hash = 0x584626EE, outfits = 20 }, - [0x2F9417F1] = { model = "a_m_m_farmtravelers_warm_01", hash = 0x2F9417F1, outfits = 20 }, - [0x18E143CA] = { model = "a_m_m_fivefingerfilletplayers_01", hash = 0x18E143CA, outfits = 12 }, - [0x0DB7B411] = { model = "a_m_m_foreman", hash = 0x0DB7B411, outfits = 10 }, - [0x8DABAE42] = { model = "a_m_m_gamhighsociety_01", hash = 0x8DABAE42, outfits = 40 }, - [0x542A035C] = { model = "a_m_m_grifancydrivers_01", hash = 0x542A035C, outfits = 10 }, - [0x761D319E] = { model = "a_m_m_grifancytravellers_01", hash = 0x761D319E, outfits = 20 }, - [0x97273585] = { model = "a_m_m_griroughtravellers_01", hash = 0x97273585, outfits = 40 }, - [0x9DDE71E1] = { model = "a_m_m_grisurvivalist_01", hash = 0x9DDE71E1, outfits = 15 }, - [0x0D4DB92F] = { model = "a_m_m_guatownfolk_01", hash = 0x0D4DB92F, outfits = 27 }, - [0xEEF71080] = { model = "a_m_m_htlfancydrivers_01", hash = 0xEEF71080, outfits = 10 }, - [0xB05F73A6] = { model = "a_m_m_htlfancytravellers_01", hash = 0xB05F73A6, outfits = 20 }, - [0xA9DCFB5A] = { model = "a_m_m_htlroughtravellers_01", hash = 0xA9DCFB5A, outfits = 40 }, - [0xB3410109] = { model = "a_m_m_htlsurvivalist_01", hash = 0xB3410109, outfits = 15 }, - [0x5729EC23] = { model = "a_m_m_huntertravelers_cool_01", hash = 0x5729EC23, outfits = 20 }, - [0xD898CFD4] = { model = "a_m_m_huntertravelers_warm_01", hash = 0xD898CFD4, outfits = 21 }, - [0x9233448C] = { model = "a_m_m_jamesonguard_01", hash = 0x9233448C, outfits = 56 }, - [0xBD48CFD4] = { model = "a_m_m_lagtownfolk_01", hash = 0xBD48CFD4, outfits = 12 }, - [0xE40C9EB8] = { model = "a_m_m_lowersdtownfolk_01", hash = 0xE40C9EB8, outfits = 91 }, - [0x82AF5BFB] = { model = "a_m_m_lowersdtownfolk_02", hash = 0x82AF5BFB, outfits = 91 }, - [0x950C61AA] = { model = "a_m_m_lowertrainpassengers_01", hash = 0x950C61AA, outfits = 25 }, - [0x7F2FF3A2] = { model = "a_m_m_middlesdtownfolk_01", hash = 0x7F2FF3A2, outfits = 65 }, - [0x6E8E525F] = { model = "a_m_m_middlesdtownfolk_02", hash = 0x6E8E525F, outfits = 51 }, - [0x20C236C8] = { model = "a_m_m_middlesdtownfolk_03", hash = 0x20C236C8, outfits = 51 }, - [0xB56ED02B] = { model = "a_m_m_middletrainpassengers_01", hash = 0xB56ED02B, outfits = 25 }, - [0xB14CEEEF] = { model = "a_m_m_moonshiners_01", hash = 0xB14CEEEF, outfits = 10 }, - [0xED78C02F] = { model = "a_m_m_nbxdockworkers_01", hash = 0xED78C02F, outfits = 70 }, - [0x9881BCFA] = { model = "a_m_m_nbxlaborers_01", hash = 0x9881BCFA, outfits = 70 }, - [0x56A5800A] = { model = "a_m_m_nbxslums_01", hash = 0x56A5800A, outfits = 85 }, - [0x04B7D63B] = { model = "a_m_m_nbxupperclass_01", hash = 0x04B7D63B, outfits = 50 }, - [0x6D027AB7] = { model = "a_m_m_nearoughtravellers_01", hash = 0x6D027AB7, outfits = 35 }, - [0x2C9C69C2] = { model = "a_m_m_ranchertravelers_cool_01", hash = 0x2C9C69C2, outfits = 20 }, - [0xF7649D04] = { model = "a_m_m_ranchertravelers_warm_01", hash = 0xF7649D04, outfits = 20 }, - [0x54D8BE8E] = { model = "a_m_m_rancher_01", hash = 0x54D8BE8E, outfits = 20 }, - [0x94EAA58F] = { model = "a_m_m_rhdforeman_01", hash = 0x94EAA58F, outfits = 30 }, - [0x602993B2] = { model = "a_m_m_rhdobesemen_01", hash = 0x602993B2, outfits = 3 }, - [0x3A489018] = { model = "a_m_m_rhdtownfolk_01", hash = 0x3A489018, outfits = 42 }, - [0x009F6A48] = { model = "a_m_m_rhdtownfolk_01_laborer", hash = 0x009F6A48, outfits = 10 }, - [0x6833EBEE] = { model = "a_m_m_rhdtownfolk_02", hash = 0x6833EBEE, outfits = 35 }, - [0xAFCAF759] = { model = "a_m_m_rhdupperclass_01", hash = 0xAFCAF759, outfits = 63 }, - [0x921DA99E] = { model = "a_m_m_rkrfancydrivers_01", hash = 0x921DA99E, outfits = 10 }, - [0x76C805FE] = { model = "a_m_m_rkrfancytravellers_01", hash = 0x76C805FE, outfits = 20 }, - [0xAD581ACB] = { model = "a_m_m_rkrroughtravellers_01", hash = 0xAD581ACB, outfits = 40 }, - [0x2FABD7A9] = { model = "a_m_m_rkrsurvivalist_01", hash = 0x2FABD7A9, outfits = 15 }, - [0xBCA4A7DC] = { model = "a_m_m_sclfancydrivers_01", hash = 0xBCA4A7DC, outfits = 10 }, - [0x45B96600] = { model = "a_m_m_sclfancytravellers_01", hash = 0x45B96600, outfits = 20 }, - [0xD93C654F] = { model = "a_m_m_sclroughtravellers_01", hash = 0xD93C654F, outfits = 41 }, - [0x26878D5C] = { model = "a_m_m_sdchinatown_01", hash = 0x26878D5C, outfits = 21 }, - [0x44BCB3C8] = { model = "a_m_m_sddockforeman_01", hash = 0x44BCB3C8, outfits = 25 }, - [0xA1875C33] = { model = "a_m_m_sddockworkers_02", hash = 0xA1875C33, outfits = 70 }, - [0xF20E6FFA] = { model = "a_m_m_sdfancytravellers_01", hash = 0xF20E6FFA, outfits = 20 }, - [0xD0EEF17B] = { model = "a_m_m_sdlaborers_02", hash = 0xD0EEF17B, outfits = 70 }, - [0x36E3135B] = { model = "a_m_m_sdobesemen_01", hash = 0x36E3135B, outfits = 3 }, - [0x885C429E] = { model = "a_m_m_sdroughtravellers_01", hash = 0x885C429E, outfits = 40 }, - [0x8FC7F8DD] = { model = "a_m_m_sdserversformal_01", hash = 0x8FC7F8DD, outfits = 6 }, - [0xAA5C3EA9] = { model = "a_m_m_sdslums_02", hash = 0xAA5C3EA9, outfits = 85 }, - [0x16958B7D] = { model = "a_m_m_skpprisoner_01", hash = 0x16958B7D, outfits = 20 }, - [0x6D78A035] = { model = "a_m_m_skpprisonline_01", hash = 0x6D78A035, outfits = 24 }, - [0xDCA53CEE] = { model = "a_m_m_smhthug_01", hash = 0xDCA53CEE, outfits = 24 }, - [0x2A19CF1B] = { model = "a_m_m_strfancytourist_01", hash = 0x2A19CF1B, outfits = 5 }, - [0x9E51CBEB] = { model = "a_m_m_strlaborer_01", hash = 0x9E51CBEB, outfits = 18 }, - [0x4335A6E5] = { model = "a_m_m_strtownfolk_01", hash = 0x4335A6E5, outfits = 26 }, - [0x1C9C6388] = { model = "a_m_m_tumtownfolk_01", hash = 0x1C9C6388, outfits = 60 }, - [0x39A29D9C] = { model = "a_m_m_tumtownfolk_02", hash = 0x39A29D9C, outfits = 60 }, - [0xFE70D544] = { model = "a_m_m_uniboatcrew_01", hash = 0xFE70D544, outfits = 20 }, - [0x1CC906ED] = { model = "a_m_m_unicoachguards_01", hash = 0x1CC906ED, outfits = 20 }, - [0x4C6C6086] = { model = "a_m_m_unicorpse_01", hash = 0x4C6C6086, outfits = 186 }, - [0x39F19DB8] = { model = "a_m_m_unigunslinger_01", hash = 0x39F19DB8, outfits = 40 }, - [0x752ADF85] = { model = "a_m_m_uppertrainpassengers_01", hash = 0x752ADF85, outfits = 25 }, - [0xF90FDED2] = { model = "a_m_m_valcriminals_01", hash = 0xF90FDED2, outfits = 10 }, - [0x1F52F239] = { model = "a_m_m_valfarmer_01", hash = 0x1F52F239, outfits = 29 }, - [0xDC64F897] = { model = "a_m_m_vallaborer_01", hash = 0xDC64F897, outfits = 58 }, - [0x838F50CE] = { model = "a_m_m_valtownfolk_01", hash = 0x838F50CE, outfits = 36 }, - [0x9550F451] = { model = "a_m_m_valtownfolk_02", hash = 0x9550F451, outfits = 44 }, - [0xAA7C134D] = { model = "a_m_m_vhtboatcrew_01", hash = 0xAA7C134D, outfits = 30 }, - [0xC703A880] = { model = "a_m_m_vhtthug_01", hash = 0xC703A880, outfits = 40 }, - [0x36C66682] = { model = "a_m_m_vhttownfolk_01", hash = 0x36C66682, outfits = 86 }, - [0x3183AABD] = { model = "a_m_m_wapwarriors_01", hash = 0x3183AABD, outfits = 69 }, - [0x57B730CA] = { model = "a_m_o_blwupperclass_01", hash = 0x57B730CA, outfits = 80 }, - [0xA9D376B5] = { model = "a_m_o_btchillbilly_01", hash = 0xA9D376B5, outfits = 29 }, - [0x153790EE] = { model = "a_m_o_guatownfolk_01", hash = 0x153790EE, outfits = 15 }, - [0xD02B6700] = { model = "a_m_o_lagtownfolk_01", hash = 0xD02B6700, outfits = 12 }, - [0x34EEA2A1] = { model = "a_m_o_sdchinatown_01", hash = 0x34EEA2A1, outfits = 21 }, - [0x8C74A816] = { model = "a_m_o_sdupperclass_01", hash = 0x8C74A816, outfits = 50 }, - [0x8C850F6C] = { model = "a_m_o_waptownfolk_01", hash = 0x8C850F6C, outfits = 26 }, - [0x8E76B9B9] = { model = "a_m_y_asbminer_01", hash = 0x8E76B9B9, outfits = 60 }, - [0x5C0454CD] = { model = "a_m_y_asbminer_02", hash = 0x5C0454CD, outfits = 42 }, - [0x14FD46C4] = { model = "a_m_y_asbminer_03", hash = 0x14FD46C4, outfits = 81 }, - [0x30407D4A] = { model = "a_m_y_asbminer_04", hash = 0x30407D4A, outfits = 69 }, - [0x0FC40064] = { model = "a_m_y_nbxstreetkids_01", hash = 0x0FC40064, outfits = 8 }, - [0xACA57303] = { model = "a_m_y_nbxstreetkids_slums_01", hash = 0xACA57303, outfits = 20 }, - [0xCA57B2C4] = { model = "a_m_y_sdstreetkids_slums_02", hash = 0xCA57B2C4, outfits = 8 }, - [0x75CC2B66] = { model = "a_m_y_unicorpse_01", hash = 0x75CC2B66, outfits = 2 }, - [0x9295AF45] = { model = "s_f_m_bwmworker_01", hash = 0x9295AF45, outfits = 20 }, - [0xDCEE66D9] = { model = "s_f_m_cghworker_01", hash = 0xDCEE66D9, outfits = 20 }, - [0xC463C94D] = { model = "s_f_m_mapworker_01", hash = 0xC463C94D, outfits = 10 }, - [0x2B0C75A7] = { model = "s_m_m_army_01", hash = 0x2B0C75A7, outfits = 59 }, - [0xBC548357] = { model = "s_m_m_asbcowpoke_01", hash = 0xBC548357, outfits = 30 }, - [0xA76308C1] = { model = "s_m_m_asbdealer_01", hash = 0xA76308C1, outfits = 10 }, - [0x40C51B9B] = { model = "s_m_m_bankclerk_01", hash = 0x40C51B9B, outfits = 13 }, - [0xD2FA5F10] = { model = "s_m_m_barber_01", hash = 0xD2FA5F10, outfits = 7 }, - [0x45B1C269] = { model = "s_m_m_blwcowpoke_01", hash = 0x45B1C269, outfits = 30 }, - [0x96B4CDFD] = { model = "s_m_m_blwdealer_01", hash = 0x96B4CDFD, outfits = 8 }, - [0x7FA7B097] = { model = "s_m_m_bwmworker_01", hash = 0x7FA7B097, outfits = 20 }, - [0x9E19AFE2] = { model = "s_m_m_cghworker_01", hash = 0x9E19AFE2, outfits = 30 }, - [0xCC2B5869] = { model = "s_m_m_cktworker_01", hash = 0xCC2B5869, outfits = 50 }, - [0x76F815AD] = { model = "s_m_m_coachtaxidriver_01", hash = 0x76F815AD, outfits = 16 }, - [0xBF1F0776] = { model = "s_m_m_cornwallguard_01", hash = 0xBF1F0776, outfits = 43 }, - [0x5040FF5C] = { model = "s_m_m_dispatchleaderrural_01", hash = 0x5040FF5C, outfits = 11 }, - [0xE917380E] = { model = "s_m_m_fussarhenchman_01", hash = 0xE917380E, outfits = 67 }, - [0x56016AD3] = { model = "s_m_m_genconductor_01", hash = 0x56016AD3, outfits = 11 }, - [0x2C8D5F17] = { model = "s_m_m_hofguard_01", hash = 0x2C8D5F17, outfits = 20 }, - [0x8649EF17] = { model = "s_m_m_liveryworker_01", hash = 0x8649EF17, outfits = 24 }, - [0x236B99E0] = { model = "s_m_m_magiclantern_01", hash = 0x236B99E0, outfits = 4 }, - [0x4A6B07B5] = { model = "s_m_m_mapworker_01", hash = 0x4A6B07B5, outfits = 10 }, - [0x5339E46B] = { model = "s_m_m_marketvendor_01", hash = 0x5339E46B, outfits = 16 }, - [0xD952E41C] = { model = "s_m_m_micguard_01", hash = 0xD952E41C, outfits = 23 }, - [0x5D6431A9] = { model = "s_m_m_nbxriverboatdealers_01", hash = 0x5D6431A9, outfits = 20 }, - [0xDF00FFF5] = { model = "s_m_m_nbxriverboatguards_01", hash = 0xDF00FFF5, outfits = 25 }, - [0x6A4E496F] = { model = "s_m_m_orpguard_01", hash = 0x6A4E496F, outfits = 20 }, - [0xB72270C2] = { model = "s_m_m_racrailguards_01", hash = 0xB72270C2, outfits = 20 }, - [0x6CC9E1B0] = { model = "s_m_m_racrailworker_01", hash = 0x6CC9E1B0, outfits = 30 }, - [0xEDF61C81] = { model = "s_m_m_rhdcowpoke_01", hash = 0xEDF61C81, outfits = 20 }, - [0xD819DA9D] = { model = "s_m_m_rhddealer_01", hash = 0xD819DA9D, outfits = 8 }, - [0xC8C55680] = { model = "s_m_m_sdcowpoke_01", hash = 0xC8C55680, outfits = 35 }, - [0x6C604B17] = { model = "s_m_m_sddealer_01", hash = 0x6C604B17, outfits = 8 }, - [0xE02AEA58] = { model = "s_m_m_sdticketseller_01", hash = 0xE02AEA58, outfits = 6 }, - [0x459610AE] = { model = "s_m_m_skpguard_01", hash = 0x459610AE, outfits = 20 }, - [0xC55DA177] = { model = "s_m_m_stgsailor_01", hash = 0xC55DA177, outfits = 20 }, - [0xFCF4C01C] = { model = "s_m_m_strcowpoke_01", hash = 0xFCF4C01C, outfits = 21 }, - [0x65E1C35F] = { model = "s_m_m_strdealer_01", hash = 0x65E1C35F, outfits = 8 }, - [0x18A9A8A5] = { model = "s_m_m_strlumberjack_01", hash = 0x18A9A8A5, outfits = 16 }, - [0x2AE5771F] = { model = "s_m_m_tailor_01", hash = 0x2AE5771F, outfits = 7 }, - [0xE9694F3F] = { model = "s_m_m_trainstationworker_01", hash = 0xE9694F3F, outfits = 28 }, - [0xB27C0016] = { model = "s_m_m_tumdeputies_01", hash = 0xB27C0016, outfits = 22 }, - [0x0633DF9F] = { model = "s_m_m_unibutchers_01", hash = 0x0633DF9F, outfits = 13 }, - [0xD1264F4D] = { model = "s_m_m_unitrainengineer_01", hash = 0xD1264F4D, outfits = 10 }, - [0x083BB629] = { model = "s_m_m_unitrainguards_01", hash = 0x083BB629, outfits = 21 }, - [0x96AB9699] = { model = "s_m_m_valbankguards_01", hash = 0x96AB9699, outfits = 10 }, - [0x4304BF5C] = { model = "s_m_m_valcowpoke_01", hash = 0x4304BF5C, outfits = 21 }, - [0x9BCF0362] = { model = "s_m_m_valdealer_01", hash = 0x9BCF0362, outfits = 8 }, - [0x398349E3] = { model = "s_m_m_vhtdealer_01", hash = 0x398349E3, outfits = 8 }, - [0x50152A20] = { model = "s_m_o_cktworker_01", hash = 0x50152A20, outfits = 8 }, - [0x802760F9] = { model = "s_m_y_army_01", hash = 0x802760F9, outfits = 43 }, - [0x111A98CA] = { model = "s_m_y_newspaperboy_01", hash = 0x111A98CA, outfits = 16 }, - [0x84F58DCD] = { model = "s_m_y_racrailworker_01", hash = 0x84F58DCD, outfits = 30 }, + [`a_f_m_armcholeracorpse_01`] = { model = "a_f_m_armcholeracorpse_01", hash = 0x53367A8A, outfits = 40 }, + [`a_f_m_armtownfolk_01`] = { model = "a_f_m_armtownfolk_01", hash = 0x9854FB06, outfits = 34 }, + [`a_f_m_armtownfolk_02`] = { model = "a_f_m_armtownfolk_02", hash = 0x2ECE27FA, outfits = 24 }, + [`a_f_m_asbtownfolk_01`] = { model = "a_f_m_asbtownfolk_01", hash = 0x6A01E5AF, outfits = 35 }, + [`a_f_m_bivfancytravellers_01`] = { model = "a_f_m_bivfancytravellers_01", hash = 0x9EF80CC3, outfits = 40 }, + [`a_f_m_blwtownfolk_01`] = { model = "a_f_m_blwtownfolk_01", hash = 0x68D9612B, outfits = 40 }, + [`a_f_m_blwtownfolk_02`] = { model = "a_f_m_blwtownfolk_02", hash = 0x5EAF4CD7, outfits = 40 }, + [`a_f_m_blwupperclass_01`] = { model = "a_f_m_blwupperclass_01", hash = 0x559F1795, outfits = 50 }, + [`a_f_m_btchillbilly_01`] = { model = "a_f_m_btchillbilly_01", hash = 0x156B2B5B, outfits = 17 }, + [`a_f_m_btcobesewomen_01`] = { model = "a_f_m_btcobesewomen_01", hash = 0x18FE1EB6, outfits = 1 }, + [`a_f_m_bynfancytravellers_01`] = { model = "a_f_m_bynfancytravellers_01", hash = 0xE6CA7A74, outfits = 30 }, + [`a_f_m_familytravelers_cool_01`] = { model = "a_f_m_familytravelers_cool_01", hash = 0x41FCD560, outfits = 20 }, + [`a_f_m_familytravelers_warm_01`] = { model = "a_f_m_familytravelers_warm_01", hash = 0x02FF9BBF, outfits = 20 }, + [`a_f_m_gamhighsociety_01`] = { model = "a_f_m_gamhighsociety_01", hash = 0xDC9B1FAF, outfits = 39 }, + [`a_f_m_grifancytravellers_01`] = { model = "a_f_m_grifancytravellers_01", hash = 0xF4D38A44, outfits = 40 }, + [`a_f_m_guatownfolk_01`] = { model = "a_f_m_guatownfolk_01", hash = 0x7991217C, outfits = 25 }, + [`a_f_m_htlfancytravellers_01`] = { model = "a_f_m_htlfancytravellers_01", hash = 0xC53BAC3B, outfits = 40 }, + [`a_f_m_lagtownfolk_01`] = { model = "a_f_m_lagtownfolk_01", hash = 0xFC3C9932, outfits = 12 }, + [`a_f_m_lowersdtownfolk_01`] = { model = "a_f_m_lowersdtownfolk_01", hash = 0x98A1C808, outfits = 42 }, + [`a_f_m_lowersdtownfolk_02`] = { model = "a_f_m_lowersdtownfolk_02", hash = 0x88BB283B, outfits = 40 }, + [`a_f_m_lowersdtownfolk_03`] = { model = "a_f_m_lowersdtownfolk_03", hash = 0x777905B7, outfits = 42 }, + [`a_f_m_lowertrainpassengers_01`] = { model = "a_f_m_lowertrainpassengers_01", hash = 0xBF41104A, outfits = 25 }, + [`a_f_m_middlesdtownfolk_01`] = { model = "a_f_m_middlesdtownfolk_01", hash = 0x26F2C9A7, outfits = 45 }, + [`a_f_m_middlesdtownfolk_02`] = { model = "a_f_m_middlesdtownfolk_02", hash = 0x37556A6C, outfits = 30 }, + [`a_f_m_middlesdtownfolk_03`] = { model = "a_f_m_middlesdtownfolk_03", hash = 0xC29280E8, outfits = 20 }, + [`a_f_m_middletrainpassengers_01`] = { model = "a_f_m_middletrainpassengers_01", hash = 0xFBA4F677, outfits = 25 }, + [`a_f_m_nbxslums_01`] = { model = "a_f_m_nbxslums_01", hash = 0xADABE58C, outfits = 42 }, + [`a_f_m_nbxupperclass_01`] = { model = "a_f_m_nbxupperclass_01", hash = 0xC20A03C0, outfits = 45 }, + [`a_f_m_nbxwhore_01`] = { model = "a_f_m_nbxwhore_01", hash = 0x0E5BDB04, outfits = 25 }, + [`a_f_m_rhdprostitute_01`] = { model = "a_f_m_rhdprostitute_01", hash = 0x768C0686, outfits = 35 }, + [`a_f_m_rhdtownfolk_01`] = { model = "a_f_m_rhdtownfolk_01", hash = 0x2029479B, outfits = 23 }, + [`a_f_m_rhdtownfolk_02`] = { model = "a_f_m_rhdtownfolk_02", hash = 0x7108E959, outfits = 22 }, + [`a_f_m_rhdupperclass_01`] = { model = "a_f_m_rhdupperclass_01", hash = 0x7EC886E0, outfits = 50 }, + [`a_f_m_rkrfancytravellers_01`] = { model = "a_f_m_rkrfancytravellers_01", hash = 0xADA8C252, outfits = 40 }, + [`a_f_m_roughtravellers_01`] = { model = "a_f_m_roughtravellers_01", hash = 0xC53D076D, outfits = 30 }, + [`a_f_m_sclfancytravellers_01`] = { model = "a_f_m_sclfancytravellers_01", hash = 0x697CE9F6, outfits = 21 }, + [`a_f_m_sdchinatown_01`] = { model = "a_f_m_sdchinatown_01", hash = 0xF9EABA1F, outfits = 20 }, + [`a_f_m_sdfancywhore_01`] = { model = "a_f_m_sdfancywhore_01", hash = 0x6C844384, outfits = 20 }, + [`a_f_m_sdobesewomen_01`] = { model = "a_f_m_sdobesewomen_01", hash = 0x8DC3DD27, outfits = 1 }, + [`a_f_m_sdserversformal_01`] = { model = "a_f_m_sdserversformal_01", hash = 0x254A0D7B, outfits = 10 }, + [`a_f_m_sdslums_02`] = { model = "a_f_m_sdslums_02", hash = 0x10B716A1, outfits = 42 }, + [`a_f_m_skpprisononline_01`] = { model = "a_f_m_skpprisononline_01", hash = 0xF0CED965, outfits = 8 }, + [`a_f_m_strtownfolk_01`] = { model = "a_f_m_strtownfolk_01", hash = 0xAD789542, outfits = 20 }, + [`a_f_m_tumtownfolk_01`] = { model = "a_f_m_tumtownfolk_01", hash = 0x0C6E57DB, outfits = 22 }, + [`a_f_m_tumtownfolk_02`] = { model = "a_f_m_tumtownfolk_02", hash = 0xB545A97B, outfits = 22 }, + [`a_f_m_unicorpse_01`] = { model = "a_f_m_unicorpse_01", hash = 0xE533D2B4, outfits = 49 }, + [`a_f_m_uppertrainpassengers_01`] = { model = "a_f_m_uppertrainpassengers_01", hash = 0xC16B7BA8, outfits = 25 }, + [`a_f_m_valprostitute_01`] = { model = "a_f_m_valprostitute_01", hash = 0x8E301D96, outfits = 23 }, + [`a_f_m_valtownfolk_01`] = { model = "a_f_m_valtownfolk_01", hash = 0xF666E887, outfits = 20 }, + [`a_f_m_vhtprostitute_01`] = { model = "a_f_m_vhtprostitute_01", hash = 0xB7A9EA0E, outfits = 11 }, + [`a_f_m_vhttownfolk_01`] = { model = "a_f_m_vhttownfolk_01", hash = 0x008F4AD5, outfits = 25 }, + [`a_f_m_waptownfolk_01`] = { model = "a_f_m_waptownfolk_01", hash = 0xF7E2135D, outfits = 25 }, + [`a_f_o_blwupperclass_01`] = { model = "a_f_o_blwupperclass_01", hash = 0xD0A31078, outfits = 45 }, + [`a_f_o_btchillbilly_01`] = { model = "a_f_o_btchillbilly_01", hash = 0x86B4227A, outfits = 11 }, + [`a_f_o_guatownfolk_01`] = { model = "a_f_o_guatownfolk_01", hash = 0xA0600CFB, outfits = 15 }, + [`a_f_o_lagtownfolk_01`] = { model = "a_f_o_lagtownfolk_01", hash = 0x17C91016, outfits = 12 }, + [`a_f_o_sdchinatown_01`] = { model = "a_f_o_sdchinatown_01", hash = 0x322B92BF, outfits = 20 }, + [`a_f_o_sdupperclass_01`] = { model = "a_f_o_sdupperclass_01", hash = 0x4057BCEE, outfits = 45 }, + [`a_f_o_waptownfolk_01`] = { model = "a_f_o_waptownfolk_01", hash = 0x837B740E, outfits = 21 }, + [`a_m_m_armcholeracorpse_01`] = { model = "a_m_m_armcholeracorpse_01", hash = 0xD076C393, outfits = 38 }, + [`a_m_m_armtownfolk_01`] = { model = "a_m_m_armtownfolk_01", hash = 0xCF7E73BE, outfits = 49 }, + [`a_m_m_armtownfolk_02`] = { model = "a_m_m_armtownfolk_02", hash = 0xC137D731, outfits = 60 }, + [`a_m_m_asbboatcrew_01`] = { model = "a_m_m_asbboatcrew_01", hash = 0x37DAA98A, outfits = 30 }, + [`a_m_m_asbminer_01`] = { model = "a_m_m_asbminer_01", hash = 0x68A1DDE7, outfits = 61 }, + [`a_m_m_asbminer_02`] = { model = "a_m_m_asbminer_02", hash = 0x3E500944, outfits = 42 }, + [`a_m_m_asbminer_03`] = { model = "a_m_m_asbminer_03", hash = 0x50ABADFB, outfits = 81 }, + [`a_m_m_asbminer_04`] = { model = "a_m_m_asbminer_04", hash = 0x19E7406F, outfits = 69 }, + [`a_m_m_asbtownfolk_01`] = { model = "a_m_m_asbtownfolk_01", hash = 0x0B54641C, outfits = 86 }, + [`a_m_m_asbtownfolk_01_laborer`] = { model = "a_m_m_asbtownfolk_01_laborer", hash = 0xA5E02A13, outfits = 70 }, + [`a_m_m_bivfancydrivers_01`] = { model = "a_m_m_bivfancydrivers_01", hash = 0x613A4B8E, outfits = 10 }, + [`a_m_m_bivfancytravellers_01`] = { model = "a_m_m_bivfancytravellers_01", hash = 0x0D8C9D0B, outfits = 21 }, + [`a_m_m_bivroughtravellers_01`] = { model = "a_m_m_bivroughtravellers_01", hash = 0x4ADABFBA, outfits = 41 }, + [`a_m_m_bivworker_01`] = { model = "a_m_m_bivworker_01", hash = 0x9384F640, outfits = 29 }, + [`a_m_m_blwforeman_01`] = { model = "a_m_m_blwforeman_01", hash = 0x5B91D27E, outfits = 35 }, + [`a_m_m_blwlaborer_01`] = { model = "a_m_m_blwlaborer_01", hash = 0xC509B26F, outfits = 35 }, + [`a_m_m_blwlaborer_02`] = { model = "a_m_m_blwlaborer_02", hash = 0xDBC6DFE9, outfits = 45 }, + [`a_m_m_blwobesemen_01`] = { model = "a_m_m_blwobesemen_01", hash = 0x41907533, outfits = 3 }, + [`a_m_m_blwtownfolk_01`] = { model = "a_m_m_blwtownfolk_01", hash = 0xD10CE853, outfits = 77 }, + [`a_m_m_blwupperclass_01`] = { model = "a_m_m_blwupperclass_01", hash = 0x3CF00F0B, outfits = 85 }, + [`a_m_m_btchillbilly_01`] = { model = "a_m_m_btchillbilly_01", hash = 0xE232B9EF, outfits = 42 }, + [`a_m_m_btcobesemen_01`] = { model = "a_m_m_btcobesemen_01", hash = 0x002A0F51, outfits = 1 }, + [`a_m_m_bynfancydrivers_01`] = { model = "a_m_m_bynfancydrivers_01", hash = 0x70B728D7, outfits = 10 }, + [`a_m_m_bynfancytravellers_01`] = { model = "a_m_m_bynfancytravellers_01", hash = 0xECBDF082, outfits = 20 }, + [`a_m_m_bynroughtravellers_01`] = { model = "a_m_m_bynroughtravellers_01", hash = 0x7D65D747, outfits = 40 }, + [`a_m_m_bynsurvivalist_01`] = { model = "a_m_m_bynsurvivalist_01", hash = 0x3B777AC0, outfits = 15 }, + [`a_m_m_cardgameplayers_01`] = { model = "a_m_m_cardgameplayers_01", hash = 0xC7458219, outfits = 84 }, + [`a_m_m_chelonian_01`] = { model = "a_m_m_chelonian_01", hash = 0x5A3ABACE, outfits = 24 }, + [`a_m_m_deliverytravelers_cool_01`] = { model = "a_m_m_deliverytravelers_cool_01", hash = 0xDB5C4A62, outfits = 20 }, + [`a_m_m_deliverytravelers_warm_01`] = { model = "a_m_m_deliverytravelers_warm_01", hash = 0xA56A4C3D, outfits = 20 }, + [`a_m_m_dominoesplayers_01`] = { model = "a_m_m_dominoesplayers_01", hash = 0xD4B37D8A, outfits = 18 }, + [`a_m_m_emrfarmhand_01`] = { model = "a_m_m_emrfarmhand_01", hash = 0xE5CED83E, outfits = 20 }, + [`a_m_m_familytravelers_cool_01`] = { model = "a_m_m_familytravelers_cool_01", hash = 0x570B9957, outfits = 20 }, + [`a_m_m_familytravelers_warm_01`] = { model = "a_m_m_familytravelers_warm_01", hash = 0xEF53FC1C, outfits = 20 }, + [`a_m_m_farmtravelers_cool_01`] = { model = "a_m_m_farmtravelers_cool_01", hash = 0x584626EE, outfits = 20 }, + [`a_m_m_farmtravelers_warm_01`] = { model = "a_m_m_farmtravelers_warm_01", hash = 0x2F9417F1, outfits = 20 }, + [`a_m_m_fivefingerfilletplayers_01`] = { model = "a_m_m_fivefingerfilletplayers_01", hash = 0x18E143CA, outfits = 12 }, + [`a_m_m_foreman`] = { model = "a_m_m_foreman", hash = 0x0DB7B411, outfits = 10 }, + [`a_m_m_gamhighsociety_01`] = { model = "a_m_m_gamhighsociety_01", hash = 0x8DABAE42, outfits = 40 }, + [`a_m_m_grifancydrivers_01`] = { model = "a_m_m_grifancydrivers_01", hash = 0x542A035C, outfits = 10 }, + [`a_m_m_grifancytravellers_01`] = { model = "a_m_m_grifancytravellers_01", hash = 0x761D319E, outfits = 20 }, + [`a_m_m_griroughtravellers_01`] = { model = "a_m_m_griroughtravellers_01", hash = 0x97273585, outfits = 40 }, + [`a_m_m_grisurvivalist_01`] = { model = "a_m_m_grisurvivalist_01", hash = 0x9DDE71E1, outfits = 15 }, + [`a_m_m_guatownfolk_01`] = { model = "a_m_m_guatownfolk_01", hash = 0x0D4DB92F, outfits = 27 }, + [`a_m_m_htlfancydrivers_01`] = { model = "a_m_m_htlfancydrivers_01", hash = 0xEEF71080, outfits = 10 }, + [`a_m_m_htlfancytravellers_01`] = { model = "a_m_m_htlfancytravellers_01", hash = 0xB05F73A6, outfits = 20 }, + [`a_m_m_htlroughtravellers_01`] = { model = "a_m_m_htlroughtravellers_01", hash = 0xA9DCFB5A, outfits = 40 }, + [`a_m_m_htlsurvivalist_01`] = { model = "a_m_m_htlsurvivalist_01", hash = 0xB3410109, outfits = 15 }, + [`a_m_m_huntertravelers_cool_01`] = { model = "a_m_m_huntertravelers_cool_01", hash = 0x5729EC23, outfits = 20 }, + [`a_m_m_huntertravelers_warm_01`] = { model = "a_m_m_huntertravelers_warm_01", hash = 0xD898CFD4, outfits = 21 }, + [`a_m_m_jamesonguard_01`] = { model = "a_m_m_jamesonguard_01", hash = 0x9233448C, outfits = 56 }, + [`a_m_m_lagtownfolk_01`] = { model = "a_m_m_lagtownfolk_01", hash = 0xBD48CFD4, outfits = 12 }, + [`a_m_m_lowersdtownfolk_01`] = { model = "a_m_m_lowersdtownfolk_01", hash = 0xE40C9EB8, outfits = 91 }, + [`a_m_m_lowersdtownfolk_02`] = { model = "a_m_m_lowersdtownfolk_02", hash = 0x82AF5BFB, outfits = 91 }, + [`a_m_m_lowertrainpassengers_01`] = { model = "a_m_m_lowertrainpassengers_01", hash = 0x950C61AA, outfits = 25 }, + [`a_m_m_middlesdtownfolk_01`] = { model = "a_m_m_middlesdtownfolk_01", hash = 0x7F2FF3A2, outfits = 65 }, + [`a_m_m_middlesdtownfolk_02`] = { model = "a_m_m_middlesdtownfolk_02", hash = 0x6E8E525F, outfits = 51 }, + [`a_m_m_middlesdtownfolk_03`] = { model = "a_m_m_middlesdtownfolk_03", hash = 0x20C236C8, outfits = 51 }, + [`a_m_m_middletrainpassengers_01`] = { model = "a_m_m_middletrainpassengers_01", hash = 0xB56ED02B, outfits = 25 }, + [`a_m_m_moonshiners_01`] = { model = "a_m_m_moonshiners_01", hash = 0xB14CEEEF, outfits = 10 }, + [`a_m_m_nbxdockworkers_01`] = { model = "a_m_m_nbxdockworkers_01", hash = 0xED78C02F, outfits = 70 }, + [`a_m_m_nbxlaborers_01`] = { model = "a_m_m_nbxlaborers_01", hash = 0x9881BCFA, outfits = 70 }, + [`a_m_m_nbxslums_01`] = { model = "a_m_m_nbxslums_01", hash = 0x56A5800A, outfits = 85 }, + [`a_m_m_nbxupperclass_01`] = { model = "a_m_m_nbxupperclass_01", hash = 0x04B7D63B, outfits = 50 }, + [`a_m_m_nearoughtravellers_01`] = { model = "a_m_m_nearoughtravellers_01", hash = 0x6D027AB7, outfits = 35 }, + [`a_m_m_ranchertravelers_cool_01`] = { model = "a_m_m_ranchertravelers_cool_01", hash = 0x2C9C69C2, outfits = 20 }, + [`a_m_m_ranchertravelers_warm_01`] = { model = "a_m_m_ranchertravelers_warm_01", hash = 0xF7649D04, outfits = 20 }, + [`a_m_m_rancher_01`] = { model = "a_m_m_rancher_01", hash = 0x54D8BE8E, outfits = 20 }, + [`a_m_m_rhdforeman_01`] = { model = "a_m_m_rhdforeman_01", hash = 0x94EAA58F, outfits = 30 }, + [`a_m_m_rhdobesemen_01`] = { model = "a_m_m_rhdobesemen_01", hash = 0x602993B2, outfits = 3 }, + [`a_m_m_rhdtownfolk_01`] = { model = "a_m_m_rhdtownfolk_01", hash = 0x3A489018, outfits = 42 }, + [`a_m_m_rhdtownfolk_01_laborer`] = { model = "a_m_m_rhdtownfolk_01_laborer", hash = 0x009F6A48, outfits = 10 }, + [`a_m_m_rhdtownfolk_02`] = { model = "a_m_m_rhdtownfolk_02", hash = 0x6833EBEE, outfits = 35 }, + [`a_m_m_rhdupperclass_01`] = { model = "a_m_m_rhdupperclass_01", hash = 0xAFCAF759, outfits = 63 }, + [`a_m_m_rkrfancydrivers_01`] = { model = "a_m_m_rkrfancydrivers_01", hash = 0x921DA99E, outfits = 10 }, + [`a_m_m_rkrfancytravellers_01`] = { model = "a_m_m_rkrfancytravellers_01", hash = 0x76C805FE, outfits = 20 }, + [`a_m_m_rkrroughtravellers_01`] = { model = "a_m_m_rkrroughtravellers_01", hash = 0xAD581ACB, outfits = 40 }, + [`a_m_m_rkrsurvivalist_01`] = { model = "a_m_m_rkrsurvivalist_01", hash = 0x2FABD7A9, outfits = 15 }, + [`a_m_m_sclfancydrivers_01`] = { model = "a_m_m_sclfancydrivers_01", hash = 0xBCA4A7DC, outfits = 10 }, + [`a_m_m_sclfancytravellers_01`] = { model = "a_m_m_sclfancytravellers_01", hash = 0x45B96600, outfits = 20 }, + [`a_m_m_sclroughtravellers_01`] = { model = "a_m_m_sclroughtravellers_01", hash = 0xD93C654F, outfits = 41 }, + [`a_m_m_sdchinatown_01`] = { model = "a_m_m_sdchinatown_01", hash = 0x26878D5C, outfits = 21 }, + [`a_m_m_sddockforeman_01`] = { model = "a_m_m_sddockforeman_01", hash = 0x44BCB3C8, outfits = 25 }, + [`a_m_m_sddockworkers_02`] = { model = "a_m_m_sddockworkers_02", hash = 0xA1875C33, outfits = 70 }, + [`a_m_m_sdfancytravellers_01`] = { model = "a_m_m_sdfancytravellers_01", hash = 0xF20E6FFA, outfits = 20 }, + [`a_m_m_sdlaborers_02`] = { model = "a_m_m_sdlaborers_02", hash = 0xD0EEF17B, outfits = 70 }, + [`a_m_m_sdobesemen_01`] = { model = "a_m_m_sdobesemen_01", hash = 0x36E3135B, outfits = 3 }, + [`a_m_m_sdroughtravellers_01`] = { model = "a_m_m_sdroughtravellers_01", hash = 0x885C429E, outfits = 40 }, + [`a_m_m_sdserversformal_01`] = { model = "a_m_m_sdserversformal_01", hash = 0x8FC7F8DD, outfits = 6 }, + [`a_m_m_sdslums_02`] = { model = "a_m_m_sdslums_02", hash = 0xAA5C3EA9, outfits = 85 }, + [`a_m_m_skpprisoner_01`] = { model = "a_m_m_skpprisoner_01", hash = 0x16958B7D, outfits = 20 }, + [`a_m_m_skpprisonline_01`] = { model = "a_m_m_skpprisonline_01", hash = 0x6D78A035, outfits = 24 }, + [`a_m_m_smhthug_01`] = { model = "a_m_m_smhthug_01", hash = 0xDCA53CEE, outfits = 24 }, + [`a_m_m_strfancytourist_01`] = { model = "a_m_m_strfancytourist_01", hash = 0x2A19CF1B, outfits = 5 }, + [`a_m_m_strlaborer_01`] = { model = "a_m_m_strlaborer_01", hash = 0x9E51CBEB, outfits = 18 }, + [`a_m_m_strtownfolk_01`] = { model = "a_m_m_strtownfolk_01", hash = 0x4335A6E5, outfits = 26 }, + [`a_m_m_tumtownfolk_01`] = { model = "a_m_m_tumtownfolk_01", hash = 0x1C9C6388, outfits = 60 }, + [`a_m_m_tumtownfolk_02`] = { model = "a_m_m_tumtownfolk_02", hash = 0x39A29D9C, outfits = 60 }, + [`a_m_m_uniboatcrew_01`] = { model = "a_m_m_uniboatcrew_01", hash = 0xFE70D544, outfits = 20 }, + [`a_m_m_unicoachguards_01`] = { model = "a_m_m_unicoachguards_01", hash = 0x1CC906ED, outfits = 20 }, + [`a_m_m_unicorpse_01`] = { model = "a_m_m_unicorpse_01", hash = 0x4C6C6086, outfits = 186 }, + [`a_m_m_unigunslinger_01`] = { model = "a_m_m_unigunslinger_01", hash = 0x39F19DB8, outfits = 40 }, + [`a_m_m_uppertrainpassengers_01`] = { model = "a_m_m_uppertrainpassengers_01", hash = 0x752ADF85, outfits = 25 }, + [`a_m_m_valcriminals_01`] = { model = "a_m_m_valcriminals_01", hash = 0xF90FDED2, outfits = 10 }, + [`a_m_m_valfarmer_01`] = { model = "a_m_m_valfarmer_01", hash = 0x1F52F239, outfits = 29 }, + [`a_m_m_vallaborer_01`] = { model = "a_m_m_vallaborer_01", hash = 0xDC64F897, outfits = 58 }, + [`a_m_m_valtownfolk_01`] = { model = "a_m_m_valtownfolk_01", hash = 0x838F50CE, outfits = 36 }, + [`a_m_m_valtownfolk_02`] = { model = "a_m_m_valtownfolk_02", hash = 0x9550F451, outfits = 44 }, + [`a_m_m_vhtboatcrew_01`] = { model = "a_m_m_vhtboatcrew_01", hash = 0xAA7C134D, outfits = 30 }, + [`a_m_m_vhtthug_01`] = { model = "a_m_m_vhtthug_01", hash = 0xC703A880, outfits = 40 }, + [`a_m_m_vhttownfolk_01`] = { model = "a_m_m_vhttownfolk_01", hash = 0x36C66682, outfits = 86 }, + [`a_m_m_wapwarriors_01`] = { model = "a_m_m_wapwarriors_01", hash = 0x3183AABD, outfits = 69 }, + [`a_m_o_blwupperclass_01`] = { model = "a_m_o_blwupperclass_01", hash = 0x57B730CA, outfits = 80 }, + [`a_m_o_btchillbilly_01`] = { model = "a_m_o_btchillbilly_01", hash = 0xA9D376B5, outfits = 29 }, + [`a_m_o_guatownfolk_01`] = { model = "a_m_o_guatownfolk_01", hash = 0x153790EE, outfits = 15 }, + [`a_m_o_lagtownfolk_01`] = { model = "a_m_o_lagtownfolk_01", hash = 0xD02B6700, outfits = 12 }, + [`a_m_o_sdchinatown_01`] = { model = "a_m_o_sdchinatown_01", hash = 0x34EEA2A1, outfits = 21 }, + [`a_m_o_sdupperclass_01`] = { model = "a_m_o_sdupperclass_01", hash = 0x8C74A816, outfits = 50 }, + [`a_m_o_waptownfolk_01`] = { model = "a_m_o_waptownfolk_01", hash = 0x8C850F6C, outfits = 26 }, + [`a_m_y_asbminer_01`] = { model = "a_m_y_asbminer_01", hash = 0x8E76B9B9, outfits = 60 }, + [`a_m_y_asbminer_02`] = { model = "a_m_y_asbminer_02", hash = 0x5C0454CD, outfits = 42 }, + [`a_m_y_asbminer_03`] = { model = "a_m_y_asbminer_03", hash = 0x14FD46C4, outfits = 81 }, + [`a_m_y_asbminer_04`] = { model = "a_m_y_asbminer_04", hash = 0x30407D4A, outfits = 69 }, + [`a_m_y_nbxstreetkids_01`] = { model = "a_m_y_nbxstreetkids_01", hash = 0x0FC40064, outfits = 8 }, + [`a_m_y_nbxstreetkids_slums_01`] = { model = "a_m_y_nbxstreetkids_slums_01", hash = 0xACA57303, outfits = 20 }, + [`a_m_y_sdstreetkids_slums_02`] = { model = "a_m_y_sdstreetkids_slums_02", hash = 0xCA57B2C4, outfits = 8 }, + [`a_m_y_unicorpse_01`] = { model = "a_m_y_unicorpse_01", hash = 0x75CC2B66, outfits = 2 }, + [`s_f_m_bwmworker_01`] = { model = "s_f_m_bwmworker_01", hash = 0x9295AF45, outfits = 20 }, + [`s_f_m_cghworker_01`] = { model = "s_f_m_cghworker_01", hash = 0xDCEE66D9, outfits = 20 }, + [`s_f_m_mapworker_01`] = { model = "s_f_m_mapworker_01", hash = 0xC463C94D, outfits = 10 }, + [`s_m_m_army_01`] = { model = "s_m_m_army_01", hash = 0x2B0C75A7, outfits = 59 }, + [`s_m_m_asbcowpoke_01`] = { model = "s_m_m_asbcowpoke_01", hash = 0xBC548357, outfits = 30 }, + [`s_m_m_asbdealer_01`] = { model = "s_m_m_asbdealer_01", hash = 0xA76308C1, outfits = 10 }, + [`s_m_m_bankclerk_01`] = { model = "s_m_m_bankclerk_01", hash = 0x40C51B9B, outfits = 13 }, + [`s_m_m_barber_01`] = { model = "s_m_m_barber_01", hash = 0xD2FA5F10, outfits = 7 }, + [`s_m_m_blwcowpoke_01`] = { model = "s_m_m_blwcowpoke_01", hash = 0x45B1C269, outfits = 30 }, + [`s_m_m_blwdealer_01`] = { model = "s_m_m_blwdealer_01", hash = 0x96B4CDFD, outfits = 8 }, + [`s_m_m_bwmworker_01`] = { model = "s_m_m_bwmworker_01", hash = 0x7FA7B097, outfits = 20 }, + [`s_m_m_cghworker_01`] = { model = "s_m_m_cghworker_01", hash = 0x9E19AFE2, outfits = 30 }, + [`s_m_m_cktworker_01`] = { model = "s_m_m_cktworker_01", hash = 0xCC2B5869, outfits = 50 }, + [`s_m_m_coachtaxidriver_01`] = { model = "s_m_m_coachtaxidriver_01", hash = 0x76F815AD, outfits = 16 }, + [`s_m_m_cornwallguard_01`] = { model = "s_m_m_cornwallguard_01", hash = 0xBF1F0776, outfits = 43 }, + [`s_m_m_dispatchleaderrural_01`] = { model = "s_m_m_dispatchleaderrural_01", hash = 0x5040FF5C, outfits = 11 }, + [`s_m_m_fussarhenchman_01`] = { model = "s_m_m_fussarhenchman_01", hash = 0xE917380E, outfits = 67 }, + [`s_m_m_genconductor_01`] = { model = "s_m_m_genconductor_01", hash = 0x56016AD3, outfits = 11 }, + [`s_m_m_hofguard_01`] = { model = "s_m_m_hofguard_01", hash = 0x2C8D5F17, outfits = 20 }, + [`s_m_m_liveryworker_01`] = { model = "s_m_m_liveryworker_01", hash = 0x8649EF17, outfits = 24 }, + [`s_m_m_magiclantern_01`] = { model = "s_m_m_magiclantern_01", hash = 0x236B99E0, outfits = 4 }, + [`s_m_m_mapworker_01`] = { model = "s_m_m_mapworker_01", hash = 0x4A6B07B5, outfits = 10 }, + [`s_m_m_marketvendor_01`] = { model = "s_m_m_marketvendor_01", hash = 0x5339E46B, outfits = 16 }, + [`s_m_m_micguard_01`] = { model = "s_m_m_micguard_01", hash = 0xD952E41C, outfits = 23 }, + [`s_m_m_nbxriverboatdealers_01`] = { model = "s_m_m_nbxriverboatdealers_01", hash = 0x5D6431A9, outfits = 20 }, + [`s_m_m_nbxriverboatguards_01`] = { model = "s_m_m_nbxriverboatguards_01", hash = 0xDF00FFF5, outfits = 25 }, + [`s_m_m_orpguard_01`] = { model = "s_m_m_orpguard_01", hash = 0x6A4E496F, outfits = 20 }, + [`s_m_m_racrailguards_01`] = { model = "s_m_m_racrailguards_01", hash = 0xB72270C2, outfits = 20 }, + [`s_m_m_racrailworker_01`] = { model = "s_m_m_racrailworker_01", hash = 0x6CC9E1B0, outfits = 30 }, + [`s_m_m_rhdcowpoke_01`] = { model = "s_m_m_rhdcowpoke_01", hash = 0xEDF61C81, outfits = 20 }, + [`s_m_m_rhddealer_01`] = { model = "s_m_m_rhddealer_01", hash = 0xD819DA9D, outfits = 8 }, + [`s_m_m_sdcowpoke_01`] = { model = "s_m_m_sdcowpoke_01", hash = 0xC8C55680, outfits = 35 }, + [`s_m_m_sddealer_01`] = { model = "s_m_m_sddealer_01", hash = 0x6C604B17, outfits = 8 }, + [`s_m_m_sdticketseller_01`] = { model = "s_m_m_sdticketseller_01", hash = 0xE02AEA58, outfits = 6 }, + [`s_m_m_skpguard_01`] = { model = "s_m_m_skpguard_01", hash = 0x459610AE, outfits = 20 }, + [`s_m_m_stgsailor_01`] = { model = "s_m_m_stgsailor_01", hash = 0xC55DA177, outfits = 20 }, + [`s_m_m_strcowpoke_01`] = { model = "s_m_m_strcowpoke_01", hash = 0xFCF4C01C, outfits = 21 }, + [`s_m_m_strdealer_01`] = { model = "s_m_m_strdealer_01", hash = 0x65E1C35F, outfits = 8 }, + [`s_m_m_strlumberjack_01`] = { model = "s_m_m_strlumberjack_01", hash = 0x18A9A8A5, outfits = 16 }, + [`s_m_m_tailor_01`] = { model = "s_m_m_tailor_01", hash = 0x2AE5771F, outfits = 7 }, + [`s_m_m_trainstationworker_01`] = { model = "s_m_m_trainstationworker_01", hash = 0xE9694F3F, outfits = 28 }, + [`s_m_m_tumdeputies_01`] = { model = "s_m_m_tumdeputies_01", hash = 0xB27C0016, outfits = 22 }, + [`s_m_m_unibutchers_01`] = { model = "s_m_m_unibutchers_01", hash = 0x0633DF9F, outfits = 13 }, + [`s_m_m_unitrainengineer_01`] = { model = "s_m_m_unitrainengineer_01", hash = 0xD1264F4D, outfits = 10 }, + [`s_m_m_unitrainguards_01`] = { model = "s_m_m_unitrainguards_01", hash = 0x083BB629, outfits = 21 }, + [`s_m_m_valbankguards_01`] = { model = "s_m_m_valbankguards_01", hash = 0x96AB9699, outfits = 10 }, + [`s_m_m_valcowpoke_01`] = { model = "s_m_m_valcowpoke_01", hash = 0x4304BF5C, outfits = 21 }, + [`s_m_m_valdealer_01`] = { model = "s_m_m_valdealer_01", hash = 0x9BCF0362, outfits = 8 }, + [`s_m_m_vhtdealer_01`] = { model = "s_m_m_vhtdealer_01", hash = 0x398349E3, outfits = 8 }, + [`s_m_o_cktworker_01`] = { model = "s_m_o_cktworker_01", hash = 0x50152A20, outfits = 8 }, + [`s_m_y_army_01`] = { model = "s_m_y_army_01", hash = 0x802760F9, outfits = 43 }, + [`s_m_y_newspaperboy_01`] = { model = "s_m_y_newspaperboy_01", hash = 0x111A98CA, outfits = 16 }, + [`s_m_y_racrailworker_01`] = { model = "s_m_y_racrailworker_01", hash = 0x84F58DCD, outfits = 30 }, } Peds.Gangs = { - [0x335F7F4B] = { model = "g_f_m_uniduster_01", hash = 0x335F7F4B, outfits = 3 }, - [0x1973FE45] = { model = "g_m_m_bountyhunters_01", hash = 0x1973FE45, outfits = 65 }, - [0xBB343A2C] = { model = "g_m_m_uniafricanamericangang_01", hash = 0xBB343A2C, outfits = 42 }, - [0x19486791] = { model = "g_m_m_unibanditos_01", hash = 0x19486791, outfits = 167 }, - [0x2B92A067] = { model = "g_m_m_unibraithwaites_01", hash = 0x2B92A067, outfits = 50 }, - [0x58277E70] = { model = "g_m_m_unibrontegoons_01", hash = 0x58277E70, outfits = 83 }, - [0x93A369F1] = { model = "g_m_m_unicornwallgoons_01", hash = 0x93A369F1, outfits = 86 }, - [0x3F094007] = { model = "g_m_m_unicriminals_01", hash = 0x3F094007, outfits = 150 }, - [0x8954549C] = { model = "g_m_m_unicriminals_02", hash = 0x8954549C, outfits = 60 }, - [0x14B7F44D] = { model = "g_m_m_uniduster_01", hash = 0x14B7F44D, outfits = 184 }, - [0x030250E2] = { model = "g_m_m_uniduster_02", hash = 0x030250E2, outfits = 56 }, - [0xB4163307] = { model = "g_m_m_uniduster_03", hash = 0xB4163307, outfits = 37 }, - [0xD2846FE3] = { model = "g_m_m_uniduster_04", hash = 0xD2846FE3, outfits = 9 }, - [0x4FAEEA3A] = { model = "g_m_m_uniduster_05", hash = 0x4FAEEA3A, outfits = 26 }, - [0x15EB41F6] = { model = "g_m_m_unigrays_01", hash = 0x15EB41F6, outfits = 51 }, - [0x07A1A563] = { model = "g_m_m_unigrays_02", hash = 0x07A1A563, outfits = 30 }, - [0x15AF635E] = { model = "g_m_m_uniinbred_01", hash = 0x15AF635E, outfits = 131 }, - [0x5B44EF58] = { model = "g_m_m_unilangstonboys_01", hash = 0x5B44EF58, outfits = 35 }, - [0x0FD91413] = { model = "g_m_m_unimicahgoons_01", hash = 0x0FD91413, outfits = 31 }, - [0xAB3EBD92] = { model = "g_m_m_unimountainmen_01", hash = 0xAB3EBD92, outfits = 129 }, - [0xBF03A565] = { model = "g_m_m_uniranchers_01", hash = 0xBF03A565, outfits = 87 }, - [0xE0165EA0] = { model = "g_m_m_uniswamp_01", hash = 0xE0165EA0, outfits = 43 }, - [0xEAD13D7C] = { model = "g_m_o_uniexconfeds_01", hash = 0xEAD13D7C, outfits = 93 }, - [0xDA82E29B] = { model = "g_m_y_uniexconfeds_01", hash = 0xDA82E29B, outfits = 124 }, - [0xC631B9F9] = { model = "g_m_y_uniexconfeds_02", hash = 0xC631B9F9, outfits = 33 }, + [`g_f_m_uniduster_01`] = { model = "g_f_m_uniduster_01", hash = 0x335F7F4B, outfits = 3 }, + [`g_m_m_bountyhunters_01`] = { model = "g_m_m_bountyhunters_01", hash = 0x1973FE45, outfits = 65 }, + [`g_m_m_uniafricanamericangang_01`] = { model = "g_m_m_uniafricanamericangang_01", hash = 0xBB343A2C, outfits = 42 }, + [`g_m_m_unibanditos_01`] = { model = "g_m_m_unibanditos_01", hash = 0x19486791, outfits = 167 }, + [`g_m_m_unibraithwaites_01`] = { model = "g_m_m_unibraithwaites_01", hash = 0x2B92A067, outfits = 50 }, + [`g_m_m_unibrontegoons_01`] = { model = "g_m_m_unibrontegoons_01", hash = 0x58277E70, outfits = 83 }, + [`g_m_m_unicornwallgoons_01`] = { model = "g_m_m_unicornwallgoons_01", hash = 0x93A369F1, outfits = 86 }, + [`g_m_m_unicriminals_01`] = { model = "g_m_m_unicriminals_01", hash = 0x3F094007, outfits = 150 }, + [`g_m_m_unicriminals_02`] = { model = "g_m_m_unicriminals_02", hash = 0x8954549C, outfits = 60 }, + [`g_m_m_uniduster_01`] = { model = "g_m_m_uniduster_01", hash = 0x14B7F44D, outfits = 184 }, + [`g_m_m_uniduster_02`] = { model = "g_m_m_uniduster_02", hash = 0x030250E2, outfits = 56 }, + [`g_m_m_uniduster_03`] = { model = "g_m_m_uniduster_03", hash = 0xB4163307, outfits = 37 }, + [`g_m_m_uniduster_04`] = { model = "g_m_m_uniduster_04", hash = 0xD2846FE3, outfits = 9 }, + [`g_m_m_uniduster_05`] = { model = "g_m_m_uniduster_05", hash = 0x4FAEEA3A, outfits = 26 }, + [`g_m_m_unigrays_01`] = { model = "g_m_m_unigrays_01", hash = 0x15EB41F6, outfits = 51 }, + [`g_m_m_unigrays_02`] = { model = "g_m_m_unigrays_02", hash = 0x07A1A563, outfits = 30 }, + [`g_m_m_uniinbred_01`] = { model = "g_m_m_uniinbred_01", hash = 0x15AF635E, outfits = 131 }, + [`g_m_m_unilangstonboys_01`] = { model = "g_m_m_unilangstonboys_01", hash = 0x5B44EF58, outfits = 35 }, + [`g_m_m_unimicahgoons_01`] = { model = "g_m_m_unimicahgoons_01", hash = 0x0FD91413, outfits = 31 }, + [`g_m_m_unimountainmen_01`] = { model = "g_m_m_unimountainmen_01", hash = 0xAB3EBD92, outfits = 129 }, + [`g_m_m_uniranchers_01`] = { model = "g_m_m_uniranchers_01", hash = 0xBF03A565, outfits = 87 }, + [`g_m_m_uniswamp_01`] = { model = "g_m_m_uniswamp_01", hash = 0xE0165EA0, outfits = 43 }, + [`g_m_o_uniexconfeds_01`] = { model = "g_m_o_uniexconfeds_01", hash = 0xEAD13D7C, outfits = 93 }, + [`g_m_y_uniexconfeds_01`] = { model = "g_m_y_uniexconfeds_01", hash = 0xDA82E29B, outfits = 124 }, + [`g_m_y_uniexconfeds_02`] = { model = "g_m_y_uniexconfeds_02", hash = 0xC631B9F9, outfits = 33 }, } Peds.Law = { - [0xB5771CFC] = { model = "a_m_m_armdeputyresident_01", hash = 0xB5771CFC, outfits = 56 }, - [0x9C00E2A0] = { model = "a_m_m_asbdeputyresident_01", hash = 0x9C00E2A0, outfits = 21 }, - [0x0B5B9D98] = { model = "a_m_m_rhddeputyresident_01", hash = 0x0B5B9D98, outfits = 23 }, - [0xF0379DF1] = { model = "a_m_m_strdeputyresident_01", hash = 0xF0379DF1, outfits = 21 }, - [0x639CD8CD] = { model = "a_m_m_valdeputyresident_01", hash = 0x639CD8CD, outfits = 30 }, - [0x840FA9CD] = { model = "msp_trelawny1_males_01", hash = 0x840FA9CD, outfits = 7 }, - [0xEEF6045E] = { model = "re_outlawlooter_males_01", hash = 0xEEF6045E, outfits = 24 }, - [0x2BFFE26F] = { model = "re_policechase_males_01", hash = 0x2BFFE26F, outfits = 4 }, - [0x8F45DDEB] = { model = "s_m_m_ambientblwpolice_01", hash = 0x8F45DDEB, outfits = 43 }, - [0x6D22857B] = { model = "s_m_m_ambientlawrural_01", hash = 0x6D22857B, outfits = 95 }, - [0xA9AD1A7D] = { model = "s_m_m_ambientsdpolice_01", hash = 0xA9AD1A7D, outfits = 44 }, - [0xE9F4AB20] = { model = "s_m_m_dispatchlawrural_01", hash = 0xE9F4AB20, outfits = 65 }, - [0x7E16EC8D] = { model = "s_m_m_dispatchleaderpolice_01", hash = 0x7E16EC8D, outfits = 20 }, - [0xFFBABBF9] = { model = "s_m_m_dispatchpolice_01", hash = 0xFFBABBF9, outfits = 40 }, - [0x3141A535] = { model = "s_m_m_marshallsrural_01", hash = 0x3141A535, outfits = 33 }, - [0x2BFB9F8F] = { model = "s_m_m_pinlaw_01", hash = 0x2BFB9F8F, outfits = 55 }, - [0xF4B4127A] = { model = "s_m_m_valdeputy_01", hash = 0xF4B4127A, outfits = 20 }, + [`a_m_m_armdeputyresident_01`] = { model = "a_m_m_armdeputyresident_01", hash = 0xB5771CFC, outfits = 56 }, + [`a_m_m_asbdeputyresident_01`] = { model = "a_m_m_asbdeputyresident_01", hash = 0x9C00E2A0, outfits = 21 }, + [`a_m_m_rhddeputyresident_01`] = { model = "a_m_m_rhddeputyresident_01", hash = 0x0B5B9D98, outfits = 23 }, + [`a_m_m_strdeputyresident_01`] = { model = "a_m_m_strdeputyresident_01", hash = 0xF0379DF1, outfits = 21 }, + [`a_m_m_valdeputyresident_01`] = { model = "a_m_m_valdeputyresident_01", hash = 0x639CD8CD, outfits = 30 }, + [`msp_trelawny1_males_01`] = { model = "msp_trelawny1_males_01", hash = 0x840FA9CD, outfits = 7 }, + [`re_outlawlooter_males_01`] = { model = "re_outlawlooter_males_01", hash = 0xEEF6045E, outfits = 24 }, + [`re_policechase_males_01`] = { model = "re_policechase_males_01", hash = 0x2BFFE26F, outfits = 4 }, + [`s_m_m_ambientblwpolice_01`] = { model = "s_m_m_ambientblwpolice_01", hash = 0x8F45DDEB, outfits = 43 }, + [`s_m_m_ambientlawrural_01`] = { model = "s_m_m_ambientlawrural_01", hash = 0x6D22857B, outfits = 95 }, + [`s_m_m_ambientsdpolice_01`] = { model = "s_m_m_ambientsdpolice_01", hash = 0xA9AD1A7D, outfits = 44 }, + [`s_m_m_dispatchlawrural_01`] = { model = "s_m_m_dispatchlawrural_01", hash = 0xE9F4AB20, outfits = 65 }, + [`s_m_m_dispatchleaderpolice_01`] = { model = "s_m_m_dispatchleaderpolice_01", hash = 0x7E16EC8D, outfits = 20 }, + [`s_m_m_dispatchpolice_01`] = { model = "s_m_m_dispatchpolice_01", hash = 0xFFBABBF9, outfits = 40 }, + [`s_m_m_marshallsrural_01`] = { model = "s_m_m_marshallsrural_01", hash = 0x3141A535, outfits = 33 }, + [`s_m_m_pinlaw_01`] = { model = "s_m_m_pinlaw_01", hash = 0x2BFB9F8F, outfits = 55 }, + [`s_m_m_valdeputy_01`] = { model = "s_m_m_valdeputy_01", hash = 0xF4B4127A, outfits = 20 }, } Peds.Multiplayer = { - [0xF5C1611E] = { model = "mp_male", hash = 0xF5C1611E, outfits = 138 }, - [0xA7AF20C0] = { model = "mp_female", hash = 0xA7AF20C0, outfits = 120 }, - [0x9775AA11] = { model = "mp_asntrk_elysianpool_males_01", hash = 0x9775AA11, outfits = 6 }, - [0xA8D76FEE] = { model = "mp_asntrk_grizzlieswest_males_01", hash = 0xA8D76FEE, outfits = 6 }, - [0x6F3BC4E1] = { model = "mp_asntrk_hagenorchard_males_01", hash = 0x6F3BC4E1, outfits = 6 }, - [0xE9C4EF73] = { model = "mp_asntrk_isabella_males_01", hash = 0xE9C4EF73, outfits = 6 }, - [0x61227303] = { model = "mp_asntrk_talltrees_males_01", hash = 0x61227303, outfits = 6 }, - [0xE30D07F8] = { model = "mp_asn_benedictpoint_females_01", hash = 0xE30D07F8, outfits = 1 }, - [0x8F4385F4] = { model = "mp_asn_benedictpoint_males_01", hash = 0x8F4385F4, outfits = 6 }, - [0x9A33030D] = { model = "mp_asn_blackwater_males_01", hash = 0x9A33030D, outfits = 6 }, - [0xFF2ED4F7] = { model = "mp_asn_braithwaitemanor_males_01", hash = 0xFF2ED4F7, outfits = 2 }, - [0xA6EFA47E] = { model = "mp_asn_braithwaitemanor_males_02", hash = 0xA6EFA47E, outfits = 4 }, - [0xA1A899F0] = { model = "mp_asn_braithwaitemanor_males_03", hash = 0xA1A899F0, outfits = 5 }, - [0x157604BC] = { model = "mp_asn_civilwarfort_males_01", hash = 0x157604BC, outfits = 6 }, - [0x3A31D8F5] = { model = "mp_asn_gaptoothbreach_males_01", hash = 0x3A31D8F5, outfits = 6 }, - [0x83DD3196] = { model = "mp_asn_pikesbasin_males_01", hash = 0x83DD3196, outfits = 5 }, - [0x75D3315F] = { model = "mp_asn_sdpolicestation_males_01", hash = 0x75D3315F, outfits = 6 }, - [0xA04152A6] = { model = "mp_asn_sdwedding_females_01", hash = 0xA04152A6, outfits = 3 }, - [0xEB1EA62E] = { model = "mp_asn_sdwedding_males_01", hash = 0xEB1EA62E, outfits = 5 }, - [0x4B40DFF1] = { model = "mp_asn_shadybelle_females_01", hash = 0x4B40DFF1, outfits = 1 }, - [0xBAD040F0] = { model = "mp_asn_stillwater_males_01", hash = 0xBAD040F0, outfits = 6 }, - [0x586000CF] = { model = "MP_A_C_HORSECORPSE_01", hash = 0x586000CF, outfits = 16 }, - [0xEE6C00F6] = { model = "mp_a_f_m_cardgameplayers_01", hash = 0xEE6C00F6, outfits = 40 }, - [0x37DF19AF] = { model = "MP_A_F_M_UniCorpse_01", hash = 0x37DF19AF, outfits = 44 }, - [0xC7FDE9D0] = { model = "mp_a_m_m_laboruprisers_01", hash = 0xC7FDE9D0, outfits = 53 }, - [0x82868F58] = { model = "MP_A_M_M_UniCorpse_01", hash = 0x82868F58, outfits = 142 }, - [0x79E64F11] = { model = "mp_campdef_bluewater_females_01", hash = 0x79E64F11, outfits = 1 }, - [0xD26B0098] = { model = "mp_campdef_bluewater_males_01", hash = 0xD26B0098, outfits = 1 }, - [0x82228527] = { model = "mp_campdef_chollasprings_females_01", hash = 0x82228527, outfits = 1 }, - [0xB128F981] = { model = "mp_campdef_chollasprings_males_01", hash = 0xB128F981, outfits = 2 }, - [0x91ACA5B0] = { model = "mp_campdef_eastnewhanover_females_01", hash = 0x91ACA5B0, outfits = 1 }, - [0x4F356F45] = { model = "mp_campdef_eastnewhanover_males_01", hash = 0x4F356F45, outfits = 1 }, - [0xF1C2D3BB] = { model = "mp_campdef_gaptoothbreach_females_01", hash = 0xF1C2D3BB, outfits = 1 }, - [0xAAD4292A] = { model = "mp_campdef_gaptoothbreach_males_01", hash = 0xAAD4292A, outfits = 3 }, - [0x219743D5] = { model = "mp_campdef_gaptoothridge_females_01", hash = 0x219743D5, outfits = 1 }, - [0xB5FEE612] = { model = "mp_campdef_gaptoothridge_males_01", hash = 0xB5FEE612, outfits = 1 }, - [0xC1B6341E] = { model = "mp_campdef_greatplains_males_01", hash = 0xC1B6341E, outfits = 2 }, - [0x543F0860] = { model = "mp_campdef_grizzlies_males_01", hash = 0x543F0860, outfits = 2 }, - [0x476306CA] = { model = "mp_campdef_heartlands1_males_01", hash = 0x476306CA, outfits = 2 }, - [0xCF202B72] = { model = "mp_campdef_heartlands2_females_01", hash = 0xCF202B72, outfits = 1 }, - [0x3B46C480] = { model = "mp_campdef_heartlands2_males_01", hash = 0x3B46C480, outfits = 2 }, - [0x4166D3EF] = { model = "mp_campdef_hennigans_females_01", hash = 0x4166D3EF, outfits = 1 }, - [0x62593BC8] = { model = "mp_campdef_hennigans_males_01", hash = 0x62593BC8, outfits = 1 }, - [0xF5A25A7E] = { model = "mp_campdef_littlecreek_females_01", hash = 0xF5A25A7E, outfits = 1 }, - [0xF4CAA01F] = { model = "mp_campdef_littlecreek_males_01", hash = 0xF4CAA01F, outfits = 1 }, - [0xE572A054] = { model = "mp_campdef_radleyspasture_females_01", hash = 0xE572A054, outfits = 1 }, - [0x4A465245] = { model = "mp_campdef_radleyspasture_males_01", hash = 0x4A465245, outfits = 1 }, - [0xC4DB3101] = { model = "mp_campdef_riobravo_females_01", hash = 0xC4DB3101, outfits = 1 }, - [0x5CE15A39] = { model = "mp_campdef_riobravo_males_01", hash = 0x5CE15A39, outfits = 1 }, - [0xEA68B402] = { model = "mp_campdef_roanoke_females_01", hash = 0xEA68B402, outfits = 1 }, - [0x24673B50] = { model = "mp_campdef_roanoke_males_01", hash = 0x24673B50, outfits = 1 }, - [0x5608A222] = { model = "mp_campdef_talltrees_females_01", hash = 0x5608A222, outfits = 1 }, - [0xD429EEF9] = { model = "mp_campdef_talltrees_males_01", hash = 0xD429EEF9, outfits = 1 }, - [0xB05F95C2] = { model = "mp_campdef_tworocks_females_01", hash = 0xB05F95C2, outfits = 2 }, - [0x20D9D1FF] = { model = "mp_chu_kid_armadillo_males_01", hash = 0x20D9D1FF, outfits = 4 }, - [0xD081C01E] = { model = "mp_chu_kid_diabloridge_males_01", hash = 0xD081C01E, outfits = 4 }, - [0xC45D87AE] = { model = "mp_chu_kid_emrstation_males_01", hash = 0xC45D87AE, outfits = 4 }, - [0xD5B76DF0] = { model = "mp_chu_kid_greatplains2_males_01", hash = 0xD5B76DF0, outfits = 4 }, - [0xDBB0CB10] = { model = "mp_chu_kid_greatplains_males_01", hash = 0xDBB0CB10, outfits = 4 }, - [0x4E7A9BCF] = { model = "mp_chu_kid_heartlands_males_01", hash = 0x4E7A9BCF, outfits = 4 }, - [0xBF8EE294] = { model = "mp_chu_kid_lagras_males_01", hash = 0xBF8EE294, outfits = 4 }, - [0x26D5E34F] = { model = "mp_chu_kid_lemoyne_females_01", hash = 0x26D5E34F, outfits = 2 }, - [0x24E340FC] = { model = "mp_chu_kid_lemoyne_males_01", hash = 0x24E340FC, outfits = 2 }, - [0xCE06BE54] = { model = "mp_chu_kid_recipient_males_01", hash = 0xCE06BE54, outfits = 22 }, - [0x562372BD] = { model = "mp_chu_kid_rhodes_males_01", hash = 0x562372BD, outfits = 4 }, - [0xF7B029BE] = { model = "mp_chu_kid_saintdenis_females_01", hash = 0xF7B029BE, outfits = 1 }, - [0xF21F12DE] = { model = "mp_chu_kid_saintdenis_males_01", hash = 0xF21F12DE, outfits = 3 }, - [0xBB574D98] = { model = "mp_chu_kid_scarlettmeadows_males_01", hash = 0xBB574D98, outfits = 4 }, - [0x199209F3] = { model = "mp_chu_kid_tumbleweed_males_01", hash = 0x199209F3, outfits = 4 }, - [0xB59A184C] = { model = "mp_chu_kid_valentine_males_01", hash = 0xB59A184C, outfits = 4 }, - [0x91359C49] = { model = "mp_chu_rob_ambarino_males_01", hash = 0x91359C49, outfits = 3 }, - [0xE8B7EB0E] = { model = "mp_chu_rob_annesburg_males_01", hash = 0xE8B7EB0E, outfits = 4 }, - [0xED566DA8] = { model = "mp_chu_rob_benedictpoint_females_01", hash = 0xED566DA8, outfits = 2 }, - [0x2361B4FF] = { model = "mp_chu_rob_benedictpoint_males_01", hash = 0x2361B4FF, outfits = 2 }, - [0x4DF62143] = { model = "mp_chu_rob_blackwater_males_01", hash = 0x4DF62143, outfits = 4 }, - [0xD1DD5373] = { model = "mp_chu_rob_caligahall_males_01", hash = 0xD1DD5373, outfits = 4 }, - [0xE910B9B1] = { model = "mp_chu_rob_coronado_males_01", hash = 0xE910B9B1, outfits = 4 }, - [0xEEB13746] = { model = "mp_chu_rob_cumberland_males_01", hash = 0xEEB13746, outfits = 4 }, - [0x3D8A8881] = { model = "mp_chu_rob_fortmercer_females_01", hash = 0x3D8A8881, outfits = 2 }, - [0xA3C40220] = { model = "mp_chu_rob_fortmercer_males_01", hash = 0xA3C40220, outfits = 2 }, - [0x2B7FB829] = { model = "mp_chu_rob_greenhollow_males_01", hash = 0x2B7FB829, outfits = 4 }, - [0x900768E4] = { model = "mp_chu_rob_macfarlanes_females_01", hash = 0x900768E4, outfits = 2 }, - [0x0C11A638] = { model = "mp_chu_rob_macfarlanes_males_01", hash = 0x0C11A638, outfits = 2 }, - [0xA23C0877] = { model = "mp_chu_rob_macleans_males_01", hash = 0xA23C0877, outfits = 4 }, - [0x71F63119] = { model = "mp_chu_rob_millesani_males_01", hash = 0x71F63119, outfits = 4 }, - [0xA33F8565] = { model = "mp_chu_rob_montanariver_males_01", hash = 0xA33F8565, outfits = 4 }, - [0xAE81DF28] = { model = "mp_chu_rob_paintedsky_males_01", hash = 0xAE81DF28, outfits = 4 }, - [0x26141D84] = { model = "mp_chu_rob_rathskeller_males_01", hash = 0x26141D84, outfits = 4 }, - [0xB5796996] = { model = "mp_chu_rob_recipient_males_01", hash = 0xB5796996, outfits = 33 }, - [0x67C9491C] = { model = "mp_chu_rob_rhodes_males_01", hash = 0x67C9491C, outfits = 4 }, - [0x37AA104A] = { model = "mp_chu_rob_strawberry_males_01", hash = 0x37AA104A, outfits = 4 }, - [0xDEC0EF74] = { model = "mp_clay", hash = 0xDEC0EF74, outfits = 1 }, - [0x36C085D8] = { model = "mp_convoy_recipient_females_01", hash = 0x36C085D8, outfits = 2 }, - [0xE5ED64CE] = { model = "mp_convoy_recipient_males_01", hash = 0xE5ED64CE, outfits = 19 }, - [0xD2AFC802] = { model = "mp_de_u_f_m_bigvalley_01", hash = 0xD2AFC802, outfits = 1 }, - [0xEB7C292D] = { model = "mp_de_u_f_m_bluewatermarsh_01", hash = 0xEB7C292D, outfits = 1 }, - [0xC615E4DE] = { model = "mp_de_u_f_m_braithwaite_01", hash = 0xC615E4DE, outfits = 2 }, - [0xFF7134DC] = { model = "mp_de_u_f_m_doverhill_01", hash = 0xFF7134DC, outfits = 1 }, - [0xDD895162] = { model = "mp_de_u_f_m_greatplains_01", hash = 0xDD895162, outfits = 1 }, - [0xCB42A78F] = { model = "mp_de_u_f_m_hangingrock_01", hash = 0xCB42A78F, outfits = 1 }, - [0x410D82BF] = { model = "mp_de_u_f_m_heartlands_01", hash = 0x410D82BF, outfits = 1 }, - [0x8841B9D2] = { model = "mp_de_u_f_m_hennigansstead_01", hash = 0x8841B9D2, outfits = 2 }, - [0xC50A2A9C] = { model = "mp_de_u_f_m_silentstead_01", hash = 0xC50A2A9C, outfits = 1 }, - [0xE079768D] = { model = "mp_de_u_m_m_aurorabasin_01", hash = 0xE079768D, outfits = 1 }, - [0x1A06F260] = { model = "mp_de_u_m_m_barrowlagoon_01", hash = 0x1A06F260, outfits = 1 }, - [0x30F2FBC2] = { model = "mp_de_u_m_m_bigvalleygraves_01", hash = 0x30F2FBC2, outfits = 1 }, - [0x54666FF4] = { model = "mp_de_u_m_m_centralunionrr_01", hash = 0x54666FF4, outfits = 1 }, - [0x6965178B] = { model = "mp_de_u_m_m_pleasance_01", hash = 0x6965178B, outfits = 1 }, - [0x7C77D19F] = { model = "mp_de_u_m_m_rileyscharge_01", hash = 0x7C77D19F, outfits = 1 }, - [0x7AA6CC47] = { model = "mp_de_u_m_m_vanhorn_01", hash = 0x7AA6CC47, outfits = 1 }, - [0x196B59E0] = { model = "mp_de_u_m_m_westernhomestead_01", hash = 0x196B59E0, outfits = 1 }, - [0x1029BAEF] = { model = "mp_dr_u_f_m_bayougatorfood_01", hash = 0x1029BAEF, outfits = 1 }, - [0x803C4357] = { model = "mp_dr_u_f_m_bigvalleycave_01", hash = 0x803C4357, outfits = 1 }, - [0xE782AB5E] = { model = "mp_dr_u_f_m_bigvalleycliff_01", hash = 0xE782AB5E, outfits = 1 }, - [0x5A8DED76] = { model = "mp_dr_u_f_m_bluewaterkidnap_01", hash = 0x5A8DED76, outfits = 1 }, - [0xA3696C2E] = { model = "mp_dr_u_f_m_colterbandits_01", hash = 0xA3696C2E, outfits = 1 }, - [0x911B4792] = { model = "mp_dr_u_f_m_colterbandits_02", hash = 0x911B4792, outfits = 1 }, - [0xB9E9E8B1] = { model = "mp_dr_u_f_m_missingfisherman_01", hash = 0xB9E9E8B1, outfits = 1 }, - [0x87AB8435] = { model = "mp_dr_u_f_m_missingfisherman_02", hash = 0x87AB8435, outfits = 1 }, - [0xA4C6684C] = { model = "mp_dr_u_f_m_mistakenbounties_01", hash = 0xA4C6684C, outfits = 1 }, - [0x8C3740DD] = { model = "mp_dr_u_f_m_plaguetown_01", hash = 0x8C3740DD, outfits = 1 }, - [0xEF81CFCA] = { model = "mp_dr_u_f_m_quakerscove_01", hash = 0xEF81CFCA, outfits = 1 }, - [0xFD486B57] = { model = "mp_dr_u_f_m_quakerscove_02", hash = 0xFD486B57, outfits = 1 }, - [0x20A8A154] = { model = "mp_dr_u_f_m_sdgraveyard_01", hash = 0x20A8A154, outfits = 1 }, - [0xC7DE347E] = { model = "mp_dr_u_m_m_bigvalleycave_01", hash = 0xC7DE347E, outfits = 1 }, - [0xD9E86551] = { model = "mp_dr_u_m_m_bigvalleycliff_01", hash = 0xD9E86551, outfits = 1 }, - [0xA445B5D7] = { model = "mp_dr_u_m_m_bluewaterkidnap_01", hash = 0xA445B5D7, outfits = 1 }, - [0x23135A75] = { model = "mp_dr_u_m_m_canoeescape_01", hash = 0x23135A75, outfits = 1 }, - [0x322BCA91] = { model = "mp_dr_u_m_m_hwyrobbery_01", hash = 0x322BCA91, outfits = 1 }, - [0x103F4CF2] = { model = "mp_dr_u_m_m_mistakenbounties_01", hash = 0x103F4CF2, outfits = 1 }, - [0xD63E91BF] = { model = "mp_dr_u_m_m_pikesbasin_01", hash = 0xD63E91BF, outfits = 1 }, - [0xF2CDCADD] = { model = "mp_dr_u_m_m_pikesbasin_02", hash = 0xF2CDCADD, outfits = 1 }, - [0x59D8AB63] = { model = "mp_dr_u_m_m_plaguetown_01", hash = 0x59D8AB63, outfits = 1 }, - [0x9A8AF99B] = { model = "mp_dr_u_m_m_roanokestandoff_01", hash = 0x9A8AF99B, outfits = 1 }, - [0xE80A6258] = { model = "mp_dr_u_m_m_sdgraveyard_01", hash = 0xE80A6258, outfits = 1 }, - [0xC33224A7] = { model = "mp_dr_u_m_m_sdmugging_01", hash = 0xC33224A7, outfits = 1 }, - [0x957FC943] = { model = "mp_dr_u_m_m_sdmugging_02", hash = 0x957FC943, outfits = 1 }, - [0xAA266E1C] = { model = "mp_freeroam_tut_females_01", hash = 0xAA266E1C, outfits = 5 }, - [0x217A0594] = { model = "mp_freeroam_tut_males_01", hash = 0x217A0594, outfits = 8 }, - [0xC36F9B8C] = { model = "mp_gunvoutd2_males_01", hash = 0xC36F9B8C, outfits = 11 }, - [0x3D6054E3] = { model = "mp_gunvoutd3_bht_01", hash = 0x3D6054E3, outfits = 2 }, - [0xAD674654] = { model = "mp_gunvoutd3_males_01", hash = 0xAD674654, outfits = 3 }, - [0x556ADA44] = { model = "mp_g_f_m_laperlegang_01", hash = 0x556ADA44, outfits = 26 }, - [0x64F76F7E] = { model = "mp_g_f_m_laperlevips_01", hash = 0x64F76F7E, outfits = 13 }, - [0xF7A82771] = { model = "mp_g_f_m_owlhootfamily_01", hash = 0xF7A82771, outfits = 17 }, - [0x9E00472E] = { model = "mp_g_m_m_armoredjuggernauts_01", hash = 0x9E00472E, outfits = 12 }, - [0xC6BEFCC7] = { model = "mp_g_m_m_bountyhunters_01", hash = 0xC6BEFCC7, outfits = 50 }, - [0x8496557A] = { model = "mp_g_m_m_owlhootfamily_01", hash = 0x8496557A, outfits = 25 }, - [0xC848BCB9] = { model = "mp_g_m_m_redbengang_01", hash = 0xC848BCB9, outfits = 38 }, - [0xBC696111] = { model = "mp_g_m_m_uniafricanamericangang_01", hash = 0xBC696111, outfits = 42 }, - [0xD9D85AA4] = { model = "mp_g_m_m_unibanditos_01", hash = 0xD9D85AA4, outfits = 141 }, - [0xC0A5F6FB] = { model = "mp_g_m_m_unibraithwaites_01", hash = 0xC0A5F6FB, outfits = 40 }, - [0x079D07F0] = { model = "mp_g_m_m_unibrontegoons_01", hash = 0x079D07F0, outfits = 55 }, - [0xB6A13AB3] = { model = "mp_g_m_m_unicornwallgoons_01", hash = 0xB6A13AB3, outfits = 60 }, - [0xACB79D83] = { model = "mp_g_m_m_unicriminals_01", hash = 0xACB79D83, outfits = 88 }, - [0xFE0F4031] = { model = "mp_g_m_m_unicriminals_02", hash = 0xFE0F4031, outfits = 67 }, - [0x6B5CA98B] = { model = "mp_g_m_m_uniduster_01", hash = 0x6B5CA98B, outfits = 111 }, - [0x59528577] = { model = "mp_g_m_m_uniduster_02", hash = 0x59528577, outfits = 53 }, - [0x871160F4] = { model = "mp_g_m_m_uniduster_03", hash = 0x871160F4, outfits = 30 }, - [0x711F7A23] = { model = "mp_g_m_m_unigrays_01", hash = 0x711F7A23, outfits = 45 }, - [0x013268A4] = { model = "mp_g_m_m_uniinbred_01", hash = 0x013268A4, outfits = 67 }, - [0xD42E4CA3] = { model = "mp_g_m_m_unilangstonboys_01", hash = 0xD42E4CA3, outfits = 35 }, - [0xAEB6BF6F] = { model = "mp_g_m_m_unimountainmen_01", hash = 0xAEB6BF6F, outfits = 80 }, - [0x90E48CB5] = { model = "mp_g_m_m_uniranchers_01", hash = 0x90E48CB5, outfits = 61 }, - [0xA45E623D] = { model = "mp_g_m_m_uniswamp_01", hash = 0xA45E623D, outfits = 30 }, - [0x17F4271B] = { model = "mp_g_m_o_uniexconfeds_01", hash = 0x17F4271B, outfits = 64 }, - [0x66AB70C0] = { model = "mp_g_m_y_uniexconfeds_01", hash = 0x66AB70C0, outfits = 63 }, - [0x74A42620] = { model = "mp_horse_owlhootvictim_01", hash = 0x74A42620, outfits = 2 }, - [0xA4805CEF] = { model = "mp_intercept_recipient_females_01", hash = 0xA4805CEF, outfits = 8 }, - [0x4FFF04AC] = { model = "mp_intercept_recipient_males_01", hash = 0x4FFF04AC, outfits = 29 }, - [0xC7897D53] = { model = "mp_intro_females_01", hash = 0xC7897D53, outfits = 7 }, - [0x1AC64C7E] = { model = "mp_intro_males_01", hash = 0x1AC64C7E, outfits = 15 }, - [0x9CF21703] = { model = "mp_jailbreak_males_01", hash = 0x9CF21703, outfits = 4 }, - [0xD5A51ED9] = { model = "mp_jailbreak_recipient_males_01", hash = 0xD5A51ED9, outfits = 6 }, - [0x1A94D3F2] = { model = "mp_lbt_m3_males_01", hash = 0x1A94D3F2, outfits = 8 }, - [0xB2CBE1E8] = { model = "mp_lbt_m6_females_01", hash = 0xB2CBE1E8, outfits = 2 }, - [0xF08C75E6] = { model = "mp_lbt_m6_males_01", hash = 0xF08C75E6, outfits = 5 }, - [0xD304CBEC] = { model = "mp_lbt_m7_males_01", hash = 0xD304CBEC, outfits = 8 }, - [0x265C2EDE] = { model = "mp_oth_recipient_males_01", hash = 0x265C2EDE, outfits = 5 }, - [0xE1E49865] = { model = "mp_outlaw1_males_01", hash = 0xE1E49865, outfits = 6 }, - [0x2FDCB16A] = { model = "mp_outlaw2_males_01", hash = 0x2FDCB16A, outfits = 1 }, - [0x7CCE73C7] = { model = "mp_post_multipackage_females_01", hash = 0x7CCE73C7, outfits = 10 }, - [0x9BA2E621] = { model = "mp_post_multipackage_males_01", hash = 0x9BA2E621, outfits = 34 }, - [0xF6846F69] = { model = "mp_post_multirelay_females_01", hash = 0xF6846F69, outfits = 5 }, - [0x49302DBB] = { model = "mp_post_multirelay_males_01", hash = 0x49302DBB, outfits = 20 }, - [0xBAC09F5F] = { model = "mp_post_relay_females_01", hash = 0xBAC09F5F, outfits = 1 }, - [0x6D8D4CA6] = { model = "mp_post_relay_males_01", hash = 0x6D8D4CA6, outfits = 23 }, - [0x2C7D2748] = { model = "mp_predator", hash = 0x2C7D2748, outfits = 8 }, - [0x9BCC5B80] = { model = "mp_prsn_asn_males_01", hash = 0x9BCC5B80, outfits = 14 }, - [0xD050B3FD] = { model = "mp_recover_recipient_females_01", hash = 0xD050B3FD, outfits = 1 }, - [0xFEE21E87] = { model = "mp_recover_recipient_males_01", hash = 0xFEE21E87, outfits = 5 }, - [0x8A118776] = { model = "mp_repoboat_recipient_females_01", hash = 0x8A118776, outfits = 2 }, - [0x817E92C2] = { model = "mp_repoboat_recipient_males_01", hash = 0x817E92C2, outfits = 5 }, - [0x4852F2D1] = { model = "mp_repo_recipient_females_01", hash = 0x4852F2D1, outfits = 2 }, - [0x93A9A5FC] = { model = "mp_repo_recipient_males_01", hash = 0x93A9A5FC, outfits = 12 }, - [0xEED4DB96] = { model = "mp_rescue_bottletree_females_01", hash = 0xEED4DB96, outfits = 1 }, - [0x5530F95C] = { model = "mp_rescue_bottletree_males_01", hash = 0x5530F95C, outfits = 2 }, - [0x90008F71] = { model = "mp_rescue_colter_males_01", hash = 0x90008F71, outfits = 1 }, - [0x46FD1150] = { model = "mp_rescue_cratersacrifice_males_01", hash = 0x46FD1150, outfits = 2 }, - [0x2A503D51] = { model = "mp_rescue_heartlands_males_01", hash = 0x2A503D51, outfits = 1 }, - [0xBEA076E0] = { model = "mp_rescue_loftkidnap_males_01", hash = 0xBEA076E0, outfits = 1 }, - [0x8CAC82BE] = { model = "mp_rescue_lonniesshack_males_01", hash = 0x8CAC82BE, outfits = 3 }, - [0x36234B83] = { model = "mp_rescue_moonstone_males_01", hash = 0x36234B83, outfits = 1 }, - [0x74B18E0F] = { model = "mp_rescue_mtnmanshack_males_01", hash = 0x74B18E0F, outfits = 3 }, - [0xE63DF429] = { model = "mp_rescue_recipient_females_01", hash = 0xE63DF429, outfits = 1 }, - [0x1738A70F] = { model = "mp_rescue_recipient_males_01", hash = 0x1738A70F, outfits = 7 }, - [0xDA91092F] = { model = "mp_rescue_rivalshack_males_01", hash = 0xDA91092F, outfits = 2 }, - [0x10482CCC] = { model = "mp_rescue_scarlettmeadows_males_01", hash = 0x10482CCC, outfits = 1 }, - [0x01AC6CA3] = { model = "mp_rescue_sddogfight_females_01", hash = 0x01AC6CA3, outfits = 1 }, - [0x80AB3DA0] = { model = "mp_rescue_sddogfight_males_01", hash = 0x80AB3DA0, outfits = 1 }, - [0x89C49271] = { model = "mp_resupply_recipient_females_01", hash = 0x89C49271, outfits = 7 }, - [0x028C5916] = { model = "mp_resupply_recipient_males_01", hash = 0x028C5916, outfits = 11 }, - [0x340E6CFB] = { model = "mp_revenge1_males_01", hash = 0x340E6CFB, outfits = 3 }, - [0x89330281] = { model = "mp_re_animalattack_females_01", hash = 0x89330281, outfits = 4 }, - [0x2C1694A4] = { model = "mp_re_animalattack_males_01", hash = 0x2C1694A4, outfits = 4 }, - [0x9D90BC3C] = { model = "mp_re_duel_females_01", hash = 0x9D90BC3C, outfits = 4 }, - [0x34F02197] = { model = "mp_re_duel_males_01", hash = 0x34F02197, outfits = 4 }, - [0x7C6C7C1D] = { model = "mp_re_graverobber_females_01", hash = 0x7C6C7C1D, outfits = 1 }, - [0x55B73907] = { model = "mp_re_graverobber_males_01", hash = 0x55B73907, outfits = 1 }, - [0x263B0853] = { model = "mp_re_hobodog_females_01", hash = 0x263B0853, outfits = 2 }, - [0x401C6EC1] = { model = "mp_re_hobodog_males_01", hash = 0x401C6EC1, outfits = 4 }, - [0x45178DBF] = { model = "mp_re_kidnapped_females_01", hash = 0x45178DBF, outfits = 6 }, - [0x5E5607C3] = { model = "mp_re_kidnapped_males_01", hash = 0x5E5607C3, outfits = 6 }, - [0x5730F05E] = { model = "mp_re_photography_females_01", hash = 0x5730F05E, outfits = 2 }, - [0x65D60DA8] = { model = "mp_re_photography_females_02", hash = 0x65D60DA8, outfits = 2 }, - [0x8AE666DA] = { model = "mp_re_photography_males_01", hash = 0x8AE666DA, outfits = 2 }, - [0x98D1F6B3] = { model = "mp_re_rivalcollector_males_01", hash = 0x98D1F6B3, outfits = 20 }, - [0xFA0BF8E9] = { model = "mp_re_runawaywagon_females_01", hash = 0xFA0BF8E9, outfits = 3 }, - [0xD99C62B9] = { model = "mp_re_runawaywagon_males_01", hash = 0xD99C62B9, outfits = 3 }, - [0x3EB8315D] = { model = "mp_re_treasurehunter_females_01", hash = 0x3EB8315D, outfits = 2 }, - [0x36754ABE] = { model = "mp_re_treasurehunter_males_01", hash = 0x36754ABE, outfits = 2 }, - [0x40C07582] = { model = "mp_re_wildman_males_01", hash = 0x40C07582, outfits = 1 }, - [0x6D8072BA] = { model = "mp_stealboat_recipient_males_01", hash = 0x6D8072BA, outfits = 10 }, - [0x6BF26D7E] = { model = "mp_stealhorse_recipient_males_01", hash = 0x6BF26D7E, outfits = 29 }, - [0x05BC439E] = { model = "mp_stealwagon_recipient_males_01", hash = 0x05BC439E, outfits = 22 }, - [0x0C890518] = { model = "mp_s_m_m_cornwallguard_01", hash = 0x0C890518, outfits = 32 }, - [0xAD87E95D] = { model = "mp_s_m_m_pinlaw_01", hash = 0xAD87E95D, outfits = 40 }, - [0xE82A9EF5] = { model = "mp_tattoo_female", hash = 0xE82A9EF5, outfits = 1 }, - [0x02EC2BF7] = { model = "mp_tattoo_male", hash = 0x02EC2BF7, outfits = 1 }, - [0x30B5B617] = { model = "mp_u_f_m_bountytarget_001", hash = 0x30B5B617, outfits = 2 }, - [0x8AE66A77] = { model = "mp_u_f_m_bountytarget_002", hash = 0x8AE66A77, outfits = 2 }, - [0x53507B4C] = { model = "mp_u_f_m_bountytarget_003", hash = 0x53507B4C, outfits = 2 }, - [0x241D9CE7] = { model = "mp_u_f_m_bountytarget_004", hash = 0x241D9CE7, outfits = 2 }, - [0xE5D02049] = { model = "mp_u_f_m_bountytarget_005", hash = 0xE5D02049, outfits = 2 }, - [0x389945DE] = { model = "mp_u_f_m_bountytarget_006", hash = 0x389945DE, outfits = 2 }, - [0x06F56293] = { model = "mp_u_f_m_bountytarget_007", hash = 0x06F56293, outfits = 2 }, - [0xD8E38670] = { model = "mp_u_f_m_bountytarget_008", hash = 0xD8E38670, outfits = 2 }, - [0xABA92BFC] = { model = "mp_u_f_m_bountytarget_009", hash = 0xABA92BFC, outfits = 2 }, - [0x1C1C1174] = { model = "mp_u_f_m_bountytarget_010", hash = 0x1C1C1174, outfits = 2 }, - [0x2DE1B4FF] = { model = "mp_u_f_m_bountytarget_011", hash = 0x2DE1B4FF, outfits = 2 }, - [0x3F97D86B] = { model = "MP_U_F_M_BOUNTYTARGET_012", hash = 0x3F97D86B, outfits = 1 }, - [0x4F947864] = { model = "mp_u_f_m_bountytarget_013", hash = 0x4F947864, outfits = 2 }, - [0xD56E8422] = { model = "mp_u_f_m_bountytarget_014", hash = 0xD56E8422, outfits = 2 }, - [0x0EF547D0] = { model = "mp_u_f_m_gunslinger3_rifleman_02", hash = 0x0EF547D0, outfits = 1 }, - [0xC9E8C3C3] = { model = "mp_u_f_m_gunslinger3_sharpshooter_01", hash = 0xC9E8C3C3, outfits = 1 }, - [0x96A8968C] = { model = "mp_u_f_m_laperlevipmasked_01", hash = 0x96A8968C, outfits = 1 }, - [0xCE6085F7] = { model = "mp_u_f_m_laperlevipmasked_02", hash = 0xCE6085F7, outfits = 1 }, - [0xDFA9A889] = { model = "mp_u_f_m_laperlevipmasked_03", hash = 0xDFA9A889, outfits = 1 }, - [0xA3F030F3] = { model = "mp_u_f_m_laperlevipmasked_04", hash = 0xA3F030F3, outfits = 1 }, - [0x28F501C1] = { model = "mp_u_f_m_laperlevipunmasked_01", hash = 0x28F501C1, outfits = 1 }, - [0x3A3AA44C] = { model = "mp_u_f_m_laperlevipunmasked_02", hash = 0x3A3AA44C, outfits = 1 }, - [0x4CB3C93E] = { model = "mp_u_f_m_laperlevipunmasked_03", hash = 0x4CB3C93E, outfits = 1 }, - [0x5EEE6DB3] = { model = "mp_u_f_m_laperlevipunmasked_04", hash = 0x5EEE6DB3, outfits = 1 }, - [0x2CE57EFF] = { model = "mp_u_f_m_lbt_owlhootvictim_01", hash = 0x2CE57EFF, outfits = 1 }, - [0x507A33A6] = { model = "mp_u_f_m_legendarybounty_001", hash = 0x507A33A6, outfits = 1 }, - [0x88A423FD] = { model = "mp_u_f_m_legendarybounty_002", hash = 0x88A423FD, outfits = 8 }, - [0xA1EF7AAF] = { model = "mp_u_f_m_outlaw3_warner_01", hash = 0xA1EF7AAF, outfits = 1 }, - [0x33BC1E4A] = { model = "mp_u_f_m_outlaw3_warner_02", hash = 0x33BC1E4A, outfits = 1 }, - [0xC679DED7] = { model = "mp_u_f_m_revenge2_passerby_01", hash = 0xC679DED7, outfits = 1 }, - [0x2B38C3F4] = { model = "mp_u_m_m_armsheriff_01", hash = 0x2B38C3F4, outfits = 1 }, - [0x66B75A18] = { model = "mp_u_m_m_bountyinjuredman_01", hash = 0x66B75A18, outfits = 1 }, - [0xAE2D0F40] = { model = "mp_u_m_m_bountytarget_001", hash = 0xAE2D0F40, outfits = 2 }, - [0x9066D3B0] = { model = "mp_u_m_m_bountytarget_002", hash = 0x9066D3B0, outfits = 2 }, - [0xA095740D] = { model = "mp_u_m_m_bountytarget_003", hash = 0xA095740D, outfits = 2 }, - [0xF314990E] = { model = "mp_u_m_m_bountytarget_005", hash = 0xF314990E, outfits = 2 }, - [0xD7BB625C] = { model = "mp_u_m_m_bountytarget_008", hash = 0xD7BB625C, outfits = 2 }, - [0x5C366B54] = { model = "mp_u_m_m_bountytarget_009", hash = 0x5C366B54, outfits = 2 }, - [0x9710DFFC] = { model = "mp_u_m_m_bountytarget_010", hash = 0x9710DFFC, outfits = 2 }, - [0xF74DA078] = { model = "mp_u_m_m_bountytarget_011", hash = 0xF74DA078, outfits = 2 }, - [0xE98404E5] = { model = "mp_u_m_m_bountytarget_012", hash = 0xE98404E5, outfits = 2 }, - [0xDE80EEDF] = { model = "mp_u_m_m_bountytarget_013", hash = 0xDE80EEDF, outfits = 2 }, - [0xCDBA4D52] = { model = "mp_u_m_m_bountytarget_014", hash = 0xCDBA4D52, outfits = 2 }, - [0x00C8B356] = { model = "mp_u_m_m_bountytarget_015", hash = 0x00C8B356, outfits = 2 }, - [0xEF8B10DB] = { model = "mp_u_m_m_bountytarget_016", hash = 0xEF8B10DB, outfits = 2 }, - [0xE479FAB9] = { model = "mp_u_m_m_bountytarget_017", hash = 0xE479FAB9, outfits = 2 }, - [0xD6375E34] = { model = "mp_u_m_m_bountytarget_018", hash = 0xD6375E34, outfits = 2 }, - [0x37DC2180] = { model = "mp_u_m_m_bountytarget_019", hash = 0x37DC2180, outfits = 2 }, - [0x67D9F5A3] = { model = "mp_u_m_m_bountytarget_020", hash = 0x67D9F5A3, outfits = 2 }, - [0x34228E35] = { model = "mp_u_m_m_bountytarget_021", hash = 0x34228E35, outfits = 2 }, - [0x0B61BCAC] = { model = "mp_u_m_m_bountytarget_022", hash = 0x0B61BCAC, outfits = 2 }, - [0x59BCD969] = { model = "mp_u_m_m_bountytarget_023", hash = 0x59BCD969, outfits = 2 }, - [0x0D244031] = { model = "mp_u_m_m_bountytarget_024", hash = 0x0D244031, outfits = 2 }, - [0xFB5D1CA3] = { model = "mp_u_m_m_bountytarget_025", hash = 0xFB5D1CA3, outfits = 2 }, - [0xB1460876] = { model = "mp_u_m_m_bountytarget_026", hash = 0xB1460876, outfits = 2 }, - [0xC10827FA] = { model = "mp_u_m_m_bountytarget_027", hash = 0xC10827FA, outfits = 2 }, - [0xD5E2D1AF] = { model = "mp_u_m_m_bountytarget_028", hash = 0xD5E2D1AF, outfits = 2 }, - [0xE39BED21] = { model = "mp_u_m_m_bountytarget_029", hash = 0xE39BED21, outfits = 2 }, - [0xF41B8F40] = { model = "mp_u_m_m_bountytarget_030", hash = 0xF41B8F40, outfits = 2 }, - [0x55F252F4] = { model = "mp_u_m_m_bountytarget_031", hash = 0x55F252F4, outfits = 2 }, - [0x10AAC85E] = { model = "mp_u_m_m_bountytarget_032", hash = 0x10AAC85E, outfits = 2 }, - [0x02682BD9] = { model = "mp_u_m_m_bountytarget_033", hash = 0x02682BD9, outfits = 2 }, - [0xAD5581B5] = { model = "mp_u_m_m_bountytarget_034", hash = 0xAD5581B5, outfits = 2 }, - [0x1F32E56E] = { model = "mp_u_m_m_bountytarget_035", hash = 0x1F32E56E, outfits = 2 }, - [0xD96359D0] = { model = "mp_u_m_m_bountytarget_036", hash = 0xD96359D0, outfits = 2 }, - [0xCBCEBEA7] = { model = "mp_u_m_m_bountytarget_037", hash = 0xCBCEBEA7, outfits = 2 }, - [0x7618133B] = { model = "mp_u_m_m_bountytarget_038", hash = 0x7618133B, outfits = 2 }, - [0xE8277758] = { model = "mp_u_m_m_bountytarget_039", hash = 0xE8277758, outfits = 2 }, - [0x2D8122D2] = { model = "mp_u_m_m_bountytarget_044", hash = 0x2D8122D2, outfits = 2 }, - [0x3F4BC667] = { model = "mp_u_m_m_bountytarget_045", hash = 0x3F4BC667, outfits = 2 }, - [0x519CEB09] = { model = "mp_u_m_m_bountytarget_046", hash = 0x519CEB09, outfits = 2 }, - [0xE055886C] = { model = "mp_u_m_m_bountytarget_047", hash = 0xE055886C, outfits = 2 }, - [0xF032A826] = { model = "mp_u_m_m_bountytarget_048", hash = 0xF032A826, outfits = 2 }, - [0x05EFD3A0] = { model = "mp_u_m_m_bountytarget_049", hash = 0x05EFD3A0, outfits = 2 }, - [0x48B93642] = { model = "mp_u_m_m_bountytarget_050", hash = 0x48B93642, outfits = 2 }, - [0x968351D5] = { model = "mp_u_m_m_bountytarget_051", hash = 0x968351D5, outfits = 2 }, - [0x6A34F939] = { model = "mp_u_m_m_bountytarget_052", hash = 0x6A34F939, outfits = 2 }, - [0x381594FB] = { model = "mp_u_m_m_bountytarget_053", hash = 0x381594FB, outfits = 2 }, - [0xFDA5A014] = { model = "mp_u_m_m_bountytarget_054", hash = 0xFDA5A014, outfits = 2 }, - [0x4F89C3E3] = { model = "mp_u_m_m_bountytarget_055", hash = 0x4F89C3E3, outfits = 2 }, - [0x3A99297A] = { model = "mp_u_m_m_gunforhireclerk_01", hash = 0x3A99297A, outfits = 2 }, - [0xA8AC5B68] = { model = "mp_u_m_m_gunslinger3_rifleman_01", hash = 0xA8AC5B68, outfits = 1 }, - [0xB8B24C69] = { model = "mp_u_m_m_gunslinger3_sharpshooter_02", hash = 0xB8B24C69, outfits = 1 }, - [0xE9E0AEC7] = { model = "mp_u_m_m_gunslinger3_shotgunner_01", hash = 0xE9E0AEC7, outfits = 1 }, - [0x13AA0259] = { model = "mp_u_m_m_gunslinger3_shotgunner_02", hash = 0x13AA0259, outfits = 1 }, - [0xC3433CEF] = { model = "mp_u_m_m_gunslinger4_warner_01", hash = 0xC3433CEF, outfits = 1 }, - [0xC0669CB9] = { model = "mp_u_m_m_lbt_accomplice_01", hash = 0xC0669CB9, outfits = 1 }, - [0xD5DF9EC1] = { model = "mp_u_m_m_lbt_barbsvictim_01", hash = 0xD5DF9EC1, outfits = 1 }, - [0x3708EB8F] = { model = "mp_u_m_m_lbt_bribeinformant_01", hash = 0x3708EB8F, outfits = 1 }, - [0x23AC3035] = { model = "mp_u_m_m_lbt_coachdriver_01", hash = 0x23AC3035, outfits = 1 }, - [0xCF46EAEB] = { model = "mp_u_m_m_lbt_hostagemarshal_01", hash = 0xCF46EAEB, outfits = 1 }, - [0x7C32AD3B] = { model = "mp_u_m_m_lbt_owlhootvictim_01", hash = 0x7C32AD3B, outfits = 1 }, - [0xCA5CC98E] = { model = "mp_u_m_m_lbt_owlhootvictim_02", hash = 0xCA5CC98E, outfits = 1 }, - [0x5833651B] = { model = "mp_u_m_m_lbt_philipsvictim_01", hash = 0x5833651B, outfits = 2 }, - [0xA0968AC2] = { model = "mp_u_m_m_legendarybounty_001", hash = 0xA0968AC2, outfits = 1 }, - [0xB2752E7F] = { model = "mp_u_m_m_legendarybounty_002", hash = 0xB2752E7F, outfits = 1 }, - [0xBCF04375] = { model = "mp_u_m_m_legendarybounty_003", hash = 0xBCF04375, outfits = 1 }, - [0xCF21E7D8] = { model = "mp_u_m_m_legendarybounty_004", hash = 0xCF21E7D8, outfits = 1 }, - [0xE772187C] = { model = "mp_u_m_m_legendarybounty_005", hash = 0xE772187C, outfits = 2 }, - [0xF9BCBD11] = { model = "mp_u_m_m_legendarybounty_006", hash = 0xF9BCBD11, outfits = 2 }, - [0x03E5D163] = { model = "mp_u_m_m_legendarybounty_007", hash = 0x03E5D163, outfits = 1 }, - [0xD214F911] = { model = "mp_u_m_m_outlaw3_prisoner_01", hash = 0xD214F911, outfits = 1 }, - [0xA041956B] = { model = "mp_u_m_m_outlaw3_prisoner_02", hash = 0xA041956B, outfits = 1 }, - [0xCB422A48] = { model = "mp_u_m_m_outlaw3_warner_01", hash = 0xCB422A48, outfits = 1 }, - [0x9E094FD3] = { model = "mp_u_m_m_outlaw3_warner_02", hash = 0x9E094FD3, outfits = 1 }, - [0x8FF2C135] = { model = "mp_u_m_m_prisonwagon_01", hash = 0x8FF2C135, outfits = 2 }, - [0x39AB9484] = { model = "mp_u_m_m_prisonwagon_02", hash = 0x39AB9484, outfits = 2 }, - [0x4F65BFF8] = { model = "mp_u_m_m_prisonwagon_03", hash = 0x4F65BFF8, outfits = 2 }, - [0x189E526A] = { model = "mp_u_m_m_prisonwagon_04", hash = 0x189E526A, outfits = 2 }, - [0x2AE4F6F7] = { model = "mp_u_m_m_prisonwagon_05", hash = 0x2AE4F6F7, outfits = 2 }, - [0x74378993] = { model = "mp_u_m_m_prisonwagon_06", hash = 0x74378993, outfits = 2 }, - [0x530BE231] = { model = "mp_u_m_m_revenge2_handshaker_01", hash = 0x530BE231, outfits = 1 }, - [0x07D731A4] = { model = "mp_u_m_m_revenge2_passerby_01", hash = 0x07D731A4, outfits = 1 }, - [0xCD442B40] = { model = "mp_u_m_m_traderintroclerk_01", hash = 0xCD442B40, outfits = 1 }, - [0x7F96CF37] = { model = "mp_u_m_m_trader_01", hash = 0x7F96CF37, outfits = 2 }, - [0xB16AD39D] = { model = "mp_u_m_m_tvlfence_01", hash = 0xB16AD39D, outfits = 1 }, - [0x32D2C56D] = { model = "mp_u_m_o_blwpolicechief_01", hash = 0x32D2C56D, outfits = 8 }, - [0x749DDBE2] = { model = "mp_wgnbrkout_recipient_males_01", hash = 0x749DDBE2, outfits = 27 }, - [0xFD9DC5E0] = { model = "mp_wgnthief_recipient_males_01", hash = 0xFD9DC5E0, outfits = 24 }, - [0x2830CF33] = { model = "mp_a_c_alligator_01", hash = 0x2830CF33, outfits = 4 }, - [0xBB746741] = { model = "mp_a_c_beaver_01", hash = 0xBB746741, outfits = 3 }, - [0xE8CBC01C] = { model = "mp_a_c_boar_01", hash = 0xE8CBC01C, outfits = 5 }, - [0xAA89BB8D] = { model = "mp_a_c_cougar_01", hash = 0xAA89BB8D, outfits = 4 }, - [0xB20D360D] = { model = "mp_a_c_coyote_01", hash = 0xB20D360D, outfits = 4 }, - [0xB91BAB89] = { model = "mp_a_c_panther_01", hash = 0xB91BAB89, outfits = 4 }, - [0xAD02460F] = { model = "mp_a_c_wolf_01", hash = 0xAD02460F, outfits = 5 }, - [0x2DA2EA3B] = { model = "mp_a_f_m_saloonpatrons_01", hash = 0x2DA2EA3B, outfits = 20 }, - [0x51323159] = { model = "mp_a_f_m_saloonpatrons_02", hash = 0x51323159, outfits = 22 }, - [0x6336D562] = { model = "mp_a_f_m_saloonpatrons_03", hash = 0x6336D562, outfits = 20 }, - [0x715D71AF] = { model = "mp_a_f_m_saloonpatrons_04", hash = 0x715D71AF, outfits = 20 }, - [0x83181528] = { model = "mp_a_f_m_saloonpatrons_05", hash = 0x83181528, outfits = 20 }, - [0x80451592] = { model = "mp_a_m_m_moonshinemakers_01", hash = 0x80451592, outfits = 30 }, - [0x9A2437B7] = { model = "mp_a_m_m_saloonpatrons_01", hash = 0x9A2437B7, outfits = 35 }, - [0x51AB26BE] = { model = "mp_a_m_m_saloonpatrons_02", hash = 0x51AB26BE, outfits = 35 }, - [0x40E58533] = { model = "mp_a_m_m_saloonpatrons_03", hash = 0x40E58533, outfits = 35 }, - [0x7610EF89] = { model = "mp_a_m_m_saloonpatrons_04", hash = 0x7610EF89, outfits = 35 }, - [0x63D64B14] = { model = "mp_a_m_m_saloonpatrons_05", hash = 0x63D64B14, outfits = 35 }, - [0xBAD963AE] = { model = "mp_g_m_m_animalpoachers_01", hash = 0xBAD963AE, outfits = 71 }, - [0xF2C429A7] = { model = "mp_g_m_m_unicriminals_03", hash = 0xF2C429A7, outfits = 55 }, - [0x44AA4D72] = { model = "mp_g_m_m_unicriminals_04", hash = 0x44AA4D72, outfits = 55 }, - [0x5736728A] = { model = "mp_g_m_m_unicriminals_05", hash = 0x5736728A, outfits = 55 }, - [0x2928966F] = { model = "mp_g_m_m_unicriminals_06", hash = 0x2928966F, outfits = 50 }, - [0x3D89BF31] = { model = "mp_g_m_m_unicriminals_07", hash = 0x3D89BF31, outfits = 55 }, - [0x8F336283] = { model = "mp_g_m_m_unicriminals_08", hash = 0x8F336283, outfits = 50 }, - [0x5E058028] = { model = "mp_g_m_m_unicriminals_09", hash = 0x5E058028, outfits = 50 }, - [0xD3754E47] = { model = "mp_re_moonshinecamp_males_01", hash = 0xD3754E47, outfits = 10 }, - [0xD0AC86C4] = { model = "mp_s_m_m_revenueagents_01", hash = 0xD0AC86C4, outfits = 49 }, - [0xA7E717F4] = { model = "mp_u_f_m_buyer_improved_01", hash = 0xA7E717F4, outfits = 1 }, - [0xB7FC381E] = { model = "mp_u_f_m_buyer_improved_02", hash = 0xB7FC381E, outfits = 1 }, - [0x8AB3310A] = { model = "mp_u_f_m_buyer_regular_01", hash = 0x8AB3310A, outfits = 1 }, - [0xE065DC6E] = { model = "mp_u_f_m_buyer_regular_02", hash = 0xE065DC6E, outfits = 1 }, - [0x5DDFB326] = { model = "mp_u_f_m_buyer_special_01", hash = 0x5DDFB326, outfits = 1 }, - [0x53A19EAA] = { model = "mp_u_f_m_buyer_special_02", hash = 0x53A19EAA, outfits = 1 }, - [0x32ED72B1] = { model = "mp_u_m_m_buyer_default_01", hash = 0x32ED72B1, outfits = 1 }, - [0x60F676A5] = { model = "mp_u_m_m_buyer_improved_01", hash = 0x60F676A5, outfits = 1 }, - [0xE7BD8435] = { model = "mp_u_m_m_buyer_improved_02", hash = 0xE7BD8435, outfits = 1 }, - [0x0380BBBB] = { model = "mp_u_m_m_buyer_improved_03", hash = 0x0380BBBB, outfits = 1 }, - [0x9767E38B] = { model = "mp_u_m_m_buyer_improved_04", hash = 0x9767E38B, outfits = 1 }, - [0x6929070E] = { model = "mp_u_m_m_buyer_improved_05", hash = 0x6929070E, outfits = 1 }, - [0x3AC5AA44] = { model = "mp_u_m_m_buyer_improved_06", hash = 0x3AC5AA44, outfits = 1 }, - [0x8A9AC9F1] = { model = "mp_u_m_m_buyer_improved_07", hash = 0x8A9AC9F1, outfits = 1 }, - [0x75CFA027] = { model = "mp_u_m_m_buyer_improved_08", hash = 0x75CFA027, outfits = 1 }, - [0x1DBD9378] = { model = "mp_u_m_m_buyer_regular_01", hash = 0x1DBD9378, outfits = 1 }, - [0x2FEC37D5] = { model = "mp_u_m_m_buyer_regular_02", hash = 0x2FEC37D5, outfits = 1 }, - [0x41235A43] = { model = "mp_u_m_m_buyer_regular_03", hash = 0x41235A43, outfits = 1 }, - [0x5358FEAE] = { model = "mp_u_m_m_buyer_regular_04", hash = 0x5358FEAE, outfits = 1 }, - [0x41125A1D] = { model = "mp_u_m_m_buyer_regular_05", hash = 0x41125A1D, outfits = 1 }, - [0x5373FEE0] = { model = "mp_u_m_m_buyer_regular_06", hash = 0x5373FEE0, outfits = 1 }, - [0xE6BB2570] = { model = "mp_u_m_m_buyer_regular_07", hash = 0xE6BB2570, outfits = 1 }, - [0xF8F549E4] = { model = "mp_u_m_m_buyer_regular_08", hash = 0xF8F549E4, outfits = 1 }, - [0x31227E9C] = { model = "mp_u_m_m_buyer_special_01", hash = 0x31227E9C, outfits = 1 }, - [0xFED89A09] = { model = "mp_u_m_m_buyer_special_02", hash = 0xFED89A09, outfits = 1 }, - [0x0DF73846] = { model = "mp_u_m_m_buyer_special_03", hash = 0x0DF73846, outfits = 1 }, - [0xE479E544] = { model = "mp_u_m_m_buyer_special_04", hash = 0xE479E544, outfits = 1 }, - [0xB23B00C7] = { model = "mp_u_m_m_buyer_special_05", hash = 0xB23B00C7, outfits = 1 }, - [0xC8052C5B] = { model = "mp_u_m_m_buyer_special_06", hash = 0xC8052C5B, outfits = 1 }, - [0xB6FF8A54] = { model = "mp_u_m_m_buyer_special_07", hash = 0xB6FF8A54, outfits = 1 }, - [0xCDCAB7EA] = { model = "mp_u_m_m_buyer_special_08", hash = 0xCDCAB7EA, outfits = 1 }, - [0x54B1C872] = { model = "mp_u_m_m_lawcamp_prisoner_01", hash = 0x54B1C872, outfits = 1 }, - [0x60C69F07] = { model = "mp_u_m_m_saloonbrawler_01", hash = 0x60C69F07, outfits = 1 }, - [0xC45F6627] = { model = "mp_u_m_m_saloonbrawler_02", hash = 0xC45F6627, outfits = 1 }, - [0x928C8282] = { model = "mp_u_m_m_saloonbrawler_03", hash = 0x928C8282, outfits = 1 }, - [0xED9F38AE] = { model = "mp_u_m_m_saloonbrawler_04", hash = 0xED9F38AE, outfits = 1 }, - [0xB427C5B8] = { model = "mp_u_m_m_saloonbrawler_05", hash = 0xB427C5B8, outfits = 1 }, - [0x5B9D94A5] = { model = "mp_u_m_m_saloonbrawler_06", hash = 0x5B9D94A5, outfits = 1 }, - [0x6B3733D8] = { model = "mp_u_m_m_saloonbrawler_07", hash = 0x6B3733D8, outfits = 1 }, - [0xA8FBAF60] = { model = "mp_u_m_m_saloonbrawler_08", hash = 0xA8FBAF60, outfits = 1 }, - [0x76BDCAE5] = { model = "mp_u_m_m_saloonbrawler_09", hash = 0x76BDCAE5, outfits = 1 }, - [0x1150FEA9] = { model = "mp_u_m_m_saloonbrawler_10", hash = 0x1150FEA9, outfits = 1 }, - [0xE29AA13D] = { model = "mp_u_m_m_saloonbrawler_11", hash = 0xE29AA13D, outfits = 1 }, - [0x2DAFB766] = { model = "mp_u_m_m_saloonbrawler_12", hash = 0x2DAFB766, outfits = 1 }, - [0xFFDC5BC0] = { model = "mp_u_m_m_saloonbrawler_13", hash = 0xFFDC5BC0, outfits = 1 }, - [0x96390873] = { model = "mp_u_m_m_saloonbrawler_14", hash = 0x96390873, outfits = 1 }, - [0xDF251C39] = { model = "mp_a_c_bear_01", hash = 0xDF251C39, outfits = 4 }, - [0xE1884260] = { model = "mp_a_c_bighornram_01", hash = 0xE1884260, outfits = 5 }, - [0x9770DD23] = { model = "mp_a_c_buck_01", hash = 0x9770DD23, outfits = 6 }, - [0xC971C4C6] = { model = "mp_a_c_buffalo_01", hash = 0xC971C4C6, outfits = 4 }, - [0xBFDC1D2A] = { model = "mp_a_c_dogamericanfoxhound_01", hash = 0xBFDC1D2A, outfits = 2 }, - [0xD1641E60] = { model = "mp_a_c_elk_01", hash = 0xD1641E60, outfits = 4 }, - [0xDECA9205] = { model = "mp_a_c_fox_01", hash = 0xDECA9205, outfits = 4 }, - [0xF8FC8F63] = { model = "mp_a_c_moose_01", hash = 0xF8FC8F63, outfits = 4 }, - [0x24C5B680] = { model = "mp_a_c_owl_01", hash = 0x24C5B680, outfits = 1 }, - [0xDECED2FD] = { model = "mp_a_c_possum_01", hash = 0xDECED2FD, outfits = 1 }, - [0xFE40DC76] = { model = "mp_a_c_pronghorn_01", hash = 0xFE40DC76, outfits = 1 }, - [0xF4EA3B49] = { model = "mp_a_c_rabbit_01", hash = 0xF4EA3B49, outfits = 1 }, - [0x9A61FCB8] = { model = "mp_a_c_sheep_01", hash = 0x9A61FCB8, outfits = 1 }, - [0x3B7BD8D3] = { model = "mp_a_f_m_saloonband_females_01", hash = 0x3B7BD8D3, outfits = 5 }, - [0xF00A64EC] = { model = "mp_u_m_m_animalpoacher_01", hash = 0xF00A64EC, outfits = 1 }, - [0xE1D74886] = { model = "mp_u_m_m_animalpoacher_02", hash = 0xE1D74886, outfits = 1 }, - [0x92552983] = { model = "mp_u_m_m_animalpoacher_03", hash = 0x92552983, outfits = 1 }, - [0x84298D2C] = { model = "mp_u_m_m_animalpoacher_04", hash = 0x84298D2C, outfits = 1 }, - [0xA6F2D2BE] = { model = "mp_u_m_m_animalpoacher_05", hash = 0xA6F2D2BE, outfits = 2 }, - [0x5895B605] = { model = "mp_u_m_m_animalpoacher_06", hash = 0x5895B605, outfits = 1 }, - [0x3DA8002A] = { model = "mp_u_m_m_animalpoacher_07", hash = 0x3DA8002A, outfits = 1 }, - [0x7001E4DD] = { model = "mp_u_m_m_animalpoacher_08", hash = 0x7001E4DD, outfits = 1 }, - [0x624BC971] = { model = "mp_u_m_m_animalpoacher_09", hash = 0x624BC971, outfits = 1 }, - [0xB25E4617] = { model = "mp_g_f_m_armyoffear_01", hash = 0xB25E4617, outfits = 20 }, - [0x19382FFC] = { model = "mp_g_m_m_armyoffear_01", hash = 0x19382FFC, outfits = 30 }, - [0x29465719] = { model = "mp_a_c_chicken_01", hash = 0x29465719, outfits = 2 }, - [0x2EA769DD] = { model = "mp_a_c_deer_01", hash = 0x2EA769DD, outfits = 1 }, - [0xBAFD3C1A] = { model = "mp_a_m_m_saloonband_males_01", hash = 0xBAFD3C1A, outfits = 20 }, - [0x482F6E79] = { model = "mp_re_slumpedhunter_females_01", hash = 0x482F6E79, outfits = 4 }, - [0x48F23D48] = { model = "mp_re_slumpedhunter_males_01", hash = 0x48F23D48, outfits = 6 }, - [0xD2D2D2D4] = { model = "mp_re_suspendedhunter_males_01", hash = 0xD2D2D2D4, outfits = 2 }, - [0xEE7487F0] = { model = "mp_u_f_m_nat_traveler_01", hash = 0xEE7487F0, outfits = 1 }, - [0x71E6D0A6] = { model = "mp_u_f_m_nat_worker_01", hash = 0x71E6D0A6, outfits = 1 }, - [0xA48BB5F3] = { model = "mp_u_f_m_nat_worker_02", hash = 0xA48BB5F3, outfits = 1 }, - [0x846A2728] = { model = "mp_u_f_m_saloonpianist_01", hash = 0x846A2728, outfits = 1 }, - [0xCF9DD811] = { model = "mp_u_m_m_dyingpoacher_01", hash = 0xCF9DD811, outfits = 1 }, - [0xDF5BF78D] = { model = "mp_u_m_m_dyingpoacher_02", hash = 0xDF5BF78D, outfits = 1 }, - [0x6C51917A] = { model = "mp_u_m_m_dyingpoacher_03", hash = 0x6C51917A, outfits = 1 }, - [0x89F8CCC8] = { model = "mp_u_m_m_dyingpoacher_04", hash = 0x89F8CCC8, outfits = 1 }, - [0x9AB66E43] = { model = "mp_u_m_m_dyingpoacher_05", hash = 0x9AB66E43, outfits = 1 }, - [0x0B979763] = { model = "mp_u_m_m_lawcamp_lawman_01", hash = 0x0B979763, outfits = 1 }, - [0xF9A5F380] = { model = "mp_u_m_m_lawcamp_lawman_02", hash = 0xF9A5F380, outfits = 1 }, - [0x7B379BDB] = { model = "mp_u_m_m_lawcamp_leadofficer_01", hash = 0x7B379BDB, outfits = 1 }, - [0x58E9D4F4] = { model = "mp_u_m_m_nat_farmer_01", hash = 0x58E9D4F4, outfits = 1 }, - [0xDB15D94E] = { model = "mp_u_m_m_nat_farmer_02", hash = 0xDB15D94E, outfits = 1 }, - [0x0D3CBD9B] = { model = "mp_u_m_m_nat_farmer_03", hash = 0x0D3CBD9B, outfits = 1 }, - [0xEFDC82DB] = { model = "mp_u_m_m_nat_farmer_04", hash = 0xEFDC82DB, outfits = 1 }, - [0x2CDF85F7] = { model = "mp_u_m_m_nat_photographer_01", hash = 0x2CDF85F7, outfits = 1 }, - [0x3E92A95D] = { model = "mp_u_m_m_nat_photographer_02", hash = 0x3E92A95D, outfits = 1 }, - [0x2BE8BC9C] = { model = "mp_u_m_m_nat_rancher_01", hash = 0x2BE8BC9C, outfits = 1 }, - [0x7AA6DA17] = { model = "mp_u_m_m_nat_rancher_02", hash = 0x7AA6DA17, outfits = 1 }, - [0x02A89468] = { model = "mp_u_m_m_nat_townfolk_01", hash = 0x02A89468, outfits = 1 }, - [0xB9629EFC] = { model = "mp_u_m_m_strwelcomecenter_02", hash = 0xB9629EFC, outfits = 1 }, - [0xC161E8A4] = { model = "MP_BEAU_BINK_FEMALES_01", hash = 0xC161E8A4, outfits = 1 }, - [0xEDF51277] = { model = "MP_BEAU_BINK_MALES_01", hash = 0xEDF51277, outfits = 7 }, - [0x9ACE7910] = { model = "MP_CARMELA_BINK_VICTIM_MALES_01", hash = 0x9ACE7910, outfits = 5 }, - [0x878040F4] = { model = "MP_CD_REVENGEMAYOR_01", hash = 0x878040F4, outfits = 21 }, - [0xF7831C85] = { model = "mp_fm_bounty_caged_males_01", hash = 0xF7831C85, outfits = 2 }, - [0x3F85E344] = { model = "mp_fm_bounty_ct_corpses_01", hash = 0x3F85E344, outfits = 2 }, - [0x85885C97] = { model = "mp_fm_bounty_hideout_males_01", hash = 0x85885C97, outfits = 1 }, - [0x696D66E4] = { model = "mp_fm_bounty_horde_males_01", hash = 0x696D66E4, outfits = 5 }, - [0x813F5ED3] = { model = "mp_fm_bounty_infiltration_males_01", hash = 0x813F5ED3, outfits = 2 }, - [0xF6458169] = { model = "MP_FM_BOUNTYTARGET_MALES_DLC008_01", hash = 0xF6458169, outfits = 53 }, - [0xC1FD6394] = { model = "mp_fm_knownbounty_guards_01", hash = 0xC1FD6394, outfits = 1 }, - [0xD9162F29] = { model = "MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", hash = 0xD9162F29, outfits = 1 }, - [0xA97E2D65] = { model = "mp_fm_knownbounty_informants_males_01", hash = 0xA97E2D65, outfits = 7 }, - [0x32C42256] = { model = "mp_fm_multitrack_victims_males_01", hash = 0x32C42256, outfits = 2 }, - [0x4957CFEF] = { model = "mp_fm_stakeout_corpses_males_01", hash = 0x4957CFEF, outfits = 2 }, - [0x24497ABF] = { model = "mp_fm_stakeout_poker_males_01", hash = 0x24497ABF, outfits = 2 }, - [0xA5F85792] = { model = "mp_fm_stakeout_target_males_01", hash = 0xA5F85792, outfits = 6 }, - [0x1E14106E] = { model = "mp_fm_track_prospector_01", hash = 0x1E14106E, outfits = 1 }, - [0xC8A1EC4C] = { model = "mp_fm_track_sd_lawman_01", hash = 0xC8A1EC4C, outfits = 1 }, - [0xAA6CE21D] = { model = "mp_fm_track_targets_males_01", hash = 0xAA6CE21D, outfits = 3 }, - [0x83CA7BB6] = { model = "MP_G_F_M_CULTGUARDS_01", hash = 0x83CA7BB6, outfits = 16 }, - [0xC882A3EE] = { model = "mp_g_f_m_cultmembers_01", hash = 0xC882A3EE, outfits = 13 }, - [0xD0DFAE8C] = { model = "MP_G_M_M_CULTGUARDS_01", hash = 0xD0DFAE8C, outfits = 27 }, - [0xAE40CCCC] = { model = "mp_g_m_m_cultmembers_01", hash = 0xAE40CCCC, outfits = 22 }, - [0x7F1377B7] = { model = "MP_G_M_M_MERCS_01", hash = 0x7F1377B7, outfits = 2 }, - [0xE733264E] = { model = "MP_G_M_M_RIFLECRONIES_01", hash = 0xE733264E, outfits = 6 }, - [0x9C1EBED9] = { model = "MP_LBM_CARMELA_BANDITOS_01", hash = 0x9C1EBED9, outfits = 4 }, - [0x96CEA293] = { model = "MP_LM_STEALHORSE_BUYERS_01", hash = 0x96CEA293, outfits = 3 }, - [0x8C5F7BCC] = { model = "MP_U_F_M_CULTPRIEST_01", hash = 0x8C5F7BCC, outfits = 1 }, - [0x5A5EA2DF] = { model = "MP_U_F_M_LEGENDARYBOUNTY_03", hash = 0x5A5EA2DF, outfits = 5 }, - [0xF99F0909] = { model = "MP_U_M_M_BANKPRISONER_01", hash = 0xF99F0909, outfits = 1 }, - [0xA8BEA305] = { model = "MP_U_M_M_BINKMERCS_01", hash = 0xA8BEA305, outfits = 7 }, - [0xBF0B11F0] = { model = "MP_U_M_M_CULTPRIEST_01", hash = 0xBF0B11F0, outfits = 3 }, - [0xBA59A221] = { model = "MP_U_M_M_DROPOFF_JOSIAH_01", hash = 0xBA59A221, outfits = 1 }, - [0x9A9164E1] = { model = "MP_U_M_M_LEGENDARYBOUNTY_08", hash = 0x9A9164E1, outfits = 3 }, - [0x872A3E13] = { model = "MP_U_M_M_LEGENDARYBOUNTY_09", hash = 0x872A3E13, outfits = 1 }, - [0x11952F60] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_01", hash = 0x11952F60, outfits = 1 }, - [0xFFE38BFD] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_02", hash = 0xFFE38BFD, outfits = 1 }, - [0x2D22E67B] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03", hash = 0x2D22E67B, outfits = 1 }, - [0x76D0DAE4] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03B", hash = 0x76D0DAE4, outfits = 1 }, - [0x0329C664] = { model = "MP_U_M_M_LOM_TRAIN_CONDUCTOR_01", hash = 0x0329C664, outfits = 1 }, - [0x059D1627] = { model = "MP_U_M_M_OUTLAW_COACHDRIVER_01", hash = 0x059D1627, outfits = 1 }, - [0x08258837] = { model = "MP_U_M_M_FOS_DOCKWORKER_01", hash = 0x08258837, outfits = 1 }, - [0x0838D137] = { model = "MP_U_M_M_DROPOFF_BRONTE_01", hash = 0x0838D137, outfits = 1 }, - [0x0BE08FB6] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_02", hash = 0x0BE08FB6, outfits = 1 }, - [0x0DD5100A] = { model = "MP_U_M_M_FOS_HARBORMASTER_01", hash = 0x0DD5100A, outfits = 1 }, - [0x0FD9B9AD] = { model = "MP_U_M_M_FOS_TOWN_VIGILANTE_01", hash = 0x0FD9B9AD, outfits = 1 }, - [0x139CC38E] = { model = "MP_U_M_M_OUTLAW_COVINGTON_01", hash = 0x139CC38E, outfits = 1 }, - [0x194B76E7] = { model = "MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x194B76E7, outfits = 5 }, - [0x1AA818AE] = { model = "MP_U_M_M_FOS_BAGHOLDERS_01", hash = 0x1AA818AE, outfits = 5 }, - [0x1D9AB32A] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_01", hash = 0x1D9AB32A, outfits = 1 }, - [0x25CBE18C] = { model = "MP_U_M_M_LOM_TRAIN_BARRICADE_01", hash = 0x25CBE18C, outfits = 7 }, - [0x30ED986F] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_02", hash = 0x30ED986F, outfits = 1 }, - [0x33191090] = { model = "MP_U_M_M_FOS_MUSICIAN_01", hash = 0x33191090, outfits = 1 }, - [0x358E2F94] = { model = "MP_CS_ANTONYFOREMEN", hash = 0x358E2F94, outfits = 2 }, - [0x358EDB23] = { model = "MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x358EDB23, outfits = 5 }, - [0x36B00529] = { model = "MP_U_M_M_FOS_RAILWAY_FOREMAN_01", hash = 0x36B00529, outfits = 1 }, - [0x3EECF401] = { model = "MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", hash = 0x3EECF401, outfits = 5 }, - [0x3F629157] = { model = "MP_U_M_M_PROTECT_ARMADILLO_01", hash = 0x3F629157, outfits = 1 }, - [0x46B92ED0] = { model = "MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01", hash = 0x46B92ED0, outfits = 5 }, - [0x510EBF17] = { model = "MP_U_M_M_LOM_TRAIN_PRISONERS_01", hash = 0x510EBF17, outfits = 2 }, - [0x57D3AE19] = { model = "MP_A_M_M_COACHGUARDS_01", hash = 0x57D3AE19, outfits = 15 }, - [0x58181CAF] = { model = "MP_U_M_M_FOS_ROGUETHIEF_01", hash = 0x58181CAF, outfits = 1 }, - [0x592FCF55] = { model = "MP_U_M_M_FOS_RAILWAY_DRIVER_01", hash = 0x592FCF55, outfits = 1 }, - [0x5DE76175] = { model = "MP_U_M_M_LOM_ASBMERCS_01", hash = 0x5DE76175, outfits = 2 }, - [0x5FBDB3E7] = { model = "MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01", hash = 0x5FBDB3E7, outfits = 1 }, - [0x617AD6A7] = { model = "MP_U_M_O_LOM_ASBFOREMAN_01", hash = 0x617AD6A7, outfits = 1 }, - [0x64BCC144] = { model = "MP_G_M_M_MOUNTAINMEN_01", hash = 0x64BCC144, outfits = 25 }, - [0x6829879B] = { model = "MP_U_M_M_PROTECT_STRAWBERRY_01", hash = 0x6829879B, outfits = 1 }, - [0x68CFBA8F] = { model = "MP_U_M_M_PROTECT_HALLOWEEN_NED_01", hash = 0x68CFBA8F, outfits = 1 }, - [0x6A78FE6C] = { model = "MP_U_M_M_OUTLAW_MPVICTIM_01", hash = 0x6A78FE6C, outfits = 1 }, - [0x6AB56BDA] = { model = "MP_U_M_M_LOM_SD_DOCKWORKER_01", hash = 0x6AB56BDA, outfits = 1 }, - [0x71A35899] = { model = "MP_U_M_M_FOS_TOWN_OUTLAW_01", hash = 0x71A35899, outfits = 4 }, - [0x7494D380] = { model = "MP_U_M_M_FOS_RECOVERY_RECIPIENT_01", hash = 0x7494D380, outfits = 6 }, - [0x7875E8E3] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_03", hash = 0x7875E8E3, outfits = 1 }, - [0x79912CAE] = { model = "MP_U_M_M_FOS_DROPOFF_01", hash = 0x79912CAE, outfits = 1 }, - [0x83123AF1] = { model = "MP_U_M_M_FOS_SDSALOON_GAMBLER_01", hash = 0x83123AF1, outfits = 1 }, - [0x8C37025E] = { model = "MP_U_M_M_LOM_TRAIN_LAWTARGET_01", hash = 0x8C37025E, outfits = 1 }, - [0x8D357D39] = { model = "MP_G_M_M_FOS_DEBTGANGCAPITALI_01", hash = 0x8D357D39, outfits = 5 }, - [0x8EA8D407] = { model = "MP_A_M_M_LOM_ASBMINERS_01", hash = 0x8EA8D407, outfits = 2 }, - [0x9012A8C2] = { model = "MP_FM_BOUNTY_HORDE_LAW_01", hash = 0x9012A8C2, outfits = 2 }, - [0x982C82C5] = { model = "MP_U_M_M_LOM_HEAD_SECURITY_01", hash = 0x982C82C5, outfits = 4 }, - [0x98C03046] = { model = "MP_U_M_M_FOS_SDSALOON_OWNER_01", hash = 0x98C03046, outfits = 1 }, - [0x9B2A9005] = { model = "MP_U_M_M_MUSICIAN_01", hash = 0x9B2A9005, outfits = 1 }, - [0x9DFA9B6E] = { model = "MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01", hash = 0x9DFA9B6E, outfits = 1 }, - [0x9E96638B] = { model = "MP_U_M_M_FOS_RAILWAY_BARON_01", hash = 0x9E96638B, outfits = 1 }, - [0xA1B84FC1] = { model = "MP_G_M_O_UNIEXCONFEDS_CAP_01", hash = 0xA1B84FC1, outfits = 1 }, - [0xA303FC9A] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_01", hash = 0xA303FC9A, outfits = 2 }, - [0xA37DBD30] = { model = "MP_U_M_M_INTERROGATOR_01", hash = 0xA37DBD30, outfits = 1 }, - [0xAF86511B] = { model = "MP_A_M_M_ASBMINERS_01", hash = 0xAF86511B, outfits = 2 }, - [0xAF9B36E2] = { model = "MP_U_M_M_ASBDEPUTY_01", hash = 0xAF9B36E2, outfits = 1 }, - [0xB06054ED] = { model = "MP_U_M_M_LOM_DROPOFF_BRONTE_01", hash = 0xB06054ED, outfits = 1 }, - [0xB4CD18D6] = { model = "MP_BINK_EMBER_OF_THE_EAST_MALES_01", hash = 0xB4CD18D6, outfits = 9 }, - [0xB4F3EF87] = { model = "mp_U_M_M_FOS_RAILWAY_GUARDS_01", hash = 0xB4F3EF87, outfits = 3 }, - [0xB50453FF] = { model = "MP_G_M_M_FOS_VIGILANTES_01", hash = 0xB50453FF, outfits = 10 }, - [0xBB22D33E] = { model = "mp_S_M_M_REVENUEAGENTS_CAP_01", hash = 0xBB22D33E, outfits = 3 }, - [0xBD27319D] = { model = "MP_U_M_M_LOM_SALOON_DRUNK_01", hash = 0xBD27319D, outfits = 1 }, - [0xBDD36DB5] = { model = "MP_A_M_M_ASBMINERS_02", hash = 0xBDD36DB5, outfits = 2 }, - [0xC2B71883] = { model = "MP_U_M_M_LOM_TRAIN_CLERK_01", hash = 0xC2B71883, outfits = 1 }, - [0xC358949B] = { model = "MP_U_M_M_PROTECT_VALENTINE_01", hash = 0xC358949B, outfits = 1 }, - [0xC37F22A8] = { model = "MP_S_M_M_FOS_HARBORGUARDS_01", hash = 0xC37F22A8, outfits = 20 }, - [0xCB86F5E4] = { model = "MP_U_M_M_PROTECT_MERCER_CONTACT_01", hash = 0xCB86F5E4, outfits = 1 }, - [0xCD3F93CC] = { model = "MP_U_M_M_OUTLAW_RHD_NOBLE_01", hash = 0xCD3F93CC, outfits = 4 }, - [0xD2D648CE] = { model = "MP_A_M_M_JAMESONGUARD_01", hash = 0xD2D648CE, outfits = 50 }, - [0xD34CCF4F] = { model = "MP_U_M_M_FOS_RAILWAY_RECIPIENT_01", hash = 0xD34CCF4F, outfits = 1 }, - [0xD7A31642] = { model = "MP_U_M_M_PROTECT_BLACKWATER_01", hash = 0xD7A31642, outfits = 1 }, - [0xDA440097] = { model = "MP_U_M_M_HCTEL_SD_TARGET_02", hash = 0xDA440097, outfits = 2 }, - [0xDA5BAF27] = { model = "MP_G_M_M_FOS_DEBTGANG_01", hash = 0xDA5BAF27, outfits = 15 }, - [0xDA664071] = { model = "MP_U_M_M_FOS_SABOTEUR_01", hash = 0xDA664071, outfits = 1 }, - [0xDC558720] = { model = "MP_U_M_M_HCTEL_SD_GANG_01", hash = 0xDC558720, outfits = 3 }, - [0xE2DCE94B] = { model = "MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01", hash = 0xE2DCE94B, outfits = 1 }, - [0xE514F0BF] = { model = "MP_U_M_M_LOM_DOCKWORKER_01", hash = 0xE514F0BF, outfits = 1 }, - [0xE58B4A18] = { model = "MP_U_M_M_FOS_DOCKRECIPIENTS_01", hash = 0xE58B4A18, outfits = 2 }, - [0xE5E2AAE3] = { model = "MP_U_F_M_OUTLAW_SOCIETYLADY_01", hash = 0xE5E2AAE3, outfits = 1 }, - [0xE8F03F0A] = { model = "MP_U_M_M_LOM_RHD_SHERIFF_01", hash = 0xE8F03F0A, outfits = 1 }, - [0xEA3457D9] = { model = "MP_U_M_M_FOS_CORNWALL_BANDITS_01", hash = 0xEA3457D9, outfits = 3 }, - [0xEA626A60] = { model = "MP_U_M_M_PROTECT_STRAWBERRY", hash = 0xEA626A60, outfits = 1 }, - [0xEAA42177] = { model = "MP_GuidoMartelli", hash = 0xEAA42177, outfits = 1 }, - [0xEAAE023B] = { model = "MP_U_M_M_HARBORMASTER_01", hash = 0xEAAE023B, outfits = 1 }, - [0xEB2B8251] = { model = "MP_U_M_M_LOM_RHD_SMITHASSISTANT_01", hash = 0xEB2B8251, outfits = 1 }, - [0xED2FDF9A] = { model = "MP_U_M_M_FOS_INTERROGATOR_02", hash = 0xED2FDF9A, outfits = 1 }, - [0xED64E004] = { model = "MP_U_M_M_FOS_INTERROGATOR_01", hash = 0xED64E004, outfits = 1 }, - [0xED7DA70A] = { model = "MP_U_M_M_HCTEL_SD_TARGET_01", hash = 0xED7DA70A, outfits = 1 }, - [0xEE6A6493] = { model = "MP_U_M_M_FOS_CORNWALLGUARD_01", hash = 0xEE6A6493, outfits = 2 }, - [0xEF9BAB0C] = { model = "MP_A_M_M_FOS_COACHGUARDS_01", hash = 0xEF9BAB0C, outfits = 15 }, - [0xF14E5BDB] = { model = "MP_U_F_M_PROTECT_MERCER_01", hash = 0xF14E5BDB, outfits = 5 }, - [0xF24DC82F] = { model = "MP_U_M_M_DOCKRECIPIENTS_01", hash = 0xF24DC82F, outfits = 2 }, - [0xFDA2404B] = { model = "MP_U_M_M_LOM_RHD_DEALERS_01", hash = 0xFDA2404B, outfits = 3 }, - [0xFE3F4984] = { model = "MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01", hash = 0xFE3F4984, outfits = 6 }, - [0xFFDFCBCE] = { model = "MP_U_M_M_HCTEL_SD_TARGET_03", hash = 0xFFDFCBCE, outfits = 6 }, - [0xFFF1AB44] = { model = "MP_U_M_M_FOS_RAILWAY_HUNTER_01", hash = 0xFFF1AB44, outfits = 1 }, + [`mp_male`] = { model = "mp_male", hash = 0xF5C1611E, outfits = 138 }, + [`mp_female`] = { model = "mp_female", hash = 0xA7AF20C0, outfits = 120 }, + [`mp_asntrk_elysianpool_males_01`] = { model = "mp_asntrk_elysianpool_males_01", hash = 0x9775AA11, outfits = 6 }, + [`mp_asntrk_grizzlieswest_males_01`] = { model = "mp_asntrk_grizzlieswest_males_01", hash = 0xA8D76FEE, outfits = 6 }, + [`mp_asntrk_hagenorchard_males_01`] = { model = "mp_asntrk_hagenorchard_males_01", hash = 0x6F3BC4E1, outfits = 6 }, + [`mp_asntrk_isabella_males_01`] = { model = "mp_asntrk_isabella_males_01", hash = 0xE9C4EF73, outfits = 6 }, + [`mp_asntrk_talltrees_males_01`] = { model = "mp_asntrk_talltrees_males_01", hash = 0x61227303, outfits = 6 }, + [`mp_asn_benedictpoint_females_01`] = { model = "mp_asn_benedictpoint_females_01", hash = 0xE30D07F8, outfits = 1 }, + [`mp_asn_benedictpoint_males_01`] = { model = "mp_asn_benedictpoint_males_01", hash = 0x8F4385F4, outfits = 6 }, + [`mp_asn_blackwater_males_01`] = { model = "mp_asn_blackwater_males_01", hash = 0x9A33030D, outfits = 6 }, + [`mp_asn_braithwaitemanor_males_01`] = { model = "mp_asn_braithwaitemanor_males_01", hash = 0xFF2ED4F7, outfits = 2 }, + [`mp_asn_braithwaitemanor_males_02`] = { model = "mp_asn_braithwaitemanor_males_02", hash = 0xA6EFA47E, outfits = 4 }, + [`mp_asn_braithwaitemanor_males_03`] = { model = "mp_asn_braithwaitemanor_males_03", hash = 0xA1A899F0, outfits = 5 }, + [`mp_asn_civilwarfort_males_01`] = { model = "mp_asn_civilwarfort_males_01", hash = 0x157604BC, outfits = 6 }, + [`mp_asn_gaptoothbreach_males_01`] = { model = "mp_asn_gaptoothbreach_males_01", hash = 0x3A31D8F5, outfits = 6 }, + [`mp_asn_pikesbasin_males_01`] = { model = "mp_asn_pikesbasin_males_01", hash = 0x83DD3196, outfits = 5 }, + [`mp_asn_sdpolicestation_males_01`] = { model = "mp_asn_sdpolicestation_males_01", hash = 0x75D3315F, outfits = 6 }, + [`mp_asn_sdwedding_females_01`] = { model = "mp_asn_sdwedding_females_01", hash = 0xA04152A6, outfits = 3 }, + [`mp_asn_sdwedding_males_01`] = { model = "mp_asn_sdwedding_males_01", hash = 0xEB1EA62E, outfits = 5 }, + [`mp_asn_shadybelle_females_01`] = { model = "mp_asn_shadybelle_females_01", hash = 0x4B40DFF1, outfits = 1 }, + [`mp_asn_stillwater_males_01`] = { model = "mp_asn_stillwater_males_01", hash = 0xBAD040F0, outfits = 6 }, + [`MP_A_C_HORSECORPSE_01`] = { model = "MP_A_C_HORSECORPSE_01", hash = 0x586000CF, outfits = 16 }, + [`mp_a_f_m_cardgameplayers_01`] = { model = "mp_a_f_m_cardgameplayers_01", hash = 0xEE6C00F6, outfits = 40 }, + [`MP_A_F_M_UniCorpse_01`] = { model = "MP_A_F_M_UniCorpse_01", hash = 0x37DF19AF, outfits = 44 }, + [`mp_a_m_m_laboruprisers_01`] = { model = "mp_a_m_m_laboruprisers_01", hash = 0xC7FDE9D0, outfits = 53 }, + [`MP_A_M_M_UniCorpse_01`] = { model = "MP_A_M_M_UniCorpse_01", hash = 0x82868F58, outfits = 142 }, + [`mp_campdef_bluewater_females_01`] = { model = "mp_campdef_bluewater_females_01", hash = 0x79E64F11, outfits = 1 }, + [`mp_campdef_bluewater_males_01`] = { model = "mp_campdef_bluewater_males_01", hash = 0xD26B0098, outfits = 1 }, + [`mp_campdef_chollasprings_females_01`] = { model = "mp_campdef_chollasprings_females_01", hash = 0x82228527, outfits = 1 }, + [`mp_campdef_chollasprings_males_01`] = { model = "mp_campdef_chollasprings_males_01", hash = 0xB128F981, outfits = 2 }, + [`mp_campdef_eastnewhanover_females_01`] = { model = "mp_campdef_eastnewhanover_females_01", hash = 0x91ACA5B0, outfits = 1 }, + [`mp_campdef_eastnewhanover_males_01`] = { model = "mp_campdef_eastnewhanover_males_01", hash = 0x4F356F45, outfits = 1 }, + [`mp_campdef_gaptoothbreach_females_01`] = { model = "mp_campdef_gaptoothbreach_females_01", hash = 0xF1C2D3BB, outfits = 1 }, + [`mp_campdef_gaptoothbreach_males_01`] = { model = "mp_campdef_gaptoothbreach_males_01", hash = 0xAAD4292A, outfits = 3 }, + [`mp_campdef_gaptoothridge_females_01`] = { model = "mp_campdef_gaptoothridge_females_01", hash = 0x219743D5, outfits = 1 }, + [`mp_campdef_gaptoothridge_males_01`] = { model = "mp_campdef_gaptoothridge_males_01", hash = 0xB5FEE612, outfits = 1 }, + [`mp_campdef_greatplains_males_01`] = { model = "mp_campdef_greatplains_males_01", hash = 0xC1B6341E, outfits = 2 }, + [`mp_campdef_grizzlies_males_01`] = { model = "mp_campdef_grizzlies_males_01", hash = 0x543F0860, outfits = 2 }, + [`mp_campdef_heartlands1_males_01`] = { model = "mp_campdef_heartlands1_males_01", hash = 0x476306CA, outfits = 2 }, + [`mp_campdef_heartlands2_females_01`] = { model = "mp_campdef_heartlands2_females_01", hash = 0xCF202B72, outfits = 1 }, + [`mp_campdef_heartlands2_males_01`] = { model = "mp_campdef_heartlands2_males_01", hash = 0x3B46C480, outfits = 2 }, + [`mp_campdef_hennigans_females_01`] = { model = "mp_campdef_hennigans_females_01", hash = 0x4166D3EF, outfits = 1 }, + [`mp_campdef_hennigans_males_01`] = { model = "mp_campdef_hennigans_males_01", hash = 0x62593BC8, outfits = 1 }, + [`mp_campdef_littlecreek_females_01`] = { model = "mp_campdef_littlecreek_females_01", hash = 0xF5A25A7E, outfits = 1 }, + [`mp_campdef_littlecreek_males_01`] = { model = "mp_campdef_littlecreek_males_01", hash = 0xF4CAA01F, outfits = 1 }, + [`mp_campdef_radleyspasture_females_01`] = { model = "mp_campdef_radleyspasture_females_01", hash = 0xE572A054, outfits = 1 }, + [`mp_campdef_radleyspasture_males_01`] = { model = "mp_campdef_radleyspasture_males_01", hash = 0x4A465245, outfits = 1 }, + [`mp_campdef_riobravo_females_01`] = { model = "mp_campdef_riobravo_females_01", hash = 0xC4DB3101, outfits = 1 }, + [`mp_campdef_riobravo_males_01`] = { model = "mp_campdef_riobravo_males_01", hash = 0x5CE15A39, outfits = 1 }, + [`mp_campdef_roanoke_females_01`] = { model = "mp_campdef_roanoke_females_01", hash = 0xEA68B402, outfits = 1 }, + [`mp_campdef_roanoke_males_01`] = { model = "mp_campdef_roanoke_males_01", hash = 0x24673B50, outfits = 1 }, + [`mp_campdef_talltrees_females_01`] = { model = "mp_campdef_talltrees_females_01", hash = 0x5608A222, outfits = 1 }, + [`mp_campdef_talltrees_males_01`] = { model = "mp_campdef_talltrees_males_01", hash = 0xD429EEF9, outfits = 1 }, + [`mp_campdef_tworocks_females_01`] = { model = "mp_campdef_tworocks_females_01", hash = 0xB05F95C2, outfits = 2 }, + [`mp_chu_kid_armadillo_males_01`] = { model = "mp_chu_kid_armadillo_males_01", hash = 0x20D9D1FF, outfits = 4 }, + [`mp_chu_kid_diabloridge_males_01`] = { model = "mp_chu_kid_diabloridge_males_01", hash = 0xD081C01E, outfits = 4 }, + [`mp_chu_kid_emrstation_males_01`] = { model = "mp_chu_kid_emrstation_males_01", hash = 0xC45D87AE, outfits = 4 }, + [`mp_chu_kid_greatplains2_males_01`] = { model = "mp_chu_kid_greatplains2_males_01", hash = 0xD5B76DF0, outfits = 4 }, + [`mp_chu_kid_greatplains_males_01`] = { model = "mp_chu_kid_greatplains_males_01", hash = 0xDBB0CB10, outfits = 4 }, + [`mp_chu_kid_heartlands_males_01`] = { model = "mp_chu_kid_heartlands_males_01", hash = 0x4E7A9BCF, outfits = 4 }, + [`mp_chu_kid_lagras_males_01`] = { model = "mp_chu_kid_lagras_males_01", hash = 0xBF8EE294, outfits = 4 }, + [`mp_chu_kid_lemoyne_females_01`] = { model = "mp_chu_kid_lemoyne_females_01", hash = 0x26D5E34F, outfits = 2 }, + [`mp_chu_kid_lemoyne_males_01`] = { model = "mp_chu_kid_lemoyne_males_01", hash = 0x24E340FC, outfits = 2 }, + [`mp_chu_kid_recipient_males_01`] = { model = "mp_chu_kid_recipient_males_01", hash = 0xCE06BE54, outfits = 22 }, + [`mp_chu_kid_rhodes_males_01`] = { model = "mp_chu_kid_rhodes_males_01", hash = 0x562372BD, outfits = 4 }, + [`mp_chu_kid_saintdenis_females_01`] = { model = "mp_chu_kid_saintdenis_females_01", hash = 0xF7B029BE, outfits = 1 }, + [`mp_chu_kid_saintdenis_males_01`] = { model = "mp_chu_kid_saintdenis_males_01", hash = 0xF21F12DE, outfits = 3 }, + [`mp_chu_kid_scarlettmeadows_males_01`] = { model = "mp_chu_kid_scarlettmeadows_males_01", hash = 0xBB574D98, outfits = 4 }, + [`mp_chu_kid_tumbleweed_males_01`] = { model = "mp_chu_kid_tumbleweed_males_01", hash = 0x199209F3, outfits = 4 }, + [`mp_chu_kid_valentine_males_01`] = { model = "mp_chu_kid_valentine_males_01", hash = 0xB59A184C, outfits = 4 }, + [`mp_chu_rob_ambarino_males_01`] = { model = "mp_chu_rob_ambarino_males_01", hash = 0x91359C49, outfits = 3 }, + [`mp_chu_rob_annesburg_males_01`] = { model = "mp_chu_rob_annesburg_males_01", hash = 0xE8B7EB0E, outfits = 4 }, + [`mp_chu_rob_benedictpoint_females_01`] = { model = "mp_chu_rob_benedictpoint_females_01", hash = 0xED566DA8, outfits = 2 }, + [`mp_chu_rob_benedictpoint_males_01`] = { model = "mp_chu_rob_benedictpoint_males_01", hash = 0x2361B4FF, outfits = 2 }, + [`mp_chu_rob_blackwater_males_01`] = { model = "mp_chu_rob_blackwater_males_01", hash = 0x4DF62143, outfits = 4 }, + [`mp_chu_rob_caligahall_males_01`] = { model = "mp_chu_rob_caligahall_males_01", hash = 0xD1DD5373, outfits = 4 }, + [`mp_chu_rob_coronado_males_01`] = { model = "mp_chu_rob_coronado_males_01", hash = 0xE910B9B1, outfits = 4 }, + [`mp_chu_rob_cumberland_males_01`] = { model = "mp_chu_rob_cumberland_males_01", hash = 0xEEB13746, outfits = 4 }, + [`mp_chu_rob_fortmercer_females_01`] = { model = "mp_chu_rob_fortmercer_females_01", hash = 0x3D8A8881, outfits = 2 }, + [`mp_chu_rob_fortmercer_males_01`] = { model = "mp_chu_rob_fortmercer_males_01", hash = 0xA3C40220, outfits = 2 }, + [`mp_chu_rob_greenhollow_males_01`] = { model = "mp_chu_rob_greenhollow_males_01", hash = 0x2B7FB829, outfits = 4 }, + [`mp_chu_rob_macfarlanes_females_01`] = { model = "mp_chu_rob_macfarlanes_females_01", hash = 0x900768E4, outfits = 2 }, + [`mp_chu_rob_macfarlanes_males_01`] = { model = "mp_chu_rob_macfarlanes_males_01", hash = 0x0C11A638, outfits = 2 }, + [`mp_chu_rob_macleans_males_01`] = { model = "mp_chu_rob_macleans_males_01", hash = 0xA23C0877, outfits = 4 }, + [`mp_chu_rob_millesani_males_01`] = { model = "mp_chu_rob_millesani_males_01", hash = 0x71F63119, outfits = 4 }, + [`mp_chu_rob_montanariver_males_01`] = { model = "mp_chu_rob_montanariver_males_01", hash = 0xA33F8565, outfits = 4 }, + [`mp_chu_rob_paintedsky_males_01`] = { model = "mp_chu_rob_paintedsky_males_01", hash = 0xAE81DF28, outfits = 4 }, + [`mp_chu_rob_rathskeller_males_01`] = { model = "mp_chu_rob_rathskeller_males_01", hash = 0x26141D84, outfits = 4 }, + [`mp_chu_rob_recipient_males_01`] = { model = "mp_chu_rob_recipient_males_01", hash = 0xB5796996, outfits = 33 }, + [`mp_chu_rob_rhodes_males_01`] = { model = "mp_chu_rob_rhodes_males_01", hash = 0x67C9491C, outfits = 4 }, + [`mp_chu_rob_strawberry_males_01`] = { model = "mp_chu_rob_strawberry_males_01", hash = 0x37AA104A, outfits = 4 }, + [`mp_clay`] = { model = "mp_clay", hash = 0xDEC0EF74, outfits = 1 }, + [`mp_convoy_recipient_females_01`] = { model = "mp_convoy_recipient_females_01", hash = 0x36C085D8, outfits = 2 }, + [`mp_convoy_recipient_males_01`] = { model = "mp_convoy_recipient_males_01", hash = 0xE5ED64CE, outfits = 19 }, + [`mp_de_u_f_m_bigvalley_01`] = { model = "mp_de_u_f_m_bigvalley_01", hash = 0xD2AFC802, outfits = 1 }, + [`mp_de_u_f_m_bluewatermarsh_01`] = { model = "mp_de_u_f_m_bluewatermarsh_01", hash = 0xEB7C292D, outfits = 1 }, + [`mp_de_u_f_m_braithwaite_01`] = { model = "mp_de_u_f_m_braithwaite_01", hash = 0xC615E4DE, outfits = 2 }, + [`mp_de_u_f_m_doverhill_01`] = { model = "mp_de_u_f_m_doverhill_01", hash = 0xFF7134DC, outfits = 1 }, + [`mp_de_u_f_m_greatplains_01`] = { model = "mp_de_u_f_m_greatplains_01", hash = 0xDD895162, outfits = 1 }, + [`mp_de_u_f_m_hangingrock_01`] = { model = "mp_de_u_f_m_hangingrock_01", hash = 0xCB42A78F, outfits = 1 }, + [`mp_de_u_f_m_heartlands_01`] = { model = "mp_de_u_f_m_heartlands_01", hash = 0x410D82BF, outfits = 1 }, + [`mp_de_u_f_m_hennigansstead_01`] = { model = "mp_de_u_f_m_hennigansstead_01", hash = 0x8841B9D2, outfits = 2 }, + [`mp_de_u_f_m_silentstead_01`] = { model = "mp_de_u_f_m_silentstead_01", hash = 0xC50A2A9C, outfits = 1 }, + [`mp_de_u_m_m_aurorabasin_01`] = { model = "mp_de_u_m_m_aurorabasin_01", hash = 0xE079768D, outfits = 1 }, + [`mp_de_u_m_m_barrowlagoon_01`] = { model = "mp_de_u_m_m_barrowlagoon_01", hash = 0x1A06F260, outfits = 1 }, + [`mp_de_u_m_m_bigvalleygraves_01`] = { model = "mp_de_u_m_m_bigvalleygraves_01", hash = 0x30F2FBC2, outfits = 1 }, + [`mp_de_u_m_m_centralunionrr_01`] = { model = "mp_de_u_m_m_centralunionrr_01", hash = 0x54666FF4, outfits = 1 }, + [`mp_de_u_m_m_pleasance_01`] = { model = "mp_de_u_m_m_pleasance_01", hash = 0x6965178B, outfits = 1 }, + [`mp_de_u_m_m_rileyscharge_01`] = { model = "mp_de_u_m_m_rileyscharge_01", hash = 0x7C77D19F, outfits = 1 }, + [`mp_de_u_m_m_vanhorn_01`] = { model = "mp_de_u_m_m_vanhorn_01", hash = 0x7AA6CC47, outfits = 1 }, + [`mp_de_u_m_m_westernhomestead_01`] = { model = "mp_de_u_m_m_westernhomestead_01", hash = 0x196B59E0, outfits = 1 }, + [`mp_dr_u_f_m_bayougatorfood_01`] = { model = "mp_dr_u_f_m_bayougatorfood_01", hash = 0x1029BAEF, outfits = 1 }, + [`mp_dr_u_f_m_bigvalleycave_01`] = { model = "mp_dr_u_f_m_bigvalleycave_01", hash = 0x803C4357, outfits = 1 }, + [`mp_dr_u_f_m_bigvalleycliff_01`] = { model = "mp_dr_u_f_m_bigvalleycliff_01", hash = 0xE782AB5E, outfits = 1 }, + [`mp_dr_u_f_m_bluewaterkidnap_01`] = { model = "mp_dr_u_f_m_bluewaterkidnap_01", hash = 0x5A8DED76, outfits = 1 }, + [`mp_dr_u_f_m_colterbandits_01`] = { model = "mp_dr_u_f_m_colterbandits_01", hash = 0xA3696C2E, outfits = 1 }, + [`mp_dr_u_f_m_colterbandits_02`] = { model = "mp_dr_u_f_m_colterbandits_02", hash = 0x911B4792, outfits = 1 }, + [`mp_dr_u_f_m_missingfisherman_01`] = { model = "mp_dr_u_f_m_missingfisherman_01", hash = 0xB9E9E8B1, outfits = 1 }, + [`mp_dr_u_f_m_missingfisherman_02`] = { model = "mp_dr_u_f_m_missingfisherman_02", hash = 0x87AB8435, outfits = 1 }, + [`mp_dr_u_f_m_mistakenbounties_01`] = { model = "mp_dr_u_f_m_mistakenbounties_01", hash = 0xA4C6684C, outfits = 1 }, + [`mp_dr_u_f_m_plaguetown_01`] = { model = "mp_dr_u_f_m_plaguetown_01", hash = 0x8C3740DD, outfits = 1 }, + [`mp_dr_u_f_m_quakerscove_01`] = { model = "mp_dr_u_f_m_quakerscove_01", hash = 0xEF81CFCA, outfits = 1 }, + [`mp_dr_u_f_m_quakerscove_02`] = { model = "mp_dr_u_f_m_quakerscove_02", hash = 0xFD486B57, outfits = 1 }, + [`mp_dr_u_f_m_sdgraveyard_01`] = { model = "mp_dr_u_f_m_sdgraveyard_01", hash = 0x20A8A154, outfits = 1 }, + [`mp_dr_u_m_m_bigvalleycave_01`] = { model = "mp_dr_u_m_m_bigvalleycave_01", hash = 0xC7DE347E, outfits = 1 }, + [`mp_dr_u_m_m_bigvalleycliff_01`] = { model = "mp_dr_u_m_m_bigvalleycliff_01", hash = 0xD9E86551, outfits = 1 }, + [`mp_dr_u_m_m_bluewaterkidnap_01`] = { model = "mp_dr_u_m_m_bluewaterkidnap_01", hash = 0xA445B5D7, outfits = 1 }, + [`mp_dr_u_m_m_canoeescape_01`] = { model = "mp_dr_u_m_m_canoeescape_01", hash = 0x23135A75, outfits = 1 }, + [`mp_dr_u_m_m_hwyrobbery_01`] = { model = "mp_dr_u_m_m_hwyrobbery_01", hash = 0x322BCA91, outfits = 1 }, + [`mp_dr_u_m_m_mistakenbounties_01`] = { model = "mp_dr_u_m_m_mistakenbounties_01", hash = 0x103F4CF2, outfits = 1 }, + [`mp_dr_u_m_m_pikesbasin_01`] = { model = "mp_dr_u_m_m_pikesbasin_01", hash = 0xD63E91BF, outfits = 1 }, + [`mp_dr_u_m_m_pikesbasin_02`] = { model = "mp_dr_u_m_m_pikesbasin_02", hash = 0xF2CDCADD, outfits = 1 }, + [`mp_dr_u_m_m_plaguetown_01`] = { model = "mp_dr_u_m_m_plaguetown_01", hash = 0x59D8AB63, outfits = 1 }, + [`mp_dr_u_m_m_roanokestandoff_01`] = { model = "mp_dr_u_m_m_roanokestandoff_01", hash = 0x9A8AF99B, outfits = 1 }, + [`mp_dr_u_m_m_sdgraveyard_01`] = { model = "mp_dr_u_m_m_sdgraveyard_01", hash = 0xE80A6258, outfits = 1 }, + [`mp_dr_u_m_m_sdmugging_01`] = { model = "mp_dr_u_m_m_sdmugging_01", hash = 0xC33224A7, outfits = 1 }, + [`mp_dr_u_m_m_sdmugging_02`] = { model = "mp_dr_u_m_m_sdmugging_02", hash = 0x957FC943, outfits = 1 }, + [`mp_freeroam_tut_females_01`] = { model = "mp_freeroam_tut_females_01", hash = 0xAA266E1C, outfits = 5 }, + [`mp_freeroam_tut_males_01`] = { model = "mp_freeroam_tut_males_01", hash = 0x217A0594, outfits = 8 }, + [`mp_gunvoutd2_males_01`] = { model = "mp_gunvoutd2_males_01", hash = 0xC36F9B8C, outfits = 11 }, + [`mp_gunvoutd3_bht_01`] = { model = "mp_gunvoutd3_bht_01", hash = 0x3D6054E3, outfits = 2 }, + [`mp_gunvoutd3_males_01`] = { model = "mp_gunvoutd3_males_01", hash = 0xAD674654, outfits = 3 }, + [`mp_g_f_m_laperlegang_01`] = { model = "mp_g_f_m_laperlegang_01", hash = 0x556ADA44, outfits = 26 }, + [`mp_g_f_m_laperlevips_01`] = { model = "mp_g_f_m_laperlevips_01", hash = 0x64F76F7E, outfits = 13 }, + [`mp_g_f_m_owlhootfamily_01`] = { model = "mp_g_f_m_owlhootfamily_01", hash = 0xF7A82771, outfits = 17 }, + [`mp_g_m_m_armoredjuggernauts_01`] = { model = "mp_g_m_m_armoredjuggernauts_01", hash = 0x9E00472E, outfits = 12 }, + [`mp_g_m_m_bountyhunters_01`] = { model = "mp_g_m_m_bountyhunters_01", hash = 0xC6BEFCC7, outfits = 50 }, + [`mp_g_m_m_owlhootfamily_01`] = { model = "mp_g_m_m_owlhootfamily_01", hash = 0x8496557A, outfits = 25 }, + [`mp_g_m_m_redbengang_01`] = { model = "mp_g_m_m_redbengang_01", hash = 0xC848BCB9, outfits = 38 }, + [`mp_g_m_m_uniafricanamericangang_01`] = { model = "mp_g_m_m_uniafricanamericangang_01", hash = 0xBC696111, outfits = 42 }, + [`mp_g_m_m_unibanditos_01`] = { model = "mp_g_m_m_unibanditos_01", hash = 0xD9D85AA4, outfits = 141 }, + [`mp_g_m_m_unibraithwaites_01`] = { model = "mp_g_m_m_unibraithwaites_01", hash = 0xC0A5F6FB, outfits = 40 }, + [`mp_g_m_m_unibrontegoons_01`] = { model = "mp_g_m_m_unibrontegoons_01", hash = 0x079D07F0, outfits = 55 }, + [`mp_g_m_m_unicornwallgoons_01`] = { model = "mp_g_m_m_unicornwallgoons_01", hash = 0xB6A13AB3, outfits = 60 }, + [`mp_g_m_m_unicriminals_01`] = { model = "mp_g_m_m_unicriminals_01", hash = 0xACB79D83, outfits = 88 }, + [`mp_g_m_m_unicriminals_02`] = { model = "mp_g_m_m_unicriminals_02", hash = 0xFE0F4031, outfits = 67 }, + [`mp_g_m_m_uniduster_01`] = { model = "mp_g_m_m_uniduster_01", hash = 0x6B5CA98B, outfits = 111 }, + [`mp_g_m_m_uniduster_02`] = { model = "mp_g_m_m_uniduster_02", hash = 0x59528577, outfits = 53 }, + [`mp_g_m_m_uniduster_03`] = { model = "mp_g_m_m_uniduster_03", hash = 0x871160F4, outfits = 30 }, + [`mp_g_m_m_unigrays_01`] = { model = "mp_g_m_m_unigrays_01", hash = 0x711F7A23, outfits = 45 }, + [`mp_g_m_m_uniinbred_01`] = { model = "mp_g_m_m_uniinbred_01", hash = 0x013268A4, outfits = 67 }, + [`mp_g_m_m_unilangstonboys_01`] = { model = "mp_g_m_m_unilangstonboys_01", hash = 0xD42E4CA3, outfits = 35 }, + [`mp_g_m_m_unimountainmen_01`] = { model = "mp_g_m_m_unimountainmen_01", hash = 0xAEB6BF6F, outfits = 80 }, + [`mp_g_m_m_uniranchers_01`] = { model = "mp_g_m_m_uniranchers_01", hash = 0x90E48CB5, outfits = 61 }, + [`mp_g_m_m_uniswamp_01`] = { model = "mp_g_m_m_uniswamp_01", hash = 0xA45E623D, outfits = 30 }, + [`mp_g_m_o_uniexconfeds_01`] = { model = "mp_g_m_o_uniexconfeds_01", hash = 0x17F4271B, outfits = 64 }, + [`mp_g_m_y_uniexconfeds_01`] = { model = "mp_g_m_y_uniexconfeds_01", hash = 0x66AB70C0, outfits = 63 }, + [`mp_horse_owlhootvictim_01`] = { model = "mp_horse_owlhootvictim_01", hash = 0x74A42620, outfits = 2 }, + [`mp_intercept_recipient_females_01`] = { model = "mp_intercept_recipient_females_01", hash = 0xA4805CEF, outfits = 8 }, + [`mp_intercept_recipient_males_01`] = { model = "mp_intercept_recipient_males_01", hash = 0x4FFF04AC, outfits = 29 }, + [`mp_intro_females_01`] = { model = "mp_intro_females_01", hash = 0xC7897D53, outfits = 7 }, + [`mp_intro_males_01`] = { model = "mp_intro_males_01", hash = 0x1AC64C7E, outfits = 15 }, + [`mp_jailbreak_males_01`] = { model = "mp_jailbreak_males_01", hash = 0x9CF21703, outfits = 4 }, + [`mp_jailbreak_recipient_males_01`] = { model = "mp_jailbreak_recipient_males_01", hash = 0xD5A51ED9, outfits = 6 }, + [`mp_lbt_m3_males_01`] = { model = "mp_lbt_m3_males_01", hash = 0x1A94D3F2, outfits = 8 }, + [`mp_lbt_m6_females_01`] = { model = "mp_lbt_m6_females_01", hash = 0xB2CBE1E8, outfits = 2 }, + [`mp_lbt_m6_males_01`] = { model = "mp_lbt_m6_males_01", hash = 0xF08C75E6, outfits = 5 }, + [`mp_lbt_m7_males_01`] = { model = "mp_lbt_m7_males_01", hash = 0xD304CBEC, outfits = 8 }, + [`mp_oth_recipient_males_01`] = { model = "mp_oth_recipient_males_01", hash = 0x265C2EDE, outfits = 5 }, + [`mp_outlaw1_males_01`] = { model = "mp_outlaw1_males_01", hash = 0xE1E49865, outfits = 6 }, + [`mp_outlaw2_males_01`] = { model = "mp_outlaw2_males_01", hash = 0x2FDCB16A, outfits = 1 }, + [`mp_post_multipackage_females_01`] = { model = "mp_post_multipackage_females_01", hash = 0x7CCE73C7, outfits = 10 }, + [`mp_post_multipackage_males_01`] = { model = "mp_post_multipackage_males_01", hash = 0x9BA2E621, outfits = 34 }, + [`mp_post_multirelay_females_01`] = { model = "mp_post_multirelay_females_01", hash = 0xF6846F69, outfits = 5 }, + [`mp_post_multirelay_males_01`] = { model = "mp_post_multirelay_males_01", hash = 0x49302DBB, outfits = 20 }, + [`mp_post_relay_females_01`] = { model = "mp_post_relay_females_01", hash = 0xBAC09F5F, outfits = 1 }, + [`mp_post_relay_males_01`] = { model = "mp_post_relay_males_01", hash = 0x6D8D4CA6, outfits = 23 }, + [`mp_predator`] = { model = "mp_predator", hash = 0x2C7D2748, outfits = 8 }, + [`mp_prsn_asn_males_01`] = { model = "mp_prsn_asn_males_01", hash = 0x9BCC5B80, outfits = 14 }, + [`mp_recover_recipient_females_01`] = { model = "mp_recover_recipient_females_01", hash = 0xD050B3FD, outfits = 1 }, + [`mp_recover_recipient_males_01`] = { model = "mp_recover_recipient_males_01", hash = 0xFEE21E87, outfits = 5 }, + [`mp_repoboat_recipient_females_01`] = { model = "mp_repoboat_recipient_females_01", hash = 0x8A118776, outfits = 2 }, + [`mp_repoboat_recipient_males_01`] = { model = "mp_repoboat_recipient_males_01", hash = 0x817E92C2, outfits = 5 }, + [`mp_repo_recipient_females_01`] = { model = "mp_repo_recipient_females_01", hash = 0x4852F2D1, outfits = 2 }, + [`mp_repo_recipient_males_01`] = { model = "mp_repo_recipient_males_01", hash = 0x93A9A5FC, outfits = 12 }, + [`mp_rescue_bottletree_females_01`] = { model = "mp_rescue_bottletree_females_01", hash = 0xEED4DB96, outfits = 1 }, + [`mp_rescue_bottletree_males_01`] = { model = "mp_rescue_bottletree_males_01", hash = 0x5530F95C, outfits = 2 }, + [`mp_rescue_colter_males_01`] = { model = "mp_rescue_colter_males_01", hash = 0x90008F71, outfits = 1 }, + [`mp_rescue_cratersacrifice_males_01`] = { model = "mp_rescue_cratersacrifice_males_01", hash = 0x46FD1150, outfits = 2 }, + [`mp_rescue_heartlands_males_01`] = { model = "mp_rescue_heartlands_males_01", hash = 0x2A503D51, outfits = 1 }, + [`mp_rescue_loftkidnap_males_01`] = { model = "mp_rescue_loftkidnap_males_01", hash = 0xBEA076E0, outfits = 1 }, + [`mp_rescue_lonniesshack_males_01`] = { model = "mp_rescue_lonniesshack_males_01", hash = 0x8CAC82BE, outfits = 3 }, + [`mp_rescue_moonstone_males_01`] = { model = "mp_rescue_moonstone_males_01", hash = 0x36234B83, outfits = 1 }, + [`mp_rescue_mtnmanshack_males_01`] = { model = "mp_rescue_mtnmanshack_males_01", hash = 0x74B18E0F, outfits = 3 }, + [`mp_rescue_recipient_females_01`] = { model = "mp_rescue_recipient_females_01", hash = 0xE63DF429, outfits = 1 }, + [`mp_rescue_recipient_males_01`] = { model = "mp_rescue_recipient_males_01", hash = 0x1738A70F, outfits = 7 }, + [`mp_rescue_rivalshack_males_01`] = { model = "mp_rescue_rivalshack_males_01", hash = 0xDA91092F, outfits = 2 }, + [`mp_rescue_scarlettmeadows_males_01`] = { model = "mp_rescue_scarlettmeadows_males_01", hash = 0x10482CCC, outfits = 1 }, + [`mp_rescue_sddogfight_females_01`] = { model = "mp_rescue_sddogfight_females_01", hash = 0x01AC6CA3, outfits = 1 }, + [`mp_rescue_sddogfight_males_01`] = { model = "mp_rescue_sddogfight_males_01", hash = 0x80AB3DA0, outfits = 1 }, + [`mp_resupply_recipient_females_01`] = { model = "mp_resupply_recipient_females_01", hash = 0x89C49271, outfits = 7 }, + [`mp_resupply_recipient_males_01`] = { model = "mp_resupply_recipient_males_01", hash = 0x028C5916, outfits = 11 }, + [`mp_revenge1_males_01`] = { model = "mp_revenge1_males_01", hash = 0x340E6CFB, outfits = 3 }, + [`mp_re_animalattack_females_01`] = { model = "mp_re_animalattack_females_01", hash = 0x89330281, outfits = 4 }, + [`mp_re_animalattack_males_01`] = { model = "mp_re_animalattack_males_01", hash = 0x2C1694A4, outfits = 4 }, + [`mp_re_duel_females_01`] = { model = "mp_re_duel_females_01", hash = 0x9D90BC3C, outfits = 4 }, + [`mp_re_duel_males_01`] = { model = "mp_re_duel_males_01", hash = 0x34F02197, outfits = 4 }, + [`mp_re_graverobber_females_01`] = { model = "mp_re_graverobber_females_01", hash = 0x7C6C7C1D, outfits = 1 }, + [`mp_re_graverobber_males_01`] = { model = "mp_re_graverobber_males_01", hash = 0x55B73907, outfits = 1 }, + [`mp_re_hobodog_females_01`] = { model = "mp_re_hobodog_females_01", hash = 0x263B0853, outfits = 2 }, + [`mp_re_hobodog_males_01`] = { model = "mp_re_hobodog_males_01", hash = 0x401C6EC1, outfits = 4 }, + [`mp_re_kidnapped_females_01`] = { model = "mp_re_kidnapped_females_01", hash = 0x45178DBF, outfits = 6 }, + [`mp_re_kidnapped_males_01`] = { model = "mp_re_kidnapped_males_01", hash = 0x5E5607C3, outfits = 6 }, + [`mp_re_photography_females_01`] = { model = "mp_re_photography_females_01", hash = 0x5730F05E, outfits = 2 }, + [`mp_re_photography_females_02`] = { model = "mp_re_photography_females_02", hash = 0x65D60DA8, outfits = 2 }, + [`mp_re_photography_males_01`] = { model = "mp_re_photography_males_01", hash = 0x8AE666DA, outfits = 2 }, + [`mp_re_rivalcollector_males_01`] = { model = "mp_re_rivalcollector_males_01", hash = 0x98D1F6B3, outfits = 20 }, + [`mp_re_runawaywagon_females_01`] = { model = "mp_re_runawaywagon_females_01", hash = 0xFA0BF8E9, outfits = 3 }, + [`mp_re_runawaywagon_males_01`] = { model = "mp_re_runawaywagon_males_01", hash = 0xD99C62B9, outfits = 3 }, + [`mp_re_treasurehunter_females_01`] = { model = "mp_re_treasurehunter_females_01", hash = 0x3EB8315D, outfits = 2 }, + [`mp_re_treasurehunter_males_01`] = { model = "mp_re_treasurehunter_males_01", hash = 0x36754ABE, outfits = 2 }, + [`mp_re_wildman_males_01`] = { model = "mp_re_wildman_males_01", hash = 0x40C07582, outfits = 1 }, + [`mp_stealboat_recipient_males_01`] = { model = "mp_stealboat_recipient_males_01", hash = 0x6D8072BA, outfits = 10 }, + [`mp_stealhorse_recipient_males_01`] = { model = "mp_stealhorse_recipient_males_01", hash = 0x6BF26D7E, outfits = 29 }, + [`mp_stealwagon_recipient_males_01`] = { model = "mp_stealwagon_recipient_males_01", hash = 0x05BC439E, outfits = 22 }, + [`mp_s_m_m_cornwallguard_01`] = { model = "mp_s_m_m_cornwallguard_01", hash = 0x0C890518, outfits = 32 }, + [`mp_s_m_m_pinlaw_01`] = { model = "mp_s_m_m_pinlaw_01", hash = 0xAD87E95D, outfits = 40 }, + [`mp_tattoo_female`] = { model = "mp_tattoo_female", hash = 0xE82A9EF5, outfits = 1 }, + [`mp_tattoo_male`] = { model = "mp_tattoo_male", hash = 0x02EC2BF7, outfits = 1 }, + [`mp_u_f_m_bountytarget_001`] = { model = "mp_u_f_m_bountytarget_001", hash = 0x30B5B617, outfits = 2 }, + [`mp_u_f_m_bountytarget_002`] = { model = "mp_u_f_m_bountytarget_002", hash = 0x8AE66A77, outfits = 2 }, + [`mp_u_f_m_bountytarget_003`] = { model = "mp_u_f_m_bountytarget_003", hash = 0x53507B4C, outfits = 2 }, + [`mp_u_f_m_bountytarget_004`] = { model = "mp_u_f_m_bountytarget_004", hash = 0x241D9CE7, outfits = 2 }, + [`mp_u_f_m_bountytarget_005`] = { model = "mp_u_f_m_bountytarget_005", hash = 0xE5D02049, outfits = 2 }, + [`mp_u_f_m_bountytarget_006`] = { model = "mp_u_f_m_bountytarget_006", hash = 0x389945DE, outfits = 2 }, + [`mp_u_f_m_bountytarget_007`] = { model = "mp_u_f_m_bountytarget_007", hash = 0x06F56293, outfits = 2 }, + [`mp_u_f_m_bountytarget_008`] = { model = "mp_u_f_m_bountytarget_008", hash = 0xD8E38670, outfits = 2 }, + [`mp_u_f_m_bountytarget_009`] = { model = "mp_u_f_m_bountytarget_009", hash = 0xABA92BFC, outfits = 2 }, + [`mp_u_f_m_bountytarget_010`] = { model = "mp_u_f_m_bountytarget_010", hash = 0x1C1C1174, outfits = 2 }, + [`mp_u_f_m_bountytarget_011`] = { model = "mp_u_f_m_bountytarget_011", hash = 0x2DE1B4FF, outfits = 2 }, + [`MP_U_F_M_BOUNTYTARGET_012`] = { model = "MP_U_F_M_BOUNTYTARGET_012", hash = 0x3F97D86B, outfits = 1 }, + [`mp_u_f_m_bountytarget_013`] = { model = "mp_u_f_m_bountytarget_013", hash = 0x4F947864, outfits = 2 }, + [`mp_u_f_m_bountytarget_014`] = { model = "mp_u_f_m_bountytarget_014", hash = 0xD56E8422, outfits = 2 }, + [`mp_u_f_m_gunslinger3_rifleman_02`] = { model = "mp_u_f_m_gunslinger3_rifleman_02", hash = 0x0EF547D0, outfits = 1 }, + [`mp_u_f_m_gunslinger3_sharpshooter_01`] = { model = "mp_u_f_m_gunslinger3_sharpshooter_01", hash = 0xC9E8C3C3, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_01`] = { model = "mp_u_f_m_laperlevipmasked_01", hash = 0x96A8968C, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_02`] = { model = "mp_u_f_m_laperlevipmasked_02", hash = 0xCE6085F7, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_03`] = { model = "mp_u_f_m_laperlevipmasked_03", hash = 0xDFA9A889, outfits = 1 }, + [`mp_u_f_m_laperlevipmasked_04`] = { model = "mp_u_f_m_laperlevipmasked_04", hash = 0xA3F030F3, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_01`] = { model = "mp_u_f_m_laperlevipunmasked_01", hash = 0x28F501C1, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_02`] = { model = "mp_u_f_m_laperlevipunmasked_02", hash = 0x3A3AA44C, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_03`] = { model = "mp_u_f_m_laperlevipunmasked_03", hash = 0x4CB3C93E, outfits = 1 }, + [`mp_u_f_m_laperlevipunmasked_04`] = { model = "mp_u_f_m_laperlevipunmasked_04", hash = 0x5EEE6DB3, outfits = 1 }, + [`mp_u_f_m_lbt_owlhootvictim_01`] = { model = "mp_u_f_m_lbt_owlhootvictim_01", hash = 0x2CE57EFF, outfits = 1 }, + [`mp_u_f_m_legendarybounty_001`] = { model = "mp_u_f_m_legendarybounty_001", hash = 0x507A33A6, outfits = 1 }, + [`mp_u_f_m_legendarybounty_002`] = { model = "mp_u_f_m_legendarybounty_002", hash = 0x88A423FD, outfits = 8 }, + [`mp_u_f_m_outlaw3_warner_01`] = { model = "mp_u_f_m_outlaw3_warner_01", hash = 0xA1EF7AAF, outfits = 1 }, + [`mp_u_f_m_outlaw3_warner_02`] = { model = "mp_u_f_m_outlaw3_warner_02", hash = 0x33BC1E4A, outfits = 1 }, + [`mp_u_f_m_revenge2_passerby_01`] = { model = "mp_u_f_m_revenge2_passerby_01", hash = 0xC679DED7, outfits = 1 }, + [`mp_u_m_m_armsheriff_01`] = { model = "mp_u_m_m_armsheriff_01", hash = 0x2B38C3F4, outfits = 1 }, + [`mp_u_m_m_bountyinjuredman_01`] = { model = "mp_u_m_m_bountyinjuredman_01", hash = 0x66B75A18, outfits = 1 }, + [`mp_u_m_m_bountytarget_001`] = { model = "mp_u_m_m_bountytarget_001", hash = 0xAE2D0F40, outfits = 2 }, + [`mp_u_m_m_bountytarget_002`] = { model = "mp_u_m_m_bountytarget_002", hash = 0x9066D3B0, outfits = 2 }, + [`mp_u_m_m_bountytarget_003`] = { model = "mp_u_m_m_bountytarget_003", hash = 0xA095740D, outfits = 2 }, + [`mp_u_m_m_bountytarget_005`] = { model = "mp_u_m_m_bountytarget_005", hash = 0xF314990E, outfits = 2 }, + [`mp_u_m_m_bountytarget_008`] = { model = "mp_u_m_m_bountytarget_008", hash = 0xD7BB625C, outfits = 2 }, + [`mp_u_m_m_bountytarget_009`] = { model = "mp_u_m_m_bountytarget_009", hash = 0x5C366B54, outfits = 2 }, + [`mp_u_m_m_bountytarget_010`] = { model = "mp_u_m_m_bountytarget_010", hash = 0x9710DFFC, outfits = 2 }, + [`mp_u_m_m_bountytarget_011`] = { model = "mp_u_m_m_bountytarget_011", hash = 0xF74DA078, outfits = 2 }, + [`mp_u_m_m_bountytarget_012`] = { model = "mp_u_m_m_bountytarget_012", hash = 0xE98404E5, outfits = 2 }, + [`mp_u_m_m_bountytarget_013`] = { model = "mp_u_m_m_bountytarget_013", hash = 0xDE80EEDF, outfits = 2 }, + [`mp_u_m_m_bountytarget_014`] = { model = "mp_u_m_m_bountytarget_014", hash = 0xCDBA4D52, outfits = 2 }, + [`mp_u_m_m_bountytarget_015`] = { model = "mp_u_m_m_bountytarget_015", hash = 0x00C8B356, outfits = 2 }, + [`mp_u_m_m_bountytarget_016`] = { model = "mp_u_m_m_bountytarget_016", hash = 0xEF8B10DB, outfits = 2 }, + [`mp_u_m_m_bountytarget_017`] = { model = "mp_u_m_m_bountytarget_017", hash = 0xE479FAB9, outfits = 2 }, + [`mp_u_m_m_bountytarget_018`] = { model = "mp_u_m_m_bountytarget_018", hash = 0xD6375E34, outfits = 2 }, + [`mp_u_m_m_bountytarget_019`] = { model = "mp_u_m_m_bountytarget_019", hash = 0x37DC2180, outfits = 2 }, + [`mp_u_m_m_bountytarget_020`] = { model = "mp_u_m_m_bountytarget_020", hash = 0x67D9F5A3, outfits = 2 }, + [`mp_u_m_m_bountytarget_021`] = { model = "mp_u_m_m_bountytarget_021", hash = 0x34228E35, outfits = 2 }, + [`mp_u_m_m_bountytarget_022`] = { model = "mp_u_m_m_bountytarget_022", hash = 0x0B61BCAC, outfits = 2 }, + [`mp_u_m_m_bountytarget_023`] = { model = "mp_u_m_m_bountytarget_023", hash = 0x59BCD969, outfits = 2 }, + [`mp_u_m_m_bountytarget_024`] = { model = "mp_u_m_m_bountytarget_024", hash = 0x0D244031, outfits = 2 }, + [`mp_u_m_m_bountytarget_025`] = { model = "mp_u_m_m_bountytarget_025", hash = 0xFB5D1CA3, outfits = 2 }, + [`mp_u_m_m_bountytarget_026`] = { model = "mp_u_m_m_bountytarget_026", hash = 0xB1460876, outfits = 2 }, + [`mp_u_m_m_bountytarget_027`] = { model = "mp_u_m_m_bountytarget_027", hash = 0xC10827FA, outfits = 2 }, + [`mp_u_m_m_bountytarget_028`] = { model = "mp_u_m_m_bountytarget_028", hash = 0xD5E2D1AF, outfits = 2 }, + [`mp_u_m_m_bountytarget_029`] = { model = "mp_u_m_m_bountytarget_029", hash = 0xE39BED21, outfits = 2 }, + [`mp_u_m_m_bountytarget_030`] = { model = "mp_u_m_m_bountytarget_030", hash = 0xF41B8F40, outfits = 2 }, + [`mp_u_m_m_bountytarget_031`] = { model = "mp_u_m_m_bountytarget_031", hash = 0x55F252F4, outfits = 2 }, + [`mp_u_m_m_bountytarget_032`] = { model = "mp_u_m_m_bountytarget_032", hash = 0x10AAC85E, outfits = 2 }, + [`mp_u_m_m_bountytarget_033`] = { model = "mp_u_m_m_bountytarget_033", hash = 0x02682BD9, outfits = 2 }, + [`mp_u_m_m_bountytarget_034`] = { model = "mp_u_m_m_bountytarget_034", hash = 0xAD5581B5, outfits = 2 }, + [`mp_u_m_m_bountytarget_035`] = { model = "mp_u_m_m_bountytarget_035", hash = 0x1F32E56E, outfits = 2 }, + [`mp_u_m_m_bountytarget_036`] = { model = "mp_u_m_m_bountytarget_036", hash = 0xD96359D0, outfits = 2 }, + [`mp_u_m_m_bountytarget_037`] = { model = "mp_u_m_m_bountytarget_037", hash = 0xCBCEBEA7, outfits = 2 }, + [`mp_u_m_m_bountytarget_038`] = { model = "mp_u_m_m_bountytarget_038", hash = 0x7618133B, outfits = 2 }, + [`mp_u_m_m_bountytarget_039`] = { model = "mp_u_m_m_bountytarget_039", hash = 0xE8277758, outfits = 2 }, + [`mp_u_m_m_bountytarget_044`] = { model = "mp_u_m_m_bountytarget_044", hash = 0x2D8122D2, outfits = 2 }, + [`mp_u_m_m_bountytarget_045`] = { model = "mp_u_m_m_bountytarget_045", hash = 0x3F4BC667, outfits = 2 }, + [`mp_u_m_m_bountytarget_046`] = { model = "mp_u_m_m_bountytarget_046", hash = 0x519CEB09, outfits = 2 }, + [`mp_u_m_m_bountytarget_047`] = { model = "mp_u_m_m_bountytarget_047", hash = 0xE055886C, outfits = 2 }, + [`mp_u_m_m_bountytarget_048`] = { model = "mp_u_m_m_bountytarget_048", hash = 0xF032A826, outfits = 2 }, + [`mp_u_m_m_bountytarget_049`] = { model = "mp_u_m_m_bountytarget_049", hash = 0x05EFD3A0, outfits = 2 }, + [`mp_u_m_m_bountytarget_050`] = { model = "mp_u_m_m_bountytarget_050", hash = 0x48B93642, outfits = 2 }, + [`mp_u_m_m_bountytarget_051`] = { model = "mp_u_m_m_bountytarget_051", hash = 0x968351D5, outfits = 2 }, + [`mp_u_m_m_bountytarget_052`] = { model = "mp_u_m_m_bountytarget_052", hash = 0x6A34F939, outfits = 2 }, + [`mp_u_m_m_bountytarget_053`] = { model = "mp_u_m_m_bountytarget_053", hash = 0x381594FB, outfits = 2 }, + [`mp_u_m_m_bountytarget_054`] = { model = "mp_u_m_m_bountytarget_054", hash = 0xFDA5A014, outfits = 2 }, + [`mp_u_m_m_bountytarget_055`] = { model = "mp_u_m_m_bountytarget_055", hash = 0x4F89C3E3, outfits = 2 }, + [`mp_u_m_m_gunforhireclerk_01`] = { model = "mp_u_m_m_gunforhireclerk_01", hash = 0x3A99297A, outfits = 2 }, + [`mp_u_m_m_gunslinger3_rifleman_01`] = { model = "mp_u_m_m_gunslinger3_rifleman_01", hash = 0xA8AC5B68, outfits = 1 }, + [`mp_u_m_m_gunslinger3_sharpshooter_02`] = { model = "mp_u_m_m_gunslinger3_sharpshooter_02", hash = 0xB8B24C69, outfits = 1 }, + [`mp_u_m_m_gunslinger3_shotgunner_01`] = { model = "mp_u_m_m_gunslinger3_shotgunner_01", hash = 0xE9E0AEC7, outfits = 1 }, + [`mp_u_m_m_gunslinger3_shotgunner_02`] = { model = "mp_u_m_m_gunslinger3_shotgunner_02", hash = 0x13AA0259, outfits = 1 }, + [`mp_u_m_m_gunslinger4_warner_01`] = { model = "mp_u_m_m_gunslinger4_warner_01", hash = 0xC3433CEF, outfits = 1 }, + [`mp_u_m_m_lbt_accomplice_01`] = { model = "mp_u_m_m_lbt_accomplice_01", hash = 0xC0669CB9, outfits = 1 }, + [`mp_u_m_m_lbt_barbsvictim_01`] = { model = "mp_u_m_m_lbt_barbsvictim_01", hash = 0xD5DF9EC1, outfits = 1 }, + [`mp_u_m_m_lbt_bribeinformant_01`] = { model = "mp_u_m_m_lbt_bribeinformant_01", hash = 0x3708EB8F, outfits = 1 }, + [`mp_u_m_m_lbt_coachdriver_01`] = { model = "mp_u_m_m_lbt_coachdriver_01", hash = 0x23AC3035, outfits = 1 }, + [`mp_u_m_m_lbt_hostagemarshal_01`] = { model = "mp_u_m_m_lbt_hostagemarshal_01", hash = 0xCF46EAEB, outfits = 1 }, + [`mp_u_m_m_lbt_owlhootvictim_01`] = { model = "mp_u_m_m_lbt_owlhootvictim_01", hash = 0x7C32AD3B, outfits = 1 }, + [`mp_u_m_m_lbt_owlhootvictim_02`] = { model = "mp_u_m_m_lbt_owlhootvictim_02", hash = 0xCA5CC98E, outfits = 1 }, + [`mp_u_m_m_lbt_philipsvictim_01`] = { model = "mp_u_m_m_lbt_philipsvictim_01", hash = 0x5833651B, outfits = 2 }, + [`mp_u_m_m_legendarybounty_001`] = { model = "mp_u_m_m_legendarybounty_001", hash = 0xA0968AC2, outfits = 1 }, + [`mp_u_m_m_legendarybounty_002`] = { model = "mp_u_m_m_legendarybounty_002", hash = 0xB2752E7F, outfits = 1 }, + [`mp_u_m_m_legendarybounty_003`] = { model = "mp_u_m_m_legendarybounty_003", hash = 0xBCF04375, outfits = 1 }, + [`mp_u_m_m_legendarybounty_004`] = { model = "mp_u_m_m_legendarybounty_004", hash = 0xCF21E7D8, outfits = 1 }, + [`mp_u_m_m_legendarybounty_005`] = { model = "mp_u_m_m_legendarybounty_005", hash = 0xE772187C, outfits = 2 }, + [`mp_u_m_m_legendarybounty_006`] = { model = "mp_u_m_m_legendarybounty_006", hash = 0xF9BCBD11, outfits = 2 }, + [`mp_u_m_m_legendarybounty_007`] = { model = "mp_u_m_m_legendarybounty_007", hash = 0x03E5D163, outfits = 1 }, + [`mp_u_m_m_outlaw3_prisoner_01`] = { model = "mp_u_m_m_outlaw3_prisoner_01", hash = 0xD214F911, outfits = 1 }, + [`mp_u_m_m_outlaw3_prisoner_02`] = { model = "mp_u_m_m_outlaw3_prisoner_02", hash = 0xA041956B, outfits = 1 }, + [`mp_u_m_m_outlaw3_warner_01`] = { model = "mp_u_m_m_outlaw3_warner_01", hash = 0xCB422A48, outfits = 1 }, + [`mp_u_m_m_outlaw3_warner_02`] = { model = "mp_u_m_m_outlaw3_warner_02", hash = 0x9E094FD3, outfits = 1 }, + [`mp_u_m_m_prisonwagon_01`] = { model = "mp_u_m_m_prisonwagon_01", hash = 0x8FF2C135, outfits = 2 }, + [`mp_u_m_m_prisonwagon_02`] = { model = "mp_u_m_m_prisonwagon_02", hash = 0x39AB9484, outfits = 2 }, + [`mp_u_m_m_prisonwagon_03`] = { model = "mp_u_m_m_prisonwagon_03", hash = 0x4F65BFF8, outfits = 2 }, + [`mp_u_m_m_prisonwagon_04`] = { model = "mp_u_m_m_prisonwagon_04", hash = 0x189E526A, outfits = 2 }, + [`mp_u_m_m_prisonwagon_05`] = { model = "mp_u_m_m_prisonwagon_05", hash = 0x2AE4F6F7, outfits = 2 }, + [`mp_u_m_m_prisonwagon_06`] = { model = "mp_u_m_m_prisonwagon_06", hash = 0x74378993, outfits = 2 }, + [`mp_u_m_m_revenge2_handshaker_01`] = { model = "mp_u_m_m_revenge2_handshaker_01", hash = 0x530BE231, outfits = 1 }, + [`mp_u_m_m_revenge2_passerby_01`] = { model = "mp_u_m_m_revenge2_passerby_01", hash = 0x07D731A4, outfits = 1 }, + [`mp_u_m_m_traderintroclerk_01`] = { model = "mp_u_m_m_traderintroclerk_01", hash = 0xCD442B40, outfits = 1 }, + [`mp_u_m_m_trader_01`] = { model = "mp_u_m_m_trader_01", hash = 0x7F96CF37, outfits = 2 }, + [`mp_u_m_m_tvlfence_01`] = { model = "mp_u_m_m_tvlfence_01", hash = 0xB16AD39D, outfits = 1 }, + [`mp_u_m_o_blwpolicechief_01`] = { model = "mp_u_m_o_blwpolicechief_01", hash = 0x32D2C56D, outfits = 8 }, + [`mp_wgnbrkout_recipient_males_01`] = { model = "mp_wgnbrkout_recipient_males_01", hash = 0x749DDBE2, outfits = 27 }, + [`mp_wgnthief_recipient_males_01`] = { model = "mp_wgnthief_recipient_males_01", hash = 0xFD9DC5E0, outfits = 24 }, + [`mp_a_c_alligator_01`] = { model = "mp_a_c_alligator_01", hash = 0x2830CF33, outfits = 4 }, + [`mp_a_c_beaver_01`] = { model = "mp_a_c_beaver_01", hash = 0xBB746741, outfits = 3 }, + [`mp_a_c_boar_01`] = { model = "mp_a_c_boar_01", hash = 0xE8CBC01C, outfits = 5 }, + [`mp_a_c_cougar_01`] = { model = "mp_a_c_cougar_01", hash = 0xAA89BB8D, outfits = 4 }, + [`mp_a_c_coyote_01`] = { model = "mp_a_c_coyote_01", hash = 0xB20D360D, outfits = 4 }, + [`mp_a_c_panther_01`] = { model = "mp_a_c_panther_01", hash = 0xB91BAB89, outfits = 4 }, + [`mp_a_c_wolf_01`] = { model = "mp_a_c_wolf_01", hash = 0xAD02460F, outfits = 5 }, + [`mp_a_f_m_saloonpatrons_01`] = { model = "mp_a_f_m_saloonpatrons_01", hash = 0x2DA2EA3B, outfits = 20 }, + [`mp_a_f_m_saloonpatrons_02`] = { model = "mp_a_f_m_saloonpatrons_02", hash = 0x51323159, outfits = 22 }, + [`mp_a_f_m_saloonpatrons_03`] = { model = "mp_a_f_m_saloonpatrons_03", hash = 0x6336D562, outfits = 20 }, + [`mp_a_f_m_saloonpatrons_04`] = { model = "mp_a_f_m_saloonpatrons_04", hash = 0x715D71AF, outfits = 20 }, + [`mp_a_f_m_saloonpatrons_05`] = { model = "mp_a_f_m_saloonpatrons_05", hash = 0x83181528, outfits = 20 }, + [`mp_a_m_m_moonshinemakers_01`] = { model = "mp_a_m_m_moonshinemakers_01", hash = 0x80451592, outfits = 30 }, + [`mp_a_m_m_saloonpatrons_01`] = { model = "mp_a_m_m_saloonpatrons_01", hash = 0x9A2437B7, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_02`] = { model = "mp_a_m_m_saloonpatrons_02", hash = 0x51AB26BE, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_03`] = { model = "mp_a_m_m_saloonpatrons_03", hash = 0x40E58533, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_04`] = { model = "mp_a_m_m_saloonpatrons_04", hash = 0x7610EF89, outfits = 35 }, + [`mp_a_m_m_saloonpatrons_05`] = { model = "mp_a_m_m_saloonpatrons_05", hash = 0x63D64B14, outfits = 35 }, + [`mp_g_m_m_animalpoachers_01`] = { model = "mp_g_m_m_animalpoachers_01", hash = 0xBAD963AE, outfits = 71 }, + [`mp_g_m_m_unicriminals_03`] = { model = "mp_g_m_m_unicriminals_03", hash = 0xF2C429A7, outfits = 55 }, + [`mp_g_m_m_unicriminals_04`] = { model = "mp_g_m_m_unicriminals_04", hash = 0x44AA4D72, outfits = 55 }, + [`mp_g_m_m_unicriminals_05`] = { model = "mp_g_m_m_unicriminals_05", hash = 0x5736728A, outfits = 55 }, + [`mp_g_m_m_unicriminals_06`] = { model = "mp_g_m_m_unicriminals_06", hash = 0x2928966F, outfits = 50 }, + [`mp_g_m_m_unicriminals_07`] = { model = "mp_g_m_m_unicriminals_07", hash = 0x3D89BF31, outfits = 55 }, + [`mp_g_m_m_unicriminals_08`] = { model = "mp_g_m_m_unicriminals_08", hash = 0x8F336283, outfits = 50 }, + [`mp_g_m_m_unicriminals_09`] = { model = "mp_g_m_m_unicriminals_09", hash = 0x5E058028, outfits = 50 }, + [`mp_re_moonshinecamp_males_01`] = { model = "mp_re_moonshinecamp_males_01", hash = 0xD3754E47, outfits = 10 }, + [`mp_s_m_m_revenueagents_01`] = { model = "mp_s_m_m_revenueagents_01", hash = 0xD0AC86C4, outfits = 49 }, + [`mp_u_f_m_buyer_improved_01`] = { model = "mp_u_f_m_buyer_improved_01", hash = 0xA7E717F4, outfits = 1 }, + [`mp_u_f_m_buyer_improved_02`] = { model = "mp_u_f_m_buyer_improved_02", hash = 0xB7FC381E, outfits = 1 }, + [`mp_u_f_m_buyer_regular_01`] = { model = "mp_u_f_m_buyer_regular_01", hash = 0x8AB3310A, outfits = 1 }, + [`mp_u_f_m_buyer_regular_02`] = { model = "mp_u_f_m_buyer_regular_02", hash = 0xE065DC6E, outfits = 1 }, + [`mp_u_f_m_buyer_special_01`] = { model = "mp_u_f_m_buyer_special_01", hash = 0x5DDFB326, outfits = 1 }, + [`mp_u_f_m_buyer_special_02`] = { model = "mp_u_f_m_buyer_special_02", hash = 0x53A19EAA, outfits = 1 }, + [`mp_u_m_m_buyer_default_01`] = { model = "mp_u_m_m_buyer_default_01", hash = 0x32ED72B1, outfits = 1 }, + [`mp_u_m_m_buyer_improved_01`] = { model = "mp_u_m_m_buyer_improved_01", hash = 0x60F676A5, outfits = 1 }, + [`mp_u_m_m_buyer_improved_02`] = { model = "mp_u_m_m_buyer_improved_02", hash = 0xE7BD8435, outfits = 1 }, + [`mp_u_m_m_buyer_improved_03`] = { model = "mp_u_m_m_buyer_improved_03", hash = 0x0380BBBB, outfits = 1 }, + [`mp_u_m_m_buyer_improved_04`] = { model = "mp_u_m_m_buyer_improved_04", hash = 0x9767E38B, outfits = 1 }, + [`mp_u_m_m_buyer_improved_05`] = { model = "mp_u_m_m_buyer_improved_05", hash = 0x6929070E, outfits = 1 }, + [`mp_u_m_m_buyer_improved_06`] = { model = "mp_u_m_m_buyer_improved_06", hash = 0x3AC5AA44, outfits = 1 }, + [`mp_u_m_m_buyer_improved_07`] = { model = "mp_u_m_m_buyer_improved_07", hash = 0x8A9AC9F1, outfits = 1 }, + [`mp_u_m_m_buyer_improved_08`] = { model = "mp_u_m_m_buyer_improved_08", hash = 0x75CFA027, outfits = 1 }, + [`mp_u_m_m_buyer_regular_01`] = { model = "mp_u_m_m_buyer_regular_01", hash = 0x1DBD9378, outfits = 1 }, + [`mp_u_m_m_buyer_regular_02`] = { model = "mp_u_m_m_buyer_regular_02", hash = 0x2FEC37D5, outfits = 1 }, + [`mp_u_m_m_buyer_regular_03`] = { model = "mp_u_m_m_buyer_regular_03", hash = 0x41235A43, outfits = 1 }, + [`mp_u_m_m_buyer_regular_04`] = { model = "mp_u_m_m_buyer_regular_04", hash = 0x5358FEAE, outfits = 1 }, + [`mp_u_m_m_buyer_regular_05`] = { model = "mp_u_m_m_buyer_regular_05", hash = 0x41125A1D, outfits = 1 }, + [`mp_u_m_m_buyer_regular_06`] = { model = "mp_u_m_m_buyer_regular_06", hash = 0x5373FEE0, outfits = 1 }, + [`mp_u_m_m_buyer_regular_07`] = { model = "mp_u_m_m_buyer_regular_07", hash = 0xE6BB2570, outfits = 1 }, + [`mp_u_m_m_buyer_regular_08`] = { model = "mp_u_m_m_buyer_regular_08", hash = 0xF8F549E4, outfits = 1 }, + [`mp_u_m_m_buyer_special_01`] = { model = "mp_u_m_m_buyer_special_01", hash = 0x31227E9C, outfits = 1 }, + [`mp_u_m_m_buyer_special_02`] = { model = "mp_u_m_m_buyer_special_02", hash = 0xFED89A09, outfits = 1 }, + [`mp_u_m_m_buyer_special_03`] = { model = "mp_u_m_m_buyer_special_03", hash = 0x0DF73846, outfits = 1 }, + [`mp_u_m_m_buyer_special_04`] = { model = "mp_u_m_m_buyer_special_04", hash = 0xE479E544, outfits = 1 }, + [`mp_u_m_m_buyer_special_05`] = { model = "mp_u_m_m_buyer_special_05", hash = 0xB23B00C7, outfits = 1 }, + [`mp_u_m_m_buyer_special_06`] = { model = "mp_u_m_m_buyer_special_06", hash = 0xC8052C5B, outfits = 1 }, + [`mp_u_m_m_buyer_special_07`] = { model = "mp_u_m_m_buyer_special_07", hash = 0xB6FF8A54, outfits = 1 }, + [`mp_u_m_m_buyer_special_08`] = { model = "mp_u_m_m_buyer_special_08", hash = 0xCDCAB7EA, outfits = 1 }, + [`mp_u_m_m_lawcamp_prisoner_01`] = { model = "mp_u_m_m_lawcamp_prisoner_01", hash = 0x54B1C872, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_01`] = { model = "mp_u_m_m_saloonbrawler_01", hash = 0x60C69F07, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_02`] = { model = "mp_u_m_m_saloonbrawler_02", hash = 0xC45F6627, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_03`] = { model = "mp_u_m_m_saloonbrawler_03", hash = 0x928C8282, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_04`] = { model = "mp_u_m_m_saloonbrawler_04", hash = 0xED9F38AE, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_05`] = { model = "mp_u_m_m_saloonbrawler_05", hash = 0xB427C5B8, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_06`] = { model = "mp_u_m_m_saloonbrawler_06", hash = 0x5B9D94A5, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_07`] = { model = "mp_u_m_m_saloonbrawler_07", hash = 0x6B3733D8, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_08`] = { model = "mp_u_m_m_saloonbrawler_08", hash = 0xA8FBAF60, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_09`] = { model = "mp_u_m_m_saloonbrawler_09", hash = 0x76BDCAE5, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_10`] = { model = "mp_u_m_m_saloonbrawler_10", hash = 0x1150FEA9, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_11`] = { model = "mp_u_m_m_saloonbrawler_11", hash = 0xE29AA13D, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_12`] = { model = "mp_u_m_m_saloonbrawler_12", hash = 0x2DAFB766, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_13`] = { model = "mp_u_m_m_saloonbrawler_13", hash = 0xFFDC5BC0, outfits = 1 }, + [`mp_u_m_m_saloonbrawler_14`] = { model = "mp_u_m_m_saloonbrawler_14", hash = 0x96390873, outfits = 1 }, + [`mp_a_c_bear_01`] = { model = "mp_a_c_bear_01", hash = 0xDF251C39, outfits = 4 }, + [`mp_a_c_bighornram_01`] = { model = "mp_a_c_bighornram_01", hash = 0xE1884260, outfits = 5 }, + [`mp_a_c_buck_01`] = { model = "mp_a_c_buck_01", hash = 0x9770DD23, outfits = 6 }, + [`mp_a_c_buffalo_01`] = { model = "mp_a_c_buffalo_01", hash = 0xC971C4C6, outfits = 4 }, + [`mp_a_c_dogamericanfoxhound_01`] = { model = "mp_a_c_dogamericanfoxhound_01", hash = 0xBFDC1D2A, outfits = 2 }, + [`mp_a_c_elk_01`] = { model = "mp_a_c_elk_01", hash = 0xD1641E60, outfits = 4 }, + [`mp_a_c_fox_01`] = { model = "mp_a_c_fox_01", hash = 0xDECA9205, outfits = 4 }, + [`mp_a_c_moose_01`] = { model = "mp_a_c_moose_01", hash = 0xF8FC8F63, outfits = 4 }, + [`mp_a_c_owl_01`] = { model = "mp_a_c_owl_01", hash = 0x24C5B680, outfits = 1 }, + [`mp_a_c_possum_01`] = { model = "mp_a_c_possum_01", hash = 0xDECED2FD, outfits = 1 }, + [`mp_a_c_pronghorn_01`] = { model = "mp_a_c_pronghorn_01", hash = 0xFE40DC76, outfits = 1 }, + [`mp_a_c_rabbit_01`] = { model = "mp_a_c_rabbit_01", hash = 0xF4EA3B49, outfits = 1 }, + [`mp_a_c_sheep_01`] = { model = "mp_a_c_sheep_01", hash = 0x9A61FCB8, outfits = 1 }, + [`mp_a_f_m_saloonband_females_01`] = { model = "mp_a_f_m_saloonband_females_01", hash = 0x3B7BD8D3, outfits = 5 }, + [`mp_u_m_m_animalpoacher_01`] = { model = "mp_u_m_m_animalpoacher_01", hash = 0xF00A64EC, outfits = 1 }, + [`mp_u_m_m_animalpoacher_02`] = { model = "mp_u_m_m_animalpoacher_02", hash = 0xE1D74886, outfits = 1 }, + [`mp_u_m_m_animalpoacher_03`] = { model = "mp_u_m_m_animalpoacher_03", hash = 0x92552983, outfits = 1 }, + [`mp_u_m_m_animalpoacher_04`] = { model = "mp_u_m_m_animalpoacher_04", hash = 0x84298D2C, outfits = 1 }, + [`mp_u_m_m_animalpoacher_05`] = { model = "mp_u_m_m_animalpoacher_05", hash = 0xA6F2D2BE, outfits = 2 }, + [`mp_u_m_m_animalpoacher_06`] = { model = "mp_u_m_m_animalpoacher_06", hash = 0x5895B605, outfits = 1 }, + [`mp_u_m_m_animalpoacher_07`] = { model = "mp_u_m_m_animalpoacher_07", hash = 0x3DA8002A, outfits = 1 }, + [`mp_u_m_m_animalpoacher_08`] = { model = "mp_u_m_m_animalpoacher_08", hash = 0x7001E4DD, outfits = 1 }, + [`mp_u_m_m_animalpoacher_09`] = { model = "mp_u_m_m_animalpoacher_09", hash = 0x624BC971, outfits = 1 }, + [`mp_g_f_m_armyoffear_01`] = { model = "mp_g_f_m_armyoffear_01", hash = 0xB25E4617, outfits = 20 }, + [`mp_g_m_m_armyoffear_01`] = { model = "mp_g_m_m_armyoffear_01", hash = 0x19382FFC, outfits = 30 }, + [`mp_a_c_chicken_01`] = { model = "mp_a_c_chicken_01", hash = 0x29465719, outfits = 2 }, + [`mp_a_c_deer_01`] = { model = "mp_a_c_deer_01", hash = 0x2EA769DD, outfits = 1 }, + [`mp_a_m_m_saloonband_males_01`] = { model = "mp_a_m_m_saloonband_males_01", hash = 0xBAFD3C1A, outfits = 20 }, + [`mp_re_slumpedhunter_females_01`] = { model = "mp_re_slumpedhunter_females_01", hash = 0x482F6E79, outfits = 4 }, + [`mp_re_slumpedhunter_males_01`] = { model = "mp_re_slumpedhunter_males_01", hash = 0x48F23D48, outfits = 6 }, + [`mp_re_suspendedhunter_males_01`] = { model = "mp_re_suspendedhunter_males_01", hash = 0xD2D2D2D4, outfits = 2 }, + [`mp_u_f_m_nat_traveler_01`] = { model = "mp_u_f_m_nat_traveler_01", hash = 0xEE7487F0, outfits = 1 }, + [`mp_u_f_m_nat_worker_01`] = { model = "mp_u_f_m_nat_worker_01", hash = 0x71E6D0A6, outfits = 1 }, + [`mp_u_f_m_nat_worker_02`] = { model = "mp_u_f_m_nat_worker_02", hash = 0xA48BB5F3, outfits = 1 }, + [`mp_u_f_m_saloonpianist_01`] = { model = "mp_u_f_m_saloonpianist_01", hash = 0x846A2728, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_01`] = { model = "mp_u_m_m_dyingpoacher_01", hash = 0xCF9DD811, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_02`] = { model = "mp_u_m_m_dyingpoacher_02", hash = 0xDF5BF78D, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_03`] = { model = "mp_u_m_m_dyingpoacher_03", hash = 0x6C51917A, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_04`] = { model = "mp_u_m_m_dyingpoacher_04", hash = 0x89F8CCC8, outfits = 1 }, + [`mp_u_m_m_dyingpoacher_05`] = { model = "mp_u_m_m_dyingpoacher_05", hash = 0x9AB66E43, outfits = 1 }, + [`mp_u_m_m_lawcamp_lawman_01`] = { model = "mp_u_m_m_lawcamp_lawman_01", hash = 0x0B979763, outfits = 1 }, + [`mp_u_m_m_lawcamp_lawman_02`] = { model = "mp_u_m_m_lawcamp_lawman_02", hash = 0xF9A5F380, outfits = 1 }, + [`mp_u_m_m_lawcamp_leadofficer_01`] = { model = "mp_u_m_m_lawcamp_leadofficer_01", hash = 0x7B379BDB, outfits = 1 }, + [`mp_u_m_m_nat_farmer_01`] = { model = "mp_u_m_m_nat_farmer_01", hash = 0x58E9D4F4, outfits = 1 }, + [`mp_u_m_m_nat_farmer_02`] = { model = "mp_u_m_m_nat_farmer_02", hash = 0xDB15D94E, outfits = 1 }, + [`mp_u_m_m_nat_farmer_03`] = { model = "mp_u_m_m_nat_farmer_03", hash = 0x0D3CBD9B, outfits = 1 }, + [`mp_u_m_m_nat_farmer_04`] = { model = "mp_u_m_m_nat_farmer_04", hash = 0xEFDC82DB, outfits = 1 }, + [`mp_u_m_m_nat_photographer_01`] = { model = "mp_u_m_m_nat_photographer_01", hash = 0x2CDF85F7, outfits = 1 }, + [`mp_u_m_m_nat_photographer_02`] = { model = "mp_u_m_m_nat_photographer_02", hash = 0x3E92A95D, outfits = 1 }, + [`mp_u_m_m_nat_rancher_01`] = { model = "mp_u_m_m_nat_rancher_01", hash = 0x2BE8BC9C, outfits = 1 }, + [`mp_u_m_m_nat_rancher_02`] = { model = "mp_u_m_m_nat_rancher_02", hash = 0x7AA6DA17, outfits = 1 }, + [`mp_u_m_m_nat_townfolk_01`] = { model = "mp_u_m_m_nat_townfolk_01", hash = 0x02A89468, outfits = 1 }, + [`mp_u_m_m_strwelcomecenter_02`] = { model = "mp_u_m_m_strwelcomecenter_02", hash = 0xB9629EFC, outfits = 1 }, + [`MP_BEAU_BINK_FEMALES_01`] = { model = "MP_BEAU_BINK_FEMALES_01", hash = 0xC161E8A4, outfits = 1 }, + [`MP_BEAU_BINK_MALES_01`] = { model = "MP_BEAU_BINK_MALES_01", hash = 0xEDF51277, outfits = 7 }, + [`MP_CARMELA_BINK_VICTIM_MALES_01`] = { model = "MP_CARMELA_BINK_VICTIM_MALES_01", hash = 0x9ACE7910, outfits = 5 }, + [`MP_CD_REVENGEMAYOR_01`] = { model = "MP_CD_REVENGEMAYOR_01", hash = 0x878040F4, outfits = 21 }, + [`mp_fm_bounty_caged_males_01`] = { model = "mp_fm_bounty_caged_males_01", hash = 0xF7831C85, outfits = 2 }, + [`mp_fm_bounty_ct_corpses_01`] = { model = "mp_fm_bounty_ct_corpses_01", hash = 0x3F85E344, outfits = 2 }, + [`mp_fm_bounty_hideout_males_01`] = { model = "mp_fm_bounty_hideout_males_01", hash = 0x85885C97, outfits = 1 }, + [`mp_fm_bounty_horde_males_01`] = { model = "mp_fm_bounty_horde_males_01", hash = 0x696D66E4, outfits = 5 }, + [`mp_fm_bounty_infiltration_males_01`] = { model = "mp_fm_bounty_infiltration_males_01", hash = 0x813F5ED3, outfits = 2 }, + [`MP_FM_BOUNTYTARGET_MALES_DLC008_01`] = { model = "MP_FM_BOUNTYTARGET_MALES_DLC008_01", hash = 0xF6458169, outfits = 53 }, + [`mp_fm_knownbounty_guards_01`] = { model = "mp_fm_knownbounty_guards_01", hash = 0xC1FD6394, outfits = 1 }, + [`MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01`] = { model = "MP_FM_KNOWNBOUNTY_INFORMANTS_FEMALES_01", hash = 0xD9162F29, outfits = 1 }, + [`mp_fm_knownbounty_informants_males_01`] = { model = "mp_fm_knownbounty_informants_males_01", hash = 0xA97E2D65, outfits = 7 }, + [`mp_fm_multitrack_victims_males_01`] = { model = "mp_fm_multitrack_victims_males_01", hash = 0x32C42256, outfits = 2 }, + [`mp_fm_stakeout_corpses_males_01`] = { model = "mp_fm_stakeout_corpses_males_01", hash = 0x4957CFEF, outfits = 2 }, + [`mp_fm_stakeout_poker_males_01`] = { model = "mp_fm_stakeout_poker_males_01", hash = 0x24497ABF, outfits = 2 }, + [`mp_fm_stakeout_target_males_01`] = { model = "mp_fm_stakeout_target_males_01", hash = 0xA5F85792, outfits = 6 }, + [`mp_fm_track_prospector_01`] = { model = "mp_fm_track_prospector_01", hash = 0x1E14106E, outfits = 1 }, + [`mp_fm_track_sd_lawman_01`] = { model = "mp_fm_track_sd_lawman_01", hash = 0xC8A1EC4C, outfits = 1 }, + [`mp_fm_track_targets_males_01`] = { model = "mp_fm_track_targets_males_01", hash = 0xAA6CE21D, outfits = 3 }, + [`MP_G_F_M_CULTGUARDS_01`] = { model = "MP_G_F_M_CULTGUARDS_01", hash = 0x83CA7BB6, outfits = 16 }, + [`mp_g_f_m_cultmembers_01`] = { model = "mp_g_f_m_cultmembers_01", hash = 0xC882A3EE, outfits = 13 }, + [`MP_G_M_M_CULTGUARDS_01`] = { model = "MP_G_M_M_CULTGUARDS_01", hash = 0xD0DFAE8C, outfits = 27 }, + [`mp_g_m_m_cultmembers_01`] = { model = "mp_g_m_m_cultmembers_01", hash = 0xAE40CCCC, outfits = 22 }, + [`MP_G_M_M_MERCS_01`] = { model = "MP_G_M_M_MERCS_01", hash = 0x7F1377B7, outfits = 2 }, + [`MP_G_M_M_RIFLECRONIES_01`] = { model = "MP_G_M_M_RIFLECRONIES_01", hash = 0xE733264E, outfits = 6 }, + [`MP_LBM_CARMELA_BANDITOS_01`] = { model = "MP_LBM_CARMELA_BANDITOS_01", hash = 0x9C1EBED9, outfits = 4 }, + [`MP_LM_STEALHORSE_BUYERS_01`] = { model = "MP_LM_STEALHORSE_BUYERS_01", hash = 0x96CEA293, outfits = 3 }, + [`MP_U_F_M_CULTPRIEST_01`] = { model = "MP_U_F_M_CULTPRIEST_01", hash = 0x8C5F7BCC, outfits = 1 }, + [`MP_U_F_M_LEGENDARYBOUNTY_03`] = { model = "MP_U_F_M_LEGENDARYBOUNTY_03", hash = 0x5A5EA2DF, outfits = 5 }, + [`MP_U_M_M_BANKPRISONER_01`] = { model = "MP_U_M_M_BANKPRISONER_01", hash = 0xF99F0909, outfits = 1 }, + [`MP_U_M_M_BINKMERCS_01`] = { model = "MP_U_M_M_BINKMERCS_01", hash = 0xA8BEA305, outfits = 7 }, + [`MP_U_M_M_CULTPRIEST_01`] = { model = "MP_U_M_M_CULTPRIEST_01", hash = 0xBF0B11F0, outfits = 3 }, + [`MP_U_M_M_DROPOFF_JOSIAH_01`] = { model = "MP_U_M_M_DROPOFF_JOSIAH_01", hash = 0xBA59A221, outfits = 1 }, + [`MP_U_M_M_LEGENDARYBOUNTY_08`] = { model = "MP_U_M_M_LEGENDARYBOUNTY_08", hash = 0x9A9164E1, outfits = 3 }, + [`MP_U_M_M_LEGENDARYBOUNTY_09`] = { model = "MP_U_M_M_LEGENDARYBOUNTY_09", hash = 0x872A3E13, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_01`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_01", hash = 0x11952F60, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_02`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_02", hash = 0xFFE38BFD, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_03`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03", hash = 0x2D22E67B, outfits = 1 }, + [`mp_U_M_M_RHD_BOUNTYTARGET_03B`] = { model = "mp_U_M_M_RHD_BOUNTYTARGET_03B", hash = 0x76D0DAE4, outfits = 1 }, + [`MP_U_M_M_LOM_TRAIN_CONDUCTOR_01`] = { model = "MP_U_M_M_LOM_TRAIN_CONDUCTOR_01", hash = 0x0329C664, outfits = 1 }, + [`MP_U_M_M_OUTLAW_COACHDRIVER_01`] = { model = "MP_U_M_M_OUTLAW_COACHDRIVER_01", hash = 0x059D1627, outfits = 1 }, + [`MP_U_M_M_FOS_DOCKWORKER_01`] = { model = "MP_U_M_M_FOS_DOCKWORKER_01", hash = 0x08258837, outfits = 1 }, + [`MP_U_M_M_DROPOFF_BRONTE_01`] = { model = "MP_U_M_M_DROPOFF_BRONTE_01", hash = 0x0838D137, outfits = 1 }, + [`MP_U_M_M_HCTEL_ARM_HOSTAGE_02`] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_02", hash = 0x0BE08FB6, outfits = 1 }, + [`MP_U_M_M_FOS_HARBORMASTER_01`] = { model = "MP_U_M_M_FOS_HARBORMASTER_01", hash = 0x0DD5100A, outfits = 1 }, + [`MP_U_M_M_FOS_TOWN_VIGILANTE_01`] = { model = "MP_U_M_M_FOS_TOWN_VIGILANTE_01", hash = 0x0FD9B9AD, outfits = 1 }, + [`MP_U_M_M_OUTLAW_COVINGTON_01`] = { model = "MP_U_M_M_OUTLAW_COVINGTON_01", hash = 0x139CC38E, outfits = 1 }, + [`MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01`] = { model = "MP_A_F_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x194B76E7, outfits = 5 }, + [`MP_U_M_M_FOS_BAGHOLDERS_01`] = { model = "MP_U_M_M_FOS_BAGHOLDERS_01", hash = 0x1AA818AE, outfits = 5 }, + [`MP_U_M_M_HCTEL_ARM_HOSTAGE_01`] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_01", hash = 0x1D9AB32A, outfits = 1 }, + [`MP_U_M_M_LOM_TRAIN_BARRICADE_01`] = { model = "MP_U_M_M_LOM_TRAIN_BARRICADE_01", hash = 0x25CBE18C, outfits = 7 }, + [`MP_U_M_M_FOS_SDSALOON_RECIPIENT_02`] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_02", hash = 0x30ED986F, outfits = 1 }, + [`MP_U_M_M_FOS_MUSICIAN_01`] = { model = "MP_U_M_M_FOS_MUSICIAN_01", hash = 0x33191090, outfits = 1 }, + [`MP_CS_ANTONYFOREMEN`] = { model = "MP_CS_ANTONYFOREMEN", hash = 0x358E2F94, outfits = 2 }, + [`MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01`] = { model = "MP_A_M_M_PROTECT_ENDFLOW_BLACKWATER_01", hash = 0x358EDB23, outfits = 5 }, + [`MP_U_M_M_FOS_RAILWAY_FOREMAN_01`] = { model = "MP_U_M_M_FOS_RAILWAY_FOREMAN_01", hash = 0x36B00529, outfits = 1 }, + [`MP_FM_BOUNTYTARGET_FEMALES_DLC008_01`] = { model = "MP_FM_BOUNTYTARGET_FEMALES_DLC008_01", hash = 0x3EECF401, outfits = 5 }, + [`MP_U_M_M_PROTECT_ARMADILLO_01`] = { model = "MP_U_M_M_PROTECT_ARMADILLO_01", hash = 0x3F629157, outfits = 1 }, + [`MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01`] = { model = "MP_U_M_M_PROTECT_FRIENDLY_ARMADILLO_01", hash = 0x46B92ED0, outfits = 5 }, + [`MP_U_M_M_LOM_TRAIN_PRISONERS_01`] = { model = "MP_U_M_M_LOM_TRAIN_PRISONERS_01", hash = 0x510EBF17, outfits = 2 }, + [`MP_A_M_M_COACHGUARDS_01`] = { model = "MP_A_M_M_COACHGUARDS_01", hash = 0x57D3AE19, outfits = 15 }, + [`MP_U_M_M_FOS_ROGUETHIEF_01`] = { model = "MP_U_M_M_FOS_ROGUETHIEF_01", hash = 0x58181CAF, outfits = 1 }, + [`MP_U_M_M_FOS_RAILWAY_DRIVER_01`] = { model = "MP_U_M_M_FOS_RAILWAY_DRIVER_01", hash = 0x592FCF55, outfits = 1 }, + [`MP_U_M_M_LOM_ASBMERCS_01`] = { model = "MP_U_M_M_LOM_ASBMERCS_01", hash = 0x5DE76175, outfits = 2 }, + [`MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01`] = { model = "MP_U_M_M_LOM_TRAIN_WAGONDROPOFF_01", hash = 0x5FBDB3E7, outfits = 1 }, + [`MP_U_M_O_LOM_ASBFOREMAN_01`] = { model = "MP_U_M_O_LOM_ASBFOREMAN_01", hash = 0x617AD6A7, outfits = 1 }, + [`MP_G_M_M_MOUNTAINMEN_01`] = { model = "MP_G_M_M_MOUNTAINMEN_01", hash = 0x64BCC144, outfits = 25 }, + [`MP_U_M_M_PROTECT_STRAWBERRY_01`] = { model = "MP_U_M_M_PROTECT_STRAWBERRY_01", hash = 0x6829879B, outfits = 1 }, + [`MP_U_M_M_PROTECT_HALLOWEEN_NED_01`] = { model = "MP_U_M_M_PROTECT_HALLOWEEN_NED_01", hash = 0x68CFBA8F, outfits = 1 }, + [`MP_U_M_M_OUTLAW_MPVICTIM_01`] = { model = "MP_U_M_M_OUTLAW_MPVICTIM_01", hash = 0x6A78FE6C, outfits = 1 }, + [`MP_U_M_M_LOM_SD_DOCKWORKER_01`] = { model = "MP_U_M_M_LOM_SD_DOCKWORKER_01", hash = 0x6AB56BDA, outfits = 1 }, + [`MP_U_M_M_FOS_TOWN_OUTLAW_01`] = { model = "MP_U_M_M_FOS_TOWN_OUTLAW_01", hash = 0x71A35899, outfits = 4 }, + [`MP_U_M_M_FOS_RECOVERY_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_RECOVERY_RECIPIENT_01", hash = 0x7494D380, outfits = 6 }, + [`MP_U_M_M_HCTEL_ARM_HOSTAGE_03`] = { model = "MP_U_M_M_HCTEL_ARM_HOSTAGE_03", hash = 0x7875E8E3, outfits = 1 }, + [`MP_U_M_M_FOS_DROPOFF_01`] = { model = "MP_U_M_M_FOS_DROPOFF_01", hash = 0x79912CAE, outfits = 1 }, + [`MP_U_M_M_FOS_SDSALOON_GAMBLER_01`] = { model = "MP_U_M_M_FOS_SDSALOON_GAMBLER_01", hash = 0x83123AF1, outfits = 1 }, + [`MP_U_M_M_LOM_TRAIN_LAWTARGET_01`] = { model = "MP_U_M_M_LOM_TRAIN_LAWTARGET_01", hash = 0x8C37025E, outfits = 1 }, + [`MP_G_M_M_FOS_DEBTGANGCAPITALI_01`] = { model = "MP_G_M_M_FOS_DEBTGANGCAPITALI_01", hash = 0x8D357D39, outfits = 5 }, + [`MP_A_M_M_LOM_ASBMINERS_01`] = { model = "MP_A_M_M_LOM_ASBMINERS_01", hash = 0x8EA8D407, outfits = 2 }, + [`MP_FM_BOUNTY_HORDE_LAW_01`] = { model = "MP_FM_BOUNTY_HORDE_LAW_01", hash = 0x9012A8C2, outfits = 2 }, + [`MP_U_M_M_LOM_HEAD_SECURITY_01`] = { model = "MP_U_M_M_LOM_HEAD_SECURITY_01", hash = 0x982C82C5, outfits = 4 }, + [`MP_U_M_M_FOS_SDSALOON_OWNER_01`] = { model = "MP_U_M_M_FOS_SDSALOON_OWNER_01", hash = 0x98C03046, outfits = 1 }, + [`MP_U_M_M_MUSICIAN_01`] = { model = "MP_U_M_M_MUSICIAN_01", hash = 0x9B2A9005, outfits = 1 }, + [`MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01`] = { model = "MP_U_M_M_OUTLAW_ARRESTEDTHIEF_01", hash = 0x9DFA9B6E, outfits = 1 }, + [`MP_U_M_M_FOS_RAILWAY_BARON_01`] = { model = "MP_U_M_M_FOS_RAILWAY_BARON_01", hash = 0x9E96638B, outfits = 1 }, + [`MP_G_M_O_UNIEXCONFEDS_CAP_01`] = { model = "MP_G_M_O_UNIEXCONFEDS_CAP_01", hash = 0xA1B84FC1, outfits = 1 }, + [`MP_U_M_M_FOS_SDSALOON_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_SDSALOON_RECIPIENT_01", hash = 0xA303FC9A, outfits = 2 }, + [`MP_U_M_M_INTERROGATOR_01`] = { model = "MP_U_M_M_INTERROGATOR_01", hash = 0xA37DBD30, outfits = 1 }, + [`MP_A_M_M_ASBMINERS_01`] = { model = "MP_A_M_M_ASBMINERS_01", hash = 0xAF86511B, outfits = 2 }, + [`MP_U_M_M_ASBDEPUTY_01`] = { model = "MP_U_M_M_ASBDEPUTY_01", hash = 0xAF9B36E2, outfits = 1 }, + [`MP_U_M_M_LOM_DROPOFF_BRONTE_01`] = { model = "MP_U_M_M_LOM_DROPOFF_BRONTE_01", hash = 0xB06054ED, outfits = 1 }, + [`MP_BINK_EMBER_OF_THE_EAST_MALES_01`] = { model = "MP_BINK_EMBER_OF_THE_EAST_MALES_01", hash = 0xB4CD18D6, outfits = 9 }, + [`mp_U_M_M_FOS_RAILWAY_GUARDS_01`] = { model = "mp_U_M_M_FOS_RAILWAY_GUARDS_01", hash = 0xB4F3EF87, outfits = 3 }, + [`MP_G_M_M_FOS_VIGILANTES_01`] = { model = "MP_G_M_M_FOS_VIGILANTES_01", hash = 0xB50453FF, outfits = 10 }, + [`mp_S_M_M_REVENUEAGENTS_CAP_01`] = { model = "mp_S_M_M_REVENUEAGENTS_CAP_01", hash = 0xBB22D33E, outfits = 3 }, + [`MP_U_M_M_LOM_SALOON_DRUNK_01`] = { model = "MP_U_M_M_LOM_SALOON_DRUNK_01", hash = 0xBD27319D, outfits = 1 }, + [`MP_A_M_M_ASBMINERS_02`] = { model = "MP_A_M_M_ASBMINERS_02", hash = 0xBDD36DB5, outfits = 2 }, + [`MP_U_M_M_LOM_TRAIN_CLERK_01`] = { model = "MP_U_M_M_LOM_TRAIN_CLERK_01", hash = 0xC2B71883, outfits = 1 }, + [`MP_U_M_M_PROTECT_VALENTINE_01`] = { model = "MP_U_M_M_PROTECT_VALENTINE_01", hash = 0xC358949B, outfits = 1 }, + [`MP_S_M_M_FOS_HARBORGUARDS_01`] = { model = "MP_S_M_M_FOS_HARBORGUARDS_01", hash = 0xC37F22A8, outfits = 20 }, + [`MP_U_M_M_PROTECT_MERCER_CONTACT_01`] = { model = "MP_U_M_M_PROTECT_MERCER_CONTACT_01", hash = 0xCB86F5E4, outfits = 1 }, + [`MP_U_M_M_OUTLAW_RHD_NOBLE_01`] = { model = "MP_U_M_M_OUTLAW_RHD_NOBLE_01", hash = 0xCD3F93CC, outfits = 4 }, + [`MP_A_M_M_JAMESONGUARD_01`] = { model = "MP_A_M_M_JAMESONGUARD_01", hash = 0xD2D648CE, outfits = 50 }, + [`MP_U_M_M_FOS_RAILWAY_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_RAILWAY_RECIPIENT_01", hash = 0xD34CCF4F, outfits = 1 }, + [`MP_U_M_M_PROTECT_BLACKWATER_01`] = { model = "MP_U_M_M_PROTECT_BLACKWATER_01", hash = 0xD7A31642, outfits = 1 }, + [`MP_U_M_M_HCTEL_SD_TARGET_02`] = { model = "MP_U_M_M_HCTEL_SD_TARGET_02", hash = 0xDA440097, outfits = 2 }, + [`MP_G_M_M_FOS_DEBTGANG_01`] = { model = "MP_G_M_M_FOS_DEBTGANG_01", hash = 0xDA5BAF27, outfits = 15 }, + [`MP_U_M_M_FOS_SABOTEUR_01`] = { model = "MP_U_M_M_FOS_SABOTEUR_01", hash = 0xDA664071, outfits = 1 }, + [`MP_U_M_M_HCTEL_SD_GANG_01`] = { model = "MP_U_M_M_HCTEL_SD_GANG_01", hash = 0xDC558720, outfits = 3 }, + [`MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01`] = { model = "MP_U_M_M_PROTECT_MACFARLANES_CONTACT_01", hash = 0xE2DCE94B, outfits = 1 }, + [`MP_U_M_M_LOM_DOCKWORKER_01`] = { model = "MP_U_M_M_LOM_DOCKWORKER_01", hash = 0xE514F0BF, outfits = 1 }, + [`MP_U_M_M_FOS_DOCKRECIPIENTS_01`] = { model = "MP_U_M_M_FOS_DOCKRECIPIENTS_01", hash = 0xE58B4A18, outfits = 2 }, + [`MP_U_F_M_OUTLAW_SOCIETYLADY_01`] = { model = "MP_U_F_M_OUTLAW_SOCIETYLADY_01", hash = 0xE5E2AAE3, outfits = 1 }, + [`MP_U_M_M_LOM_RHD_SHERIFF_01`] = { model = "MP_U_M_M_LOM_RHD_SHERIFF_01", hash = 0xE8F03F0A, outfits = 1 }, + [`MP_U_M_M_FOS_CORNWALL_BANDITS_01`] = { model = "MP_U_M_M_FOS_CORNWALL_BANDITS_01", hash = 0xEA3457D9, outfits = 3 }, + [`MP_U_M_M_PROTECT_STRAWBERRY`] = { model = "MP_U_M_M_PROTECT_STRAWBERRY", hash = 0xEA626A60, outfits = 1 }, + [`MP_GuidoMartelli`] = { model = "MP_GuidoMartelli", hash = 0xEAA42177, outfits = 1 }, + [`MP_U_M_M_HARBORMASTER_01`] = { model = "MP_U_M_M_HARBORMASTER_01", hash = 0xEAAE023B, outfits = 1 }, + [`MP_U_M_M_LOM_RHD_SMITHASSISTANT_01`] = { model = "MP_U_M_M_LOM_RHD_SMITHASSISTANT_01", hash = 0xEB2B8251, outfits = 1 }, + [`MP_U_M_M_FOS_INTERROGATOR_02`] = { model = "MP_U_M_M_FOS_INTERROGATOR_02", hash = 0xED2FDF9A, outfits = 1 }, + [`MP_U_M_M_FOS_INTERROGATOR_01`] = { model = "MP_U_M_M_FOS_INTERROGATOR_01", hash = 0xED64E004, outfits = 1 }, + [`MP_U_M_M_HCTEL_SD_TARGET_01`] = { model = "MP_U_M_M_HCTEL_SD_TARGET_01", hash = 0xED7DA70A, outfits = 1 }, + [`MP_U_M_M_FOS_CORNWALLGUARD_01`] = { model = "MP_U_M_M_FOS_CORNWALLGUARD_01", hash = 0xEE6A6493, outfits = 2 }, + [`MP_A_M_M_FOS_COACHGUARDS_01`] = { model = "MP_A_M_M_FOS_COACHGUARDS_01", hash = 0xEF9BAB0C, outfits = 15 }, + [`MP_U_F_M_PROTECT_MERCER_01`] = { model = "MP_U_F_M_PROTECT_MERCER_01", hash = 0xF14E5BDB, outfits = 5 }, + [`MP_U_M_M_DOCKRECIPIENTS_01`] = { model = "MP_U_M_M_DOCKRECIPIENTS_01", hash = 0xF24DC82F, outfits = 2 }, + [`MP_U_M_M_LOM_RHD_DEALERS_01`] = { model = "MP_U_M_M_LOM_RHD_DEALERS_01", hash = 0xFDA2404B, outfits = 3 }, + [`MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01`] = { model = "MP_U_M_M_FOS_COACHHOLDUP_RECIPIENT_01", hash = 0xFE3F4984, outfits = 6 }, + [`MP_U_M_M_HCTEL_SD_TARGET_03`] = { model = "MP_U_M_M_HCTEL_SD_TARGET_03", hash = 0xFFDFCBCE, outfits = 6 }, + [`MP_U_M_M_FOS_RAILWAY_HUNTER_01`] = { model = "MP_U_M_M_FOS_RAILWAY_HUNTER_01", hash = 0xFFF1AB44, outfits = 1 }, } Peds.Special = { - [0x0926B79B] = { model = "amsp_robsdgunsmith_males_01", hash = 0x0926B79B, outfits = 5 }, - [0x3D27C285] = { model = "am_valentinedoctors_females_01", hash = 0x3D27C285, outfits = 1 }, - [0x6B6968AA] = { model = "casp_coachrobbery_lenny_males_01", hash = 0x6B6968AA, outfits = 2 }, - [0x63F5A730] = { model = "casp_coachrobbery_micah_males_01", hash = 0x63F5A730, outfits = 1 }, - [0x7A8FF723] = { model = "casp_hunting02_males_01", hash = 0x7A8FF723, outfits = 2 }, - [0x0B4466F8] = { model = "cr_strawberry_males_01", hash = 0x0B4466F8, outfits = 19 }, - [0x0D7B4617] = { model = "female_skeleton", hash = 0x0D7B4617, outfits = 7 }, - [0x86B3E995] = { model = "gc_lemoynecaptive_males_01", hash = 0x86B3E995, outfits = 1 }, - [0x8C1DC732] = { model = "gc_skinnertorture_males_01", hash = 0x8C1DC732, outfits = 2 }, - [0x70E42FE7] = { model = "ge_delloboparty_females_01", hash = 0x70E42FE7, outfits = 2 }, - [0xA9567850] = { model = "loansharking_asbminer_males_01", hash = 0xA9567850, outfits = 1 }, - [0x9DD82D05] = { model = "loansharking_horsechase1_males_01", hash = 0x9DD82D05, outfits = 2 }, - [0x4E711917] = { model = "loansharking_undertaker_females_01", hash = 0x4E711917, outfits = 4 }, - [0x67C00DFB] = { model = "loansharking_undertaker_males_01", hash = 0x67C00DFB, outfits = 3 }, - [0xDFEF070E] = { model = "male_skeleton", hash = 0xDFEF070E, outfits = 4 }, - [0xC4C0600A] = { model = "mbh_rhodesrancher_females_01", hash = 0xC4C0600A, outfits = 1 }, - [0x5F0A1475] = { model = "mbh_rhodesrancher_teens_01", hash = 0x5F0A1475, outfits = 1 }, - [0xDF4A4EAC] = { model = "mbh_skinnersearch_males_01", hash = 0xDF4A4EAC, outfits = 2 }, - [0x741E7444] = { model = "mes_abigail2_males_01", hash = 0x741E7444, outfits = 4 }, - [0xB7E1A569] = { model = "mes_finale2_females_01", hash = 0xB7E1A569, outfits = 1 }, - [0x28618747] = { model = "mes_finale2_males_01", hash = 0x28618747, outfits = 4 }, - [0x389A64ED] = { model = "mes_finale3_males_01", hash = 0x389A64ED, outfits = 3 }, - [0x45402C7A] = { model = "mes_marston1_males_01", hash = 0x45402C7A, outfits = 2 }, - [0x991856F4] = { model = "mes_marston2_males_01", hash = 0x991856F4, outfits = 4 }, - [0x3E837D5B] = { model = "mes_marston5_2_males_01", hash = 0x3E837D5B, outfits = 1 }, - [0x01C0B992] = { model = "mes_marston6_females_01", hash = 0x01C0B992, outfits = 1 }, - [0x7BE6B9E8] = { model = "mes_marston6_males_01", hash = 0x7BE6B9E8, outfits = 29 }, - [0x1DE80335] = { model = "mes_marston6_teens_01", hash = 0x1DE80335, outfits = 1 }, - [0x74B85769] = { model = "mes_sadie4_males_01", hash = 0x74B85769, outfits = 1 }, - [0x09FBB7EC] = { model = "mes_sadie5_males_01", hash = 0x09FBB7EC, outfits = 7 }, - [0xF61DB75E] = { model = "msp_bountyhunter1_females_01", hash = 0xF61DB75E, outfits = 1 }, - [0xF4CED35C] = { model = "msp_braithwaites1_males_01", hash = 0xF4CED35C, outfits = 1 }, - [0x11C73FBE] = { model = "msp_feud1_males_01", hash = 0x11C73FBE, outfits = 4 }, - [0x776A1598] = { model = "msp_fussar2_males_01", hash = 0x776A1598, outfits = 3 }, - [0xD871A306] = { model = "msp_gang2_males_01", hash = 0xD871A306, outfits = 1 }, - [0x144452D7] = { model = "msp_gang3_males_01", hash = 0x144452D7, outfits = 2 }, - [0x39FF837C] = { model = "msp_grays1_males_01", hash = 0x39FF837C, outfits = 1 }, - [0xEA4A504D] = { model = "msp_grays2_males_01", hash = 0xEA4A504D, outfits = 1 }, - [0xDBAC89A0] = { model = "msp_guarma2_males_01", hash = 0xDBAC89A0, outfits = 3 }, - [0x1E9549CA] = { model = "msp_industry1_females_01", hash = 0x1E9549CA, outfits = 7 }, - [0xB294E4CA] = { model = "msp_industry1_males_01", hash = 0xB294E4CA, outfits = 8 }, - [0x59B2E634] = { model = "msp_industry3_females_01", hash = 0x59B2E634, outfits = 1 }, - [0x00E36FB7] = { model = "msp_industry3_males_01", hash = 0x00E36FB7, outfits = 8 }, - [0x25319F37] = { model = "msp_mary1_females_01", hash = 0x25319F37, outfits = 1 }, - [0x283AECFD] = { model = "msp_mary1_males_01", hash = 0x283AECFD, outfits = 2 }, - [0xC1040D2C] = { model = "msp_mary3_males_01", hash = 0xC1040D2C, outfits = 6 }, - [0x28F695AC] = { model = "msp_mob0_males_01", hash = 0x28F695AC, outfits = 1 }, - [0xF148DBF6] = { model = "msp_mob1_females_01", hash = 0xF148DBF6, outfits = 8 }, - [0x45453194] = { model = "msp_mob1_males_01", hash = 0x45453194, outfits = 7 }, - [0x391B7870] = { model = "msp_mob1_teens_01", hash = 0x391B7870, outfits = 7 }, - [0x90ADB7F1] = { model = "msp_mob3_females_01", hash = 0x90ADB7F1, outfits = 2 }, - [0xF1804E11] = { model = "msp_mob3_males_01", hash = 0xF1804E11, outfits = 4 }, - [0xB4F27E28] = { model = "msp_mudtown3b_females_01", hash = 0xB4F27E28, outfits = 20 }, - [0x90BA2D73] = { model = "msp_mudtown3b_males_01", hash = 0x90BA2D73, outfits = 20 }, - [0xC237B30F] = { model = "msp_mudtown3_males_01", hash = 0xC237B30F, outfits = 2 }, - [0x297869BA] = { model = "msp_mudtown5_males_01", hash = 0x297869BA, outfits = 5 }, - [0xB4685DE4] = { model = "msp_native1_males_01", hash = 0xB4685DE4, outfits = 3 }, - [0x97990286] = { model = "msp_reverend1_males_01", hash = 0x97990286, outfits = 4 }, - [0x77807351] = { model = "msp_saintdenis1_females_01", hash = 0x77807351, outfits = 6 }, - [0xF21ED93D] = { model = "msp_saintdenis1_males_01", hash = 0xF21ED93D, outfits = 17 }, - [0x961D2A2D] = { model = "msp_saloon1_females_01", hash = 0x961D2A2D, outfits = 22 }, - [0x8F03BE01] = { model = "msp_saloon1_males_01", hash = 0x8F03BE01, outfits = 45 }, - [0x1A2459CB] = { model = "msp_smuggler2_males_01", hash = 0x1A2459CB, outfits = 2 }, - [0x1754F82F] = { model = "msp_trainrobbery2_males_01", hash = 0x1754F82F, outfits = 4 }, - [0x12EDDBCE] = { model = "msp_utopia1_males_01", hash = 0x12EDDBCE, outfits = 10 }, - [0xDE01E0F9] = { model = "msp_winter4_males_01", hash = 0xDE01E0F9, outfits = 1 }, - [0x00B69710] = { model = "player_three", hash = 0x00B69710, outfits = 33 }, - [0x0D7114C9] = { model = "player_zero", hash = 0x0D7114C9, outfits = 74 }, - [0x5C32DA8F] = { model = "rces_abigail3_females_01", hash = 0x5C32DA8F, outfits = 2 }, - [0x7BA67807] = { model = "rces_abigail3_males_01", hash = 0x7BA67807, outfits = 1 }, - [0xE1566351] = { model = "rces_beechers1_males_01", hash = 0xE1566351, outfits = 4 }, - [0xF63E07A5] = { model = "rces_evelynmiller_males_01", hash = 0xF63E07A5, outfits = 3 }, - [0xFB1CC58C] = { model = "rcsp_beauandpenelope1_females_01", hash = 0xFB1CC58C, outfits = 16 }, - [0x7BD8E784] = { model = "rcsp_beauandpenelope_males_01", hash = 0x7BD8E784, outfits = 5 }, - [0x6A407345] = { model = "rcsp_calderonstage2_males_01", hash = 0x6A407345, outfits = 2 }, - [0x21DF353D] = { model = "rcsp_calderonstage2_teens_01", hash = 0x21DF353D, outfits = 3 }, - [0x5278C19E] = { model = "rcsp_calderon_males_01", hash = 0x5278C19E, outfits = 3 }, - [0xCAF14192] = { model = "rcsp_calloway_males_01", hash = 0xCAF14192, outfits = 5 }, - [0xF9FF65FA] = { model = "rcsp_coachrobbery_males_01", hash = 0xF9FF65FA, outfits = 5 }, - [0xDF975FD2] = { model = "rcsp_crackpot_females_01", hash = 0xDF975FD2, outfits = 2 }, - [0x79A9623E] = { model = "rcsp_crackpot_males_01", hash = 0x79A9623E, outfits = 4 }, - [0x7F993AAD] = { model = "rcsp_creole_males_01", hash = 0x7F993AAD, outfits = 1 }, - [0xF9EB2E96] = { model = "rcsp_dutch1_males_01", hash = 0xF9EB2E96, outfits = 8 }, - [0x880560E1] = { model = "rcsp_dutch3_males_01", hash = 0x880560E1, outfits = 2 }, - [0x2B814C4B] = { model = "rcsp_edithdownes2_males_01", hash = 0x2B814C4B, outfits = 2 }, - [0xC4C59AD4] = { model = "rcsp_formyart_females_01", hash = 0xC4C59AD4, outfits = 6 }, - [0x158FFD8B] = { model = "rcsp_formyart_males_01", hash = 0x158FFD8B, outfits = 10 }, - [0x494FC69B] = { model = "rcsp_gunslingerduel4_males_01", hash = 0x494FC69B, outfits = 4 }, - [0x1268B0C9] = { model = "rcsp_herekittykitty_males_01", hash = 0x1268B0C9, outfits = 2 }, - [0x1319E95B] = { model = "rcsp_hunting1_males_01", hash = 0x1319E95B, outfits = 2 }, - [0x48EE7011] = { model = "rcsp_mrmayor_males_01", hash = 0x48EE7011, outfits = 1 }, - [0xB11093B2] = { model = "rcsp_native1s2_males_01", hash = 0xB11093B2, outfits = 5 }, - [0x4AAE5FA2] = { model = "rcsp_native_americanfathers_males_01", hash = 0x4AAE5FA2, outfits = 1 }, - [0x1B92FA61] = { model = "rcsp_oddfellows_males_01", hash = 0x1B92FA61, outfits = 1 }, - [0xBB375EE3] = { model = "rcsp_odriscolls2_females_01", hash = 0xBB375EE3, outfits = 3 }, - [0xC00FA82A] = { model = "rcsp_poisonedwell_females_01", hash = 0xC00FA82A, outfits = 4 }, - [0x36C54685] = { model = "rcsp_poisonedwell_males_01", hash = 0x36C54685, outfits = 6 }, - [0x4F0CE5B2] = { model = "rcsp_poisonedwell_teens_01", hash = 0x4F0CE5B2, outfits = 2 }, - [0xA4FD4905] = { model = "rcsp_ridethelightning_females_01", hash = 0xA4FD4905, outfits = 3 }, - [0x6325ED08] = { model = "rcsp_ridethelightning_males_01", hash = 0x6325ED08, outfits = 1 }, - [0xA3727520] = { model = "rcsp_sadie1_males_01", hash = 0xA3727520, outfits = 4 }, - [0xD8F7A42D] = { model = "rcsp_slavecatcher_males_01", hash = 0xD8F7A42D, outfits = 2 }, - [0xE486EF71] = { model = "re_animalattack_females_01", hash = 0xE486EF71, outfits = 1 }, - [0x62C7CB3C] = { model = "re_animalattack_males_01", hash = 0x62C7CB3C, outfits = 2 }, - [0x703FBE93] = { model = "re_animalmauling_males_01", hash = 0x703FBE93, outfits = 3 }, - [0xCA6AE495] = { model = "re_approach_males_01", hash = 0xCA6AE495, outfits = 2 }, - [0x5CB5E6EA] = { model = "re_beartrap_males_01", hash = 0x5CB5E6EA, outfits = 4 }, - [0xFB4137F2] = { model = "re_boatattack_males_01", hash = 0xFB4137F2, outfits = 3 }, - [0x367E8D6C] = { model = "re_burningbodies_males_01", hash = 0x367E8D6C, outfits = 3 }, - [0x95EC9DD3] = { model = "re_checkpoint_males_01", hash = 0x95EC9DD3, outfits = 2 }, - [0x629F1377] = { model = "re_coachrobbery_females_01", hash = 0x629F1377, outfits = 1 }, - [0x4499F637] = { model = "re_coachrobbery_males_01", hash = 0x4499F637, outfits = 8 }, - [0xE1568603] = { model = "re_consequence_males_01", hash = 0xE1568603, outfits = 8 }, - [0xD4AEC8B8] = { model = "re_corpsecart_females_01", hash = 0xD4AEC8B8, outfits = 2 }, - [0x5220FFBE] = { model = "re_corpsecart_males_01", hash = 0x5220FFBE, outfits = 3 }, - [0x79AC27BA] = { model = "re_crashedwagon_males_01", hash = 0x79AC27BA, outfits = 5 }, - [0xCE48FB7A] = { model = "re_darkalleyambush_males_01", hash = 0xCE48FB7A, outfits = 4 }, - [0x3069C374] = { model = "re_darkalleybum_males_01", hash = 0x3069C374, outfits = 5 }, - [0xA6D580A6] = { model = "re_darkalleystabbing_males_01", hash = 0xA6D580A6, outfits = 5 }, - [0x33DC2EF2] = { model = "re_deadbodies_males_01", hash = 0x33DC2EF2, outfits = 2 }, - [0xACDE9302] = { model = "re_deadjohn_females_01", hash = 0xACDE9302, outfits = 1 }, - [0xFDEB46B0] = { model = "re_deadjohn_males_01", hash = 0xFDEB46B0, outfits = 2 }, - [0x1FCA2943] = { model = "re_disabledbeggar_males_01", hash = 0x1FCA2943, outfits = 5 }, - [0x9DB7B801] = { model = "re_domesticdispute_females_01", hash = 0x9DB7B801, outfits = 3 }, - [0x6A11617F] = { model = "re_domesticdispute_males_01", hash = 0x6A11617F, outfits = 4 }, - [0x0E4180E1] = { model = "re_drownmurder_females_01", hash = 0x0E4180E1, outfits = 3 }, - [0xAEE8FDCD] = { model = "re_drownmurder_males_01", hash = 0xAEE8FDCD, outfits = 3 }, - [0xE5965991] = { model = "re_drunkcamp_males_01", hash = 0xE5965991, outfits = 5 }, - [0x58AF6095] = { model = "re_drunkdueler_males_01", hash = 0x58AF6095, outfits = 2 }, - [0xEF2609C7] = { model = "re_duelboaster_males_01", hash = 0xEF2609C7, outfits = 2 }, - [0xC96A4211] = { model = "re_duelwinner_females_01", hash = 0xC96A4211, outfits = 6 }, - [0x0DECFCD7] = { model = "re_duelwinner_males_01", hash = 0x0DECFCD7, outfits = 22 }, - [0x81978D28] = { model = "re_escort_females_01", hash = 0x81978D28, outfits = 2 }, - [0x2321E38B] = { model = "re_executions_males_01", hash = 0x2321E38B, outfits = 5 }, - [0xB2AC568B] = { model = "re_fleeingfamily_females_01", hash = 0xB2AC568B, outfits = 1 }, - [0x09FC3CA1] = { model = "re_fleeingfamily_males_01", hash = 0x09FC3CA1, outfits = 1 }, - [0x66F6F941] = { model = "re_footrobbery_males_01", hash = 0x66F6F941, outfits = 3 }, - [0x81BF6232] = { model = "re_friendlyoutdoorsman_males_01", hash = 0x81BF6232, outfits = 1 }, - [0x8755FDCB] = { model = "re_frozentodeath_females_01", hash = 0x8755FDCB, outfits = 1 }, - [0xC9CFCE6D] = { model = "re_frozentodeath_males_01", hash = 0xC9CFCE6D, outfits = 1 }, - [0x2E30B6C8] = { model = "re_fundraiser_females_01", hash = 0x2E30B6C8, outfits = 2 }, - [0xE459A4A5] = { model = "re_fussarchase_males_01", hash = 0xE459A4A5, outfits = 2 }, - [0x4E504380] = { model = "re_goldpanner_males_01", hash = 0x4E504380, outfits = 4 }, - [0xF502975D] = { model = "re_horserace_females_01", hash = 0xF502975D, outfits = 2 }, - [0x6CC05760] = { model = "re_horserace_males_01", hash = 0x6CC05760, outfits = 2 }, - [0x5D3650C0] = { model = "re_hostagerescue_females_01", hash = 0x5D3650C0, outfits = 2 }, - [0x65C6382C] = { model = "re_hostagerescue_males_01", hash = 0x65C6382C, outfits = 4 }, - [0xD1E15C65] = { model = "re_inbredkidnap_females_01", hash = 0xD1E15C65, outfits = 2 }, - [0x387C96BF] = { model = "re_inbredkidnap_males_01", hash = 0x387C96BF, outfits = 2 }, - [0x66CB93BC] = { model = "re_injuredrider_males_01", hash = 0x66CB93BC, outfits = 9 }, - [0x11D854F4] = { model = "re_kidnappedvictim_females_01", hash = 0x11D854F4, outfits = 4 }, - [0x1A468CD5] = { model = "re_laramiegangrustling_males_01", hash = 0x1A468CD5, outfits = 2 }, - [0xBEA07BE3] = { model = "re_loneprisoner_males_01", hash = 0xBEA07BE3, outfits = 2 }, - [0x42C14B8A] = { model = "re_lostdrunk_females_01", hash = 0x42C14B8A, outfits = 3 }, - [0x8AB27C20] = { model = "re_lostdrunk_males_01", hash = 0x8AB27C20, outfits = 4 }, - [0x0684C863] = { model = "re_lostfriend_males_01", hash = 0x0684C863, outfits = 5 }, - [0x24EA5130] = { model = "re_lostman_males_01", hash = 0x24EA5130, outfits = 1 }, - [0x791111A2] = { model = "re_moonshinecamp_males_01", hash = 0x791111A2, outfits = 4 }, - [0xCAB23E50] = { model = "re_murdercamp_males_01", hash = 0xCAB23E50, outfits = 3 }, - [0x6BB3CF86] = { model = "re_murdersuicide_females_01", hash = 0x6BB3CF86, outfits = 3 }, - [0x440BD544] = { model = "re_murdersuicide_males_01", hash = 0x440BD544, outfits = 3 }, - [0x29908B97] = { model = "re_nakedswimmer_males_01", hash = 0x29908B97, outfits = 1 }, - [0x8E6C0C2E] = { model = "re_ontherun_males_01", hash = 0x8E6C0C2E, outfits = 2 }, - [0xB0D2EE63] = { model = "re_parlorambush_males_01", hash = 0xB0D2EE63, outfits = 1 }, - [0x1FD195D2] = { model = "re_peepingtom_females_01", hash = 0x1FD195D2, outfits = 3 }, - [0xDF72A84B] = { model = "re_peepingtom_males_01", hash = 0xDF72A84B, outfits = 8 }, - [0x91824246] = { model = "re_pickpocket_males_01", hash = 0x91824246, outfits = 3 }, - [0xEFF51021] = { model = "re_pisspot_females_01", hash = 0xEFF51021, outfits = 6 }, - [0xD730B466] = { model = "re_pisspot_males_01", hash = 0xD730B466, outfits = 10 }, - [0x531B5B75] = { model = "re_playercampstrangers_females_01", hash = 0x531B5B75, outfits = 2 }, - [0x2AC9BAAF] = { model = "re_playercampstrangers_males_01", hash = 0x2AC9BAAF, outfits = 1 }, - [0x7BCC9C83] = { model = "re_poisoned_males_01", hash = 0x7BCC9C83, outfits = 2 }, - [0x3EC9C4BC] = { model = "re_prisonwagon_females_01", hash = 0x3EC9C4BC, outfits = 5 }, - [0x2D438F6C] = { model = "re_prisonwagon_males_01", hash = 0x2D438F6C, outfits = 4 }, - [0xB2F47EFD] = { model = "re_publichanging_females_01", hash = 0xB2F47EFD, outfits = 17 }, - [0x6826C60C] = { model = "re_publichanging_males_01", hash = 0x6826C60C, outfits = 74 }, - [0xB2B11AFC] = { model = "re_publichanging_teens_01", hash = 0xB2B11AFC, outfits = 2 }, - [0xBB6D5452] = { model = "re_rallydispute_males_01", hash = 0xBB6D5452, outfits = 4 }, - [0x39C84A35] = { model = "re_rallysetup_males_01", hash = 0x39C84A35, outfits = 3 }, - [0x08486093] = { model = "re_rally_males_01", hash = 0x08486093, outfits = 13 }, - [0x89FB8610] = { model = "re_ratinfestation_males_01", hash = 0x89FB8610, outfits = 1 }, - [0x487E0B26] = { model = "re_rowdydrunks_males_01", hash = 0x487E0B26, outfits = 13 }, - [0xA8D0FBF7] = { model = "re_savageaftermath_females_01", hash = 0xA8D0FBF7, outfits = 2 }, - [0xF7C4FD8C] = { model = "re_savageaftermath_males_01", hash = 0xF7C4FD8C, outfits = 5 }, - [0x0D4D77B7] = { model = "re_savagefight_females_01", hash = 0x0D4D77B7, outfits = 3 }, - [0xBA652DBE] = { model = "re_savagefight_males_01", hash = 0xBA652DBE, outfits = 3 }, - [0xFFB2BFA4] = { model = "re_savagewagon_females_01", hash = 0xFFB2BFA4, outfits = 4 }, - [0xA9CDF6A9] = { model = "re_savagewagon_males_01", hash = 0xA9CDF6A9, outfits = 6 }, - [0x6461654D] = { model = "re_savagewarning_males_01", hash = 0x6461654D, outfits = 7 }, - [0x69723D9A] = { model = "re_sharpshooter_males_01", hash = 0x69723D9A, outfits = 2 }, - [0xE47AAB16] = { model = "re_showoff_males_01", hash = 0xE47AAB16, outfits = 8 }, - [0x548636CD] = { model = "re_skippingstones_males_01", hash = 0x548636CD, outfits = 1 }, - [0x38DB4E99] = { model = "re_skippingstones_teens_01", hash = 0x38DB4E99, outfits = 1 }, - [0x717C4D5F] = { model = "re_slumambush_females_01", hash = 0x717C4D5F, outfits = 2 }, - [0x6EB40313] = { model = "re_snakebite_males_01", hash = 0x6EB40313, outfits = 2 }, - [0xF3FAA72B] = { model = "re_stalkinghunter_males_01", hash = 0xF3FAA72B, outfits = 3 }, - [0x8CB8566C] = { model = "re_strandedrider_males_01", hash = 0x8CB8566C, outfits = 4 }, - [0x0834334E] = { model = "re_street_fight_males_01", hash = 0x0834334E, outfits = 24 }, - [0xFE6B32C9] = { model = "re_taunting_01", hash = 0xFE6B32C9, outfits = 2 }, - [0x6B768512] = { model = "re_taunting_males_01", hash = 0x6B768512, outfits = 3 }, - [0x789023D8] = { model = "re_torturingcaptive_males_01", hash = 0x789023D8, outfits = 2 }, - [0x13AB574F] = { model = "re_townburial_males_01", hash = 0x13AB574F, outfits = 18 }, - [0x6C3B3B5B] = { model = "re_townconfrontation_females_01", hash = 0x6C3B3B5B, outfits = 1 }, - [0xBE60CA00] = { model = "re_townconfrontation_males_01", hash = 0xBE60CA00, outfits = 4 }, - [0x0F3C1689] = { model = "re_townrobbery_males_01", hash = 0x0F3C1689, outfits = 2 }, - [0x436EBD6C] = { model = "re_townwidow_females_01", hash = 0x436EBD6C, outfits = 3 }, - [0x3F8A4F75] = { model = "re_trainholdup_females_01", hash = 0x3F8A4F75, outfits = 3 }, - [0xB985F131] = { model = "re_trainholdup_males_01", hash = 0xB985F131, outfits = 30 }, - [0xA99399B2] = { model = "re_trappedwoman_females_01", hash = 0xA99399B2, outfits = 3 }, - [0xF1E3C6B0] = { model = "re_treasurehunter_males_01", hash = 0xF1E3C6B0, outfits = 4 }, - [0x6A5B1E21] = { model = "re_voice_females_01", hash = 0x6A5B1E21, outfits = 1 }, - [0xEE8C468A] = { model = "re_wagonthreat_females_01", hash = 0xEE8C468A, outfits = 1 }, - [0xCA5501C8] = { model = "re_wagonthreat_males_01", hash = 0xCA5501C8, outfits = 2 }, - [0xAFC8B271] = { model = "re_washedashore_males_01", hash = 0xAFC8B271, outfits = 2 }, - [0x7EB7235E] = { model = "re_wealthycouple_females_01", hash = 0x7EB7235E, outfits = 2 }, - [0x76C957EC] = { model = "re_wealthycouple_males_01", hash = 0x76C957EC, outfits = 2 }, - [0x25D32467] = { model = "re_wildman_01", hash = 0x25D32467, outfits = 2 }, - [0x52938369] = { model = "shack_missinghusband_males_01", hash = 0x52938369, outfits = 1 }, - [0x98688D36] = { model = "shack_ontherun_males_01", hash = 0x98688D36, outfits = 3 }, + [`amsp_robsdgunsmith_males_01`] = { model = "amsp_robsdgunsmith_males_01", hash = 0x0926B79B, outfits = 5 }, + [`am_valentinedoctors_females_01`] = { model = "am_valentinedoctors_females_01", hash = 0x3D27C285, outfits = 1 }, + [`casp_coachrobbery_lenny_males_01`] = { model = "casp_coachrobbery_lenny_males_01", hash = 0x6B6968AA, outfits = 2 }, + [`casp_coachrobbery_micah_males_01`] = { model = "casp_coachrobbery_micah_males_01", hash = 0x63F5A730, outfits = 1 }, + [`casp_hunting02_males_01`] = { model = "casp_hunting02_males_01", hash = 0x7A8FF723, outfits = 2 }, + [`cr_strawberry_males_01`] = { model = "cr_strawberry_males_01", hash = 0x0B4466F8, outfits = 19 }, + [`female_skeleton`] = { model = "female_skeleton", hash = 0x0D7B4617, outfits = 7 }, + [`gc_lemoynecaptive_males_01`] = { model = "gc_lemoynecaptive_males_01", hash = 0x86B3E995, outfits = 1 }, + [`gc_skinnertorture_males_01`] = { model = "gc_skinnertorture_males_01", hash = 0x8C1DC732, outfits = 2 }, + [`ge_delloboparty_females_01`] = { model = "ge_delloboparty_females_01", hash = 0x70E42FE7, outfits = 2 }, + [`loansharking_asbminer_males_01`] = { model = "loansharking_asbminer_males_01", hash = 0xA9567850, outfits = 1 }, + [`loansharking_horsechase1_males_01`] = { model = "loansharking_horsechase1_males_01", hash = 0x9DD82D05, outfits = 2 }, + [`loansharking_undertaker_females_01`] = { model = "loansharking_undertaker_females_01", hash = 0x4E711917, outfits = 4 }, + [`loansharking_undertaker_males_01`] = { model = "loansharking_undertaker_males_01", hash = 0x67C00DFB, outfits = 3 }, + [`male_skeleton`] = { model = "male_skeleton", hash = 0xDFEF070E, outfits = 4 }, + [`mbh_rhodesrancher_females_01`] = { model = "mbh_rhodesrancher_females_01", hash = 0xC4C0600A, outfits = 1 }, + [`mbh_rhodesrancher_teens_01`] = { model = "mbh_rhodesrancher_teens_01", hash = 0x5F0A1475, outfits = 1 }, + [`mbh_skinnersearch_males_01`] = { model = "mbh_skinnersearch_males_01", hash = 0xDF4A4EAC, outfits = 2 }, + [`mes_abigail2_males_01`] = { model = "mes_abigail2_males_01", hash = 0x741E7444, outfits = 4 }, + [`mes_finale2_females_01`] = { model = "mes_finale2_females_01", hash = 0xB7E1A569, outfits = 1 }, + [`mes_finale2_males_01`] = { model = "mes_finale2_males_01", hash = 0x28618747, outfits = 4 }, + [`mes_finale3_males_01`] = { model = "mes_finale3_males_01", hash = 0x389A64ED, outfits = 3 }, + [`mes_marston1_males_01`] = { model = "mes_marston1_males_01", hash = 0x45402C7A, outfits = 2 }, + [`mes_marston2_males_01`] = { model = "mes_marston2_males_01", hash = 0x991856F4, outfits = 4 }, + [`mes_marston5_2_males_01`] = { model = "mes_marston5_2_males_01", hash = 0x3E837D5B, outfits = 1 }, + [`mes_marston6_females_01`] = { model = "mes_marston6_females_01", hash = 0x01C0B992, outfits = 1 }, + [`mes_marston6_males_01`] = { model = "mes_marston6_males_01", hash = 0x7BE6B9E8, outfits = 29 }, + [`mes_marston6_teens_01`] = { model = "mes_marston6_teens_01", hash = 0x1DE80335, outfits = 1 }, + [`mes_sadie4_males_01`] = { model = "mes_sadie4_males_01", hash = 0x74B85769, outfits = 1 }, + [`mes_sadie5_males_01`] = { model = "mes_sadie5_males_01", hash = 0x09FBB7EC, outfits = 7 }, + [`msp_bountyhunter1_females_01`] = { model = "msp_bountyhunter1_females_01", hash = 0xF61DB75E, outfits = 1 }, + [`msp_braithwaites1_males_01`] = { model = "msp_braithwaites1_males_01", hash = 0xF4CED35C, outfits = 1 }, + [`msp_feud1_males_01`] = { model = "msp_feud1_males_01", hash = 0x11C73FBE, outfits = 4 }, + [`msp_fussar2_males_01`] = { model = "msp_fussar2_males_01", hash = 0x776A1598, outfits = 3 }, + [`msp_gang2_males_01`] = { model = "msp_gang2_males_01", hash = 0xD871A306, outfits = 1 }, + [`msp_gang3_males_01`] = { model = "msp_gang3_males_01", hash = 0x144452D7, outfits = 2 }, + [`msp_grays1_males_01`] = { model = "msp_grays1_males_01", hash = 0x39FF837C, outfits = 1 }, + [`msp_grays2_males_01`] = { model = "msp_grays2_males_01", hash = 0xEA4A504D, outfits = 1 }, + [`msp_guarma2_males_01`] = { model = "msp_guarma2_males_01", hash = 0xDBAC89A0, outfits = 3 }, + [`msp_industry1_females_01`] = { model = "msp_industry1_females_01", hash = 0x1E9549CA, outfits = 7 }, + [`msp_industry1_males_01`] = { model = "msp_industry1_males_01", hash = 0xB294E4CA, outfits = 8 }, + [`msp_industry3_females_01`] = { model = "msp_industry3_females_01", hash = 0x59B2E634, outfits = 1 }, + [`msp_industry3_males_01`] = { model = "msp_industry3_males_01", hash = 0x00E36FB7, outfits = 8 }, + [`msp_mary1_females_01`] = { model = "msp_mary1_females_01", hash = 0x25319F37, outfits = 1 }, + [`msp_mary1_males_01`] = { model = "msp_mary1_males_01", hash = 0x283AECFD, outfits = 2 }, + [`msp_mary3_males_01`] = { model = "msp_mary3_males_01", hash = 0xC1040D2C, outfits = 6 }, + [`msp_mob0_males_01`] = { model = "msp_mob0_males_01", hash = 0x28F695AC, outfits = 1 }, + [`msp_mob1_females_01`] = { model = "msp_mob1_females_01", hash = 0xF148DBF6, outfits = 8 }, + [`msp_mob1_males_01`] = { model = "msp_mob1_males_01", hash = 0x45453194, outfits = 7 }, + [`msp_mob1_teens_01`] = { model = "msp_mob1_teens_01", hash = 0x391B7870, outfits = 7 }, + [`msp_mob3_females_01`] = { model = "msp_mob3_females_01", hash = 0x90ADB7F1, outfits = 2 }, + [`msp_mob3_males_01`] = { model = "msp_mob3_males_01", hash = 0xF1804E11, outfits = 4 }, + [`msp_mudtown3b_females_01`] = { model = "msp_mudtown3b_females_01", hash = 0xB4F27E28, outfits = 20 }, + [`msp_mudtown3b_males_01`] = { model = "msp_mudtown3b_males_01", hash = 0x90BA2D73, outfits = 20 }, + [`msp_mudtown3_males_01`] = { model = "msp_mudtown3_males_01", hash = 0xC237B30F, outfits = 2 }, + [`msp_mudtown5_males_01`] = { model = "msp_mudtown5_males_01", hash = 0x297869BA, outfits = 5 }, + [`msp_native1_males_01`] = { model = "msp_native1_males_01", hash = 0xB4685DE4, outfits = 3 }, + [`msp_reverend1_males_01`] = { model = "msp_reverend1_males_01", hash = 0x97990286, outfits = 4 }, + [`msp_saintdenis1_females_01`] = { model = "msp_saintdenis1_females_01", hash = 0x77807351, outfits = 6 }, + [`msp_saintdenis1_males_01`] = { model = "msp_saintdenis1_males_01", hash = 0xF21ED93D, outfits = 17 }, + [`msp_saloon1_females_01`] = { model = "msp_saloon1_females_01", hash = 0x961D2A2D, outfits = 22 }, + [`msp_saloon1_males_01`] = { model = "msp_saloon1_males_01", hash = 0x8F03BE01, outfits = 45 }, + [`msp_smuggler2_males_01`] = { model = "msp_smuggler2_males_01", hash = 0x1A2459CB, outfits = 2 }, + [`msp_trainrobbery2_males_01`] = { model = "msp_trainrobbery2_males_01", hash = 0x1754F82F, outfits = 4 }, + [`msp_utopia1_males_01`] = { model = "msp_utopia1_males_01", hash = 0x12EDDBCE, outfits = 10 }, + [`msp_winter4_males_01`] = { model = "msp_winter4_males_01", hash = 0xDE01E0F9, outfits = 1 }, + [`player_three`] = { model = "player_three", hash = 0x00B69710, outfits = 33 }, + [`player_zero`] = { model = "player_zero", hash = 0x0D7114C9, outfits = 74 }, + [`rces_abigail3_females_01`] = { model = "rces_abigail3_females_01", hash = 0x5C32DA8F, outfits = 2 }, + [`rces_abigail3_males_01`] = { model = "rces_abigail3_males_01", hash = 0x7BA67807, outfits = 1 }, + [`rces_beechers1_males_01`] = { model = "rces_beechers1_males_01", hash = 0xE1566351, outfits = 4 }, + [`rces_evelynmiller_males_01`] = { model = "rces_evelynmiller_males_01", hash = 0xF63E07A5, outfits = 3 }, + [`rcsp_beauandpenelope1_females_01`] = { model = "rcsp_beauandpenelope1_females_01", hash = 0xFB1CC58C, outfits = 16 }, + [`rcsp_beauandpenelope_males_01`] = { model = "rcsp_beauandpenelope_males_01", hash = 0x7BD8E784, outfits = 5 }, + [`rcsp_calderonstage2_males_01`] = { model = "rcsp_calderonstage2_males_01", hash = 0x6A407345, outfits = 2 }, + [`rcsp_calderonstage2_teens_01`] = { model = "rcsp_calderonstage2_teens_01", hash = 0x21DF353D, outfits = 3 }, + [`rcsp_calderon_males_01`] = { model = "rcsp_calderon_males_01", hash = 0x5278C19E, outfits = 3 }, + [`rcsp_calloway_males_01`] = { model = "rcsp_calloway_males_01", hash = 0xCAF14192, outfits = 5 }, + [`rcsp_coachrobbery_males_01`] = { model = "rcsp_coachrobbery_males_01", hash = 0xF9FF65FA, outfits = 5 }, + [`rcsp_crackpot_females_01`] = { model = "rcsp_crackpot_females_01", hash = 0xDF975FD2, outfits = 2 }, + [`rcsp_crackpot_males_01`] = { model = "rcsp_crackpot_males_01", hash = 0x79A9623E, outfits = 4 }, + [`rcsp_creole_males_01`] = { model = "rcsp_creole_males_01", hash = 0x7F993AAD, outfits = 1 }, + [`rcsp_dutch1_males_01`] = { model = "rcsp_dutch1_males_01", hash = 0xF9EB2E96, outfits = 8 }, + [`rcsp_dutch3_males_01`] = { model = "rcsp_dutch3_males_01", hash = 0x880560E1, outfits = 2 }, + [`rcsp_edithdownes2_males_01`] = { model = "rcsp_edithdownes2_males_01", hash = 0x2B814C4B, outfits = 2 }, + [`rcsp_formyart_females_01`] = { model = "rcsp_formyart_females_01", hash = 0xC4C59AD4, outfits = 6 }, + [`rcsp_formyart_males_01`] = { model = "rcsp_formyart_males_01", hash = 0x158FFD8B, outfits = 10 }, + [`rcsp_gunslingerduel4_males_01`] = { model = "rcsp_gunslingerduel4_males_01", hash = 0x494FC69B, outfits = 4 }, + [`rcsp_herekittykitty_males_01`] = { model = "rcsp_herekittykitty_males_01", hash = 0x1268B0C9, outfits = 2 }, + [`rcsp_hunting1_males_01`] = { model = "rcsp_hunting1_males_01", hash = 0x1319E95B, outfits = 2 }, + [`rcsp_mrmayor_males_01`] = { model = "rcsp_mrmayor_males_01", hash = 0x48EE7011, outfits = 1 }, + [`rcsp_native1s2_males_01`] = { model = "rcsp_native1s2_males_01", hash = 0xB11093B2, outfits = 5 }, + [`rcsp_native_americanfathers_males_01`] = { model = "rcsp_native_americanfathers_males_01", hash = 0x4AAE5FA2, outfits = 1 }, + [`rcsp_oddfellows_males_01`] = { model = "rcsp_oddfellows_males_01", hash = 0x1B92FA61, outfits = 1 }, + [`rcsp_odriscolls2_females_01`] = { model = "rcsp_odriscolls2_females_01", hash = 0xBB375EE3, outfits = 3 }, + [`rcsp_poisonedwell_females_01`] = { model = "rcsp_poisonedwell_females_01", hash = 0xC00FA82A, outfits = 4 }, + [`rcsp_poisonedwell_males_01`] = { model = "rcsp_poisonedwell_males_01", hash = 0x36C54685, outfits = 6 }, + [`rcsp_poisonedwell_teens_01`] = { model = "rcsp_poisonedwell_teens_01", hash = 0x4F0CE5B2, outfits = 2 }, + [`rcsp_ridethelightning_females_01`] = { model = "rcsp_ridethelightning_females_01", hash = 0xA4FD4905, outfits = 3 }, + [`rcsp_ridethelightning_males_01`] = { model = "rcsp_ridethelightning_males_01", hash = 0x6325ED08, outfits = 1 }, + [`rcsp_sadie1_males_01`] = { model = "rcsp_sadie1_males_01", hash = 0xA3727520, outfits = 4 }, + [`rcsp_slavecatcher_males_01`] = { model = "rcsp_slavecatcher_males_01", hash = 0xD8F7A42D, outfits = 2 }, + [`re_animalattack_females_01`] = { model = "re_animalattack_females_01", hash = 0xE486EF71, outfits = 1 }, + [`re_animalattack_males_01`] = { model = "re_animalattack_males_01", hash = 0x62C7CB3C, outfits = 2 }, + [`re_animalmauling_males_01`] = { model = "re_animalmauling_males_01", hash = 0x703FBE93, outfits = 3 }, + [`re_approach_males_01`] = { model = "re_approach_males_01", hash = 0xCA6AE495, outfits = 2 }, + [`re_beartrap_males_01`] = { model = "re_beartrap_males_01", hash = 0x5CB5E6EA, outfits = 4 }, + [`re_boatattack_males_01`] = { model = "re_boatattack_males_01", hash = 0xFB4137F2, outfits = 3 }, + [`re_burningbodies_males_01`] = { model = "re_burningbodies_males_01", hash = 0x367E8D6C, outfits = 3 }, + [`re_checkpoint_males_01`] = { model = "re_checkpoint_males_01", hash = 0x95EC9DD3, outfits = 2 }, + [`re_coachrobbery_females_01`] = { model = "re_coachrobbery_females_01", hash = 0x629F1377, outfits = 1 }, + [`re_coachrobbery_males_01`] = { model = "re_coachrobbery_males_01", hash = 0x4499F637, outfits = 8 }, + [`re_consequence_males_01`] = { model = "re_consequence_males_01", hash = 0xE1568603, outfits = 8 }, + [`re_corpsecart_females_01`] = { model = "re_corpsecart_females_01", hash = 0xD4AEC8B8, outfits = 2 }, + [`re_corpsecart_males_01`] = { model = "re_corpsecart_males_01", hash = 0x5220FFBE, outfits = 3 }, + [`re_crashedwagon_males_01`] = { model = "re_crashedwagon_males_01", hash = 0x79AC27BA, outfits = 5 }, + [`re_darkalleyambush_males_01`] = { model = "re_darkalleyambush_males_01", hash = 0xCE48FB7A, outfits = 4 }, + [`re_darkalleybum_males_01`] = { model = "re_darkalleybum_males_01", hash = 0x3069C374, outfits = 5 }, + [`re_darkalleystabbing_males_01`] = { model = "re_darkalleystabbing_males_01", hash = 0xA6D580A6, outfits = 5 }, + [`re_deadbodies_males_01`] = { model = "re_deadbodies_males_01", hash = 0x33DC2EF2, outfits = 2 }, + [`re_deadjohn_females_01`] = { model = "re_deadjohn_females_01", hash = 0xACDE9302, outfits = 1 }, + [`re_deadjohn_males_01`] = { model = "re_deadjohn_males_01", hash = 0xFDEB46B0, outfits = 2 }, + [`re_disabledbeggar_males_01`] = { model = "re_disabledbeggar_males_01", hash = 0x1FCA2943, outfits = 5 }, + [`re_domesticdispute_females_01`] = { model = "re_domesticdispute_females_01", hash = 0x9DB7B801, outfits = 3 }, + [`re_domesticdispute_males_01`] = { model = "re_domesticdispute_males_01", hash = 0x6A11617F, outfits = 4 }, + [`re_drownmurder_females_01`] = { model = "re_drownmurder_females_01", hash = 0x0E4180E1, outfits = 3 }, + [`re_drownmurder_males_01`] = { model = "re_drownmurder_males_01", hash = 0xAEE8FDCD, outfits = 3 }, + [`re_drunkcamp_males_01`] = { model = "re_drunkcamp_males_01", hash = 0xE5965991, outfits = 5 }, + [`re_drunkdueler_males_01`] = { model = "re_drunkdueler_males_01", hash = 0x58AF6095, outfits = 2 }, + [`re_duelboaster_males_01`] = { model = "re_duelboaster_males_01", hash = 0xEF2609C7, outfits = 2 }, + [`re_duelwinner_females_01`] = { model = "re_duelwinner_females_01", hash = 0xC96A4211, outfits = 6 }, + [`re_duelwinner_males_01`] = { model = "re_duelwinner_males_01", hash = 0x0DECFCD7, outfits = 22 }, + [`re_escort_females_01`] = { model = "re_escort_females_01", hash = 0x81978D28, outfits = 2 }, + [`re_executions_males_01`] = { model = "re_executions_males_01", hash = 0x2321E38B, outfits = 5 }, + [`re_fleeingfamily_females_01`] = { model = "re_fleeingfamily_females_01", hash = 0xB2AC568B, outfits = 1 }, + [`re_fleeingfamily_males_01`] = { model = "re_fleeingfamily_males_01", hash = 0x09FC3CA1, outfits = 1 }, + [`re_footrobbery_males_01`] = { model = "re_footrobbery_males_01", hash = 0x66F6F941, outfits = 3 }, + [`re_friendlyoutdoorsman_males_01`] = { model = "re_friendlyoutdoorsman_males_01", hash = 0x81BF6232, outfits = 1 }, + [`re_frozentodeath_females_01`] = { model = "re_frozentodeath_females_01", hash = 0x8755FDCB, outfits = 1 }, + [`re_frozentodeath_males_01`] = { model = "re_frozentodeath_males_01", hash = 0xC9CFCE6D, outfits = 1 }, + [`re_fundraiser_females_01`] = { model = "re_fundraiser_females_01", hash = 0x2E30B6C8, outfits = 2 }, + [`re_fussarchase_males_01`] = { model = "re_fussarchase_males_01", hash = 0xE459A4A5, outfits = 2 }, + [`re_goldpanner_males_01`] = { model = "re_goldpanner_males_01", hash = 0x4E504380, outfits = 4 }, + [`re_horserace_females_01`] = { model = "re_horserace_females_01", hash = 0xF502975D, outfits = 2 }, + [`re_horserace_males_01`] = { model = "re_horserace_males_01", hash = 0x6CC05760, outfits = 2 }, + [`re_hostagerescue_females_01`] = { model = "re_hostagerescue_females_01", hash = 0x5D3650C0, outfits = 2 }, + [`re_hostagerescue_males_01`] = { model = "re_hostagerescue_males_01", hash = 0x65C6382C, outfits = 4 }, + [`re_inbredkidnap_females_01`] = { model = "re_inbredkidnap_females_01", hash = 0xD1E15C65, outfits = 2 }, + [`re_inbredkidnap_males_01`] = { model = "re_inbredkidnap_males_01", hash = 0x387C96BF, outfits = 2 }, + [`re_injuredrider_males_01`] = { model = "re_injuredrider_males_01", hash = 0x66CB93BC, outfits = 9 }, + [`re_kidnappedvictim_females_01`] = { model = "re_kidnappedvictim_females_01", hash = 0x11D854F4, outfits = 4 }, + [`re_laramiegangrustling_males_01`] = { model = "re_laramiegangrustling_males_01", hash = 0x1A468CD5, outfits = 2 }, + [`re_loneprisoner_males_01`] = { model = "re_loneprisoner_males_01", hash = 0xBEA07BE3, outfits = 2 }, + [`re_lostdrunk_females_01`] = { model = "re_lostdrunk_females_01", hash = 0x42C14B8A, outfits = 3 }, + [`re_lostdrunk_males_01`] = { model = "re_lostdrunk_males_01", hash = 0x8AB27C20, outfits = 4 }, + [`re_lostfriend_males_01`] = { model = "re_lostfriend_males_01", hash = 0x0684C863, outfits = 5 }, + [`re_lostman_males_01`] = { model = "re_lostman_males_01", hash = 0x24EA5130, outfits = 1 }, + [`re_moonshinecamp_males_01`] = { model = "re_moonshinecamp_males_01", hash = 0x791111A2, outfits = 4 }, + [`re_murdercamp_males_01`] = { model = "re_murdercamp_males_01", hash = 0xCAB23E50, outfits = 3 }, + [`re_murdersuicide_females_01`] = { model = "re_murdersuicide_females_01", hash = 0x6BB3CF86, outfits = 3 }, + [`re_murdersuicide_males_01`] = { model = "re_murdersuicide_males_01", hash = 0x440BD544, outfits = 3 }, + [`re_nakedswimmer_males_01`] = { model = "re_nakedswimmer_males_01", hash = 0x29908B97, outfits = 1 }, + [`re_ontherun_males_01`] = { model = "re_ontherun_males_01", hash = 0x8E6C0C2E, outfits = 2 }, + [`re_parlorambush_males_01`] = { model = "re_parlorambush_males_01", hash = 0xB0D2EE63, outfits = 1 }, + [`re_peepingtom_females_01`] = { model = "re_peepingtom_females_01", hash = 0x1FD195D2, outfits = 3 }, + [`re_peepingtom_males_01`] = { model = "re_peepingtom_males_01", hash = 0xDF72A84B, outfits = 8 }, + [`re_pickpocket_males_01`] = { model = "re_pickpocket_males_01", hash = 0x91824246, outfits = 3 }, + [`re_pisspot_females_01`] = { model = "re_pisspot_females_01", hash = 0xEFF51021, outfits = 6 }, + [`re_pisspot_males_01`] = { model = "re_pisspot_males_01", hash = 0xD730B466, outfits = 10 }, + [`re_playercampstrangers_females_01`] = { model = "re_playercampstrangers_females_01", hash = 0x531B5B75, outfits = 2 }, + [`re_playercampstrangers_males_01`] = { model = "re_playercampstrangers_males_01", hash = 0x2AC9BAAF, outfits = 1 }, + [`re_poisoned_males_01`] = { model = "re_poisoned_males_01", hash = 0x7BCC9C83, outfits = 2 }, + [`re_prisonwagon_females_01`] = { model = "re_prisonwagon_females_01", hash = 0x3EC9C4BC, outfits = 5 }, + [`re_prisonwagon_males_01`] = { model = "re_prisonwagon_males_01", hash = 0x2D438F6C, outfits = 4 }, + [`re_publichanging_females_01`] = { model = "re_publichanging_females_01", hash = 0xB2F47EFD, outfits = 17 }, + [`re_publichanging_males_01`] = { model = "re_publichanging_males_01", hash = 0x6826C60C, outfits = 74 }, + [`re_publichanging_teens_01`] = { model = "re_publichanging_teens_01", hash = 0xB2B11AFC, outfits = 2 }, + [`re_rallydispute_males_01`] = { model = "re_rallydispute_males_01", hash = 0xBB6D5452, outfits = 4 }, + [`re_rallysetup_males_01`] = { model = "re_rallysetup_males_01", hash = 0x39C84A35, outfits = 3 }, + [`re_rally_males_01`] = { model = "re_rally_males_01", hash = 0x08486093, outfits = 13 }, + [`re_ratinfestation_males_01`] = { model = "re_ratinfestation_males_01", hash = 0x89FB8610, outfits = 1 }, + [`re_rowdydrunks_males_01`] = { model = "re_rowdydrunks_males_01", hash = 0x487E0B26, outfits = 13 }, + [`re_savageaftermath_females_01`] = { model = "re_savageaftermath_females_01", hash = 0xA8D0FBF7, outfits = 2 }, + [`re_savageaftermath_males_01`] = { model = "re_savageaftermath_males_01", hash = 0xF7C4FD8C, outfits = 5 }, + [`re_savagefight_females_01`] = { model = "re_savagefight_females_01", hash = 0x0D4D77B7, outfits = 3 }, + [`re_savagefight_males_01`] = { model = "re_savagefight_males_01", hash = 0xBA652DBE, outfits = 3 }, + [`re_savagewagon_females_01`] = { model = "re_savagewagon_females_01", hash = 0xFFB2BFA4, outfits = 4 }, + [`re_savagewagon_males_01`] = { model = "re_savagewagon_males_01", hash = 0xA9CDF6A9, outfits = 6 }, + [`re_savagewarning_males_01`] = { model = "re_savagewarning_males_01", hash = 0x6461654D, outfits = 7 }, + [`re_sharpshooter_males_01`] = { model = "re_sharpshooter_males_01", hash = 0x69723D9A, outfits = 2 }, + [`re_showoff_males_01`] = { model = "re_showoff_males_01", hash = 0xE47AAB16, outfits = 8 }, + [`re_skippingstones_males_01`] = { model = "re_skippingstones_males_01", hash = 0x548636CD, outfits = 1 }, + [`re_skippingstones_teens_01`] = { model = "re_skippingstones_teens_01", hash = 0x38DB4E99, outfits = 1 }, + [`re_slumambush_females_01`] = { model = "re_slumambush_females_01", hash = 0x717C4D5F, outfits = 2 }, + [`re_snakebite_males_01`] = { model = "re_snakebite_males_01", hash = 0x6EB40313, outfits = 2 }, + [`re_stalkinghunter_males_01`] = { model = "re_stalkinghunter_males_01", hash = 0xF3FAA72B, outfits = 3 }, + [`re_strandedrider_males_01`] = { model = "re_strandedrider_males_01", hash = 0x8CB8566C, outfits = 4 }, + [`re_street_fight_males_01`] = { model = "re_street_fight_males_01", hash = 0x0834334E, outfits = 24 }, + [`re_taunting_01`] = { model = "re_taunting_01", hash = 0xFE6B32C9, outfits = 2 }, + [`re_taunting_males_01`] = { model = "re_taunting_males_01", hash = 0x6B768512, outfits = 3 }, + [`re_torturingcaptive_males_01`] = { model = "re_torturingcaptive_males_01", hash = 0x789023D8, outfits = 2 }, + [`re_townburial_males_01`] = { model = "re_townburial_males_01", hash = 0x13AB574F, outfits = 18 }, + [`re_townconfrontation_females_01`] = { model = "re_townconfrontation_females_01", hash = 0x6C3B3B5B, outfits = 1 }, + [`re_townconfrontation_males_01`] = { model = "re_townconfrontation_males_01", hash = 0xBE60CA00, outfits = 4 }, + [`re_townrobbery_males_01`] = { model = "re_townrobbery_males_01", hash = 0x0F3C1689, outfits = 2 }, + [`re_townwidow_females_01`] = { model = "re_townwidow_females_01", hash = 0x436EBD6C, outfits = 3 }, + [`re_trainholdup_females_01`] = { model = "re_trainholdup_females_01", hash = 0x3F8A4F75, outfits = 3 }, + [`re_trainholdup_males_01`] = { model = "re_trainholdup_males_01", hash = 0xB985F131, outfits = 30 }, + [`re_trappedwoman_females_01`] = { model = "re_trappedwoman_females_01", hash = 0xA99399B2, outfits = 3 }, + [`re_treasurehunter_males_01`] = { model = "re_treasurehunter_males_01", hash = 0xF1E3C6B0, outfits = 4 }, + [`re_voice_females_01`] = { model = "re_voice_females_01", hash = 0x6A5B1E21, outfits = 1 }, + [`re_wagonthreat_females_01`] = { model = "re_wagonthreat_females_01", hash = 0xEE8C468A, outfits = 1 }, + [`re_wagonthreat_males_01`] = { model = "re_wagonthreat_males_01", hash = 0xCA5501C8, outfits = 2 }, + [`re_washedashore_males_01`] = { model = "re_washedashore_males_01", hash = 0xAFC8B271, outfits = 2 }, + [`re_wealthycouple_females_01`] = { model = "re_wealthycouple_females_01", hash = 0x7EB7235E, outfits = 2 }, + [`re_wealthycouple_males_01`] = { model = "re_wealthycouple_males_01", hash = 0x76C957EC, outfits = 2 }, + [`re_wildman_01`] = { model = "re_wildman_01", hash = 0x25D32467, outfits = 2 }, + [`shack_missinghusband_males_01`] = { model = "shack_missinghusband_males_01", hash = 0x52938369, outfits = 1 }, + [`shack_ontherun_males_01`] = { model = "shack_ontherun_males_01", hash = 0x98688D36, outfits = 3 }, } Peds.Story = { - [0xA8B1C9F7] = { model = "cs_abe", hash = 0xA8B1C9F7, outfits = 2 }, - [0xAB6C83B9] = { model = "cs_aberdeenpigfarmer", hash = 0xAB6C83B9, outfits = 1 }, - [0x78F9C32F] = { model = "cs_aberdeensister", hash = 0x78F9C32F, outfits = 2 }, - [0xEED46B48] = { model = "cs_abigailroberts", hash = 0xEED46B48, outfits = 15 }, - [0x582954CA] = { model = "cs_acrobat", hash = 0x582954CA, outfits = 1 }, - [0x6A7308E5] = { model = "cs_adamgray", hash = 0x6A7308E5, outfits = 1 }, - [0x0596AA7B] = { model = "cs_agnesdowd", hash = 0x0596AA7B, outfits = 4 }, - [0x28E45219] = { model = "cs_albertcakeesquire", hash = 0x28E45219, outfits = 1 }, - [0x1E9A4722] = { model = "cs_albertmason", hash = 0x1E9A4722, outfits = 2 }, - [0x19ACF207] = { model = "cs_andershelgerson", hash = 0x19ACF207, outfits = 4 }, - [0x31DC5CD8] = { model = "cs_angel", hash = 0x31DC5CD8, outfits = 1 }, - [0x17F33DAA] = { model = "cs_angryhusband", hash = 0x17F33DAA, outfits = 1 }, - [0xF5FE5824] = { model = "cs_angusgeddes", hash = 0xF5FE5824, outfits = 2 }, - [0x563E79E7] = { model = "cs_ansel_atherton", hash = 0x563E79E7, outfits = 1 }, - [0xCADCA094] = { model = "cs_antonyforemen", hash = 0xCADCA094, outfits = 2 }, - [0x328BA546] = { model = "cs_archerfordham", hash = 0x328BA546, outfits = 2 }, - [0x7920404D] = { model = "cs_archibaldjameson", hash = 0x7920404D, outfits = 2 }, - [0xF8BAA439] = { model = "cs_archiedown", hash = 0xF8BAA439, outfits = 4 }, - [0x5FA98D21] = { model = "cs_artappraiser", hash = 0x5FA98D21, outfits = 1 }, - [0x1B703333] = { model = "cs_asbdeputy_01", hash = 0x1B703333, outfits = 1 }, - [0xB6AC4FC1] = { model = "cs_ashton", hash = 0xB6AC4FC1, outfits = 1 }, - [0x253EF371] = { model = "cs_balloonoperator", hash = 0x253EF371, outfits = 4 }, - [0x3C3844C4] = { model = "cs_bandbassist", hash = 0x3C3844C4, outfits = 1 }, - [0x559E17B2] = { model = "cs_banddrummer", hash = 0x559E17B2, outfits = 1 }, - [0x8EA36E09] = { model = "cs_bandpianist", hash = 0x8EA36E09, outfits = 1 }, - [0xF3178A28] = { model = "cs_bandsinger", hash = 0xF3178A28, outfits = 1 }, - [0xF3C61748] = { model = "cs_baptiste", hash = 0xF3C61748, outfits = 1 }, - [0xFB614B3F] = { model = "cs_bartholomewbraithwaite", hash = 0xFB614B3F, outfits = 2 }, - [0xD29F17B9] = { model = "cs_bathingladies_01", hash = 0xD29F17B9, outfits = 7 }, - [0xFCAF1AFE] = { model = "cs_beatenupcaptain", hash = 0xFCAF1AFE, outfits = 1 }, - [0x4B780F88] = { model = "cs_beaugray", hash = 0x4B780F88, outfits = 3 }, - [0x7B67B26A] = { model = "cs_billwilliamson", hash = 0x7B67B26A, outfits = 28 }, - [0xDF333F2B] = { model = "cs_bivcoachdriver", hash = 0xDF333F2B, outfits = 1 }, - [0x1AA22618] = { model = "cs_blwphotographer", hash = 0x1AA22618, outfits = 1 }, - [0x4D3B6EF2] = { model = "cs_blwwitness", hash = 0x4D3B6EF2, outfits = 2 }, - [0xDFE6F4B8] = { model = "cs_braithwaitebutler", hash = 0xDFE6F4B8, outfits = 1 }, - [0xEB20D71E] = { model = "cs_braithwaitemaid", hash = 0xEB20D71E, outfits = 1 }, - [0x1C76CA2D] = { model = "cs_braithwaiteservant", hash = 0x1C76CA2D, outfits = 1 }, - [0x0DBD6C20] = { model = "cs_brendacrawley", hash = 0x0DBD6C20, outfits = 2 }, - [0x90C94DCD] = { model = "cs_bronte", hash = 0x90C94DCD, outfits = 4 }, - [0xD18A3207] = { model = "cs_brontesbutler", hash = 0xD18A3207, outfits = 1 }, - [0x1CC577E5] = { model = "cs_brotherdorkins", hash = 0x1CC577E5, outfits = 1 }, - [0x0AF97379] = { model = "cs_brynntildon", hash = 0x0AF97379, outfits = 2 }, - [0xD012554C] = { model = "cs_bubba", hash = 0xD012554C, outfits = 2 }, - [0x5411589F] = { model = "cs_cabaretmc", hash = 0x5411589F, outfits = 1 }, - [0xF344B612] = { model = "cs_cajun", hash = 0xF344B612, outfits = 1 }, - [0x2D0C353F] = { model = "cs_cancanman_01", hash = 0x2D0C353F, outfits = 1 }, - [0xD0C13881] = { model = "cs_cancan_01", hash = 0xD0C13881, outfits = 1 }, - [0x2F5D75D4] = { model = "cs_cancan_02", hash = 0x2F5D75D4, outfits = 1 }, - [0xBD791211] = { model = "cs_cancan_03", hash = 0xBD791211, outfits = 1 }, - [0x12DABCCF] = { model = "cs_cancan_04", hash = 0x12DABCCF, outfits = 1 }, - [0x4EB9996F] = { model = "cs_captainmonroe", hash = 0x4EB9996F, outfits = 1 }, - [0x2E6B8F33] = { model = "cs_cassidy", hash = 0x2E6B8F33, outfits = 3 }, - [0x5262264D] = { model = "cs_catherinebraithwaite", hash = 0x5262264D, outfits = 2 }, - [0x5F1AD166] = { model = "cs_cattlerustler", hash = 0x5F1AD166, outfits = 1 }, - [0x074B53CC] = { model = "cs_cavehermit", hash = 0x074B53CC, outfits = 1 }, - [0x8451929D] = { model = "cs_chainprisoner_01", hash = 0x8451929D, outfits = 4 }, - [0xF367F0C8] = { model = "cs_chainprisoner_02", hash = 0xF367F0C8, outfits = 4 }, - [0x53DD98DF] = { model = "cs_charlessmith", hash = 0x53DD98DF, outfits = 34 }, - [0x34F835DE] = { model = "cs_chelonianmaster", hash = 0x34F835DE, outfits = 5 }, - [0xD303ACD2] = { model = "cs_cigcardguy", hash = 0xD303ACD2, outfits = 1 }, - [0xDBCB9834] = { model = "cs_clay", hash = 0xDBCB9834, outfits = 1 }, - [0xE44D789F] = { model = "cs_cleet", hash = 0xE44D789F, outfits = 3 }, - [0xFF292AA4] = { model = "cs_clive", hash = 0xFF292AA4, outfits = 1 }, - [0x0E174AF7] = { model = "cs_colfavours", hash = 0x0E174AF7, outfits = 1 }, - [0xCF10E769] = { model = "cs_colmodriscoll", hash = 0xCF10E769, outfits = 6 }, - [0x72A3A733] = { model = "cs_cooper", hash = 0x72A3A733, outfits = 1 }, - [0xC43EAC49] = { model = "cs_cornwalltrainconductor", hash = 0xC43EAC49, outfits = 1 }, - [0x4BBF80D3] = { model = "cs_crackpotinventor", hash = 0x4BBF80D3, outfits = 5 }, - [0x3BF7829E] = { model = "cs_crackpotrobot", hash = 0x3BF7829E, outfits = 2 }, - [0xC061B459] = { model = "cs_creepyoldlady", hash = 0xC061B459, outfits = 1 }, - [0xD163B76B] = { model = "cs_creolecaptain", hash = 0xD163B76B, outfits = 1 }, - [0x3B38C996] = { model = "cs_creoledoctor", hash = 0x3B38C996, outfits = 1 }, - [0x96C421E4] = { model = "cs_creoleguy", hash = 0x96C421E4, outfits = 1 }, - [0x16C57A26] = { model = "cs_dalemaroney", hash = 0x16C57A26, outfits = 2 }, - [0x65A7F0E7] = { model = "cs_daveycallender", hash = 0x65A7F0E7, outfits = 1 }, - [0x9EAF0DAE] = { model = "cs_davidgeddes", hash = 0x9EAF0DAE, outfits = 2 }, - [0x66E939A1] = { model = "cs_desmond", hash = 0x66E939A1, outfits = 1 }, - [0x8ACCB671] = { model = "cs_didsbury", hash = 0x8ACCB671, outfits = 1 }, - [0x4AB3D571] = { model = "cs_dinoboneslady", hash = 0x4AB3D571, outfits = 2 }, - [0x32C998FD] = { model = "cs_disguisedduster_01", hash = 0x32C998FD, outfits = 1 }, - [0x5888E47B] = { model = "cs_disguisedduster_02", hash = 0x5888E47B, outfits = 1 }, - [0x4A3D47E4] = { model = "cs_disguisedduster_03", hash = 0x4A3D47E4, outfits = 1 }, - [0x0748A3DA] = { model = "cs_doroetheawicklow", hash = 0x0748A3DA, outfits = 3 }, - [0xF45739BF] = { model = "cs_drhiggins", hash = 0xF45739BF, outfits = 1 }, - [0xC8245F3C] = { model = "cs_drmalcolmmacintosh", hash = 0xC8245F3C, outfits = 1 }, - [0x9FC15494] = { model = "cs_duncangeddes", hash = 0x9FC15494, outfits = 1 }, - [0xA02C1ADB] = { model = "cs_dusterinformant_01", hash = 0xA02C1ADB, outfits = 1 }, - [0x73E82274] = { model = "cs_dutch", hash = 0x73E82274, outfits = 31 }, - [0x9660A42D] = { model = "cs_eagleflies", hash = 0x9660A42D, outfits = 10 }, - [0xFD38D463] = { model = "cs_edgarross", hash = 0xFD38D463, outfits = 2 }, - [0xE52A1621] = { model = "cs_edithdown", hash = 0xE52A1621, outfits = 7 }, - [0xCB790850] = { model = "cs_edith_john", hash = 0xCB790850, outfits = 1 }, - [0x58672CFB] = { model = "cs_edmundlowry", hash = 0x58672CFB, outfits = 1 }, - [0x88A17BE6] = { model = "cs_escapeartist", hash = 0x88A17BE6, outfits = 5 }, - [0x929C4793] = { model = "cs_escapeartistassistant", hash = 0x929C4793, outfits = 1 }, - [0x2C4CA0A0] = { model = "cs_evelynmiller", hash = 0x2C4CA0A0, outfits = 3 }, - [0xF0EAC712] = { model = "cs_exconfedinformant", hash = 0xF0EAC712, outfits = 1 }, - [0x11E95A0F] = { model = "cs_exconfedsleader_01", hash = 0x11E95A0F, outfits = 1 }, - [0x59D39598] = { model = "cs_exoticcollector", hash = 0x59D39598, outfits = 2 }, - [0xFA274E38] = { model = "cs_famousgunslinger_01", hash = 0xFA274E38, outfits = 2 }, - [0x504E7A85] = { model = "cs_famousgunslinger_02", hash = 0x504E7A85, outfits = 1 }, - [0xDEBB9761] = { model = "cs_famousgunslinger_03", hash = 0xDEBB9761, outfits = 1 }, - [0x14F583D4] = { model = "cs_famousgunslinger_04", hash = 0x14F583D4, outfits = 1 }, - [0x236820B9] = { model = "cs_famousgunslinger_05", hash = 0x236820B9, outfits = 1 }, - [0x79B7CD5F] = { model = "cs_famousgunslinger_06", hash = 0x79B7CD5F, outfits = 3 }, - [0x8D374040] = { model = "cs_featherstonchambers", hash = 0x8D374040, outfits = 1 }, - [0x8D6618C3] = { model = "cs_featsofstrength", hash = 0x8D6618C3, outfits = 2 }, - [0x53308B76] = { model = "cs_fightref", hash = 0x53308B76, outfits = 1 }, - [0xEADD5782] = { model = "cs_fire_breather", hash = 0xEADD5782, outfits = 4 }, - [0x5A3FC29E] = { model = "cs_fishcollector", hash = 0x5A3FC29E, outfits = 4 }, - [0x61F3D8F8] = { model = "cs_forgivenhusband_01", hash = 0x61F3D8F8, outfits = 1 }, - [0xD36D9790] = { model = "cs_forgivenwife_01", hash = 0xD36D9790, outfits = 1 }, - [0xB4449A8A] = { model = "cs_formyartbigwoman", hash = 0xB4449A8A, outfits = 1 }, - [0x9634D7B5] = { model = "cs_francis_sinclair", hash = 0x9634D7B5, outfits = 1 }, - [0xD809F182] = { model = "cs_frenchartist", hash = 0xD809F182, outfits = 2 }, - [0xF258BC07] = { model = "cs_frenchman_01", hash = 0xF258BC07, outfits = 1 }, - [0x8D883B70] = { model = "cs_fussar", hash = 0x8D883B70, outfits = 2 }, - [0x968AB03C] = { model = "cs_garethbraithwaite", hash = 0x968AB03C, outfits = 1 }, - [0x4C5C60B2] = { model = "cs_gavin", hash = 0x4C5C60B2, outfits = 2 }, - [0x3CCC99B1] = { model = "cs_genstoryfemale", hash = 0x3CCC99B1, outfits = 2 }, - [0xD9E8B86A] = { model = "cs_genstorymale", hash = 0xD9E8B86A, outfits = 1 }, - [0xBB35418E] = { model = "cs_geraldbraithwaite", hash = 0xBB35418E, outfits = 2 }, - [0x39FD28AE] = { model = "cs_germandaughter", hash = 0x39FD28AE, outfits = 1 }, - [0x5205A246] = { model = "cs_germanfather", hash = 0x5205A246, outfits = 5 }, - [0x771EA179] = { model = "cs_germanmother", hash = 0x771EA179, outfits = 3 }, - [0x0D5EB39A] = { model = "cs_germanson", hash = 0x0D5EB39A, outfits = 2 }, - [0xE1B35B43] = { model = "cs_gilbertknightly", hash = 0xE1B35B43, outfits = 1 }, - [0x9B5487C9] = { model = "cs_gloria", hash = 0x9B5487C9, outfits = 1 }, - [0xBDB43F31] = { model = "cs_grizzledjon", hash = 0xBDB43F31, outfits = 2 }, - [0x9EDFC6EB] = { model = "cs_guidomartelli", hash = 0x9EDFC6EB, outfits = 3 }, - [0x6D084810] = { model = "cs_hamish", hash = 0x6D084810, outfits = 1 }, - [0x6D8B4BB9] = { model = "cs_hectorfellowes", hash = 0x6D8B4BB9, outfits = 3 }, - [0x30324925] = { model = "cs_henrilemiux", hash = 0x30324925, outfits = 2 }, - [0x0C60474A] = { model = "cs_herbalist", hash = 0x0C60474A, outfits = 1 }, - [0x4C165ECF] = { model = "cs_hercule", hash = 0x4C165ECF, outfits = 2 }, - [0xA560451D] = { model = "cs_hestonjameson", hash = 0xA560451D, outfits = 2 }, - [0xB0C337A3] = { model = "cs_hobartcrawley", hash = 0xB0C337A3, outfits = 2 }, - [0x490733E8] = { model = "cs_hoseamatthews", hash = 0x490733E8, outfits = 13 }, - [0x88094B37] = { model = "cs_iangray", hash = 0x88094B37, outfits = 1 }, - [0x71F7EE1B] = { model = "cs_jackmarston", hash = 0x71F7EE1B, outfits = 8 }, - [0xDA5990BC] = { model = "cs_jackmarston_teen", hash = 0xDA5990BC, outfits = 10 }, - [0x004C2AF4] = { model = "cs_jamie", hash = 0x004C2AF4, outfits = 1 }, - [0xD2E125B6] = { model = "cs_janson", hash = 0xD2E125B6, outfits = 1 }, - [0x6DE3800C] = { model = "cs_javierescuella", hash = 0x6DE3800C, outfits = 32 }, - [0x5548F1E9] = { model = "cs_jeb", hash = 0x5548F1E9, outfits = 3 }, - [0x6C30159E] = { model = "cs_jimcalloway", hash = 0x6C30159E, outfits = 1 }, - [0x9DE34628] = { model = "cs_jockgray", hash = 0x9DE34628, outfits = 1 }, - [0xE569265F] = { model = "cs_joe", hash = 0xE569265F, outfits = 2 }, - [0x54951099] = { model = "cs_joebutler", hash = 0x54951099, outfits = 2 }, - [0x05B6D06D] = { model = "cs_johnmarston", hash = 0x05B6D06D, outfits = 31 }, - [0x442FBDDC] = { model = "cs_johnthebaptisingmadman", hash = 0x442FBDDC, outfits = 2 }, - [0x7D357931] = { model = "cs_johnweathers", hash = 0x7D357931, outfits = 1 }, - [0x3BFD7D5D] = { model = "cs_josiahtrelawny", hash = 0x3BFD7D5D, outfits = 10 }, - [0xB4F83876] = { model = "cs_jules", hash = 0xB4F83876, outfits = 2 }, - [0x9A3E29FB] = { model = "cs_karen", hash = 0x9A3E29FB, outfits = 16 }, - [0x013504F0] = { model = "cs_karensjohn_01", hash = 0x013504F0, outfits = 2 }, - [0x739BA0D6] = { model = "cs_kieran", hash = 0x739BA0D6, outfits = 11 }, - [0xBFD90AEA] = { model = "cs_laramie", hash = 0xBFD90AEA, outfits = 2 }, - [0x97F8823A] = { model = "cs_leighgray", hash = 0x97F8823A, outfits = 1 }, - [0x3AEDE260] = { model = "cs_lemiuxassistant", hash = 0x3AEDE260, outfits = 2 }, - [0xF8AE5F8D] = { model = "cs_lenny", hash = 0xF8AE5F8D, outfits = 17 }, - [0xC91ADF62] = { model = "cs_leon", hash = 0xC91ADF62, outfits = 3 }, - [0xFA0312B3] = { model = "cs_leostrauss", hash = 0xFA0312B3, outfits = 11 }, - [0x4D24C49A] = { model = "cs_levisimon", hash = 0x4D24C49A, outfits = 1 }, - [0x8A1FCA47] = { model = "cs_leviticuscornwall", hash = 0x8A1FCA47, outfits = 1 }, - [0x19686DFA] = { model = "cs_lillianpowell", hash = 0x19686DFA, outfits = 3 }, - [0x55C7D09F] = { model = "cs_lillymillet", hash = 0x55C7D09F, outfits = 1 }, - [0x4DBE35B8] = { model = "cs_londonderryson", hash = 0x4DBE35B8, outfits = 1 }, - [0x77435EF1] = { model = "cs_lucanapoli", hash = 0x77435EF1, outfits = 1 }, - [0x5F5942DD] = { model = "cs_magnifico", hash = 0x5F5942DD, outfits = 2 }, - [0x4B6ECAEF] = { model = "cs_mamawatson", hash = 0x4B6ECAEF, outfits = 1 }, - [0x3940877D] = { model = "cs_marshall_thurwell", hash = 0x3940877D, outfits = 1 }, - [0x9B37429C] = { model = "cs_marybeth", hash = 0x9B37429C, outfits = 8 }, - [0x3EA5B5BC] = { model = "cs_marylinton", hash = 0x3EA5B5BC, outfits = 5 }, - [0xF04DEE7E] = { model = "cs_meditatingmonk", hash = 0xF04DEE7E, outfits = 1 }, - [0xC0321438] = { model = "cs_meredith", hash = 0xC0321438, outfits = 1 }, - [0x3112E4AC] = { model = "cs_meredithsmother", hash = 0x3112E4AC, outfits = 1 }, - [0xDE361D65] = { model = "cs_micahbell", hash = 0xDE361D65, outfits = 32 }, - [0xE2D294AB] = { model = "cs_micahsnemesis", hash = 0xE2D294AB, outfits = 1 }, - [0xA1DFB431] = { model = "cs_mickey", hash = 0xA1DFB431, outfits = 2 }, - [0x01004B26] = { model = "cs_miltonandrews", hash = 0x01004B26, outfits = 2 }, - [0x859CBAAC] = { model = "cs_missmarjorie", hash = 0x859CBAAC, outfits = 3 }, - [0xFBBC94C6] = { model = "cs_mixedracekid", hash = 0xFBBC94C6, outfits = 2 }, - [0x9BAAB546] = { model = "cs_moira", hash = 0x9BAAB546, outfits = 1 }, - [0xEB55C35E] = { model = "cs_mollyoshea", hash = 0xEB55C35E, outfits = 8 }, - [0x4C4448BA] = { model = "cs_mp_alfredo_montez", hash = 0x4C4448BA, outfits = 4 }, - [0x931F01E5] = { model = "cs_mp_allison", hash = 0x931F01E5, outfits = 1 }, - [0x30E034CA] = { model = "cs_mp_amos_lansing", hash = 0x30E034CA, outfits = 1 }, - [0x39456FEE] = { model = "cs_mp_bonnie", hash = 0x39456FEE, outfits = 1 }, - [0x892944C5] = { model = "cs_mp_bountyhunter", hash = 0x892944C5, outfits = 1 }, - [0x9F7769F3] = { model = "cs_mp_camp_cook", hash = 0x9F7769F3, outfits = 3 }, - [0xEADDA26C] = { model = "cs_mp_cliff", hash = 0xEADDA26C, outfits = 1 }, - [0x1DD24709] = { model = "cs_mp_cripps", hash = 0x1DD24709, outfits = 25 }, - [0x2CDA4B15] = { model = "cs_mp_grace_lancing", hash = 0x2CDA4B15, outfits = 1 }, - [0x893E6E25] = { model = "cs_mp_hans", hash = 0x893E6E25, outfits = 1 }, - [0xDAB77DF1] = { model = "cs_mp_henchman", hash = 0xDAB77DF1, outfits = 3 }, - [0x4BFBF802] = { model = "cs_mp_horley", hash = 0x4BFBF802, outfits = 1 }, - [0x2EDEF9ED] = { model = "cs_mp_jeremiah_shaw", hash = 0x2EDEF9ED, outfits = 1 }, - [0x6B759DBB] = { model = "cs_mp_jessica", hash = 0x6B759DBB, outfits = 3 }, - [0x8BF81D72] = { model = "cs_mp_jorge_montez", hash = 0x8BF81D72, outfits = 2 }, - [0x9A00FB76] = { model = "cs_mp_langston", hash = 0x9A00FB76, outfits = 1 }, - [0x75DCACF2] = { model = "cs_mp_lee", hash = 0x75DCACF2, outfits = 1 }, - [0xB93CB429] = { model = "cs_mp_mabel", hash = 0xB93CB429, outfits = 1 }, - [0xE24327D2] = { model = "cs_mp_marshall_davies", hash = 0xE24327D2, outfits = 2 }, - [0x65C51599] = { model = "cs_mp_moonshiner", hash = 0x65C51599, outfits = 1 }, - [0xA3261C0D] = { model = "cs_mp_mradler", hash = 0xA3261C0D, outfits = 1 }, - [0xE87FE55D] = { model = "cs_mp_oldman_jones", hash = 0xE87FE55D, outfits = 2 }, - [0x4549CCA0] = { model = "cs_mp_revenge_marshall", hash = 0x4549CCA0, outfits = 1 }, - [0xE757DE29] = { model = "cs_mp_samson_finch", hash = 0xE757DE29, outfits = 3 }, - [0x9A3713AD] = { model = "cs_mp_shaky", hash = 0x9A3713AD, outfits = 1 }, - [0x28AE1CF3] = { model = "cs_mp_sherifffreeman", hash = 0x28AE1CF3, outfits = 1 }, - [0xBB202735] = { model = "cs_mp_teddybrown", hash = 0xBB202735, outfits = 2 }, - [0xB36FBE5E] = { model = "cs_mp_terrance", hash = 0xB36FBE5E, outfits = 1 }, - [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, - [0xE20455E9] = { model = "cs_mp_travellingsaleswoman", hash = 0xE20455E9, outfits = 1 }, - [0xB496E3FB] = { model = "cs_mp_went", hash = 0xB496E3FB, outfits = 3 }, - [0xAB270CC9] = { model = "cs_mradler", hash = 0xAB270CC9, outfits = 3 }, - [0xA89E5746] = { model = "cs_mrdevon", hash = 0xA89E5746, outfits = 1 }, - [0xEFBFEDB1] = { model = "cs_mrlinton", hash = 0xEFBFEDB1, outfits = 1 }, - [0x3AAAB060] = { model = "cs_mrpearson", hash = 0x3AAAB060, outfits = 9 }, - [0x155E51DB] = { model = "cs_mrsadler", hash = 0x155E51DB, outfits = 22 }, - [0x2AB79B76] = { model = "cs_mrsfellows", hash = 0x2AB79B76, outfits = 1 }, - [0xEFC21975] = { model = "cs_mrsgeddes", hash = 0xEFC21975, outfits = 1 }, - [0x5187C29B] = { model = "cs_mrslondonderry", hash = 0x5187C29B, outfits = 1 }, - [0xFEFB81C0] = { model = "cs_mrsweathers", hash = 0xFEFB81C0, outfits = 1 }, - [0x4481AEDF] = { model = "cs_mrs_calhoun", hash = 0x4481AEDF, outfits = 1 }, - [0x62C1389E] = { model = "cs_mrs_sinclair", hash = 0x62C1389E, outfits = 1 }, - [0x41A0B3F7] = { model = "cs_mrwayne", hash = 0x41A0B3F7, outfits = 1 }, - [0x84490A12] = { model = "cs_mud2bigguy", hash = 0x84490A12, outfits = 6 }, - [0xF65EE3E1] = { model = "cs_mysteriousstranger", hash = 0xF65EE3E1, outfits = 1 }, - [0x753590C4] = { model = "cs_nbxdrunk", hash = 0x753590C4, outfits = 2 }, - [0x79AEBA08] = { model = "cs_nbxexecuted", hash = 0x79AEBA08, outfits = 2 }, - [0xC19649AA] = { model = "cs_nbxpolicechiefformal", hash = 0xC19649AA, outfits = 1 }, - [0xC175E70A] = { model = "cs_nbxreceptionist_01", hash = 0xC175E70A, outfits = 1 }, - [0xB304BB4D] = { model = "cs_nial_whelan", hash = 0xB304BB4D, outfits = 1 }, - [0x4995C0A5] = { model = "cs_nicholastimmins", hash = 0x4995C0A5, outfits = 2 }, - [0x031076F6] = { model = "cs_nils", hash = 0x031076F6, outfits = 1 }, - [0xB4B65231] = { model = "cs_norrisforsythe", hash = 0xB4B65231, outfits = 2 }, - [0x04156A73] = { model = "cs_obediahhinton", hash = 0x04156A73, outfits = 1 }, - [0xA91215CD] = { model = "cs_oddfellowspinhead", hash = 0xA91215CD, outfits = 2 }, - [0x62589584] = { model = "cs_odprostitute", hash = 0x62589584, outfits = 1 }, - [0x5B00992C] = { model = "cs_operasinger", hash = 0x5B00992C, outfits = 1 }, - [0xBC537EB7] = { model = "cs_paytah", hash = 0xBC537EB7, outfits = 4 }, - [0x8617AB88] = { model = "cs_penelopebraithwaite", hash = 0x8617AB88, outfits = 2 }, - [0xA06649D4] = { model = "cs_pinkertongoon", hash = 0xA06649D4, outfits = 1 }, - [0x2E258627] = { model = "cs_poisonwellshaman", hash = 0x2E258627, outfits = 2 }, - [0x19E97506] = { model = "cs_poorjoe", hash = 0x19E97506, outfits = 1 }, - [0xDD5F0343] = { model = "cs_priest_wedding", hash = 0xDD5F0343, outfits = 1 }, - [0x89F94DED] = { model = "cs_princessisabeau", hash = 0x89F94DED, outfits = 1 }, - [0x7E1809E8] = { model = "cs_professorbell", hash = 0x7E1809E8, outfits = 1 }, - [0x85FE1E48] = { model = "cs_rainsfall", hash = 0x85FE1E48, outfits = 5 }, - [0x7CF95C98] = { model = "cs_ramon_cortez", hash = 0x7CF95C98, outfits = 1 }, - [0x656E59CC] = { model = "cs_reverendfortheringham", hash = 0x656E59CC, outfits = 2 }, - [0x60713474] = { model = "cs_revswanson", hash = 0x60713474, outfits = 7 }, - [0xC7BB68D5] = { model = "cs_rhodeputy_01", hash = 0xC7BB68D5, outfits = 1 }, - [0x583389C7] = { model = "cs_rhodeputy_02", hash = 0x583389C7, outfits = 1 }, - [0x774AB298] = { model = "cs_rhodesassistant", hash = 0x774AB298, outfits = 1 }, - [0x0F23E138] = { model = "cs_rhodeskidnapvictim", hash = 0x0F23E138, outfits = 1 }, - [0x7FA4ED12] = { model = "cs_rhodessaloonbouncer", hash = 0x7FA4ED12, outfits = 1 }, - [0x772D9802] = { model = "cs_ringmaster", hash = 0x772D9802, outfits = 1 }, - [0xF79A7EC2] = { model = "cs_rockyseven_widow", hash = 0xF79A7EC2, outfits = 5 }, - [0xF0297311] = { model = "cs_samaritan", hash = 0xF0297311, outfits = 1 }, - [0xCF75E336] = { model = "cs_scottgray", hash = 0xCF75E336, outfits = 1 }, - [0xCF12BFF0] = { model = "cs_sddoctor_01", hash = 0xCF12BFF0, outfits = 1 }, - [0xE4E66C41] = { model = "cs_sdpriest", hash = 0xE4E66C41, outfits = 1 }, - [0x6DC2F2F2] = { model = "cs_sdsaloondrunk_01", hash = 0x6DC2F2F2, outfits = 1 }, - [0x0F274F72] = { model = "cs_sdstreetkidthief", hash = 0x0F274F72, outfits = 1 }, - [0xEEB2E5FD] = { model = "cs_sd_streetkid_01", hash = 0xEEB2E5FD, outfits = 1 }, - [0x678E7CA0] = { model = "cs_sd_streetkid_01a", hash = 0x678E7CA0, outfits = 1 }, - [0x32541234] = { model = "cs_sd_streetkid_01b", hash = 0x32541234, outfits = 1 }, - [0x6EF76684] = { model = "cs_sd_streetkid_02", hash = 0x6EF76684, outfits = 1 }, - [0xE0D7A2B2] = { model = "cs_sean", hash = 0xE0D7A2B2, outfits = 17 }, - [0xC192917D] = { model = "cs_sherifffreeman", hash = 0xC192917D, outfits = 2 }, - [0xCEE81C27] = { model = "cs_sheriffowens", hash = 0xCEE81C27, outfits = 2 }, - [0x839CCCAC] = { model = "cs_sistercalderon", hash = 0x839CCCAC, outfits = 1 }, - [0xE9B80099] = { model = "cs_slavecatcher", hash = 0xE9B80099, outfits = 1 }, - [0x51C80EFD] = { model = "cs_soothsayer", hash = 0x51C80EFD, outfits = 2 }, - [0x4B7EAC47] = { model = "cs_strawberryoutlaw_01", hash = 0x4B7EAC47, outfits = 1 }, - [0x99D4C8F2] = { model = "cs_strawberryoutlaw_02", hash = 0x99D4C8F2, outfits = 1 }, - [0xA792AF18] = { model = "cs_strdeputy_01", hash = 0xA792AF18, outfits = 1 }, - [0xDDD99BA5] = { model = "cs_strdeputy_02", hash = 0xDDD99BA5, outfits = 1 }, - [0x83E7B7BB] = { model = "cs_strsheriff_01", hash = 0x83E7B7BB, outfits = 1 }, - [0x196D5830] = { model = "cs_sunworshipper", hash = 0x196D5830, outfits = 1 }, - [0x6509A069] = { model = "cs_susangrimshaw", hash = 0x6509A069, outfits = 12 }, - [0xA9A328D5] = { model = "cs_swampfreak", hash = 0xA9A328D5, outfits = 1 }, - [0x87A4C0B9] = { model = "cs_swampweirdosonny", hash = 0x87A4C0B9, outfits = 3 }, - [0x9654DDCF] = { model = "cs_sworddancer", hash = 0x9654DDCF, outfits = 1 }, - [0x53E86B71] = { model = "cs_tavishgray", hash = 0x53E86B71, outfits = 1 }, - [0x21914E41] = { model = "cs_taxidermist", hash = 0x21914E41, outfits = 1 }, - [0x49644A6F] = { model = "cs_theodorelevin", hash = 0x49644A6F, outfits = 2 }, - [0x03DFFD04] = { model = "cs_thomasdown", hash = 0x03DFFD04, outfits = 2 }, - [0xD690782C] = { model = "cs_tigerhandler", hash = 0xD690782C, outfits = 1 }, - [0x3DE6A545] = { model = "cs_tilly", hash = 0x3DE6A545, outfits = 12 }, - [0x8868C876] = { model = "cs_timothydonahue", hash = 0x8868C876, outfits = 2 }, - [0x8853FF79] = { model = "cs_tinyhermit", hash = 0x8853FF79, outfits = 2 }, - [0xBABFD910] = { model = "cs_tomdickens", hash = 0xBABFD910, outfits = 3 }, - [0x13458A93] = { model = "cs_towncrier", hash = 0x13458A93, outfits = 2 }, - [0x3AF591E8] = { model = "cs_treasurehunter", hash = 0x3AF591E8, outfits = 1 }, - [0x361005DD] = { model = "cs_twinbrother_01", hash = 0x361005DD, outfits = 2 }, - [0xA49B62BA] = { model = "cs_twinbrother_02", hash = 0xA49B62BA, outfits = 2 }, - [0xFD3C2696] = { model = "cs_twingroupie_01", hash = 0xFD3C2696, outfits = 1 }, - [0xEB8B8335] = { model = "cs_twingroupie_02", hash = 0xEB8B8335, outfits = 1 }, - [0xC63726DF] = { model = "cs_uncle", hash = 0xC63726DF, outfits = 12 }, - [0x87EF0B8D] = { model = "cs_unidusterjail_01", hash = 0x87EF0B8D, outfits = 1 }, - [0x70BEBBCF] = { model = "cs_valauctionboss_01", hash = 0x70BEBBCF, outfits = 2 }, - [0x6C07EC33] = { model = "cs_valdeputy_01", hash = 0x6C07EC33, outfits = 1 }, - [0x4124A908] = { model = "cs_valprayingman", hash = 0x4124A908, outfits = 1 }, - [0x3A643444] = { model = "cs_valprostitute_01", hash = 0x3A643444, outfits = 1 }, - [0x2B769669] = { model = "cs_valprostitute_02", hash = 0x2B769669, outfits = 1 }, - [0x8FB23370] = { model = "cs_valsheriff", hash = 0x8FB23370, outfits = 2 }, - [0xD95BCB7D] = { model = "cs_vampire", hash = 0xD95BCB7D, outfits = 1 }, - [0x36781BAC] = { model = "cs_vht_bathgirl", hash = 0x36781BAC, outfits = 1 }, - [0xFB0A7382] = { model = "cs_wapitiboy", hash = 0xFB0A7382, outfits = 1 }, - [0x9C0C8EE9] = { model = "cs_warvet", hash = 0x9C0C8EE9, outfits = 3 }, - [0x69439F09] = { model = "cs_watson_01", hash = 0x69439F09, outfits = 1 }, - [0x8C16E4AF] = { model = "cs_watson_02", hash = 0x8C16E4AF, outfits = 1 }, - [0x44EFD66E] = { model = "cs_watson_03", hash = 0x44EFD66E, outfits = 1 }, - [0x02E86DB1] = { model = "cs_welshfighter", hash = 0x02E86DB1, outfits = 1 }, - [0x03387076] = { model = "cs_wintonholmes", hash = 0x03387076, outfits = 3 }, - [0xBE52968B] = { model = "cs_wrobel", hash = 0xBE52968B, outfits = 1 }, - [0x512129F2] = { model = "u_f_m_bht_wife", hash = 0x512129F2, outfits = 1 }, - [0x5F3EE4D3] = { model = "u_f_m_circuswagon_01", hash = 0x5F3EE4D3, outfits = 1 }, - [0xD93F012D] = { model = "u_f_m_emrdaughter_01", hash = 0xD93F012D, outfits = 5 }, - [0xB1DCC83F] = { model = "u_f_m_fussar1lady_01", hash = 0xB1DCC83F, outfits = 1 }, - [0x76C45EF0] = { model = "u_f_m_htlwife_01", hash = 0x76C45EF0, outfits = 1 }, - [0x41ACC7BC] = { model = "u_f_m_lagmother_01", hash = 0x41ACC7BC, outfits = 9 }, - [0xAF6FBD47] = { model = "u_f_m_nbxresident_01", hash = 0xAF6FBD47, outfits = 2 }, - [0x99372227] = { model = "u_f_m_rhdnudewoman_01", hash = 0x99372227, outfits = 1 }, - [0xE96BC143] = { model = "u_f_m_rkshomesteadtenant_01", hash = 0xE96BC143, outfits = 1 }, - [0xC71BF1D1] = { model = "u_f_m_story_blackbelle_01", hash = 0xC71BF1D1, outfits = 1 }, - [0x3C1CEAE0] = { model = "u_f_m_story_nightfolk_01", hash = 0x3C1CEAE0, outfits = 1 }, - [0x0A219825] = { model = "u_f_m_tljbartender_01", hash = 0x0A219825, outfits = 9 }, - [0xF1711637] = { model = "u_f_m_tumgeneralstoreowner_01", hash = 0xF1711637, outfits = 9 }, - [0x8F549F46] = { model = "u_f_m_valtownfolk_01", hash = 0x8F549F46, outfits = 2 }, - [0x7CC2FA23] = { model = "u_f_m_valtownfolk_02", hash = 0x7CC2FA23, outfits = 2 }, - [0x3E471440] = { model = "u_f_m_vhtbartender_01", hash = 0x3E471440, outfits = 7 }, - [0xEDC0F72A] = { model = "u_f_o_hermit_woman_01", hash = 0xEDC0F72A, outfits = 1 }, - [0xAE38220C] = { model = "u_f_o_wtctownfolk_01", hash = 0xAE38220C, outfits = 1 }, - [0x74DF3938] = { model = "u_f_y_braithwaitessecret_01", hash = 0x74DF3938, outfits = 2 }, - [0xBCC8D35F] = { model = "u_f_y_czphomesteaddaughter_01", hash = 0xBCC8D35F, outfits = 1 }, - [0x8C9F0E5D] = { model = "u_m_m_announcer_01", hash = 0x8C9F0E5D, outfits = 2 }, - [0x0717C9F9] = { model = "u_m_m_apfdeadman_01", hash = 0x0717C9F9, outfits = 1 }, - [0xC5DF0CFE] = { model = "u_m_m_armgeneralstoreowner_01", hash = 0xC5DF0CFE, outfits = 9 }, - [0x2AB8094F] = { model = "u_m_m_armtrainstationworker_01", hash = 0x2AB8094F, outfits = 9 }, - [0x8E4FCB05] = { model = "u_m_m_armundertaker_01", hash = 0x8E4FCB05, outfits = 9 }, - [0x4F93F6BE] = { model = "u_m_m_armytrn4_01", hash = 0x4F93F6BE, outfits = 1 }, - [0x80D04451] = { model = "u_m_m_asbgunsmith_01", hash = 0x80D04451, outfits = 9 }, - [0x0B8D495D] = { model = "u_m_m_asbprisoner_01", hash = 0x0B8D495D, outfits = 2 }, - [0x1DCEEDE0] = { model = "u_m_m_asbprisoner_02", hash = 0x1DCEEDE0, outfits = 2 }, - [0xC3E1BC18] = { model = "u_m_m_bht_banditomine", hash = 0xC3E1BC18, outfits = 2 }, - [0xC3B9DF14] = { model = "u_m_m_bht_banditoshack", hash = 0xC3B9DF14, outfits = 4 }, - [0x2B0B3AC2] = { model = "u_m_m_bht_benedictallbright", hash = 0x2B0B3AC2, outfits = 1 }, - [0xACBA905B] = { model = "u_m_m_bht_blackwaterhunt", hash = 0xACBA905B, outfits = 1 }, - [0x652E0944] = { model = "u_m_m_bht_exconfedcampreturn", hash = 0x652E0944, outfits = 1 }, - [0xCC013F0A] = { model = "u_m_m_bht_laramiesleeping", hash = 0xCC013F0A, outfits = 1 }, - [0xB7281910] = { model = "u_m_m_bht_lover", hash = 0xB7281910, outfits = 1 }, - [0x60D033B6] = { model = "u_m_m_bht_mineforeman", hash = 0x60D033B6, outfits = 1 }, - [0x22944F0D] = { model = "u_m_m_bht_nathankirk", hash = 0x22944F0D, outfits = 1 }, - [0xC5BCD5E8] = { model = "u_m_m_bht_odriscolldrunk", hash = 0xC5BCD5E8, outfits = 1 }, - [0xA2B8EFDC] = { model = "u_m_m_bht_odriscollmauled", hash = 0xA2B8EFDC, outfits = 1 }, - [0x2E6B2DB0] = { model = "u_m_m_bht_odriscollsleeping", hash = 0x2E6B2DB0, outfits = 1 }, - [0xC82782C2] = { model = "u_m_m_bht_oldman", hash = 0xC82782C2, outfits = 1 }, - [0x62600029] = { model = "U_M_M_BHT_OUTLAWMAULED", hash = 0x62600029, outfits = 1 }, - [0x2AC6EC80] = { model = "u_m_m_bht_saintdenissaloon", hash = 0x2AC6EC80, outfits = 1 }, - [0x861F7616] = { model = "u_m_m_bht_shackescape", hash = 0x861F7616, outfits = 1 }, - [0x728D7C04] = { model = "u_m_m_bht_skinnerbrother", hash = 0x728D7C04, outfits = 3 }, - [0x8E18978A] = { model = "u_m_m_bht_skinnersearch", hash = 0x8E18978A, outfits = 3 }, - [0x66EAB43A] = { model = "u_m_m_bht_strawberryduel", hash = 0x66EAB43A, outfits = 1 }, - [0xB8195626] = { model = "u_m_m_bivforeman_01", hash = 0xB8195626, outfits = 5 }, - [0xD3A41495] = { model = "u_m_m_blwtrainstationworker_01", hash = 0xD3A41495, outfits = 9 }, - [0x143F8FAC] = { model = "u_m_m_bulletcatchvolunteer_01", hash = 0x143F8FAC, outfits = 2 }, - [0xA27B73FE] = { model = "u_m_m_bwmstablehand_01", hash = 0xA27B73FE, outfits = 4 }, - [0xF78F6717] = { model = "u_m_m_cabaretfirehat_01", hash = 0xF78F6717, outfits = 1 }, - [0x675B5537] = { model = "u_m_m_cajhomestead_01", hash = 0x675B5537, outfits = 1 }, - [0xA2FA1725] = { model = "u_m_m_chelonianjumper_01", hash = 0xA2FA1725, outfits = 2 }, - [0x913F73B0] = { model = "u_m_m_chelonianjumper_02", hash = 0x913F73B0, outfits = 2 }, - [0x7FDED0EF] = { model = "u_m_m_chelonianjumper_03", hash = 0x7FDED0EF, outfits = 2 }, - [0x5E1D8D6D] = { model = "u_m_m_chelonianjumper_04", hash = 0x5E1D8D6D, outfits = 2 }, - [0x67604D20] = { model = "u_m_m_circuswagon_01", hash = 0x67604D20, outfits = 1 }, - [0xC31F3D4D] = { model = "u_m_m_cktmanager_01", hash = 0xC31F3D4D, outfits = 1 }, - [0x4CB41AA6] = { model = "u_m_m_cornwalldriver_01", hash = 0x4CB41AA6, outfits = 1 }, - [0x32830A89] = { model = "u_m_m_crdhomesteadtenant_01", hash = 0x32830A89, outfits = 2 }, - [0x693D77FD] = { model = "u_m_m_crdhomesteadtenant_02", hash = 0x693D77FD, outfits = 2 }, - [0xD8053806] = { model = "u_m_m_crdwitness_01", hash = 0xD8053806, outfits = 2 }, - [0xDA855AC6] = { model = "u_m_m_creolecaptain_01", hash = 0xDA855AC6, outfits = 1 }, - [0x08C9910B] = { model = "u_m_m_czphomesteadfather_01", hash = 0x08C9910B, outfits = 1 }, - [0xA9A4DB09] = { model = "u_m_m_dorhomesteadhusband_01", hash = 0xA9A4DB09, outfits = 1 }, - [0xCA3F1D23] = { model = "u_m_m_emrfarmhand_03", hash = 0xCA3F1D23, outfits = 2 }, - [0xD08F9FEC] = { model = "u_m_m_emrfather_01", hash = 0xD08F9FEC, outfits = 5 }, - [0x9955028D] = { model = "u_m_m_executioner_01", hash = 0x9955028D, outfits = 1 }, - [0x0CD32813] = { model = "u_m_m_fatduster_01", hash = 0x0CD32813, outfits = 2 }, - [0x28F7679D] = { model = "u_m_m_finale2_aa_upperclass_01", hash = 0x28F7679D, outfits = 2 }, - [0x0E8B4AB9] = { model = "u_m_m_galastringquartet_01", hash = 0x0E8B4AB9, outfits = 2 }, - [0x4418B5DF] = { model = "u_m_m_galastringquartet_02", hash = 0x4418B5DF, outfits = 2 }, - [0x313F102C] = { model = "u_m_m_galastringquartet_03", hash = 0x313F102C, outfits = 2 }, - [0x677D7CA8] = { model = "u_m_m_galastringquartet_04", hash = 0x677D7CA8, outfits = 2 }, - [0x51B75106] = { model = "u_m_m_gamdoorman_01", hash = 0x51B75106, outfits = 2 }, - [0xE5DA06C1] = { model = "u_m_m_hhrrancher_01", hash = 0xE5DA06C1, outfits = 2 }, - [0x1E87BC0A] = { model = "u_m_m_htlforeman_01", hash = 0x1E87BC0A, outfits = 5 }, - [0xD1C51E05] = { model = "u_m_m_htlhusband_01", hash = 0xD1C51E05, outfits = 1 }, - [0x9B004750] = { model = "u_m_m_htlrancherbounty_01", hash = 0x9B004750, outfits = 2 }, - [0x8F6606D5] = { model = "u_m_m_islbum_01", hash = 0x8F6606D5, outfits = 1 }, - [0x1DEF8E8E] = { model = "u_m_m_lnsoutlaw_01", hash = 0x1DEF8E8E, outfits = 2 }, - [0x2BE12A71] = { model = "u_m_m_lnsoutlaw_02", hash = 0x2BE12A71, outfits = 2 }, - [0x68F3A489] = { model = "u_m_m_lnsoutlaw_03", hash = 0x68F3A489, outfits = 2 }, - [0x3881C3AA] = { model = "u_m_m_lnsoutlaw_04", hash = 0x3881C3AA, outfits = 2 }, - [0xCC4D780E] = { model = "u_m_m_lnsworker_01", hash = 0xCC4D780E, outfits = 2 }, - [0xB30E4590] = { model = "u_m_m_lnsworker_02", hash = 0xB30E4590, outfits = 2 }, - [0xA0EFA153] = { model = "u_m_m_lnsworker_03", hash = 0xA0EFA153, outfits = 2 }, - [0x91BD02EE] = { model = "u_m_m_lnsworker_04", hash = 0x91BD02EE, outfits = 2 }, - [0xF9EEA22E] = { model = "u_m_m_lrshomesteadtenant_01", hash = 0xF9EEA22E, outfits = 2 }, - [0xF91B281F] = { model = "u_m_m_mfrrancher_01", hash = 0xF91B281F, outfits = 2 }, - [0x6CD2AAFF] = { model = "u_m_m_mud3pimp_01", hash = 0x6CD2AAFF, outfits = 2 }, - [0x2E3911BA] = { model = "u_m_m_nbxbankerbounty_01", hash = 0x2E3911BA, outfits = 2 }, - [0x1EE53C9C] = { model = "u_m_m_nbxbartender_01", hash = 0x1EE53C9C, outfits = 9 }, - [0x0D1298F7] = { model = "u_m_m_nbxbartender_02", hash = 0x0D1298F7, outfits = 9 }, - [0xB752EDAF] = { model = "u_m_m_nbxboatticketseller_01", hash = 0xB752EDAF, outfits = 5 }, - [0x42507F3E] = { model = "u_m_m_nbxbronteasc_01", hash = 0x42507F3E, outfits = 1 }, - [0xB7F2F587] = { model = "u_m_m_nbxbrontegoon_01", hash = 0xB7F2F587, outfits = 1 }, - [0xE8BCA87C] = { model = "u_m_m_nbxbrontesecform_01", hash = 0xE8BCA87C, outfits = 1 }, - [0x54123716] = { model = "u_m_m_nbxgeneralstoreowner_01", hash = 0x54123716, outfits = 9 }, - [0xFC3D1E1B] = { model = "u_m_m_nbxgraverobber_01", hash = 0xFC3D1E1B, outfits = 2 }, - [0x7C7C9EA0] = { model = "u_m_m_nbxgraverobber_02", hash = 0x7C7C9EA0, outfits = 2 }, - [0x8FBDC522] = { model = "u_m_m_nbxgraverobber_03", hash = 0x8FBDC522, outfits = 2 }, - [0x3DB8A119] = { model = "u_m_m_nbxgraverobber_04", hash = 0x3DB8A119, outfits = 2 }, - [0x33EE8D85] = { model = "u_m_m_nbxgraverobber_05", hash = 0x33EE8D85, outfits = 2 }, - [0x2A66EA55] = { model = "u_m_m_nbxgunsmith_01", hash = 0x2A66EA55, outfits = 9 }, - [0x7A53E763] = { model = "u_m_m_nbxliveryworker_01", hash = 0x7A53E763, outfits = 2 }, - [0x668685E6] = { model = "u_m_m_nbxmusician_01", hash = 0x668685E6, outfits = 2 }, - [0xDD900EBD] = { model = "u_m_m_nbxpriest_01", hash = 0xDD900EBD, outfits = 1 }, - [0x6BE0A02F] = { model = "u_m_m_nbxresident_01", hash = 0x6BE0A02F, outfits = 2 }, - [0x4BB85FDB] = { model = "u_m_m_nbxresident_02", hash = 0x4BB85FDB, outfits = 2 }, - [0x597DFB66] = { model = "u_m_m_nbxresident_03", hash = 0x597DFB66, outfits = 2 }, - [0x271C96A4] = { model = "u_m_m_nbxresident_04", hash = 0x271C96A4, outfits = 2 }, - [0xE5C80F77] = { model = "u_m_m_nbxriverboatpitboss_01", hash = 0xE5C80F77, outfits = 2 }, - [0x16B38C17] = { model = "u_m_m_nbxriverboattarget_01", hash = 0x16B38C17, outfits = 2 }, - [0x1B2769D0] = { model = "u_m_m_nbxshadydealer_01", hash = 0x1B2769D0, outfits = 9 }, - [0xD43AE828] = { model = "u_m_m_nbxskiffdriver_01", hash = 0xD43AE828, outfits = 2 }, - [0x42352E08] = { model = "u_m_m_oddfellowparticipant_01", hash = 0x42352E08, outfits = 2 }, - [0xB6C0F55D] = { model = "u_m_m_odriscollbrawler_01", hash = 0xB6C0F55D, outfits = 3 }, - [0xC4162DA7] = { model = "u_m_m_orpguard_01", hash = 0xC4162DA7, outfits = 1 }, - [0xE0448D54] = { model = "u_m_m_racforeman_01", hash = 0xE0448D54, outfits = 5 }, - [0x6DE7AD0F] = { model = "u_m_m_racquartermaster_01", hash = 0x6DE7AD0F, outfits = 2 }, - [0x8E764EA7] = { model = "u_m_m_rhdbackupdeputy_01", hash = 0x8E764EA7, outfits = 2 }, - [0x7BABA912] = { model = "u_m_m_rhdbackupdeputy_02", hash = 0x7BABA912, outfits = 2 }, - [0x23DA7E9F] = { model = "u_m_m_rhdbartender_01", hash = 0x23DA7E9F, outfits = 7 }, - [0x2A37903E] = { model = "u_m_m_rhddoctor_01", hash = 0x2A37903E, outfits = 1 }, - [0x3A9FCA38] = { model = "u_m_m_rhdfiddleplayer_01", hash = 0x3A9FCA38, outfits = 2 }, - [0x9B9EF6B7] = { model = "u_m_m_rhdgenstoreowner_01", hash = 0x9B9EF6B7, outfits = 9 }, - [0x893751E8] = { model = "u_m_m_rhdgenstoreowner_02", hash = 0x893751E8, outfits = 9 }, - [0xADDA73CE] = { model = "u_m_m_rhdgunsmith_01", hash = 0xADDA73CE, outfits = 9 }, - [0x06B0DE6B] = { model = "u_m_m_rhdpreacher_01", hash = 0x06B0DE6B, outfits = 1 }, - [0xC76BB57A] = { model = "u_m_m_rhdsheriff_01", hash = 0xC76BB57A, outfits = 5 }, - [0x3F0EC349] = { model = "u_m_m_rhdtrainstationworker_01", hash = 0x3F0EC349, outfits = 5 }, - [0x2158A563] = { model = "u_m_m_rhdundertaker_01", hash = 0x2158A563, outfits = 1 }, - [0x6376F2EE] = { model = "u_m_m_riodonkeyrider_01", hash = 0x6376F2EE, outfits = 1 }, - [0x3B85803C] = { model = "u_m_m_rkfrancher_01", hash = 0x3B85803C, outfits = 1 }, - [0xA558BFEF] = { model = "u_m_m_rkrdonkeyrider_01", hash = 0xA558BFEF, outfits = 1 }, - [0xA209CB2A] = { model = "u_m_m_rwfrancher_01", hash = 0xA209CB2A, outfits = 1 }, - [0x128CDD40] = { model = "u_m_m_sdbankguard_01", hash = 0x128CDD40, outfits = 4 }, - [0x400E34A9] = { model = "u_m_m_sdcustomvendor_01", hash = 0x400E34A9, outfits = 9 }, - [0xF1029EA3] = { model = "u_m_m_sdexoticsshopkeeper_01", hash = 0xF1029EA3, outfits = 10 }, - [0xBE9D77E1] = { model = "u_m_m_sdphotographer_01", hash = 0xBE9D77E1, outfits = 2 }, - [0x5C99E1C2] = { model = "u_m_m_sdpolicechief_01", hash = 0x5C99E1C2, outfits = 5 }, - [0xCCB89BB7] = { model = "u_m_m_sdstrongwomanassistant_01", hash = 0xCCB89BB7, outfits = 1 }, - [0x23317990] = { model = "u_m_m_sdtrapper_01", hash = 0x23317990, outfits = 1 }, - [0x3FEE3412] = { model = "u_m_m_sdwealthytraveller_01", hash = 0x3FEE3412, outfits = 5 }, - [0x62AD6C6C] = { model = "u_m_m_shackserialkiller_01", hash = 0x62AD6C6C, outfits = 1 }, - [0x7D796588] = { model = "u_m_m_shacktwin_01", hash = 0x7D796588, outfits = 2 }, - [0x7A2F5EF4] = { model = "u_m_m_shacktwin_02", hash = 0x7A2F5EF4, outfits = 2 }, - [0x08534AF0] = { model = "u_m_m_skinnyoldguy_01", hash = 0x08534AF0, outfits = 1 }, - [0x199B5D2F] = { model = "u_m_m_story_armadillo_01", hash = 0x199B5D2F, outfits = 1 }, - [0x019AAC14] = { model = "u_m_m_story_cannibal_01", hash = 0x019AAC14, outfits = 1 }, - [0xA8FDA7E1] = { model = "u_m_m_story_chelonian_01", hash = 0xA8FDA7E1, outfits = 1 }, - [0x2E663310] = { model = "u_m_m_story_copperhead_01", hash = 0x2E663310, outfits = 1 }, - [0x4FFBC75C] = { model = "u_m_m_story_creeper_01", hash = 0x4FFBC75C, outfits = 1 }, - [0x7E80C06D] = { model = "u_m_m_story_emeraldranch_01", hash = 0x7E80C06D, outfits = 1 }, - [0x65B3401E] = { model = "u_m_m_story_hunter_01", hash = 0x65B3401E, outfits = 1 }, - [0x82D7E004] = { model = "u_m_m_story_manzanita_01", hash = 0x82D7E004, outfits = 2 }, - [0x474080E1] = { model = "u_m_m_story_murfee_01", hash = 0x474080E1, outfits = 1 }, - [0xD6CDC88D] = { model = "u_m_m_story_pigfarm_01", hash = 0xD6CDC88D, outfits = 1 }, - [0x42F42CBF] = { model = "u_m_m_story_princess_01", hash = 0x42F42CBF, outfits = 1 }, - [0x82212B0D] = { model = "u_m_m_story_redharlow_01", hash = 0x82212B0D, outfits = 1 }, - [0xEDDB93E8] = { model = "u_m_m_story_rhodes_01", hash = 0xEDDB93E8, outfits = 1 }, - [0xCFA8C361] = { model = "u_m_m_story_sdstatue_01", hash = 0xCFA8C361, outfits = 1 }, - [0x0CF1DA06] = { model = "u_m_m_story_spectre_01", hash = 0x0CF1DA06, outfits = 1 }, - [0x54A21893] = { model = "u_m_m_story_treasure_01", hash = 0x54A21893, outfits = 1 }, - [0x628EBD88] = { model = "u_m_m_story_tumbleweed_01", hash = 0x628EBD88, outfits = 1 }, - [0x565FF75B] = { model = "u_m_m_story_valentine_01", hash = 0x565FF75B, outfits = 1 }, - [0x1173F849] = { model = "u_m_m_strfreightstationowner_01", hash = 0x1173F849, outfits = 5 }, - [0x104FE6B3] = { model = "u_m_m_strgenstoreowner_01", hash = 0x104FE6B3, outfits = 9 }, - [0x77EEF186] = { model = "u_m_m_strsherriff_01", hash = 0x77EEF186, outfits = 5 }, - [0x4128755F] = { model = "u_m_m_strwelcomecenter_01", hash = 0x4128755F, outfits = 9 }, - [0xD31B229F] = { model = "u_m_m_tumbartender_01", hash = 0xD31B229F, outfits = 7 }, - [0x9168B88B] = { model = "u_m_m_tumbutcher_01", hash = 0x9168B88B, outfits = 9 }, - [0x79FB001C] = { model = "u_m_m_tumgunsmith_01", hash = 0x79FB001C, outfits = 9 }, - [0x6712F25D] = { model = "u_m_m_tumtrainstationworker_01", hash = 0x6712F25D, outfits = 1 }, - [0x7A5AC236] = { model = "u_m_m_unibountyhunter_01", hash = 0x7A5AC236, outfits = 1 }, - [0xB0962EB0] = { model = "u_m_m_unibountyhunter_02", hash = 0xB0962EB0, outfits = 1 }, - [0x0EBB9BCE] = { model = "u_m_m_unidusterhenchman_01", hash = 0x0EBB9BCE, outfits = 2 }, - [0xE302445C] = { model = "u_m_m_unidusterhenchman_02", hash = 0xE302445C, outfits = 2 }, - [0xD1B321BE] = { model = "u_m_m_unidusterhenchman_03", hash = 0xD1B321BE, outfits = 2 }, - [0x3C9E3212] = { model = "u_m_m_unidusterleader_01", hash = 0x3C9E3212, outfits = 2 }, - [0x1BC9C8FC] = { model = "u_m_m_uniexconfedsbounty_01", hash = 0x1BC9C8FC, outfits = 2 }, - [0x5FC8B319] = { model = "u_m_m_unionleader_01", hash = 0x5FC8B319, outfits = 2 }, - [0x6D1BCDBF] = { model = "u_m_m_unionleader_02", hash = 0x6D1BCDBF, outfits = 2 }, - [0x5E1148BF] = { model = "u_m_m_unipeepingtom_01", hash = 0x5E1148BF, outfits = 2 }, - [0x075398B9] = { model = "u_m_m_valauctionforman_01", hash = 0x075398B9, outfits = 7 }, - [0x4EDB27C7] = { model = "u_m_m_valauctionforman_02", hash = 0x4EDB27C7, outfits = 6 }, - [0xD371AE64] = { model = "u_m_m_valbarber_01", hash = 0xD371AE64, outfits = 9 }, - [0xB733CF0F] = { model = "u_m_m_valbartender_01", hash = 0xB733CF0F, outfits = 9 }, - [0x69019A68] = { model = "u_m_m_valbeartrap_01", hash = 0x69019A68, outfits = 5 }, - [0x23E0698B] = { model = "u_m_m_valbutcher_01", hash = 0x23E0698B, outfits = 9 }, - [0x71545DA5] = { model = "u_m_m_valdoctor_01", hash = 0x71545DA5, outfits = 9 }, - [0x9B3E551B] = { model = "u_m_m_valgenstoreowner_01", hash = 0x9B3E551B, outfits = 9 }, - [0xBBC5D27F] = { model = "u_m_m_valgunsmith_01", hash = 0xBBC5D27F, outfits = 9 }, - [0xB66F12F2] = { model = "u_m_m_valhotelowner_01", hash = 0xB66F12F2, outfits = 9 }, - [0xD6B24482] = { model = "u_m_m_valpokerplayer_01", hash = 0xD6B24482, outfits = 5 }, - [0x03969E2E] = { model = "u_m_m_valpokerplayer_02", hash = 0x03969E2E, outfits = 5 }, - [0x16681434] = { model = "u_m_m_valpoopingman_01", hash = 0x16681434, outfits = 4 }, - [0x93B09465] = { model = "u_m_m_valsheriff_01", hash = 0x93B09465, outfits = 5 }, - [0xD0D41B25] = { model = "u_m_m_valtheman_01", hash = 0xD0D41B25, outfits = 9 }, - [0xC4CC5EE6] = { model = "u_m_m_valtownfolk_01", hash = 0xC4CC5EE6, outfits = 4 }, - [0xA5F92140] = { model = "u_m_m_valtownfolk_02", hash = 0xA5F92140, outfits = 4 }, - [0xC606A445] = { model = "u_m_m_vhtstationclerk_01", hash = 0xC606A445, outfits = 9 }, - [0x42DD47BF] = { model = "u_m_m_walgeneralstoreowner_01", hash = 0x42DD47BF, outfits = 5 }, - [0x5EDC8972] = { model = "u_m_m_wapofficial_01", hash = 0x5EDC8972, outfits = 2 }, - [0xDF9051C0] = { model = "u_m_m_wtccowboy_04", hash = 0xDF9051C0, outfits = 2 }, - [0xDD6D1B34] = { model = "u_m_o_armbartender_01", hash = 0xDD6D1B34, outfits = 9 }, - [0x1CEF1945] = { model = "u_m_o_asbsheriff_01", hash = 0x1CEF1945, outfits = 5 }, - [0xA0325B4E] = { model = "u_m_o_bht_docwormwood", hash = 0xA0325B4E, outfits = 2 }, - [0x8E81C857] = { model = "u_m_o_blwbartender_01", hash = 0x8E81C857, outfits = 9 }, - [0x6958B082] = { model = "u_m_o_blwgeneralstoreowner_01", hash = 0x6958B082, outfits = 9 }, - [0x3B99237E] = { model = "u_m_o_blwphotographer_01", hash = 0x3B99237E, outfits = 9 }, - [0x67FB6A21] = { model = "u_m_o_blwpolicechief_01", hash = 0x67FB6A21, outfits = 7 }, - [0x10E06765] = { model = "u_m_o_cajhomestead_01", hash = 0x10E06765, outfits = 1 }, - [0xECA3D50D] = { model = "u_m_o_cmrcivilwarcommando_01", hash = 0xECA3D50D, outfits = 2 }, - [0xDE86823E] = { model = "u_m_o_mapwiseoldman_01", hash = 0xDE86823E, outfits = 5 }, - [0xAFFEF16E] = { model = "u_m_o_oldcajun_01", hash = 0xAFFEF16E, outfits = 1 }, - [0xDD1C10E8] = { model = "u_m_o_pshrancher_01", hash = 0xDD1C10E8, outfits = 5 }, - [0xABC22ABF] = { model = "u_m_o_rigtrainstationworker_01", hash = 0xABC22ABF, outfits = 5 }, - [0x904CC489] = { model = "u_m_o_valbartender_01", hash = 0x904CC489, outfits = 8 }, - [0xCE72526E] = { model = "u_m_o_vhtexoticshopkeeper_01", hash = 0xCE72526E, outfits = 9 }, - [0x1B8FD0E7] = { model = "u_m_y_cajhomestead_01", hash = 0x1B8FD0E7, outfits = 1 }, - [0x1B6F073A] = { model = "u_m_y_czphomesteadson_01", hash = 0x1B6F073A, outfits = 1 }, - [0x0530DABA] = { model = "u_m_y_czphomesteadson_02", hash = 0x0530DABA, outfits = 1 }, - [0xAE09AC6D] = { model = "u_m_y_czphomesteadson_03", hash = 0xAE09AC6D, outfits = 1 }, - [0x9992837F] = { model = "u_m_y_czphomesteadson_04", hash = 0x9992837F, outfits = 1 }, - [0xD23774C8] = { model = "u_m_y_czphomesteadson_05", hash = 0xD23774C8, outfits = 1 }, - [0x4152ADFB] = { model = "u_m_y_duellistbounty_01", hash = 0x4152ADFB, outfits = 2 }, - [0x559BD1B7] = { model = "u_m_y_emrson_01", hash = 0x559BD1B7, outfits = 4 }, - [0xB60F7B1B] = { model = "u_m_y_htlworker_01", hash = 0xB60F7B1B, outfits = 5 }, - [0xC8661FCC] = { model = "u_m_y_htlworker_02", hash = 0xC8661FCC, outfits = 5 }, - [0xBC5CFF49] = { model = "u_m_y_shackstarvingkid_01", hash = 0xBC5CFF49, outfits = 3 }, - [0x5087BED1] = { model = "cs_mp_agent_hixon", hash = 0x5087BED1, outfits = 2 }, - [0x81C2FD57] = { model = "cs_mp_dannylee", hash = 0x81C2FD57, outfits = 2 }, - [0x024BE4BE] = { model = "cs_mp_gus_macmillan", hash = 0x024BE4BE, outfits = 2 }, - [0x9BD92566] = { model = "cs_mp_harriet_davenport", hash = 0x9BD92566, outfits = 1 }, - [0x048FCA26] = { model = "cs_mp_lem", hash = 0x048FCA26, outfits = 3 }, - [0xF0DA3AE5] = { model = "cs_mp_maggie", hash = 0xF0DA3AE5, outfits = 2 }, - [0x7666911B] = { model = "cs_mp_seth", hash = 0x7666911B, outfits = 1 }, - [0x04B479C0] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, - [0x9A755448] = { model = "cs_mp_bessie_adair", hash = 0x9A755448, outfits = 1 }, - [0xAADC8018] = { model = "CS_MP_POLICECHIEF_LAMBERT", hash = 0xAADC8018, outfits = 1 }, - [0xBE651417] = { model = "CS_MP_SENATOR_RICARD", hash = 0xBE651417, outfits = 2 }, + [`cs_abe`] = { model = "cs_abe", hash = 0xA8B1C9F7, outfits = 2 }, + [`cs_aberdeenpigfarmer`] = { model = "cs_aberdeenpigfarmer", hash = 0xAB6C83B9, outfits = 1 }, + [`cs_aberdeensister`] = { model = "cs_aberdeensister", hash = 0x78F9C32F, outfits = 2 }, + [`cs_abigailroberts`] = { model = "cs_abigailroberts", hash = 0xEED46B48, outfits = 15 }, + [`cs_acrobat`] = { model = "cs_acrobat", hash = 0x582954CA, outfits = 1 }, + [`cs_adamgray`] = { model = "cs_adamgray", hash = 0x6A7308E5, outfits = 1 }, + [`cs_agnesdowd`] = { model = "cs_agnesdowd", hash = 0x0596AA7B, outfits = 4 }, + [`cs_albertcakeesquire`] = { model = "cs_albertcakeesquire", hash = 0x28E45219, outfits = 1 }, + [`cs_albertmason`] = { model = "cs_albertmason", hash = 0x1E9A4722, outfits = 2 }, + [`cs_andershelgerson`] = { model = "cs_andershelgerson", hash = 0x19ACF207, outfits = 4 }, + [`cs_angel`] = { model = "cs_angel", hash = 0x31DC5CD8, outfits = 1 }, + [`cs_angryhusband`] = { model = "cs_angryhusband", hash = 0x17F33DAA, outfits = 1 }, + [`cs_angusgeddes`] = { model = "cs_angusgeddes", hash = 0xF5FE5824, outfits = 2 }, + [`cs_ansel_atherton`] = { model = "cs_ansel_atherton", hash = 0x563E79E7, outfits = 1 }, + [`cs_antonyforemen`] = { model = "cs_antonyforemen", hash = 0xCADCA094, outfits = 2 }, + [`cs_archerfordham`] = { model = "cs_archerfordham", hash = 0x328BA546, outfits = 2 }, + [`cs_archibaldjameson`] = { model = "cs_archibaldjameson", hash = 0x7920404D, outfits = 2 }, + [`cs_archiedown`] = { model = "cs_archiedown", hash = 0xF8BAA439, outfits = 4 }, + [`cs_artappraiser`] = { model = "cs_artappraiser", hash = 0x5FA98D21, outfits = 1 }, + [`cs_asbdeputy_01`] = { model = "cs_asbdeputy_01", hash = 0x1B703333, outfits = 1 }, + [`cs_ashton`] = { model = "cs_ashton", hash = 0xB6AC4FC1, outfits = 1 }, + [`cs_balloonoperator`] = { model = "cs_balloonoperator", hash = 0x253EF371, outfits = 4 }, + [`cs_bandbassist`] = { model = "cs_bandbassist", hash = 0x3C3844C4, outfits = 1 }, + [`cs_banddrummer`] = { model = "cs_banddrummer", hash = 0x559E17B2, outfits = 1 }, + [`cs_bandpianist`] = { model = "cs_bandpianist", hash = 0x8EA36E09, outfits = 1 }, + [`cs_bandsinger`] = { model = "cs_bandsinger", hash = 0xF3178A28, outfits = 1 }, + [`cs_baptiste`] = { model = "cs_baptiste", hash = 0xF3C61748, outfits = 1 }, + [`cs_bartholomewbraithwaite`] = { model = "cs_bartholomewbraithwaite", hash = 0xFB614B3F, outfits = 2 }, + [`cs_bathingladies_01`] = { model = "cs_bathingladies_01", hash = 0xD29F17B9, outfits = 7 }, + [`cs_beatenupcaptain`] = { model = "cs_beatenupcaptain", hash = 0xFCAF1AFE, outfits = 1 }, + [`cs_beaugray`] = { model = "cs_beaugray", hash = 0x4B780F88, outfits = 3 }, + [`cs_billwilliamson`] = { model = "cs_billwilliamson", hash = 0x7B67B26A, outfits = 28 }, + [`cs_bivcoachdriver`] = { model = "cs_bivcoachdriver", hash = 0xDF333F2B, outfits = 1 }, + [`cs_blwphotographer`] = { model = "cs_blwphotographer", hash = 0x1AA22618, outfits = 1 }, + [`cs_blwwitness`] = { model = "cs_blwwitness", hash = 0x4D3B6EF2, outfits = 2 }, + [`cs_braithwaitebutler`] = { model = "cs_braithwaitebutler", hash = 0xDFE6F4B8, outfits = 1 }, + [`cs_braithwaitemaid`] = { model = "cs_braithwaitemaid", hash = 0xEB20D71E, outfits = 1 }, + [`cs_braithwaiteservant`] = { model = "cs_braithwaiteservant", hash = 0x1C76CA2D, outfits = 1 }, + [`cs_brendacrawley`] = { model = "cs_brendacrawley", hash = 0x0DBD6C20, outfits = 2 }, + [`cs_bronte`] = { model = "cs_bronte", hash = 0x90C94DCD, outfits = 4 }, + [`cs_brontesbutler`] = { model = "cs_brontesbutler", hash = 0xD18A3207, outfits = 1 }, + [`cs_brotherdorkins`] = { model = "cs_brotherdorkins", hash = 0x1CC577E5, outfits = 1 }, + [`cs_brynntildon`] = { model = "cs_brynntildon", hash = 0x0AF97379, outfits = 2 }, + [`cs_bubba`] = { model = "cs_bubba", hash = 0xD012554C, outfits = 2 }, + [`cs_cabaretmc`] = { model = "cs_cabaretmc", hash = 0x5411589F, outfits = 1 }, + [`cs_cajun`] = { model = "cs_cajun", hash = 0xF344B612, outfits = 1 }, + [`cs_cancanman_01`] = { model = "cs_cancanman_01", hash = 0x2D0C353F, outfits = 1 }, + [`cs_cancan_01`] = { model = "cs_cancan_01", hash = 0xD0C13881, outfits = 1 }, + [`cs_cancan_02`] = { model = "cs_cancan_02", hash = 0x2F5D75D4, outfits = 1 }, + [`cs_cancan_03`] = { model = "cs_cancan_03", hash = 0xBD791211, outfits = 1 }, + [`cs_cancan_04`] = { model = "cs_cancan_04", hash = 0x12DABCCF, outfits = 1 }, + [`cs_captainmonroe`] = { model = "cs_captainmonroe", hash = 0x4EB9996F, outfits = 1 }, + [`cs_cassidy`] = { model = "cs_cassidy", hash = 0x2E6B8F33, outfits = 3 }, + [`cs_catherinebraithwaite`] = { model = "cs_catherinebraithwaite", hash = 0x5262264D, outfits = 2 }, + [`cs_cattlerustler`] = { model = "cs_cattlerustler", hash = 0x5F1AD166, outfits = 1 }, + [`cs_cavehermit`] = { model = "cs_cavehermit", hash = 0x074B53CC, outfits = 1 }, + [`cs_chainprisoner_01`] = { model = "cs_chainprisoner_01", hash = 0x8451929D, outfits = 4 }, + [`cs_chainprisoner_02`] = { model = "cs_chainprisoner_02", hash = 0xF367F0C8, outfits = 4 }, + [`cs_charlessmith`] = { model = "cs_charlessmith", hash = 0x53DD98DF, outfits = 34 }, + [`cs_chelonianmaster`] = { model = "cs_chelonianmaster", hash = 0x34F835DE, outfits = 5 }, + [`cs_cigcardguy`] = { model = "cs_cigcardguy", hash = 0xD303ACD2, outfits = 1 }, + [`cs_clay`] = { model = "cs_clay", hash = 0xDBCB9834, outfits = 1 }, + [`cs_cleet`] = { model = "cs_cleet", hash = 0xE44D789F, outfits = 3 }, + [`cs_clive`] = { model = "cs_clive", hash = 0xFF292AA4, outfits = 1 }, + [`cs_colfavours`] = { model = "cs_colfavours", hash = 0x0E174AF7, outfits = 1 }, + [`cs_colmodriscoll`] = { model = "cs_colmodriscoll", hash = 0xCF10E769, outfits = 6 }, + [`cs_cooper`] = { model = "cs_cooper", hash = 0x72A3A733, outfits = 1 }, + [`cs_cornwalltrainconductor`] = { model = "cs_cornwalltrainconductor", hash = 0xC43EAC49, outfits = 1 }, + [`cs_crackpotinventor`] = { model = "cs_crackpotinventor", hash = 0x4BBF80D3, outfits = 5 }, + [`cs_crackpotrobot`] = { model = "cs_crackpotrobot", hash = 0x3BF7829E, outfits = 2 }, + [`cs_creepyoldlady`] = { model = "cs_creepyoldlady", hash = 0xC061B459, outfits = 1 }, + [`cs_creolecaptain`] = { model = "cs_creolecaptain", hash = 0xD163B76B, outfits = 1 }, + [`cs_creoledoctor`] = { model = "cs_creoledoctor", hash = 0x3B38C996, outfits = 1 }, + [`cs_creoleguy`] = { model = "cs_creoleguy", hash = 0x96C421E4, outfits = 1 }, + [`cs_dalemaroney`] = { model = "cs_dalemaroney", hash = 0x16C57A26, outfits = 2 }, + [`cs_daveycallender`] = { model = "cs_daveycallender", hash = 0x65A7F0E7, outfits = 1 }, + [`cs_davidgeddes`] = { model = "cs_davidgeddes", hash = 0x9EAF0DAE, outfits = 2 }, + [`cs_desmond`] = { model = "cs_desmond", hash = 0x66E939A1, outfits = 1 }, + [`cs_didsbury`] = { model = "cs_didsbury", hash = 0x8ACCB671, outfits = 1 }, + [`cs_dinoboneslady`] = { model = "cs_dinoboneslady", hash = 0x4AB3D571, outfits = 2 }, + [`cs_disguisedduster_01`] = { model = "cs_disguisedduster_01", hash = 0x32C998FD, outfits = 1 }, + [`cs_disguisedduster_02`] = { model = "cs_disguisedduster_02", hash = 0x5888E47B, outfits = 1 }, + [`cs_disguisedduster_03`] = { model = "cs_disguisedduster_03", hash = 0x4A3D47E4, outfits = 1 }, + [`cs_doroetheawicklow`] = { model = "cs_doroetheawicklow", hash = 0x0748A3DA, outfits = 3 }, + [`cs_drhiggins`] = { model = "cs_drhiggins", hash = 0xF45739BF, outfits = 1 }, + [`cs_drmalcolmmacintosh`] = { model = "cs_drmalcolmmacintosh", hash = 0xC8245F3C, outfits = 1 }, + [`cs_duncangeddes`] = { model = "cs_duncangeddes", hash = 0x9FC15494, outfits = 1 }, + [`cs_dusterinformant_01`] = { model = "cs_dusterinformant_01", hash = 0xA02C1ADB, outfits = 1 }, + [`cs_dutch`] = { model = "cs_dutch", hash = 0x73E82274, outfits = 31 }, + [`cs_eagleflies`] = { model = "cs_eagleflies", hash = 0x9660A42D, outfits = 10 }, + [`cs_edgarross`] = { model = "cs_edgarross", hash = 0xFD38D463, outfits = 2 }, + [`cs_edithdown`] = { model = "cs_edithdown", hash = 0xE52A1621, outfits = 7 }, + [`cs_edith_john`] = { model = "cs_edith_john", hash = 0xCB790850, outfits = 1 }, + [`cs_edmundlowry`] = { model = "cs_edmundlowry", hash = 0x58672CFB, outfits = 1 }, + [`cs_escapeartist`] = { model = "cs_escapeartist", hash = 0x88A17BE6, outfits = 5 }, + [`cs_escapeartistassistant`] = { model = "cs_escapeartistassistant", hash = 0x929C4793, outfits = 1 }, + [`cs_evelynmiller`] = { model = "cs_evelynmiller", hash = 0x2C4CA0A0, outfits = 3 }, + [`cs_exconfedinformant`] = { model = "cs_exconfedinformant", hash = 0xF0EAC712, outfits = 1 }, + [`cs_exconfedsleader_01`] = { model = "cs_exconfedsleader_01", hash = 0x11E95A0F, outfits = 1 }, + [`cs_exoticcollector`] = { model = "cs_exoticcollector", hash = 0x59D39598, outfits = 2 }, + [`cs_famousgunslinger_01`] = { model = "cs_famousgunslinger_01", hash = 0xFA274E38, outfits = 2 }, + [`cs_famousgunslinger_02`] = { model = "cs_famousgunslinger_02", hash = 0x504E7A85, outfits = 1 }, + [`cs_famousgunslinger_03`] = { model = "cs_famousgunslinger_03", hash = 0xDEBB9761, outfits = 1 }, + [`cs_famousgunslinger_04`] = { model = "cs_famousgunslinger_04", hash = 0x14F583D4, outfits = 1 }, + [`cs_famousgunslinger_05`] = { model = "cs_famousgunslinger_05", hash = 0x236820B9, outfits = 1 }, + [`cs_famousgunslinger_06`] = { model = "cs_famousgunslinger_06", hash = 0x79B7CD5F, outfits = 3 }, + [`cs_featherstonchambers`] = { model = "cs_featherstonchambers", hash = 0x8D374040, outfits = 1 }, + [`cs_featsofstrength`] = { model = "cs_featsofstrength", hash = 0x8D6618C3, outfits = 2 }, + [`cs_fightref`] = { model = "cs_fightref", hash = 0x53308B76, outfits = 1 }, + [`cs_fire_breather`] = { model = "cs_fire_breather", hash = 0xEADD5782, outfits = 4 }, + [`cs_fishcollector`] = { model = "cs_fishcollector", hash = 0x5A3FC29E, outfits = 4 }, + [`cs_forgivenhusband_01`] = { model = "cs_forgivenhusband_01", hash = 0x61F3D8F8, outfits = 1 }, + [`cs_forgivenwife_01`] = { model = "cs_forgivenwife_01", hash = 0xD36D9790, outfits = 1 }, + [`cs_formyartbigwoman`] = { model = "cs_formyartbigwoman", hash = 0xB4449A8A, outfits = 1 }, + [`cs_francis_sinclair`] = { model = "cs_francis_sinclair", hash = 0x9634D7B5, outfits = 1 }, + [`cs_frenchartist`] = { model = "cs_frenchartist", hash = 0xD809F182, outfits = 2 }, + [`cs_frenchman_01`] = { model = "cs_frenchman_01", hash = 0xF258BC07, outfits = 1 }, + [`cs_fussar`] = { model = "cs_fussar", hash = 0x8D883B70, outfits = 2 }, + [`cs_garethbraithwaite`] = { model = "cs_garethbraithwaite", hash = 0x968AB03C, outfits = 1 }, + [`cs_gavin`] = { model = "cs_gavin", hash = 0x4C5C60B2, outfits = 2 }, + [`cs_genstoryfemale`] = { model = "cs_genstoryfemale", hash = 0x3CCC99B1, outfits = 2 }, + [`cs_genstorymale`] = { model = "cs_genstorymale", hash = 0xD9E8B86A, outfits = 1 }, + [`cs_geraldbraithwaite`] = { model = "cs_geraldbraithwaite", hash = 0xBB35418E, outfits = 2 }, + [`cs_germandaughter`] = { model = "cs_germandaughter", hash = 0x39FD28AE, outfits = 1 }, + [`cs_germanfather`] = { model = "cs_germanfather", hash = 0x5205A246, outfits = 5 }, + [`cs_germanmother`] = { model = "cs_germanmother", hash = 0x771EA179, outfits = 3 }, + [`cs_germanson`] = { model = "cs_germanson", hash = 0x0D5EB39A, outfits = 2 }, + [`cs_gilbertknightly`] = { model = "cs_gilbertknightly", hash = 0xE1B35B43, outfits = 1 }, + [`cs_gloria`] = { model = "cs_gloria", hash = 0x9B5487C9, outfits = 1 }, + [`cs_grizzledjon`] = { model = "cs_grizzledjon", hash = 0xBDB43F31, outfits = 2 }, + [`cs_guidomartelli`] = { model = "cs_guidomartelli", hash = 0x9EDFC6EB, outfits = 3 }, + [`cs_hamish`] = { model = "cs_hamish", hash = 0x6D084810, outfits = 1 }, + [`cs_hectorfellowes`] = { model = "cs_hectorfellowes", hash = 0x6D8B4BB9, outfits = 3 }, + [`cs_henrilemiux`] = { model = "cs_henrilemiux", hash = 0x30324925, outfits = 2 }, + [`cs_herbalist`] = { model = "cs_herbalist", hash = 0x0C60474A, outfits = 1 }, + [`cs_hercule`] = { model = "cs_hercule", hash = 0x4C165ECF, outfits = 2 }, + [`cs_hestonjameson`] = { model = "cs_hestonjameson", hash = 0xA560451D, outfits = 2 }, + [`cs_hobartcrawley`] = { model = "cs_hobartcrawley", hash = 0xB0C337A3, outfits = 2 }, + [`cs_hoseamatthews`] = { model = "cs_hoseamatthews", hash = 0x490733E8, outfits = 13 }, + [`cs_iangray`] = { model = "cs_iangray", hash = 0x88094B37, outfits = 1 }, + [`cs_jackmarston`] = { model = "cs_jackmarston", hash = 0x71F7EE1B, outfits = 8 }, + [`cs_jackmarston_teen`] = { model = "cs_jackmarston_teen", hash = 0xDA5990BC, outfits = 10 }, + [`cs_jamie`] = { model = "cs_jamie", hash = 0x004C2AF4, outfits = 1 }, + [`cs_janson`] = { model = "cs_janson", hash = 0xD2E125B6, outfits = 1 }, + [`cs_javierescuella`] = { model = "cs_javierescuella", hash = 0x6DE3800C, outfits = 32 }, + [`cs_jeb`] = { model = "cs_jeb", hash = 0x5548F1E9, outfits = 3 }, + [`cs_jimcalloway`] = { model = "cs_jimcalloway", hash = 0x6C30159E, outfits = 1 }, + [`cs_jockgray`] = { model = "cs_jockgray", hash = 0x9DE34628, outfits = 1 }, + [`cs_joe`] = { model = "cs_joe", hash = 0xE569265F, outfits = 2 }, + [`cs_joebutler`] = { model = "cs_joebutler", hash = 0x54951099, outfits = 2 }, + [`cs_johnmarston`] = { model = "cs_johnmarston", hash = 0x05B6D06D, outfits = 31 }, + [`cs_johnthebaptisingmadman`] = { model = "cs_johnthebaptisingmadman", hash = 0x442FBDDC, outfits = 2 }, + [`cs_johnweathers`] = { model = "cs_johnweathers", hash = 0x7D357931, outfits = 1 }, + [`cs_josiahtrelawny`] = { model = "cs_josiahtrelawny", hash = 0x3BFD7D5D, outfits = 10 }, + [`cs_jules`] = { model = "cs_jules", hash = 0xB4F83876, outfits = 2 }, + [`cs_karen`] = { model = "cs_karen", hash = 0x9A3E29FB, outfits = 16 }, + [`cs_karensjohn_01`] = { model = "cs_karensjohn_01", hash = 0x013504F0, outfits = 2 }, + [`cs_kieran`] = { model = "cs_kieran", hash = 0x739BA0D6, outfits = 11 }, + [`cs_laramie`] = { model = "cs_laramie", hash = 0xBFD90AEA, outfits = 2 }, + [`cs_leighgray`] = { model = "cs_leighgray", hash = 0x97F8823A, outfits = 1 }, + [`cs_lemiuxassistant`] = { model = "cs_lemiuxassistant", hash = 0x3AEDE260, outfits = 2 }, + [`cs_lenny`] = { model = "cs_lenny", hash = 0xF8AE5F8D, outfits = 17 }, + [`cs_leon`] = { model = "cs_leon", hash = 0xC91ADF62, outfits = 3 }, + [`cs_leostrauss`] = { model = "cs_leostrauss", hash = 0xFA0312B3, outfits = 11 }, + [`cs_levisimon`] = { model = "cs_levisimon", hash = 0x4D24C49A, outfits = 1 }, + [`cs_leviticuscornwall`] = { model = "cs_leviticuscornwall", hash = 0x8A1FCA47, outfits = 1 }, + [`cs_lillianpowell`] = { model = "cs_lillianpowell", hash = 0x19686DFA, outfits = 3 }, + [`cs_lillymillet`] = { model = "cs_lillymillet", hash = 0x55C7D09F, outfits = 1 }, + [`cs_londonderryson`] = { model = "cs_londonderryson", hash = 0x4DBE35B8, outfits = 1 }, + [`cs_lucanapoli`] = { model = "cs_lucanapoli", hash = 0x77435EF1, outfits = 1 }, + [`cs_magnifico`] = { model = "cs_magnifico", hash = 0x5F5942DD, outfits = 2 }, + [`cs_mamawatson`] = { model = "cs_mamawatson", hash = 0x4B6ECAEF, outfits = 1 }, + [`cs_marshall_thurwell`] = { model = "cs_marshall_thurwell", hash = 0x3940877D, outfits = 1 }, + [`cs_marybeth`] = { model = "cs_marybeth", hash = 0x9B37429C, outfits = 8 }, + [`cs_marylinton`] = { model = "cs_marylinton", hash = 0x3EA5B5BC, outfits = 5 }, + [`cs_meditatingmonk`] = { model = "cs_meditatingmonk", hash = 0xF04DEE7E, outfits = 1 }, + [`cs_meredith`] = { model = "cs_meredith", hash = 0xC0321438, outfits = 1 }, + [`cs_meredithsmother`] = { model = "cs_meredithsmother", hash = 0x3112E4AC, outfits = 1 }, + [`cs_micahbell`] = { model = "cs_micahbell", hash = 0xDE361D65, outfits = 32 }, + [`cs_micahsnemesis`] = { model = "cs_micahsnemesis", hash = 0xE2D294AB, outfits = 1 }, + [`cs_mickey`] = { model = "cs_mickey", hash = 0xA1DFB431, outfits = 2 }, + [`cs_miltonandrews`] = { model = "cs_miltonandrews", hash = 0x01004B26, outfits = 2 }, + [`cs_missmarjorie`] = { model = "cs_missmarjorie", hash = 0x859CBAAC, outfits = 3 }, + [`cs_mixedracekid`] = { model = "cs_mixedracekid", hash = 0xFBBC94C6, outfits = 2 }, + [`cs_moira`] = { model = "cs_moira", hash = 0x9BAAB546, outfits = 1 }, + [`cs_mollyoshea`] = { model = "cs_mollyoshea", hash = 0xEB55C35E, outfits = 8 }, + [`cs_mp_alfredo_montez`] = { model = "cs_mp_alfredo_montez", hash = 0x4C4448BA, outfits = 4 }, + [`cs_mp_allison`] = { model = "cs_mp_allison", hash = 0x931F01E5, outfits = 1 }, + [`cs_mp_amos_lansing`] = { model = "cs_mp_amos_lansing", hash = 0x30E034CA, outfits = 1 }, + [`cs_mp_bonnie`] = { model = "cs_mp_bonnie", hash = 0x39456FEE, outfits = 1 }, + [`cs_mp_bountyhunter`] = { model = "cs_mp_bountyhunter", hash = 0x892944C5, outfits = 1 }, + [`cs_mp_camp_cook`] = { model = "cs_mp_camp_cook", hash = 0x9F7769F3, outfits = 3 }, + [`cs_mp_cliff`] = { model = "cs_mp_cliff", hash = 0xEADDA26C, outfits = 1 }, + [`cs_mp_cripps`] = { model = "cs_mp_cripps", hash = 0x1DD24709, outfits = 25 }, + [`cs_mp_grace_lancing`] = { model = "cs_mp_grace_lancing", hash = 0x2CDA4B15, outfits = 1 }, + [`cs_mp_hans`] = { model = "cs_mp_hans", hash = 0x893E6E25, outfits = 1 }, + [`cs_mp_henchman`] = { model = "cs_mp_henchman", hash = 0xDAB77DF1, outfits = 3 }, + [`cs_mp_horley`] = { model = "cs_mp_horley", hash = 0x4BFBF802, outfits = 1 }, + [`cs_mp_jeremiah_shaw`] = { model = "cs_mp_jeremiah_shaw", hash = 0x2EDEF9ED, outfits = 1 }, + [`cs_mp_jessica`] = { model = "cs_mp_jessica", hash = 0x6B759DBB, outfits = 3 }, + [`cs_mp_jorge_montez`] = { model = "cs_mp_jorge_montez", hash = 0x8BF81D72, outfits = 2 }, + [`cs_mp_langston`] = { model = "cs_mp_langston", hash = 0x9A00FB76, outfits = 1 }, + [`cs_mp_lee`] = { model = "cs_mp_lee", hash = 0x75DCACF2, outfits = 1 }, + [`cs_mp_mabel`] = { model = "cs_mp_mabel", hash = 0xB93CB429, outfits = 1 }, + [`cs_mp_marshall_davies`] = { model = "cs_mp_marshall_davies", hash = 0xE24327D2, outfits = 2 }, + [`cs_mp_moonshiner`] = { model = "cs_mp_moonshiner", hash = 0x65C51599, outfits = 1 }, + [`cs_mp_mradler`] = { model = "cs_mp_mradler", hash = 0xA3261C0D, outfits = 1 }, + [`cs_mp_oldman_jones`] = { model = "cs_mp_oldman_jones", hash = 0xE87FE55D, outfits = 2 }, + [`cs_mp_revenge_marshall`] = { model = "cs_mp_revenge_marshall", hash = 0x4549CCA0, outfits = 1 }, + [`cs_mp_samson_finch`] = { model = "cs_mp_samson_finch", hash = 0xE757DE29, outfits = 3 }, + [`cs_mp_shaky`] = { model = "cs_mp_shaky", hash = 0x9A3713AD, outfits = 1 }, + [`cs_mp_sherifffreeman`] = { model = "cs_mp_sherifffreeman", hash = 0x28AE1CF3, outfits = 1 }, + [`cs_mp_teddybrown`] = { model = "cs_mp_teddybrown", hash = 0xBB202735, outfits = 2 }, + [`cs_mp_terrance`] = { model = "cs_mp_terrance", hash = 0xB36FBE5E, outfits = 1 }, + [`cs_mp_the_boy`] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [`cs_mp_travellingsaleswoman`] = { model = "cs_mp_travellingsaleswoman", hash = 0xE20455E9, outfits = 1 }, + [`cs_mp_went`] = { model = "cs_mp_went", hash = 0xB496E3FB, outfits = 3 }, + [`cs_mradler`] = { model = "cs_mradler", hash = 0xAB270CC9, outfits = 3 }, + [`cs_mrdevon`] = { model = "cs_mrdevon", hash = 0xA89E5746, outfits = 1 }, + [`cs_mrlinton`] = { model = "cs_mrlinton", hash = 0xEFBFEDB1, outfits = 1 }, + [`cs_mrpearson`] = { model = "cs_mrpearson", hash = 0x3AAAB060, outfits = 9 }, + [`cs_mrsadler`] = { model = "cs_mrsadler", hash = 0x155E51DB, outfits = 22 }, + [`cs_mrsfellows`] = { model = "cs_mrsfellows", hash = 0x2AB79B76, outfits = 1 }, + [`cs_mrsgeddes`] = { model = "cs_mrsgeddes", hash = 0xEFC21975, outfits = 1 }, + [`cs_mrslondonderry`] = { model = "cs_mrslondonderry", hash = 0x5187C29B, outfits = 1 }, + [`cs_mrsweathers`] = { model = "cs_mrsweathers", hash = 0xFEFB81C0, outfits = 1 }, + [`cs_mrs_calhoun`] = { model = "cs_mrs_calhoun", hash = 0x4481AEDF, outfits = 1 }, + [`cs_mrs_sinclair`] = { model = "cs_mrs_sinclair", hash = 0x62C1389E, outfits = 1 }, + [`cs_mrwayne`] = { model = "cs_mrwayne", hash = 0x41A0B3F7, outfits = 1 }, + [`cs_mud2bigguy`] = { model = "cs_mud2bigguy", hash = 0x84490A12, outfits = 6 }, + [`cs_mysteriousstranger`] = { model = "cs_mysteriousstranger", hash = 0xF65EE3E1, outfits = 1 }, + [`cs_nbxdrunk`] = { model = "cs_nbxdrunk", hash = 0x753590C4, outfits = 2 }, + [`cs_nbxexecuted`] = { model = "cs_nbxexecuted", hash = 0x79AEBA08, outfits = 2 }, + [`cs_nbxpolicechiefformal`] = { model = "cs_nbxpolicechiefformal", hash = 0xC19649AA, outfits = 1 }, + [`cs_nbxreceptionist_01`] = { model = "cs_nbxreceptionist_01", hash = 0xC175E70A, outfits = 1 }, + [`cs_nial_whelan`] = { model = "cs_nial_whelan", hash = 0xB304BB4D, outfits = 1 }, + [`cs_nicholastimmins`] = { model = "cs_nicholastimmins", hash = 0x4995C0A5, outfits = 2 }, + [`cs_nils`] = { model = "cs_nils", hash = 0x031076F6, outfits = 1 }, + [`cs_norrisforsythe`] = { model = "cs_norrisforsythe", hash = 0xB4B65231, outfits = 2 }, + [`cs_obediahhinton`] = { model = "cs_obediahhinton", hash = 0x04156A73, outfits = 1 }, + [`cs_oddfellowspinhead`] = { model = "cs_oddfellowspinhead", hash = 0xA91215CD, outfits = 2 }, + [`cs_odprostitute`] = { model = "cs_odprostitute", hash = 0x62589584, outfits = 1 }, + [`cs_operasinger`] = { model = "cs_operasinger", hash = 0x5B00992C, outfits = 1 }, + [`cs_paytah`] = { model = "cs_paytah", hash = 0xBC537EB7, outfits = 4 }, + [`cs_penelopebraithwaite`] = { model = "cs_penelopebraithwaite", hash = 0x8617AB88, outfits = 2 }, + [`cs_pinkertongoon`] = { model = "cs_pinkertongoon", hash = 0xA06649D4, outfits = 1 }, + [`cs_poisonwellshaman`] = { model = "cs_poisonwellshaman", hash = 0x2E258627, outfits = 2 }, + [`cs_poorjoe`] = { model = "cs_poorjoe", hash = 0x19E97506, outfits = 1 }, + [`cs_priest_wedding`] = { model = "cs_priest_wedding", hash = 0xDD5F0343, outfits = 1 }, + [`cs_princessisabeau`] = { model = "cs_princessisabeau", hash = 0x89F94DED, outfits = 1 }, + [`cs_professorbell`] = { model = "cs_professorbell", hash = 0x7E1809E8, outfits = 1 }, + [`cs_rainsfall`] = { model = "cs_rainsfall", hash = 0x85FE1E48, outfits = 5 }, + [`cs_ramon_cortez`] = { model = "cs_ramon_cortez", hash = 0x7CF95C98, outfits = 1 }, + [`cs_reverendfortheringham`] = { model = "cs_reverendfortheringham", hash = 0x656E59CC, outfits = 2 }, + [`cs_revswanson`] = { model = "cs_revswanson", hash = 0x60713474, outfits = 7 }, + [`cs_rhodeputy_01`] = { model = "cs_rhodeputy_01", hash = 0xC7BB68D5, outfits = 1 }, + [`cs_rhodeputy_02`] = { model = "cs_rhodeputy_02", hash = 0x583389C7, outfits = 1 }, + [`cs_rhodesassistant`] = { model = "cs_rhodesassistant", hash = 0x774AB298, outfits = 1 }, + [`cs_rhodeskidnapvictim`] = { model = "cs_rhodeskidnapvictim", hash = 0x0F23E138, outfits = 1 }, + [`cs_rhodessaloonbouncer`] = { model = "cs_rhodessaloonbouncer", hash = 0x7FA4ED12, outfits = 1 }, + [`cs_ringmaster`] = { model = "cs_ringmaster", hash = 0x772D9802, outfits = 1 }, + [`cs_rockyseven_widow`] = { model = "cs_rockyseven_widow", hash = 0xF79A7EC2, outfits = 5 }, + [`cs_samaritan`] = { model = "cs_samaritan", hash = 0xF0297311, outfits = 1 }, + [`cs_scottgray`] = { model = "cs_scottgray", hash = 0xCF75E336, outfits = 1 }, + [`cs_sddoctor_01`] = { model = "cs_sddoctor_01", hash = 0xCF12BFF0, outfits = 1 }, + [`cs_sdpriest`] = { model = "cs_sdpriest", hash = 0xE4E66C41, outfits = 1 }, + [`cs_sdsaloondrunk_01`] = { model = "cs_sdsaloondrunk_01", hash = 0x6DC2F2F2, outfits = 1 }, + [`cs_sdstreetkidthief`] = { model = "cs_sdstreetkidthief", hash = 0x0F274F72, outfits = 1 }, + [`cs_sd_streetkid_01`] = { model = "cs_sd_streetkid_01", hash = 0xEEB2E5FD, outfits = 1 }, + [`cs_sd_streetkid_01a`] = { model = "cs_sd_streetkid_01a", hash = 0x678E7CA0, outfits = 1 }, + [`cs_sd_streetkid_01b`] = { model = "cs_sd_streetkid_01b", hash = 0x32541234, outfits = 1 }, + [`cs_sd_streetkid_02`] = { model = "cs_sd_streetkid_02", hash = 0x6EF76684, outfits = 1 }, + [`cs_sean`] = { model = "cs_sean", hash = 0xE0D7A2B2, outfits = 17 }, + [`cs_sherifffreeman`] = { model = "cs_sherifffreeman", hash = 0xC192917D, outfits = 2 }, + [`cs_sheriffowens`] = { model = "cs_sheriffowens", hash = 0xCEE81C27, outfits = 2 }, + [`cs_sistercalderon`] = { model = "cs_sistercalderon", hash = 0x839CCCAC, outfits = 1 }, + [`cs_slavecatcher`] = { model = "cs_slavecatcher", hash = 0xE9B80099, outfits = 1 }, + [`cs_soothsayer`] = { model = "cs_soothsayer", hash = 0x51C80EFD, outfits = 2 }, + [`cs_strawberryoutlaw_01`] = { model = "cs_strawberryoutlaw_01", hash = 0x4B7EAC47, outfits = 1 }, + [`cs_strawberryoutlaw_02`] = { model = "cs_strawberryoutlaw_02", hash = 0x99D4C8F2, outfits = 1 }, + [`cs_strdeputy_01`] = { model = "cs_strdeputy_01", hash = 0xA792AF18, outfits = 1 }, + [`cs_strdeputy_02`] = { model = "cs_strdeputy_02", hash = 0xDDD99BA5, outfits = 1 }, + [`cs_strsheriff_01`] = { model = "cs_strsheriff_01", hash = 0x83E7B7BB, outfits = 1 }, + [`cs_sunworshipper`] = { model = "cs_sunworshipper", hash = 0x196D5830, outfits = 1 }, + [`cs_susangrimshaw`] = { model = "cs_susangrimshaw", hash = 0x6509A069, outfits = 12 }, + [`cs_swampfreak`] = { model = "cs_swampfreak", hash = 0xA9A328D5, outfits = 1 }, + [`cs_swampweirdosonny`] = { model = "cs_swampweirdosonny", hash = 0x87A4C0B9, outfits = 3 }, + [`cs_sworddancer`] = { model = "cs_sworddancer", hash = 0x9654DDCF, outfits = 1 }, + [`cs_tavishgray`] = { model = "cs_tavishgray", hash = 0x53E86B71, outfits = 1 }, + [`cs_taxidermist`] = { model = "cs_taxidermist", hash = 0x21914E41, outfits = 1 }, + [`cs_theodorelevin`] = { model = "cs_theodorelevin", hash = 0x49644A6F, outfits = 2 }, + [`cs_thomasdown`] = { model = "cs_thomasdown", hash = 0x03DFFD04, outfits = 2 }, + [`cs_tigerhandler`] = { model = "cs_tigerhandler", hash = 0xD690782C, outfits = 1 }, + [`cs_tilly`] = { model = "cs_tilly", hash = 0x3DE6A545, outfits = 12 }, + [`cs_timothydonahue`] = { model = "cs_timothydonahue", hash = 0x8868C876, outfits = 2 }, + [`cs_tinyhermit`] = { model = "cs_tinyhermit", hash = 0x8853FF79, outfits = 2 }, + [`cs_tomdickens`] = { model = "cs_tomdickens", hash = 0xBABFD910, outfits = 3 }, + [`cs_towncrier`] = { model = "cs_towncrier", hash = 0x13458A93, outfits = 2 }, + [`cs_treasurehunter`] = { model = "cs_treasurehunter", hash = 0x3AF591E8, outfits = 1 }, + [`cs_twinbrother_01`] = { model = "cs_twinbrother_01", hash = 0x361005DD, outfits = 2 }, + [`cs_twinbrother_02`] = { model = "cs_twinbrother_02", hash = 0xA49B62BA, outfits = 2 }, + [`cs_twingroupie_01`] = { model = "cs_twingroupie_01", hash = 0xFD3C2696, outfits = 1 }, + [`cs_twingroupie_02`] = { model = "cs_twingroupie_02", hash = 0xEB8B8335, outfits = 1 }, + [`cs_uncle`] = { model = "cs_uncle", hash = 0xC63726DF, outfits = 12 }, + [`cs_unidusterjail_01`] = { model = "cs_unidusterjail_01", hash = 0x87EF0B8D, outfits = 1 }, + [`cs_valauctionboss_01`] = { model = "cs_valauctionboss_01", hash = 0x70BEBBCF, outfits = 2 }, + [`cs_valdeputy_01`] = { model = "cs_valdeputy_01", hash = 0x6C07EC33, outfits = 1 }, + [`cs_valprayingman`] = { model = "cs_valprayingman", hash = 0x4124A908, outfits = 1 }, + [`cs_valprostitute_01`] = { model = "cs_valprostitute_01", hash = 0x3A643444, outfits = 1 }, + [`cs_valprostitute_02`] = { model = "cs_valprostitute_02", hash = 0x2B769669, outfits = 1 }, + [`cs_valsheriff`] = { model = "cs_valsheriff", hash = 0x8FB23370, outfits = 2 }, + [`cs_vampire`] = { model = "cs_vampire", hash = 0xD95BCB7D, outfits = 1 }, + [`cs_vht_bathgirl`] = { model = "cs_vht_bathgirl", hash = 0x36781BAC, outfits = 1 }, + [`cs_wapitiboy`] = { model = "cs_wapitiboy", hash = 0xFB0A7382, outfits = 1 }, + [`cs_warvet`] = { model = "cs_warvet", hash = 0x9C0C8EE9, outfits = 3 }, + [`cs_watson_01`] = { model = "cs_watson_01", hash = 0x69439F09, outfits = 1 }, + [`cs_watson_02`] = { model = "cs_watson_02", hash = 0x8C16E4AF, outfits = 1 }, + [`cs_watson_03`] = { model = "cs_watson_03", hash = 0x44EFD66E, outfits = 1 }, + [`cs_welshfighter`] = { model = "cs_welshfighter", hash = 0x02E86DB1, outfits = 1 }, + [`cs_wintonholmes`] = { model = "cs_wintonholmes", hash = 0x03387076, outfits = 3 }, + [`cs_wrobel`] = { model = "cs_wrobel", hash = 0xBE52968B, outfits = 1 }, + [`u_f_m_bht_wife`] = { model = "u_f_m_bht_wife", hash = 0x512129F2, outfits = 1 }, + [`u_f_m_circuswagon_01`] = { model = "u_f_m_circuswagon_01", hash = 0x5F3EE4D3, outfits = 1 }, + [`u_f_m_emrdaughter_01`] = { model = "u_f_m_emrdaughter_01", hash = 0xD93F012D, outfits = 5 }, + [`u_f_m_fussar1lady_01`] = { model = "u_f_m_fussar1lady_01", hash = 0xB1DCC83F, outfits = 1 }, + [`u_f_m_htlwife_01`] = { model = "u_f_m_htlwife_01", hash = 0x76C45EF0, outfits = 1 }, + [`u_f_m_lagmother_01`] = { model = "u_f_m_lagmother_01", hash = 0x41ACC7BC, outfits = 9 }, + [`u_f_m_nbxresident_01`] = { model = "u_f_m_nbxresident_01", hash = 0xAF6FBD47, outfits = 2 }, + [`u_f_m_rhdnudewoman_01`] = { model = "u_f_m_rhdnudewoman_01", hash = 0x99372227, outfits = 1 }, + [`u_f_m_rkshomesteadtenant_01`] = { model = "u_f_m_rkshomesteadtenant_01", hash = 0xE96BC143, outfits = 1 }, + [`u_f_m_story_blackbelle_01`] = { model = "u_f_m_story_blackbelle_01", hash = 0xC71BF1D1, outfits = 1 }, + [`u_f_m_story_nightfolk_01`] = { model = "u_f_m_story_nightfolk_01", hash = 0x3C1CEAE0, outfits = 1 }, + [`u_f_m_tljbartender_01`] = { model = "u_f_m_tljbartender_01", hash = 0x0A219825, outfits = 9 }, + [`u_f_m_tumgeneralstoreowner_01`] = { model = "u_f_m_tumgeneralstoreowner_01", hash = 0xF1711637, outfits = 9 }, + [`u_f_m_valtownfolk_01`] = { model = "u_f_m_valtownfolk_01", hash = 0x8F549F46, outfits = 2 }, + [`u_f_m_valtownfolk_02`] = { model = "u_f_m_valtownfolk_02", hash = 0x7CC2FA23, outfits = 2 }, + [`u_f_m_vhtbartender_01`] = { model = "u_f_m_vhtbartender_01", hash = 0x3E471440, outfits = 7 }, + [`u_f_o_hermit_woman_01`] = { model = "u_f_o_hermit_woman_01", hash = 0xEDC0F72A, outfits = 1 }, + [`u_f_o_wtctownfolk_01`] = { model = "u_f_o_wtctownfolk_01", hash = 0xAE38220C, outfits = 1 }, + [`u_f_y_braithwaitessecret_01`] = { model = "u_f_y_braithwaitessecret_01", hash = 0x74DF3938, outfits = 2 }, + [`u_f_y_czphomesteaddaughter_01`] = { model = "u_f_y_czphomesteaddaughter_01", hash = 0xBCC8D35F, outfits = 1 }, + [`u_m_m_announcer_01`] = { model = "u_m_m_announcer_01", hash = 0x8C9F0E5D, outfits = 2 }, + [`u_m_m_apfdeadman_01`] = { model = "u_m_m_apfdeadman_01", hash = 0x0717C9F9, outfits = 1 }, + [`u_m_m_armgeneralstoreowner_01`] = { model = "u_m_m_armgeneralstoreowner_01", hash = 0xC5DF0CFE, outfits = 9 }, + [`u_m_m_armtrainstationworker_01`] = { model = "u_m_m_armtrainstationworker_01", hash = 0x2AB8094F, outfits = 9 }, + [`u_m_m_armundertaker_01`] = { model = "u_m_m_armundertaker_01", hash = 0x8E4FCB05, outfits = 9 }, + [`u_m_m_armytrn4_01`] = { model = "u_m_m_armytrn4_01", hash = 0x4F93F6BE, outfits = 1 }, + [`u_m_m_asbgunsmith_01`] = { model = "u_m_m_asbgunsmith_01", hash = 0x80D04451, outfits = 9 }, + [`u_m_m_asbprisoner_01`] = { model = "u_m_m_asbprisoner_01", hash = 0x0B8D495D, outfits = 2 }, + [`u_m_m_asbprisoner_02`] = { model = "u_m_m_asbprisoner_02", hash = 0x1DCEEDE0, outfits = 2 }, + [`u_m_m_bht_banditomine`] = { model = "u_m_m_bht_banditomine", hash = 0xC3E1BC18, outfits = 2 }, + [`u_m_m_bht_banditoshack`] = { model = "u_m_m_bht_banditoshack", hash = 0xC3B9DF14, outfits = 4 }, + [`u_m_m_bht_benedictallbright`] = { model = "u_m_m_bht_benedictallbright", hash = 0x2B0B3AC2, outfits = 1 }, + [`u_m_m_bht_blackwaterhunt`] = { model = "u_m_m_bht_blackwaterhunt", hash = 0xACBA905B, outfits = 1 }, + [`u_m_m_bht_exconfedcampreturn`] = { model = "u_m_m_bht_exconfedcampreturn", hash = 0x652E0944, outfits = 1 }, + [`u_m_m_bht_laramiesleeping`] = { model = "u_m_m_bht_laramiesleeping", hash = 0xCC013F0A, outfits = 1 }, + [`u_m_m_bht_lover`] = { model = "u_m_m_bht_lover", hash = 0xB7281910, outfits = 1 }, + [`u_m_m_bht_mineforeman`] = { model = "u_m_m_bht_mineforeman", hash = 0x60D033B6, outfits = 1 }, + [`u_m_m_bht_nathankirk`] = { model = "u_m_m_bht_nathankirk", hash = 0x22944F0D, outfits = 1 }, + [`u_m_m_bht_odriscolldrunk`] = { model = "u_m_m_bht_odriscolldrunk", hash = 0xC5BCD5E8, outfits = 1 }, + [`u_m_m_bht_odriscollmauled`] = { model = "u_m_m_bht_odriscollmauled", hash = 0xA2B8EFDC, outfits = 1 }, + [`u_m_m_bht_odriscollsleeping`] = { model = "u_m_m_bht_odriscollsleeping", hash = 0x2E6B2DB0, outfits = 1 }, + [`u_m_m_bht_oldman`] = { model = "u_m_m_bht_oldman", hash = 0xC82782C2, outfits = 1 }, + [`U_M_M_BHT_OUTLAWMAULED`] = { model = "U_M_M_BHT_OUTLAWMAULED", hash = 0x62600029, outfits = 1 }, + [`u_m_m_bht_saintdenissaloon`] = { model = "u_m_m_bht_saintdenissaloon", hash = 0x2AC6EC80, outfits = 1 }, + [`u_m_m_bht_shackescape`] = { model = "u_m_m_bht_shackescape", hash = 0x861F7616, outfits = 1 }, + [`u_m_m_bht_skinnerbrother`] = { model = "u_m_m_bht_skinnerbrother", hash = 0x728D7C04, outfits = 3 }, + [`u_m_m_bht_skinnersearch`] = { model = "u_m_m_bht_skinnersearch", hash = 0x8E18978A, outfits = 3 }, + [`u_m_m_bht_strawberryduel`] = { model = "u_m_m_bht_strawberryduel", hash = 0x66EAB43A, outfits = 1 }, + [`u_m_m_bivforeman_01`] = { model = "u_m_m_bivforeman_01", hash = 0xB8195626, outfits = 5 }, + [`u_m_m_blwtrainstationworker_01`] = { model = "u_m_m_blwtrainstationworker_01", hash = 0xD3A41495, outfits = 9 }, + [`u_m_m_bulletcatchvolunteer_01`] = { model = "u_m_m_bulletcatchvolunteer_01", hash = 0x143F8FAC, outfits = 2 }, + [`u_m_m_bwmstablehand_01`] = { model = "u_m_m_bwmstablehand_01", hash = 0xA27B73FE, outfits = 4 }, + [`u_m_m_cabaretfirehat_01`] = { model = "u_m_m_cabaretfirehat_01", hash = 0xF78F6717, outfits = 1 }, + [`u_m_m_cajhomestead_01`] = { model = "u_m_m_cajhomestead_01", hash = 0x675B5537, outfits = 1 }, + [`u_m_m_chelonianjumper_01`] = { model = "u_m_m_chelonianjumper_01", hash = 0xA2FA1725, outfits = 2 }, + [`u_m_m_chelonianjumper_02`] = { model = "u_m_m_chelonianjumper_02", hash = 0x913F73B0, outfits = 2 }, + [`u_m_m_chelonianjumper_03`] = { model = "u_m_m_chelonianjumper_03", hash = 0x7FDED0EF, outfits = 2 }, + [`u_m_m_chelonianjumper_04`] = { model = "u_m_m_chelonianjumper_04", hash = 0x5E1D8D6D, outfits = 2 }, + [`u_m_m_circuswagon_01`] = { model = "u_m_m_circuswagon_01", hash = 0x67604D20, outfits = 1 }, + [`u_m_m_cktmanager_01`] = { model = "u_m_m_cktmanager_01", hash = 0xC31F3D4D, outfits = 1 }, + [`u_m_m_cornwalldriver_01`] = { model = "u_m_m_cornwalldriver_01", hash = 0x4CB41AA6, outfits = 1 }, + [`u_m_m_crdhomesteadtenant_01`] = { model = "u_m_m_crdhomesteadtenant_01", hash = 0x32830A89, outfits = 2 }, + [`u_m_m_crdhomesteadtenant_02`] = { model = "u_m_m_crdhomesteadtenant_02", hash = 0x693D77FD, outfits = 2 }, + [`u_m_m_crdwitness_01`] = { model = "u_m_m_crdwitness_01", hash = 0xD8053806, outfits = 2 }, + [`u_m_m_creolecaptain_01`] = { model = "u_m_m_creolecaptain_01", hash = 0xDA855AC6, outfits = 1 }, + [`u_m_m_czphomesteadfather_01`] = { model = "u_m_m_czphomesteadfather_01", hash = 0x08C9910B, outfits = 1 }, + [`u_m_m_dorhomesteadhusband_01`] = { model = "u_m_m_dorhomesteadhusband_01", hash = 0xA9A4DB09, outfits = 1 }, + [`u_m_m_emrfarmhand_03`] = { model = "u_m_m_emrfarmhand_03", hash = 0xCA3F1D23, outfits = 2 }, + [`u_m_m_emrfather_01`] = { model = "u_m_m_emrfather_01", hash = 0xD08F9FEC, outfits = 5 }, + [`u_m_m_executioner_01`] = { model = "u_m_m_executioner_01", hash = 0x9955028D, outfits = 1 }, + [`u_m_m_fatduster_01`] = { model = "u_m_m_fatduster_01", hash = 0x0CD32813, outfits = 2 }, + [`u_m_m_finale2_aa_upperclass_01`] = { model = "u_m_m_finale2_aa_upperclass_01", hash = 0x28F7679D, outfits = 2 }, + [`u_m_m_galastringquartet_01`] = { model = "u_m_m_galastringquartet_01", hash = 0x0E8B4AB9, outfits = 2 }, + [`u_m_m_galastringquartet_02`] = { model = "u_m_m_galastringquartet_02", hash = 0x4418B5DF, outfits = 2 }, + [`u_m_m_galastringquartet_03`] = { model = "u_m_m_galastringquartet_03", hash = 0x313F102C, outfits = 2 }, + [`u_m_m_galastringquartet_04`] = { model = "u_m_m_galastringquartet_04", hash = 0x677D7CA8, outfits = 2 }, + [`u_m_m_gamdoorman_01`] = { model = "u_m_m_gamdoorman_01", hash = 0x51B75106, outfits = 2 }, + [`u_m_m_hhrrancher_01`] = { model = "u_m_m_hhrrancher_01", hash = 0xE5DA06C1, outfits = 2 }, + [`u_m_m_htlforeman_01`] = { model = "u_m_m_htlforeman_01", hash = 0x1E87BC0A, outfits = 5 }, + [`u_m_m_htlhusband_01`] = { model = "u_m_m_htlhusband_01", hash = 0xD1C51E05, outfits = 1 }, + [`u_m_m_htlrancherbounty_01`] = { model = "u_m_m_htlrancherbounty_01", hash = 0x9B004750, outfits = 2 }, + [`u_m_m_islbum_01`] = { model = "u_m_m_islbum_01", hash = 0x8F6606D5, outfits = 1 }, + [`u_m_m_lnsoutlaw_01`] = { model = "u_m_m_lnsoutlaw_01", hash = 0x1DEF8E8E, outfits = 2 }, + [`u_m_m_lnsoutlaw_02`] = { model = "u_m_m_lnsoutlaw_02", hash = 0x2BE12A71, outfits = 2 }, + [`u_m_m_lnsoutlaw_03`] = { model = "u_m_m_lnsoutlaw_03", hash = 0x68F3A489, outfits = 2 }, + [`u_m_m_lnsoutlaw_04`] = { model = "u_m_m_lnsoutlaw_04", hash = 0x3881C3AA, outfits = 2 }, + [`u_m_m_lnsworker_01`] = { model = "u_m_m_lnsworker_01", hash = 0xCC4D780E, outfits = 2 }, + [`u_m_m_lnsworker_02`] = { model = "u_m_m_lnsworker_02", hash = 0xB30E4590, outfits = 2 }, + [`u_m_m_lnsworker_03`] = { model = "u_m_m_lnsworker_03", hash = 0xA0EFA153, outfits = 2 }, + [`u_m_m_lnsworker_04`] = { model = "u_m_m_lnsworker_04", hash = 0x91BD02EE, outfits = 2 }, + [`u_m_m_lrshomesteadtenant_01`] = { model = "u_m_m_lrshomesteadtenant_01", hash = 0xF9EEA22E, outfits = 2 }, + [`u_m_m_mfrrancher_01`] = { model = "u_m_m_mfrrancher_01", hash = 0xF91B281F, outfits = 2 }, + [`u_m_m_mud3pimp_01`] = { model = "u_m_m_mud3pimp_01", hash = 0x6CD2AAFF, outfits = 2 }, + [`u_m_m_nbxbankerbounty_01`] = { model = "u_m_m_nbxbankerbounty_01", hash = 0x2E3911BA, outfits = 2 }, + [`u_m_m_nbxbartender_01`] = { model = "u_m_m_nbxbartender_01", hash = 0x1EE53C9C, outfits = 9 }, + [`u_m_m_nbxbartender_02`] = { model = "u_m_m_nbxbartender_02", hash = 0x0D1298F7, outfits = 9 }, + [`u_m_m_nbxboatticketseller_01`] = { model = "u_m_m_nbxboatticketseller_01", hash = 0xB752EDAF, outfits = 5 }, + [`u_m_m_nbxbronteasc_01`] = { model = "u_m_m_nbxbronteasc_01", hash = 0x42507F3E, outfits = 1 }, + [`u_m_m_nbxbrontegoon_01`] = { model = "u_m_m_nbxbrontegoon_01", hash = 0xB7F2F587, outfits = 1 }, + [`u_m_m_nbxbrontesecform_01`] = { model = "u_m_m_nbxbrontesecform_01", hash = 0xE8BCA87C, outfits = 1 }, + [`u_m_m_nbxgeneralstoreowner_01`] = { model = "u_m_m_nbxgeneralstoreowner_01", hash = 0x54123716, outfits = 9 }, + [`u_m_m_nbxgraverobber_01`] = { model = "u_m_m_nbxgraverobber_01", hash = 0xFC3D1E1B, outfits = 2 }, + [`u_m_m_nbxgraverobber_02`] = { model = "u_m_m_nbxgraverobber_02", hash = 0x7C7C9EA0, outfits = 2 }, + [`u_m_m_nbxgraverobber_03`] = { model = "u_m_m_nbxgraverobber_03", hash = 0x8FBDC522, outfits = 2 }, + [`u_m_m_nbxgraverobber_04`] = { model = "u_m_m_nbxgraverobber_04", hash = 0x3DB8A119, outfits = 2 }, + [`u_m_m_nbxgraverobber_05`] = { model = "u_m_m_nbxgraverobber_05", hash = 0x33EE8D85, outfits = 2 }, + [`u_m_m_nbxgunsmith_01`] = { model = "u_m_m_nbxgunsmith_01", hash = 0x2A66EA55, outfits = 9 }, + [`u_m_m_nbxliveryworker_01`] = { model = "u_m_m_nbxliveryworker_01", hash = 0x7A53E763, outfits = 2 }, + [`u_m_m_nbxmusician_01`] = { model = "u_m_m_nbxmusician_01", hash = 0x668685E6, outfits = 2 }, + [`u_m_m_nbxpriest_01`] = { model = "u_m_m_nbxpriest_01", hash = 0xDD900EBD, outfits = 1 }, + [`u_m_m_nbxresident_01`] = { model = "u_m_m_nbxresident_01", hash = 0x6BE0A02F, outfits = 2 }, + [`u_m_m_nbxresident_02`] = { model = "u_m_m_nbxresident_02", hash = 0x4BB85FDB, outfits = 2 }, + [`u_m_m_nbxresident_03`] = { model = "u_m_m_nbxresident_03", hash = 0x597DFB66, outfits = 2 }, + [`u_m_m_nbxresident_04`] = { model = "u_m_m_nbxresident_04", hash = 0x271C96A4, outfits = 2 }, + [`u_m_m_nbxriverboatpitboss_01`] = { model = "u_m_m_nbxriverboatpitboss_01", hash = 0xE5C80F77, outfits = 2 }, + [`u_m_m_nbxriverboattarget_01`] = { model = "u_m_m_nbxriverboattarget_01", hash = 0x16B38C17, outfits = 2 }, + [`u_m_m_nbxshadydealer_01`] = { model = "u_m_m_nbxshadydealer_01", hash = 0x1B2769D0, outfits = 9 }, + [`u_m_m_nbxskiffdriver_01`] = { model = "u_m_m_nbxskiffdriver_01", hash = 0xD43AE828, outfits = 2 }, + [`u_m_m_oddfellowparticipant_01`] = { model = "u_m_m_oddfellowparticipant_01", hash = 0x42352E08, outfits = 2 }, + [`u_m_m_odriscollbrawler_01`] = { model = "u_m_m_odriscollbrawler_01", hash = 0xB6C0F55D, outfits = 3 }, + [`u_m_m_orpguard_01`] = { model = "u_m_m_orpguard_01", hash = 0xC4162DA7, outfits = 1 }, + [`u_m_m_racforeman_01`] = { model = "u_m_m_racforeman_01", hash = 0xE0448D54, outfits = 5 }, + [`u_m_m_racquartermaster_01`] = { model = "u_m_m_racquartermaster_01", hash = 0x6DE7AD0F, outfits = 2 }, + [`u_m_m_rhdbackupdeputy_01`] = { model = "u_m_m_rhdbackupdeputy_01", hash = 0x8E764EA7, outfits = 2 }, + [`u_m_m_rhdbackupdeputy_02`] = { model = "u_m_m_rhdbackupdeputy_02", hash = 0x7BABA912, outfits = 2 }, + [`u_m_m_rhdbartender_01`] = { model = "u_m_m_rhdbartender_01", hash = 0x23DA7E9F, outfits = 7 }, + [`u_m_m_rhddoctor_01`] = { model = "u_m_m_rhddoctor_01", hash = 0x2A37903E, outfits = 1 }, + [`u_m_m_rhdfiddleplayer_01`] = { model = "u_m_m_rhdfiddleplayer_01", hash = 0x3A9FCA38, outfits = 2 }, + [`u_m_m_rhdgenstoreowner_01`] = { model = "u_m_m_rhdgenstoreowner_01", hash = 0x9B9EF6B7, outfits = 9 }, + [`u_m_m_rhdgenstoreowner_02`] = { model = "u_m_m_rhdgenstoreowner_02", hash = 0x893751E8, outfits = 9 }, + [`u_m_m_rhdgunsmith_01`] = { model = "u_m_m_rhdgunsmith_01", hash = 0xADDA73CE, outfits = 9 }, + [`u_m_m_rhdpreacher_01`] = { model = "u_m_m_rhdpreacher_01", hash = 0x06B0DE6B, outfits = 1 }, + [`u_m_m_rhdsheriff_01`] = { model = "u_m_m_rhdsheriff_01", hash = 0xC76BB57A, outfits = 5 }, + [`u_m_m_rhdtrainstationworker_01`] = { model = "u_m_m_rhdtrainstationworker_01", hash = 0x3F0EC349, outfits = 5 }, + [`u_m_m_rhdundertaker_01`] = { model = "u_m_m_rhdundertaker_01", hash = 0x2158A563, outfits = 1 }, + [`u_m_m_riodonkeyrider_01`] = { model = "u_m_m_riodonkeyrider_01", hash = 0x6376F2EE, outfits = 1 }, + [`u_m_m_rkfrancher_01`] = { model = "u_m_m_rkfrancher_01", hash = 0x3B85803C, outfits = 1 }, + [`u_m_m_rkrdonkeyrider_01`] = { model = "u_m_m_rkrdonkeyrider_01", hash = 0xA558BFEF, outfits = 1 }, + [`u_m_m_rwfrancher_01`] = { model = "u_m_m_rwfrancher_01", hash = 0xA209CB2A, outfits = 1 }, + [`u_m_m_sdbankguard_01`] = { model = "u_m_m_sdbankguard_01", hash = 0x128CDD40, outfits = 4 }, + [`u_m_m_sdcustomvendor_01`] = { model = "u_m_m_sdcustomvendor_01", hash = 0x400E34A9, outfits = 9 }, + [`u_m_m_sdexoticsshopkeeper_01`] = { model = "u_m_m_sdexoticsshopkeeper_01", hash = 0xF1029EA3, outfits = 10 }, + [`u_m_m_sdphotographer_01`] = { model = "u_m_m_sdphotographer_01", hash = 0xBE9D77E1, outfits = 2 }, + [`u_m_m_sdpolicechief_01`] = { model = "u_m_m_sdpolicechief_01", hash = 0x5C99E1C2, outfits = 5 }, + [`u_m_m_sdstrongwomanassistant_01`] = { model = "u_m_m_sdstrongwomanassistant_01", hash = 0xCCB89BB7, outfits = 1 }, + [`u_m_m_sdtrapper_01`] = { model = "u_m_m_sdtrapper_01", hash = 0x23317990, outfits = 1 }, + [`u_m_m_sdwealthytraveller_01`] = { model = "u_m_m_sdwealthytraveller_01", hash = 0x3FEE3412, outfits = 5 }, + [`u_m_m_shackserialkiller_01`] = { model = "u_m_m_shackserialkiller_01", hash = 0x62AD6C6C, outfits = 1 }, + [`u_m_m_shacktwin_01`] = { model = "u_m_m_shacktwin_01", hash = 0x7D796588, outfits = 2 }, + [`u_m_m_shacktwin_02`] = { model = "u_m_m_shacktwin_02", hash = 0x7A2F5EF4, outfits = 2 }, + [`u_m_m_skinnyoldguy_01`] = { model = "u_m_m_skinnyoldguy_01", hash = 0x08534AF0, outfits = 1 }, + [`u_m_m_story_armadillo_01`] = { model = "u_m_m_story_armadillo_01", hash = 0x199B5D2F, outfits = 1 }, + [`u_m_m_story_cannibal_01`] = { model = "u_m_m_story_cannibal_01", hash = 0x019AAC14, outfits = 1 }, + [`u_m_m_story_chelonian_01`] = { model = "u_m_m_story_chelonian_01", hash = 0xA8FDA7E1, outfits = 1 }, + [`u_m_m_story_copperhead_01`] = { model = "u_m_m_story_copperhead_01", hash = 0x2E663310, outfits = 1 }, + [`u_m_m_story_creeper_01`] = { model = "u_m_m_story_creeper_01", hash = 0x4FFBC75C, outfits = 1 }, + [`u_m_m_story_emeraldranch_01`] = { model = "u_m_m_story_emeraldranch_01", hash = 0x7E80C06D, outfits = 1 }, + [`u_m_m_story_hunter_01`] = { model = "u_m_m_story_hunter_01", hash = 0x65B3401E, outfits = 1 }, + [`u_m_m_story_manzanita_01`] = { model = "u_m_m_story_manzanita_01", hash = 0x82D7E004, outfits = 2 }, + [`u_m_m_story_murfee_01`] = { model = "u_m_m_story_murfee_01", hash = 0x474080E1, outfits = 1 }, + [`u_m_m_story_pigfarm_01`] = { model = "u_m_m_story_pigfarm_01", hash = 0xD6CDC88D, outfits = 1 }, + [`u_m_m_story_princess_01`] = { model = "u_m_m_story_princess_01", hash = 0x42F42CBF, outfits = 1 }, + [`u_m_m_story_redharlow_01`] = { model = "u_m_m_story_redharlow_01", hash = 0x82212B0D, outfits = 1 }, + [`u_m_m_story_rhodes_01`] = { model = "u_m_m_story_rhodes_01", hash = 0xEDDB93E8, outfits = 1 }, + [`u_m_m_story_sdstatue_01`] = { model = "u_m_m_story_sdstatue_01", hash = 0xCFA8C361, outfits = 1 }, + [`u_m_m_story_spectre_01`] = { model = "u_m_m_story_spectre_01", hash = 0x0CF1DA06, outfits = 1 }, + [`u_m_m_story_treasure_01`] = { model = "u_m_m_story_treasure_01", hash = 0x54A21893, outfits = 1 }, + [`u_m_m_story_tumbleweed_01`] = { model = "u_m_m_story_tumbleweed_01", hash = 0x628EBD88, outfits = 1 }, + [`u_m_m_story_valentine_01`] = { model = "u_m_m_story_valentine_01", hash = 0x565FF75B, outfits = 1 }, + [`u_m_m_strfreightstationowner_01`] = { model = "u_m_m_strfreightstationowner_01", hash = 0x1173F849, outfits = 5 }, + [`u_m_m_strgenstoreowner_01`] = { model = "u_m_m_strgenstoreowner_01", hash = 0x104FE6B3, outfits = 9 }, + [`u_m_m_strsherriff_01`] = { model = "u_m_m_strsherriff_01", hash = 0x77EEF186, outfits = 5 }, + [`u_m_m_strwelcomecenter_01`] = { model = "u_m_m_strwelcomecenter_01", hash = 0x4128755F, outfits = 9 }, + [`u_m_m_tumbartender_01`] = { model = "u_m_m_tumbartender_01", hash = 0xD31B229F, outfits = 7 }, + [`u_m_m_tumbutcher_01`] = { model = "u_m_m_tumbutcher_01", hash = 0x9168B88B, outfits = 9 }, + [`u_m_m_tumgunsmith_01`] = { model = "u_m_m_tumgunsmith_01", hash = 0x79FB001C, outfits = 9 }, + [`u_m_m_tumtrainstationworker_01`] = { model = "u_m_m_tumtrainstationworker_01", hash = 0x6712F25D, outfits = 1 }, + [`u_m_m_unibountyhunter_01`] = { model = "u_m_m_unibountyhunter_01", hash = 0x7A5AC236, outfits = 1 }, + [`u_m_m_unibountyhunter_02`] = { model = "u_m_m_unibountyhunter_02", hash = 0xB0962EB0, outfits = 1 }, + [`u_m_m_unidusterhenchman_01`] = { model = "u_m_m_unidusterhenchman_01", hash = 0x0EBB9BCE, outfits = 2 }, + [`u_m_m_unidusterhenchman_02`] = { model = "u_m_m_unidusterhenchman_02", hash = 0xE302445C, outfits = 2 }, + [`u_m_m_unidusterhenchman_03`] = { model = "u_m_m_unidusterhenchman_03", hash = 0xD1B321BE, outfits = 2 }, + [`u_m_m_unidusterleader_01`] = { model = "u_m_m_unidusterleader_01", hash = 0x3C9E3212, outfits = 2 }, + [`u_m_m_uniexconfedsbounty_01`] = { model = "u_m_m_uniexconfedsbounty_01", hash = 0x1BC9C8FC, outfits = 2 }, + [`u_m_m_unionleader_01`] = { model = "u_m_m_unionleader_01", hash = 0x5FC8B319, outfits = 2 }, + [`u_m_m_unionleader_02`] = { model = "u_m_m_unionleader_02", hash = 0x6D1BCDBF, outfits = 2 }, + [`u_m_m_unipeepingtom_01`] = { model = "u_m_m_unipeepingtom_01", hash = 0x5E1148BF, outfits = 2 }, + [`u_m_m_valauctionforman_01`] = { model = "u_m_m_valauctionforman_01", hash = 0x075398B9, outfits = 7 }, + [`u_m_m_valauctionforman_02`] = { model = "u_m_m_valauctionforman_02", hash = 0x4EDB27C7, outfits = 6 }, + [`u_m_m_valbarber_01`] = { model = "u_m_m_valbarber_01", hash = 0xD371AE64, outfits = 9 }, + [`u_m_m_valbartender_01`] = { model = "u_m_m_valbartender_01", hash = 0xB733CF0F, outfits = 9 }, + [`u_m_m_valbeartrap_01`] = { model = "u_m_m_valbeartrap_01", hash = 0x69019A68, outfits = 5 }, + [`u_m_m_valbutcher_01`] = { model = "u_m_m_valbutcher_01", hash = 0x23E0698B, outfits = 9 }, + [`u_m_m_valdoctor_01`] = { model = "u_m_m_valdoctor_01", hash = 0x71545DA5, outfits = 9 }, + [`u_m_m_valgenstoreowner_01`] = { model = "u_m_m_valgenstoreowner_01", hash = 0x9B3E551B, outfits = 9 }, + [`u_m_m_valgunsmith_01`] = { model = "u_m_m_valgunsmith_01", hash = 0xBBC5D27F, outfits = 9 }, + [`u_m_m_valhotelowner_01`] = { model = "u_m_m_valhotelowner_01", hash = 0xB66F12F2, outfits = 9 }, + [`u_m_m_valpokerplayer_01`] = { model = "u_m_m_valpokerplayer_01", hash = 0xD6B24482, outfits = 5 }, + [`u_m_m_valpokerplayer_02`] = { model = "u_m_m_valpokerplayer_02", hash = 0x03969E2E, outfits = 5 }, + [`u_m_m_valpoopingman_01`] = { model = "u_m_m_valpoopingman_01", hash = 0x16681434, outfits = 4 }, + [`u_m_m_valsheriff_01`] = { model = "u_m_m_valsheriff_01", hash = 0x93B09465, outfits = 5 }, + [`u_m_m_valtheman_01`] = { model = "u_m_m_valtheman_01", hash = 0xD0D41B25, outfits = 9 }, + [`u_m_m_valtownfolk_01`] = { model = "u_m_m_valtownfolk_01", hash = 0xC4CC5EE6, outfits = 4 }, + [`u_m_m_valtownfolk_02`] = { model = "u_m_m_valtownfolk_02", hash = 0xA5F92140, outfits = 4 }, + [`u_m_m_vhtstationclerk_01`] = { model = "u_m_m_vhtstationclerk_01", hash = 0xC606A445, outfits = 9 }, + [`u_m_m_walgeneralstoreowner_01`] = { model = "u_m_m_walgeneralstoreowner_01", hash = 0x42DD47BF, outfits = 5 }, + [`u_m_m_wapofficial_01`] = { model = "u_m_m_wapofficial_01", hash = 0x5EDC8972, outfits = 2 }, + [`u_m_m_wtccowboy_04`] = { model = "u_m_m_wtccowboy_04", hash = 0xDF9051C0, outfits = 2 }, + [`u_m_o_armbartender_01`] = { model = "u_m_o_armbartender_01", hash = 0xDD6D1B34, outfits = 9 }, + [`u_m_o_asbsheriff_01`] = { model = "u_m_o_asbsheriff_01", hash = 0x1CEF1945, outfits = 5 }, + [`u_m_o_bht_docwormwood`] = { model = "u_m_o_bht_docwormwood", hash = 0xA0325B4E, outfits = 2 }, + [`u_m_o_blwbartender_01`] = { model = "u_m_o_blwbartender_01", hash = 0x8E81C857, outfits = 9 }, + [`u_m_o_blwgeneralstoreowner_01`] = { model = "u_m_o_blwgeneralstoreowner_01", hash = 0x6958B082, outfits = 9 }, + [`u_m_o_blwphotographer_01`] = { model = "u_m_o_blwphotographer_01", hash = 0x3B99237E, outfits = 9 }, + [`u_m_o_blwpolicechief_01`] = { model = "u_m_o_blwpolicechief_01", hash = 0x67FB6A21, outfits = 7 }, + [`u_m_o_cajhomestead_01`] = { model = "u_m_o_cajhomestead_01", hash = 0x10E06765, outfits = 1 }, + [`u_m_o_cmrcivilwarcommando_01`] = { model = "u_m_o_cmrcivilwarcommando_01", hash = 0xECA3D50D, outfits = 2 }, + [`u_m_o_mapwiseoldman_01`] = { model = "u_m_o_mapwiseoldman_01", hash = 0xDE86823E, outfits = 5 }, + [`u_m_o_oldcajun_01`] = { model = "u_m_o_oldcajun_01", hash = 0xAFFEF16E, outfits = 1 }, + [`u_m_o_pshrancher_01`] = { model = "u_m_o_pshrancher_01", hash = 0xDD1C10E8, outfits = 5 }, + [`u_m_o_rigtrainstationworker_01`] = { model = "u_m_o_rigtrainstationworker_01", hash = 0xABC22ABF, outfits = 5 }, + [`u_m_o_valbartender_01`] = { model = "u_m_o_valbartender_01", hash = 0x904CC489, outfits = 8 }, + [`u_m_o_vhtexoticshopkeeper_01`] = { model = "u_m_o_vhtexoticshopkeeper_01", hash = 0xCE72526E, outfits = 9 }, + [`u_m_y_cajhomestead_01`] = { model = "u_m_y_cajhomestead_01", hash = 0x1B8FD0E7, outfits = 1 }, + [`u_m_y_czphomesteadson_01`] = { model = "u_m_y_czphomesteadson_01", hash = 0x1B6F073A, outfits = 1 }, + [`u_m_y_czphomesteadson_02`] = { model = "u_m_y_czphomesteadson_02", hash = 0x0530DABA, outfits = 1 }, + [`u_m_y_czphomesteadson_03`] = { model = "u_m_y_czphomesteadson_03", hash = 0xAE09AC6D, outfits = 1 }, + [`u_m_y_czphomesteadson_04`] = { model = "u_m_y_czphomesteadson_04", hash = 0x9992837F, outfits = 1 }, + [`u_m_y_czphomesteadson_05`] = { model = "u_m_y_czphomesteadson_05", hash = 0xD23774C8, outfits = 1 }, + [`u_m_y_duellistbounty_01`] = { model = "u_m_y_duellistbounty_01", hash = 0x4152ADFB, outfits = 2 }, + [`u_m_y_emrson_01`] = { model = "u_m_y_emrson_01", hash = 0x559BD1B7, outfits = 4 }, + [`u_m_y_htlworker_01`] = { model = "u_m_y_htlworker_01", hash = 0xB60F7B1B, outfits = 5 }, + [`u_m_y_htlworker_02`] = { model = "u_m_y_htlworker_02", hash = 0xC8661FCC, outfits = 5 }, + [`u_m_y_shackstarvingkid_01`] = { model = "u_m_y_shackstarvingkid_01", hash = 0xBC5CFF49, outfits = 3 }, + [`cs_mp_agent_hixon`] = { model = "cs_mp_agent_hixon", hash = 0x5087BED1, outfits = 2 }, + [`cs_mp_dannylee`] = { model = "cs_mp_dannylee", hash = 0x81C2FD57, outfits = 2 }, + [`cs_mp_gus_macmillan`] = { model = "cs_mp_gus_macmillan", hash = 0x024BE4BE, outfits = 2 }, + [`cs_mp_harriet_davenport`] = { model = "cs_mp_harriet_davenport", hash = 0x9BD92566, outfits = 1 }, + [`cs_mp_lem`] = { model = "cs_mp_lem", hash = 0x048FCA26, outfits = 3 }, + [`cs_mp_maggie`] = { model = "cs_mp_maggie", hash = 0xF0DA3AE5, outfits = 2 }, + [`cs_mp_seth`] = { model = "cs_mp_seth", hash = 0x7666911B, outfits = 1 }, + [`cs_mp_the_boy`] = { model = "cs_mp_the_boy", hash = 0x04B479C0, outfits = 2 }, + [`cs_mp_bessie_adair`] = { model = "cs_mp_bessie_adair", hash = 0x9A755448, outfits = 1 }, + [`CS_MP_POLICECHIEF_LAMBERT`] = { model = "CS_MP_POLICECHIEF_LAMBERT", hash = 0xAADC8018, outfits = 1 }, + [`CS_MP_SENATOR_RICARD`] = { model = "CS_MP_SENATOR_RICARD", hash = 0xBE651417, outfits = 2 }, } return { diff --git a/shared/data/vehicles.lua b/shared/data/vehicles.lua index b75e83a..4084ef5 100644 --- a/shared/data/vehicles.lua +++ b/shared/data/vehicles.lua @@ -4,254 +4,254 @@ local Vehicles = {} -- Vehicle categories are grouped heuristically. Vehicles.All = { - [0xC8EF11A0] = { model = "armoredCar01x", hash = 0xC8EF11A0 }, - [0x22C976E4] = { model = "armoredCar03x", hash = 0x22C976E4 }, - [0x276DFE5E] = { model = "ArmySupplyWagon", hash = 0x276DFE5E }, - [0x876E6EB7] = { model = "boatsteam02x", hash = 0x876E6EB7 }, - [0x861D4C6A] = { model = "bountywagon01x", hash = 0x861D4C6A }, - [0x8979274C] = { model = "breach_cannon", hash = 0x8979274C }, - [0xB3C45542] = { model = "buggy01", hash = 0xB3C45542 }, - [0xBE696A8C] = { model = "buggy02", hash = 0xBE696A8C }, - [0x91068FC7] = { model = "buggy03", hash = 0x91068FC7 }, - [0x8C0224C6] = { model = "caboose01x", hash = 0x8C0224C6 }, - [0x578D6513] = { model = "canoe", hash = 0x578D6513 }, - [0xD84D4530] = { model = "canoeTreeTrunk", hash = 0xD84D4530 }, - [0xCEDED274] = { model = "cart01", hash = 0xCEDED274 }, - [0x85943FE0] = { model = "cart02", hash = 0x85943FE0 }, - [0xAFB2141B] = { model = "cart03", hash = 0xAFB2141B }, - [0xDDFBF0AE] = { model = "cart04", hash = 0xDDFBF0AE }, - [0x1656E157] = { model = "cart05", hash = 0x1656E157 }, - [0x0D10CECB] = { model = "cart06", hash = 0x0D10CECB }, - [0x02D03A4A] = { model = "cart07", hash = 0x02D03A4A }, - [0xE98507B4] = { model = "cart08", hash = 0xE98507B4 }, - [0x5F27ED25] = { model = "chuckwagon000x", hash = 0x5F27ED25 }, - [0x69897B5C] = { model = "chuckwagon002x", hash = 0x69897B5C }, - [0x68F6F8F3] = { model = "coach2", hash = 0x68F6F8F3 }, - [0xF775C720] = { model = "coach3_cutscene", hash = 0xF775C720 }, - [0xF7D816B7] = { model = "coach3", hash = 0xF7D816B7 }, - [0x0598B238] = { model = "coach4", hash = 0x0598B238 }, - [0x9324CD4E] = { model = "coach5", hash = 0x9324CD4E }, - [0xA3EC6EDD] = { model = "coach6", hash = 0xA3EC6EDD }, - [0x4E018632] = { model = "coalHopper01x", hash = 0x4E018632 }, - [0x61EC29C0] = { model = "coal_wagon", hash = 0x61EC29C0 }, - [0xF53E4390] = { model = "gatchuck_2", hash = 0xF53E4390 }, - [0x0538529A] = { model = "gatchuck", hash = 0x0538529A }, - [0x1EEBDBE5] = { model = "gatling_gun", hash = 0x1EEBDBE5 }, - [0x2C3B0296] = { model = "gatlingMaxim02", hash = 0x2C3B0296 }, - [0x20925D76] = { model = "GhostTrainCaboose", hash = 0x20925D76 }, - [0x1C10E9C9] = { model = "GhostTrainCoalCar", hash = 0x1C10E9C9 }, - [0x7724C788] = { model = "GhostTrainPassenger", hash = 0x7724C788 }, - [0x09D4E809] = { model = "GhostTrainSteamer", hash = 0x09D4E809 }, - [0x590420FE] = { model = "handcart", hash = 0x590420FE }, - [0x75BDDBD6] = { model = "horseBoat", hash = 0x75BDDBD6 }, - [0x5EB0BAE0] = { model = "hotAirBalloon01", hash = 0x5EB0BAE0 }, - [0x2CA8E7B6] = { model = "hotchkiss_cannon", hash = 0x2CA8E7B6 }, - [0x9AC2F93A] = { model = "huntercart01", hash = 0x9AC2F93A }, - [0xEF91537F] = { model = "keelboat", hash = 0xEF91537F }, - [0xE89274F1] = { model = "logwagon2", hash = 0xE89274F1 }, - [0x9A308177] = { model = "logwagon", hash = 0x9A308177 }, - [0x39584F5A] = { model = "midlandboxcar05x", hash = 0x39584F5A }, - [0xECD7E90E] = { model = "midlandrefrigeratorcar", hash = 0xECD7E90E }, - [0xC40B0265] = { model = "mineCart01x", hash = 0xC40B0265 }, - [0xDF86C25A] = { model = "northcoalcar01x", hash = 0xDF86C25A }, - [0x9A0A187A] = { model = "northflatcar01x", hash = 0x9A0A187A }, - [0x29EA09A9] = { model = "northpassenger01x", hash = 0x29EA09A9 }, - [0x930442EC] = { model = "northpassenger03x", hash = 0x930442EC }, - [0xF632A662] = { model = "northsteamer01x", hash = 0xF632A662 }, - [0xC3E6C004] = { model = "oilWagon01x", hash = 0xC3E6C004 }, - [0x824EBBB5] = { model = "oilWagon02x", hash = 0x824EBBB5 }, - [0xAE057F07] = { model = "pirogue2", hash = 0xAE057F07 }, - [0xF539E5A0] = { model = "pirogue", hash = 0xF539E5A0 }, - [0xB203C6B3] = { model = "policewagon01x", hash = 0xB203C6B3 }, - [0xB31F8075] = { model = "policeWagongatling01x", hash = 0xB31F8075 }, - [0x384E6422] = { model = "privateArmoured", hash = 0x384E6422 }, - [0x6A80D253] = { model = "privatebaggage01x", hash = 0x6A80D253 }, - [0xC50FC5D0] = { model = "privateboxcar01x", hash = 0xC50FC5D0 }, - [0x4D5B5089] = { model = "privateboxcar02x", hash = 0x4D5B5089 }, - [0x18296CDE] = { model = "privateboxcar04x", hash = 0x18296CDE }, - [0x4717D8D8] = { model = "privatecoalcar01x", hash = 0x4717D8D8 }, - [0x22250EF5] = { model = "privatedining01x", hash = 0x22250EF5 }, - [0x0F228F06] = { model = "privateflatcar01x", hash = 0x0F228F06 }, - [0xF1FE5FB8] = { model = "privateObservationcar", hash = 0xF1FE5FB8 }, - [0xC27964BE] = { model = "privateopensleeper01x", hash = 0xC27964BE }, - [0x7F4258C9] = { model = "privateopensleeper02x", hash = 0x7F4258C9 }, - [0x1C8D173A] = { model = "privatepassenger01x", hash = 0x1C8D173A }, - [0xEE645446] = { model = "privaterooms01x", hash = 0xEE645446 }, - [0x055BF98F] = { model = "privatesteamer01x", hash = 0x055BF98F }, - [0x5E56769C] = { model = "rcBoat", hash = 0x5E56769C }, - [0x9FD6BA58] = { model = "rowboat", hash = 0x9FD6BA58 }, - [0xF097BC6C] = { model = "rowboatSwamp02", hash = 0xF097BC6C }, - [0xE84E6B74] = { model = "rowboatSwamp", hash = 0xE84E6B74 }, - [0xA385E1C7] = { model = "ship_guama02", hash = 0xA385E1C7 }, - [0xC6FA5BFF] = { model = "ship_nbdGuama2", hash = 0xC6FA5BFF }, - [0x427A2D4C] = { model = "ship_nbdGuama", hash = 0x427A2D4C }, - [0xDADC0B67] = { model = "skiff", hash = 0xDADC0B67 }, - [0x0CFD1449] = { model = "smuggler02", hash = 0x0CFD1449 }, - [0x7DBBF975] = { model = "stagecoach001x", hash = 0x7DBBF975 }, - [0x680D3008] = { model = "stagecoach002x", hash = 0x680D3008 }, - [0xE7D930EA] = { model = "stagecoach003x", hash = 0xE7D930EA }, - [0x0CA650AA] = { model = "stagecoach004_2x", hash = 0x0CA650AA }, - [0x9B58946E] = { model = "stagecoach004x", hash = 0x9B58946E }, - [0xC474677D] = { model = "stagecoach005x", hash = 0xC474677D }, - [0xAAFEA8AE] = { model = "stagecoach006x", hash = 0xAAFEA8AE }, - [0xAD516118] = { model = "steamerDummy", hash = 0xAD516118 }, - [0xEC2A1018] = { model = "supplywagon2", hash = 0xEC2A1018 }, - [0x9780442F] = { model = "supplywagon", hash = 0x9780442F }, - [0xDA152CA6] = { model = "trolley01x", hash = 0xDA152CA6 }, - [0x7DD49B09] = { model = "TugBoat2", hash = 0x7DD49B09 }, - [0xE1FE4FD4] = { model = "turbineboat", hash = 0xE1FE4FD4 }, - [0x310A4F8B] = { model = "utilliwag", hash = 0x310A4F8B }, - [0xEF1F4829] = { model = "wagon02x", hash = 0xEF1F4829 }, - [0x90C51372] = { model = "wagon03x", hash = 0x90C51372 }, - [0x6FBDD4B8] = { model = "wagon04x", hash = 0x6FBDD4B8 }, - [0xAAC1A9FE] = { model = "wagon05x_2", hash = 0xAAC1A9FE }, - [0x9735A3CF] = { model = "wagon05x", hash = 0x9735A3CF }, - [0x3C9870A6] = { model = "wagon06x", hash = 0x3C9870A6 }, - [0x9658DD4C] = { model = "wagonarmoured01x", hash = 0x9658DD4C }, - [0xC2D200FE] = { model = "wagonCircus01x", hash = 0xC2D200FE }, - [0xEE8254F6] = { model = "wagonCircus02x", hash = 0xEE8254F6 }, - [0x08FF91ED] = { model = "wagondairy01x", hash = 0x08FF91ED }, - [0xF7E89A8D] = { model = "wagondoc01x", hash = 0xF7E89A8D }, - [0xCCC649AE] = { model = "wagonPrison01x", hash = 0xCCC649AE }, - [0xA7FBA623] = { model = "wagontraveller01x", hash = 0xA7FBA623 }, - [0xE96CFEFB] = { model = "wagonwork01x", hash = 0xE96CFEFB }, - [0xA37D73F6] = { model = "warwagon2", hash = 0xA37D73F6 }, - [0x0FD337B7] = { model = "wintercoalcar", hash = 0x0FD337B7 }, - [0x6F8F7EE4] = { model = "winterSteamer", hash = 0x6F8F7EE4 }, - [0x6422679D] = { model = "tugboat3", hash = 0x6422679D }, + [`armoredCar01x`] = { model = "armoredCar01x", hash = 0xC8EF11A0 }, + [`armoredCar03x`] = { model = "armoredCar03x", hash = 0x22C976E4 }, + [`ArmySupplyWagon`] = { model = "ArmySupplyWagon", hash = 0x276DFE5E }, + [`boatsteam02x`] = { model = "boatsteam02x", hash = 0x876E6EB7 }, + [`bountywagon01x`] = { model = "bountywagon01x", hash = 0x861D4C6A }, + [`breach_cannon`] = { model = "breach_cannon", hash = 0x8979274C }, + [`buggy01`] = { model = "buggy01", hash = 0xB3C45542 }, + [`buggy02`] = { model = "buggy02", hash = 0xBE696A8C }, + [`buggy03`] = { model = "buggy03", hash = 0x91068FC7 }, + [`caboose01x`] = { model = "caboose01x", hash = 0x8C0224C6 }, + [`canoe`] = { model = "canoe", hash = 0x578D6513 }, + [`canoeTreeTrunk`] = { model = "canoeTreeTrunk", hash = 0xD84D4530 }, + [`cart01`] = { model = "cart01", hash = 0xCEDED274 }, + [`cart02`] = { model = "cart02", hash = 0x85943FE0 }, + [`cart03`] = { model = "cart03", hash = 0xAFB2141B }, + [`cart04`] = { model = "cart04", hash = 0xDDFBF0AE }, + [`cart05`] = { model = "cart05", hash = 0x1656E157 }, + [`cart06`] = { model = "cart06", hash = 0x0D10CECB }, + [`cart07`] = { model = "cart07", hash = 0x02D03A4A }, + [`cart08`] = { model = "cart08", hash = 0xE98507B4 }, + [`chuckwagon000x`] = { model = "chuckwagon000x", hash = 0x5F27ED25 }, + [`chuckwagon002x`] = { model = "chuckwagon002x", hash = 0x69897B5C }, + [`coach2`] = { model = "coach2", hash = 0x68F6F8F3 }, + [`coach3_cutscene`] = { model = "coach3_cutscene", hash = 0xF775C720 }, + [`coach3`] = { model = "coach3", hash = 0xF7D816B7 }, + [`coach4`] = { model = "coach4", hash = 0x0598B238 }, + [`coach5`] = { model = "coach5", hash = 0x9324CD4E }, + [`coach6`] = { model = "coach6", hash = 0xA3EC6EDD }, + [`coalHopper01x`] = { model = "coalHopper01x", hash = 0x4E018632 }, + [`coal_wagon`] = { model = "coal_wagon", hash = 0x61EC29C0 }, + [`gatchuck_2`] = { model = "gatchuck_2", hash = 0xF53E4390 }, + [`gatchuck`] = { model = "gatchuck", hash = 0x0538529A }, + [`gatling_gun`] = { model = "gatling_gun", hash = 0x1EEBDBE5 }, + [`gatlingMaxim02`] = { model = "gatlingMaxim02", hash = 0x2C3B0296 }, + [`GhostTrainCaboose`] = { model = "GhostTrainCaboose", hash = 0x20925D76 }, + [`GhostTrainCoalCar`] = { model = "GhostTrainCoalCar", hash = 0x1C10E9C9 }, + [`GhostTrainPassenger`] = { model = "GhostTrainPassenger", hash = 0x7724C788 }, + [`GhostTrainSteamer`] = { model = "GhostTrainSteamer", hash = 0x09D4E809 }, + [`handcart`] = { model = "handcart", hash = 0x590420FE }, + [`horseBoat`] = { model = "horseBoat", hash = 0x75BDDBD6 }, + [`hotAirBalloon01`] = { model = "hotAirBalloon01", hash = 0x5EB0BAE0 }, + [`hotchkiss_cannon`] = { model = "hotchkiss_cannon", hash = 0x2CA8E7B6 }, + [`huntercart01`] = { model = "huntercart01", hash = 0x9AC2F93A }, + [`keelboat`] = { model = "keelboat", hash = 0xEF91537F }, + [`logwagon2`] = { model = "logwagon2", hash = 0xE89274F1 }, + [`logwagon`] = { model = "logwagon", hash = 0x9A308177 }, + [`midlandboxcar05x`] = { model = "midlandboxcar05x", hash = 0x39584F5A }, + [`midlandrefrigeratorcar`] = { model = "midlandrefrigeratorcar", hash = 0xECD7E90E }, + [`mineCart01x`] = { model = "mineCart01x", hash = 0xC40B0265 }, + [`northcoalcar01x`] = { model = "northcoalcar01x", hash = 0xDF86C25A }, + [`northflatcar01x`] = { model = "northflatcar01x", hash = 0x9A0A187A }, + [`northpassenger01x`] = { model = "northpassenger01x", hash = 0x29EA09A9 }, + [`northpassenger03x`] = { model = "northpassenger03x", hash = 0x930442EC }, + [`northsteamer01x`] = { model = "northsteamer01x", hash = 0xF632A662 }, + [`oilWagon01x`] = { model = "oilWagon01x", hash = 0xC3E6C004 }, + [`oilWagon02x`] = { model = "oilWagon02x", hash = 0x824EBBB5 }, + [`pirogue2`] = { model = "pirogue2", hash = 0xAE057F07 }, + [`pirogue`] = { model = "pirogue", hash = 0xF539E5A0 }, + [`policewagon01x`] = { model = "policewagon01x", hash = 0xB203C6B3 }, + [`policeWagongatling01x`] = { model = "policeWagongatling01x", hash = 0xB31F8075 }, + [`privateArmoured`] = { model = "privateArmoured", hash = 0x384E6422 }, + [`privatebaggage01x`] = { model = "privatebaggage01x", hash = 0x6A80D253 }, + [`privateboxcar01x`] = { model = "privateboxcar01x", hash = 0xC50FC5D0 }, + [`privateboxcar02x`] = { model = "privateboxcar02x", hash = 0x4D5B5089 }, + [`privateboxcar04x`] = { model = "privateboxcar04x", hash = 0x18296CDE }, + [`privatecoalcar01x`] = { model = "privatecoalcar01x", hash = 0x4717D8D8 }, + [`privatedining01x`] = { model = "privatedining01x", hash = 0x22250EF5 }, + [`privateflatcar01x`] = { model = "privateflatcar01x", hash = 0x0F228F06 }, + [`privateObservationcar`] = { model = "privateObservationcar", hash = 0xF1FE5FB8 }, + [`privateopensleeper01x`] = { model = "privateopensleeper01x", hash = 0xC27964BE }, + [`privateopensleeper02x`] = { model = "privateopensleeper02x", hash = 0x7F4258C9 }, + [`privatepassenger01x`] = { model = "privatepassenger01x", hash = 0x1C8D173A }, + [`privaterooms01x`] = { model = "privaterooms01x", hash = 0xEE645446 }, + [`privatesteamer01x`] = { model = "privatesteamer01x", hash = 0x055BF98F }, + [`rcBoat`] = { model = "rcBoat", hash = 0x5E56769C }, + [`rowboat`] = { model = "rowboat", hash = 0x9FD6BA58 }, + [`rowboatSwamp02`] = { model = "rowboatSwamp02", hash = 0xF097BC6C }, + [`rowboatSwamp`] = { model = "rowboatSwamp", hash = 0xE84E6B74 }, + [`ship_guama02`] = { model = "ship_guama02", hash = 0xA385E1C7 }, + [`ship_nbdGuama2`] = { model = "ship_nbdGuama2", hash = 0xC6FA5BFF }, + [`ship_nbdGuama`] = { model = "ship_nbdGuama", hash = 0x427A2D4C }, + [`skiff`] = { model = "skiff", hash = 0xDADC0B67 }, + [`smuggler02`] = { model = "smuggler02", hash = 0x0CFD1449 }, + [`stagecoach001x`] = { model = "stagecoach001x", hash = 0x7DBBF975 }, + [`stagecoach002x`] = { model = "stagecoach002x", hash = 0x680D3008 }, + [`stagecoach003x`] = { model = "stagecoach003x", hash = 0xE7D930EA }, + [`stagecoach004_2x`] = { model = "stagecoach004_2x", hash = 0x0CA650AA }, + [`stagecoach004x`] = { model = "stagecoach004x", hash = 0x9B58946E }, + [`stagecoach005x`] = { model = "stagecoach005x", hash = 0xC474677D }, + [`stagecoach006x`] = { model = "stagecoach006x", hash = 0xAAFEA8AE }, + [`steamerDummy`] = { model = "steamerDummy", hash = 0xAD516118 }, + [`supplywagon2`] = { model = "supplywagon2", hash = 0xEC2A1018 }, + [`supplywagon`] = { model = "supplywagon", hash = 0x9780442F }, + [`trolley01x`] = { model = "trolley01x", hash = 0xDA152CA6 }, + [`TugBoat2`] = { model = "TugBoat2", hash = 0x7DD49B09 }, + [`turbineboat`] = { model = "turbineboat", hash = 0xE1FE4FD4 }, + [`utilliwag`] = { model = "utilliwag", hash = 0x310A4F8B }, + [`wagon02x`] = { model = "wagon02x", hash = 0xEF1F4829 }, + [`wagon03x`] = { model = "wagon03x", hash = 0x90C51372 }, + [`wagon04x`] = { model = "wagon04x", hash = 0x6FBDD4B8 }, + [`wagon05x_2`] = { model = "wagon05x_2", hash = 0xAAC1A9FE }, + [`wagon05x`] = { model = "wagon05x", hash = 0x9735A3CF }, + [`wagon06x`] = { model = "wagon06x", hash = 0x3C9870A6 }, + [`wagonarmoured01x`] = { model = "wagonarmoured01x", hash = 0x9658DD4C }, + [`wagonCircus01x`] = { model = "wagonCircus01x", hash = 0xC2D200FE }, + [`wagonCircus02x`] = { model = "wagonCircus02x", hash = 0xEE8254F6 }, + [`wagondairy01x`] = { model = "wagondairy01x", hash = 0x08FF91ED }, + [`wagondoc01x`] = { model = "wagondoc01x", hash = 0xF7E89A8D }, + [`wagonPrison01x`] = { model = "wagonPrison01x", hash = 0xCCC649AE }, + [`wagontraveller01x`] = { model = "wagontraveller01x", hash = 0xA7FBA623 }, + [`wagonwork01x`] = { model = "wagonwork01x", hash = 0xE96CFEFB }, + [`warwagon2`] = { model = "warwagon2", hash = 0xA37D73F6 }, + [`wintercoalcar`] = { model = "wintercoalcar", hash = 0x0FD337B7 }, + [`winterSteamer`] = { model = "winterSteamer", hash = 0x6F8F7EE4 }, + [`tugboat3`] = { model = "tugboat3", hash = 0x6422679D }, } Vehicles.Boats = { - [0x876E6EB7] = { model = "boatsteam02x", hash = 0x876E6EB7 }, - [0x578D6513] = { model = "canoe", hash = 0x578D6513 }, - [0xD84D4530] = { model = "canoeTreeTrunk", hash = 0xD84D4530 }, - [0x75BDDBD6] = { model = "horseBoat", hash = 0x75BDDBD6 }, - [0xEF91537F] = { model = "keelboat", hash = 0xEF91537F }, - [0xAE057F07] = { model = "pirogue2", hash = 0xAE057F07 }, - [0xF539E5A0] = { model = "pirogue", hash = 0xF539E5A0 }, - [0x5E56769C] = { model = "rcBoat", hash = 0x5E56769C }, - [0x9FD6BA58] = { model = "rowboat", hash = 0x9FD6BA58 }, - [0xF097BC6C] = { model = "rowboatSwamp02", hash = 0xF097BC6C }, - [0xE84E6B74] = { model = "rowboatSwamp", hash = 0xE84E6B74 }, - [0xDADC0B67] = { model = "skiff", hash = 0xDADC0B67 }, - [0x7DD49B09] = { model = "TugBoat2", hash = 0x7DD49B09 }, - [0xE1FE4FD4] = { model = "turbineboat", hash = 0xE1FE4FD4 }, - [0x6422679D] = { model = "tugboat3", hash = 0x6422679D }, + [`boatsteam02x`] = { model = "boatsteam02x", hash = 0x876E6EB7 }, + [`canoe`] = { model = "canoe", hash = 0x578D6513 }, + [`canoeTreeTrunk`] = { model = "canoeTreeTrunk", hash = 0xD84D4530 }, + [`horseBoat`] = { model = "horseBoat", hash = 0x75BDDBD6 }, + [`keelboat`] = { model = "keelboat", hash = 0xEF91537F }, + [`pirogue2`] = { model = "pirogue2", hash = 0xAE057F07 }, + [`pirogue`] = { model = "pirogue", hash = 0xF539E5A0 }, + [`rcBoat`] = { model = "rcBoat", hash = 0x5E56769C }, + [`rowboat`] = { model = "rowboat", hash = 0x9FD6BA58 }, + [`rowboatSwamp02`] = { model = "rowboatSwamp02", hash = 0xF097BC6C }, + [`rowboatSwamp`] = { model = "rowboatSwamp", hash = 0xE84E6B74 }, + [`skiff`] = { model = "skiff", hash = 0xDADC0B67 }, + [`TugBoat2`] = { model = "TugBoat2", hash = 0x7DD49B09 }, + [`turbineboat`] = { model = "turbineboat", hash = 0xE1FE4FD4 }, + [`tugboat3`] = { model = "tugboat3", hash = 0x6422679D }, } Vehicles.Carts = { - [0xB3C45542] = { model = "buggy01", hash = 0xB3C45542 }, - [0xBE696A8C] = { model = "buggy02", hash = 0xBE696A8C }, - [0x91068FC7] = { model = "buggy03", hash = 0x91068FC7 }, - [0xCEDED274] = { model = "cart01", hash = 0xCEDED274 }, - [0x85943FE0] = { model = "cart02", hash = 0x85943FE0 }, - [0xAFB2141B] = { model = "cart03", hash = 0xAFB2141B }, - [0xDDFBF0AE] = { model = "cart04", hash = 0xDDFBF0AE }, - [0x1656E157] = { model = "cart05", hash = 0x1656E157 }, - [0x0D10CECB] = { model = "cart06", hash = 0x0D10CECB }, - [0x02D03A4A] = { model = "cart07", hash = 0x02D03A4A }, - [0xE98507B4] = { model = "cart08", hash = 0xE98507B4 }, - [0x590420FE] = { model = "handcart", hash = 0x590420FE }, - [0x9AC2F93A] = { model = "huntercart01", hash = 0x9AC2F93A }, - [0xC40B0265] = { model = "mineCart01x", hash = 0xC40B0265 }, + [`buggy01`] = { model = "buggy01", hash = 0xB3C45542 }, + [`buggy02`] = { model = "buggy02", hash = 0xBE696A8C }, + [`buggy03`] = { model = "buggy03", hash = 0x91068FC7 }, + [`cart01`] = { model = "cart01", hash = 0xCEDED274 }, + [`cart02`] = { model = "cart02", hash = 0x85943FE0 }, + [`cart03`] = { model = "cart03", hash = 0xAFB2141B }, + [`cart04`] = { model = "cart04", hash = 0xDDFBF0AE }, + [`cart05`] = { model = "cart05", hash = 0x1656E157 }, + [`cart06`] = { model = "cart06", hash = 0x0D10CECB }, + [`cart07`] = { model = "cart07", hash = 0x02D03A4A }, + [`cart08`] = { model = "cart08", hash = 0xE98507B4 }, + [`handcart`] = { model = "handcart", hash = 0x590420FE }, + [`huntercart01`] = { model = "huntercart01", hash = 0x9AC2F93A }, + [`mineCart01x`] = { model = "mineCart01x", hash = 0xC40B0265 }, } Vehicles.Coaches = { - [0x68F6F8F3] = { model = "coach2", hash = 0x68F6F8F3 }, - [0xF775C720] = { model = "coach3_cutscene", hash = 0xF775C720 }, - [0xF7D816B7] = { model = "coach3", hash = 0xF7D816B7 }, - [0x0598B238] = { model = "coach4", hash = 0x0598B238 }, - [0x9324CD4E] = { model = "coach5", hash = 0x9324CD4E }, - [0xA3EC6EDD] = { model = "coach6", hash = 0xA3EC6EDD }, + [`coach2`] = { model = "coach2", hash = 0x68F6F8F3 }, + [`coach3_cutscene`] = { model = "coach3_cutscene", hash = 0xF775C720 }, + [`coach3`] = { model = "coach3", hash = 0xF7D816B7 }, + [`coach4`] = { model = "coach4", hash = 0x0598B238 }, + [`coach5`] = { model = "coach5", hash = 0x9324CD4E }, + [`coach6`] = { model = "coach6", hash = 0xA3EC6EDD }, } Vehicles.Special = { - [0xC8EF11A0] = { model = "armoredCar01x", hash = 0xC8EF11A0 }, - [0x22C976E4] = { model = "armoredCar03x", hash = 0x22C976E4 }, - [0x8979274C] = { model = "breach_cannon", hash = 0x8979274C }, - [0xF53E4390] = { model = "gatchuck_2", hash = 0xF53E4390 }, - [0x0538529A] = { model = "gatchuck", hash = 0x0538529A }, - [0x1EEBDBE5] = { model = "gatling_gun", hash = 0x1EEBDBE5 }, - [0x2C3B0296] = { model = "gatlingMaxim02", hash = 0x2C3B0296 }, - [0x5EB0BAE0] = { model = "hotAirBalloon01", hash = 0x5EB0BAE0 }, - [0x2CA8E7B6] = { model = "hotchkiss_cannon", hash = 0x2CA8E7B6 }, - [0x384E6422] = { model = "privateArmoured", hash = 0x384E6422 }, - [0x6A80D253] = { model = "privatebaggage01x", hash = 0x6A80D253 }, - [0xA385E1C7] = { model = "ship_guama02", hash = 0xA385E1C7 }, - [0xC6FA5BFF] = { model = "ship_nbdGuama2", hash = 0xC6FA5BFF }, - [0x427A2D4C] = { model = "ship_nbdGuama", hash = 0x427A2D4C }, - [0x0CFD1449] = { model = "smuggler02", hash = 0x0CFD1449 }, - [0x7DBBF975] = { model = "stagecoach001x", hash = 0x7DBBF975 }, - [0x680D3008] = { model = "stagecoach002x", hash = 0x680D3008 }, - [0xE7D930EA] = { model = "stagecoach003x", hash = 0xE7D930EA }, - [0x0CA650AA] = { model = "stagecoach004_2x", hash = 0x0CA650AA }, - [0x9B58946E] = { model = "stagecoach004x", hash = 0x9B58946E }, - [0xC474677D] = { model = "stagecoach005x", hash = 0xC474677D }, - [0xAAFEA8AE] = { model = "stagecoach006x", hash = 0xAAFEA8AE }, - [0xDA152CA6] = { model = "trolley01x", hash = 0xDA152CA6 }, - [0x310A4F8B] = { model = "utilliwag", hash = 0x310A4F8B }, + [`armoredCar01x`] = { model = "armoredCar01x", hash = 0xC8EF11A0 }, + [`armoredCar03x`] = { model = "armoredCar03x", hash = 0x22C976E4 }, + [`breach_cannon`] = { model = "breach_cannon", hash = 0x8979274C }, + [`gatchuck_2`] = { model = "gatchuck_2", hash = 0xF53E4390 }, + [`gatchuck`] = { model = "gatchuck", hash = 0x0538529A }, + [`gatling_gun`] = { model = "gatling_gun", hash = 0x1EEBDBE5 }, + [`gatlingMaxim02`] = { model = "gatlingMaxim02", hash = 0x2C3B0296 }, + [`hotAirBalloon01`] = { model = "hotAirBalloon01", hash = 0x5EB0BAE0 }, + [`hotchkiss_cannon`] = { model = "hotchkiss_cannon", hash = 0x2CA8E7B6 }, + [`privateArmoured`] = { model = "privateArmoured", hash = 0x384E6422 }, + [`privatebaggage01x`] = { model = "privatebaggage01x", hash = 0x6A80D253 }, + [`ship_guama02`] = { model = "ship_guama02", hash = 0xA385E1C7 }, + [`ship_nbdGuama2`] = { model = "ship_nbdGuama2", hash = 0xC6FA5BFF }, + [`ship_nbdGuama`] = { model = "ship_nbdGuama", hash = 0x427A2D4C }, + [`smuggler02`] = { model = "smuggler02", hash = 0x0CFD1449 }, + [`stagecoach001x`] = { model = "stagecoach001x", hash = 0x7DBBF975 }, + [`stagecoach002x`] = { model = "stagecoach002x", hash = 0x680D3008 }, + [`stagecoach003x`] = { model = "stagecoach003x", hash = 0xE7D930EA }, + [`stagecoach004_2x`] = { model = "stagecoach004_2x", hash = 0x0CA650AA }, + [`stagecoach004x`] = { model = "stagecoach004x", hash = 0x9B58946E }, + [`stagecoach005x`] = { model = "stagecoach005x", hash = 0xC474677D }, + [`stagecoach006x`] = { model = "stagecoach006x", hash = 0xAAFEA8AE }, + [`trolley01x`] = { model = "trolley01x", hash = 0xDA152CA6 }, + [`utilliwag`] = { model = "utilliwag", hash = 0x310A4F8B }, } Vehicles.Trains = { - [0x8C0224C6] = { model = "caboose01x", hash = 0x8C0224C6 }, - [0x4E018632] = { model = "coalHopper01x", hash = 0x4E018632 }, - [0x20925D76] = { model = "GhostTrainCaboose", hash = 0x20925D76 }, - [0x1C10E9C9] = { model = "GhostTrainCoalCar", hash = 0x1C10E9C9 }, - [0x7724C788] = { model = "GhostTrainPassenger", hash = 0x7724C788 }, - [0x09D4E809] = { model = "GhostTrainSteamer", hash = 0x09D4E809 }, - [0x39584F5A] = { model = "midlandboxcar05x", hash = 0x39584F5A }, - [0xECD7E90E] = { model = "midlandrefrigeratorcar", hash = 0xECD7E90E }, - [0xDF86C25A] = { model = "northcoalcar01x", hash = 0xDF86C25A }, - [0x9A0A187A] = { model = "northflatcar01x", hash = 0x9A0A187A }, - [0x29EA09A9] = { model = "northpassenger01x", hash = 0x29EA09A9 }, - [0x930442EC] = { model = "northpassenger03x", hash = 0x930442EC }, - [0xF632A662] = { model = "northsteamer01x", hash = 0xF632A662 }, - [0xC50FC5D0] = { model = "privateboxcar01x", hash = 0xC50FC5D0 }, - [0x4D5B5089] = { model = "privateboxcar02x", hash = 0x4D5B5089 }, - [0x18296CDE] = { model = "privateboxcar04x", hash = 0x18296CDE }, - [0x4717D8D8] = { model = "privatecoalcar01x", hash = 0x4717D8D8 }, - [0x22250EF5] = { model = "privatedining01x", hash = 0x22250EF5 }, - [0x0F228F06] = { model = "privateflatcar01x", hash = 0x0F228F06 }, - [0xF1FE5FB8] = { model = "privateObservationcar", hash = 0xF1FE5FB8 }, - [0xC27964BE] = { model = "privateopensleeper01x", hash = 0xC27964BE }, - [0x7F4258C9] = { model = "privateopensleeper02x", hash = 0x7F4258C9 }, - [0x1C8D173A] = { model = "privatepassenger01x", hash = 0x1C8D173A }, - [0xEE645446] = { model = "privaterooms01x", hash = 0xEE645446 }, - [0x055BF98F] = { model = "privatesteamer01x", hash = 0x055BF98F }, - [0xAD516118] = { model = "steamerDummy", hash = 0xAD516118 }, - [0x0FD337B7] = { model = "wintercoalcar", hash = 0x0FD337B7 }, - [0x6F8F7EE4] = { model = "winterSteamer", hash = 0x6F8F7EE4 }, + [`caboose01x`] = { model = "caboose01x", hash = 0x8C0224C6 }, + [`coalHopper01x`] = { model = "coalHopper01x", hash = 0x4E018632 }, + [`GhostTrainCaboose`] = { model = "GhostTrainCaboose", hash = 0x20925D76 }, + [`GhostTrainCoalCar`] = { model = "GhostTrainCoalCar", hash = 0x1C10E9C9 }, + [`GhostTrainPassenger`] = { model = "GhostTrainPassenger", hash = 0x7724C788 }, + [`GhostTrainSteamer`] = { model = "GhostTrainSteamer", hash = 0x09D4E809 }, + [`midlandboxcar05x`] = { model = "midlandboxcar05x", hash = 0x39584F5A }, + [`midlandrefrigeratorcar`] = { model = "midlandrefrigeratorcar", hash = 0xECD7E90E }, + [`northcoalcar01x`] = { model = "northcoalcar01x", hash = 0xDF86C25A }, + [`northflatcar01x`] = { model = "northflatcar01x", hash = 0x9A0A187A }, + [`northpassenger01x`] = { model = "northpassenger01x", hash = 0x29EA09A9 }, + [`northpassenger03x`] = { model = "northpassenger03x", hash = 0x930442EC }, + [`northsteamer01x`] = { model = "northsteamer01x", hash = 0xF632A662 }, + [`privateboxcar01x`] = { model = "privateboxcar01x", hash = 0xC50FC5D0 }, + [`privateboxcar02x`] = { model = "privateboxcar02x", hash = 0x4D5B5089 }, + [`privateboxcar04x`] = { model = "privateboxcar04x", hash = 0x18296CDE }, + [`privatecoalcar01x`] = { model = "privatecoalcar01x", hash = 0x4717D8D8 }, + [`privatedining01x`] = { model = "privatedining01x", hash = 0x22250EF5 }, + [`privateflatcar01x`] = { model = "privateflatcar01x", hash = 0x0F228F06 }, + [`privateObservationcar`] = { model = "privateObservationcar", hash = 0xF1FE5FB8 }, + [`privateopensleeper01x`] = { model = "privateopensleeper01x", hash = 0xC27964BE }, + [`privateopensleeper02x`] = { model = "privateopensleeper02x", hash = 0x7F4258C9 }, + [`privatepassenger01x`] = { model = "privatepassenger01x", hash = 0x1C8D173A }, + [`privaterooms01x`] = { model = "privaterooms01x", hash = 0xEE645446 }, + [`privatesteamer01x`] = { model = "privatesteamer01x", hash = 0x055BF98F }, + [`steamerDummy`] = { model = "steamerDummy", hash = 0xAD516118 }, + [`wintercoalcar`] = { model = "wintercoalcar", hash = 0x0FD337B7 }, + [`winterSteamer`] = { model = "winterSteamer", hash = 0x6F8F7EE4 }, } Vehicles.Wagons = { - [0x276DFE5E] = { model = "ArmySupplyWagon", hash = 0x276DFE5E }, - [0x861D4C6A] = { model = "bountywagon01x", hash = 0x861D4C6A }, - [0x5F27ED25] = { model = "chuckwagon000x", hash = 0x5F27ED25 }, - [0x69897B5C] = { model = "chuckwagon002x", hash = 0x69897B5C }, - [0x61EC29C0] = { model = "coal_wagon", hash = 0x61EC29C0 }, - [0xE89274F1] = { model = "logwagon2", hash = 0xE89274F1 }, - [0x9A308177] = { model = "logwagon", hash = 0x9A308177 }, - [0xC3E6C004] = { model = "oilWagon01x", hash = 0xC3E6C004 }, - [0x824EBBB5] = { model = "oilWagon02x", hash = 0x824EBBB5 }, - [0xB203C6B3] = { model = "policewagon01x", hash = 0xB203C6B3 }, - [0xB31F8075] = { model = "policeWagongatling01x", hash = 0xB31F8075 }, - [0xEC2A1018] = { model = "supplywagon2", hash = 0xEC2A1018 }, - [0x9780442F] = { model = "supplywagon", hash = 0x9780442F }, - [0xEF1F4829] = { model = "wagon02x", hash = 0xEF1F4829 }, - [0x90C51372] = { model = "wagon03x", hash = 0x90C51372 }, - [0x6FBDD4B8] = { model = "wagon04x", hash = 0x6FBDD4B8 }, - [0xAAC1A9FE] = { model = "wagon05x_2", hash = 0xAAC1A9FE }, - [0x9735A3CF] = { model = "wagon05x", hash = 0x9735A3CF }, - [0x3C9870A6] = { model = "wagon06x", hash = 0x3C9870A6 }, - [0x9658DD4C] = { model = "wagonarmoured01x", hash = 0x9658DD4C }, - [0xC2D200FE] = { model = "wagonCircus01x", hash = 0xC2D200FE }, - [0xEE8254F6] = { model = "wagonCircus02x", hash = 0xEE8254F6 }, - [0x08FF91ED] = { model = "wagondairy01x", hash = 0x08FF91ED }, - [0xF7E89A8D] = { model = "wagondoc01x", hash = 0xF7E89A8D }, - [0xCCC649AE] = { model = "wagonPrison01x", hash = 0xCCC649AE }, - [0xA7FBA623] = { model = "wagontraveller01x", hash = 0xA7FBA623 }, - [0xE96CFEFB] = { model = "wagonwork01x", hash = 0xE96CFEFB }, - [0xA37D73F6] = { model = "warwagon2", hash = 0xA37D73F6 }, + [`ArmySupplyWagon`] = { model = "ArmySupplyWagon", hash = 0x276DFE5E }, + [`bountywagon01x`] = { model = "bountywagon01x", hash = 0x861D4C6A }, + [`chuckwagon000x`] = { model = "chuckwagon000x", hash = 0x5F27ED25 }, + [`chuckwagon002x`] = { model = "chuckwagon002x", hash = 0x69897B5C }, + [`coal_wagon`] = { model = "coal_wagon", hash = 0x61EC29C0 }, + [`logwagon2`] = { model = "logwagon2", hash = 0xE89274F1 }, + [`logwagon`] = { model = "logwagon", hash = 0x9A308177 }, + [`oilWagon01x`] = { model = "oilWagon01x", hash = 0xC3E6C004 }, + [`oilWagon02x`] = { model = "oilWagon02x", hash = 0x824EBBB5 }, + [`policewagon01x`] = { model = "policewagon01x", hash = 0xB203C6B3 }, + [`policeWagongatling01x`] = { model = "policeWagongatling01x", hash = 0xB31F8075 }, + [`supplywagon2`] = { model = "supplywagon2", hash = 0xEC2A1018 }, + [`supplywagon`] = { model = "supplywagon", hash = 0x9780442F }, + [`wagon02x`] = { model = "wagon02x", hash = 0xEF1F4829 }, + [`wagon03x`] = { model = "wagon03x", hash = 0x90C51372 }, + [`wagon04x`] = { model = "wagon04x", hash = 0x6FBDD4B8 }, + [`wagon05x_2`] = { model = "wagon05x_2", hash = 0xAAC1A9FE }, + [`wagon05x`] = { model = "wagon05x", hash = 0x9735A3CF }, + [`wagon06x`] = { model = "wagon06x", hash = 0x3C9870A6 }, + [`wagonarmoured01x`] = { model = "wagonarmoured01x", hash = 0x9658DD4C }, + [`wagonCircus01x`] = { model = "wagonCircus01x", hash = 0xC2D200FE }, + [`wagonCircus02x`] = { model = "wagonCircus02x", hash = 0xEE8254F6 }, + [`wagondairy01x`] = { model = "wagondairy01x", hash = 0x08FF91ED }, + [`wagondoc01x`] = { model = "wagondoc01x", hash = 0xF7E89A8D }, + [`wagonPrison01x`] = { model = "wagonPrison01x", hash = 0xCCC649AE }, + [`wagontraveller01x`] = { model = "wagontraveller01x", hash = 0xA7FBA623 }, + [`wagonwork01x`] = { model = "wagonwork01x", hash = 0xE96CFEFB }, + [`warwagon2`] = { model = "warwagon2", hash = 0xA37D73F6 }, } return { From aa73ed1486872f2d4023c223dfee449a75397a46 Mon Sep 17 00:00:00 2001 From: lu-value Date: Wed, 25 Mar 2026 00:34:34 +0100 Subject: [PATCH 5/5] fix: remove locale module --- import.lua | 1 - shared/locale.lua | 100 ---------------------------------------------- 2 files changed, 101 deletions(-) delete mode 100644 shared/locale.lua diff --git a/import.lua b/import.lua index 4e79c6e..59809de 100644 --- a/import.lua +++ b/import.lua @@ -38,7 +38,6 @@ local content = { class = true, functions = true, notify = true, - locale = true, }, } diff --git a/shared/locale.lua b/shared/locale.lua deleted file mode 100644 index b74025b..0000000 --- a/shared/locale.lua +++ /dev/null @@ -1,100 +0,0 @@ -local CLASS = Import('class').Class - -local function loadLangFile(resource, folder, lang) - local path = ('%s/%s.lua'):format(folder, lang) - local raw = LoadResourceFile(resource, path) - if not raw then return nil end - - local fn, err = load(raw) - if not fn then - print(('[Locale] Error loading %s: %s'):format(path, err)) - return nil - end - - return fn() -end - -local Locale = CLASS:Create({ - constructor = function(self, data) - self._langs = {} - self._currentLang = data.default or 'en' - self._defaultLang = data.default or 'en' - self._fallback = data.fallback ~= false - self._folder = data.folder or 'locales' - self._resource = data.resource or GetCurrentResourceName() - - local langs = data.langs or { self._defaultLang } - for _, lang in ipairs(langs) do - local content = loadLangFile(self._resource, self._folder, lang) - if content then - self._langs[lang] = content - end - end - - if not self._langs[self._defaultLang] then - local content = loadLangFile(self._resource, self._folder, self._defaultLang) - if content then - self._langs[self._defaultLang] = content - end - end - end, - - set = { - SetLang = function(self, lang) - if self._langs[lang] then - self._currentLang = lang - else - error(('Language "%s" not loaded'):format(lang)) - end - end - }, - - get = { - GetLang = function(self) - return self._currentLang - end, - GetAvailableLangs = function(self) - local langs = {} - for lang in pairs(self._langs) do - langs[#langs + 1] = lang - end - return langs - end - }, - - T = function(self, key, vars) - local text = nil - - if self._langs[self._currentLang] then - text = self._langs[self._currentLang][key] - end - - if not text and self._fallback and self._currentLang ~= self._defaultLang then - if self._langs[self._defaultLang] then - text = self._langs[self._defaultLang][key] - end - end - - if not text then - return key - end - - if vars and type(vars) == 'table' then - for name, value in pairs(vars) do - text = text:gsub('{' .. name .. '}', tostring(value)) - end - end - - return text - end -}) - -local LocaleAPI = {} - -function LocaleAPI:Load(options) - return Locale:New(options or {}) -end - -return { - Locale = LocaleAPI -}