diff --git a/scripts/shared/gamedata.js b/scripts/shared/gamedata.js index 04ee058f..02f0a899 100644 --- a/scripts/shared/gamedata.js +++ b/scripts/shared/gamedata.js @@ -24,21 +24,142 @@ class AnimationData { } }; +// =========================================================================== + let supportedFeatures = { // Invalid, GTAIII, GTAVC, GTASA, Invalid, GTAIV, Invalid, Invalid, Invalid, M1, M2, M3, M1DE - time: [null, true, true, true, false, true, true, null, null, null, false, false, false, false], - weather: [null, true, true, true, false, true, true, null, null, null, false, false, false, false], - serverElements: [null, true, true, true, false, false, false, null, null, null, true, true, true, true], - snow: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], - customCamera: [null, true, true, true, false, true, true, null, null, null, false, false, false, false], - fadeCamera: [null, true, true, true, false, true, true, null, null, null, false, false, false, false], - pickups: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], - worldLabels: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], - blips: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], - fightStyles: [null, false, false, true, false, false, false, null, null, null, false, false, false, false], - markers: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], - vehicleColours: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], - objects: [null, true, true, true, false, false, false, null, null, null, false, false, false, false], + time: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: true, + [VRR_GAME_GTA_IV_EFLC]: true, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + weather: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: true, + [VRR_GAME_GTA_IV_EFLC]: true, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + serverElements: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: true, + [VRR_GAME_MAFIA_TWO]: true, + [VRR_GAME_MAFIA_THREE]: true + }, + snow: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + customCamera: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: true, + [VRR_GAME_GTA_IV_EFLC]: true, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + fadeCamera: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: true, + [VRR_GAME_GTA_IV_EFLC]: true, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + pickups: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + worldLabels: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + blips: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + fightStyles: { + [VRR_GAME_GTA_III]: false, + [VRR_GAME_GTA_VC]: false, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + markers: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + vehicleColours: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + }, + objects: { + [VRR_GAME_GTA_III]: true, + [VRR_GAME_GTA_VC]: true, + [VRR_GAME_GTA_SA]: true, + [VRR_GAME_GTA_IV]: false, + [VRR_GAME_GTA_IV_EFLC]: false, + [VRR_GAME_MAFIA_ONE]: false, + [VRR_GAME_MAFIA_TWO]: false, + [VRR_GAME_MAFIA_THREE]: false + } }; // =========================================================================== @@ -54,6 +175,7 @@ let extraContentResource = { [VRR_GAME_MAFIA_TWO]: "agrp-mafia2", [VRR_GAME_MAFIA_TWO]: "agrp-mafia3", [VRR_GAME_MAFIA_ONE_DE]: "agrp-mafia1de", + [VRR_GAME_GTA_V]: "agrp-gtav", }; // =========================================================================== @@ -281,6 +403,9 @@ let gameData = { 31: "Sword", 32: "Dogs Head", }, + [VRR_GAME_GTA_V]: { // GTA V + + } }, weatherNames: { [VRR_GAME_GTA_III]: [ // GTA III @@ -307,7 +432,7 @@ let gameData = { "Overcast/Cloudy", "Grey/Cloudy" ], - VRR_GAME_GTA_IV_SA: [ // GTA San Andreas + [VRR_GAME_GTA_IV_SA]: [ // GTA San Andreas "Blue Skies", "Blue Skies", "Blue Skies", @@ -354,6 +479,9 @@ let gameData = { "Extra Sunny", "Sunny/Windy", ], + [VRR_GAME_GTA_V]: [ + + ], }, gameNames: { [VRR_GAME_GTA_III]: "GTA III", @@ -361,10 +489,11 @@ let gameData = { [VRR_GAME_GTA_SA]: "GTA San Andreas", [VRR_GAME_GTA_IV]: "GTA IV", [VRR_GAME_GTA_IV_EFLC]: "GTA IV: Episodes from Liberty City", - VRR_GAME_GTA_MAFIA_ONE: "Mafia: The City of Lost Heaven", - VRR_GAME_GTA_MAFIA_TWO: "Mafia II", - VRR_GAME_GTA_MAFIA_THREE: "Mafia III", - VRR_GAME_GTA_MAFIA_ONE_DE: "Mafia Definitive Edition", + [VRR_GAME_GTA_MAFIA_ONE]: "Mafia: The City of Lost Heaven", + [VRR_GAME_GTA_MAFIA_TWO]: "Mafia II", + [VRR_GAME_GTA_MAFIA_THREE]: "Mafia III", + [VRR_GAME_GTA_MAFIA_ONE_DE]: "Mafia Definitive Edition", + [VRR_GAME_GTA_V]: "GTA V", }, vehicleWheelStateNames: [ "normal", @@ -425,6 +554,19 @@ let gameData = { "WCTR", "User Track Player" ], + [VRR_GAME_GTA_V]: [ // GTA San Andreas + "K-ROSE", + "K-DST", + "Bounce FM", + "SF-UR", + "Radio Los Santos", + "Radio X", + "CSR Radio", + "KJAH West", + "Master Sounds", + "WCTR", + "User Track Player" + ], }, skins: { [VRR_GAME_GTA_III]: [ @@ -1681,6 +1823,747 @@ let gameData = { ["Sarah2LOW.i3d" , "Sarah" , true ], ["Serv01.i3d" , "Maid" , true ], ], + [VRR_GAME_GTA_V]: [ + ["a_c_boar", 0xCE5FF074, false], + ["a_c_cat_01", 0x573201B8, false], + ["a_c_chickenhawk", 0xAAB71F62, false], + ["a_c_chimp", 0xA8683715, false], + ["a_c_chop", 0x14EC17EA, false], + ["a_c_cormorant", 0x56E29962, false], + ["a_c_cow", 0xFCFA9E1E, false], + ["a_c_coyote", 0x644AC75E, false], + ["a_c_crow", 0x18012A9F, false], + ["a_c_deer", 0xD86B5A95, false], + ["a_c_dolphin", 0x8BBAB455, false], + ["a_c_fish", 0x2FD800B7, false], + ["a_c_hen", 0x6AF51FAF, false], + ["a_c_humpback", 0x471BE4B2, false], + ["a_c_husky", 0x4E8F95A2, false], + ["a_c_killerwhale", 0x8D8AC8B9, false], + ["a_c_mtlion", 0x1250D7BA, false], + ["a_c_pig", 0xB11BAB56, false], + ["a_c_pigeon", 0x06A20728, false], + ["a_c_poodle", 0x431D501C, false], + ["a_c_pug", 0x6D362854, false], + ["a_c_rabbit_01", 0xDFB55C81, false], + ["a_c_rat", 0xC3B52966, false], + ["a_c_retriever", 0x349F33E1, false], + ["a_c_rhesus", 0xC2D06F53, false], + ["a_c_rottweiler", 0x9563221D, false], + ["a_c_seagull", 0xD3939DFD, false], + ["a_c_sharkhammer", 0x3C831724, false], + ["a_c_sharktiger", 0x06C3F072, false], + ["a_c_shepherd", 0x431FC24C, false], + ["a_c_stingray", 0xA148614D, false], + ["a_c_westy", 0xAD7844BB, false], + ["a_f_m_beach_01", 0x303638A7, true], + ["a_f_m_bevhills_01", 0xBE086EFD, true], + ["a_f_m_bevhills_02", 0xA039335F, true], + ["a_f_m_bodybuild_01", 0x3BD99114, true], + ["a_f_m_business_02", 0x1FC37DBC, true], + ["a_f_m_downtown_01", 0x654AD86E, true], + ["a_f_m_eastsa_01", 0x9D3DCB7A, true], + ["a_f_m_eastsa_02", 0x63C8D891, true], + ["a_f_m_fatbla_01", 0xFAB48BCB, true], + ["a_f_m_fatcult_01", 0xB5CF80E4, true], + ["a_f_m_fatwhite_01", 0x38BAD33B, true], + ["a_f_m_ktown_01", 0x52C824DE, true], + ["a_f_m_ktown_02", 0x41018151, true], + ["a_f_m_prolhost_01", 0x169BD1E1, true], + ["a_f_m_salton_01", 0xDE0E0969, true], + ["a_f_m_skidrow_01", 0xB097523B, true], + ["a_f_m_soucent_01", 0x745855A1, true], + ["a_f_m_soucent_02", 0xF322D338, true], + ["a_f_m_soucentmc_01", 0xCDE955D2, true], + ["a_f_m_tourist_01", 0x505603B9, true], + ["a_f_m_tramp_01", 0x48F96F5B, true], + ["a_f_m_trampbeac_01", 0x8CA0C266, true], + ["a_f_o_genstreet_01", 0x61C81C85, true], + ["a_f_o_indian_01", 0xBAD7BB80, true], + ["a_f_o_ktown_01", 0x47CF5E96, true], + ["a_f_o_salton_01", 0xCCFF7D8A, true], + ["a_f_o_soucent_01", 0x3DFA1830, true], + ["a_f_o_soucent_02", 0xA56DE716, true], + ["a_f_y_beach_01", 0xC79F6928, true], + ["a_f_y_bevhills_01", 0x445AC854, true], + ["a_f_y_bevhills_02", 0x5C2CF7F8, true], + ["a_f_y_bevhills_03", 0x20C8012F, true], + ["a_f_y_bevhills_04", 0x36DF2D5D, true], + ["a_f_y_business_01", 0x2799EFD8, true], + ["a_f_y_business_02", 0x31430342, true], + ["a_f_y_business_03", 0xAE86FDB4, true], + ["a_f_y_business_04", 0xB7C61032, true], + ["a_f_y_eastsa_01", 0xF5B0079D, true], + ["a_f_y_eastsa_02", 0x0438A4AE, true], + ["a_f_y_eastsa_03", 0x51C03FA4, true], + ["a_f_y_epsilon_01", 0x689C2A80, true], + ["a_f_y_femaleagent", 0x50610C43, false], + ["a_f_y_fitness_01", 0x457C64FB, true], + ["a_f_y_fitness_02", 0x13C4818C, true], + ["a_f_y_genhot_01", 0x2F4AEC3E, true], + ["a_f_y_golfer_01", 0x7DD8FB58, true], + ["a_f_y_hiker_01", 0x30830813, true], + ["a_f_y_hippie_01", 0x1475B827, true], + ["a_f_y_hipster_01", 0x8247D331, true], + ["a_f_y_hipster_02", 0x97F5FE8D, true], + ["a_f_y_hipster_03", 0xA5BA9A16, true], + ["a_f_y_hipster_04", 0x199881DC, true], + ["a_f_y_indian_01", 0x092D9CC1, true], + ["a_f_y_juggalo_01", 0xDB134533, true], + ["a_f_y_runner_01", 0xC7496729, true], + ["a_f_y_rurmeth_01", 0x3F789426, true], + ["a_f_y_scdressy_01", 0xDB5EC400, true], + ["a_f_y_skater_01", 0x695FE666, true], + ["a_f_y_soucent_01", 0x2C641D7A, true], + ["a_f_y_soucent_02", 0x5A8EF9CF, true], + ["a_f_y_soucent_03", 0x87B25415, true], + ["a_f_y_tennis_01", 0x550C79C6, true], + ["a_f_y_topless_01", 0x9CF26183, true], + ["a_f_y_tourist_01", 0x563B8570, true], + ["a_f_y_tourist_02", 0x9123FB40, true], + ["a_f_y_vinewood_01", 0x19F41F65, true], + ["a_f_y_vinewood_02", 0xDAB6A0EB, true], + ["a_f_y_vinewood_03", 0x379DDAB8, true], + ["a_f_y_vinewood_04", 0xFAE46146, true], + ["a_f_y_yoga_01", 0xC41B062E, true], + ["a_m_m_acult_01", 0x5442C66B, true], + ["a_m_m_afriamer_01", 0xD172497E, true], + ["a_m_m_beach_01", 0x403DB4FD, true], + ["a_m_m_beach_02", 0x787FA588, true], + ["a_m_m_bevhills_01", 0x54DBEE1F, true], + ["a_m_m_bevhills_02", 0x3FB5C3D3, true], + ["a_m_m_business_01", 0x7E6A64B7, true], + ["a_m_m_eastsa_01", 0xF9A6F53F, true], + ["a_m_m_eastsa_02", 0x07DD91AC, true], + ["a_m_m_farmer_01", 0x94562DD7, true], + ["a_m_m_fatlatin_01", 0x61D201B3, true], + ["a_m_m_genfat_01", 0x06DD569F, true], + ["a_m_m_genfat_02", 0x13AEF042, true], + ["a_m_m_golfer_01", 0xA9EB0E42, true], + ["a_m_m_hasjew_01", 0x6BD9B68C, true], + ["a_m_m_hillbilly_01", 0x6C9B2849, true], + ["a_m_m_hillbilly_02", 0x7B0E452F, true], + ["a_m_m_indian_01", 0xDDCAAA2C, true], + ["a_m_m_ktown_01", 0xD15D7E71, true], + ["a_m_m_malibu_01", 0x2FDE6EB7, true], + ["a_m_m_mexcntry_01", 0xDD817EAD, true], + ["a_m_m_mexlabor_01", 0xB25D16B2, true], + ["a_m_m_og_boss_01", 0x681BD012, true], + ["a_m_m_paparazzi_01", 0xECCA8C15, true], + ["a_m_m_polynesian_01", 0xA9D9B69E, true], + ["a_m_m_prolhost_01", 0x9712C38F, true], + ["a_m_m_rurmeth_01", 0x3BAD4184, true], + ["a_m_m_salton_01", 0x4F2E038A, true], + ["a_m_m_salton_02", 0x60F4A717, true], + ["a_m_m_salton_03", 0xB28C4A45, true], + ["a_m_m_salton_04", 0x964511B7, true], + ["a_m_m_skater_01", 0xD9D7588C, true], + ["a_m_m_skidrow_01", 0x01EEA6BD, true], + ["a_m_m_socenlat_01", 0x0B8D69E3, true], + ["a_m_m_soucent_01", 0x6857C9B7, true], + ["a_m_m_soucent_02", 0x9F6D37E1, true], + ["a_m_m_soucent_03", 0x8BD990BA, true], + ["a_m_m_soucent_04", 0xC2FBFEFE, true], + ["a_m_m_stlat_02", 0xC2A87702, true], + ["a_m_m_tennis_01", 0x546A5344, true], + ["a_m_m_tourist_01", 0xC89F0184, true], + ["a_m_m_tramp_01", 0x1EC93FD0, true], + ["a_m_m_trampbeac_01", 0x53B57EB0, true], + ["a_m_m_tranvest_01", 0xE0E69974, true], + ["a_m_m_tranvest_02", 0xF70EC5C4, true], + ["a_m_o_acult_01", 0x55446010, true], + ["a_m_o_acult_02", 0x4BA14CCA, true], + ["a_m_o_beach_01", 0x8427D398, true], + ["a_m_o_genstreet_01", 0xAD54E7A8, true], + ["a_m_o_ktown_01", 0x1536D95A, true], + ["a_m_o_salton_01", 0x20208E4D, true], + ["a_m_o_soucent_01", 0x2AD8921B, true], + ["a_m_o_soucent_02", 0x4086BD77, true], + ["a_m_o_soucent_03", 0x0E32D8D0, true], + ["a_m_o_tramp_01", 0x174D4245, true], + ["a_m_y_acult_01", 0xB564882B, true], + ["a_m_y_acult_02", 0x80E59F2E, true], + ["a_m_y_beach_01", 0xD1FEB884, true], + ["a_m_y_beach_02", 0x23C7DC11, true], + ["a_m_y_beach_03", 0xE7A963D9, true], + ["a_m_y_beachvesp_01", 0x7E0961B8, true], + ["a_m_y_beachvesp_02", 0xCA56FA52, true], + ["a_m_y_bevhills_01", 0x76284640, true], + ["a_m_y_bevhills_02", 0x668BA707, true], + ["a_m_y_breakdance_01", 0x379F9596, true], + ["a_m_y_busicas_01", 0x9AD32FE9, true], + ["a_m_y_business_01", 0xC99F21C4, true], + ["a_m_y_business_02", 0xB3B3F5E6, true], + ["a_m_y_business_03", 0xA1435105, true], + ["a_m_y_cyclist_01", 0xFDC653C7, true], + ["a_m_y_dhill_01", 0xFF3E88AB, true], + ["a_m_y_downtown_01", 0x2DADF4AA, true], + ["a_m_y_eastsa_01", 0xA4471173, true], + ["a_m_y_eastsa_02", 0x168775F6, true], + ["a_m_y_epsilon_01", 0x77D41A3E, true], + ["a_m_y_epsilon_02", 0xAA82FF9B, true], + ["a_m_y_gay_01", 0xD1CCE036, true], + ["a_m_y_gay_02", 0xA5720781, true], + ["a_m_y_genstreet_01", 0x9877EF71, true], + ["a_m_y_genstreet_02", 0x3521A8D2, true], + ["a_m_y_golfer_01", 0xD71FE131, true], + ["a_m_y_hasjew_01", 0xE16D8F01, true], + ["a_m_y_hiker_01", 0x50F73C0C, true], + ["a_m_y_hippy_01", 0x7D03E617, true], + ["a_m_y_hipster_01", 0x2307A353, true], + ["a_m_y_hipster_02", 0x14D506EE, true], + ["a_m_y_hipster_03", 0x4E4179C6, true], + ["a_m_y_indian_01", 0x2A22FBCE, true], + ["a_m_y_jetski_01", 0x2DB7EEF3, true], + ["a_m_y_juggalo_01", 0x91CA3E2C, true], + ["a_m_y_ktown_01", 0x1AF6542C, true], + ["a_m_y_ktown_02", 0x297FF13F, true], + ["a_m_y_latino_01", 0x132C1A8E, true], + ["a_m_y_methhead_01", 0x696BE0A9, true], + ["a_m_y_mexthug_01", 0x3053E555, true], + ["a_m_y_motox_01", 0x64FDEA7D, true], + ["a_m_y_motox_02", 0x77AC8FDA, true], + ["a_m_y_musclbeac_01", 0x4B652906, true], + ["a_m_y_musclbeac_02", 0xC923247C, true], + ["a_m_y_polynesian_01", 0x8384FC9F, true], + ["a_m_y_roadcyc_01", 0xF561A4C6, true], + ["a_m_y_runner_01", 0x25305EEE, true], + ["a_m_y_runner_02", 0x843D9D0F, true], + ["a_m_y_salton_01", 0xD7606C30, true], + ["a_m_y_skater_01", 0xC1C46677, true], + ["a_m_y_skater_02", 0xAFFAC2E4, true], + ["a_m_y_soucent_01", 0xE716BDCB, true], + ["a_m_y_soucent_02", 0xACA3C8CA, true], + ["a_m_y_soucent_03", 0xC3F0F764, true], + ["a_m_y_soucent_04", 0x8A3703F1, true], + ["a_m_y_stbla_01", 0xCF92ADE9, true], + ["a_m_y_stbla_02", 0x98C7404F, true], + ["a_m_y_stlat_01", 0x8674D5FC, true], + ["a_m_y_stwhi_01", 0x2418C430, true], + ["a_m_y_stwhi_02", 0x36C6E98C, true], + ["a_m_y_sunbathe_01", 0xB7292F0C, true], + ["a_m_y_surfer_01", 0xEAC2C7EE, true], + ["a_m_y_vindouche_01", 0xC19377E7, true], + ["a_m_y_vinewood_01", 0x4B64199D, true], + ["a_m_y_vinewood_02", 0x5D15BD00, true], + ["a_m_y_vinewood_03", 0x1FDF4294, true], + ["a_m_y_vinewood_04", 0x31C9E669, true], + ["a_m_y_yoga_01", 0xAB0A7155, true], + ["cs_amandatownley", 0x95EF18E3, true], + ["cs_andreas", 0xE7565327, true], + ["cs_ashley", 0x26C3D079, true], + ["cs_bankman", 0x9760192E, true], + ["cs_barry", 0x69591CF7, true], + ["cs_beverly", 0xB46EC356, true], + ["cs_brad", 0xEFE5AFE6, true], + ["cs_bradcadaver", 0x7228AF60, true], + ["cs_carbuyer", 0x8CCE790F, true], + ["cs_casey", 0xEA969C40, true], + ["cs_chengsr", 0x30DB9D7B, true], + ["cs_chrisformage", 0xC1F380E6, true], + ["cs_clay", 0xDBCB9834, true], + ["cs_dale", 0x0CE81655, true], + ["cs_davenorton", 0x8587248C, true], + ["cs_debra", 0xECD04FE9, true], + ["cs_denise", 0x6F802738, true], + ["cs_devin", 0x2F016D02, true], + ["cs_dom", 0x4772AF42, true], + ["cs_dreyfuss", 0x3C60A153, true], + ["cs_drfriedlander", 0xA3A35C2F, true], + ["cs_fabien", 0x47035EC1, true], + ["cs_fbisuit_01", 0x585C0B52, true], + ["cs_floyd", 0x062547E7, true], + ["cs_guadalope", 0x0F9513F1, true], + ["cs_gurk", 0xC314F727, true], + ["cs_hunter", 0x5B44892C, true], + ["cs_janet", 0x3034F9E2, true], + ["cs_jewelass", 0x4440A804, true], + ["cs_jimmyboston", 0x039677BD, true], + ["cs_jimmydisanto", 0xB8CC92B4, true], + ["cs_joeminuteman", 0xF09D5E29, true], + ["cs_johnnyklebitz", 0xFA8AB881, true], + ["cs_josef", 0x459762CA, true], + ["cs_josh", 0x450EEF9D, true], + ["cs_karen_daniels", 0x4BAF381C, true], + ["cs_lamardavis", 0x45463A0D, true], + ["cs_lazlow", 0x38951A1B, true], + ["cs_lestercrest", 0xB594F5C3, true], + ["cs_lifeinvad_01", 0x72551375, true], + ["cs_magenta", 0x5816C61A, true], + ["cs_manuel", 0xFBB374CA, true], + ["cs_marnie", 0x574DE134, true], + ["cs_martinmadrazo", 0x43595670, true], + ["cs_maryann", 0x0998C7AD, true], + ["cs_michelle", 0x70AEB9C8, true], + ["cs_milton", 0xB76A330F, true], + ["cs_molly", 0x45918E44, true], + ["cs_movpremf_01", 0x4BBA84D9, true], + ["cs_movpremmale", 0x8D67EE7D, true], + ["cs_mrk", 0xC3CC9A75, true], + ["cs_mrs_thornhill", 0x4F921E6E, true], + ["cs_mrsphillips", 0xCBFDA3CF, true], + ["cs_natalia", 0x4EFEB1F0, true], + ["cs_nervousron", 0x7896DA94, true], + ["cs_nigel", 0xE1479C0B, true], + ["cs_old_man1a", 0x1EEC7BDC, true], + ["cs_old_man2", 0x98F9E770, true], + ["cs_omega", 0x8B70B405, true], + ["cs_orleans", 0xAD340F5A, true], + ["cs_paper", 0x6B38B8F8, true], + ["cs_patricia", 0xDF8B1301, true], + ["cs_priest", 0x4D6DE57E, true], + ["cs_prolsec_02", 0x1E9314A2, true], + ["cs_russiandrunk", 0x46521A32, true], + ["cs_siemonyetarian", 0xC0937202, true], + ["cs_solomon", 0xF6D1E04E, true], + ["cs_stevehains", 0xA4E0A1FE, true], + ["cs_stretch", 0x893D6805, true], + ["cs_tanisha", 0x42FE5370, true], + ["cs_taocheng", 0x8864083D, true], + ["cs_taostranslator", 0x53536529, true], + ["cs_tenniscoach", 0x5C26040A, true], + ["cs_terry", 0x3A5201C5, true], + ["cs_tom", 0x69E8ABC3, true], + ["cs_tomepsilon", 0x8C0FD4E2, true], + ["cs_tracydisanto", 0x0609B130, true], + ["cs_wade", 0xD266D9D6, true], + ["cs_zimbor", 0xEAACAAF0, true], + ["csb_abigail", 0x89768941, true], + ["csb_agent", 0xD770C9B4, false], + ["csb_anita", 0x0703F106, true], + ["csb_anton", 0xA5C787B6, true], + ["csb_ballasog", 0xABEF0004, true], + ["csb_bride", 0x82BF7EA1, true], + ["csb_burgerdrug", 0x8CDCC057, true], + ["csb_car3guy1", 0x04430687, true], + ["csb_car3guy2", 0x1383A508, true], + ["csb_chef", 0xA347CA8A, true], + ["csb_chef2", 0xAE5BE23A, true], + ["csb_chin_goon", 0xA8C22996, true], + ["csb_cletus", 0xCAE9E5D5, true], + ["csb_cop", 0x9AB35F63, false], + ["csb_customer", 0xA44F6F8B, true], + ["csb_denise_friend", 0xB58D2529, true], + ["csb_fos_rep", 0x1BCC157B, true], + ["csb_g", 0xA28E71D7, true], + ["csb_groom", 0x7AAB19D2, true], + ["csb_grove_str_dlr", 0xE8594E22, true], + ["csb_hao", 0xEC9E8F1C, true], + ["csb_hugh", 0x6F139B54, true], + ["csb_imran", 0xE3420BDB, true], + ["csb_jackhowitzer", 0x44BC7BB1, true], + ["csb_janitor", 0xC2005A40, true], + ["csb_maude", 0xBCC475CB, true], + ["csb_money", 0x989DFD9A, true], + ["csb_mp_agent14", 0x6DBBFC8B, false], + ["csb_mweather", 0x613E626C, true], + ["csb_ortega", 0xC0DB04CF, true], + ["csb_oscar", 0xF41F399B, true], + ["csb_paige", 0x5B1FA0C3, true], + ["csb_popov", 0x617D89E2, true], + ["csb_porndudes", 0x2F4AFE35, true], + ["csb_prologuedriver", 0xF00B49DB, true], + ["csb_prolsec", 0x7FA2F024, true], + ["csb_ramp_gang", 0xC2800DBE, true], + ["csb_ramp_hic", 0x858C94B8, true], + ["csb_ramp_hipster", 0x21F58BB4, true], + ["csb_ramp_marine", 0x616C97B9, true], + ["csb_ramp_mex", 0xF64ED7D0, true], + ["csb_rashcosvki", 0x188099A9, true], + ["csb_reporter", 0x2E420A24, true], + ["csb_roccopelosi", 0xAA64168C, true], + ["csb_screen_writer", 0x8BE12CEC, true], + ["csb_stripper_01", 0xAEEA76B5, true], + ["csb_stripper_02", 0x81441B71, true], + ["csb_tonya", 0x6343DD19, true], + ["csb_trafficwarden", 0xDE2937F3, false], + ["csb_undercover", 0xEF785A6A, true], + ["csb_vagspeak", 0x48FF4CA9, true], + ["g_f_importexport_01", 0x84A1B11A, true], + ["g_f_y_ballas_01", 0x158C439C, true], + ["g_f_y_families_01", 0x4E0CE5D3, true], + ["g_f_y_lost_01", 0xFD5537DE, true], + ["g_f_y_vagos_01", 0x5AA42C21, true], + ["g_m_importexport_01", 0xBCA2CCEA, true], + ["g_m_m_armboss_01", 0xF1E823A2, true], + ["g_m_m_armgoon_01", 0xFDA94268, true], + ["g_m_m_armlieut_01", 0xE7714013, true], + ["g_m_m_chemwork_01", 0xF6157D8F, true], + ["g_m_m_chiboss_01", 0xB9DD0300, true], + ["g_m_m_chicold_01", 0x106D9A99, true], + ["g_m_m_chigoon_01", 0x7E4F763F, true], + ["g_m_m_chigoon_02", 0xFF71F826, true], + ["g_m_m_korboss_01", 0x352A026F, true], + ["g_m_m_mexboss_01", 0x5761F4AD, true], + ["g_m_m_mexboss_02", 0x4914D813, true], + ["g_m_y_armgoon_02", 0xC54E878A, true], + ["g_m_y_azteca_01", 0x68709618, true], + ["g_m_y_ballaeast_01", 0xF42EE883, true], + ["g_m_y_ballaorig_01", 0x231AF63F, true], + ["g_m_y_ballasout_01", 0x23B88069, true], + ["g_m_y_famca_01", 0xE83B93B7, true], + ["g_m_y_famdnf_01", 0xDB729238, true], + ["g_m_y_famfor_01", 0x84302B09, true], + ["g_m_y_korean_01", 0x247502A9, true], + ["g_m_y_korean_02", 0x8FEDD989, true], + ["g_m_y_korlieut_01", 0x7CCBE17A, true], + ["g_m_y_lost_01", 0x4F46D607, true], + ["g_m_y_lost_02", 0x3D843282, true], + ["g_m_y_lost_03", 0x32B11CDC, true], + ["g_m_y_mexgang_01", 0xBDDD5546, true], + ["g_m_y_mexgoon_01", 0x26EF3426, true], + ["g_m_y_mexgoon_02", 0x31A3498E, true], + ["g_m_y_mexgoon_03", 0x964D12DC, true], + ["g_m_y_pologoon_01", 0x4F3FBA06, true], + ["g_m_y_pologoon_02", 0xA2E86156, true], + ["g_m_y_salvaboss_01", 0x905CE0CA, true], + ["g_m_y_salvagoon_01", 0x278C8CB7, true], + ["g_m_y_salvagoon_02", 0x3273A285, true], + ["g_m_y_salvagoon_03", 0x03B8C510, true], + ["g_m_y_strpunk_01", 0xFD1C49BB, true], + ["g_m_y_strpunk_02", 0x0DA1EAC6, true], + ["hc_driver", 0x3B474ADF, true], + ["hc_gunman", 0x0B881AEE, true], + ["hc_hacker", 0x99BB00F8, true], + ["ig_abigail", 0x400AEC41, true], + ["ig_agent", 0x246AF208, false], + ["ig_amandatownley", 0x6D1E15F7, true], + ["ig_andreas", 0x47E4EEA0, true], + ["ig_ashley", 0x7EF440DB, true], + ["ig_avon", 0xFCE270C2, true], + ["ig_ballasog", 0xA70B4A92, true], + ["ig_bankman", 0x909D9E7F, true], + ["ig_barry", 0x2F8845A3, true], + ["ig_benny", 0xC4B715D2, true], + ["ig_bestmen", 0x5746CD96, true], + ["ig_beverly", 0xBDA21E5C, true], + ["ig_brad", 0xBDBB4922, true], + ["ig_bride", 0x6162EC47, true], + ["ig_car3guy1", 0x84F9E937, true], + ["ig_car3guy2", 0x75C34ACA, true], + ["ig_casey", 0xE0FA2554, true], + ["ig_chef", 0x49EADBF6, true], + ["ig_chef2", 0x85889AC3, true], + ["ig_chengsr", 0xAAE4EA7B, true], + ["ig_chrisformage", 0x286E54A7, true], + ["ig_clay", 0x6CCFE08A, true], + ["ig_claypain", 0x9D0087A8, true], + ["ig_cletus", 0xE6631195, true], + ["ig_dale", 0x467415E9, true], + ["ig_davenorton", 0x15CD4C33, true], + ["ig_denise", 0x820B33BD, true], + ["ig_devin", 0x7461A0B0, true], + ["ig_dom", 0x9C2DB088, true], + ["ig_dreyfuss", 0xDA890932, true], + ["ig_drfriedlander", 0xCBFC0DF5, true], + ["ig_fabien", 0xD090C350, true], + ["ig_fbisuit_01", 0x3AE4A33B, false], + ["ig_floyd", 0xB1B196B2, true], + ["ig_g", 0x841BA933, true], + ["ig_groom", 0xFECE8B85, true], + ["ig_hao", 0x65978363, true], + ["ig_hunter", 0xCE1324DE, true], + ["ig_janet", 0x0D6D9C49, true], + ["ig_jay_norris", 0x7A32EE74, true], + ["ig_jewelass", 0x0F5D26BB, true], + ["ig_jimmyboston", 0xEDA0082D, true], + ["ig_jimmydisanto", 0x570462B9, true], + ["ig_joeminuteman", 0xBE204C9B, true], + ["ig_johnnyklebitz", 0x87CA80AE, true], + ["ig_josef", 0xE11A9FB4, true], + ["ig_josh", 0x799E9EEE, true], + ["ig_karen_daniels", 0xEB51D959, true], + ["ig_kerrymcintosh", 0x5B3BD90D, true], + ["ig_lamardavis", 0x65B93076, true], + ["ig_lazlow", 0xDFE443E5, true], + ["ig_lestercrest_2", 0x6E42FD26, true], + ["ig_lestercrest", 0x4DA6E849, true], + ["ig_lifeinvad_01", 0x5389A93C, true], + ["ig_lifeinvad_02", 0x27BD51D4, true], + ["ig_magenta", 0xFCDC910A, true], + ["ig_malc", 0xF1BCA919, true], + ["ig_manuel", 0xFD418E10, true], + ["ig_marnie", 0x188232D0, true], + ["ig_maryann", 0xA36F9806, true], + ["ig_maude", 0x3BE8287E, true], + ["ig_michelle", 0xBF9672F4, true], + ["ig_milton", 0xCB3059B2, true], + ["ig_molly", 0xAF03DDE1, true], + ["ig_money", 0x37FACDA6, true], + ["ig_mp_agent14", 0xFBF98469, false], + ["ig_mrk", 0xEDDCAB6D, true], + ["ig_mrs_thornhill", 0x1E04A96B, true], + ["ig_mrsphillips", 0x3862EEA8, true], + ["ig_natalia", 0xDE17DD3B, true], + ["ig_nervousron", 0xBD006AF1, true], + ["ig_nigel", 0xC8B7167D, true], + ["ig_old_man1a", 0x719D27F4, true], + ["ig_old_man2", 0xEF154C47, true], + ["ig_omega", 0x60E6A7D8, true], + ["ig_oneil", 0x2DC6D3E7, true], + ["ig_orleans", 0x61D4C771, true], + ["ig_ortega", 0x26A562B7, true], + ["ig_paige", 0x154FCF3F, true], + ["ig_paper", 0x999B00C6, true], + ["ig_patricia", 0xC56E118C, true], + ["ig_popov", 0x267630FE, true], + ["ig_priest", 0x6437E77D, true], + ["ig_prolsec_02", 0x27B3AD75, true], + ["ig_ramp_gang", 0xE52E126C, true], + ["ig_ramp_hic", 0x45753032, true], + ["ig_ramp_hipster", 0xDEEF9F6E, true], + ["ig_ramp_mex", 0xE6AC74A4, true], + ["ig_rashcosvki", 0x380C4DE6, true], + ["ig_roccopelosi", 0xD5BA52FF, true], + ["ig_russiandrunk", 0x3D0A5EB1, true], + ["ig_screen_writer", 0xFFE63677, true], + ["ig_siemonyetarian", 0x4C7B2F05, true], + ["ig_solomon", 0x86BDFE26, true], + ["ig_stevehains", 0x382121C8, true], + ["ig_stretch", 0x36984358, true], + ["ig_talina", 0xE793C8E8, true], + ["ig_tanisha", 0x0D810489, true], + ["ig_taocheng", 0xDC5C5EA5, true], + ["ig_taostranslator", 0x7C851464, true], + ["ig_tenniscoach", 0xA23B5F57, true], + ["ig_terry", 0x67000B94, true], + ["ig_tomepsilon", 0xCD777AAA, true], + ["ig_tonya", 0xCAC85344, true], + ["ig_tracydisanto", 0xDE352A35, true], + ["ig_trafficwarden", 0x5719786D, false], + ["ig_tylerdix", 0x5265F707, true], + ["ig_vagspeak", 0xF9FD068C, true], + ["ig_wade", 0x92991B72, true], + ["ig_zimbor", 0x0B34D6F5, true], + ["mp_f_boatstaff_01", 0x3293B9CE, true], + ["mp_f_cardesign_01", 0x242C34A7, true], + ["mp_f_chbar_01", 0xC3F6E385, true], + ["mp_f_cocaine_01", 0x4B657AF8, true], + ["mp_f_counterfeit_01", 0xB788F1F5, true], + ["mp_f_deadhooker", 0x73DEA88B, false], + ["mp_f_execpa_01", 0x432CA064, true], + ["mp_f_execpa_02", 0x5972CCF0, true], + ["mp_f_forgery_01", 0x781A3CF8, true], + ["mp_f_freemode_01", 0x9C9EFFD8, true], + ["mp_f_helistaff_01", 0x19B6FF06, false], + ["mp_f_meth_01", 0xD2B27EC1, true], + ["mp_f_misty_01", 0xD128FF9D, true], + ["mp_f_stripperlite", 0x2970A494, true], + ["mp_f_weed_01", 0xB26573A3, true], + ["mp_g_m_pros_01", 0x6C9DD7C9, true], + ["mp_m_avongoon", 0x9C13CB95, true], + ["mp_m_boatstaff_01", 0xC85F0A88, true], + ["mp_m_bogdangoon", 0x4D5696F7, true], + ["mp_m_claude_01", 0xC0F371B7, true], + ["mp_m_cocaine_01", 0x56D38F95, true], + ["mp_m_counterfeit_01", 0x9855C974, true], + ["mp_m_exarmy_01", 0x45348DBB, true], + ["mp_m_execpa_01", 0x3E8417BC, true], + ["mp_m_famdd_01", 0x33A464E5, true], + ["mp_m_fibsec_01", 0x5CDEF405, false], + ["mp_m_forgery_01", 0x613E709B, true], + ["mp_m_freemode_01", 0x705E61F2, true], + ["mp_m_g_vagfun_01", 0xC4A617BD, true], + ["mp_m_marston_01", 0x38430167, true], + ["mp_m_meth_01", 0xEDB42F3F, true], + ["mp_m_niko_01", 0xEEDACFC9, false], + ["mp_m_securoguard_01", 0xDA2C984E, false], + ["mp_m_shopkeep_01", 0x18CE57D0, false], + ["mp_m_waremech_01", 0xF7A74139, true], + ["mp_m_weapexp_01", 0x36EA5B09, true], + ["mp_m_weapwork_01", 0x4186506E, true], + ["mp_m_weed_01", 0x917ED459, true], + ["mp_s_m_armoured_01", 0xCDEF5408, false], + ["player_one", 0x9B22DBAF, false], + ["player_two", 0x9B810FA2, false], + ["player_zero", 0x0D7114C9, false], + ["s_f_m_fembarber", 0x163B875B, true], + ["s_f_m_maid_01", 0xE093C5C6, true], + ["s_f_m_shop_high", 0xAE47E4B0, true], + ["s_f_m_sweatshop_01", 0x312B5BC0, true], + ["s_f_y_airhostess_01", 0x5D71A46F, true], + ["s_f_y_bartender_01", 0x780C01BD, true], + ["s_f_y_baywatch_01", 0x4A8E5536, true], + ["s_f_y_cop_01", 0x15F8700D, false], + ["s_f_y_factory_01", 0x69F46BF3, true], + ["s_f_y_hooker_01", 0x028ABF95, true], + ["s_f_y_hooker_02", 0x14C3E407, true], + ["s_f_y_hooker_03", 0x031640AC, true], + ["s_f_y_migrant_01", 0xD55B2BF5, true], + ["s_f_y_movprem_01", 0x2300C816, true], + ["s_f_y_ranger_01", 0x9FC7F637, false], + ["s_f_y_scrubs_01", 0xAB594AB6, false], + ["s_f_y_sheriff_01", 0x4161D042, false], + ["s_f_y_shop_low", 0xA96E2604, true], + ["s_f_y_shop_mid", 0x3EECBA5D, true], + ["s_f_y_stripper_01", 0x52580019, true], + ["s_f_y_stripper_02", 0x6E0FB794, true], + ["s_f_y_stripperlite", 0x5C14EDFA, true], + ["s_f_y_sweatshop_01", 0x8502B6B2, true], + ["s_m_m_ammucountry", 0x0DE9A30A, true], + ["s_m_m_armoured_01", 0x95C76ECD, false], + ["s_m_m_armoured_02", 0x63858A4A, false], + ["s_m_m_autoshop_01", 0x040EABE3, true], + ["s_m_m_autoshop_02", 0xF06B849D, true], + ["s_m_m_bouncer_01", 0x9FD4292D, true], + ["s_m_m_ccrew_01", 0xC9E5F56B, true], + ["s_m_m_chemsec_01", 0x2EFEAFD5, true], + ["s_m_m_ciasec_01", 0x625D6958, false], + ["s_m_m_cntrybar_01", 0x1A021B83, true], + ["s_m_m_dockwork_01", 0x14D7B4E0, false], + ["s_m_m_doctor_01", 0xD47303AC, false], + ["s_m_m_fiboffice_01", 0xEDBC7546, false], + ["s_m_m_fiboffice_02", 0x26F067AD, false], + ["s_m_m_fibsec_01", 0x7B8B434B, false], + ["s_m_m_gaffer_01", 0xA956BD9E, true], + ["s_m_m_gardener_01", 0x49EA5685, true], + ["s_m_m_gentransport", 0x1880ED06, true], + ["s_m_m_hairdress_01", 0x418DFF92, true], + ["s_m_m_highsec_01", 0xF161D212, true], + ["s_m_m_highsec_02", 0x2930C1AB, true], + ["s_m_m_janitor", 0xA96BD9EC, true], + ["s_m_m_lathandy_01", 0x9E80D2CE, true], + ["s_m_m_lifeinvad_01", 0xDE0077FD, true], + ["s_m_m_linecook", 0xDB9C0997, true], + ["s_m_m_lsmetro_01", 0x765AAAE4, false], + ["s_m_m_mariachi_01", 0x7EA4FFA6, true], + ["s_m_m_marine_01", 0xF2DAA2ED, true], + ["s_m_m_marine_02", 0xF0259D83, true], + ["s_m_m_migrant_01", 0xED0CE4C6, true], + ["s_m_m_movalien_01", 0x64611296, true], + ["s_m_m_movprem_01", 0xD85E6D28, true], + ["s_m_m_movspace_01", 0xE7B31432, true], + ["s_m_m_paramedic_01", 0xB353629E, false], + ["s_m_m_pilot_01", 0xE75B4B1C, false], + ["s_m_m_pilot_02", 0xF63DE8E1, false], + ["s_m_m_postal_01", 0x62599034, false], + ["s_m_m_postal_02", 0x7367324F, false], + ["s_m_m_prisguard_01", 0x56C96FC6, false], + ["s_m_m_scientist_01", 0x4117D39B, false], + ["s_m_m_security_01", 0xD768B228, false], + ["s_m_m_snowcop_01", 0x1AE8BB58, false], + ["s_m_m_strperf_01", 0x795AC7A8, true], + ["s_m_m_strpreach_01", 0x1C0077FB, true], + ["s_m_m_strvend_01", 0xCE9113A9, true], + ["s_m_m_trucker_01", 0x59511A6C, true], + ["s_m_m_ups_01", 0x9FC37F22, false], + ["s_m_m_ups_02", 0xD0BDE116, false], + ["s_m_o_busker_01", 0xAD9EF1BB, true], + ["s_m_y_airworker", 0x62018559, false], + ["s_m_y_ammucity_01", 0x9E08633D, true], + ["s_m_y_armymech_01", 0x62CC28E2, false], + ["s_m_y_autopsy_01", 0xB2273D4E, false], + ["s_m_y_barman_01", 0xE5A11106, true], + ["s_m_y_baywatch_01", 0x0B4A6862, true], + ["s_m_y_blackops_01", 0xB3F3EE34, false], + ["s_m_y_blackops_02", 0x7A05FA59, false], + ["s_m_y_blackops_03", 0x5076A73B, false], + ["s_m_y_busboy_01", 0xD8F9CD47, true], + ["s_m_y_chef_01", 0x0F977CEB, true], + ["s_m_y_clown_01", 0x04498DDE, true], + ["s_m_y_construct_01", 0xD7DA9E99, true], + ["s_m_y_construct_02", 0xC5FEFADE, true], + ["s_m_y_cop_01", 0x5E3DA4A4, false], + ["s_m_y_dealer_01", 0xE497BBEF, true], + ["s_m_y_devinsec_01", 0x9B557274, true], + ["s_m_y_dockwork_01", 0x867639D1, true], + ["s_m_y_doorman_01", 0x22911304, true], + ["s_m_y_dwservice_01", 0x75D30A91, true], + ["s_m_y_dwservice_02", 0xF5908A06, true], + ["s_m_y_factory_01", 0x4163A158, true], + ["s_m_y_fireman_01", 0xB6B1EDA8, false], + ["s_m_y_garbage", 0xEE75A00F, false], + ["s_m_y_grip_01", 0x309E7DEA, true], + ["s_m_y_hwaycop_01", 0x739B1EF5, false], + ["s_m_y_marine_01", 0x65793043, true], + ["s_m_y_marine_02", 0x58D696FE, true], + ["s_m_y_marine_03", 0x72C0CAD2, true], + ["s_m_y_mime", 0x3CDCA742, true], + ["s_m_y_pestcont_01", 0x48114518, true], + ["s_m_y_pilot_01", 0xAB300C07, true], + ["s_m_y_prismuscl_01", 0x5F2113A1, true], + ["s_m_y_prisoner_01", 0xB1BB9B59, true], + ["s_m_y_ranger_01", 0xEF7135AE, true], + ["s_m_y_robber_01", 0xC05E1399, true], + ["s_m_y_sheriff_01", 0xB144F9B9, false], + ["s_m_y_shop_mask", 0x6E122C06, true], + ["s_m_y_strvend_01", 0x927F2323, true], + ["s_m_y_swat_01", 0x8D8F1B10, true], + ["s_m_y_uscg_01", 0xCA0050E9, true], + ["s_m_y_valet_01", 0x3B96F23E, true], + ["s_m_y_waiter_01", 0xAD4C724C, true], + ["s_m_y_winclean_01", 0x550D8D9D, true], + ["s_m_y_xmech_01", 0x441405EC, true], + ["s_m_y_xmech_02_mp", 0x69147A0D, true], + ["s_m_y_xmech_02", 0xBE20FA04, true], + ["u_f_m_corpse_01", 0x2E140314, true], + ["u_f_m_drowned_01", 0xD7F37609, true], + ["u_f_m_miranda", 0x414FA27B, true], + ["u_f_m_promourn_01", 0xA20899E7, true], + ["u_f_o_moviestar", 0x35578634, true], + ["u_f_o_prolhost_01", 0xC512DD23, true], + ["u_f_y_bikerchic", 0xFA389D4F, true], + ["u_f_y_comjane", 0xB6AA85CE, true], + ["u_f_y_corpse_01", 0x9C70109D, true], + ["u_f_y_corpse_02", 0x0D9C72F8, true], + ["u_f_y_hotposh_01", 0x969B6DFE, true], + ["u_f_y_jewelass_01", 0xF0D4BE2E, true], + ["u_f_y_mistress", 0x5DCA2528, true], + ["u_f_y_poppymich", 0x23E9A09E, true], + ["u_f_y_princess", 0xD2E3A284, true], + ["u_f_y_spyactress", 0x5B81D86C, true], + ["u_m_m_aldinapoli", 0xF0EC56E2, true], + ["u_m_m_bankman", 0xC306D6F5, true], + ["u_m_m_bikehire_01", 0x76474545, true], + ["u_m_m_doa_01", 0x621E6BFD, true], + ["u_m_m_edtoh", 0x2A797197, true], + ["u_m_m_fibarchitect", 0x342333D3, false], + ["u_m_m_filmdirector", 0x2B6E1BB6, true], + ["u_m_m_glenstank_01", 0x45BB1666, true], + ["u_m_m_griff_01", 0xC454BCBB, true], + ["u_m_m_jesus_01", 0xCE2CB751, true], + ["u_m_m_jewelsec_01", 0xACCCBDB6, true], + ["u_m_m_jewelthief", 0xE6CC3CDC, true], + ["u_m_m_markfost", 0x1C95CB0B, true], + ["u_m_m_partytarget", 0x81F74DE7, true], + ["u_m_m_prolsec_01", 0x709220C7, true], + ["u_m_m_promourn_01", 0xCE96030B, true], + ["u_m_m_rivalpap", 0x60D5D6DA, true], + ["u_m_m_spyactor", 0xAC0EA5D8, true], + ["u_m_m_streetart_01", 0x6C19E962, true], + ["u_m_m_willyfist", 0x90769A8F, true], + ["u_m_o_filmnoir", 0x2BACC2DB, true], + ["u_m_o_finguru_01", 0x46E39E63, true], + ["u_m_o_taphillbilly", 0x9A1E5E52, true], + ["u_m_o_tramp_01", 0x6A8F1F9B, true], + ["u_m_y_abner", 0xF0AC2626, true], + ["u_m_y_antonb", 0xCF623A2C, true], + ["u_m_y_babyd", 0xDA116E7E, true], + ["u_m_y_baygor", 0x5244247D, true], + ["u_m_y_burgerdrug_01", 0x8B7D3766, true], + ["u_m_y_chip", 0x24604B2B, true], + ["u_m_y_corpse_01", 0x94C2A03F, true], + ["u_m_y_cyclist_01", 0x2D0EFCEB, true], + ["u_m_y_fibmugger_01", 0x85B9C668, true], + ["u_m_y_guido_01", 0xC6B49A2F, true], + ["u_m_y_gunvend_01", 0xB3229752, true], + ["u_m_y_hippie_01", 0xF041880B, true], + ["u_m_y_imporage", 0x348065F5, true], + ["u_m_y_juggernaut_01", 0x90EF5134, true], + ["u_m_y_justin", 0x7DC3908F, true], + ["u_m_y_mani", 0xC8BB1E52, true], + ["u_m_y_militarybum", 0x4705974A, true], + ["u_m_y_paparazzi", 0x5048B328, true], + ["u_m_y_party_01", 0x36E70600, true], + ["u_m_y_pogo_01", 0xDC59940D, true], + ["u_m_y_prisoner_01", 0x7B9B4BC0, true], + ["u_m_y_proldriver_01", 0x855E36A3, true], + ["u_m_y_rsranger_01", 0x3C438CD2, true], + ["u_m_y_sbike", 0x6AF4185D, true], + ["u_m_y_staggrm_01", 0x9194CE03, true], + ["u_m_y_tattoo_01", 0x94AE2B8C, true], + ["u_m_y_zombie_01", 0xAC4B4506, true], + ] }, vehicles: { [VRR_GAME_GTA_III]: [ @@ -2351,6 +3234,748 @@ let gameData = { ["TruckBxx00.i3d" , "Bolt Truck(Atlantic Import)" ], ["truckBx00.i3d" , "Bolt Truck" ], ], + [VRR_GAME_GTA_V]: [ + ["adder", 3078201489], + ["airbus", 1283517198], + ["airtug", 1560980623], + ["akula", 1181327175], + ["akuma", 1672195559], + ["alpha", 767087018], + ["alphaz1", 2771347558], + ["alkonost", 3929093893], + ["ambulance", 1171614426], + ["annihilator2", 295054921], + ["annihilator", 837858166], + ["apc", 562680400], + ["ardent", 159274291], + ["armytanker", 3087536137], + ["armytrailer2", 2657817814], + ["armytrailer", 2818520053], + ["asbo", 1118611807], + ["asea2", 2487343317], + ["asea", 2485144969], + ["asterope", 2391954683], + ["autarch", 3981782132], + ["avarus", 2179174271], + ["avenger2", 408970549], + ["avenger", 2176659152], + ["avisa", 2588363614], + ["bagger", 2154536131], + ["baletrailer", 3895125590], + ["baller2", 142944341], + ["baller3", 1878062887], + ["baller4", 634118882], + ["baller5", 470404958], + ["baller6", 666166960], + ["baller", 3486135912], + ["banshee2", 633712403], + ["banshee", 3253274834], + ["barracks2", 1074326203], + ["barracks3", 630371791], + ["barracks", 3471458123], + ["barrage", 4081974053], + ["bati2", 3403504941], + ["bati", 4180675781], + ["benson", 2053223216], + ["besra", 1824333165], + ["bestiagts", 1274868363], + ["bf400", 86520421], + ["bfinjection", 1126868326], + ["biff", 850991848], + ["bifta", 3945366167], + ["bison2", 2072156101], + ["bison3", 1739845664], + ["bison", 4278019151], + ["bjxl", 850565707], + ["blade", 3089165662], + ["blazer2", 4246935337], + ["blazer3", 3025077634], + ["blazer4", 3854198872], + ["blazer5", 2704629607], + ["blazer", 2166734073], + ["blimp2", 3681241380], + ["blimp3", 3987008919], + ["blimp", 4143991942], + ["blista2", 1039032026], + ["blista3", 3703315515], + ["blista", 3950024287], + ["bmx", 1131912276], + ["boattrailer", 524108981], + ["bobcatxl", 1069929536], + ["bodhi2", 2859047862], + ["bombushka", 4262088844], + ["boxville2", 4061868990], + ["boxville3", 121658888], + ["boxville4", 444171386], + ["boxville5", 682434785], + ["boxville", 2307837162], + ["brawler", 2815302597], + ["brickade", 3989239879], + ["brioso2", 1429622905], + ["brioso", 1549126457], + ["bruiser2", 2600885406], + ["bruiser3", 2252616474], + ["bruiser", 668439077], + ["brutus2", 2403970600], + ["brutus3", 2038858402], + ["brutus", 2139203625], + ["btype2", 3463132580], + ["btype3", 3692679425], + ["btype", 117401876], + ["buccaneer2", 3281516360], + ["buccaneer", 3612755468], + ["buffalo2", 736902334], + ["buffalo3", 237764926], + ["buffalo", 3990165190], + ["bulldozer", 1886712733], + ["bullet", 2598821281], + ["burrito2", 3387490166], + ["burrito3", 2551651283], + ["burrito4", 893081117], + ["burrito5", 1132262048], + ["burrito", 2948279460], + ["bus", 3581397346], + ["buzzard2", 745926877], + ["buzzard", 788747387], + ["cablecar", 3334677549], + ["caddy2", 3757070668], + ["caddy3", 3525819835], + ["caddy", 1147287684], + ["camper", 1876516712], + ["calico", 3101054893], + ["caracara2", 2945871676], + ["caracara", 1254014755], + ["carbonizzare", 2072687711], + ["carbonrs", 11251904], + ["cargobob2", 1621617168], + ["cargobob3", 1394036463], + ["cargobob4", 2025593404], + ["cargobob", 4244420235], + ["cargoplane", 368211810], + ["casco", 941800958], + ["cavalcade2", 3505073125], + ["cavalcade", 2006918058], + ["cerberus2", 679453769], + ["cerberus3", 1909700336], + ["cerberus", 3493417227], + ["cheburek", 3306466016], + ["cheetah2", 223240013], + ["cheetah", 2983812512], + ["chernobog", 3602674979], + ["chimera", 6774487], + ["chino2", 2933279331], + ["chino", 349605904], + ["cliffhanger", 390201602], + ["clique", 2728360112], + ["club", 2196012677], + ["coach", 2222034228], + ["cog552", 704435172], + ["cog55", 906642318], + ["cogcabrio", 330661258], + ["cognoscenti2", 3690124666], + ["cognoscenti", 2264796000], + ["comet2", 3249425686], + ["comet3", 2272483501], + ["comet4", 1561920505], + ["comet5", 661493923], + ["comet6", 2568944644], + ["contender", 683047626], + ["coquette2", 1011753235], + ["coquette3", 784565758], + ["coquette4", 2566281822], + ["coquette", 108773431], + ["cruiser", 448402357], + ["crusader", 321739290], + ["cuban800", 3650256867], + ["cutter", 3288047904], + ["cyclone", 1392481335], + ["cypher", 1755697647], + ["daemon2", 2890830793], + ["daemon", 2006142190], + ["deathbike2", 2482017624], + ["deathbike3", 2920466844], + ["deathbike", 4267640610], + ["defiler", 822018448], + ["deluxo", 1483171323], + ["deveste", 1591739866], + ["deviant", 1279262537], + ["diablous2", 1790834270], + ["diablous", 4055125828], + ["dilettante2", 1682114128], + ["dilettante", 3164157193], + ["dinghy2", 276773164], + ["dinghy3", 509498602], + ["dinghy4", 867467158], + ["dinghy5", 3314393930], + ["dinghy", 1033245328], + ["dloader", 1770332643], + ["docktrailer", 2154757102], + ["docktug", 3410276810], + ["dodo", 3393804037], + ["dominator2", 3379262425], + ["dominator3", 3308022675], + ["dominator4", 3606777648], + ["dominator5", 2919906639], + ["dominator6", 3001042683], + ["dominator7", 426742808], + ["dominator8", 736672010], + ["dominator", 80636076], + ["double", 2623969160], + ["drafter", 686471183], + ["dubsta2", 3900892662], + ["dubsta3", 3057713523], + ["dubsta", 1177543287], + ["dukes2", 3968823444], + ["dukes3", 2134119907], + ["dukes", 723973206], + ["dump", 2164484578], + ["dune2", 534258863], + ["dune3", 1897744184], + ["dune4", 3467805257], + ["dune5", 3982671785], + ["dune", 2633113103], + ["duster", 970356638], + ["dynasty", 310284501], + ["elegy2", 3728579874], + ["elegy", 196747873], + ["ellie", 3027423925], + ["emerus", 1323778901], + ["emperor2", 2411965148], + ["emperor3", 3053254478], + ["emperor", 3609690755], + ["enduro", 1753414259], + ["entity2", 2174267100], + ["entityxf", 3003014393], + ["esskey", 2035069708], + ["euros", 2038480341], + ["everon", 2538945576], + ["exemplar", 4289813342], + ["f620", 3703357000], + ["faction2", 2504420315], + ["faction3", 2255212070], + ["faction", 2175389151], + ["fagaloa", 1617472902], + ["faggio2", 55628203], + ["faggio3", 3005788552], + ["faggio", 2452219115], + ["fbi2", 2647026068], + ["fbi", 1127131465], + ["fcr2", 3537231886], + ["fcr", 627535535], + ["felon2", 4205676014], + ["felon", 3903372712], + ["feltzer2", 2299640309], + ["feltzer3", 2728226064], + ["firetruk", 1938952078], + ["fixter", 3458454463], + ["flashgt", 3035832600], + ["flatbed", 1353720154], + ["fmj", 1426219628], + ["forklift", 1491375716], + ["formula2", 2334210311], + ["formula", 340154634], + ["fq2", 3157435195], + ["freecrawler", 4240635011], + ["freight", 1030400667], + ["freightcar", 184361638], + ["freightcar2", 3186376089], + ["freightcont1", 920453016], + ["freightcont2", 240201337], + ["freightgrain", 642617954], + ["freighttrailer", 3517691494], + ["frogger2", 1949211328], + ["frogger", 744705981], + ["fugitive", 1909141499], + ["furia", 960812448], + ["furoregt", 3205927392], + ["fusilade", 499169875], + ["futo", 2016857647], + ["futo2", 2787736776], + ["gargoyle", 741090084], + ["gauntlet2", 349315417], + ["gauntlet3", 722226637], + ["gauntlet4", 1934384720], + ["gauntlet5", 2172320429], + ["gauntlet", 2494797253], + ["gb200", 1909189272], + ["gburrito2", 296357396], + ["gburrito", 2549763894], + ["glendale2", 3381377750], + ["glendale", 75131841], + ["gp1", 1234311532], + ["graintrailer", 1019737494], + ["granger", 2519238556], + ["gresley", 2751205197], + ["growler", 1304459735], + ["gt500", 2215179066], + ["guardian", 2186977100], + ["habanero", 884422927], + ["hakuchou2", 4039289119], + ["hakuchou", 1265391242], + ["halftrack", 4262731174], + ["handler", 444583674], + ["hauler2", 387748548], + ["hauler", 1518533038], + ["havok", 2310691317], + ["hellion", 3932816511], + ["hermes", 15219735], + ["hexer", 301427732], + ["hotknife", 37348240], + ["hotring", 1115909093], + ["howard", 3287439187], + ["hunter", 4252008158], + ["huntley", 486987393], + ["hustler", 600450546], + ["hydra", 970385471], + ["imorgon", 3162245632], + ["impaler2", 1009171724], + ["impaler3", 2370166601], + ["impaler4", 2550461639], + ["impaler", 3001042683], + ["imperator2", 1637620610], + ["imperator3", 3539435063], + ["imperator", 444994115], + ["infernus2", 2889029532], + ["infernus", 418536135], + ["ingot", 3005245074], + ["innovation", 4135840458], + ["insurgent2", 2071877360], + ["insurgent3", 2370534026], + ["insurgent", 2434067162], + ["intruder", 886934177], + ["issi2", 3117103977], + ["issi3", 931280609], + ["issi4", 628003514], + ["issi5", 1537277726], + ["issi6", 1239571361], + ["issi7", 1854776567], + ["italigtb2", 3812247419], + ["italigtb", 2246633323], + ["italigto", 3963499524], + ["italirsx", 3145241962], + ["jackal", 3670438162], + ["jb7002", 394110044], + ["jb700", 1051415893], + ["jester4", 2712905841], + ["jester2", 3188613414], + ["jester3", 4080061290], + ["jester", 2997294755], + ["jet", 1058115860], + ["jetmax", 861409633], + ["journey", 4174679674], + ["jugular", 4086055493], + ["kalahari", 92612664], + ["kamacho", 4173521127], + ["kanjo", 409049982], + ["khamelion", 544021352], + ["khanjali", 2859440138], + ["komoda", 3460613305], + ["kosatka", 1336872304], + ["krieger", 3630826055], + ["kuruma2", 410882957], + ["kuruma", 2922118804], + ["landstalker2", 3456868130], + ["landstalker", 1269098716], + ["lazer", 3013282534], + ["le7b", 3062131285], + ["lectro", 640818791], + ["lguard", 469291905], + ["limo2", 4180339789], + ["locust", 3353694737], + ["longfin", 1861786828], + ["lurcher", 2068293287], + ["luxor2", 3080673438], + ["luxor", 621481054], + ["lynx", 482197771], + ["mamba", 2634021974], + ["mammatus", 2548391185], + ["manana2", 1717532765], + ["manana", 2170765704], + ["manchez2", 1086534307], + ["manchez", 2771538552], + ["marquis", 3251507587], + ["marshall", 1233534620], + ["massacro2", 3663206819], + ["massacro", 4152024626], + ["maverick", 2634305738], + ["menacer", 2044532910], + ["mesa2", 3546958660], + ["mesa3", 2230595153], + ["mesa", 914654722], + ["metrotrain", 868868440], + ["michelli", 1046206681], + ["microlight", 2531412055], + ["miljet", 165154707], + ["minitank", 3040635986], + ["minivan2", 3168702960], + ["minivan", 3984502180], + ["mixer2", 475220373], + ["mixer", 3510150843], + ["mogul", 3545667823], + ["molotok", 1565978651], + ["monroe", 3861591579], + ["monster3", 1721676810], + ["monster4", 840387324], + ["monster5", 3579220348], + ["monster", 3449006043], + ["moonbeam2", 1896491931], + ["moonbeam", 525509695], + ["mower", 1783355638], + ["mule2", 3244501995], + ["mule3", 2242229361], + ["mule4", 1945374990], + ["mule", 904750859], + ["nebula", 3412338231], + ["nemesis", 3660088182], + ["neo", 2674840994], + ["neon", 2445973230], + ["nero2", 1093792632], + ["nero", 1034187331], + ["nightblade", 2688780135], + ["nightshade", 2351681756], + ["nightshark", 433954513], + ["nimbus", 2999939664], + ["ninef2", 2833484545], + ["ninef", 1032823388], + ["nokota", 1036591958], + ["novak", 2465530446], + ["omnis", 3517794615], + ["openwheel1", 1492612435], + ["openwheel2", 1181339704], + ["oppressor2", 2069146067], + ["oppressor", 884483972], + ["oracle2", 3783366066], + ["oracle", 1348744438], + ["osiris", 1987142870], + ["outlaw", 408825843], + ["packer", 569305213], + ["panto", 3863274624], + ["paradise", 1488164764], + ["paragon2", 1416466158], + ["paragon", 3847255899], + ["pariah", 867799010], + ["patriot2", 3874056184], + ["patriot", 3486509883], + ["patrolboat", 4018222598], + ["pbus2", 345756458], + ["pbus", 2287941233], + ["pcj", 3385765638], + ["penetrator", 2536829930], + ["penumbra2", 3663644634], + ["penumbra", 3917501776], + ["peyote2", 2490551588], + ["peyote3", 1107404867], + ["peyote", 1830407356], + ["pfister811", 2465164804], + ["phantom2", 2645431192], + ["phantom3", 177270108], + ["phantom", 2157618379], + ["phoenix", 2199527893], + ["picador", 1507916787], + ["pigalle", 1078682497], + ["police2", 2667966721], + ["police3", 1912215274], + ["police4", 2321795001], + ["police", 2046537925], + ["policeb", 4260343491], + ["policeold1", 2758042359], + ["policeold2", 2515846680], + ["policet", 456714581], + ["polmav", 353883353], + ["pony2", 943752001], + ["pony", 4175309224], + ["pounder2", 1653666139], + ["pounder", 2112052861], + ["prairie", 2844316578], + ["pranger", 741586030], + ["predator", 3806844075], + ["premier", 2411098011], + ["previon", 1416471345], + ["primo2", 2254540506], + ["primo", 3144368207], + ["proptrailer", 356391690], + ["prototipo", 2123327359], + ["pyro", 2908775872], + ["radi", 2643899483], + ["raiden", 2765724541], + ["raketrailer", 390902130], + ["rallytruck", 2191146052], + ["rancherxl2", 1933662059], + ["rancherxl", 1645267888], + ["rapidgt2", 1737773231], + ["rapidgt3", 2049897956], + ["rapidgt", 2360515092], + ["raptor", 3620039993], + ["ratbike", 1873600305], + ["ratloader2", 3705788919], + ["ratloader", 3627815886], + ["rcbandito", 4008920556], + ["reaper", 234062309], + ["rebel2", 2249373259], + ["rebel", 3087195462], + ["rebla", 83136452], + ["regina", 4280472072], + ["remus", 1377217886], + ["rentalbus", 3196165219], + ["retinue2", 2031587082], + ["retinue", 1841130506], + ["revolter", 3884762073], + ["rhapsody", 841808271], + ["rhino", 782665360], + ["riata", 2762269779], + ["riot2", 2601952180], + ["riot", 3089277354], + ["ripley", 3448987385], + ["rocoto", 2136773105], + ["rogue", 3319621991], + ["romero", 627094268], + ["rrocket", 916547552], + ["rt3000", 3842363289], + ["rubble", 2589662668], + ["ruffian", 3401388520], + ["ruiner2", 941494461], + ["ruiner3", 777714999], + ["ruiner", 4067225593], + ["rumpo2", 2518351607], + ["rumpo3", 1475773103], + ["rumpo", 1162065741], + ["ruston", 719660200], + ["s80", 3970348707], + ["sabregt2", 223258115], + ["sabregt", 2609945748], + ["sadler2", 734217681], + ["sadler", 3695398481], + ["sanchez2", 2841686334], + ["sanchez", 788045382], + ["sanctus", 1491277511], + ["sandking2", 989381445], + ["sandking", 3105951696], + ["savage", 4212341271], + ["savestra", 903794909], + ["sc1", 1352136073], + ["scarab2", 1542143200], + ["scarab3", 3715219435], + ["scarab", 3147997943], + ["schafter2", 3039514899], + ["schafter3", 2809443750], + ["schafter4", 1489967196], + ["schafter5", 3406724313], + ["schafter6", 1922255844], + ["schlagen", 3787471536], + ["schwarzer", 3548084598], + ["scorcher", 4108429845], + ["scramjet", 3656405053], + ["scrap", 2594165727], + ["seabreeze", 3902291871], + ["seashark2", 3678636260], + ["seashark3", 3983945033], + ["seashark", 3264692260], + ["seasparrow2", 1229411063], + ["seasparrow3", 1593933419], + ["seasparrow", 3568198617], + ["seminole2", 2484160806], + ["seminole", 1221512915], + ["sentinel2", 873639469], + ["sentinel3", 1104234922], + ["sentinel", 1349725314], + ["serrano", 1337041428], + ["seven70", 2537130571], + ["shamal", 3080461301], + ["sheava", 819197656], + ["sheriff2", 1922257928], + ["sheriff", 2611638396], + ["shotaro", 3889340782], + ["skylift", 1044954915], + ["slamtruck", 3249056020], + ["slamvan2", 833469436], + ["slamvan3", 1119641113], + ["slamvan4", 2233918197], + ["slamvan5", 373261600], + ["slamvan6", 1742022738], + ["slamvan", 729783779], + ["sovereign", 743478836], + ["specter2", 1074745671], + ["specter", 1886268224], + ["speeder2", 437538602], + ["speeder", 231083307], + ["speedo2", 728614474], + ["speedo4", 219613597], + ["speedo", 3484649228], + ["squaddie", 4192631813], + ["squalo", 400514754], + ["stafford", 321186144], + ["stalion2", 3893323758], + ["stalion", 1923400478], + ["stanier", 2817386317], + ["starling", 2594093022], + ["stinger", 1545842587], + ["stingergt", 2196019706], + ["stockade3", 4080511798], + ["stockade", 1747439474], + ["stratum", 1723137093], + ["streiter", 1741861769], + ["stretch", 2333339779], + ["strikeforce", 1692272545], + ["stromberg", 886810209], + ["stryder", 301304410], + ["stunt", 2172210288], + ["submersible2", 3228633070], + ["submersible", 771711535], + ["sugoi", 987469656], + ["sultan3", 4003946083], + ["sultan2", 872704284], + ["sultan", 970598228], + ["sultanrs", 3999278268], + ["suntrap", 4012021193], + ["superd", 1123216662], + ["supervolito2", 2623428164], + ["supervolito", 710198397], + ["surano", 384071873], + ["surfer2", 2983726598], + ["surfer", 699456151], + ["surge", 2400073108], + ["swift2", 1075432268], + ["swift", 3955379698], + ["swinger", 500482303], + ["t20", 1663218586], + ["taco", 1951180813], + ["tailgater2", 3050505892], + ["tailgater", 3286105550], + ["taipan", 3160260734], + ["tampa2", 3223586949], + ["tampa3", 3084515313], + ["tampa", 972671128], + ["tanker2", 1956216962], + ["tanker", 3564062519], + ["tankercar", 586013744], + ["taxi", 3338918751], + ["technical2", 1180875963], + ["technical3", 1356124575], + ["technical", 2198148358], + ["tempesta", 272929391], + ["terbyte", 2306538597], + ["tezeract", 1031562256], + ["thrax", 1044193113], + ["thrust", 1836027715], + ["thruster", 1489874736], + ["tigon", 2936769864], + ["tiptruck2", 3347205726], + ["tiptruck", 48339065], + ["titan", 1981688531], + ["torero", 1504306544], + ["tornado2", 1531094468], + ["tornado3", 1762279763], + ["tornado4", 2261744861], + ["tornado5", 2497353967], + ["tornado6", 2736567667], + ["tornado", 464687292], + ["toro2", 908897389], + ["toro", 1070967343], + ["toros", 3126015148], + ["tourbus", 1941029835], + ["towtruck2", 3852654278], + ["towtruck", 2971866336], + ["toreador", 1455990255], + ["tr2", 2078290630], + ["tr3", 1784254509], + ["tr4", 2091594960], + ["tractor2", 2218488798], + ["tractor3", 1445631933], + ["tractor", 1641462412], + ["trailerlarge", 1502869817], + ["trailerlogs", 2016027501], + ["trailers2", 2715434129], + ["trailers3", 2236089197], + ["trailers4", 3194418602], + ["trailers", 3417488910], + ["trailersmall2", 2413121211], + ["trailersmall", 712162987], + ["trash2", 3039269212], + ["trash", 1917016601], + ["trflat", 2942498482], + ["tribike2", 3061159916], + ["tribike3", 3894672200], + ["tribike", 1127861609], + ["trophytruck2", 3631668194], + ["trophytruck", 101905590], + ["tropic2", 1448677353], + ["tropic", 290013743], + ["tropos", 1887331236], + ["tug", 2194326579], + ["tula", 1043222410], + ["tulip", 1456744817], + ["turismo2", 3312836369], + ["turismor", 408192225], + ["tvtrailer", 2524324030], + ["tyrant", 3918533058], + ["tyrus", 2067820283], + ["utillitruck2", 887537515], + ["utillitruck3", 2132890591], + ["utillitruck", 516990260], + ["vacca", 338562499], + ["vader", 4154065143], + ["vagner", 1939284556], + ["vagrant", 740289177], + ["valkyrie2", 1543134283], + ["valkyrie", 2694714877], + ["vamos", 4245851645], + ["vectre", 2754593701], + ["velum2", 1077420264], + ["velum", 2621610858], + ["verlierer2", 1102544804], + ["verus", 298565713], + ["vetir", 2014313426], + ["veto", 3437611258], + ["veto2", 2802050217], + ["vestra", 1341619767], + ["vigero", 3469130167], + ["vigilante", 3052358707], + ["vindicator", 2941886209], + ["virgo2", 3395457658], + ["virgo3", 16646064], + ["virgo", 3796912450], + ["viseris", 3903371924], + ["visione", 3296789504], + ["volatol", 447548909], + ["volatus", 2449479409], + ["voltic2", 989294410], + ["voltic", 2672523198], + ["voodoo2", 523724515], + ["voodoo", 2006667053], + ["vortex", 3685342204], + ["vstr", 1456336509], + ["warrener", 579912970], + ["washington", 1777363799], + ["wastelander", 2382949506], + ["weevil", 1644055914], + ["windsor2", 2364918497], + ["windsor", 1581459400], + ["winky", 4084658662], + ["wolfsbane", 3676349299], + ["xa21", 917809321], + ["xls2", 3862958888], + ["xls", 1203490606], + ["yosemite2", 1693751655], + ["yosemite3", 67753863], + ["yosemite", 1871995513], + ["youga2", 1026149675], + ["youga3", 1802742206], + ["youga", 65402552], + ["z190", 838982985], + ["zentorno", 2891838741], + ["zhaba", 1284356689], + ["zion2", 3101863448], + ["zion3", 1862507111], + ["zion", 3172678083], + ["zombiea", 3285698347], + ["zombieb", 3724934023], + ["zorrusso", 3612858749], + ["zr350", 2436313176], + ["zr3802", 3188846534], + ["zr3803", 2816263004], + ["zr380", 540101442], + ["ztype", 758895617], + ] }, objects: { [VRR_GAME_GTA_III]: [ @@ -2528,6 +4153,9 @@ let gameData = { -1, 292 ], + [VRR_GAME_GTA_V]: [ + + ] }, locations: { [VRR_GAME_GTA_III]: [ // GTA III