GTA5 Native Hash Lib (.LUA)

Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...
Onaylı Üye
Katılım
22 Haz 2018
Mesajlar
49
Tepki puanı
6
Ödüller
4
Yaş
57
7 HİZMET YILI
Lib for calling gtav's natives with more ease (Name instead of hash)
Lua:
local natives = {}

function natives.WAIT(intms)
    return native.call(0x4EDE34FBADD967A6, intms)
end

function natives.START_NEW_SCRIPT(constcharscriptName, intstackSize)
    return native.call(0xE81651AD79516E48, constcharscriptName, intstackSize)
end

function natives.START_NEW_SCRIPT_WITH_ARGS(constcharscriptName, Anyargs, intargCount, intstackSize)
    return native.call(0xB8BA7F44DF1575E1, constcharscriptName, Anyargs, intargCount, intstackSize)
end

function natives.START_NEW_SCRIPT_WITH_NAME_HASH(HashscriptHash, intstackSize)
    return native.call(0xEB1C67C3A5333A92, HashscriptHash, intstackSize)
end

function natives.START_NEW_SCRIPT_WITH_NAME_HASH_AND_ARGS(HashscriptHash, Anyargs, intargCount, intstackSize)
    return native.call(0xC4BB298BD441BE78, HashscriptHash, Anyargs, intargCount, intstackSize)
end

function natives.TIMERA()
    return native.call(0x83666F9FB8FEBD4B)
end

function natives.TIMERB()
    return native.call(0xC9D9444186B5A374)
end

function natives.SETTIMERA(intvalue)
    return native.call(0xC1B1E9A034A63A62, intvalue)
end

function natives.SETTIMERB(intvalue)
    return native.call(0x5AE11BC36633DE4E, intvalue)
end

function natives.TIMESTEP()
    return native.call(0x0000000050597EE2)
end

function natives.SIN(floatvalue)
    return native.call(0x0BADBFA3B172435F, floatvalue)
end

function natives.COS(floatvalue)
    return native.call(0xD0FFB162F40A139C, floatvalue)
end

function natives.SQRT(floatvalue)
    return native.call(0x71D93B57D07F9804, floatvalue)
end

function natives.POW(floatbase, floatexponent)
    return native.call(0xE3621CC40F31FE2E, floatbase, floatexponent)
end

function natives.LOG10(floatvalue)
    return native.call(0xE816E655DE37FE20, floatvalue)
end

function natives.VMAG(floatx, floaty, floatz)
    return native.call(0x652D2EEEF1D3E62C, floatx, floaty, floatz)
end

function natives.VMAG2(floatx, floaty, floatz)
    return native.call(0xA8CEACB4F35AE058, floatx, floaty, floatz)
end

function natives.VDIST(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0x2A488C176D52CCA5, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.VDIST2(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0xB7A628320EFF8E47, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.SHIFT_LEFT(intvalue, intbitShift)
    return native.call(0xEDD95A39E5544DE8, intvalue, intbitShift)
end

function natives.SHIFT_RIGHT(intvalue, intbitShift)
    return native.call(0x97EF1E5BCE9DC075, intvalue, intbitShift)
end

function natives.FLOOR(floatvalue)
    return native.call(0xF34EE736CF047844, floatvalue)
end

function natives.CEIL(floatvalue)
    return native.call(0x11E019C8F43ACC8A, floatvalue)
end

function natives.ROUND(floatvalue)
    return native.call(0xF2DB717A73826179, floatvalue)
end

function natives.TO_FLOAT(intvalue)
    return native.call(0xBBDA792448DB5A89, intvalue)
end

function natives.SET_THREAD_PRIORITY(intpriority)
    return native.call(0x42B65DEEF2EDF2A1, intpriority)
end

function natives.APP_DATA_VALID()
    return native.call(0x846AA8E7D55EE5B6)
end

function natives.APP_GET_INT(constcharproperty)
    return native.call(0xD3A58A12C77D9D4B, constcharproperty)
end

function natives.APP_GET_FLOAT(constcharproperty)
    return native.call(0x1514FB24C02C2322, constcharproperty)
end

function natives.APP_GET_STRING(constcharproperty)
    return native.call(0x749B023950D2311C, constcharproperty)
end

function natives.APP_SET_INT(constcharproperty, intvalue)
    return native.call(0x607E8E3D3E4F9611, constcharproperty, intvalue)
end

function natives.APP_SET_FLOAT(constcharproperty, floatvalue)
    return native.call(0x25D7687C68E0DAA4, constcharproperty, floatvalue)
end

function natives.APP_SET_STRING(constcharproperty, constcharvalue)
    return native.call(0x3FF2FCEC4B7721B4, constcharproperty, constcharvalue)
end

function natives.APP_SET_APP(constcharappName)
    return native.call(0xCFD0406ADAF90D2B, constcharappName)
end

function natives.APP_SET_BLOCK(constcharblockName)
    return native.call(0x262AB456A3D21F93, constcharblockName)
end

function natives.APP_CLEAR_BLOCK()
    return native.call(0x5FE1DF3342DB7DBA)
end

function natives.APP_CLOSE_APP()
    return native.call(0xE41C65E07A5F05FC)
end

function natives.APP_CLOSE_BLOCK()
    return native.call(0xE8E3FCF72EAC0EF8)
end

function natives.APP_HAS_LINKED_SOCIAL_CLUB_ACCOUNT()
    return native.call(0x71EEE69745088DA0)
end

function natives.APP_HAS_SYNCED_DATA(constcharappName)
    return native.call(0xCA52279A7271517F, constcharappName)
end

function natives.APP_SAVE_DATA()
    return native.call(0x95C5D356CDA6E85F)
end

function natives.APP_GET_DELETED_FILE_STATUS()
    return native.call(0xC9853A2BE3DED1A6)
end

function natives.APP_DELETE_APP_DATA(constcharappName)
    return native.call(0x44151AEA95C8A003, constcharappName)
end

function natives.PLAY_PED_RINGTONE(constcharringtoneName, Pedped, BOOLp2)
    return native.call(0xF9E56683CA8E11A5, constcharringtoneName, Pedped, BOOLp2)
end

function natives.IS_PED_RINGTONE_PLAYING(Pedped)
    return native.call(0x1E8E5E20937E3137, Pedped)
end

function natives.STOP_PED_RINGTONE(Pedped)
    return native.call(0x6C5AE23EFA885092, Pedped)
end

function natives.IS_MOBILE_PHONE_CALL_ONGOING()
    return native.call(0x7497D2CE2C30D24C)
end

function natives._0xC8B1B2425604CDD0()
    return native.call(0xC8B1B2425604CDD0)
end

function natives.CREATE_NEW_SCRIPTED_CONVERSATION()
    return native.call(0xD2C91A0B572AAE56)
end

function natives.ADD_LINE_TO_CONVERSATION(intindex, constcharp1, constcharp2, intp3, intp4, BOOLp5, BOOLp6, BOOLp7, BOOLp8, intp9, BOOLp10, BOOLp11, BOOLp12)
    return native.call(0xC5EF963405593646, intindex, constcharp1, constcharp2, intp3, intp4, BOOLp5, BOOLp6, BOOLp7, BOOLp8, intp9, BOOLp10, BOOLp11, BOOLp12)
end

function natives.ADD_PED_TO_CONVERSATION(intindex, Pedped, constcharp2)
    return native.call(0x95D9F4BC443956E7, intindex, Pedped, constcharp2)
end

function natives._0x33E3C6C6F2F0B506(Anyp0, floatp1, floatp2, floatp3)
    return native.call(0x33E3C6C6F2F0B506, Anyp0, floatp1, floatp2, floatp3)
end

function natives._0x892B6AB8F33606F5(intp0, Entityentity)
    return native.call(0x892B6AB8F33606F5, intp0, Entityentity)
end

function natives.SET_MICROPHONE_POSITION(BOOLtoggle, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3)
    return native.call(0xB6AE90EDDE95C762, BOOLtoggle, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3)
end

function natives._0x0B568201DD99F0EB(BOOLp0)
    return native.call(0x0B568201DD99F0EB, BOOLp0)
end

function natives._0x61631F5DF50D1C34(BOOLp0)
    return native.call(0x61631F5DF50D1C34, BOOLp0)
end

function natives.START_SCRIPT_PHONE_CONVERSATION(BOOLp0, BOOLp1)
    return native.call(0x252E5F915EABB675, BOOLp0, BOOLp1)
end

function natives.PRELOAD_SCRIPT_PHONE_CONVERSATION(BOOLp0, BOOLp1)
    return native.call(0x6004BCB0E226AAEA, BOOLp0, BOOLp1)
end

function natives.START_SCRIPT_CONVERSATION(BOOLp0, BOOLp1, BOOLp2, BOOLp3)
    return native.call(0x6B17C62C9635D2DC, BOOLp0, BOOLp1, BOOLp2, BOOLp3)
end

function natives.PRELOAD_SCRIPT_CONVERSATION(BOOLp0, BOOLp1, BOOLp2, BOOLp3)
    return native.call(0x3B3CAD6166916D87, BOOLp0, BOOLp1, BOOLp2, BOOLp3)
end

function natives.START_PRELOADED_CONVERSATION()
    return native.call(0x23641AFE870AF385)
end

function natives.GET_IS_PRELOADED_CONVERSATION_READY()
    return native.call(0xE73364DB90778FFA)
end

function natives.IS_SCRIPTED_CONVERSATION_ONGOING()
    return native.call(0x16754C556D2EDE3D)
end

function natives.IS_SCRIPTED_CONVERSATION_LOADED()
    return native.call(0xDF0D54BE7A776737)
end

function natives.GET_CURRENT_SCRIPTED_CONVERSATION_LINE()
    return native.call(0x480357EE890C295A)
end

function natives.PAUSE_SCRIPTED_CONVERSATION(BOOLp0)
    return native.call(0x8530AD776CD72B12, BOOLp0)
end

function natives.RESTART_SCRIPTED_CONVERSATION()
    return native.call(0x9AEB285D1818C9AC)
end

function natives.STOP_SCRIPTED_CONVERSATION(BOOLp0)
    return native.call(0xD79DEEFB53455EBA, BOOLp0)
end

function natives.SKIP_TO_NEXT_SCRIPTED_CONVERSATION_LINE()
    return native.call(0x9663FE6B7A61EB00)
end

function natives.INTERRUPT_CONVERSATION(Pedped, constcharvoiceline, constcharspeaker)
    return native.call(0xA018A12E5C5C2FA6, Pedped, constcharvoiceline, constcharspeaker)
end

function natives.INTERRUPT_CONVERSATION_AND_PAUSE(Pedped, constcharp1, constcharspeaker)
    return native.call(0x8A694D7A68F8DC38, Pedped, constcharp1, constcharspeaker)
end

function natives._0xAA19F5572C38B564(Anyp0)
    return native.call(0xAA19F5572C38B564, Anyp0)
end

function natives._0xB542DE8C3D1CB210(BOOLp0)
    return native.call(0xB542DE8C3D1CB210, BOOLp0)
end

function natives.REGISTER_SCRIPT_WITH_AUDIO(intp0)
    return native.call(0xC6ED9D5092438D91, intp0)
end

function natives.UNREGISTER_SCRIPT_WITH_AUDIO()
    return native.call(0xA8638BE228D4751A)
end

function natives.REQUEST_MISSION_AUDIO_BANK(constcharp0, BOOLp1, Anyp2)
    return native.call(0x7345BDD95E62E0F2, constcharp0, BOOLp1, Anyp2)
end

function natives.REQUEST_AMBIENT_AUDIO_BANK(constcharp0, BOOLp1, Anyp2)
    return native.call(0xFE02FFBED8CA9D99, constcharp0, BOOLp1, Anyp2)
end

function natives.REQUEST_SCRIPT_AUDIO_BANK(constcharp0, BOOLp1, intp2)
    return native.call(0x2F844A8B08D76685, constcharp0, BOOLp1, intp2)
end

function natives._0x40763EA7B9B783E7(Anyp0, Anyp1, Anyp2)
    return native.call(0x40763EA7B9B783E7, Anyp0, Anyp1, Anyp2)
end

function natives.HINT_AMBIENT_AUDIO_BANK(Anyp0, Anyp1, Anyp2)
    return native.call(0x8F8C0E370AE62F5C, Anyp0, Anyp1, Anyp2)
end

function natives.HINT_SCRIPT_AUDIO_BANK(Anyp0, Anyp1, Anyp2)
    return native.call(0xFB380A29641EC31A, Anyp0, Anyp1, Anyp2)
end

function natives.RELEASE_MISSION_AUDIO_BANK()
    return native.call(0x0EC92A1BF0857187)
end

function natives.RELEASE_AMBIENT_AUDIO_BANK()
    return native.call(0x65475A218FFAA93D)
end

function natives.RELEASE_NAMED_SCRIPT_AUDIO_BANK(constcharaudioBank)
    return native.call(0x77ED170667F50170, constcharaudioBank)
end

function natives.RELEASE_SCRIPT_AUDIO_BANK()
    return native.call(0x7A2D8AD0A9EB9C3F)
end

function natives._0x19AF7ED9B9D23058()
    return native.call(0x19AF7ED9B9D23058)
end

function natives._0x9AC92EED5E4793AB()
    return native.call(0x9AC92EED5E4793AB)
end

function natives._0x11579D940949C49E(Anyp0)
    return native.call(0x11579D940949C49E, Anyp0)
end

function natives.GET_SOUND_ID()
    return native.call(0x430386FE9BF80B45)
end

function natives.RELEASE_SOUND_ID(intsoundId)
    return native.call(0x353FC880830B88FA, intsoundId)
end

function natives.PLAY_SOUND(intsoundId, constcharaudioName, constcharaudioRef, BOOLp3, Anyp4, BOOLp5)
    return native.call(0x7FF4944CC209192D, intsoundId, constcharaudioName, constcharaudioRef, BOOLp3, Anyp4, BOOLp5)
end

function natives.PLAY_SOUND_FRONTEND(intsoundId, constcharaudioName, constcharaudioRef, BOOLp3)
    return native.call(0x67C540AA08E4A6F5, intsoundId, constcharaudioName, constcharaudioRef, BOOLp3)
end

function natives.PLAY_DEFERRED_SOUND_FRONTEND(constcharsoundName, constcharsoundsetName)
    return native.call(0xCADA5A0D0702381E, constcharsoundName, constcharsoundsetName)
end

function natives.PLAY_SOUND_FROM_ENTITY(intsoundId, constcharaudioName, Entityentity, constcharaudioRef, BOOLisNetwork, Anyp5)
    return native.call(0xE65F427EB70AB1ED, intsoundId, constcharaudioName, Entityentity, constcharaudioRef, BOOLisNetwork, Anyp5)
end

function natives._0x5B9853296731E88D(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x5B9853296731E88D, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.PLAY_SOUND_FROM_COORD(intsoundId, constcharaudioName, floatx, floaty, floatz, constcharaudioRef, BOOLisNetwork, intrange, BOOLp8)
    return native.call(0x8D8686B622B88120, intsoundId, constcharaudioName, floatx, floaty, floatz, constcharaudioRef, BOOLisNetwork, intrange, BOOLp8)
end

function natives._0x7EC3C679D0E7E46B(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x7EC3C679D0E7E46B, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.STOP_SOUND(intsoundId)
    return native.call(0xA3B0C41BA5CC0BB5, intsoundId)
end

function natives.GET_NETWORK_ID_FROM_SOUND_ID(intsoundId)
    return native.call(0x2DE3F0A134FFBC0D, intsoundId)
end

function natives.GET_SOUND_ID_FROM_NETWORK_ID(intnetId)
    return native.call(0x75262FD12D0A1C84, intnetId)
end

function natives.SET_VARIABLE_ON_SOUND(intsoundId, Anyp1, floatp2)
    return native.call(0xAD6B3148A78AE9B6, intsoundId, Anyp1, floatp2)
end

function natives.SET_VARIABLE_ON_STREAM(constcharp0, floatp1)
    return native.call(0x2F9D3834AEB9EF79, constcharp0, floatp1)
end

function natives.OVERRIDE_UNDERWATER_STREAM(Anyp0, BOOLp1)
    return native.call(0xF2A9CDABCEA04BD6, Anyp0, BOOLp1)
end

function natives.SET_VARIABLE_ON_UNDER_WATER_STREAM(constcharvariableName, floatvalue)
    return native.call(0x733ADF241531E5C2, constcharvariableName, floatvalue)
end

function natives.HAS_SOUND_FINISHED(intsoundId)
    return native.call(0xFCBDCE714A7C88E5, intsoundId)
end

function natives.PLAY_PED_AMBIENT_SPEECH_NATIVE(Pedped, constcharspeechName, constcharspeechParam, Anyp3)
    return native.call(0x8E04FEDD28D42462, Pedped, constcharspeechName, constcharspeechParam, Anyp3)
end

function natives.PLAY_PED_AMBIENT_SPEECH_AND_CLONE_NATIVE(Pedped, constcharspeechName, constcharspeechParam, Anyp3)
    return native.call(0xC6941B4A3A8FBBB9, Pedped, constcharspeechName, constcharspeechParam, Anyp3)
end

function natives.PLAY_PED_AMBIENT_SPEECH_WITH_VOICE_NATIVE(Pedped, constcharspeechName, constcharvoiceName, constcharspeechParam, BOOLp4)
    return native.call(0x3523634255FC3318, Pedped, constcharspeechName, constcharvoiceName, constcharspeechParam, BOOLp4)
end

function natives.PLAY_AMBIENT_SPEECH_FROM_POSITION_NATIVE(constcharspeechName, constcharvoiceName, floatx, floaty, floatz, constcharspeechParam)
    return native.call(0xED640017ED337E45, constcharspeechName, constcharvoiceName, floatx, floaty, floatz, constcharspeechParam)
end

function natives.OVERRIDE_TREVOR_RAGE(constcharvoiceEffect)
    return native.call(0x13AD665062541A7E, constcharvoiceEffect)
end

function natives.RESET_TREVOR_RAGE()
    return native.call(0xE78503B10C4314E0)
end

function natives.SET_PLAYER_ANGRY(Pedped, BOOLtoggle)
    return native.call(0xEA241BB04110F091, Pedped, BOOLtoggle)
end

function natives.PLAY_PAIN(Pedped, intpainID, intp1, Anyp3)
    return native.call(0xBC9AE166038A5CEC, Pedped, intpainID, intp1, Anyp3)
end

function natives.RELEASE_WEAPON_AUDIO()
    return native.call(0xCE4AC0439F607045)
end

function natives.ACTIVATE_AUDIO_SLOWMO_MODE(constcharp0)
    return native.call(0xD01005D2BA2EB778, constcharp0)
end

function natives.DEACTIVATE_AUDIO_SLOWMO_MODE(constcharp0)
    return native.call(0xDDC635D5B3262C56, constcharp0)
end

function natives.SET_AMBIENT_VOICE_NAME(Pedped, constcharname)
    return native.call(0x6C8065A3B780185B, Pedped, constcharname)
end

function natives.SET_AMBIENT_VOICE_NAME_HASH(Pedped, Hashhash)
    return native.call(0x9A53DED9921DE990, Pedped, Hashhash)
end

function natives.GET_AMBIENT_VOICE_NAME_HASH(Pedped)
    return native.call(0x5E203DA2BA15D436, Pedped)
end

function natives.SET_PED_SCREAM(Pedped)
    return native.call(0x40CF0D12D142A9E8, Pedped)
end

function natives._0x1B7ABE26CBCBF8C7(Pedped, Anyp1, Anyp2)
    return native.call(0x1B7ABE26CBCBF8C7, Pedped, Anyp1, Anyp2)
end

function natives.SET_PED_VOICE_GROUP(Pedped, HashvoiceGroupHash)
    return native.call(0x7CDC8C3B89F661B3, Pedped, HashvoiceGroupHash)
end

function natives.SET_PED_AUDIO_GENDER(Pedped, BOOLp1)
    return native.call(0xA5342D390CDA41D6, Pedped, BOOLp1)
end

function natives.STOP_CURRENT_PLAYING_SPEECH(Pedped)
    return native.call(0x7A73D05A607734C7, Pedped)
end

function natives.STOP_CURRENT_PLAYING_AMBIENT_SPEECH(Pedped)
    return native.call(0xB8BEC0CA6F0EDB0F, Pedped)
end

function natives.IS_AMBIENT_SPEECH_PLAYING(Pedped)
    return native.call(0x9072C8B49907BFAD, Pedped)
end

function natives.IS_SCRIPTED_SPEECH_PLAYING(Anyp0)
    return native.call(0xCC9AA18DCC7084F4, Anyp0)
end

function natives.IS_ANY_SPEECH_PLAYING(Pedped)
    return native.call(0x729072355FA39EC9, Pedped)
end

function natives._0x30CA2EF91D15ADF8()
    return native.call(0x30CA2EF91D15ADF8)
end

function natives.DOES_CONTEXT_EXIST_FOR_THIS_PED(Pedped, constcharspeechName, BOOLunk)
    return native.call(0x49B99BF3FDA89A7A, Pedped, constcharspeechName, BOOLunk)
end

function natives.IS_PED_IN_CURRENT_CONVERSATION(Pedped)
    return native.call(0x049E937F18F4020C, Pedped)
end

function natives.SET_PED_IS_DRUNK(Pedped, BOOLtoggle)
    return native.call(0x95D2D383D5396B8A, Pedped, BOOLtoggle)
end

function natives.PLAY_ANIMAL_VOCALIZATION(PedpedHandle, intp1, constcharspeechName)
    return native.call(0xEE066C7006C49C0A, PedpedHandle, intp1, constcharspeechName)
end

function natives.IS_ANIMAL_VOCALIZATION_PLAYING(PedpedHandle)
    return native.call(0xC265DF9FB44A9FBD, PedpedHandle)
end

function natives.SET_ANIMAL_MOOD(Pedanimal, intmood)
    return native.call(0xCC97B29285B1DC3B, Pedanimal, intmood)
end

function natives.IS_MOBILE_PHONE_RADIO_ACTIVE()
    return native.call(0xB35CE999E8EF317E)
end

function natives.SET_MOBILE_PHONE_RADIO_STATE(BOOLstate)
    return native.call(0xBF286C554784F3DF, BOOLstate)
end

function natives.GET_PLAYER_RADIO_STATION_INDEX()
    return native.call(0xE8AF77C4C06ADC93)
end

function natives.GET_PLAYER_RADIO_STATION_NAME()
    return native.call(0xF6D733C32076AD03)
end

function natives.GET_RADIO_STATION_NAME(intradioStation)
    return native.call(0xB28ECA15046CA8B9, intradioStation)
end

function natives.GET_PLAYER_RADIO_STATION_GENRE()
    return native.call(0xA571991A7FE6CCEB)
end

function natives.IS_RADIO_RETUNING()
    return native.call(0xA151A7394A214E65)
end

function natives.IS_RADIO_FADED_OUT()
    return native.call(0x0626A247D2405330)
end

function natives.SET_RADIO_RETUNE_UP()
    return native.call(0xFF266D1D0EB1195D)
end

function natives.SET_RADIO_RETUNE_DOWN()
    return native.call(0xDD6BCF9E94425DF9)
end

function natives.SET_RADIO_TO_STATION_NAME(constcharstationName)
    return native.call(0xC69EDA28699D5107, constcharstationName)
end

function natives.SET_VEH_RADIO_STATION(Vehiclevehicle, constcharradioStation)
    return native.call(0x1B9C0099CB942AC6, Vehiclevehicle, constcharradioStation)
end

function natives.SET_VEH_HAS_RADIO_OVERRIDE(Vehiclevehicle)
    return native.call(0x3E45765F3FBB582F, Vehiclevehicle)
end

function natives.IS_VEHICLE_RADIO_ENABLED(Vehiclevehicle)
    return native.call(0x0BE4BE946463F917, Vehiclevehicle)
end

function natives._0xC1805D05E6D4FE10(Vehiclevehicle)
    return native.call(0xC1805D05E6D4FE10, Vehiclevehicle)
end

function natives.SET_EMITTER_RADIO_STATION(constcharemitterName, constcharradioStation)
    return native.call(0xACF57305B12AF907, constcharemitterName, constcharradioStation)
end

function natives.SET_STATIC_EMITTER_ENABLED(constcharemitterName, BOOLtoggle)
    return native.call(0x399D2D3B33F1B8EB, constcharemitterName, BOOLtoggle)
end

function natives.LINK_STATIC_EMITTER_TO_ENTITY(constcharemitterName, Entityentity)
    return native.call(0x651D3228960D08AF, constcharemitterName, Entityentity)
end

function natives.SET_RADIO_TO_STATION_INDEX(intradioStation)
    return native.call(0xA619B168B8A8570F, intradioStation)
end

function natives.SET_FRONTEND_RADIO_ACTIVE(BOOLactive)
    return native.call(0xF7F26C6E9CC9EBB8, BOOLactive)
end

function natives.UNLOCK_MISSION_NEWS_STORY(intnewsStory)
    return native.call(0xB165AB7C248B2DC1, intnewsStory)
end

function natives.IS_MISSION_NEWS_STORY_UNLOCKED(intnewsStory)
    return native.call(0x66E49BF55B4B1874, intnewsStory)
end

function natives.GET_AUDIBLE_MUSIC_TRACK_TEXT_ID()
    return native.call(0x50B196FC9ED6545B)
end

function natives.PLAY_END_CREDITS_MUSIC(BOOLplay)
    return native.call(0xCD536C4D33DCC900, BOOLplay)
end

function natives.SKIP_RADIO_FORWARD()
    return native.call(0x6DDBBDD98E2E9C25)
end

function natives.FREEZE_RADIO_STATION(constcharradioStation)
    return native.call(0x344F393B027E38C3, constcharradioStation)
end

function natives.UNFREEZE_RADIO_STATION(constcharradioStation)
    return native.call(0xFC00454CF60B91DD, constcharradioStation)
end

function natives.SET_RADIO_AUTO_UNFREEZE(BOOLtoggle)
    return native.call(0xC1AA9F53CE982990, BOOLtoggle)
end

function natives.SET_INITIAL_PLAYER_STATION(constcharradioStation)
    return native.call(0x88795F13FACDA88D, constcharradioStation)
end

function natives.SET_USER_RADIO_CONTROL_ENABLED(BOOLtoggle)
    return native.call(0x19F21E63AE6EAE4E, BOOLtoggle)
end

function natives.SET_RADIO_TRACK(constcharradioStation, constcharradioTrack)
    return native.call(0xB39786F201FEE30B, constcharradioStation, constcharradioTrack)
end

function natives.SET_RADIO_TRACK_MIX(constcharradioStationName, constcharmixName, intp2)
    return native.call(0x2CB0075110BE1E56, constcharradioStationName, constcharmixName, intp2)
end

function natives._0x55ECF4D13D9903B0(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x55ECF4D13D9903B0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SET_VEHICLE_RADIO_LOUD(Vehiclevehicle, BOOLtoggle)
    return native.call(0xBB6F1CAEC68B0BCE, Vehiclevehicle, BOOLtoggle)
end

function natives.CAN_VEHICLE_RECEIVE_CB_RADIO(Vehiclevehicle)
    return native.call(0x032A116663A4D5AC, Vehiclevehicle)
end

function natives.SET_MOBILE_RADIO_ENABLED_DURING_GAMEPLAY(BOOLtoggle)
    return native.call(0x1098355A16064BB3, BOOLtoggle)
end

function natives.DOES_PLAYER_VEH_HAVE_RADIO()
    return native.call(0x109697E2FFBAC8A1)
end

function natives.IS_PLAYER_VEH_RADIO_ENABLE()
    return native.call(0x5F43D83FD6738741)
end

function natives.SET_VEHICLE_RADIO_ENABLED(Vehiclevehicle, BOOLtoggle)
    return native.call(0x3B988190C0AA6C0B, Vehiclevehicle, BOOLtoggle)
end

function natives._0xDA07819E452FFE8F(Anyp0)
    return native.call(0xDA07819E452FFE8F, Anyp0)
end

function natives.SET_CUSTOM_RADIO_TRACK_LIST(constcharradioStation, constchartrackListName, BOOLp2)
    return native.call(0x4E404A9361F75BB2, constcharradioStation, constchartrackListName, BOOLp2)
end

function natives.CLEAR_CUSTOM_RADIO_TRACK_LIST(constcharradioStation)
    return native.call(0x1654F24A88A8E3FE, constcharradioStation)
end

function natives.GET_NUM_UNLOCKED_RADIO_STATIONS()
    return native.call(0xF1620ECB50E01DE7)
end

function natives.FIND_RADIO_STATION_INDEX(HashstationNameHash)
    return native.call(0x8D67489793FF428B, HashstationNameHash)
end

function natives.SET_RADIO_STATION_MUSIC_ONLY(constcharradioStation, BOOLtoggle)
    return native.call(0x774BD811F656A122, constcharradioStation, BOOLtoggle)
end

function natives.SET_RADIO_FRONTEND_FADE_TIME(floatfadeTime)
    return native.call(0x2C96CDB04FCA358E, floatfadeTime)
end

function natives.UNLOCK_RADIO_STATION_TRACK_LIST(constcharradioStation, constchartrackListName)
    return native.call(0x031ACB6ABA18C729, constcharradioStation, constchartrackListName)
end

function natives.LOCK_RADIO_STATION_TRACK_LIST(constcharradioStation, constchartrackListName)
    return native.call(0xFF5E5EA2DCEEACF3, constcharradioStation, constchartrackListName)
end

function natives.UPDATE_LSUR(BOOLenableMixes)
    return native.call(0x47AED84213A47510, BOOLenableMixes)
end

function natives.LOCK_RADIO_STATION(constcharradioStationName, BOOLtoggle)
    return native.call(0x477D9DB48F889591, constcharradioStationName, BOOLtoggle)
end

function natives.SET_RADIO_STATION_IS_VISIBLE(constcharradioStation, BOOLtoggle)
    return native.call(0x4CAFEBFA21EC188D, constcharradioStation, BOOLtoggle)
end

function natives._0xC64A06D939F826F5(floatp0, floatp1, intp2)
    return native.call(0xC64A06D939F826F5, floatp0, floatp1, intp2)
end

function natives.FORCE_RADIO_TRACK_LIST_POSITION(constcharradioStation, constchartrackListName, intmilliseconds)
    return native.call(0x4E0AF9114608257C, constcharradioStation, constchartrackListName, intmilliseconds)
end

function natives.GET_CURRENT_RADIO_STATION_HASH(constcharradioStationName)
    return native.call(0x3E65CDE5215832C1, constcharradioStationName)
end

function natives._0x34D66BC058019CE0(constcharradioStationName)
    return native.call(0x34D66BC058019CE0, constcharradioStationName)
end

function natives._0xF3365489E0DD50F9(Vehiclevehicle, BOOLtoggle)
    return native.call(0xF3365489E0DD50F9, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_AMBIENT_ZONE_STATE(constcharzoneName, BOOLp1, BOOLp2)
    return native.call(0xBDA07E5950085E46, constcharzoneName, BOOLp1, BOOLp2)
end

function natives.CLEAR_AMBIENT_ZONE_STATE(constcharzoneName, BOOLp1)
    return native.call(0x218DD44AAAC964FF, constcharzoneName, BOOLp1)
end

function natives.SET_AMBIENT_ZONE_LIST_STATE(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x9748FA4DE50CCE3E, Anyp0, BOOLp1, BOOLp2)
end

function natives.CLEAR_AMBIENT_ZONE_LIST_STATE(Anyp0, BOOLp1)
    return native.call(0x120C48C614909FA4, Anyp0, BOOLp1)
end

function natives.SET_AMBIENT_ZONE_STATE_PERSISTENT(constcharambientZone, BOOLp1, BOOLp2)
    return native.call(0x1D6650420CEC9D3B, constcharambientZone, BOOLp1, BOOLp2)
end

function natives.SET_AMBIENT_ZONE_LIST_STATE_PERSISTENT(constcharambientZone, BOOLp1, BOOLp2)
    return native.call(0xF3638DAE8C4045E1, constcharambientZone, BOOLp1, BOOLp2)
end

function natives.IS_AMBIENT_ZONE_ENABLED(constcharambientZone)
    return native.call(0x01E2817A479A7F9B, constcharambientZone)
end

function natives._0x5D2BFAAB8D956E0E()
    return native.call(0x5D2BFAAB8D956E0E)
end

function natives.SET_CUTSCENE_AUDIO_OVERRIDE(constcharname)
    return native.call(0x3B4BF5F0859204D9, constcharname)
end

function natives.SET_VARIABLE_ON_SYNCH_SCENE_AUDIO(constcharvariableName, floatvalue)
    return native.call(0xBCC29F935ED07688, constcharvariableName, floatvalue)
end

function natives.PLAY_POLICE_REPORT(constcharname, floatp1)
    return native.call(0xDFEBD56D9BD1EB16, constcharname, floatp1)
end

function natives.CANCEL_CURRENT_POLICE_REPORT()
    return native.call(0xB4F90FAF7670B16F)
end

function natives.BLIP_SIREN(Vehiclevehicle)
    return native.call(0x1B9025BDA76822B6, Vehiclevehicle)
end

function natives.OVERRIDE_VEH_HORN(Vehiclevehicle, BOOLoverride, inthornHash)
    return native.call(0x3CDC1E622CCE0356, Vehiclevehicle, BOOLoverride, inthornHash)
end

function natives.IS_HORN_ACTIVE(Vehiclevehicle)
    return native.call(0x9D6BFC12B05C6121, Vehiclevehicle)
end

function natives.SET_AGGRESSIVE_HORNS(BOOLtoggle)
    return native.call(0x395BF71085D1B1D9, BOOLtoggle)
end

function natives._0x02E93C796ABD3A97(BOOLp0)
    return native.call(0x02E93C796ABD3A97, BOOLp0)
end

function natives._0x58BB377BEC7CD5F4(BOOLp0, BOOLp1)
    return native.call(0x58BB377BEC7CD5F4, BOOLp0, BOOLp1)
end

function natives._0x9BD7BD55E4533183(Anyp0, Anyp1, Anyp2)
    return native.call(0x9BD7BD55E4533183, Anyp0, Anyp1, Anyp2)
end

function natives.IS_STREAM_PLAYING()
    return native.call(0xD11FA52EB849D978)
end

function natives.GET_STREAM_PLAY_TIME()
    return native.call(0x4E72BBDBCA58A3DB)
end

function natives.LOAD_STREAM(constcharstreamName, constcharsoundSet)
    return native.call(0x1F1F957154EC51DF, constcharstreamName, constcharsoundSet)
end

function natives.LOAD_STREAM_WITH_START_OFFSET(constcharstreamName, intstartOffset, constcharsoundSet)
    return native.call(0x59C16B79F53B3712, constcharstreamName, intstartOffset, constcharsoundSet)
end

function natives.PLAY_STREAM_FROM_PED(Pedped)
    return native.call(0x89049DD63C08B5D1, Pedped)
end

function natives.PLAY_STREAM_FROM_VEHICLE(Vehiclevehicle)
    return native.call(0xB70374A758007DFA, Vehiclevehicle)
end

function natives.PLAY_STREAM_FROM_OBJECT(Objectobject)
    return native.call(0xEBAA9B64D76356FD, Objectobject)
end

function natives.PLAY_STREAM_FRONTEND()
    return native.call(0x58FCE43488F9F5F4)
end

function natives.PLAY_STREAM_FROM_POSITION(floatx, floaty, floatz)
    return native.call(0x21442F412E8DE56B, floatx, floaty, floatz)
end

function natives.STOP_STREAM()
    return native.call(0xA4718A1419D18151)
end

function natives.STOP_PED_SPEAKING(Pedped, BOOLshaking)
    return native.call(0x9D64D7405520E3D3, Pedped, BOOLshaking)
end

function natives._0xF8AD2EED7C47E8FE(Pedped, BOOLp1, BOOLp2)
    return native.call(0xF8AD2EED7C47E8FE, Pedped, BOOLp1, BOOLp2)
end

function natives._0xAB6781A5F3101470(Anyp0, Anyp1)
    return native.call(0xAB6781A5F3101470, Anyp0, Anyp1)
end

function natives.DISABLE_PED_PAIN_AUDIO(Pedped, BOOLtoggle)
    return native.call(0xA9A41C1E940FB0E8, Pedped, BOOLtoggle)
end

function natives.IS_AMBIENT_SPEECH_DISABLED(Pedped)
    return native.call(0x932C2D096A2C3FFF, Pedped)
end

function natives._0xA8A7D434AFB4B97B(constcharp0, intp1)
    return native.call(0xA8A7D434AFB4B97B, constcharp0, intp1)
end

function natives._0x2ACABED337622DF2(constcharp0)
    return native.call(0x2ACABED337622DF2, constcharp0)
end

function natives.SET_SIREN_WITH_NO_DRIVER(Vehiclevehicle, BOOLtoggle)
    return native.call(0x1FEF0683B96EBCF2, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_SIREN_KEEP_ON(Vehiclevehicle, BOOLtoggle)
    return native.call(0xF584CF8529B51434, Vehiclevehicle, BOOLtoggle)
end

function natives.TRIGGER_SIREN(Vehiclevehicle)
    return native.call(0x66C3FB05206041BA, Vehiclevehicle)
end

function natives.SET_HORN_PERMANENTLY_ON(Vehiclevehicle)
    return native.call(0x9C11908013EA4715, Vehiclevehicle)
end

function natives.SET_HORN_ENABLED(Vehiclevehicle, BOOLtoggle)
    return native.call(0x76D683C108594D0E, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_AUDIO_VEHICLE_PRIORITY(Vehiclevehicle, Anyp1)
    return native.call(0xE5564483E407F914, Vehiclevehicle, Anyp1)
end

function natives.SET_HORN_PERMANENTLY_ON_TIME(Vehiclevehicle, floattime)
    return native.call(0x9D3AF56E94C9AE98, Vehiclevehicle, floattime)
end

function natives.USE_SIREN_AS_HORN(Vehiclevehicle, BOOLtoggle)
    return native.call(0xFA932DE350266EF8, Vehiclevehicle, BOOLtoggle)
end

function natives.FORCE_VEHICLE_ENGINE_AUDIO(Vehiclevehicle, constcharaudioName)
    return native.call(0x4F0C413926060B38, Vehiclevehicle, constcharaudioName)
end

function natives.PRELOAD_VEHICLE_AUDIO(HashvehicleModel)
    return native.call(0xCA4CEA6AE0000A7E, HashvehicleModel)
end

function natives.SET_VEHICLE_STARTUP_REV_SOUND(Vehiclevehicle, constcharp1, constcharp2)
    return native.call(0xF1F8157B8C3F171C, Vehiclevehicle, constcharp1, constcharp2)
end

function natives.RESET_VEHICLE_STARTUP_REV_SOUND(Vehiclevehicle)
    return native.call(0xD2DCCD8E16E20997, Vehiclevehicle)
end

function natives._0x97FFB4ADEED08066(Anyp0, Anyp1)
    return native.call(0x97FFB4ADEED08066, Anyp0, Anyp1)
end

function natives.IS_VEHICLE_AUDIBLY_DAMAGED(Vehiclevehicle)
    return native.call(0x5DB8010EE71FDEF2, Vehiclevehicle)
end

function natives.SET_VEHICLE_AUDIO_ENGINE_DAMAGE_FACTOR(Vehiclevehicle, floatdamageFactor)
    return native.call(0x59E7B488451F4D3A, Vehiclevehicle, floatdamageFactor)
end

function natives.SET_VEHICLE_AUDIO_BODY_DAMAGE_FACTOR(Vehiclevehicle, floatintensity)
    return native.call(0x01BB4D577D38BD9E, Vehiclevehicle, floatintensity)
end

function natives.ENABLE_VEHICLE_FANBELT_DAMAGE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x1C073274E065C6D2, Vehiclevehicle, BOOLtoggle)
end

function natives.ENABLE_VEHICLE_EXHAUST_POPS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x2BE4BC731D039D5A, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_BOOST_ACTIVE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x4A04DE7CAB2739A1, Vehiclevehicle, BOOLtoggle)
end

function natives._0x6FDDAD856E36988A(Vehiclevehicle, BOOLtoggle)
    return native.call(0x6FDDAD856E36988A, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_SCRIPT_UPDATE_DOOR_AUDIO(HashdoorHash, BOOLtoggle)
    return native.call(0x06C0023BED16DD6B, HashdoorHash, BOOLtoggle)
end

function natives.PLAY_VEHICLE_DOOR_OPEN_SOUND(Vehiclevehicle, intdoorId)
    return native.call(0x3A539D52857EA82D, Vehiclevehicle, intdoorId)
end

function natives.PLAY_VEHICLE_DOOR_CLOSE_SOUND(Vehiclevehicle, intdoorId)
    return native.call(0x62A456AA4769EF34, Vehiclevehicle, intdoorId)
end

function natives.ENABLE_STALL_WARNING_SOUNDS(Vehiclevehicle, BOOLtoggle)
    return native.call(0xC15907D667F7CFB2, Vehiclevehicle, BOOLtoggle)
end

function natives.IS_GAME_IN_CONTROL_OF_MUSIC()
    return native.call(0x6D28DC1671E334FD)
end

function natives.SET_GPS_ACTIVE(BOOLactive)
    return native.call(0x3BD3F52BA9B1E4E8, BOOLactive)
end

function natives.PLAY_MISSION_COMPLETE_AUDIO(constcharaudioName)
    return native.call(0xB138AAB8A70D3C69, constcharaudioName)
end

function natives.IS_MISSION_COMPLETE_PLAYING()
    return native.call(0x19A30C23F5827F8A)
end

function natives.IS_MISSION_COMPLETE_READY_FOR_UI()
    return native.call(0x6F259F82D873B8B8)
end

function natives.BLOCK_DEATH_JINGLE(BOOLtoggle)
    return native.call(0xF154B8D1775B2DEC, BOOLtoggle)
end

function natives.START_AUDIO_SCENE(constcharscene)
    return native.call(0x013A80FC08F6E4F2, constcharscene)
end

function natives.STOP_AUDIO_SCENE(constcharscene)
    return native.call(0xDFE8422B3B94E688, constcharscene)
end

function natives.STOP_AUDIO_SCENES()
    return native.call(0xBAC7FC81A75EC1A1)
end

function natives.IS_AUDIO_SCENE_ACTIVE(constcharscene)
    return native.call(0xB65B60556E2A9225, constcharscene)
end

function natives.SET_AUDIO_SCENE_VARIABLE(constcharscene, constcharvariable, floatvalue)
    return native.call(0xEF21A9EF089A2668, constcharscene, constcharvariable, floatvalue)
end

function natives.SET_AUDIO_SCRIPT_CLEANUP_TIME(inttime)
    return native.call(0xA5F377B175A699C5, inttime)
end

function natives.ADD_ENTITY_TO_AUDIO_MIX_GROUP(Entityentity, constchargroupName, floatp2)
    return native.call(0x153973AB99FE8980, Entityentity, constchargroupName, floatp2)
end

function natives.REMOVE_ENTITY_FROM_AUDIO_MIX_GROUP(Entityentity, floatp1)
    return native.call(0x18EB48CFC41F2EA0, Entityentity, floatp1)
end

function natives.AUDIO_IS_SCRIPTED_MUSIC_PLAYING()
    return native.call(0x845FFC3A4FEEFA3E)
end

function natives.AUDIO_IS_SCRIPTED_MUSIC_PLAYING_2()
    return native.call(0x2DD39BF3E2F9C47F)
end

function natives.PREPARE_MUSIC_EVENT(constchareventName)
    return native.call(0x1E5185B72EF5158A, constchareventName)
end

function natives.CANCEL_MUSIC_EVENT(constchareventName)
    return native.call(0x5B17A90291133DA5, constchareventName)
end

function natives.TRIGGER_MUSIC_EVENT(constchareventName)
    return native.call(0x706D57B0F50DA710, constchareventName)
end

function natives.IS_MUSIC_ONESHOT_PLAYING()
    return native.call(0xA097AB275061FB21)
end

function natives.GET_MUSIC_PLAYTIME()
    return native.call(0xE7A0D23DC414507B)
end

function natives._0x159B7318403A1CD8(Anyp0)
    return native.call(0x159B7318403A1CD8, Anyp0)
end

function natives.RECORD_BROKEN_GLASS(floatx, floaty, floatz, floatradius)
    return native.call(0xFBE20329593DEC9D, floatx, floaty, floatz, floatradius)
end

function natives.CLEAR_ALL_BROKEN_GLASS()
    return native.call(0xB32209EFFDC04913)
end

function natives._0x70B8EC8FC108A634(BOOLp0, Anyp1)
    return native.call(0x70B8EC8FC108A634, BOOLp0, Anyp1)
end

function natives.SET_PED_WALLA_DENSITY(floatp0, floatp1)
    return native.call(0x149AEE66F0CB3A99, floatp0, floatp1)
end

function natives.SET_PED_INTERIOR_WALLA_DENSITY(floatp0, floatp1)
    return native.call(0x8BF907833BE275DE, floatp0, floatp1)
end

function natives.FORCE_PED_PANIC_WALLA()
    return native.call(0x062D5EAD4DA2FA6A)
end

function natives.PREPARE_ALARM(constcharalarmName)
    return native.call(0x9D74AE343DB65533, constcharalarmName)
end

function natives.START_ALARM(constcharalarmName, BOOLp2)
    return native.call(0x0355EF116C4C97B2, constcharalarmName, BOOLp2)
end

function natives.STOP_ALARM(constcharalarmName, BOOLtoggle)
    return native.call(0xA1CADDCD98415A41, constcharalarmName, BOOLtoggle)
end

function natives.STOP_ALL_ALARMS(BOOLstop)
    return native.call(0x2F794A877ADD4C92, BOOLstop)
end

function natives.IS_ALARM_PLAYING(constcharalarmName)
    return native.call(0x226435CB96CCFC8C, constcharalarmName)
end

function natives.GET_VEHICLE_DEFAULT_HORN(Vehiclevehicle)
    return native.call(0x02165D55000219AC, Vehiclevehicle)
end

function natives.GET_VEHICLE_DEFAULT_HORN_IGNORE_MODS(Vehiclevehicle)
    return native.call(0xACB5DCCA1EC76840, Vehiclevehicle)
end

function natives.RESET_PED_AUDIO_FLAGS(Pedped)
    return native.call(0xF54BB7B61036F335, Pedped)
end

function natives.SET_PED_AUDIO_FOOTSTEP_LOUD(Pedped, BOOLtoggle)
    return native.call(0x0653B735BFBDFE87, Pedped, BOOLtoggle)
end

function natives.SET_PED_AUDIO_FOOTSTEP_QUIET(Pedped, BOOLtoggle)
    return native.call(0x29DA3CA8D8B2692D, Pedped, BOOLtoggle)
end

function natives.OVERRIDE_PLAYER_GROUND_MATERIAL(Hashhash, BOOLtoggle)
    return native.call(0xD2CC78CD3D0B50F9, Hashhash, BOOLtoggle)
end

function natives._0xBF4DC1784BE94DFA(Pedped, BOOLp1, Hashhash)
    return native.call(0xBF4DC1784BE94DFA, Pedped, BOOLp1, Hashhash)
end

function natives.OVERRIDE_MICROPHONE_SETTINGS(Hashhash, BOOLtoggle)
    return native.call(0x75773E11BA459E90, Hashhash, BOOLtoggle)
end

function natives.FREEZE_MICROPHONE()
    return native.call(0xD57AAAE0E2214D11)
end

function natives.DISTANT_COP_CAR_SIRENS(BOOLvalue)
    return native.call(0x552369F549563AD5, BOOLvalue)
end

function natives._0x43FA0DFC5DF87815(Vehiclevehicle, BOOLp1)
    return native.call(0x43FA0DFC5DF87815, Vehiclevehicle, BOOLp1)
end

function natives._0xB81CF134AEB56FFB()
    return native.call(0xB81CF134AEB56FFB)
end

function natives.SET_AUDIO_FLAG(constcharflagName, BOOLtoggle)
    return native.call(0xB9EFD5C25018725A, constcharflagName, BOOLtoggle)
end

function natives.PREPARE_SYNCHRONIZED_AUDIO_EVENT(constcharp0, Anyp1)
    return native.call(0xC7ABCACA4985A766, constcharp0, Anyp1)
end

function natives.PREPARE_SYNCHRONIZED_AUDIO_EVENT_FOR_SCENE(Anyp0, Anyp1)
    return native.call(0x029FE7CD1B7E2E75, Anyp0, Anyp1)
end

function natives.PLAY_SYNCHRONIZED_AUDIO_EVENT(Anyp0)
    return native.call(0x8B2FD4560E55DD2D, Anyp0)
end

function natives.STOP_SYNCHRONIZED_AUDIO_EVENT(Anyp0)
    return native.call(0x92D6A88E64A94430, Anyp0)
end

function natives.INIT_SYNCH_SCENE_AUDIO_WITH_POSITION(Anyp0, floatx, floaty, floatz)
    return native.call(0xC8EDE9BDBCCBA6D4, Anyp0, floatx, floaty, floatz)
end

function natives.INIT_SYNCH_SCENE_AUDIO_WITH_ENTITY(constcharp0, Entityp1)
    return native.call(0x950A154B8DAB6185, constcharp0, Entityp1)
end

function natives.SET_AUDIO_SPECIAL_EFFECT_MODE(intmode)
    return native.call(0x12561FCBB62D5B9C, intmode)
end

function natives.SET_PORTAL_SETTINGS_OVERRIDE(constcharp0, constcharp1)
    return native.call(0x044DBAD7A7FA2BE5, constcharp0, constcharp1)
end

function natives.REMOVE_PORTAL_SETTINGS_OVERRIDE(constcharp0)
    return native.call(0xB4BBFD9CD8B3922B, constcharp0)
end

function natives._0xE4E6DD5566D28C82()
    return native.call(0xE4E6DD5566D28C82)
end

function natives.GET_MUSIC_VOL_SLIDER()
    return native.call(0x3A48AB4445D499BE)
end

function natives.REQUEST_TENNIS_BANKS(Pedped)
    return native.call(0x4ADA3F19BE4A6047, Pedped)
end

function natives.UNREQUEST_TENNIS_BANKS()
    return native.call(0x0150B6FF25A9E2E5)
end

function natives._0xBEF34B1D9624D5DD(BOOLp0)
    return native.call(0xBEF34B1D9624D5DD, BOOLp0)
end

function natives.STOP_CUTSCENE_AUDIO()
    return native.call(0x806058BBDC136E06)
end

function natives.HAS_MULTIPLAYER_AUDIO_DATA_LOADED()
    return native.call(0x544810ED9DB6BBE6)
end

function natives.HAS_MULTIPLAYER_AUDIO_DATA_UNLOADED()
    return native.call(0x5B50ABB1FE3746F4)
end

function natives.GET_VEHICLE_DEFAULT_HORN_VARIATION(Vehiclevehicle)
    return native.call(0xD53F3A29BCE2580E, Vehiclevehicle)
end

function natives.SET_VEHICLE_HORN_VARIATION(Vehiclevehicle, intvalue)
    return native.call(0x0350E7E17BA767D0, Vehiclevehicle, intvalue)
end

function natives.ADD_SCRIPT_TO_RANDOM_PED(constcharname, Hashmodel, floatp2, floatp3)
    return native.call(0x4EE5367468A65CCC, constcharname, Hashmodel, floatp2, floatp3)
end

function natives.REGISTER_OBJECT_SCRIPT_BRAIN(constcharscriptName, HashmodelHash, intp2, floatactivationRange, intp4, intp5)
    return native.call(0x0BE84C318BA6EC22, constcharscriptName, HashmodelHash, intp2, floatactivationRange, intp4, intp5)
end

function natives.IS_OBJECT_WITHIN_BRAIN_ACTIVATION_RANGE(Objectobject)
    return native.call(0xCCBA154209823057, Objectobject)
end

function natives.REGISTER_WORLD_POINT_SCRIPT_BRAIN(constcharscriptName, floatactivationRange, intp2)
    return native.call(0x3CDC7136613284BD, constcharscriptName, floatactivationRange, intp2)
end

function natives.IS_WORLD_POINT_WITHIN_BRAIN_ACTIVATION_RANGE()
    return native.call(0xC5042CC6F5E3D450)
end

function natives.ENABLE_SCRIPT_BRAIN_SET(intbrainSet)
    return native.call(0x67AA4D73F0CFA86B, intbrainSet)
end

function natives.DISABLE_SCRIPT_BRAIN_SET(intbrainSet)
    return native.call(0x14D8518E9760F08F, intbrainSet)
end

function natives._0x0B40ED49D7D6FF84()
    return native.call(0x0B40ED49D7D6FF84)
end

function natives.PREPARE_SCRIPT_BRAIN()
    return native.call(0x4D953DF78EBF8158)
end

function natives._0x6D6840CEE8845831(constcharscriptName)
    return native.call(0x6D6840CEE8845831, constcharscriptName)
end

function natives._0x6E91B04E08773030(constcharscriptName)
    return native.call(0x6E91B04E08773030, constcharscriptName)
end

function natives.RENDER_SCRIPT_CAMS(BOOLrender, BOOLease, inteaseTime, BOOLp3, BOOLp4, Anyp5)
    return native.call(0x07E5B515DB0636FC, BOOLrender, BOOLease, inteaseTime, BOOLp3, BOOLp4, Anyp5)
end

function natives.STOP_RENDERING_SCRIPT_CAMS_USING_CATCH_UP(BOOLrender, floatp1, intp2, Anyp3)
    return native.call(0xC819F3CBB62BF692, BOOLrender, floatp1, intp2, Anyp3)
end

function natives.CREATE_CAM(constcharcamName, BOOLp1)
    return native.call(0xC3981DCE61D9E13F, constcharcamName, BOOLp1)
end

function natives.CREATE_CAM_WITH_PARAMS(constcharcamName, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatfov, BOOLp8, intp9)
    return native.call(0xB51194800B257161, constcharcamName, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatfov, BOOLp8, intp9)
end

function natives.CREATE_CAMERA(HashcamHash, BOOLp1)
    return native.call(0x5E3CF89C6BCCA67D, HashcamHash, BOOLp1)
end

function natives.CREATE_CAMERA_WITH_PARAMS(HashcamHash, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatfov, BOOLp8, Anyp9)
    return native.call(0x6ABFA3E16460F22D, HashcamHash, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatfov, BOOLp8, Anyp9)
end

function natives.DESTROY_CAM(Camcam, BOOLbScriptHostCam)
    return native.call(0x865908C81A2C22E9, Camcam, BOOLbScriptHostCam)
end

function natives.DESTROY_ALL_CAMS(BOOLbScriptHostCam)
    return native.call(0x8E5FB15663F79120, BOOLbScriptHostCam)
end

function natives.DOES_CAM_EXIST(Camcam)
    return native.call(0xA7A932170592B50E, Camcam)
end

function natives.SET_CAM_ACTIVE(Camcam, BOOLactive)
    return native.call(0x026FB97D0A425F84, Camcam, BOOLactive)
end

function natives.IS_CAM_ACTIVE(Camcam)
    return native.call(0xDFB2B516207D3534, Camcam)
end

function natives.IS_CAM_RENDERING(Camcam)
    return native.call(0x02EC0AF5C5A49B7A, Camcam)
end

function natives.GET_RENDERING_CAM()
    return native.call(0x5234F9F10919EABA)
end

function natives.GET_CAM_COORD(Camcam)
    return native.call(0xBAC038F7459AE5AE, Camcam)
end

function natives.GET_CAM_ROT(Camcam, introtationOrder)
    return native.call(0x7D304C1C955E3E12, Camcam, introtationOrder)
end

function natives.GET_CAM_FOV(Camcam)
    return native.call(0xC3330A45CCCDB26A, Camcam)
end

function natives.GET_CAM_NEAR_CLIP(Camcam)
    return native.call(0xC520A34DAFBF24B1, Camcam)
end

function natives.GET_CAM_FAR_CLIP(Camcam)
    return native.call(0xB60A9CFEB21CA6AA, Camcam)
end

function natives.GET_CAM_FAR_DOF(Camcam)
    return native.call(0x255F8DAFD540D397, Camcam)
end

function natives.SET_CAM_PARAMS(Camcam, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatfieldOfView, Anyp8, intp9, intp10, intp11)
    return native.call(0xBFD8727AEA3CCEBA, Camcam, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatfieldOfView, Anyp8, intp9, intp10, intp11)
end

function natives.SET_CAM_COORD(Camcam, floatposX, floatposY, floatposZ)
    return native.call(0x4D41783FB745E42E, Camcam, floatposX, floatposY, floatposZ)
end

function natives.SET_CAM_ROT(Camcam, floatrotX, floatrotY, floatrotZ, introtationOrder)
    return native.call(0x85973643155D0B07, Camcam, floatrotX, floatrotY, floatrotZ, introtationOrder)
end

function natives.SET_CAM_FOV(Camcam, floatfieldOfView)
    return native.call(0xB13C14F66A00D047, Camcam, floatfieldOfView)
end

function natives.SET_CAM_NEAR_CLIP(Camcam, floatnearClip)
    return native.call(0xC7848EFCCC545182, Camcam, floatnearClip)
end

function natives.SET_CAM_FAR_CLIP(Camcam, floatfarClip)
    return native.call(0xAE306F2A904BF86E, Camcam, floatfarClip)
end

function natives._0xAABD62873FFB1A33(Anyp0, Anyp1)
    return native.call(0xAABD62873FFB1A33, Anyp0, Anyp1)
end

function natives.SET_CAM_MOTION_BLUR_STRENGTH(Camcam, floatstrength)
    return native.call(0x6F0F77FBA9A8F2E6, Camcam, floatstrength)
end

function natives.SET_CAM_NEAR_DOF(Camcam, floatnearDOF)
    return native.call(0x3FA4BF0A7AB7DE2C, Camcam, floatnearDOF)
end

function natives.SET_CAM_FAR_DOF(Camcam, floatfarDOF)
    return native.call(0xEDD91296CD01AEE0, Camcam, floatfarDOF)
end

function natives.SET_CAM_DOF_STRENGTH(Camcam, floatdofStrength)
    return native.call(0x5EE29B4D7D5DF897, Camcam, floatdofStrength)
end

function natives.SET_CAM_DOF_PLANES(Camcam, floatp1, floatp2, floatp3, floatp4)
    return native.call(0x3CF48F6F96E749DC, Camcam, floatp1, floatp2, floatp3, floatp4)
end

function natives.SET_CAM_USE_SHALLOW_DOF_MODE(Camcam, BOOLtoggle)
    return native.call(0x16A96863A17552BB, Camcam, BOOLtoggle)
end

function natives.SET_USE_HI_DOF()
    return native.call(0xA13B0222F3D94A94)
end

function natives._0xF55E4046F6F831DC(Anyp0, floatp1)
    return native.call(0xF55E4046F6F831DC, Anyp0, floatp1)
end

function natives._0xE111A7C0D200CBC5(Anyp0, floatp1)
    return native.call(0xE111A7C0D200CBC5, Anyp0, floatp1)
end

function natives.SET_CAM_DOF_FNUMBER_OF_LENS(Camcamera, floatp1)
    return native.call(0x7DD234D6F3914C5B, Camcamera, floatp1)
end

function natives.SET_CAM_DOF_FOCAL_LENGTH_MULTIPLIER(Camcamera, floatmultiplier)
    return native.call(0x47B595D60664CFFA, Camcamera, floatmultiplier)
end

function natives.SET_CAM_DOF_FOCUS_DISTANCE_BIAS(Camcamera, floatp1)
    return native.call(0xC669EEA5D031B7DE, Camcamera, floatp1)
end

function natives.SET_CAM_DOF_MAX_NEAR_IN_FOCUS_DISTANCE(Camcamera, floatp1)
    return native.call(0xC3654A441402562D, Camcamera, floatp1)
end

function natives.SET_CAM_DOF_MAX_NEAR_IN_FOCUS_DISTANCE_BLEND_LEVEL(Camcamera, floatp1)
    return native.call(0x2C654B4943BDDF7C, Camcamera, floatp1)
end

function natives.ATTACH_CAM_TO_ENTITY(Camcam, Entityentity, floatxOffset, floatyOffset, floatzOffset, BOOLisRelative)
    return native.call(0xFEDB7D269E8C60E3, Camcam, Entityentity, floatxOffset, floatyOffset, floatzOffset, BOOLisRelative)
end

function natives.ATTACH_CAM_TO_PED_BONE(Camcam, Pedped, intboneIndex, floatx, floaty, floatz, BOOLheading)
    return native.call(0x61A3DBA14AB7F411, Camcam, Pedped, intboneIndex, floatx, floaty, floatz, BOOLheading)
end

function natives.ATTACH_CAM_TO_PED_BONE_2(Camcam, Pedped, intboneIndex, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, BOOLp9)
    return native.call(0x149916F50C34A40D, Camcam, Pedped, intboneIndex, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, BOOLp9)
end

function natives._0x202A5ED9CE01D6E7(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0x202A5ED9CE01D6E7, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives.ATTACH_CAM_TO_VEHICLE_BONE(Camcam, Vehiclevehicle, intboneIndex, BOOLrelativeRotation, floatrotX, floatrotY, floatrotZ, floatoffsetX, floatoffsetY, floatoffsetZ, BOOLfixedDirection)
    return native.call(0x8DB3F12A02CAEF72, Camcam, Vehiclevehicle, intboneIndex, BOOLrelativeRotation, floatrotX, floatrotY, floatrotZ, floatoffsetX, floatoffsetY, floatoffsetZ, BOOLfixedDirection)
end

function natives.DETACH_CAM(Camcam)
    return native.call(0xA2FABBE87F4BAD82, Camcam)
end

function natives.SET_CAM_INHERIT_ROLL_VEHICLE(Camcam, BOOLp1)
    return native.call(0x45F1DE9C34B93AE6, Camcam, BOOLp1)
end

function natives.POINT_CAM_AT_COORD(Camcam, floatx, floaty, floatz)
    return native.call(0xF75497BB865F0803, Camcam, floatx, floaty, floatz)
end

function natives.POINT_CAM_AT_ENTITY(Camcam, Entityentity, floatp2, floatp3, floatp4, BOOLp5)
    return native.call(0x5640BFF86B16E8DC, Camcam, Entityentity, floatp2, floatp3, floatp4, BOOLp5)
end

function natives.POINT_CAM_AT_PED_BONE(Camcam, Pedped, intboneIndex, floatx, floaty, floatz, BOOLp6)
    return native.call(0x68B2B5F33BA63C41, Camcam, Pedped, intboneIndex, floatx, floaty, floatz, BOOLp6)
end

function natives.STOP_CAM_POINTING(Camcam)
    return native.call(0xF33AB75780BA57DE, Camcam)
end

function natives.SET_CAM_AFFECTS_AIMING(Camcam, BOOLtoggle)
    return native.call(0x8C1DC7770C51DC8D, Camcam, BOOLtoggle)
end

function natives.SET_CAM_CONTROLS_MINI_MAP_HEADING(Camcam, BOOLtoggle)
    return native.call(0x661B5C8654ADD825, Camcam, BOOLtoggle)
end

function natives.SET_CAM_SMOOTH_SHADOWS(Camcam, BOOLtoggle)
    return native.call(0xA2767257A320FC82, Camcam, BOOLtoggle)
end

function natives._0x271017B9BA825366(Anyp0, BOOLp1)
    return native.call(0x271017B9BA825366, Anyp0, BOOLp1)
end

function natives.SET_CAM_DEBUG_NAME(Camcamera, constcharname)
    return native.call(0x1B93E0107865DD40, Camcamera, constcharname)
end

function natives.GET_DEBUG_CAMERA()
    return native.call(0x77C3CEC46BE286F6)
end

function natives.ADD_CAM_SPLINE_NODE(Camcamera, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, intlength, intsmoothingStyle, introtationOrder)
    return native.call(0x8609C75EC438FB3B, Camcamera, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, intlength, intsmoothingStyle, introtationOrder)
end

function natives.ADD_CAM_SPLINE_NODE_USING_CAMERA_FRAME(Camcam, Camcam2, intlength, intp3)
    return native.call(0x0A9F2A468B328E74, Camcam, Camcam2, intlength, intp3)
end

function natives.ADD_CAM_SPLINE_NODE_USING_CAMERA(Camcam, Camcam2, intlength, intp3)
    return native.call(0x0FB82563989CF4FB, Camcam, Camcam2, intlength, intp3)
end

function natives.ADD_CAM_SPLINE_NODE_USING_GAMEPLAY_FRAME(Camcam, intlength, intp2)
    return native.call(0x609278246A29CA34, Camcam, intlength, intp2)
end

function natives.SET_CAM_SPLINE_PHASE(Camcam, floatp1)
    return native.call(0x242B5874F0A4E052, Camcam, floatp1)
end

function natives.GET_CAM_SPLINE_PHASE(Camcam)
    return native.call(0xB5349E36C546509A, Camcam)
end

function natives.GET_CAM_SPLINE_NODE_PHASE(Camcam)
    return native.call(0xD9D0E694C8282C96, Camcam)
end

function natives.SET_CAM_SPLINE_DURATION(Camcam, inttimeDuration)
    return native.call(0x1381539FEE034CDA, Camcam, inttimeDuration)
end

function natives.SET_CAM_SPLINE_SMOOTHING_STYLE(Camcam, intsmoothingStyle)
    return native.call(0xD1B0F412F109EA5D, Camcam, intsmoothingStyle)
end

function natives.GET_CAM_SPLINE_NODE_INDEX(Camcam)
    return native.call(0xB22B17DF858716A6, Camcam)
end

function natives.SET_CAM_SPLINE_NODE_EASE(Camcam, inteasingFunction, intp2, floatp3)
    return native.call(0x83B8201ED82A9A2D, Camcam, inteasingFunction, intp2, floatp3)
end

function natives.SET_CAM_SPLINE_NODE_VELOCITY_SCALE(Camcam, intp1, floatscale)
    return native.call(0xA6385DEB180F319F, Camcam, intp1, floatscale)
end

function natives.OVERRIDE_CAM_SPLINE_VELOCITY(Camcam, intp1, floatp2, floatp3)
    return native.call(0x40B62FA033EB0346, Camcam, intp1, floatp2, floatp3)
end

function natives.OVERRIDE_CAM_SPLINE_MOTION_BLUR(Camcam, intp1, floatp2, floatp3)
    return native.call(0x7DCF7C708D292D55, Camcam, intp1, floatp2, floatp3)
end

function natives.SET_CAM_SPLINE_NODE_EXTRA_FLAGS(Camcam, intp1, intflags)
    return native.call(0x7BF1A54AE67AC070, Camcam, intp1, intflags)
end

function natives.IS_CAM_SPLINE_PAUSED(Camcam)
    return native.call(0x0290F35C0AD97864, Camcam)
end

function natives.SET_CAM_ACTIVE_WITH_INTERP(CamcamTo, CamcamFrom, intduration, inteaseLocation, inteaseRotation)
    return native.call(0x9FBDA379383A52A4, CamcamTo, CamcamFrom, intduration, inteaseLocation, inteaseRotation)
end

function natives.IS_CAM_INTERPOLATING(Camcam)
    return native.call(0x036F97C908C2B52C, Camcam)
end

function natives.SHAKE_CAM(Camcam, constchartype, floatamplitude)
    return native.call(0x6A25241C340D3822, Camcam, constchartype, floatamplitude)
end

function natives.ANIMATED_SHAKE_CAM(Camcam, constcharp1, constcharp2, constcharp3, floatamplitude)
    return native.call(0xA2746EEAE3E577CD, Camcam, constcharp1, constcharp2, constcharp3, floatamplitude)
end

function natives.IS_CAM_SHAKING(Camcam)
    return native.call(0x6B24BFE83A2BE47B, Camcam)
end

function natives.SET_CAM_SHAKE_AMPLITUDE(Camcam, floatamplitude)
    return native.call(0xD93DB43B82BC0D00, Camcam, floatamplitude)
end

function natives.STOP_CAM_SHAKING(Camcam, BOOLp1)
    return native.call(0xBDECF64367884AC3, Camcam, BOOLp1)
end

function natives.SHAKE_SCRIPT_GLOBAL(constcharp0, floatp1)
    return native.call(0xF4C8CF9E353AFECA, constcharp0, floatp1)
end

function natives.ANIMATED_SHAKE_SCRIPT_GLOBAL(constcharp0, constcharp1, constcharp2, floatp3)
    return native.call(0xC2EAE3FB8CDBED31, constcharp0, constcharp1, constcharp2, floatp3)
end

function natives.IS_SCRIPT_GLOBAL_SHAKING()
    return native.call(0xC912AF078AF19212)
end

function natives.STOP_SCRIPT_GLOBAL_SHAKING(BOOLp0)
    return native.call(0x1C9D7949FA533490, BOOLp0)
end

function natives._0x5D96CFB59DA076A0(Vehiclevehicle, intp1, floatp2)
    return native.call(0x5D96CFB59DA076A0, Vehiclevehicle, intp1, floatp2)
end

function natives.PLAY_CAM_ANIM(Camcam, constcharanimName, constcharanimDictionary, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, BOOLp9, intp10)
    return native.call(0x9A2D0FB2E7852392, Camcam, constcharanimName, constcharanimDictionary, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, BOOLp9, intp10)
end

function natives.IS_CAM_PLAYING_ANIM(Camcam, constcharanimName, constcharanimDictionary)
    return native.call(0xC90621D8A0CEECF2, Camcam, constcharanimName, constcharanimDictionary)
end

function natives.SET_CAM_ANIM_CURRENT_PHASE(Camcam, floatphase)
    return native.call(0x4145A4C44FF3B5A6, Camcam, floatphase)
end

function natives.GET_CAM_ANIM_CURRENT_PHASE(Camcam)
    return native.call(0xA10B2DB49E92A6B0, Camcam)
end

function natives.PLAY_SYNCHRONIZED_CAM_ANIM(Anyp0, Anyp1, constcharanimName, constcharanimDictionary)
    return native.call(0xE32EFE9AB4A9AA0C, Anyp0, Anyp1, constcharanimName, constcharanimDictionary)
end

function natives.SET_FLY_CAM_HORIZONTAL_RESPONSE(Camcam, floatp1, floatp2, floatp3)
    return native.call(0x503F5920162365B2, Camcam, floatp1, floatp2, floatp3)
end

function natives.SET_FLY_CAM_VERTICAL_SPEED_MULTIPLIER(Camcam, floatp1, floatp2, floatp3)
    return native.call(0xE827B9382CFB41BA, Camcam, floatp1, floatp2, floatp3)
end

function natives.SET_FLY_CAM_MAX_HEIGHT(Camcam, floatheight)
    return native.call(0xF9D02130ECDD1D77, Camcam, floatheight)
end

function natives.SET_FLY_CAM_COORD_AND_CONSTRAIN(Camcam, floatx, floaty, floatz)
    return native.call(0xC91C6C55199308CA, Camcam, floatx, floaty, floatz)
end

function natives._0xC8B5C4A79CC18B94(Camcam)
    return native.call(0xC8B5C4A79CC18B94, Camcam)
end

function natives._0x5C48A1D6E3B33179(Camcam)
    return native.call(0x5C48A1D6E3B33179, Camcam)
end

function natives.IS_SCREEN_FADED_OUT()
    return native.call(0xB16FCE9DDC7BA182)
end

function natives.IS_SCREEN_FADED_IN()
    return native.call(0x5A859503B0C08678)
end

function natives.IS_SCREEN_FADING_OUT()
    return native.call(0x797AC7CB535BA28F)
end

function natives.IS_SCREEN_FADING_IN()
    return native.call(0x5C544BC6C57AC575)
end

function natives.DO_SCREEN_FADE_IN(intduration)
    return native.call(0xD4E8E24955024033, intduration)
end

function natives.DO_SCREEN_FADE_OUT(intduration)
    return native.call(0x891B5B39AC6302AF, intduration)
end

function natives.SET_WIDESCREEN_BORDERS(BOOLp0, intp1)
    return native.call(0xDCD4EA924F42D01A, BOOLp0, intp1)
end

function natives._0x4879E4FE39074CDF()
    return native.call(0x4879E4FE39074CDF)
end

function natives.GET_GAMEPLAY_CAM_COORD()
    return native.call(0x14D6F5678D8F1B37)
end

function natives.GET_GAMEPLAY_CAM_ROT(introtationOrder)
    return native.call(0x837765A25378F0BB, introtationOrder)
end

function natives.GET_GAMEPLAY_CAM_FOV()
    return native.call(0x65019750A0324133)
end

function natives._0x487A82C650EB7799(floatp0)
    return native.call(0x487A82C650EB7799, floatp0)
end

function natives._0x0225778816FDC28C(floatp0)
    return native.call(0x0225778816FDC28C, floatp0)
end

function natives.GET_GAMEPLAY_CAM_RELATIVE_HEADING()
    return native.call(0x743607648ADD4587)
end

function natives.SET_GAMEPLAY_CAM_RELATIVE_HEADING(floatheading)
    return native.call(0xB4EC2312F4E5B1F1, floatheading)
end

function natives.GET_GAMEPLAY_CAM_RELATIVE_PITCH()
    return native.call(0x3A6867B4845BEDA2)
end

function natives.SET_GAMEPLAY_CAM_RELATIVE_PITCH(floatangle, floatscalingFactor)
    return native.call(0x6D0858B8EDFD2B7D, floatangle, floatscalingFactor)
end

function natives.SET_GAMEPLAY_CAM_RELATIVE_ROTATION(floatroll, floatpitch, floatyaw)
    return native.call(0x48608C3464F58AB4, floatroll, floatpitch, floatyaw)
end

function natives._0x28B022A17B068A3A(floatp0, floatp1)
    return native.call(0x28B022A17B068A3A, floatp0, floatp1)
end

function natives.SET_GAMEPLAY_CAM_RAW_YAW(floatyaw)
    return native.call(0x103991D4A307D472, floatyaw)
end

function natives.SET_GAMEPLAY_CAM_RAW_PITCH(floatpitch)
    return native.call(0x759E13EBC1C15C5A, floatpitch)
end

function natives._0x469F2ECDEC046337(BOOLp0)
    return native.call(0x469F2ECDEC046337, BOOLp0)
end

function natives.SHAKE_GAMEPLAY_CAM(constcharshakeName, floatintensity)
    return native.call(0xFD55E49555E017CF, constcharshakeName, floatintensity)
end

function natives.IS_GAMEPLAY_CAM_SHAKING()
    return native.call(0x016C090630DF1F89)
end

function natives.SET_GAMEPLAY_CAM_SHAKE_AMPLITUDE(floatamplitude)
    return native.call(0xA87E00932DB4D85D, floatamplitude)
end

function natives.STOP_GAMEPLAY_CAM_SHAKING(BOOLp0)
    return native.call(0x0EF93E9F3D08C178, BOOLp0)
end

function natives.SET_GAMEPLAY_CAM_FOLLOW_PED_THIS_UPDATE(Pedped)
    return native.call(0x8BBACBF51DA047A8, Pedped)
end

function natives.IS_GAMEPLAY_CAM_RENDERING()
    return native.call(0x39B5D1B10383F0C8)
end

function natives._0x3044240D2E0FA842()
    return native.call(0x3044240D2E0FA842)
end

function natives._0x705A276EBFF3133D()
    return native.call(0x705A276EBFF3133D)
end

function natives._0xDB90C6CCA48940F1(BOOLp0)
    return native.call(0xDB90C6CCA48940F1, BOOLp0)
end

function natives.ENABLE_CROSSHAIR_THIS_FRAME()
    return native.call(0xEA7F0AD7E9BA676F)
end

function natives.IS_GAMEPLAY_CAM_LOOKING_BEHIND()
    return native.call(0x70FDA869F3317EA9)
end

function natives.DISABLE_CAM_COLLISION_FOR_ENTITY(Entityentity)
    return native.call(0x2AED6301F67007D5, Entityentity)
end

function natives.DISABLE_CAM_COLLISION_FOR_OBJECT(Entityentity)
    return native.call(0x49482F9FCD825AAA, Entityentity)
end

function natives._0xA7092AFE81944852()
    return native.call(0xA7092AFE81944852)
end

function natives._0xFD3151CD37EA2245(Entityentity)
    return native.call(0xFD3151CD37EA2245, Entityentity)
end

function natives._0xB1381B97F70C7B30()
    return native.call(0xB1381B97F70C7B30)
end

function natives._0xDD79DF9F4D26E1C9()
    return native.call(0xDD79DF9F4D26E1C9)
end

function natives.IS_SPHERE_VISIBLE(floatx, floaty, floatz, floatradius)
    return native.call(0xE33D59DA70B58FDF, floatx, floaty, floatz, floatradius)
end

function natives.IS_FOLLOW_PED_CAM_ACTIVE()
    return native.call(0xC6D3D26810C8E0F9)
end

function natives.SET_FOLLOW_PED_CAM_THIS_UPDATE(constcharcamName, intp1)
    return native.call(0x44A113DD6FFC48D1, constcharcamName, intp1)
end

function natives._0x271401846BD26E92(BOOLp0, BOOLp1)
    return native.call(0x271401846BD26E92, BOOLp0, BOOLp1)
end

function natives._0xC8391C309684595A()
    return native.call(0xC8391C309684595A)
end

function natives.CLAMP_GAMEPLAY_CAM_YAW(floatminimum, floatmaximum)
    return native.call(0x8F993D26E0CA5E8E, floatminimum, floatmaximum)
end

function natives.CLAMP_GAMEPLAY_CAM_PITCH(floatminimum, floatmaximum)
    return native.call(0xA516C198B7DCA1E1, floatminimum, floatmaximum)
end

function natives.ANIMATE_GAMEPLAY_CAM_ZOOM(floatp0, floatdistance)
    return native.call(0xDF2E1F7742402E81, floatp0, floatdistance)
end

function natives.SET_IN_VEHICLE_CAM_STATE_THIS_UPDATE(Vehiclep0, intp1)
    return native.call(0xE9EA16D6E54CDCA4, Vehiclep0, intp1)
end

function natives.DISABLE_FIRST_PERSON_CAM_THIS_FRAME()
    return native.call(0xDE2EF5DA284CC8DF)
end

function natives._0x59424BD75174C9B1()
    return native.call(0x59424BD75174C9B1)
end

function natives._0x9F97DA93681F87EA()
    return native.call(0x9F97DA93681F87EA)
end

function natives.GET_FOLLOW_PED_CAM_ZOOM_LEVEL()
    return native.call(0x33E6C8EFD0CD93E9)
end

function natives.GET_FOLLOW_PED_CAM_VIEW_MODE()
    return native.call(0x8D4D46230B2C353A)
end

function natives.SET_FOLLOW_PED_CAM_VIEW_MODE(intviewMode)
    return native.call(0x5A4F9EDF1673F704, intviewMode)
end

function natives.IS_FOLLOW_VEHICLE_CAM_ACTIVE()
    return native.call(0xCBBDE6D335D6D496)
end

function natives._0x91EF6EE6419E5B97(BOOLp0)
    return native.call(0x91EF6EE6419E5B97, BOOLp0)
end

function natives._0x9DFE13ECDC1EC196(BOOLp0, BOOLp1)
    return native.call(0x9DFE13ECDC1EC196, BOOLp0, BOOLp1)
end

function natives._0x79C0E43EB9B944E2(Hashhash)
    return native.call(0x79C0E43EB9B944E2, Hashhash)
end

function natives.GET_FOLLOW_VEHICLE_CAM_ZOOM_LEVEL()
    return native.call(0xEE82280AB767B690)
end

function natives.SET_FOLLOW_VEHICLE_CAM_ZOOM_LEVEL(intzoomLevel)
    return native.call(0x19464CB6E4078C8A, intzoomLevel)
end

function natives.GET_FOLLOW_VEHICLE_CAM_VIEW_MODE()
    return native.call(0xA4FF579AC0E3AAAE)
end

function natives.SET_FOLLOW_VEHICLE_CAM_VIEW_MODE(intviewMode)
    return native.call(0xAC253D7842768F48, intviewMode)
end

function natives.GET_CAM_VIEW_MODE_FOR_CONTEXT(intcontext)
    return native.call(0xEE778F8C7E1142E2, intcontext)
end

function natives.SET_CAM_VIEW_MODE_FOR_CONTEXT(intcontext, intviewMode)
    return native.call(0x2A2173E46DAECD12, intcontext, intviewMode)
end

function natives.GET_CAM_ACTIVE_VIEW_MODE_CONTEXT()
    return native.call(0x19CAFA3C87F7C2FF)
end

function natives.USE_STUNT_CAMERA_THIS_FRAME()
    return native.call(0x6493CF69859B116A)
end

function natives.SET_GAMEPLAY_CAM_HASH(constcharcamName)
    return native.call(0x425A920FDB9A0DDA, constcharcamName)
end

function natives._0x0AA27680A0BD43FA()
    return native.call(0x0AA27680A0BD43FA)
end

function natives.SET_FOLLOW_TURRET_SEAT_CAM(intseatIndex)
    return native.call(0x5C90CAB09951A12F, intseatIndex)
end

function natives.IS_AIM_CAM_ACTIVE()
    return native.call(0x68EDDA28A5976D07)
end

function natives.IS_AIM_CAM_THIRD_PERSON_ACTIVE()
    return native.call(0x74BD83EA840F6BC9)
end

function natives.IS_FIRST_PERSON_AIM_CAM_ACTIVE()
    return native.call(0x5E346D934122613F)
end

function natives.DISABLE_AIM_CAM_THIS_UPDATE()
    return native.call(0x1A31FE0049E542F6)
end

function natives.GET_FIRST_PERSON_AIM_CAM_ZOOM_FACTOR()
    return native.call(0x7EC52CC40597D170)
end

function natives.SET_FIRST_PERSON_AIM_CAM_ZOOM_FACTOR(floatzoomFactor)
    return native.call(0x70894BD0915C5BCA, floatzoomFactor)
end

function natives._0xCED08CBE8EBB97C7(floatp0, floatp1)
    return native.call(0xCED08CBE8EBB97C7, floatp0, floatp1)
end

function natives._0x2F7F2B26DD3F18EE(floatp0, floatp1)
    return native.call(0x2F7F2B26DD3F18EE, floatp0, floatp1)
end

function natives.SET_FIRST_PERSON_CAM_PITCH_RANGE(floatp0, floatp1)
    return native.call(0xBCFC632DB7673BF0, floatp0, floatp1)
end

function natives.SET_FIRST_PERSON_AIM_CAM_NEAR_CLIP_THIS_UPDATE(floatp0)
    return native.call(0x0AF7B437918103B3, floatp0)
end

function natives.SET_THIRD_PERSON_AIM_CAM_NEAR_CLIP_THIS_UPDATE(floatp0)
    return native.call(0x42156508606DE65E, floatp0)
end

function natives._0x4008EDF7D6E48175(BOOLp0)
    return native.call(0x4008EDF7D6E48175, BOOLp0)
end

function natives._0x380B4968D1E09E55()
    return native.call(0x380B4968D1E09E55)
end

function natives.GET_FINAL_RENDERED_CAM_COORD()
    return native.call(0xA200EB1EE790F448)
end

function natives.GET_FINAL_RENDERED_CAM_ROT(introtationOrder)
    return native.call(0x5B4E4C817FCC2DFB, introtationOrder)
end

function natives.GET_FINAL_RENDERED_IN_WHEN_FRIENDLY_ROT(Playerplayer, introtationOrder)
    return native.call(0x26903D9CD1175F2C, Playerplayer, introtationOrder)
end

function natives.GET_FINAL_RENDERED_CAM_FOV()
    return native.call(0x80EC114669DAEFF4)
end

function natives.GET_FINAL_RENDERED_IN_WHEN_FRIENDLY_FOV(Playerplayer)
    return native.call(0x5F35F6732C3FBBA0, Playerplayer)
end

function natives.GET_FINAL_RENDERED_CAM_NEAR_CLIP()
    return native.call(0xD0082607100D7193)
end

function natives.GET_FINAL_RENDERED_CAM_FAR_CLIP()
    return native.call(0xDFC8CBC606FDB0FC)
end

function natives.GET_FINAL_RENDERED_CAM_NEAR_DOF()
    return native.call(0xA03502FC581F7D9B)
end

function natives.GET_FINAL_RENDERED_CAM_FAR_DOF()
    return native.call(0x9780F32BCAF72431)
end

function natives.GET_FINAL_RENDERED_CAM_MOTION_BLUR_STRENGTH()
    return native.call(0x162F9D995753DC19)
end

function natives.SET_GAMEPLAY_COORD_HINT(floatx, floaty, floatz, intduration, intblendOutDuration, intblendInDuration, intunk)
    return native.call(0xD51ADCD2D8BC0FB3, floatx, floaty, floatz, intduration, intblendOutDuration, intblendInDuration, intunk)
end

function natives.SET_GAMEPLAY_PED_HINT(Pedp0, floatx1, floaty1, floatz1, BOOLp4, intduration, intblendOutDuration, intblendInDuration)
    return native.call(0x2B486269ACD548D3, Pedp0, floatx1, floaty1, floatz1, BOOLp4, intduration, intblendOutDuration, intblendInDuration)
end

function natives.SET_GAMEPLAY_VEHICLE_HINT(Vehiclevehicle, floatoffsetX, floatoffsetY, floatoffsetZ, BOOLp4, inttime, inteaseInTime, inteaseOutTime)
    return native.call(0xA2297E18F3E71C2E, Vehiclevehicle, floatoffsetX, floatoffsetY, floatoffsetZ, BOOLp4, inttime, inteaseInTime, inteaseOutTime)
end

function natives.SET_GAMEPLAY_OBJECT_HINT(Anyp0, floatp1, floatp2, floatp3, BOOLp4, Anyp5, Anyp6, Anyp7)
    return native.call(0x83E87508A2CA2AC6, Anyp0, floatp1, floatp2, floatp3, BOOLp4, Anyp5, Anyp6, Anyp7)
end

function natives.SET_GAMEPLAY_ENTITY_HINT(Entityentity, floatxOffset, floatyOffset, floatzOffset, BOOLp4, intp5, intp6, intp7, Anyp8)
    return native.call(0x189E955A8313E298, Entityentity, floatxOffset, floatyOffset, floatzOffset, BOOLp4, intp5, intp6, intp7, Anyp8)
end

function natives.IS_GAMEPLAY_HINT_ACTIVE()
    return native.call(0xE520FF1AD2785B40)
end

function natives.STOP_GAMEPLAY_HINT(BOOLp0)
    return native.call(0xF46C581C61718916, BOOLp0)
end

function natives._0xCCD078C2665D2973(BOOLp0)
    return native.call(0xCCD078C2665D2973, BOOLp0)
end

function natives._0x247ACBC4ABBC9D1C(BOOLp0)
    return native.call(0x247ACBC4ABBC9D1C, BOOLp0)
end

function natives._0xBF72910D0F26F025()
    return native.call(0xBF72910D0F26F025)
end

function natives.SET_GAMEPLAY_HINT_FOV(floatFOV)
    return native.call(0x513403FB9C56211F, floatFOV)
end

function natives.SET_GAMEPLAY_HINT_FOLLOW_DISTANCE_SCALAR(floatvalue)
    return native.call(0xF8BDBF3D573049A1, floatvalue)
end

function natives.SET_GAMEPLAY_HINT_BASE_ORBIT_PITCH_OFFSET(floatvalue)
    return native.call(0xD1F8363DFAD03848, floatvalue)
end

function natives.SET_GAMEPLAY_HINT_ANIM_OFFSETX(floatxOffset)
    return native.call(0x5D7B620DAE436138, floatxOffset)
end

function natives.SET_GAMEPLAY_HINT_ANIM_OFFSETY(floatyOffset)
    return native.call(0xC92717EF615B6704, floatyOffset)
end

function natives.SET_GAMEPLAY_HINT_ANIM_CLOSEUP(BOOLtoggle)
    return native.call(0xE3433EADAAF7EE40, BOOLtoggle)
end

function natives.SET_CINEMATIC_BUTTON_ACTIVE(BOOLp0)
    return native.call(0x51669F7D1FB53D9F, BOOLp0)
end

function natives.IS_CINEMATIC_CAM_RENDERING()
    return native.call(0xB15162CB5826E9E8)
end

function natives.SHAKE_CINEMATIC_CAM(constcharp0, floatp1)
    return native.call(0xDCE214D9ED58F3CF, constcharp0, floatp1)
end

function natives.IS_CINEMATIC_CAM_SHAKING()
    return native.call(0xBBC08F6B4CB8FF0A)
end

function natives.SET_CINEMATIC_CAM_SHAKE_AMPLITUDE(floatp0)
    return native.call(0xC724C701C30B2FE7, floatp0)
end

function natives.STOP_CINEMATIC_CAM_SHAKING(BOOLp0)
    return native.call(0x2238E588E588A6D7, BOOLp0)
end

function natives.DISABLE_VEHICLE_FIRST_PERSON_CAM_THIS_FRAME()
    return native.call(0xADFF1B2A555F5FBA)
end

function natives._0x62ECFCFDEE7885D6()
    return native.call(0x62ECFCFDEE7885D6)
end

function natives.INVALIDATE_VEHICLE_IDLE_CAM()
    return native.call(0x9E4CFFF989258472)
end

function natives.INVALIDATE_IDLE_CAM()
    return native.call(0xF4F2C0D4EE209E20)
end

function natives.IS_CINEMATIC_IDLE_CAM_RENDERING()
    return native.call(0xCA9D2AA3E326D720)
end

function natives.IS_IN_VEHICLE_CAM_DISABLED()
    return native.call(0x4F32C0D5A90A9B40)
end

function natives.CREATE_CINEMATIC_SHOT(Anyp0, intp1, Anyp2, Entityentity)
    return native.call(0x741B0129D4560F31, Anyp0, intp1, Anyp2, Entityentity)
end

function natives.IS_CINEMATIC_SHOT_ACTIVE(Anyp0)
    return native.call(0xCC9F3371A7C28BC9, Anyp0)
end

function natives.STOP_CINEMATIC_SHOT(Hashp0)
    return native.call(0x7660C6E75D3A078E, Hashp0)
end

function natives.FORCE_CINEMATIC_RENDERING_THIS_UPDATE(BOOLp0)
    return native.call(0xA41BCD7213805AAC, BOOLp0)
end

function natives.SET_CINEMATIC_NEWS_CHANNEL_ACTIVE_THIS_UPDATE()
    return native.call(0xDC9DA9E8789F5246)
end

function natives.SET_CINEMATIC_MODE_ACTIVE(BOOLtoggle)
    return native.call(0xDCF0754AC3D6FD4E, BOOLtoggle)
end

function natives._0x1F2300CB7FA7B7F6()
    return native.call(0x1F2300CB7FA7B7F6)
end

function natives._0x17FCA7199A530203()
    return native.call(0x17FCA7199A530203)
end

function natives.IS_BONNET_CINEMATIC_CAM_RENDERING()
    return native.call(0xD7360051C885628B)
end

function natives.IS_CINEMATIC_CAM_INPUT_ACTIVE()
    return native.call(0xF5F1E89A970B7796)
end

function natives._0x7B8A361C1813FBEF()
    return native.call(0x7B8A361C1813FBEF)
end

function natives.STOP_CUTSCENE_CAM_SHAKING()
    return native.call(0xDB629FFD9285FA06)
end

function natives._0x324C5AA411DA7737(Anyp0)
    return native.call(0x324C5AA411DA7737, Anyp0)
end

function natives._0x12DED8CA53D47EA5(floatp0)
    return native.call(0x12DED8CA53D47EA5, floatp0)
end

function natives.GET_FOCUS_PED_ON_SCREEN(floatp0, intp1, floatp2, floatp3, floatp4, floatp5, floatp6, intp7, intp8)
    return native.call(0x89215EC747DF244A, floatp0, intp1, floatp2, floatp3, floatp4, floatp5, floatp6, intp7, intp8)
end

function natives._0x5A43C76F7FC7BA5F()
    return native.call(0x5A43C76F7FC7BA5F)
end

function natives.SET_CAM_EFFECT(intp0)
    return native.call(0x80C8B1846639BB19, intp0)
end

function natives._0x5C41E6BABC9E2112(Anyp0)
    return native.call(0x5C41E6BABC9E2112, Anyp0)
end

function natives.SET_GAMEPLAY_CAM_VEHICLE_CAMERA(constcharvehicleName)
    return native.call(0x21E253A7F8DA5DFB, constcharvehicleName)
end

function natives.SET_GAMEPLAY_CAM_VEHICLE_CAMERA_NAME(HashvehicleModel)
    return native.call(0x11FA5D3479C7DD47, HashvehicleModel)
end

function natives._0xEAF0FA793D05C592()
    return native.call(0xEAF0FA793D05C592)
end

function natives._0x62374889A4D59F72()
    return native.call(0x62374889A4D59F72)
end

function natives.REPLAY_FREE_CAM_GET_MAX_RANGE()
    return native.call(0x8BFCEB5EA1B161B6)
end

function natives.SET_CLOCK_TIME(inthour, intminute, intsecond)
    return native.call(0x47C3B5848C3E45D8, inthour, intminute, intsecond)
end

function natives.PAUSE_CLOCK(BOOLtoggle)
    return native.call(0x4055E40BD2DBEC1D, BOOLtoggle)
end

function natives.ADVANCE_CLOCK_TIME_TO(inthour, intminute, intsecond)
    return native.call(0xC8CA9670B9D83B3B, inthour, intminute, intsecond)
end

function natives.ADD_TO_CLOCK_TIME(inthours, intminutes, intseconds)
    return native.call(0xD716F30D8C8980E2, inthours, intminutes, intseconds)
end

function natives.GET_CLOCK_HOURS()
    return native.call(0x25223CA6B4D20B7F)
end

function natives.GET_CLOCK_MINUTES()
    return native.call(0x13D2B8ADD79640F2)
end

function natives.GET_CLOCK_SECONDS()
    return native.call(0x494E97C2EF27C470)
end

function natives.SET_CLOCK_DATE(intday, intmonth, intyear)
    return native.call(0xB096419DF0D06CE7, intday, intmonth, intyear)
end

function natives.GET_CLOCK_DAY_OF_WEEK()
    return native.call(0xD972E4BD7AEB235F)
end

function natives.GET_CLOCK_DAY_OF_MONTH()
    return native.call(0x3D10BC92A4DB1D35)
end

function natives.GET_CLOCK_MONTH()
    return native.call(0xBBC72712E80257A1)
end

function natives.GET_CLOCK_YEAR()
    return native.call(0x961777E64BDAF717)
end

function natives.GET_MILLISECONDS_PER_GAME_MINUTE()
    return native.call(0x2F8B4D1C595B11DB)
end

function natives.GET_POSIX_TIME(intyear, intmonth, intday, inthour, intminute, intsecond)
    return native.call(0xDA488F299A5B164E, intyear, intmonth, intday, inthour, intminute, intsecond)
end

function natives.GET_UTC_TIME(intyear, intmonth, intday, inthour, intminute, intsecond)
    return native.call(0x8117E09A19EEF4D3, intyear, intmonth, intday, inthour, intminute, intsecond)
end

function natives.GET_LOCAL_TIME(intyear, intmonth, intday, inthour, intminute, intsecond)
    return native.call(0x50C7A99057A69748, intyear, intmonth, intday, inthour, intminute, intsecond)
end

function natives.REQUEST_CUTSCENE(constcharcutsceneName, intflags)
    return native.call(0x7A86743F475D9E09, constcharcutsceneName, intflags)
end

function natives.REQUEST_CUTSCENE_WITH_PLAYBACK_LIST(constcharcutsceneName, intplaybackFlags, intflags)
    return native.call(0xC23DE0E91C30B58C, constcharcutsceneName, intplaybackFlags, intflags)
end

function natives.REMOVE_CUTSCENE()
    return native.call(0x440AF51A3462B86F)
end

function natives.HAS_CUTSCENE_LOADED()
    return native.call(0xC59F528E9AB9F339)
end

function natives.HAS_THIS_CUTSCENE_LOADED(constcharcutsceneName)
    return native.call(0x228D3D94F8A11C3C, constcharcutsceneName)
end

function natives._0x8D9DF6ECA8768583(intthreadId)
    return native.call(0x8D9DF6ECA8768583, intthreadId)
end

function natives.CAN_REQUEST_ASSETS_FOR_CUTSCENE_ENTITY()
    return native.call(0xB56BBBCC2955D9CB)
end

function natives.IS_CUTSCENE_PLAYBACK_FLAG_SET(intflag)
    return native.call(0x71B74D2AE19338D0, intflag)
end

function natives.SET_CUTSCENE_ENTITY_STREAMING_FLAGS(constcharcutsceneEntName, intp1, intp2)
    return native.call(0x4C61C75BEE8184C2, constcharcutsceneEntName, intp1, intp2)
end

function natives.REQUEST_CUT_FILE(constcharcutsceneName)
    return native.call(0x06A3524161C502BA, constcharcutsceneName)
end

function natives.HAS_CUT_FILE_LOADED(constcharcutsceneName)
    return native.call(0xA1C996C2A744262E, constcharcutsceneName)
end

function natives.REMOVE_CUT_FILE(constcharcutsceneName)
    return native.call(0xD00D76A7DFC9D852, constcharcutsceneName)
end

function natives.GET_CUT_FILE_NUM_SECTIONS(constcharcutsceneName)
    return native.call(0x0ABC54DE641DC0FC, constcharcutsceneName)
end

function natives.START_CUTSCENE(intflags)
    return native.call(0x186D5CB5E7B0FF7B, intflags)
end

function natives.START_CUTSCENE_AT_COORDS(floatx, floaty, floatz, intflags)
    return native.call(0x1C9ADDA3244A1FBF, floatx, floaty, floatz, intflags)
end

function natives.STOP_CUTSCENE(BOOLp0)
    return native.call(0xC7272775B4DC786E, BOOLp0)
end

function natives.STOP_CUTSCENE_IMMEDIATELY()
    return native.call(0xD220BDD222AC4A1E)
end

function natives.SET_CUTSCENE_ORIGIN(floatx, floaty, floatz, floatp3, intp4)
    return native.call(0xB812B3FD1C01CF27, floatx, floaty, floatz, floatp3, intp4)
end

function natives._0x011883F41211432A(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intp6)
    return native.call(0x011883F41211432A, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intp6)
end

function natives.GET_CUTSCENE_TIME()
    return native.call(0xE625BEABBAFFDAB9)
end

function natives.GET_CUTSCENE_TOTAL_DURATION()
    return native.call(0xEE53B14A19E480D4)
end

function natives._0x971D7B15BCDBEF99()
    return native.call(0x971D7B15BCDBEF99)
end

function natives.WAS_CUTSCENE_SKIPPED()
    return native.call(0x40C8656EDAEDD569)
end

function natives.HAS_CUTSCENE_FINISHED()
    return native.call(0x7C0A893088881D57)
end

function natives.IS_CUTSCENE_ACTIVE()
    return native.call(0x991251AFC3981F84)
end

function natives.IS_CUTSCENE_PLAYING()
    return native.call(0xD3C2E180A40F031E)
end

function natives.GET_CUTSCENE_SECTION_PLAYING()
    return native.call(0x49010A6A396553D8)
end

function natives.GET_ENTITY_INDEX_OF_CUTSCENE_ENTITY(constcharcutsceneEntName, HashmodelHash)
    return native.call(0x0A2E9FDB9A8C62F6, constcharcutsceneEntName, HashmodelHash)
end

function natives._0x583DF8E3D4AFBD98()
    return native.call(0x583DF8E3D4AFBD98)
end

function natives._0x4CEBC1ED31E8925E(constcharcutsceneName)
    return native.call(0x4CEBC1ED31E8925E, constcharcutsceneName)
end

function natives._0x4FCD976DA686580C(Anyp0)
    return native.call(0x4FCD976DA686580C, Anyp0)
end

function natives.REGISTER_ENTITY_FOR_CUTSCENE(PedcutscenePed, constcharcutsceneEntName, intp2, HashmodelHash, intp4)
    return native.call(0xE40C1C56DF95C2E8, PedcutscenePed, constcharcutsceneEntName, intp2, HashmodelHash, intp4)
end

function natives.GET_ENTITY_INDEX_OF_REGISTERED_ENTITY(constcharcutsceneEntName, HashmodelHash)
    return native.call(0xC0741A26499654CD, constcharcutsceneEntName, HashmodelHash)
end

function natives._0x7F96F23FA9B73327(HashmodelHash)
    return native.call(0x7F96F23FA9B73327, HashmodelHash)
end

function natives.SET_CUTSCENE_TRIGGER_AREA(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5)
    return native.call(0x9896CE4721BE84BA, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5)
end

function natives.CAN_SET_ENTER_STATE_FOR_REGISTERED_ENTITY(constcharcutsceneEntName, HashmodelHash)
    return native.call(0x645D0B458D8E17B5, constcharcutsceneEntName, HashmodelHash)
end

function natives.CAN_SET_EXIT_STATE_FOR_REGISTERED_ENTITY(constcharcutsceneEntName, HashmodelHash)
    return native.call(0x4C6A6451C79E4662, constcharcutsceneEntName, HashmodelHash)
end

function natives.CAN_SET_EXIT_STATE_FOR_CAMERA(BOOLp0)
    return native.call(0xB2CBCD0930DFB420, BOOLp0)
end

function natives._0xC61B86C9F61EB404(BOOLtoggle)
    return native.call(0xC61B86C9F61EB404, BOOLtoggle)
end

function natives.SET_CUTSCENE_FADE_VALUES(BOOLp0, BOOLp1, BOOLp2, BOOLp3)
    return native.call(0x8093F23ABACCC7D4, BOOLp0, BOOLp1, BOOLp2, BOOLp3)
end

function natives._0x20746F7B1032A3C7(BOOLp0, BOOLp1, BOOLp2, BOOLp3)
    return native.call(0x20746F7B1032A3C7, BOOLp0, BOOLp1, BOOLp2, BOOLp3)
end

function natives._0x06EE9048FD080382(BOOLp0)
    return native.call(0x06EE9048FD080382, BOOLp0)
end

function natives._0xA0FE76168A189DDB()
    return native.call(0xA0FE76168A189DDB)
end

function natives._0x2F137B508DE238F2(BOOLp0)
    return native.call(0x2F137B508DE238F2, BOOLp0)
end

function natives._0xE36A98D8AB3D3C66(BOOLp0)
    return native.call(0xE36A98D8AB3D3C66, BOOLp0)
end

function natives._0x5EDEF0CF8C1DAB3C()
    return native.call(0x5EDEF0CF8C1DAB3C)
end

function natives.SET_CUTSCENE_CAN_BE_SKIPPED(BOOLp0)
    return native.call(0x41FAA8FB2ECE8720, BOOLp0)
end

function natives.REGISTER_SYNCHRONISED_SCRIPT_SPEECH()
    return native.call(0x2131046957F31B04)
end

function natives.SET_CUTSCENE_PED_COMPONENT_VARIATION(constcharcutsceneEntName, intp1, intp2, intp3, HashmodelHash)
    return native.call(0xBA01E7B6DEEFBBC9, constcharcutsceneEntName, intp1, intp2, intp3, HashmodelHash)
end

function natives.SET_CUTSCENE_PED_COMPONENT_VARIATION_FROM_PED(constcharcutsceneEntName, Pedped, HashmodelHash)
    return native.call(0x2A56C06EBEF2B0D9, constcharcutsceneEntName, Pedped, HashmodelHash)
end

function natives.DOES_CUTSCENE_ENTITY_EXIST(constcharcutsceneEntName, HashmodelHash)
    return native.call(0x499EF20C5DB25C59, constcharcutsceneEntName, HashmodelHash)
end

function natives.SET_CUTSCENE_PED_PROP_VARIATION(constcharcutsceneEntName, intp1, intp2, intp3, HashmodelHash)
    return native.call(0x0546524ADE2E9723, constcharcutsceneEntName, intp1, intp2, intp3, HashmodelHash)
end

function natives.HAS_CUTSCENE_CUT_THIS_FRAME()
    return native.call(0x708BDD8CD795B043)
end

function natives.DATAFILE_WATCH_REQUEST_ID(intid)
    return native.call(0xAD6875BBC0FC899C, intid)
end

function natives.DATAFILE_CLEAR_WATCH_LIST()
    return native.call(0x6CC86E78358D5119)
end

function natives.DATAFILE_IS_VALID_REQUEST_ID(intindex)
    return native.call(0xFCCAE5B92A830878, intindex)
end

function natives.DATAFILE_HAS_LOADED_FILE_DATA(Anyp0)
    return native.call(0x15FF52B809DB2353, Anyp0)
end

function natives.DATAFILE_HAS_VALID_FILE_DATA(Anyp0)
    return native.call(0xF8CC1EBE0B62E29F, Anyp0)
end

function natives.DATAFILE_SELECT_ACTIVE_FILE(Anyp0, Anyp1)
    return native.call(0x22DA66936E0FFF37, Anyp0, Anyp1)
end

function natives.DATAFILE_DELETE_REQUESTED_FILE(Anyp0)
    return native.call(0x8F5EA1C01D65A100, Anyp0)
end

function natives.UGC_CREATE_CONTENT(Anydata, intdataCount, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, BOOLpublish, Anyp7)
    return native.call(0xC84527E235FCA219, Anydata, intdataCount, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, BOOLpublish, Anyp7)
end

function natives.UGC_CREATE_MISSION(constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, BOOLpublish, Anyp5)
    return native.call(0xA5EFC3E847D60507, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, BOOLpublish, Anyp5)
end

function natives.UGC_UPDATE_CONTENT(constcharcontentId, Anydata, intdataCount, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, Anyp7)
    return native.call(0x648E7A5434AF7969, constcharcontentId, Anydata, intdataCount, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, Anyp7)
end

function natives.UGC_UPDATE_MISSION(constcharcontentId, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, Anyp5)
    return native.call(0x4645DE9980999E93, constcharcontentId, constcharcontentName, constchardescription, constchartagsCsv, constcharcontentTypeName, Anyp5)
end

function natives.UGC_SET_PLAYER_DATA(constcharcontentId, floatrating, constcharcontentTypeName, Anyp3)
    return native.call(0x692D808C34A82143, constcharcontentId, floatrating, constcharcontentTypeName, Anyp3)
end

function natives.DATAFILE_SELECT_UGC_DATA(intp0, Anyp1)
    return native.call(0xA69AC4ADE82B57A4, intp0, Anyp1)
end

function natives.DATAFILE_SELECT_UGC_STATS(intp0, BOOLp1, Anyp2)
    return native.call(0x9CB0BFA7A9342C3D, intp0, BOOLp1, Anyp2)
end

function natives.DATAFILE_SELECT_UGC_PLAYER_DATA(intp0, Anyp1)
    return native.call(0x52818819057F2B40, intp0, Anyp1)
end

function natives.DATAFILE_SELECT_CREATOR_STATS(intp0, Anyp1)
    return native.call(0x01095C95CD46B624, intp0, Anyp1)
end

function natives.DATAFILE_LOAD_OFFLINE_UGC(constcharfilename, Anyp1)
    return native.call(0xC5238C011AF405E4, constcharfilename, Anyp1)
end

function natives.DATAFILE_CREATE(intp0)
    return native.call(0xD27058A1CA2B13EE, intp0)
end

function natives.DATAFILE_DELETE(intp0)
    return native.call(0x9AB9C1CFC8862DFB, intp0)
end

function natives.DATAFILE_STORE_MISSION_HEADER(intp0)
    return native.call(0x2ED61456317B8178, intp0)
end

function natives.DATAFILE_FLUSH_MISSION_HEADER()
    return native.call(0xC55854C7D7274882)
end

function natives.DATAFILE_GET_FILE_DICT(intp0)
    return native.call(0x906B778CA1DC72B6, intp0)
end

function natives.DATAFILE_START_SAVE_TO_CLOUD(constcharfilename, Anyp1)
    return native.call(0x83BCCE3224735F05, constcharfilename, Anyp1)
end

function natives.DATAFILE_UPDATE_SAVE_TO_CLOUD(BOOLp0)
    return native.call(0x4DFDD9EB705F8140, BOOLp0)
end

function natives.DATAFILE_IS_SAVE_PENDING()
    return native.call(0xBEDB96A7584AA8CF)
end

function natives._0xA6EEF01087181EDD(Anyp0, Anyp1)
    return native.call(0xA6EEF01087181EDD, Anyp0, Anyp1)
end

function natives._0x6AD0BD5E087866CB(Anyp0)
    return native.call(0x6AD0BD5E087866CB, Anyp0)
end

function natives._0xDBF860CF1DB8E599(Anyp0)
    return native.call(0xDBF860CF1DB8E599, Anyp0)
end

function natives.DATADICT_SET_BOOL(AnyobjectData, constcharkey, BOOLvalue)
    return native.call(0x35124302A556A325, AnyobjectData, constcharkey, BOOLvalue)
end

function natives.DATADICT_SET_INT(AnyobjectData, constcharkey, intvalue)
    return native.call(0xE7E035450A7948D5, AnyobjectData, constcharkey, intvalue)
end

function natives.DATADICT_SET_FLOAT(AnyobjectData, constcharkey, floatvalue)
    return native.call(0xC27E1CC2D795105E, AnyobjectData, constcharkey, floatvalue)
end

function natives.DATADICT_SET_STRING(AnyobjectData, constcharkey, constcharvalue)
    return native.call(0x8FF3847DADD8E30C, AnyobjectData, constcharkey, constcharvalue)
end

function natives.DATADICT_SET_VECTOR(AnyobjectData, constcharkey, floatvalueX, floatvalueY, floatvalueZ)
    return native.call(0x4CD49B76338C7DEE, AnyobjectData, constcharkey, floatvalueX, floatvalueY, floatvalueZ)
end

function natives.DATADICT_CREATE_DICT(AnyobjectData, constcharkey)
    return native.call(0xA358F56F10732EE1, AnyobjectData, constcharkey)
end

function natives.DATADICT_CREATE_ARRAY(AnyobjectData, constcharkey)
    return native.call(0x5B11728527CA6E5F, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_BOOL(AnyobjectData, constcharkey)
    return native.call(0x1186940ED72FFEEC, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_INT(AnyobjectData, constcharkey)
    return native.call(0x78F06F6B1FB5A80C, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_FLOAT(AnyobjectData, constcharkey)
    return native.call(0x06610343E73B9727, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_STRING(AnyobjectData, constcharkey)
    return native.call(0x3D2FD9E763B24472, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_VECTOR(AnyobjectData, constcharkey)
    return native.call(0x46CD3CB66E0825CC, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_DICT(AnyobjectData, constcharkey)
    return native.call(0xB6B9DDC412FCEEE2, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_ARRAY(AnyobjectData, constcharkey)
    return native.call(0x7A983AA9DA2659ED, AnyobjectData, constcharkey)
end

function natives.DATADICT_GET_TYPE(AnyobjectData, constcharkey)
    return native.call(0x031C55ED33227371, AnyobjectData, constcharkey)
end

function natives.DATAARRAY_ADD_BOOL(AnyarrayData, BOOLvalue)
    return native.call(0xF8B0F5A43E928C76, AnyarrayData, BOOLvalue)
end

function natives.DATAARRAY_ADD_INT(AnyarrayData, intvalue)
    return native.call(0xCABDB751D86FE93B, AnyarrayData, intvalue)
end

function natives.DATAARRAY_ADD_FLOAT(AnyarrayData, floatvalue)
    return native.call(0x57A995FD75D37F56, AnyarrayData, floatvalue)
end

function natives.DATAARRAY_ADD_STRING(AnyarrayData, constcharvalue)
    return native.call(0x2F0661C155AEEEAA, AnyarrayData, constcharvalue)
end

function natives.DATAARRAY_ADD_VECTOR(AnyarrayData, floatvalueX, floatvalueY, floatvalueZ)
    return native.call(0x407F8D034F70F0C2, AnyarrayData, floatvalueX, floatvalueY, floatvalueZ)
end

function natives.DATAARRAY_ADD_DICT(AnyarrayData)
    return native.call(0x6889498B3E19C797, AnyarrayData)
end

function natives.DATAARRAY_GET_BOOL(AnyarrayData, intarrayIndex)
    return native.call(0x50C1B2874E50C114, AnyarrayData, intarrayIndex)
end

function natives.DATAARRAY_GET_INT(AnyarrayData, intarrayIndex)
    return native.call(0x3E5AE19425CD74BE, AnyarrayData, intarrayIndex)
end

function natives.DATAARRAY_GET_FLOAT(AnyarrayData, intarrayIndex)
    return native.call(0xC0C527B525D7CFB5, AnyarrayData, intarrayIndex)
end

function natives.DATAARRAY_GET_STRING(AnyarrayData, intarrayIndex)
    return native.call(0xD3F2FFEB8D836F52, AnyarrayData, intarrayIndex)
end

function natives.DATAARRAY_GET_VECTOR(AnyarrayData, intarrayIndex)
    return native.call(0x8D2064E5B64A628A, AnyarrayData, intarrayIndex)
end

function natives.DATAARRAY_GET_DICT(AnyarrayData, intarrayIndex)
    return native.call(0x8B5FADCC4E3A145F, AnyarrayData, intarrayIndex)
end

function natives.DATAARRAY_GET_COUNT(AnyarrayData)
    return native.call(0x065DB281590CEA2D, AnyarrayData)
end

function natives.DATAARRAY_GET_TYPE(AnyarrayData, intarrayIndex)
    return native.call(0x3A0014ADB172A3C5, AnyarrayData, intarrayIndex)
end

function natives.DECOR_SET_TIME(Entityentity, constcharpropertyName, inttimestamp)
    return native.call(0x95AED7B8E39ECAA4, Entityentity, constcharpropertyName, inttimestamp)
end

function natives.DECOR_SET_BOOL(Entityentity, constcharpropertyName, BOOLvalue)
    return native.call(0x6B1E8E2ED1335B71, Entityentity, constcharpropertyName, BOOLvalue)
end

function natives.DECOR_SET_FLOAT(Entityentity, constcharpropertyName, floatvalue)
    return native.call(0x211AB1DD8D0F363A, Entityentity, constcharpropertyName, floatvalue)
end

function natives.DECOR_SET_INT(Entityentity, constcharpropertyName, intvalue)
    return native.call(0x0CE3AA5E1CA19E10, Entityentity, constcharpropertyName, intvalue)
end

function natives.DECOR_GET_BOOL(Entityentity, constcharpropertyName)
    return native.call(0xDACE671663F2F5DB, Entityentity, constcharpropertyName)
end

function natives.DECOR_GET_FLOAT(Entityentity, constcharpropertyName)
    return native.call(0x6524A2F114706F43, Entityentity, constcharpropertyName)
end

function natives.DECOR_GET_INT(Entityentity, constcharpropertyName)
    return native.call(0xA06C969B02A97298, Entityentity, constcharpropertyName)
end

function natives.DECOR_EXIST_ON(Entityentity, constcharpropertyName)
    return native.call(0x05661B80A8C9165F, Entityentity, constcharpropertyName)
end

function natives.DECOR_REMOVE(Entityentity, constcharpropertyName)
    return native.call(0x00EE9F297C738720, Entityentity, constcharpropertyName)
end

function natives.DECOR_REGISTER(constcharpropertyName, inttype)
    return native.call(0x9FD90732F56403CE, constcharpropertyName, inttype)
end

function natives.DECOR_IS_REGISTERED_AS_TYPE(constcharpropertyName, inttype)
    return native.call(0x4F14F9F870D6FBC8, constcharpropertyName, inttype)
end

function natives.DECOR_REGISTER_LOCK()
    return native.call(0xA9D14EEA259F9248)
end

function natives._0x241FCA5B1AA14F75()
    return native.call(0x241FCA5B1AA14F75)
end

function natives.IS_DLC_PRESENT(HashdlcHash)
    return native.call(0x812595A0644CE1DE, HashdlcHash)
end

function natives._0xF2E07819EF1A5289()
    return native.call(0xF2E07819EF1A5289)
end

function natives._0x9489659372A81585()
    return native.call(0x9489659372A81585)
end

function natives._0xA213B11DFF526300()
    return native.call(0xA213B11DFF526300)
end

function natives.GET_EXTRA_CONTENT_PACK_HAS_BEEN_INSTALLED()
    return native.call(0x8D30F648014A92B5)
end

function natives.GET_IS_LOADING_SCREEN_ACTIVE()
    return native.call(0x10D0A8F259E93EC9)
end

function natives._0xC4637A6D03C24CC3()
    return native.call(0xC4637A6D03C24CC3)
end

function natives.HAS_CLOUD_REQUESTS_FINISHED(BOOLp0, Anyunused)
    return native.call(0x46E2B844905BC5F0, BOOLp0, Anyunused)
end

function natives.ON_ENTER_SP()
    return native.call(0xD7C10C4A637992C9)
end

function natives.ON_ENTER_MP()
    return native.call(0x0888C3502DBBEEF5)
end

function natives.DOES_ENTITY_EXIST(Entityentity)
    return native.call(0x7239B21A38F536BA, Entityentity)
end

function natives.DOES_ENTITY_BELONG_TO_THIS_SCRIPT(Entityentity, BOOLp1)
    return native.call(0xDDE6DF5AE89981D2, Entityentity, BOOLp1)
end

function natives.DOES_ENTITY_HAVE_DRAWABLE(Entityentity)
    return native.call(0x060D6E96F8B8E48D, Entityentity)
end

function natives.DOES_ENTITY_HAVE_PHYSICS(Entityentity)
    return native.call(0xDA95EA3317CC5064, Entityentity)
end

function natives.HAS_ENTITY_ANIM_FINISHED(Entityentity, constcharanimDict, constcharanimName, intp3)
    return native.call(0x20B711662962B472, Entityentity, constcharanimDict, constcharanimName, intp3)
end

function natives.HAS_ENTITY_BEEN_DAMAGED_BY_ANY_OBJECT(Entityentity)
    return native.call(0x95EB9964FF5C5C65, Entityentity)
end

function natives.HAS_ENTITY_BEEN_DAMAGED_BY_ANY_PED(Entityentity)
    return native.call(0x605F5A140F202491, Entityentity)
end

function natives.HAS_ENTITY_BEEN_DAMAGED_BY_ANY_VEHICLE(Entityentity)
    return native.call(0xDFD5033FDBA0A9C8, Entityentity)
end

function natives.HAS_ENTITY_BEEN_DAMAGED_BY_ENTITY(Entityentity1, Entityentity2, BOOLp2)
    return native.call(0xC86D67D52A707CF8, Entityentity1, Entityentity2, BOOLp2)
end

function natives.HAS_ENTITY_CLEAR_LOS_TO_ENTITY(Entityentity1, Entityentity2, inttraceType)
    return native.call(0xFCDFF7B72D23A1AC, Entityentity1, Entityentity2, inttraceType)
end

function natives.HAS_ENTITY_CLEAR_LOS_TO_ENTITY_2(Entityentity1, Entityentity2, inttraceType)
    return native.call(0x394BDE2A7BBA031E, Entityentity1, Entityentity2, inttraceType)
end

function natives.HAS_ENTITY_CLEAR_LOS_TO_ENTITY_IN_FRONT(Entityentity1, Entityentity2)
    return native.call(0x0267D00AF114F17A, Entityentity1, Entityentity2)
end

function natives.HAS_ENTITY_COLLIDED_WITH_ANYTHING(Entityentity)
    return native.call(0x8BAD02F0368D9E14, Entityentity)
end

function natives.GET_LAST_MATERIAL_HIT_BY_ENTITY(Entityentity)
    return native.call(0x5C3D0A935F535C4C, Entityentity)
end

function natives.GET_COLLISION_NORMAL_OF_LAST_HIT_FOR_ENTITY(Entityentity)
    return native.call(0xE465D4AB7CA6AE72, Entityentity)
end

function natives.FORCE_ENTITY_AI_AND_ANIMATION_UPDATE(Entityentity)
    return native.call(0x40FDEDB72F8293B2, Entityentity)
end

function natives.GET_ENTITY_ANIM_CURRENT_TIME(Entityentity, constcharanimDict, constcharanimName)
    return native.call(0x346D81500D088F42, Entityentity, constcharanimDict, constcharanimName)
end

function natives.GET_ENTITY_ANIM_TOTAL_TIME(Entityentity, constcharanimDict, constcharanimName)
    return native.call(0x50BD2730B191E360, Entityentity, constcharanimDict, constcharanimName)
end

function natives.GET_ANIM_DURATION(constcharanimDict, constcharanimName)
    return native.call(0xFEDDF04D62B8D790, constcharanimDict, constcharanimName)
end

function natives.GET_ENTITY_ATTACHED_TO(Entityentity)
    return native.call(0x48C2BED9180FE123, Entityentity)
end

function natives.GET_ENTITY_COORDS(Entityentity, BOOLalive)
    return native.call(0x3FEF770D40960D5A, Entityentity, BOOLalive)
end

function natives.GET_ENTITY_FORWARD_VECTOR(Entityentity)
    return native.call(0x0A794A5A57F8DF91, Entityentity)
end

function natives.GET_ENTITY_FORWARD_X(Entityentity)
    return native.call(0x8BB4EF4214E0E6D5, Entityentity)
end

function natives.GET_ENTITY_FORWARD_Y(Entityentity)
    return native.call(0x866A4A5FAE349510, Entityentity)
end

function natives.GET_ENTITY_HEADING(Entityentity)
    return native.call(0xE83D4F9BA2A38914, Entityentity)
end

function natives.GET_ENTITY_PHYSICS_HEADING(Entityentity)
    return native.call(0x846BF6291198A71E, Entityentity)
end

function natives.GET_ENTITY_HEALTH(Entityentity)
    return native.call(0xEEF059FAD016D209, Entityentity)
end

function natives.GET_ENTITY_MAX_HEALTH(Entityentity)
    return native.call(0x15D757606D170C3C, Entityentity)
end

function natives.SET_ENTITY_MAX_HEALTH(Entityentity, intvalue)
    return native.call(0x166E7CF68597D8B5, Entityentity, intvalue)
end

function natives.GET_ENTITY_HEIGHT(Entityentity, floatX, floatY, floatZ, BOOLatTop, BOOLinWorldCoords)
    return native.call(0x5A504562485944DD, Entityentity, floatX, floatY, floatZ, BOOLatTop, BOOLinWorldCoords)
end

function natives.GET_ENTITY_HEIGHT_ABOVE_GROUND(Entityentity)
    return native.call(0x1DD55701034110E5, Entityentity)
end

function natives.GET_ENTITY_MATRIX(Entityentity, Vector3forwardVector, Vector3rightVector, Vector3upVector, Vector3position)
    return native.call(0xECB2FC7235A7D137, Entityentity, Vector3forwardVector, Vector3rightVector, Vector3upVector, Vector3position)
end

function natives.GET_ENTITY_MODEL(Entityentity)
    return native.call(0x9F47B058362C84B5, Entityentity)
end

function natives.GET_OFFSET_FROM_ENTITY_GIVEN_WORLD_COORDS(Entityentity, floatposX, floatposY, floatposZ)
    return native.call(0x2274BC1C4885E333, Entityentity, floatposX, floatposY, floatposZ)
end

function natives.GET_OFFSET_FROM_ENTITY_IN_WORLD_COORDS(Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ)
    return native.call(0x1899F328B0E12848, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ)
end

function natives.GET_ENTITY_PITCH(Entityentity)
    return native.call(0xD45DC2893621E1FE, Entityentity)
end

function natives.GET_ENTITY_QUATERNION(Entityentity, floatx, floaty, floatz, floatw)
    return native.call(0x7B3703D2D32DFA18, Entityentity, floatx, floaty, floatz, floatw)
end

function natives.GET_ENTITY_ROLL(Entityentity)
    return native.call(0x831E0242595560DF, Entityentity)
end

function natives.GET_ENTITY_ROTATION(Entityentity, introtationOrder)
    return native.call(0xAFBD61CC738D9EB9, Entityentity, introtationOrder)
end

function natives.GET_ENTITY_ROTATION_VELOCITY(Entityentity)
    return native.call(0x213B91045D09B983, Entityentity)
end

function natives.GET_ENTITY_SCRIPT(Entityentity, ScrHandlescript)
    return native.call(0xA6E9C38DB51D7748, Entityentity, ScrHandlescript)
end

function natives.GET_ENTITY_SPEED(Entityentity)
    return native.call(0xD5037BA82E12416F, Entityentity)
end

function natives.GET_ENTITY_SPEED_VECTOR(Entityentity, BOOLrelative)
    return native.call(0x9A8D700A51CB7B0D, Entityentity, BOOLrelative)
end

function natives.GET_ENTITY_UPRIGHT_VALUE(Entityentity)
    return native.call(0x95EED5A694951F9F, Entityentity)
end

function natives.GET_ENTITY_VELOCITY(Entityentity)
    return native.call(0x4805D2B1D8CF94A9, Entityentity)
end

function natives.GET_OBJECT_INDEX_FROM_ENTITY_INDEX(Entityentity)
    return native.call(0xD7E3B9735C0F89D6, Entityentity)
end

function natives.GET_PED_INDEX_FROM_ENTITY_INDEX(Entityentity)
    return native.call(0x04A2A40C73395041, Entityentity)
end

function natives.GET_VEHICLE_INDEX_FROM_ENTITY_INDEX(Entityentity)
    return native.call(0x4B53F92932ADFAC0, Entityentity)
end

function natives.GET_WORLD_POSITION_OF_ENTITY_BONE(Entityentity, intboneIndex)
    return native.call(0x44A8FCB8ED227738, Entityentity, intboneIndex)
end

function natives.GET_NEAREST_PLAYER_TO_ENTITY(Entityentity)
    return native.call(0x7196842CB375CDB3, Entityentity)
end

function natives.GET_NEAREST_PLAYER_TO_ENTITY_ON_TEAM(Entityentity, intteam)
    return native.call(0x4DC9A62F844D9337, Entityentity, intteam)
end

function natives.GET_ENTITY_TYPE(Entityentity)
    return native.call(0x8ACD366038D14505, Entityentity)
end

function natives.GET_ENTITY_POPULATION_TYPE(Entityentity)
    return native.call(0xF6F5161F4534EDFF, Entityentity)
end

function natives.IS_AN_ENTITY(ScrHandlehandle)
    return native.call(0x731EC8A916BD11A1, ScrHandlehandle)
end

function natives.IS_ENTITY_A_PED(Entityentity)
    return native.call(0x524AC5ECEA15343E, Entityentity)
end

function natives.IS_ENTITY_A_MISSION_ENTITY(Entityentity)
    return native.call(0x0A7B270912999B3C, Entityentity)
end

function natives.IS_ENTITY_A_VEHICLE(Entityentity)
    return native.call(0x6AC7003FA6E5575E, Entityentity)
end

function natives.IS_ENTITY_AN_OBJECT(Entityentity)
    return native.call(0x8D68C8FD0FACA94E, Entityentity)
end

function natives.IS_ENTITY_AT_COORD(Entityentity, floatxPos, floatyPos, floatzPos, floatxSize, floatySize, floatzSize, BOOLp7, BOOLp8, intp9)
    return native.call(0x20B60995556D004F, Entityentity, floatxPos, floatyPos, floatzPos, floatxSize, floatySize, floatzSize, BOOLp7, BOOLp8, intp9)
end

function natives.IS_ENTITY_AT_ENTITY(Entityentity1, Entityentity2, floatxSize, floatySize, floatzSize, BOOLp5, BOOLp6, intp7)
    return native.call(0x751B70C3D034E187, Entityentity1, Entityentity2, floatxSize, floatySize, floatzSize, BOOLp5, BOOLp6, intp7)
end

function natives.IS_ENTITY_ATTACHED(Entityentity)
    return native.call(0xB346476EF1A64897, Entityentity)
end

function natives.IS_ENTITY_ATTACHED_TO_ANY_OBJECT(Entityentity)
    return native.call(0xCF511840CEEDE0CC, Entityentity)
end

function natives.IS_ENTITY_ATTACHED_TO_ANY_PED(Entityentity)
    return native.call(0xB1632E9A5F988D11, Entityentity)
end

function natives.IS_ENTITY_ATTACHED_TO_ANY_VEHICLE(Entityentity)
    return native.call(0x26AA915AD89BFB4B, Entityentity)
end

function natives.IS_ENTITY_ATTACHED_TO_ENTITY(Entityfrom, Entityto)
    return native.call(0xEFBE71898A993728, Entityfrom, Entityto)
end

function natives.IS_ENTITY_DEAD(Entityentity, BOOLp1)
    return native.call(0x5F9532F3B5CC2551, Entityentity, BOOLp1)
end

function natives.IS_ENTITY_IN_AIR(Entityentity)
    return native.call(0x886E37EC497200B6, Entityentity)
end

function natives.IS_ENTITY_IN_ANGLED_AREA(Entityentity, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLdebug, BOOLincludeZ, Anyp10)
    return native.call(0x51210CED3DA1C78A, Entityentity, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLdebug, BOOLincludeZ, Anyp10)
end

function natives.IS_ENTITY_IN_AREA(Entityentity, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp7, BOOLp8, Anyp9)
    return native.call(0x54736AA40E271165, Entityentity, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp7, BOOLp8, Anyp9)
end

function natives.IS_ENTITY_IN_ZONE(Entityentity, constcharzone)
    return native.call(0xB6463CF6AF527071, Entityentity, constcharzone)
end

function natives.IS_ENTITY_IN_WATER(Entityentity)
    return native.call(0xCFB0A0D8EDD145A3, Entityentity)
end

function natives.GET_ENTITY_SUBMERGED_LEVEL(Entityentity)
    return native.call(0xE81AFC1BC4CC41CE, Entityentity)
end

function natives._0x694E00132F2823ED(Entityentity, BOOLtoggle)
    return native.call(0x694E00132F2823ED, Entityentity, BOOLtoggle)
end

function natives.IS_ENTITY_ON_SCREEN(Entityentity)
    return native.call(0xE659E47AF827484B, Entityentity)
end

function natives.IS_ENTITY_PLAYING_ANIM(Entityentity, constcharanimDict, constcharanimName, inttaskFlag)
    return native.call(0x1F0B79228E461EC9, Entityentity, constcharanimDict, constcharanimName, inttaskFlag)
end

function natives.IS_ENTITY_STATIC(Entityentity)
    return native.call(0x1218E6886D3D8327, Entityentity)
end

function natives.IS_ENTITY_TOUCHING_ENTITY(Entityentity, EntitytargetEntity)
    return native.call(0x17FFC1B2BA35A494, Entityentity, EntitytargetEntity)
end

function natives.IS_ENTITY_TOUCHING_MODEL(Entityentity, HashmodelHash)
    return native.call(0x0F42323798A58C8C, Entityentity, HashmodelHash)
end

function natives.IS_ENTITY_UPRIGHT(Entityentity, floatangle)
    return native.call(0x5333F526F6AB19AA, Entityentity, floatangle)
end

function natives.IS_ENTITY_UPSIDEDOWN(Entityentity)
    return native.call(0x1DBD58820FA61D71, Entityentity)
end

function natives.IS_ENTITY_VISIBLE(Entityentity)
    return native.call(0x47D6F43D77935C75, Entityentity)
end

function natives.IS_ENTITY_VISIBLE_TO_SCRIPT(Entityentity)
    return native.call(0xD796CB5BA8F20E32, Entityentity)
end

function natives.IS_ENTITY_OCCLUDED(Entityentity)
    return native.call(0xE31C2C72B8692B64, Entityentity)
end

function natives.WOULD_ENTITY_BE_OCCLUDED(HashentityModelHash, floatx, floaty, floatz, BOOLp4)
    return native.call(0xEE5D2A122E09EC42, HashentityModelHash, floatx, floaty, floatz, BOOLp4)
end

function natives.IS_ENTITY_WAITING_FOR_WORLD_COLLISION(Entityentity)
    return native.call(0xD05BFF0C0A12C68F, Entityentity)
end

function natives.APPLY_FORCE_TO_ENTITY_CENTER_OF_MASS(Entityentity, intforceType, floatx, floaty, floatz, BOOLp5, BOOLisDirectionRel, BOOLisForceRel, BOOLp8)
    return native.call(0x18FF00FC7EFF559E, Entityentity, intforceType, floatx, floaty, floatz, BOOLp5, BOOLisDirectionRel, BOOLisForceRel, BOOLp8)
end

function natives.APPLY_FORCE_TO_ENTITY(Entityentity, intforceFlags, floatx, floaty, floatz, floatoffX, floatoffY, floatoffZ, intboneIndex, BOOLisDirectionRel, BOOLignoreUpVec, BOOLisForceRel, BOOLp12, BOOLp13)
    return native.call(0xC5F68BE9613E2D18, Entityentity, intforceFlags, floatx, floaty, floatz, floatoffX, floatoffY, floatoffZ, intboneIndex, BOOLisDirectionRel, BOOLignoreUpVec, BOOLisForceRel, BOOLp12, BOOLp13)
end

function natives.ATTACH_ENTITY_TO_ENTITY(Entityentity1, Entityentity2, intboneIndex, floatxPos, floatyPos, floatzPos, floatxRot, floatyRot, floatzRot, BOOLp9, BOOLuseSoftPinning, BOOLcollision, BOOLisPed, intvertexIndex, BOOLfixedRot)
    return native.call(0x6B9BBD38AB0796DF, Entityentity1, Entityentity2, intboneIndex, floatxPos, floatyPos, floatzPos, floatxRot, floatyRot, floatzRot, BOOLp9, BOOLuseSoftPinning, BOOLcollision, BOOLisPed, intvertexIndex, BOOLfixedRot)
end

function natives.ATTACH_ENTITY_BONE_TO_ENTITY_BONE(Entityentity1, Entityentity2, intboneIndex1, intboneIndex2, BOOLp4, BOOLp5)
    return native.call(0x5C48B75732C8456C, Entityentity1, Entityentity2, intboneIndex1, intboneIndex2, BOOLp4, BOOLp5)
end

function natives.ATTACH_ENTITY_BONE_TO_ENTITY_BONE_PHYSICALLY(Entityentity1, Entityentity2, intboneIndex1, intboneIndex2, BOOLp4, BOOLp5)
    return native.call(0xFD1695C5D3B05439, Entityentity1, Entityentity2, intboneIndex1, intboneIndex2, BOOLp4, BOOLp5)
end

function natives.ATTACH_ENTITY_TO_ENTITY_PHYSICALLY(Entityentity1, Entityentity2, intboneIndex1, intboneIndex2, floatxPos1, floatyPos1, floatzPos1, floatxPos2, floatyPos2, floatzPos2, floatxRot, floatyRot, floatzRot, floatbreakForce, BOOLfixedRot, BOOLp15, BOOLcollision, BOOLp17, intp18)
    return native.call(0xC3675780C92F90F9, Entityentity1, Entityentity2, intboneIndex1, intboneIndex2, floatxPos1, floatyPos1, floatzPos1, floatxPos2, floatyPos2, floatzPos2, floatxRot, floatyRot, floatzRot, floatbreakForce, BOOLfixedRot, BOOLp15, BOOLcollision, BOOLp17, intp18)
end

function natives.PROCESS_ENTITY_ATTACHMENTS(Entityentity)
    return native.call(0xF4080490ADC51C6F, Entityentity)
end

function natives.GET_ENTITY_BONE_INDEX_BY_NAME(Entityentity, constcharboneName)
    return native.call(0xFB71170B7E76ACBA, Entityentity, constcharboneName)
end

function natives.CLEAR_ENTITY_LAST_DAMAGE_ENTITY(Entityentity)
    return native.call(0xA72CD9CA74A5ECBA, Entityentity)
end

function natives.DELETE_ENTITY(Entityentity)
    return native.call(0xAE3CBE5BF394C9C9, Entityentity)
end

function natives.DETACH_ENTITY(Entityentity, BOOLdynamic, BOOLcollision)
    return native.call(0x961AC54BF0613F5D, Entityentity, BOOLdynamic, BOOLcollision)
end

function natives.FREEZE_ENTITY_POSITION(Entityentity, BOOLtoggle)
    return native.call(0x428CA6DBD1094446, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_CLEANUP_BY_ENGINE(Entityentity, BOOLtoggle)
    return native.call(0x3910051CCECDB00C, Entityentity, BOOLtoggle)
end

function natives.PLAY_ENTITY_ANIM(Entityentity, constcharanimName, constcharanimDict, floatp3, BOOLloop, BOOLstayInAnim, BOOLp6, floatdelta, Anybitset)
    return native.call(0x7FB218262B810701, Entityentity, constcharanimName, constcharanimDict, floatp3, BOOLloop, BOOLstayInAnim, BOOLp6, floatdelta, Anybitset)
end

function natives.PLAY_SYNCHRONIZED_ENTITY_ANIM(Entityentity, intsyncedScene, constcharanimation, constcharpropName, floatp4, floatp5, Anyp6, floatp7)
    return native.call(0xC77720A12FE14A86, Entityentity, intsyncedScene, constcharanimation, constcharpropName, floatp4, floatp5, Anyp6, floatp7)
end

function natives.PLAY_SYNCHRONIZED_MAP_ENTITY_ANIM(floatp0, floatp1, floatp2, floatp3, Anyp4, Anyp5, Anyp6, Anyp7, floatp8, floatp9, Anyp10, floatp11)
    return native.call(0xB9C54555ED30FBC4, floatp0, floatp1, floatp2, floatp3, Anyp4, Anyp5, Anyp6, Anyp7, floatp8, floatp9, Anyp10, floatp11)
end

function natives.STOP_SYNCHRONIZED_MAP_ENTITY_ANIM(floatp0, floatp1, floatp2, floatp3, Anyp4, floatp5)
    return native.call(0x11E79CAB7183B6F5, floatp0, floatp1, floatp2, floatp3, Anyp4, floatp5)
end

function natives.STOP_ENTITY_ANIM(Entityentity, constcharanimation, constcharanimGroup, floatp3)
    return native.call(0x28004F88151E03E0, Entityentity, constcharanimation, constcharanimGroup, floatp3)
end

function natives.STOP_SYNCHRONIZED_ENTITY_ANIM(Entityentity, floatp1, BOOLp2)
    return native.call(0x43D3807C077261E3, Entityentity, floatp1, BOOLp2)
end

function natives.HAS_ANIM_EVENT_FIRED(Entityentity, HashactionHash)
    return native.call(0xEAF4CD9EA3E7E922, Entityentity, HashactionHash)
end

function natives.FIND_ANIM_EVENT_PHASE(constcharanimDictionary, constcharanimName, constcharp2, Anyp3, Anyp4)
    return native.call(0x07F1BE2BCCAA27A7, constcharanimDictionary, constcharanimName, constcharp2, Anyp3, Anyp4)
end

function natives.SET_ENTITY_ANIM_CURRENT_TIME(Entityentity, constcharanimDictionary, constcharanimName, floattime)
    return native.call(0x4487C259F0F70977, Entityentity, constcharanimDictionary, constcharanimName, floattime)
end

function natives.SET_ENTITY_ANIM_SPEED(Entityentity, constcharanimDictionary, constcharanimName, floatspeedMultiplier)
    return native.call(0x28D1A16553C51776, Entityentity, constcharanimDictionary, constcharanimName, floatspeedMultiplier)
end

function natives.SET_ENTITY_AS_MISSION_ENTITY(Entityentity, BOOLp1, BOOLp2)
    return native.call(0xAD738C3085FE7E11, Entityentity, BOOLp1, BOOLp2)
end

function natives.SET_ENTITY_AS_NO_LONGER_NEEDED(Entityentity)
    return native.call(0xB736A491E64A32CF, Entityentity)
end

function natives.SET_PED_AS_NO_LONGER_NEEDED(Pedped)
    return native.call(0x2595DD4236549CE3, Pedped)
end

function natives.SET_VEHICLE_AS_NO_LONGER_NEEDED(Vehiclevehicle)
    return native.call(0x629BFA74418D6239, Vehiclevehicle)
end

function natives.SET_OBJECT_AS_NO_LONGER_NEEDED(Objectobject)
    return native.call(0x3AE22DEB5BA5A3E6, Objectobject)
end

function natives.SET_ENTITY_CAN_BE_DAMAGED(Entityentity, BOOLtoggle)
    return native.call(0x1760FFA8AB074D66, Entityentity, BOOLtoggle)
end

function natives.GET_ENTITY_CAN_BE_DAMAGED(Entityentity)
    return native.call(0xD95CC5D2AB15A09F, Entityentity)
end

function natives.SET_ENTITY_CAN_BE_DAMAGED_BY_RELATIONSHIP_GROUP(Entityentity, BOOLbCanBeDamaged, intrelGroup)
    return native.call(0xE22D8FDE858B8119, Entityentity, BOOLbCanBeDamaged, intrelGroup)
end

function natives._0x352E2B5CF420BF3B(Anyp0, Anyp1)
    return native.call(0x352E2B5CF420BF3B, Anyp0, Anyp1)
end

function natives.SET_ENTITY_CAN_BE_TARGETED_WITHOUT_LOS(Entityentity, BOOLtoggle)
    return native.call(0xD3997889736FD899, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_COLLISION(Entityentity, BOOLtoggle, BOOLkeepPhysics)
    return native.call(0x1A9205C1B9EE827F, Entityentity, BOOLtoggle, BOOLkeepPhysics)
end

function natives.GET_ENTITY_COLLISION_DISABLED(Entityentity)
    return native.call(0xCCF1E97BEFDAE480, Entityentity)
end

function natives.SET_ENTITY_COMPLETELY_DISABLE_COLLISION(Entityentity, BOOLtoggle, BOOLkeepPhysics)
    return native.call(0x9EBC85ED0FFFE51C, Entityentity, BOOLtoggle, BOOLkeepPhysics)
end

function natives.SET_ENTITY_COORDS(Entityentity, floatxPos, floatyPos, floatzPos, BOOLxAxis, BOOLyAxis, BOOLzAxis, BOOLclearArea)
    return native.call(0x06843DA7060A026B, Entityentity, floatxPos, floatyPos, floatzPos, BOOLxAxis, BOOLyAxis, BOOLzAxis, BOOLclearArea)
end

function natives.SET_ENTITY_COORDS_WITHOUT_PLANTS_RESET(Entityentity, floatxPos, floatyPos, floatzPos, BOOLalive, BOOLdeadFlag, BOOLragdollFlag, BOOLclearArea)
    return native.call(0x621873ECE1178967, Entityentity, floatxPos, floatyPos, floatzPos, BOOLalive, BOOLdeadFlag, BOOLragdollFlag, BOOLclearArea)
end

function natives.SET_ENTITY_COORDS_NO_OFFSET(Entityentity, floatxPos, floatyPos, floatzPos, BOOLxAxis, BOOLyAxis, BOOLzAxis)
    return native.call(0x239A3351AC1DA385, Entityentity, floatxPos, floatyPos, floatzPos, BOOLxAxis, BOOLyAxis, BOOLzAxis)
end

function natives.SET_ENTITY_DYNAMIC(Entityentity, BOOLtoggle)
    return native.call(0x1718DE8E3F2823CA, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_HEADING(Entityentity, floatheading)
    return native.call(0x8E2530AA8ADA980E, Entityentity, floatheading)
end

function natives.SET_ENTITY_HEALTH(Entityentity, inthealth, intp2)
    return native.call(0x6B76DC1F3AE6E6A3, Entityentity, inthealth, intp2)
end

function natives.SET_ENTITY_INVINCIBLE(Entityentity, BOOLtoggle)
    return native.call(0x3882114BDE571AD4, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_IS_TARGET_PRIORITY(Entityentity, BOOLp1, floatp2)
    return native.call(0xEA02E132F5C68722, Entityentity, BOOLp1, floatp2)
end

function natives.SET_ENTITY_LIGHTS(Entityentity, BOOLtoggle)
    return native.call(0x7CFBA6A80BDF3874, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_LOAD_COLLISION_FLAG(Entityentity, BOOLtoggle, Anyp2)
    return native.call(0x0DC7CABAB1E9B67E, Entityentity, BOOLtoggle, Anyp2)
end

function natives.HAS_COLLISION_LOADED_AROUND_ENTITY(Entityentity)
    return native.call(0xE9676F61BC0B3321, Entityentity)
end

function natives.SET_ENTITY_MAX_SPEED(Entityentity, floatspeed)
    return native.call(0x0E46A3FCBDE2A1B1, Entityentity, floatspeed)
end

function natives.SET_ENTITY_ONLY_DAMAGED_BY_PLAYER(Entityentity, BOOLtoggle)
    return native.call(0x79F020FF9EDC0748, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_ONLY_DAMAGED_BY_RELATIONSHIP_GROUP(Entityentity, BOOLp1, Anyp2)
    return native.call(0x7022BD828FA0B082, Entityentity, BOOLp1, Anyp2)
end

function natives.SET_ENTITY_PROOFS(Entityentity, BOOLbulletProof, BOOLfireProof, BOOLexplosionProof, BOOLcollisionProof, BOOLmeleeProof, BOOLp6, BOOLp7, BOOLdrownProof)
    return native.call(0xFAEE099C6F890BB8, Entityentity, BOOLbulletProof, BOOLfireProof, BOOLexplosionProof, BOOLcollisionProof, BOOLmeleeProof, BOOLp6, BOOLp7, BOOLdrownProof)
end

function natives.GET_ENTITY_PROOFS(Entityentity, BOOLbulletProof, BOOLfireProof, BOOLexplosionProof, BOOLcollisionProof, BOOLmeleeProof, BOOLsteamProof, BOOLp7, BOOLdrownProof)
    return native.call(0xBE8CD9BE829BBEBF, Entityentity, BOOLbulletProof, BOOLfireProof, BOOLexplosionProof, BOOLcollisionProof, BOOLmeleeProof, BOOLsteamProof, BOOLp7, BOOLdrownProof)
end

function natives.SET_ENTITY_QUATERNION(Entityentity, floatx, floaty, floatz, floatw)
    return native.call(0x77B21BE7AC540F07, Entityentity, floatx, floaty, floatz, floatw)
end

function natives.SET_ENTITY_RECORDS_COLLISIONS(Entityentity, BOOLtoggle)
    return native.call(0x0A50A1EEDAD01E65, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_ROTATION(Entityentity, floatpitch, floatroll, floatyaw, introtationOrder, BOOLp5)
    return native.call(0x8524A8B0171D5E07, Entityentity, floatpitch, floatroll, floatyaw, introtationOrder, BOOLp5)
end

function natives.SET_ENTITY_VISIBLE(Entityentity, BOOLtoggle, BOOLunk)
    return native.call(0xEA1C610A04DB6BBB, Entityentity, BOOLtoggle, BOOLunk)
end

function natives._0xC34BC448DA29F5E9(Entityentity, BOOLtoggle)
    return native.call(0xC34BC448DA29F5E9, Entityentity, BOOLtoggle)
end

function natives._0xE66377CDDADA4810(Entityentity, BOOLp1)
    return native.call(0xE66377CDDADA4810, Entityentity, BOOLp1)
end

function natives.SET_ENTITY_VELOCITY(Entityentity, floatx, floaty, floatz)
    return native.call(0x1C99BB7B6E96D16F, Entityentity, floatx, floaty, floatz)
end

function natives.SET_ENTITY_ANGULAR_VELOCITY(Entityentity, floatx, floaty, floatz)
    return native.call(0x8339643499D1222E, Entityentity, floatx, floaty, floatz)
end

function natives.SET_ENTITY_HAS_GRAVITY(Entityentity, BOOLtoggle)
    return native.call(0x4A4722448F18EEF5, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_LOD_DIST(Entityentity, intvalue)
    return native.call(0x5927F96A78577363, Entityentity, intvalue)
end

function natives.GET_ENTITY_LOD_DIST(Entityentity)
    return native.call(0x4159C2762B5791D6, Entityentity)
end

function natives.SET_ENTITY_ALPHA(Entityentity, intalphaLevel, BOOLskin)
    return native.call(0x44A0870B7E92D7C0, Entityentity, intalphaLevel, BOOLskin)
end

function natives.GET_ENTITY_ALPHA(Entityentity)
    return native.call(0x5A47B3B5E63E94C6, Entityentity)
end

function natives.RESET_ENTITY_ALPHA(Entityentity)
    return native.call(0x9B1E824FFBB7027A, Entityentity)
end

function natives._0x490861B88F4FD846(Entityentity)
    return native.call(0x490861B88F4FD846, Entityentity)
end

function natives._0xCEA7C8E1B48FF68C(Anyp0, Anyp1)
    return native.call(0xCEA7C8E1B48FF68C, Anyp0, Anyp1)
end

function natives._0x5C3B791D580E0BC2(Entityentity, floatp1)
    return native.call(0x5C3B791D580E0BC2, Entityentity, floatp1)
end

function natives.SET_ENTITY_ALWAYS_PRERENDER(Entityentity, BOOLtoggle)
    return native.call(0xACAD101E1FB66689, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_RENDER_SCORCHED(Entityentity, BOOLtoggle)
    return native.call(0x730F5F8D3F0F2050, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_TRAFFICLIGHT_OVERRIDE(Entityentity, intstate)
    return native.call(0x57C5DB656185EAC4, Entityentity, intstate)
end

function natives._0x78E8E3A640178255(Entityentity)
    return native.call(0x78E8E3A640178255, Entityentity)
end

function natives.CREATE_MODEL_SWAP(floatx, floaty, floatz, floatradius, HashoriginalModel, HashnewModel, BOOLp6)
    return native.call(0x92C47782FDA8B2A3, floatx, floaty, floatz, floatradius, HashoriginalModel, HashnewModel, BOOLp6)
end

function natives.REMOVE_MODEL_SWAP(floatx, floaty, floatz, floatradius, HashoriginalModel, HashnewModel, BOOLp6)
    return native.call(0x033C0F9A64E229AE, floatx, floaty, floatz, floatradius, HashoriginalModel, HashnewModel, BOOLp6)
end

function natives.CREATE_MODEL_HIDE(floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
    return native.call(0x8A97BCA30A0CE478, floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
end

function natives.CREATE_MODEL_HIDE_EXCLUDING_SCRIPT_OBJECTS(floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
    return native.call(0x3A52AE588830BF7F, floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
end

function natives.REMOVE_MODEL_HIDE(floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
    return native.call(0xD9E3006FB3CBD765, floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
end

function natives.CREATE_FORCED_OBJECT(floatx, floaty, floatz, Anyp3, HashmodelHash, BOOLp5)
    return native.call(0x150E808B375A385A, floatx, floaty, floatz, Anyp3, HashmodelHash, BOOLp5)
end

function natives.REMOVE_FORCED_OBJECT(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x61B6775E83C0DB6F, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.SET_ENTITY_NO_COLLISION_ENTITY(Entityentity1, Entityentity2, BOOLthisFrameOnly)
    return native.call(0xA53ED5520C07654A, Entityentity1, Entityentity2, BOOLthisFrameOnly)
end

function natives.SET_ENTITY_MOTION_BLUR(Entityentity, BOOLtoggle)
    return native.call(0x295D82A8559F9150, Entityentity, BOOLtoggle)
end

function natives.SET_CAN_AUTO_VAULT_ON_ENTITY(Entityentity, BOOLtoggle)
    return native.call(0xE12ABE5E3A389A6C, Entityentity, BOOLtoggle)
end

function natives.SET_CAN_CLIMB_ON_ENTITY(Entityentity, BOOLtoggle)
    return native.call(0xA80AE305E0A3044F, Entityentity, BOOLtoggle)
end

function natives._0xDC6F8601FAF2E893(Entityentity, BOOLtoggle)
    return native.call(0xDC6F8601FAF2E893, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_DECALS_DISABLED(Entityentity, BOOLp1)
    return native.call(0x2C2E3DC128F44309, Entityentity, BOOLp1)
end

function natives._0x1A092BB0C3808B96(Entityentity, BOOLp1)
    return native.call(0x1A092BB0C3808B96, Entityentity, BOOLp1)
end

function natives.GET_ENTITY_BONE_ROTATION(Entityentity, intboneIndex)
    return native.call(0xCE6294A232D03786, Entityentity, intboneIndex)
end

function natives.GET_ENTITY_BONE_POSITION_2(Entityentity, intboneIndex)
    return native.call(0x46F8696933A63C9B, Entityentity, intboneIndex)
end

function natives.GET_ENTITY_BONE_ROTATION_LOCAL(Entityentity, intboneIndex)
    return native.call(0xBD8D32550E5CEBFE, Entityentity, intboneIndex)
end

function natives.GET_ENTITY_BONE_COUNT(Entityentity)
    return native.call(0xB328DCC3A3AA401B, Entityentity)
end

function natives.ENABLE_ENTITY_UNK(Entityentity)
    return native.call(0x6CE177D014502E8A, Entityentity)
end

function natives._0xB17BC6453F6CF5AC(Anyp0, Anyp1)
    return native.call(0xB17BC6453F6CF5AC, Anyp0, Anyp1)
end

function natives._0x68B562E124CC0AEF(Pickuppickup, Pickuppickup2)
    return native.call(0x68B562E124CC0AEF, Pickuppickup, Pickuppickup2)
end

function natives._0x36F32DE87082343E(Anyp0, Anyp1)
    return native.call(0x36F32DE87082343E, Anyp0, Anyp1)
end

function natives.GET_ENTITY_PICKUP(Entityentity, HashmodelHash)
    return native.call(0x1F922734E259BD26, Entityentity, HashmodelHash)
end

function natives._0xD7B80E7C3BEFC396(Pickuppickup, BOOLtoggle)
    return native.call(0xD7B80E7C3BEFC396, Pickuppickup, BOOLtoggle)
end

function natives.SET_DECISION_MAKER(Pedped, Hashname)
    return native.call(0xB604A2942ADED0EE, Pedped, Hashname)
end

function natives.CLEAR_DECISION_MAKER_EVENT_RESPONSE(Hashname, inteventType)
    return native.call(0x4FC9381A7AEE8968, Hashname, inteventType)
end

function natives.BLOCK_DECISION_MAKER_EVENT(Hashname, inteventType)
    return native.call(0xE42FCDFD0E4196F7, Hashname, inteventType)
end

function natives.UNBLOCK_DECISION_MAKER_EVENT(Hashname, inteventType)
    return native.call(0xD7CD9CF34F2C99E8, Hashname, inteventType)
end

function natives.ADD_SHOCKING_EVENT_AT_POSITION(inteventType, floatx, floaty, floatz, floatduration)
    return native.call(0xD9F8455409B525E9, inteventType, floatx, floaty, floatz, floatduration)
end

function natives.ADD_SHOCKING_EVENT_FOR_ENTITY(inteventType, Entityentity, floatduration)
    return native.call(0x7FD8F3BE76F89422, inteventType, Entityentity, floatduration)
end

function natives.IS_SHOCKING_EVENT_IN_SPHERE(inteventType, floatx, floaty, floatz, floatradius)
    return native.call(0x1374ABB7C15BAB92, inteventType, floatx, floaty, floatz, floatradius)
end

function natives.REMOVE_SHOCKING_EVENT(ScrHandleevent)
    return native.call(0x2CDA538C44C6CCE5, ScrHandleevent)
end

function natives.REMOVE_ALL_SHOCKING_EVENTS(BOOLp0)
    return native.call(0xEAABE8FDFA21274C, BOOLp0)
end

function natives.REMOVE_SHOCKING_EVENT_SPAWN_BLOCKING_AREAS()
    return native.call(0x340F1415B68AEADE)
end

function natives.SUPPRESS_SHOCKING_EVENTS_NEXT_FRAME()
    return native.call(0x2F9A292AD0A3BD89)
end

function natives.SUPPRESS_SHOCKING_EVENT_TYPE_NEXT_FRAME(inteventType)
    return native.call(0x3FD2EC8BF1F1CF30, inteventType)
end

function natives.SUPPRESS_AGITATION_EVENTS_NEXT_FRAME()
    return native.call(0x5F3B7749C112D552)
end

function natives.GET_NUM_TATTOO_SHOP_DLC_ITEMS(intcharacter)
    return native.call(0x278F76C3B0A8F109, intcharacter)
end

function natives.GET_TATTOO_SHOP_DLC_ITEM_DATA(intcharacterType, intdecorationIndex, AnyoutComponent)
    return native.call(0xFF56381874F82086, intcharacterType, intdecorationIndex, AnyoutComponent)
end

function natives._0x10144267DD22866C(HashoverlayHash, Anyp1, intcharacter)
    return native.call(0x10144267DD22866C, HashoverlayHash, Anyp1, intcharacter)
end

function natives.INIT_SHOP_PED_COMPONENT(AnyoutComponent)
    return native.call(0x1E8C308FD312C036, AnyoutComponent)
end

function natives.INIT_SHOP_PED_PROP(AnyoutProp)
    return native.call(0xEB0A2B758F7B850F, AnyoutProp)
end

function natives.SETUP_SHOP_PED_APPAREL_QUERY(intp0, intp1, intp2, intp3)
    return native.call(0x50F457823CE6EB5F, intp0, intp1, intp2, intp3)
end

function natives.SETUP_SHOP_PED_APPAREL_QUERY_TU(intcharacter, intp1, intp2, BOOLp3, intp4, intcomponentId)
    return native.call(0x9BDF59818B1E38C1, intcharacter, intp1, intp2, BOOLp3, intp4, intcomponentId)
end

function natives.GET_SHOP_PED_QUERY_COMPONENT(intcomponentId, AnyoutComponent)
    return native.call(0x249E310B2D920699, intcomponentId, AnyoutComponent)
end

function natives._0x96E2929292A4DB77(HashcomponentHash)
    return native.call(0x96E2929292A4DB77, HashcomponentHash)
end

function natives.GET_SHOP_PED_COMPONENT(HashcomponentHash, AnyoutComponent)
    return native.call(0x74C0E2A57EC66760, HashcomponentHash, AnyoutComponent)
end

function natives.GET_SHOP_PED_QUERY_PROP(intcomponentId, AnyoutProp)
    return native.call(0xDE44A00999B2837D, intcomponentId, AnyoutProp)
end

function natives._0x6CEBE002E58DEE97(HashcomponentHash)
    return native.call(0x6CEBE002E58DEE97, HashcomponentHash)
end

function natives.GET_SHOP_PED_PROP(HashcomponentHash, AnyoutProp)
    return native.call(0x5D5CAFF661DDF6FC, HashcomponentHash, AnyoutProp)
end

function natives.GET_HASH_NAME_FOR_COMPONENT(Entityentity, intcomponentId, intdrawableVariant, inttextureVariant)
    return native.call(0x0368B3A838070348, Entityentity, intcomponentId, intdrawableVariant, inttextureVariant)
end

function natives.GET_HASH_NAME_FOR_PROP(Entityentity, intcomponentId, intpropIndex, intpropTextureIndex)
    return native.call(0x5D6160275CAEC8DD, Entityentity, intcomponentId, intpropIndex, intpropTextureIndex)
end

function natives.GET_SHOP_PED_APPAREL_VARIANT_COMPONENT_COUNT(HashcomponentHash)
    return native.call(0xC17AD0E5752BECDA, HashcomponentHash)
end

function natives.GET_SHOP_PED_APPAREL_VARIANT_PROP_COUNT(HashpropHash)
    return native.call(0xD40AAC51E8E4C663, HashpropHash)
end

function natives.GET_VARIANT_COMPONENT(HashcomponentHash, intvariantComponentIndex, HashnameHash, intenumValue, intcomponentType)
    return native.call(0x6E11F282F11863B6, HashcomponentHash, intvariantComponentIndex, HashnameHash, intenumValue, intcomponentType)
end

function natives.GET_VARIANT_PROP(HashcomponentHash, intvariantPropIndex, HashnameHash, intenumValue, intanchorPoint)
    return native.call(0xD81B7F27BC773E66, HashcomponentHash, intvariantPropIndex, HashnameHash, intenumValue, intanchorPoint)
end

function natives.GET_SHOP_PED_APPAREL_FORCED_COMPONENT_COUNT(HashcomponentHash)
    return native.call(0xC6B9DB42C04DD8C3, HashcomponentHash)
end

function natives.GET_SHOP_PED_APPAREL_FORCED_PROP_COUNT(HashcomponentHash)
    return native.call(0x017568A8182D98A6, HashcomponentHash)
end

function natives.GET_FORCED_COMPONENT(HashcomponentHash, intforcedComponentIndex, HashnameHash, intenumValue, intcomponentType)
    return native.call(0x6C93ED8C2F74859B, HashcomponentHash, intforcedComponentIndex, HashnameHash, intenumValue, intcomponentType)
end

function natives.GET_FORCED_PROP(HashcomponentHash, intforcedPropIndex, HashnameHash, intenumValue, intanchorPoint)
    return native.call(0xE1CA84EBF72E691D, HashcomponentHash, intforcedPropIndex, HashnameHash, intenumValue, intanchorPoint)
end

function natives.DOES_SHOP_PED_APPAREL_HAVE_RESTRICTION_TAG(HashcomponentHash, HashrestrictionTagHash, intcomponentId)
    return native.call(0x341DE7ED1D2A1BFD, HashcomponentHash, HashrestrictionTagHash, intcomponentId)
end

function natives.DOES_CUSTOMIZATION_COMPONENT_HAVE_RESTRICTION_TAG(Pedped, intcomponentId, HashrestrictionTagHash)
    return native.call(0x7796B21B76221BC5, Pedped, intcomponentId, HashrestrictionTagHash)
end

function natives.DOES_CUSTOMIZATION_PROP_HAVE_RESTRICTION_TAG(Pedped, intcomponentId, HashrestrictionTagHash)
    return native.call(0xD726BAB4554DA580, Pedped, intcomponentId, HashrestrictionTagHash)
end

function natives.SETUP_SHOP_PED_OUTFIT_QUERY(intcharacter, BOOLp1)
    return native.call(0xF3FBE2D50A6A8C28, intcharacter, BOOLp1)
end

function natives.GET_SHOP_PED_QUERY_OUTFIT(intoutfitIndex, Anyoutfit)
    return native.call(0x6D793F03A631FE56, intoutfitIndex, Anyoutfit)
end

function natives.GET_SHOP_PED_OUTFIT(Anyp0, Anyp1)
    return native.call(0xB7952076E444979D, Anyp0, Anyp1)
end

function natives.GET_SHOP_PED_OUTFIT_LOCATE(Anyp0)
    return native.call(0x073CA26B079F956E, Anyp0)
end

function natives.GET_SHOP_PED_OUTFIT_PROP_VARIANT(HashoutfitHash, intvariantIndex, AnyoutPropVariant)
    return native.call(0xA9F9C2E0FDE11CBB, HashoutfitHash, intvariantIndex, AnyoutPropVariant)
end

function natives.GET_SHOP_PED_OUTFIT_COMPONENT_VARIANT(HashoutfitHash, intvariantIndex, AnyoutComponentVariant)
    return native.call(0x19F2A026EDF0013F, HashoutfitHash, intvariantIndex, AnyoutComponentVariant)
end

function natives.GET_NUM_DLC_VEHICLES()
    return native.call(0xA7A866D21CD2329B)
end

function natives.GET_DLC_VEHICLE_MODEL(intdlcVehicleIndex)
    return native.call(0xECC01B7C5763333C, intdlcVehicleIndex)
end

function natives.GET_DLC_VEHICLE_DATA(intdlcVehicleIndex, AnyoutData)
    return native.call(0x33468EDC08E371F6, intdlcVehicleIndex, AnyoutData)
end

function natives.GET_DLC_VEHICLE_FLAGS(intdlcVehicleIndex)
    return native.call(0x5549EE11FA22FCF2, intdlcVehicleIndex)
end

function natives.GET_NUM_DLC_WEAPONS()
    return native.call(0xEE47635F352DA367)
end

function natives.GET_NUM_DLC_WEAPONS_SP()
    return native.call(0x4160B65AE085B5A9)
end

function natives.GET_DLC_WEAPON_DATA(intdlcWeaponIndex, AnyoutData)
    return native.call(0x79923CD21BECE14E, intdlcWeaponIndex, AnyoutData)
end

function natives.GET_DLC_WEAPON_DATA_SP(intdlcWeaponIndex, AnyoutData)
    return native.call(0x310836EE7129BA33, intdlcWeaponIndex, AnyoutData)
end

function natives.GET_NUM_DLC_WEAPON_COMPONENTS(intdlcWeaponIndex)
    return native.call(0x405425358A7D61FE, intdlcWeaponIndex)
end

function natives.GET_NUM_DLC_WEAPON_COMPONENTS_SP(intdlcWeaponIndex)
    return native.call(0xAD2A7A6DFF55841B, intdlcWeaponIndex)
end

function natives.GET_DLC_WEAPON_COMPONENT_DATA(intdlcWeaponIndex, intdlcWeapCompIndex, AnyComponentDataPtr)
    return native.call(0x6CF598A2957C2BF8, intdlcWeaponIndex, intdlcWeapCompIndex, AnyComponentDataPtr)
end

function natives.GET_DLC_WEAPON_COMPONENT_DATA_SP(intdlcWeaponIndex, intdlcWeapCompIndex, AnyComponentDataPtr)
    return native.call(0x31D5E073B6F93CDC, intdlcWeaponIndex, intdlcWeapCompIndex, AnyComponentDataPtr)
end

function natives.IS_CONTENT_ITEM_LOCKED(HashitemHash)
    return native.call(0xD4D7B033C3AA243C, HashitemHash)
end

function natives.IS_DLC_VEHICLE_MOD(Hashhash)
    return native.call(0x0564B9FF9631B82C, Hashhash)
end

function natives.GET_DLC_VEHICLE_MOD_LOCK_HASH(Hashhash)
    return native.call(0xC098810437312FFF, Hashhash)
end

function natives.LOAD_CONTENT_CHANGE_SET_GROUP(Hashhash)
    return native.call(0x6BEDF5769AC2DC07, Hashhash)
end

function natives.UNLOAD_CONTENT_CHANGE_SET_GROUP(Hashhash)
    return native.call(0x3C1978285B036B25, Hashhash)
end

function natives.START_SCRIPT_FIRE(floatX, floatY, floatZ, intmaxChildren, BOOLisGasFire)
    return native.call(0x6B83617E04503888, floatX, floatY, floatZ, intmaxChildren, BOOLisGasFire)
end

function natives.REMOVE_SCRIPT_FIRE(FireIdfireHandle)
    return native.call(0x7FF548385680673F, FireIdfireHandle)
end

function natives.START_ENTITY_FIRE(Entityentity)
    return native.call(0xF6A9D9708F6F23DF, Entityentity)
end

function natives.STOP_ENTITY_FIRE(Entityentity)
    return native.call(0x7F0DD2EBBB651AFF, Entityentity)
end

function natives.IS_ENTITY_ON_FIRE(Entityentity)
    return native.call(0x28D3FED7190D3A0B, Entityentity)
end

function natives.GET_NUMBER_OF_FIRES_IN_RANGE(floatx, floaty, floatz, floatradius)
    return native.call(0x50CAD495A460B305, floatx, floaty, floatz, floatradius)
end

function natives.SET_FIRE_SPREAD_RATE(floatp0)
    return native.call(0x8F390AC4155099BA, floatp0)
end

function natives.STOP_FIRE_IN_RANGE(floatx, floaty, floatz, floatradius)
    return native.call(0x056A8A219B8E829F, floatx, floaty, floatz, floatradius)
end

function natives.GET_CLOSEST_FIRE_POS(Vector3outPosition, floatx, floaty, floatz)
    return native.call(0x352A9F6BCF90081F, Vector3outPosition, floatx, floaty, floatz)
end

function natives.ADD_EXPLOSION(floatx, floaty, floatz, intexplosionType, floatdamageScale, BOOLisAudible, BOOLisInvisible, floatcameraShake, BOOLnoDamage)
    return native.call(0xE3AD2BDBAEE269AC, floatx, floaty, floatz, intexplosionType, floatdamageScale, BOOLisAudible, BOOLisInvisible, floatcameraShake, BOOLnoDamage)
end

function natives.ADD_OWNED_EXPLOSION(Pedped, floatx, floaty, floatz, intexplosionType, floatdamageScale, BOOLisAudible, BOOLisInvisible, floatcameraShake)
    return native.call(0x172AA1B624FA1013, Pedped, floatx, floaty, floatz, intexplosionType, floatdamageScale, BOOLisAudible, BOOLisInvisible, floatcameraShake)
end

function natives.ADD_EXPLOSION_WITH_USER_VFX(floatx, floaty, floatz, intexplosionType, HashexplosionFx, floatdamageScale, BOOLisAudible, BOOLisInvisible, floatcameraShake)
    return native.call(0x36DD3FE58B5E5212, floatx, floaty, floatz, intexplosionType, HashexplosionFx, floatdamageScale, BOOLisAudible, BOOLisInvisible, floatcameraShake)
end

function natives.IS_EXPLOSION_IN_AREA(intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0x2E2EBA0EE7CED0E0, intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.IS_EXPLOSION_ACTIVE_IN_AREA(intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0x6070104B699B2EF4, intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.IS_EXPLOSION_IN_SPHERE(intexplosionType, floatx, floaty, floatz, floatradius)
    return native.call(0xAB0F816885B0E483, intexplosionType, floatx, floaty, floatz, floatradius)
end

function natives.GET_ENTITY_INSIDE_EXPLOSION_SPHERE(intexplosionType, floatx, floaty, floatz, floatradius)
    return native.call(0xB3CD51E3DB86F176, intexplosionType, floatx, floaty, floatz, floatradius)
end

function natives.IS_EXPLOSION_IN_ANGLED_AREA(intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth)
    return native.call(0xA079A6C51525DC4B, intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth)
end

function natives.GET_OWNER_OF_EXPLOSION_IN_ANGLED_AREA(intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius)
    return native.call(0x14BA4BA137AF6CEC, intexplosionType, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius)
end

function natives.SET_DEBUG_LINES_AND_SPHERES_DRAWING_ACTIVE(BOOLenabled)
    return native.call(0x175B6BFC15CDD0C5, BOOLenabled)
end

function natives.DRAW_DEBUG_LINE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0x7FDFADE676AA3CB0, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.DRAW_DEBUG_LINE_WITH_TWO_COLOURS(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intr1, intg1, intb1, intr2, intg2, intb2, intalpha1, intalpha2)
    return native.call(0xD8B9A8AC5608FF94, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intr1, intg1, intb1, intr2, intg2, intb2, intalpha1, intalpha2)
end

function natives.DRAW_DEBUG_SPHERE(floatx, floaty, floatz, floatradius, intred, intgreen, intblue, intalpha)
    return native.call(0xAAD68E1AB39DA632, floatx, floaty, floatz, floatradius, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_DEBUG_BOX(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0x083A2CA4F2E573BD, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.DRAW_DEBUG_CROSS(floatx, floaty, floatz, floatsize, intred, intgreen, intblue, intalpha)
    return native.call(0x73B1189623049839, floatx, floaty, floatz, floatsize, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_DEBUG_TEXT(constchartext, floatx, floaty, floatz, intred, intgreen, intblue, intalpha)
    return native.call(0x3903E216620488E8, constchartext, floatx, floaty, floatz, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_DEBUG_TEXT_2D(constchartext, floatx, floaty, floatz, intred, intgreen, intblue, intalpha)
    return native.call(0xA3BB2E9555C05A8F, constchartext, floatx, floaty, floatz, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_LINE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intred, intgreen, intblue, intalpha)
    return native.call(0x6B7256074AE34680, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_POLY(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, intred, intgreen, intblue, intalpha)
    return native.call(0xAC26716048436851, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_SPRITE_POLY(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, intred, intgreen, intblue, intalpha, constchartextureDict, constchartextureName, floatu1, floatv1, floatw1, floatu2, floatv2, floatw2, floatu3, floatv3, floatw3)
    return native.call(0x29280002282F1928, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, intred, intgreen, intblue, intalpha, constchartextureDict, constchartextureName, floatu1, floatv1, floatw1, floatu2, floatv2, floatw2, floatu3, floatv3, floatw3)
end

function natives.DRAW_SPRITE_POLY_2(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, floatred1, floatgreen1, floatblue1, intalpha1, floatred2, floatgreen2, floatblue2, intalpha2, floatred3, floatgreen3, floatblue3, intalpha3, constchartextureDict, constchartextureName, floatu1, floatv1, floatw1, floatu2, floatv2, floatw2, floatu3, floatv3, floatw3)
    return native.call(0x736D7AA1B750856B, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, floatred1, floatgreen1, floatblue1, intalpha1, floatred2, floatgreen2, floatblue2, intalpha2, floatred3, floatgreen3, floatblue3, intalpha3, constchartextureDict, constchartextureName, floatu1, floatv1, floatw1, floatu2, floatv2, floatw2, floatu3, floatv3, floatw3)
end

function natives.DRAW_BOX(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intred, intgreen, intblue, intalpha)
    return native.call(0xD3A9971CADAC7252, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intred, intgreen, intblue, intalpha)
end

function natives.SET_BACKFACECULLING(BOOLtoggle)
    return native.call(0x23BA6B0C2AD7B0D3, BOOLtoggle)
end

function natives._0xC5C8F970D4EDFF71(Anyp0)
    return native.call(0xC5C8F970D4EDFF71, Anyp0)
end

function natives.BEGIN_TAKE_MISSION_CREATOR_PHOTO()
    return native.call(0x1DD2139A9A20DCE8)
end

function natives.GET_STATUS_OF_TAKE_MISSION_CREATOR_PHOTO()
    return native.call(0x90A78ECAA4E78453)
end

function natives.FREE_MEMORY_FOR_MISSION_CREATOR_PHOTO()
    return native.call(0x0A46AF8A78DC5E0A)
end

function natives.LOAD_MISSION_CREATOR_PHOTO(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x4862437A486F91B0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.GET_STATUS_OF_LOAD_MISSION_CREATOR_PHOTO(Anyp0)
    return native.call(0x1670F8D05056F257, Anyp0)
end

function natives._0x7FA5D82B8F58EC06()
    return native.call(0x7FA5D82B8F58EC06)
end

function natives._0x5B0316762AFD4A64()
    return native.call(0x5B0316762AFD4A64)
end

function natives._0x346EF3ECAAAB149E()
    return native.call(0x346EF3ECAAAB149E)
end

function natives.BEGIN_TAKE_HIGH_QUALITY_PHOTO()
    return native.call(0xA67C35C56EB1BD9D)
end

function natives.GET_STATUS_OF_TAKE_HIGH_QUALITY_PHOTO()
    return native.call(0x0D6CA79EEEBD8CA3)
end

function natives.FREE_MEMORY_FOR_HIGH_QUALITY_PHOTO()
    return native.call(0xD801CC02177FA3F1)
end

function natives._0x1BBC135A4D25EDDE(BOOLp0)
    return native.call(0x1BBC135A4D25EDDE, BOOLp0)
end

function natives._0xF3F776ADA161E47D(Anyp0, Anyp1)
    return native.call(0xF3F776ADA161E47D, Anyp0, Anyp1)
end

function natives._0xADD6627C4D325458(Anyp0)
    return native.call(0xADD6627C4D325458, Anyp0)
end

function natives.SAVE_HIGH_QUALITY_PHOTO(intunused)
    return native.call(0x3DEC726C25A11BAC, intunused)
end

function natives.GET_STATUS_OF_SAVE_HIGH_QUALITY_PHOTO()
    return native.call(0x0C0C4E81E1AC60A0)
end

function natives._0x759650634F07B6B4(Anyp0)
    return native.call(0x759650634F07B6B4, Anyp0)
end

function natives.GET_STATUS_OF_DRAW_LOW_QUALITY_PHOTO(intp0)
    return native.call(0xCB82A0BF0E3E3265, intp0)
end

function natives.FREE_MEMORY_FOR_LOW_QUALITY_PHOTO()
    return native.call(0x6A12D88881435DCA)
end

function natives.DRAW_LOW_QUALITY_PHOTO_TO_PHONE(BOOLp0, BOOLp1)
    return native.call(0x1072F115DAB0717E, BOOLp0, BOOLp1)
end

function natives.GET_MAXIMUM_NUMBER_OF_PHOTOS()
    return native.call(0x34D23450F028B0BF)
end

function natives.GET_MAXIMUM_NUMBER_OF_CLOUD_PHOTOS()
    return native.call(0xDC54A7AF8B3A14EF)
end

function natives.GET_CURRENT_NUMBER_OF_CLOUD_PHOTOS()
    return native.call(0x473151EBC762C6DA)
end

function natives._0x2A893980E96B659A(Anyp0)
    return native.call(0x2A893980E96B659A, Anyp0)
end

function natives.GET_STATUS_OF_SORTED_LIST_OPERATION(Anyp0)
    return native.call(0xF5BED327CEA362B1, Anyp0)
end

function natives._0x4AF92ACD3141D96C()
    return native.call(0x4AF92ACD3141D96C)
end

function natives._0xE791DF1F73ED2C8B(Anyp0)
    return native.call(0xE791DF1F73ED2C8B, Anyp0)
end

function natives._0xEC72C258667BE5EA(Anyp0)
    return native.call(0xEC72C258667BE5EA, Anyp0)
end

function natives.RETURN_TWO(intp0)
    return native.call(0x40AFB081F8ADD4EE, intp0)
end

function natives.DRAW_LIGHT_WITH_RANGE_AND_SHADOW(floatx, floaty, floatz, intr, intg, intb, floatrange, floatintensity, floatshadow)
    return native.call(0xF49E9A9716A04595, floatx, floaty, floatz, intr, intg, intb, floatrange, floatintensity, floatshadow)
end

function natives.DRAW_LIGHT_WITH_RANGE(floatposX, floatposY, floatposZ, intcolorR, intcolorG, intcolorB, floatrange, floatintensity)
    return native.call(0xF2A1B2771A01DBD4, floatposX, floatposY, floatposZ, intcolorR, intcolorG, intcolorB, floatrange, floatintensity)
end

function natives.DRAW_SPOT_LIGHT(floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, intcolorR, intcolorG, intcolorB, floatdistance, floatbrightness, floathardness, floatradius, floatfalloff)
    return native.call(0xD0F64B265C8C8B33, floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, intcolorR, intcolorG, intcolorB, floatdistance, floatbrightness, floathardness, floatradius, floatfalloff)
end

function natives.DRAW_SHADOWED_SPOT_LIGHT(floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, intcolorR, intcolorG, intcolorB, floatdistance, floatbrightness, floatroundness, floatradius, floatfalloff, intshadowId)
    return native.call(0x5BCA583A583194DB, floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, intcolorR, intcolorG, intcolorB, floatdistance, floatbrightness, floatroundness, floatradius, floatfalloff, intshadowId)
end

function natives.FADE_UP_PED_LIGHT(floatp0)
    return native.call(0xC9B18B4619F48F7B, floatp0)
end

function natives.UPDATE_LIGHTS_ON_ENTITY(Entityentity)
    return native.call(0xDEADC0DEDEADC0DE, Entityentity)
end

function natives._0x9641588DAB93B4B5(Anyp0)
    return native.call(0x9641588DAB93B4B5, Anyp0)
end

function natives._0x393BD2275CEB7793()
    return native.call(0x393BD2275CEB7793)
end

function natives.DRAW_MARKER(inttype, floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, floatrotX, floatrotY, floatrotZ, floatscaleX, floatscaleY, floatscaleZ, intred, intgreen, intblue, intalpha, BOOLbobUpAndDown, BOOLfaceCamera, intp19, BOOLrotate, constchartextureDict, constchartextureName, BOOLdrawOnEnts)
    return native.call(0x28477EC23D892089, inttype, floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, floatrotX, floatrotY, floatrotZ, floatscaleX, floatscaleY, floatscaleZ, intred, intgreen, intblue, intalpha, BOOLbobUpAndDown, BOOLfaceCamera, intp19, BOOLrotate, constchartextureDict, constchartextureName, BOOLdrawOnEnts)
end

function natives.DRAW_MARKER_2(inttype, floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, floatrotX, floatrotY, floatrotZ, floatscaleX, floatscaleY, floatscaleZ, intred, intgreen, intblue, intalpha, BOOLbobUpAndDown, BOOLfaceCamera, Anyp19, BOOLrotate, constchartextureDict, constchartextureName, BOOLdrawOnEnts, BOOLp24, BOOLp25)
    return native.call(0xE82728F0DE75D13A, inttype, floatposX, floatposY, floatposZ, floatdirX, floatdirY, floatdirZ, floatrotX, floatrotY, floatrotZ, floatscaleX, floatscaleY, floatscaleZ, intred, intgreen, intblue, intalpha, BOOLbobUpAndDown, BOOLfaceCamera, Anyp19, BOOLrotate, constchartextureDict, constchartextureName, BOOLdrawOnEnts, BOOLp24, BOOLp25)
end

function natives.DRAW_SPHERE(floatx, floaty, floatz, floatradius, intred, intgreen, intblue, floatalpha)
    return native.call(0x799017F9E3B10112, floatx, floaty, floatz, floatradius, intred, intgreen, intblue, floatalpha)
end

function natives.CREATE_CHECKPOINT(inttype, floatposX1, floatposY1, floatposZ1, floatposX2, floatposY2, floatposZ2, floatdiameter, intred, intgreen, intblue, intalpha, intreserved)
    return native.call(0x0134F0835AB6BFCB, inttype, floatposX1, floatposY1, floatposZ1, floatposX2, floatposY2, floatposZ2, floatdiameter, intred, intgreen, intblue, intalpha, intreserved)
end

function natives.SET_CHECKPOINT_INSIDE_CYLINDER_HEIGHT_SCALE(intcheckpoint, floatp0)
    return native.call(0x4B5B4DA5D79F1943, intcheckpoint, floatp0)
end

function natives.SET_CHECKPOINT_ICON_SCALE(intcheckpoint, floatscale)
    return native.call(0x44621483FF966526, intcheckpoint, floatscale)
end

function natives.SET_CHECKPOINT_CYLINDER_HEIGHT(intcheckpoint, floatnearHeight, floatfarHeight, floatradius)
    return native.call(0x2707AAE9D9297D89, intcheckpoint, floatnearHeight, floatfarHeight, floatradius)
end

function natives.SET_CHECKPOINT_RGBA(intcheckpoint, intred, intgreen, intblue, intalpha)
    return native.call(0x7167371E8AD747F7, intcheckpoint, intred, intgreen, intblue, intalpha)
end

function natives.SET_CHECKPOINT_RGBA2(intcheckpoint, intred, intgreen, intblue, intalpha)
    return native.call(0xB9EA40907C680580, intcheckpoint, intred, intgreen, intblue, intalpha)
end

function natives._0xF51D36185993515D(intcheckpoint, floatposX, floatposY, floatposZ, floatunkX, floatunkY, floatunkZ)
    return native.call(0xF51D36185993515D, intcheckpoint, floatposX, floatposY, floatposZ, floatunkX, floatunkY, floatunkZ)
end

function natives._0xFCF6788FC4860CD4(intcheckpoint)
    return native.call(0xFCF6788FC4860CD4, intcheckpoint)
end

function natives._0x615D3925E87A3B26(intcheckpoint)
    return native.call(0x615D3925E87A3B26, intcheckpoint)
end

function natives._0xDB1EA9411C8911EC(intcheckpoint)
    return native.call(0xDB1EA9411C8911EC, intcheckpoint)
end

function natives._0x3C788E7F6438754D(intcheckpoint, floatposX, floatposY, floatposZ)
    return native.call(0x3C788E7F6438754D, intcheckpoint, floatposX, floatposY, floatposZ)
end

function natives.DELETE_CHECKPOINT(intcheckpoint)
    return native.call(0xF5ED37F54CD4D52E, intcheckpoint)
end

function natives.DONT_RENDER_IN_GAME_UI(BOOLp0)
    return native.call(0x22A249A53034450A, BOOLp0)
end

function natives.FORCE_RENDER_IN_GAME_UI(BOOLtoggle)
    return native.call(0xDC459CFA0CCE245B, BOOLtoggle)
end

function natives.REQUEST_STREAMED_TEXTURE_DICT(constchartextureDict, BOOLp1)
    return native.call(0xDFA2EF8E04127DD5, constchartextureDict, BOOLp1)
end

function natives.HAS_STREAMED_TEXTURE_DICT_LOADED(constchartextureDict)
    return native.call(0x0145F696AAAAD2E4, constchartextureDict)
end

function natives.SET_STREAMED_TEXTURE_DICT_AS_NO_LONGER_NEEDED(constchartextureDict)
    return native.call(0xBE2CACCF5A8AA805, constchartextureDict)
end

function natives.DRAW_RECT(floatx, floaty, floatwidth, floatheight, intr, intg, intb, inta, BOOLp8)
    return native.call(0x3A618A217E5154F0, floatx, floaty, floatwidth, floatheight, intr, intg, intb, inta, BOOLp8)
end

function natives.SET_SCRIPT_GFX_DRAW_BEHIND_PAUSEMENU(BOOLtoggle)
    return native.call(0xC6372ECD45D73BCD, BOOLtoggle)
end

function natives.SET_SCRIPT_GFX_DRAW_ORDER(intdrawOrder)
    return native.call(0x61BB1D9B3A95D802, intdrawOrder)
end

function natives.SET_SCRIPT_GFX_ALIGN(inthorizontalAlign, intverticalAlign)
    return native.call(0xB8A850F20A067EB6, inthorizontalAlign, intverticalAlign)
end

function natives.RESET_SCRIPT_GFX_ALIGN()
    return native.call(0xE3A3DB414A373DAB)
end

function natives.SET_SCRIPT_GFX_ALIGN_PARAMS(floatx, floaty, floatw, floath)
    return native.call(0xF5A2C681787E579D, floatx, floaty, floatw, floath)
end

function natives.GET_SCRIPT_GFX_POSITION(floatx, floaty, floatcalculatedX, floatcalculatedY)
    return native.call(0x6DD8F5AA635EB4B2, floatx, floaty, floatcalculatedX, floatcalculatedY)
end

function natives.GET_SAFE_ZONE_SIZE()
    return native.call(0xBAF107B6BB2C97F0)
end

function natives.DRAW_SPRITE(constchartextureDict, constchartextureName, floatscreenX, floatscreenY, floatwidth, floatheight, floatheading, intred, intgreen, intblue, intalpha, BOOLp11, Anyp12)
    return native.call(0xE7FFAE5EBF23D890, constchartextureDict, constchartextureName, floatscreenX, floatscreenY, floatwidth, floatheight, floatheading, intred, intgreen, intblue, intalpha, BOOLp11, Anyp12)
end

function natives._0x2D3B147AFAD49DE0(constchartextureDict, constchartextureName, floatx, floaty, floatwidth, floatheight, floatp6, intred, intgreen, intblue, intalpha, Anyp11, Anyp12)
    return native.call(0x2D3B147AFAD49DE0, constchartextureDict, constchartextureName, floatx, floaty, floatwidth, floatheight, floatp6, intred, intgreen, intblue, intalpha, Anyp11, Anyp12)
end

function natives.DRAW_INTERACTIVE_SPRITE(constchartextureDict, constchartextureName, floatscreenX, floatscreenY, floatwidth, floatheight, floatheading, intred, intgreen, intblue, intalpha, Anyp11)
    return native.call(0x2BC54A8188768488, constchartextureDict, constchartextureName, floatscreenX, floatscreenY, floatwidth, floatheight, floatheading, intred, intgreen, intblue, intalpha, Anyp11)
end

function natives.DRAW_SPRITE_UV(constchartextureDict, constchartextureName, floatx, floaty, floatwidth, floatheight, floatu1, floatv1, floatu2, floatv2, floatheading, intred, intgreen, intblue, intalpha, Anyp15)
    return native.call(0x95812F9B26074726, constchartextureDict, constchartextureName, floatx, floaty, floatwidth, floatheight, floatu1, floatv1, floatu2, floatv2, floatheading, intred, intgreen, intblue, intalpha, Anyp15)
end

function natives.ADD_ENTITY_ICON(Entityentity, constcharicon)
    return native.call(0x9CD43EEE12BF4DD0, Entityentity, constcharicon)
end

function natives.SET_ENTITY_ICON_VISIBILITY(Entityentity, BOOLtoggle)
    return native.call(0xE0E8BEECCA96BA31, Entityentity, BOOLtoggle)
end

function natives.SET_ENTITY_ICON_COLOR(Entityentity, intred, intgreen, intblue, intalpha)
    return native.call(0x1D5F595CCAE2E238, Entityentity, intred, intgreen, intblue, intalpha)
end

function natives.SET_DRAW_ORIGIN(floatx, floaty, floatz, Anyp3)
    return native.call(0xAA0008F3BBB8F416, floatx, floaty, floatz, Anyp3)
end

function natives.CLEAR_DRAW_ORIGIN()
    return native.call(0xFF0B610F6BE0D7AF)
end

function natives.SET_BINK_MOVIE(constcharname)
    return native.call(0x338D9F609FD632DB, constcharname)
end

function natives.PLAY_BINK_MOVIE(intbinkMovie)
    return native.call(0x70D2CC8A542A973C, intbinkMovie)
end

function natives.STOP_BINK_MOVIE(intbinkMovie)
    return native.call(0x63606A61DE68898A, intbinkMovie)
end

function natives.RELEASE_BINK_MOVIE(intbinkMovie)
    return native.call(0x04D950EEFA4EED8C, intbinkMovie)
end

function natives.DRAW_BINK_MOVIE(intbinkMovie, floatp1, floatp2, floatp3, floatp4, floatp5, intr, intg, intb, inta)
    return native.call(0x7118E83EEB9F7238, intbinkMovie, floatp1, floatp2, floatp3, floatp4, floatp5, intr, intg, intb, inta)
end

function natives.SET_BINK_MOVIE_TIME(intbinkMovie, floatprogress)
    return native.call(0x0CB6B3446855B57A, intbinkMovie, floatprogress)
end

function natives.GET_BINK_MOVIE_TIME(intbinkMovie)
    return native.call(0x8E17DDD6B9D5BF29, intbinkMovie)
end

function natives.SET_BINK_MOVIE_VOLUME(intbinkMovie, floatvalue)
    return native.call(0xAFF33B1178172223, intbinkMovie, floatvalue)
end

function natives.ATTACH_TV_AUDIO_TO_ENTITY(Entityentity)
    return native.call(0x845BAD77CC770633, Entityentity)
end

function natives.SET_BINK_MOVIE_UNK_2(intbinkMovie, BOOLp1)
    return native.call(0xF816F2933752322D, intbinkMovie, BOOLp1)
end

function natives.SET_TV_AUDIO_FRONTEND(BOOLtoggle)
    return native.call(0x113D2C5DC57E1774, BOOLtoggle)
end

function natives.SET_BINK_SHOULD_SKIP(intbinkMovie, BOOLbShouldSkip)
    return native.call(0x6805D58CAA427B72, intbinkMovie, BOOLbShouldSkip)
end

function natives.LOAD_MOVIE_MESH_SET(constcharmovieMeshSetName)
    return native.call(0xB66064452270E8F1, constcharmovieMeshSetName)
end

function natives.RELEASE_MOVIE_MESH_SET(intmovieMeshSet)
    return native.call(0xEB119AA014E89183, intmovieMeshSet)
end

function natives.QUERY_MOVIE_MESH_SET_STATE(Anyp0)
    return native.call(0x9B6E70C5CEEF4EEB, Anyp0)
end

function natives.GET_SCREEN_RESOLUTION(intx, inty)
    return native.call(0x888D57E407E63624, intx, inty)
end

function natives.GET_ACTIVE_SCREEN_RESOLUTION(intx, inty)
    return native.call(0x873C9F3104101DD3, intx, inty)
end

function natives.GET_ASPECT_RATIO(BOOLb)
    return native.call(0xF1307EF624A80D87, BOOLb)
end

function natives._0xB2EBE8CBC58B90E9()
    return native.call(0xB2EBE8CBC58B90E9)
end

function natives.GET_IS_WIDESCREEN()
    return native.call(0x30CF4BDA4FCB1905)
end

function natives.GET_IS_HIDEF()
    return native.call(0x84ED31191CC5D2C9)
end

function natives._0xEFABC7722293DA7C()
    return native.call(0xEFABC7722293DA7C)
end

function natives.SET_NIGHTVISION(BOOLtoggle)
    return native.call(0x18F621F7A5B1F85D, BOOLtoggle)
end

function natives.GET_REQUESTINGNIGHTVISION()
    return native.call(0x35FB78DC42B7BD21)
end

function natives.GET_USINGNIGHTVISION()
    return native.call(0x2202A3F42C8E5F79)
end

function natives._0xEF398BEEE4EF45F9(BOOLp0)
    return native.call(0xEF398BEEE4EF45F9, BOOLp0)
end

function natives._0x814AF7DCAACC597B(Anyp0)
    return native.call(0x814AF7DCAACC597B, Anyp0)
end

function natives._0x43FA7CBE20DAB219(Anyp0)
    return native.call(0x43FA7CBE20DAB219, Anyp0)
end

function natives.SET_NOISEOVERIDE(BOOLtoggle)
    return native.call(0xE787BF1C5CF823C9, BOOLtoggle)
end

function natives.SET_NOISINESSOVERIDE(floatvalue)
    return native.call(0xCB6A7C3BB17A0C67, floatvalue)
end

function natives.GET_SCREEN_COORD_FROM_WORLD_COORD(floatworldX, floatworldY, floatworldZ, floatscreenX, floatscreenY)
    return native.call(0x34E82F05DF2974F5, floatworldX, floatworldY, floatworldZ, floatscreenX, floatscreenY)
end

function natives.GET_TEXTURE_RESOLUTION(constchartextureDict, constchartextureName)
    return native.call(0x35736EE65BD00C11, constchartextureDict, constchartextureName)
end

function natives.OVERRIDE_PED_BADGE_TEXTURE(Pedped, constchartxd, constchartxn)
    return native.call(0x95EB5E34F821BABE, Pedped, constchartxd, constchartxn)
end

function natives._0xE2892E7E55D7073A(floatp0)
    return native.call(0xE2892E7E55D7073A, floatp0)
end

function natives.SET_FLASH(floatp0, floatp1, floatfadeIn, floatduration, floatfadeOut)
    return native.call(0x0AB84296FED9CFC6, floatp0, floatp1, floatfadeIn, floatduration, floatfadeOut)
end

function natives.DISABLE_OCCLUSION_THIS_FRAME()
    return native.call(0x3669F1B198DCAA4F)
end

function natives.SET_ARTIFICIAL_LIGHTS_STATE(BOOLstate)
    return native.call(0x1268615ACE24D504, BOOLstate)
end

function natives.SET_ARTIFICIAL_LIGHTS_STATE_AFFECTS_VEHICLES(BOOLtoggle)
    return native.call(0xE2B187C0939B3D32, BOOLtoggle)
end

function natives._0xC35A6D07C93802B2()
    return native.call(0xC35A6D07C93802B2)
end

function natives.CREATE_TRACKED_POINT()
    return native.call(0xE2C9439ED45DEA60)
end

function natives.SET_TRACKED_POINT_INFO(intpoint, floatx, floaty, floatz, floatradius)
    return native.call(0x164ECBB3CF750CB0, intpoint, floatx, floaty, floatz, floatradius)
end

function natives.IS_TRACKED_POINT_VISIBLE(intpoint)
    return native.call(0xC45CCDAAC9221CA8, intpoint)
end

function natives.DESTROY_TRACKED_POINT(intpoint)
    return native.call(0xB25DC90BAD56CA42, intpoint)
end

function natives._0xBE197EAA669238F4(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xBE197EAA669238F4, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x61F95E5BB3E0A8C6(Anyp0)
    return native.call(0x61F95E5BB3E0A8C6, Anyp0)
end

function natives._0xAE51BC858F32BA66(Anyp0, floatp1, floatp2, floatp3, floatp4)
    return native.call(0xAE51BC858F32BA66, Anyp0, floatp1, floatp2, floatp3, floatp4)
end

function natives._0x649C97D52332341A(Anyp0)
    return native.call(0x649C97D52332341A, Anyp0)
end

function natives._0x2C42340F916C5930(Anyp0)
    return native.call(0x2C42340F916C5930, Anyp0)
end

function natives._0x14FC5833464340A8()
    return native.call(0x14FC5833464340A8)
end

function natives._0x0218BA067D249DEA()
    return native.call(0x0218BA067D249DEA)
end

function natives._0x1612C45F9E3E0D44()
    return native.call(0x1612C45F9E3E0D44)
end

function natives._0x5DEBD9C4DC995692()
    return native.call(0x5DEBD9C4DC995692)
end

function natives._0xAAE9BE70EC7C69AB(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
    return native.call(0xAAE9BE70EC7C69AB, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
end

function natives.GRASS_LOD_SHRINK_SCRIPT_AREAS(floatx, floaty, floatz, floatradius, floatp4, floatp5, floatp6)
    return native.call(0x6D955F6A9E0295B1, floatx, floaty, floatz, floatradius, floatp4, floatp5, floatp6)
end

function natives.GRASS_LOD_RESET_SCRIPT_AREAS()
    return native.call(0x302C91AB2D477F7E)
end

function natives.CASCADE_SHADOWS_INIT_SESSION()
    return native.call(0x03FC694AE06C5A20)
end

function natives.CASCADE_SHADOWS_SET_CASCADE_BOUNDS(Anyp0, BOOLp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, floatp7)
    return native.call(0xD2936CAB8B58FCBD, Anyp0, BOOLp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, floatp7)
end

function natives.CASCADE_SHADOWS_SET_CASCADE_BOUNDS_SCALE(floatp0)
    return native.call(0x5F0F3F56635809EF, floatp0)
end

function natives.CASCADE_SHADOWS_SET_ENTITY_TRACKER_SCALE(floatp0)
    return native.call(0x5E9DAF5A20F15908, floatp0)
end

function natives._0x36F6626459D91457(floatp0)
    return native.call(0x36F6626459D91457, floatp0)
end

function natives._0x259BA6D4E6F808F1(Anyp0)
    return native.call(0x259BA6D4E6F808F1, Anyp0)
end

function natives.CASCADE_SHADOWS_ENABLE_ENTITY_TRACKER(BOOLtoggle)
    return native.call(0x80ECBC0C856D3B0B, BOOLtoggle)
end

function natives._0x25FC3E33A31AD0C9(BOOLp0)
    return native.call(0x25FC3E33A31AD0C9, BOOLp0)
end

function natives.CASCADE_SHADOWS_SET_SHADOW_SAMPLE_TYPE(constchartype)
    return native.call(0xB11D94BC55F41932, constchartype)
end

function natives.CASCADE_SHADOWS_CLEAR_SHADOW_SAMPLE_TYPE()
    return native.call(0x27CB772218215325)
end

function natives.CASCADE_SHADOWS_SET_AIRCRAFT_MODE(BOOLp0)
    return native.call(0x6DDBF9DFFC4AC080, BOOLp0)
end

function natives.CASCADE_SHADOWS_SET_DYNAMIC_DEPTH_MODE(BOOLp0)
    return native.call(0xD39D13C9FEBF0511, BOOLp0)
end

function natives.CASCADE_SHADOWS_SET_DYNAMIC_DEPTH_VALUE(floatp0)
    return native.call(0x02AC28F3A01FA04A, floatp0)
end

function natives._0x0AE73D8DF3A762B2(BOOLp0)
    return native.call(0x0AE73D8DF3A762B2, BOOLp0)
end

function natives._0xCA465D9CC0D231BA(Anyp0)
    return native.call(0xCA465D9CC0D231BA, Anyp0)
end

function natives.GOLF_TRAIL_SET_ENABLED(BOOLtoggle)
    return native.call(0xA51C4B86B71652AE, BOOLtoggle)
end

function natives.GOLF_TRAIL_SET_PATH(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, BOOLp8)
    return native.call(0x312342E1A4874F3F, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, BOOLp8)
end

function natives.GOLF_TRAIL_SET_RADIUS(floatp0, floatp1, floatp2)
    return native.call(0x2485D34E50A22E84, floatp0, floatp1, floatp2)
end

function natives.GOLF_TRAIL_SET_COLOUR(intp0, intp1, intp2, intp3, intp4, intp5, intp6, intp7, intp8, intp9, intp10, intp11)
    return native.call(0x12995F2E53FFA601, intp0, intp1, intp2, intp3, intp4, intp5, intp6, intp7, intp8, intp9, intp10, intp11)
end

function natives.GOLF_TRAIL_SET_TESSELLATION(intp0, intp1)
    return native.call(0xDBAA5EC848BA2D46, intp0, intp1)
end

function natives._0xC0416B061F2B7E5E(BOOLp0)
    return native.call(0xC0416B061F2B7E5E, BOOLp0)
end

function natives.GOLF_TRAIL_SET_FIXED_CONTROL_POINT(inttype, floatxPos, floatyPos, floatzPos, floatp4, intred, intgreen, intblue, intalpha)
    return native.call(0xB1BB03742917A5D6, inttype, floatxPos, floatyPos, floatzPos, floatp4, intred, intgreen, intblue, intalpha)
end

function natives.GOLF_TRAIL_SET_SHADER_PARAMS(floatp0, floatp1, floatp2, floatp3, floatp4)
    return native.call(0x9CFDD90B2B844BF7, floatp0, floatp1, floatp2, floatp3, floatp4)
end

function natives.GOLF_TRAIL_SET_FACING(BOOLp0)
    return native.call(0x06F761EA47C1D3ED, BOOLp0)
end

function natives.GOLF_TRAIL_GET_MAX_HEIGHT()
    return native.call(0xA4819F5E23E2FFAD)
end

function natives.GOLF_TRAIL_GET_VISUAL_CONTROL_POINT(intp0)
    return native.call(0xA4664972A9B8F8BA, intp0)
end

function natives.SET_SEETHROUGH(BOOLtoggle)
    return native.call(0x7E08924259E08CE0, BOOLtoggle)
end

function natives.GET_USINGSEETHROUGH()
    return native.call(0x44B80ABAB9D80BD3)
end

function natives.SEETHROUGH_RESET()
    return native.call(0x70A64C0234EF522C)
end

function natives.SEETHROUGH_SET_FADE_START_DISTANCE(floatdistance)
    return native.call(0xA78DE25577300BA1, floatdistance)
end

function natives.SEETHROUGH_SET_FADE_END_DISTANCE(floatdistance)
    return native.call(0x9D75795B9DC6EBBF, floatdistance)
end

function natives.SEETHROUGH_GET_MAX_THICKNESS()
    return native.call(0x43DBAE39626CE83F)
end

function natives.SEETHROUGH_SET_MAX_THICKNESS(floatthickness)
    return native.call(0x0C8FAC83902A62DF, floatthickness)
end

function natives.SEETHROUGH_SET_NOISE_AMOUNT_MIN(floatamount)
    return native.call(0xFF5992E1C9E65D05, floatamount)
end

function natives.SEETHROUGH_SET_NOISE_AMOUNT_MAX(floatamount)
    return native.call(0xFEBFBFDFB66039DE, floatamount)
end

function natives.SEETHROUGH_SET_HI_LIGHT_INTENSITY(floatintensity)
    return native.call(0x19E50EB6E33E1D28, floatintensity)
end

function natives.SEETHROUGH_SET_HI_LIGHT_NOISE(floatnoise)
    return native.call(0x1636D7FC127B10D2, floatnoise)
end

function natives.SEETHROUGH_SET_HEATSCALE(intindex, floatheatScale)
    return native.call(0xD7D0B00177485411, intindex, floatheatScale)
end

function natives.SEETHROUGH_SET_COLOR_NEAR(intred, intgreen, intblue)
    return native.call(0x1086127B3A63505E, intred, intgreen, intblue)
end

function natives._0xB3C641F3630BF6DA(floatp0)
    return native.call(0xB3C641F3630BF6DA, floatp0)
end

function natives._0xE59343E9E96529E7()
    return native.call(0xE59343E9E96529E7)
end

function natives._0x6A51F78772175A51(BOOLtoggle)
    return native.call(0x6A51F78772175A51, BOOLtoggle)
end

function natives.TOGGLE_PLAYER_DAMAGE_OVERLAY(BOOLtoggle)
    return native.call(0xE63D7C6EECECB66B, BOOLtoggle)
end

function natives._0xE3E2C1B4C59DBC77(intunk)
    return native.call(0xE3E2C1B4C59DBC77, intunk)
end

function natives.TRIGGER_SCREENBLUR_FADE_IN(floattransitionTime)
    return native.call(0xA328A24AAA6B7FDC, floattransitionTime)
end

function natives.TRIGGER_SCREENBLUR_FADE_OUT(floattransitionTime)
    return native.call(0xEFACC8AEF94430D5, floattransitionTime)
end

function natives.DISABLE_SCREENBLUR_FADE()
    return native.call(0xDE81239437E8C5A8)
end

function natives.GET_SCREENBLUR_FADE_CURRENT_TIME()
    return native.call(0x5CCABFFCA31DDE33)
end

function natives.IS_SCREENBLUR_FADE_RUNNING()
    return native.call(0x7B226C785A52A0A9)
end

function natives.TOGGLE_PAUSED_RENDERPHASES(BOOLtoggle)
    return native.call(0xDFC252D8A3E15AB7, BOOLtoggle)
end

function natives.GET_TOGGLE_PAUSED_RENDERPHASES_STATUS()
    return native.call(0xEB3DAC2C86001E5E)
end

function natives.RESET_PAUSED_RENDERPHASES()
    return native.call(0xE1C8709406F2C41C)
end

function natives._0x851CD923176EBA7C()
    return native.call(0x851CD923176EBA7C)
end

function natives.SET_HIDOF_ENV_BLUR_PARAMS(BOOLp0, BOOLp1, floatnearplaneOut, floatnearplaneIn, floatfarplaneOut, floatfarplaneIn)
    return native.call(0xBA3D65906822BED5, BOOLp0, BOOLp1, floatnearplaneOut, floatnearplaneIn, floatfarplaneOut, floatfarplaneIn)
end

function natives._0xB569F41F3E7E83A4(Anyp0)
    return native.call(0xB569F41F3E7E83A4, Anyp0)
end

function natives._0x7AC24EAB6D74118D(BOOLp0)
    return native.call(0x7AC24EAB6D74118D, BOOLp0)
end

function natives._0xBCEDB009461DA156()
    return native.call(0xBCEDB009461DA156)
end

function natives._0x27FEB5254759CDE3(constchartextureDict, BOOLp1)
    return native.call(0x27FEB5254759CDE3, constchartextureDict, BOOLp1)
end

function natives.START_PARTICLE_FX_NON_LOOPED_AT_COORD(constchareffectName, floatxPos, floatyPos, floatzPos, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
    return native.call(0x25129531F77B9ED3, constchareffectName, floatxPos, floatyPos, floatzPos, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
end

function natives.START_NETWORKED_PARTICLE_FX_NON_LOOPED_AT_COORD(constchareffectName, floatxPos, floatyPos, floatzPos, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, BOOLp11)
    return native.call(0xF56B8137DF10135D, constchareffectName, floatxPos, floatyPos, floatzPos, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, BOOLp11)
end

function natives.START_PARTICLE_FX_NON_LOOPED_ON_PED_BONE(constchareffectName, Pedped, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, intboneIndex, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
    return native.call(0x0E7E72961BA18619, constchareffectName, Pedped, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, intboneIndex, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
end

function natives.START_NETWORKED_PARTICLE_FX_NON_LOOPED_ON_PED_BONE(constchareffectName, Pedped, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, intboneIndex, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
    return native.call(0xA41B6A43642AC2CF, constchareffectName, Pedped, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, intboneIndex, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
end

function natives.START_PARTICLE_FX_NON_LOOPED_ON_ENTITY(constchareffectName, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
    return native.call(0x0D53A3B8DA0809D2, constchareffectName, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
end

function natives.START_NETWORKED_PARTICLE_FX_NON_LOOPED_ON_ENTITY(constchareffectName, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
    return native.call(0xC95EB1DB6E92113D, constchareffectName, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
end

function natives.START_NETWORKED_PARTICLE_FX_NON_LOOPED_ON_ENTITY_BONE(constchareffectName, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, intboneIndex, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
    return native.call(0x02B1F2A72E0F5325, constchareffectName, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatrotX, floatrotY, floatrotZ, intboneIndex, floatscale, BOOLaxisX, BOOLaxisY, BOOLaxisZ)
end

function natives.SET_PARTICLE_FX_NON_LOOPED_COLOUR(floatr, floatg, floatb)
    return native.call(0x26143A59EF48B262, floatr, floatg, floatb)
end

function natives.SET_PARTICLE_FX_NON_LOOPED_ALPHA(floatalpha)
    return native.call(0x77168D722C58B2FC, floatalpha)
end

function natives._0x8CDE909A0370BB3A(BOOLtoggle)
    return native.call(0x8CDE909A0370BB3A, BOOLtoggle)
end

function natives.START_PARTICLE_FX_LOOPED_AT_COORD(constchareffectName, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, BOOLp11)
    return native.call(0xE184F4F0DC5910E7, constchareffectName, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, BOOLp11)
end

function natives.START_PARTICLE_FX_LOOPED_ON_PED_BONE(constchareffectName, Pedped, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, intboneIndex, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
    return native.call(0xF28DA9F38CD1787C, constchareffectName, Pedped, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, intboneIndex, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
end

function natives.START_PARTICLE_FX_LOOPED_ON_ENTITY(constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
    return native.call(0x1AE42C1660FD6517, constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
end

function natives.START_PARTICLE_FX_LOOPED_ON_ENTITY_BONE(constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, intboneIndex, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
    return native.call(0xC6EB449E33977F0B, constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, intboneIndex, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis)
end

function natives.START_NETWORKED_PARTICLE_FX_LOOPED_ON_ENTITY(constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, Anyp12, Anyp13, Anyp14, Anyp15)
    return native.call(0x6F60E89A7B64EE1D, constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, Anyp12, Anyp13, Anyp14, Anyp15)
end

function natives.START_NETWORKED_PARTICLE_FX_LOOPED_ON_ENTITY_BONE(constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, intboneIndex, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, Anyp13, Anyp14, Anyp15, Anyp16)
    return native.call(0xDDE23F30CC5A0F03, constchareffectName, Entityentity, floatxOffset, floatyOffset, floatzOffset, floatxRot, floatyRot, floatzRot, intboneIndex, floatscale, BOOLxAxis, BOOLyAxis, BOOLzAxis, Anyp13, Anyp14, Anyp15, Anyp16)
end

function natives.STOP_PARTICLE_FX_LOOPED(intptfxHandle, BOOLp1)
    return native.call(0x8F75998877616996, intptfxHandle, BOOLp1)
end

function natives.REMOVE_PARTICLE_FX(intptfxHandle, BOOLp1)
    return native.call(0xC401503DFE8D53CF, intptfxHandle, BOOLp1)
end

function natives.REMOVE_PARTICLE_FX_FROM_ENTITY(Entityentity)
    return native.call(0xB8FEAEEBCC127425, Entityentity)
end

function natives.REMOVE_PARTICLE_FX_IN_RANGE(floatX, floatY, floatZ, floatradius)
    return native.call(0xDD19FA1C6D657305, floatX, floatY, floatZ, floatradius)
end

function natives._0xBA0127DA25FD54C9(Anyp0, Anyp1)
    return native.call(0xBA0127DA25FD54C9, Anyp0, Anyp1)
end

function natives.DOES_PARTICLE_FX_LOOPED_EXIST(intptfxHandle)
    return native.call(0x74AFEF0D2E1E409B, intptfxHandle)
end

function natives.SET_PARTICLE_FX_LOOPED_OFFSETS(intptfxHandle, floatx, floaty, floatz, floatrotX, floatrotY, floatrotZ)
    return native.call(0xF7DDEBEC43483C43, intptfxHandle, floatx, floaty, floatz, floatrotX, floatrotY, floatrotZ)
end

function natives.SET_PARTICLE_FX_LOOPED_EVOLUTION(intptfxHandle, constcharpropertyName, floatamount, BOOLnoNetwork)
    return native.call(0x5F0C4B5B1C393BE2, intptfxHandle, constcharpropertyName, floatamount, BOOLnoNetwork)
end

function natives.SET_PARTICLE_FX_LOOPED_COLOUR(intptfxHandle, floatr, floatg, floatb, BOOLp4)
    return native.call(0x7F8F65877F88783B, intptfxHandle, floatr, floatg, floatb, BOOLp4)
end

function natives.SET_PARTICLE_FX_LOOPED_ALPHA(intptfxHandle, floatalpha)
    return native.call(0x726845132380142E, intptfxHandle, floatalpha)
end

function natives.SET_PARTICLE_FX_LOOPED_SCALE(intptfxHandle, floatscale)
    return native.call(0xB44250AAA456492D, intptfxHandle, floatscale)
end

function natives.SET_PARTICLE_FX_LOOPED_FAR_CLIP_DIST(intptfxHandle, floatrange)
    return native.call(0xDCB194B85EF7B541, intptfxHandle, floatrange)
end

function natives.SET_PARTICLE_FX_CAM_INSIDE_VEHICLE(BOOLp0)
    return native.call(0xEEC4047028426510, BOOLp0)
end

function natives.SET_PARTICLE_FX_CAM_INSIDE_NONPLAYER_VEHICLE(Vehiclevehicle, BOOLp1)
    return native.call(0xACEE6F360FC1F6B6, Vehiclevehicle, BOOLp1)
end

function natives.SET_PARTICLE_FX_SHOOTOUT_BOAT(Anyp0)
    return native.call(0x96EF97DAEB89BEF5, Anyp0)
end

function natives._0x2A251AA48B2B46DB()
    return native.call(0x2A251AA48B2B46DB)
end

function natives._0x908311265D42A820(Anyp0)
    return native.call(0x908311265D42A820, Anyp0)
end

function natives._0xCFD16F0DB5A3535C(BOOLtoggle)
    return native.call(0xCFD16F0DB5A3535C, BOOLtoggle)
end

function natives._0x5F6DF3D92271E8A1(BOOLtoggle)
    return native.call(0x5F6DF3D92271E8A1, BOOLtoggle)
end

function natives._0x2B40A97646381508(Anyp0)
    return native.call(0x2B40A97646381508, Anyp0)
end

function natives.ENABLE_CLOWN_BLOOD_VFX(BOOLtoggle)
    return native.call(0xD821490579791273, BOOLtoggle)
end

function natives.ENABLE_ALIEN_BLOOD_VFX(BOOLtoggle)
    return native.call(0x9DCE1F0F78260875, BOOLtoggle)
end

function natives.SET_PARTICLE_FX_BULLET_IMPACT_SCALE(floatscale)
    return native.call(0x27E32866E9A5C416, floatscale)
end

function natives._0xBB90E12CAC1DAB25(floatp0)
    return native.call(0xBB90E12CAC1DAB25, floatp0)
end

function natives._0xCA4AE345A153D573(BOOLp0)
    return native.call(0xCA4AE345A153D573, BOOLp0)
end

function natives._0x54E22EA2C1956A8D(floatp0)
    return native.call(0x54E22EA2C1956A8D, floatp0)
end

function natives._0x949F397A288B28B3(floatp0)
    return native.call(0x949F397A288B28B3, floatp0)
end

function natives._0xBA3D194057C79A7B(constcharp0)
    return native.call(0xBA3D194057C79A7B, constcharp0)
end

function natives._0x5DBF05DB5926D089(Anyp0)
    return native.call(0x5DBF05DB5926D089, Anyp0)
end

function natives._0xC6730E0D14E50703(Anyp0)
    return native.call(0xC6730E0D14E50703, Anyp0)
end

function natives._0x9B079E5221D984D3(BOOLp0)
    return native.call(0x9B079E5221D984D3, BOOLp0)
end

function natives.USE_PARTICLE_FX_ASSET(constcharname)
    return native.call(0x6C38AF3693A69A91, constcharname)
end

function natives.SET_PARTICLE_FX_OVERRIDE(constcharoldAsset, constcharnewAsset)
    return native.call(0xEA1E2D93F6F75ED9, constcharoldAsset, constcharnewAsset)
end

function natives.RESET_PARTICLE_FX_OVERRIDE(constcharname)
    return native.call(0x89C8553DD3274AAE, constcharname)
end

function natives._0xA46B73FAA3460AE1(BOOLp0)
    return native.call(0xA46B73FAA3460AE1, BOOLp0)
end

function natives._0xF78B803082D4386F(floatp0)
    return native.call(0xF78B803082D4386F, floatp0)
end

function natives.WASH_DECALS_IN_RANGE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x9C30613D50A6ADEF, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.WASH_DECALS_FROM_VEHICLE(Vehiclevehicle, floatp1)
    return native.call(0x5B712761429DBC14, Vehiclevehicle, floatp1)
end

function natives.FADE_DECALS_IN_RANGE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xD77EDADB0420E6E0, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.REMOVE_DECALS_IN_RANGE(floatx, floaty, floatz, floatrange)
    return native.call(0x5D6B2D4830A67C62, floatx, floaty, floatz, floatrange)
end

function natives.REMOVE_DECALS_FROM_OBJECT(Objectobj)
    return native.call(0xCCF71CBDDF5B6CB9, Objectobj)
end

function natives.REMOVE_DECALS_FROM_OBJECT_FACING(Objectobj, floatx, floaty, floatz)
    return native.call(0xA6F6F70FDC6D144C, Objectobj, floatx, floaty, floatz)
end

function natives.REMOVE_DECALS_FROM_VEHICLE(Vehiclevehicle)
    return native.call(0xE91F1B65F2B48D57, Vehiclevehicle)
end

function natives.ADD_DECAL(intdecalType, floatposX, floatposY, floatposZ, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, floatwidth, floatheight, floatrCoef, floatgCoef, floatbCoef, floatopacity, floattimeout, BOOLp17, BOOLp18, BOOLp19)
    return native.call(0xB302244A1839BDAD, intdecalType, floatposX, floatposY, floatposZ, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, floatwidth, floatheight, floatrCoef, floatgCoef, floatbCoef, floatopacity, floattimeout, BOOLp17, BOOLp18, BOOLp19)
end

function natives.ADD_PETROL_DECAL(floatx, floaty, floatz, floatgroundLvl, floatwidth, floattransparency)
    return native.call(0x4F5212C7AD880DF8, floatx, floaty, floatz, floatgroundLvl, floatwidth, floattransparency)
end

function natives.START_PETROL_TRAIL_DECALS(floatp0)
    return native.call(0x99AC7F0D8B9C893D, floatp0)
end

function natives.ADD_PETROL_TRAIL_DECAL_INFO(floatx, floaty, floatz, floatp3)
    return native.call(0x967278682CB6967A, floatx, floaty, floatz, floatp3)
end

function natives.END_PETROL_TRAIL_DECALS()
    return native.call(0x0A123435A26C36CD)
end

function natives.REMOVE_DECAL(intdecal)
    return native.call(0xED3F346429CCD659, intdecal)
end

function natives.IS_DECAL_ALIVE(intdecal)
    return native.call(0xC694D74949CAFD0C, intdecal)
end

function natives.GET_DECAL_WASH_LEVEL(intdecal)
    return native.call(0x323F647679A09103, intdecal)
end

function natives._0xD9454B5752C857DC()
    return native.call(0xD9454B5752C857DC)
end

function natives._0x27CFB1B1E078CB2D()
    return native.call(0x27CFB1B1E078CB2D)
end

function natives.SET_DISABLE_DECAL_RENDERING_THIS_FRAME()
    return native.call(0x4B5CFC83122DF602)
end

function natives.GET_IS_PETROL_DECAL_IN_RANGE(floatxCoord, floatyCoord, floatzCoord, floatradius)
    return native.call(0x2F09F7976C512404, floatxCoord, floatyCoord, floatzCoord, floatradius)
end

function natives.PATCH_DECAL_DIFFUSE_MAP(intdecalType, constchartextureDict, constchartextureName)
    return native.call(0x8A35C742130C6080, intdecalType, constchartextureDict, constchartextureName)
end

function natives.UNPATCH_DECAL_DIFFUSE_MAP(intdecalType)
    return native.call(0xB7ED70C49521A61D, intdecalType)
end

function natives.MOVE_VEHICLE_DECALS(Anyp0, Anyp1)
    return native.call(0x84C8D7C2D30D3280, Anyp0, Anyp1)
end

function natives.ADD_VEHICLE_CREW_EMBLEM(Vehiclevehicle, Pedped, intboneIndex, floatx1, floatx2, floatx3, floaty1, floaty2, floaty3, floatz1, floatz2, floatz3, floatscale, Anyp13, intalpha)
    return native.call(0x428BDCB9DA58DA53, Vehiclevehicle, Pedped, intboneIndex, floatx1, floatx2, floatx3, floaty1, floaty2, floaty3, floatz1, floatz2, floatz3, floatscale, Anyp13, intalpha)
end

function natives._0x82ACC484FFA3B05F(Anyp0)
    return native.call(0x82ACC484FFA3B05F, Anyp0)
end

function natives.REMOVE_VEHICLE_CREW_EMBLEM(Vehiclevehicle, intp1)
    return native.call(0xD2300034310557E4, Vehiclevehicle, intp1)
end

function natives.GET_VEHICLE_CREW_EMBLEM_REQUEST_STATE(Vehiclevehicle, intp1)
    return native.call(0xFE26117A5841B2FF, Vehiclevehicle, intp1)
end

function natives.DOES_VEHICLE_HAVE_CREW_EMBLEM(Vehiclevehicle, intp1)
    return native.call(0x060D935D3981A275, Vehiclevehicle, intp1)
end

function natives._0x0E4299C549F0D1F1(BOOLtoggle)
    return native.call(0x0E4299C549F0D1F1, BOOLtoggle)
end

function natives._0x02369D5C8A51FDCF(BOOLtoggle)
    return native.call(0x02369D5C8A51FDCF, BOOLtoggle)
end

function natives._0x46D1A61A21F566FC(floatp0)
    return native.call(0x46D1A61A21F566FC, floatp0)
end

function natives.OVERRIDE_INTERIOR_SMOKE_NAME(constcharname)
    return native.call(0x2A2A52824DB96700, constcharname)
end

function natives.OVERRIDE_INTERIOR_SMOKE_LEVEL(floatlevel)
    return native.call(0x1600FD8CF72EBC12, floatlevel)
end

function natives.OVERRIDE_INTERIOR_SMOKE_END()
    return native.call(0xEFB55E7C25D3B3BE)
end

function natives.REGISTER_NOIR_SCREEN_EFFECT_THIS_FRAME()
    return native.call(0xA44FF770DFBC5DAE)
end

function natives.DISABLE_VEHICLE_DISTANTLIGHTS(BOOLtoggle)
    return native.call(0xC9F98AC1884E73A2, BOOLtoggle)
end

function natives._0x03300B57FCAC6DDB(BOOLp0)
    return native.call(0x03300B57FCAC6DDB, BOOLp0)
end

function natives._0x98EDF76A7271E4F2()
    return native.call(0x98EDF76A7271E4F2)
end

function natives.SET_FORCE_PED_FOOTSTEPS_TRACKS(BOOLtoggle)
    return native.call(0xAEEDAD1420C65CC0, BOOLtoggle)
end

function natives.SET_FORCE_VEHICLE_TRAILS(BOOLtoggle)
    return native.call(0x4CC7F0FEA5283FE0, BOOLtoggle)
end

function natives.DISABLE_SCRIPT_AMBIENT_EFFECTS(Anyp0)
    return native.call(0xEFD97FF47B745B8D, Anyp0)
end

function natives.PRESET_INTERIOR_AMBIENT_CACHE(constchartimecycleModifierName)
    return native.call(0xD7021272EB0A451E, constchartimecycleModifierName)
end

function natives.SET_TIMECYCLE_MODIFIER(constcharmodifierName)
    return native.call(0x2C933ABF17A1DF41, constcharmodifierName)
end

function natives.SET_TIMECYCLE_MODIFIER_STRENGTH(floatstrength)
    return native.call(0x82E7FFCD5B2326B3, floatstrength)
end

function natives.SET_TRANSITION_TIMECYCLE_MODIFIER(constcharmodifierName, floattransition)
    return native.call(0x3BCF567485E1971C, constcharmodifierName, floattransition)
end

function natives.SET_TRANSITION_OUT_OF_TIMECYCLE_MODIFIER(floatstrength)
    return native.call(0x1CBA05AE7BD7EE05, floatstrength)
end

function natives.CLEAR_TIMECYCLE_MODIFIER()
    return native.call(0x0F07E7745A236711)
end

function natives.GET_TIMECYCLE_MODIFIER_INDEX()
    return native.call(0xFDF3D97C674AFB66)
end

function natives.GET_TIMECYCLE_TRANSITION_MODIFIER_INDEX()
    return native.call(0x459FD2C8D0AB78BC)
end

function natives._0x98D18905BF723B99()
    return native.call(0x98D18905BF723B99)
end

function natives.PUSH_TIMECYCLE_MODIFIER()
    return native.call(0x58F735290861E6B4)
end

function natives.POP_TIMECYCLE_MODIFIER()
    return native.call(0x3C8938D7D872211E)
end

function natives.SET_CURRENT_PLAYER_TCMODIFIER(constcharmodifierName)
    return native.call(0xBBF327DED94E4DEB, constcharmodifierName)
end

function natives.SET_PLAYER_TCMODIFIER_TRANSITION(floatvalue)
    return native.call(0xBDEB86F4D5809204, floatvalue)
end

function natives.SET_NEXT_PLAYER_TCMODIFIER(constcharmodifierName)
    return native.call(0xBF59707B3E5ED531, constcharmodifierName)
end

function natives.ADD_TCMODIFIER_OVERRIDE(constcharmodifierName1, constcharmodifierName2)
    return native.call(0x1A8E2C8B9CF4549C, constcharmodifierName1, constcharmodifierName2)
end

function natives.REMOVE_TCMODIFIER_OVERRIDE(constcharp0)
    return native.call(0x15E33297C3E8DC60, constcharp0)
end

function natives.SET_EXTRA_TIMECYCLE_MODIFIER(constcharmodifierName)
    return native.call(0x5096FD9CCB49056D, constcharmodifierName)
end

function natives.CLEAR_EXTRA_TIMECYCLE_MODIFIER()
    return native.call(0x92CCC17A7A2285DA)
end

function natives.GET_EXTRA_TIMECYCLE_MODIFIER_INDEX()
    return native.call(0xBB0527EC6341496D)
end

function natives.ENABLE_EXTRA_TIMECYCLE_MODIFIER_STRENGTH(floatstrength)
    return native.call(0x2C328AF17210F009, floatstrength)
end

function natives.RESET_EXTRA_TIMECYCLE_MODIFIER_STRENGTH()
    return native.call(0x2BF72AD5B41AA739)
end

function natives.REQUEST_SCALEFORM_MOVIE(constcharscaleformName)
    return native.call(0x11FE353CF9733E6F, constcharscaleformName)
end

function natives.REQUEST_SCALEFORM_MOVIE_2(constcharscaleformName)
    return native.call(0x65E7E78842E74CDB, constcharscaleformName)
end

function natives.REQUEST_SCALEFORM_MOVIE_INSTANCE(constcharscaleformName)
    return native.call(0xC514489CFB8AF806, constcharscaleformName)
end

function natives.REQUEST_SCALEFORM_MOVIE_INTERACTIVE(constcharscaleformName)
    return native.call(0xBD06C611BB9048C2, constcharscaleformName)
end

function natives.HAS_SCALEFORM_MOVIE_LOADED(intscaleformHandle)
    return native.call(0x85F01B8D5B90570E, intscaleformHandle)
end

function natives._0x2FCB133CA50A49EB(intval)
    return native.call(0x2FCB133CA50A49EB, intval)
end

function natives._0x86255B1FC929E33E(intval)
    return native.call(0x86255B1FC929E33E, intval)
end

function natives.HAS_SCALEFORM_MOVIE_FILENAME_LOADED(constcharscaleformName)
    return native.call(0x0C1C5D756FB5F337, constcharscaleformName)
end

function natives.HAS_SCALEFORM_CONTAINER_MOVIE_LOADED_INTO_PARENT(intscaleformHandle)
    return native.call(0x8217150E1217EBFD, intscaleformHandle)
end

function natives.SET_SCALEFORM_MOVIE_AS_NO_LONGER_NEEDED(intscaleformHandle)
    return native.call(0x1D132D614DD86811, intscaleformHandle)
end

function natives.SET_SCALEFORM_MOVIE_TO_USE_SYSTEM_TIME(intscaleform, BOOLtoggle)
    return native.call(0x6D8EB211944DCE08, intscaleform, BOOLtoggle)
end

function natives._0x32F34FF7F617643B(Anyp0, Anyp1)
    return native.call(0x32F34FF7F617643B, Anyp0, Anyp1)
end

function natives.SET_SCALEFORM_FIT_RENDERTARGET(intscaleformHandle, BOOLtoggle)
    return native.call(0xE6A9F00D4240B519, intscaleformHandle, BOOLtoggle)
end

function natives.DRAW_SCALEFORM_MOVIE(intscaleformHandle, floatx, floaty, floatwidth, floatheight, intred, intgreen, intblue, intalpha, intunk)
    return native.call(0x54972ADAF0294A93, intscaleformHandle, floatx, floaty, floatwidth, floatheight, intred, intgreen, intblue, intalpha, intunk)
end

function natives.DRAW_SCALEFORM_MOVIE_FULLSCREEN(intscaleform, intred, intgreen, intblue, intalpha, intunk)
    return native.call(0x0DF606929C105BE1, intscaleform, intred, intgreen, intblue, intalpha, intunk)
end

function natives.DRAW_SCALEFORM_MOVIE_FULLSCREEN_MASKED(intscaleform1, intscaleform2, intred, intgreen, intblue, intalpha)
    return native.call(0xCF537FDE4FBD4CE5, intscaleform1, intscaleform2, intred, intgreen, intblue, intalpha)
end

function natives.DRAW_SCALEFORM_MOVIE_3D(intscaleform, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatp7, floatp8, floatp9, floatscaleX, floatscaleY, floatscaleZ, introtationOrder)
    return native.call(0x87D51D72255D4E78, intscaleform, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatp7, floatp8, floatp9, floatscaleX, floatscaleY, floatscaleZ, introtationOrder)
end

function natives.DRAW_SCALEFORM_MOVIE_3D_SOLID(intscaleform, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatp7, floatp8, floatp9, floatscaleX, floatscaleY, floatscaleZ, introtationOrder)
    return native.call(0x1CE592FDC749D6F5, intscaleform, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatp7, floatp8, floatp9, floatscaleX, floatscaleY, floatscaleZ, introtationOrder)
end

function natives.CALL_SCALEFORM_MOVIE_METHOD(intscaleform, constcharmethod)
    return native.call(0xFBD96D87AC96D533, intscaleform, constcharmethod)
end

function natives.CALL_SCALEFORM_MOVIE_METHOD_WITH_NUMBER(intscaleform, constcharmethodName, floatparam1, floatparam2, floatparam3, floatparam4, floatparam5)
    return native.call(0xD0837058AE2E4BEE, intscaleform, constcharmethodName, floatparam1, floatparam2, floatparam3, floatparam4, floatparam5)
end

function natives.CALL_SCALEFORM_MOVIE_METHOD_WITH_STRING(intscaleform, constcharmethodName, constcharparam1, constcharparam2, constcharparam3, constcharparam4, constcharparam5)
    return native.call(0x51BC1ED3CC44E8F7, intscaleform, constcharmethodName, constcharparam1, constcharparam2, constcharparam3, constcharparam4, constcharparam5)
end

function natives.CALL_SCALEFORM_MOVIE_METHOD_WITH_NUMBER_AND_STRING(intscaleform, constcharmethodName, floatfloatParam1, floatfloatParam2, floatfloatParam3, floatfloatParam4, floatfloatParam5, constcharstringParam1, constcharstringParam2, constcharstringParam3, constcharstringParam4, constcharstringParam5)
    return native.call(0xEF662D8D57E290B1, intscaleform, constcharmethodName, floatfloatParam1, floatfloatParam2, floatfloatParam3, floatfloatParam4, floatfloatParam5, constcharstringParam1, constcharstringParam2, constcharstringParam3, constcharstringParam4, constcharstringParam5)
end

function natives.BEGIN_SCALEFORM_SCRIPT_HUD_MOVIE_METHOD(inthudComponent, constcharmethodName)
    return native.call(0x98C494FD5BDFBFD5, inthudComponent, constcharmethodName)
end

function natives.BEGIN_SCALEFORM_MOVIE_METHOD(intscaleform, constcharmethodName)
    return native.call(0xF6E48914C7A8694E, intscaleform, constcharmethodName)
end

function natives.BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND(constcharmethodName)
    return native.call(0xAB58C27C2E6123C6, constcharmethodName)
end

function natives.BEGIN_SCALEFORM_MOVIE_METHOD_ON_FRONTEND_HEADER(constcharmethodName)
    return native.call(0xB9449845F73F5E9C, constcharmethodName)
end

function natives.END_SCALEFORM_MOVIE_METHOD()
    return native.call(0xC6796A8FFA375E53)
end

function natives.END_SCALEFORM_MOVIE_METHOD_RETURN_VALUE()
    return native.call(0xC50AA39A577AF886)
end

function natives.IS_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_READY(intmethodReturn)
    return native.call(0x768FF8961BA904D6, intmethodReturn)
end

function natives.GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_INT(intmethodReturn)
    return native.call(0x2DE7EFA66B906036, intmethodReturn)
end

function natives.GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_BOOL(intmethodReturn)
    return native.call(0xD80A80346A45D761, intmethodReturn)
end

function natives.GET_SCALEFORM_MOVIE_METHOD_RETURN_VALUE_STRING(intmethodReturn)
    return native.call(0xE1E258829A885245, intmethodReturn)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_INT(intvalue)
    return native.call(0xC3D0841A0CC546A6, intvalue)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_FLOAT(floatvalue)
    return native.call(0xD69736AAE04DB51A, floatvalue)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_BOOL(BOOLvalue)
    return native.call(0xC58424BA936EB458, BOOLvalue)
end

function natives.BEGIN_TEXT_COMMAND_SCALEFORM_STRING(constcharcomponentType)
    return native.call(0x80338406F3475E55, constcharcomponentType)
end

function natives.END_TEXT_COMMAND_SCALEFORM_STRING()
    return native.call(0x362E2D3FE93A9959)
end

function natives.END_TEXT_COMMAND_SCALEFORM_STRING_2()
    return native.call(0xAE4E8157D9ECF087)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_TEXTURE_NAME_STRING_2(constcharstring)
    return native.call(0x77FE3402004CD1B0, constcharstring)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_TEXTURE_NAME_STRING(constcharstring)
    return native.call(0xBA7148484BD90365, constcharstring)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_PLAYER_NAME_STRING(constcharstring)
    return native.call(0xE83A3E3557A56640, constcharstring)
end

function natives.DOES_LATEST_BRIEF_STRING_EXIST(intp0)
    return native.call(0x5E657EF1099EDD65, intp0)
end

function natives.SCALEFORM_MOVIE_METHOD_ADD_PARAM_LATEST_BRIEF_STRING(intvalue)
    return native.call(0xEC52C631A1831C03, intvalue)
end

function natives.REQUEST_SCALEFORM_SCRIPT_HUD_MOVIE(inthudComponent)
    return native.call(0x9304881D6F6537EA, inthudComponent)
end

function natives.HAS_SCALEFORM_SCRIPT_HUD_MOVIE_LOADED(inthudComponent)
    return native.call(0xDF6E5987D2B4D140, inthudComponent)
end

function natives.REMOVE_SCALEFORM_SCRIPT_HUD_MOVIE(inthudComponent)
    return native.call(0xF44A5456AC3F4F97, inthudComponent)
end

function natives._0xD1C7CB175E012964(intscaleformHandle)
    return native.call(0xD1C7CB175E012964, intscaleformHandle)
end

function natives.SET_TV_CHANNEL(intchannel)
    return native.call(0xBAABBB23EB6E484E, intchannel)
end

function natives.GET_TV_CHANNEL()
    return native.call(0xFC1E275A90D39995)
end

function natives.SET_TV_VOLUME(floatvolume)
    return native.call(0x2982BF73F66E9DDC, floatvolume)
end

function natives.GET_TV_VOLUME()
    return native.call(0x2170813D3DD8661B)
end

function natives.DRAW_TV_CHANNEL(floatxPos, floatyPos, floatxScale, floatyScale, floatrotation, intred, intgreen, intblue, intalpha)
    return native.call(0xFDDC2B4ED3C69DF0, floatxPos, floatyPos, floatxScale, floatyScale, floatrotation, intred, intgreen, intblue, intalpha)
end

function natives.SET_TV_CHANNEL_PLAYLIST(inttvChannel, constcharplaylistName, BOOLrestart)
    return native.call(0xF7B38B8305F1FE8B, inttvChannel, constcharplaylistName, BOOLrestart)
end

function natives.SET_TV_CHANNEL_PLAYLIST_AT_HOUR(inttvChannel, constcharplaylistName, inthour)
    return native.call(0x2201C576FACAEBE8, inttvChannel, constcharplaylistName, inthour)
end

function natives.CLEAR_TV_CHANNEL_PLAYLIST(inttvChannel)
    return native.call(0xBEB3D46BB7F043C0, inttvChannel)
end

function natives.IS_PLAYLIST_UNK(inttvChannel, Anyp1)
    return native.call(0x1F710BFF7DAE6261, inttvChannel, Anyp1)
end

function natives.IS_TV_PLAYLIST_ITEM_PLAYING(HashvideoCliphash)
    return native.call(0x0AD973CA1E077B60, HashvideoCliphash)
end

function natives.ENABLE_MOVIE_KEYFRAME_WAIT(BOOLtoggle)
    return native.call(0x74C180030FDE4B69, BOOLtoggle)
end

function natives._0xD1C55B110E4DF534(Anyp0)
    return native.call(0xD1C55B110E4DF534, Anyp0)
end

function natives._0x30432A0118736E00()
    return native.call(0x30432A0118736E00)
end

function natives.ENABLE_MOVIE_SUBTITLES(BOOLtoggle)
    return native.call(0x873FA65C778AD970, BOOLtoggle)
end

function natives.UI3DSCENE_IS_AVAILABLE()
    return native.call(0xD3A10FC7FD8D98CD)
end

function natives.UI3DSCENE_PUSH_PRESET(constcharpresetName)
    return native.call(0xF1CEA8A4198D8E9A, constcharpresetName)
end

function natives._0x98C4FE6EC34154CA(constcharpresetName, Pedped, intp2, floatposX, floatposY, floatposZ)
    return native.call(0x98C4FE6EC34154CA, constcharpresetName, Pedped, intp2, floatposX, floatposY, floatposZ)
end

function natives._0x7A42B2E236E71415()
    return native.call(0x7A42B2E236E71415)
end

function natives._0x108BE26959A9D9BB(BOOLtoggle)
    return native.call(0x108BE26959A9D9BB, BOOLtoggle)
end

function natives.TERRAINGRID_ACTIVATE(BOOLtoggle)
    return native.call(0xA356990E161C9E65, BOOLtoggle)
end

function natives.TERRAINGRID_SET_PARAMS(floatx, floaty, floatz, floatforwardX, floatforwardY, floatforwardZ, floatsizeX, floatsizeY, floatsizeZ, floatgridScale, floatglowIntensity, floatnormalHeight, floatheightDiff)
    return native.call(0x1C4FC5752BCD8E48, floatx, floaty, floatz, floatforwardX, floatforwardY, floatforwardZ, floatsizeX, floatsizeY, floatsizeZ, floatgridScale, floatglowIntensity, floatnormalHeight, floatheightDiff)
end

function natives.TERRAINGRID_SET_COLOURS(intlowR, intlowG, intlowB, intlowAlpha, intr, intg, intb, intalpha, inthighR, inthighG, inthighB, inthighAlpha)
    return native.call(0x5CE62918F8D703C7, intlowR, intlowG, intlowB, intlowAlpha, intr, intg, intb, intalpha, inthighR, inthighG, inthighB, inthighAlpha)
end

function natives.ANIMPOSTFX_PLAY(constchareffectName, intduration, BOOLlooped)
    return native.call(0x2206BF9A37B7F724, constchareffectName, intduration, BOOLlooped)
end

function natives.ANIMPOSTFX_STOP(constchareffectName)
    return native.call(0x068E835A1D0DC0E3, constchareffectName)
end

function natives.ANIMPOSTFX_GET_UNK(constchareffectName)
    return native.call(0xE35B38A27E8E7179, constchareffectName)
end

function natives.ANIMPOSTFX_IS_RUNNING(constchareffectName)
    return native.call(0x36AD3E690DA5ACEB, constchareffectName)
end

function natives.ANIMPOSTFX_STOP_ALL()
    return native.call(0xB4EDDC19532BFB85)
end

function natives.ANIMPOSTFX_STOP_AND_DO_UNK(constchareffectName)
    return native.call(0xD2209BE128B5418C, constchareffectName)
end

function natives.BEGIN_TEXT_COMMAND_BUSYSPINNER_ON(constcharstring)
    return native.call(0xABA17D7CE615ADBF, constcharstring)
end

function natives.END_TEXT_COMMAND_BUSYSPINNER_ON(intbusySpinnerType)
    return native.call(0xBD12F8228410D9B4, intbusySpinnerType)
end

function natives.BUSYSPINNER_OFF()
    return native.call(0x10D373323E5B9C0D)
end

function natives.PRELOAD_BUSYSPINNER()
    return native.call(0xC65AB383CD91DF98)
end

function natives.BUSYSPINNER_IS_ON()
    return native.call(0xD422FCC5F239A915)
end

function natives.BUSYSPINNER_IS_DISPLAYING()
    return native.call(0xB2A592B04648A9CB)
end

function natives._0x9245E81072704B8A(BOOLp0)
    return native.call(0x9245E81072704B8A, BOOLp0)
end

function natives.SET_MOUSE_CURSOR_ACTIVE_THIS_FRAME()
    return native.call(0xAAE7CE1D63167423)
end

function natives.SET_MOUSE_CURSOR_SPRITE(intspriteId)
    return native.call(0x8DB8CFFD58B62552, intspriteId)
end

function natives.SET_MOUSE_CURSOR_VISIBLE_IN_MENUS(BOOLtoggle)
    return native.call(0x98215325A695E78A, BOOLtoggle)
end

function natives.IS_MOUSE_CURSOR_ABOVE_INSTRUCTIONAL_BUTTONS()
    return native.call(0x3D9ACB1EB139E702)
end

function natives._0x632B2940C67F4EA9(intscaleformHandle, Anyp1, Anyp2, Anyp3)
    return native.call(0x632B2940C67F4EA9, intscaleformHandle, Anyp1, Anyp2, Anyp3)
end

function natives.THEFEED_ONLY_SHOW_TOOLTIPS(BOOLtoggle)
    return native.call(0x6F1554B0CC2089FA, BOOLtoggle)
end

function natives.THEFEED_SET_SCRIPTED_MENU_HEIGHT(floatpos)
    return native.call(0x55598D21339CB998, floatpos)
end

function natives.THEFEED_DISABLE_LOADING_SCREEN_TIPS()
    return native.call(0x32888337579A5970)
end

function natives.THEFEED_HIDE_THIS_FRAME()
    return native.call(0x25F87B30C382FCA7)
end

function natives.THEFEED_DISPLAY_LOADING_SCREEN_TIPS()
    return native.call(0x15CFA549788D35EF)
end

function natives.THEFEED_FLUSH_QUEUE()
    return native.call(0xA8FDB297A8D25FBA)
end

function natives.THEFEED_REMOVE_ITEM(intnotificationId)
    return native.call(0xBE4390CB40B3E627, intnotificationId)
end

function natives.THEFEED_FORCE_RENDER_ON()
    return native.call(0xA13C11E1B5C06BFC)
end

function natives.THEFEED_FORCE_RENDER_OFF()
    return native.call(0x583049884A2EEE3C)
end

function natives.THEFEED_PAUSE()
    return native.call(0xFDB423997FA30340)
end

function natives.THEFEED_RESUME()
    return native.call(0xE1CD1E48E025E661)
end

function natives.THEFEED_IS_PAUSED()
    return native.call(0xA9CBFD40B3FA3010)
end

function natives.THEFEED_SPS_EXTEND_WIDESCREEN_ON()
    return native.call(0xD4438C0564490E63)
end

function natives.THEFEED_SPS_EXTEND_WIDESCREEN_OFF()
    return native.call(0xB695E2CD0A2DA9EE)
end

function natives.THEFEED_GET_FIRST_VISIBLE_DELETE_REMAINING()
    return native.call(0x82352748437638CA)
end

function natives.THEFEED_COMMENT_TELEPORT_POOL_ON()
    return native.call(0x56C8B608CFD49854)
end

function natives.THEFEED_COMMENT_TELEPORT_POOL_OFF()
    return native.call(0xADED7F5748ACAFE6)
end

function natives.THEFEED_SET_NEXT_POST_BACKGROUND_COLOR(inthudColorIndex)
    return native.call(0x92F0DA1E27DB96DC, inthudColorIndex)
end

function natives.THEFEED_SET_ANIMPOSTFX_COLOR(intred, intgreen, intblue, intalpha)
    return native.call(0x17430B918701C342, intred, intgreen, intblue, intalpha)
end

function natives.THEFEED_SET_ANIMPOSTFX_COUNT(intcount)
    return native.call(0x17AD8C9706BDD88A, intcount)
end

function natives.THEFEED_SET_ANIMPOSTFX_SOUND(BOOLtoggle)
    return native.call(0x4A0C7C9BB10ABB36, BOOLtoggle)
end

function natives.THEFEED_RESET_ALL_PARAMETERS()
    return native.call(0xFDD85225B2DEA55E)
end

function natives.THEFEED_FREEZE_NEXT_POST()
    return native.call(0xFDEC055AB549E328)
end

function natives.THEFEED_CLEAR_FROZEN_POST()
    return native.call(0x80FE4F3AB4E1B62A)
end

function natives.THEFEED_SET_FLUSH_ANIMPOSTFX(BOOLp0)
    return native.call(0xBAE4F9B97CD43B30, BOOLp0)
end

function natives.THEFEED_UPDATE_ITEM_TEXTURE(constchartxdString1, constchartxnString1, constchartxdString2, constchartxnString2)
    return native.call(0x317EBA71D7543F52, constchartxdString1, constchartxnString1, constchartxdString2, constchartxnString2)
end

function natives.BEGIN_TEXT_COMMAND_THEFEED_POST(constchartext)
    return native.call(0x202709F4C58A0424, constchartext)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_STATS(constcharstatTitle, inticonEnum, BOOLstepVal, intbarValue, BOOLisImportant, constcharpictureTextureDict, constcharpictureTextureName)
    return native.call(0x2B7E9A4EAAA93C89, constcharstatTitle, inticonEnum, BOOLstepVal, intbarValue, BOOLisImportant, constcharpictureTextureDict, constcharpictureTextureName)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_MESSAGETEXT(constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject)
    return native.call(0x1CCD9A37359072CF, constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_MESSAGETEXT_GXT_ENTRY(constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject)
    return native.call(0xC6F580E4C94926AC, constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_MESSAGETEXT_TU(constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject, floatduration)
    return native.call(0x1E6611149DB3DB6B, constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject, floatduration)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_MESSAGETEXT_WITH_CREW_TAG(constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject, floatduration, constcharclanTag)
    return native.call(0x5CBF7BADE20DB93E, constchartxdName, constchartextureName, BOOLflash, inticonType, constcharsender, constcharsubject, floatduration, constcharclanTag)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_MESSAGETEXT_WITH_CREW_TAG_AND_ADDITIONAL_ICON(constchartxdName, constchartextureName, BOOLflash, inticonType1, constcharsender, constcharsubject, floatduration, constcharclanTag, inticonType2, intp9)
    return native.call(0x531B84E7DA981FB6, constchartxdName, constchartextureName, BOOLflash, inticonType1, constcharsender, constcharsubject, floatduration, constcharclanTag, inticonType2, intp9)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_TICKER(BOOLblink, BOOLp1)
    return native.call(0x2ED7843F8F801023, BOOLblink, BOOLp1)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_TICKER_FORCED(BOOLblink, BOOLp1)
    return native.call(0x44FA03975424A0EE, BOOLblink, BOOLp1)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_TICKER_WITH_TOKENS(BOOLblink, BOOLp1)
    return native.call(0x378E809BF61EC840, BOOLblink, BOOLp1)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_AWARD(constchartextureDict, constchartextureName, intrpBonus, intcolorOverlay, constchartitleLabel)
    return native.call(0xAA295B6F28BD587D, constchartextureDict, constchartextureName, intrpBonus, intcolorOverlay, constchartitleLabel)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_CREWTAG(BOOLp0, BOOLp1, intp2, intp3, BOOLisLeader, BOOLunk0, intclanDesc, intR, intG, intB)
    return native.call(0x97C9E4E7024A8F2C, BOOLp0, BOOLp1, intp2, intp3, BOOLisLeader, BOOLunk0, intclanDesc, intR, intG, intB)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_CREWTAG_WITH_GAME_NAME(BOOLp0, BOOLp1, intp2, intp3, BOOLisLeader, BOOLunk0, intclanDesc, constcharplayerName, intR, intG, intB)
    return native.call(0x137BC35589E34E1E, BOOLp0, BOOLp1, intp2, intp3, BOOLisLeader, BOOLunk0, intclanDesc, constcharplayerName, intR, intG, intB)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_UNLOCK(Anyp0, Anyp1, Anyp2)
    return native.call(0x33EE12743CCD6343, Anyp0, Anyp1, Anyp2)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_UNLOCK_TU(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xC8F3AAF93D0600BF, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_UNLOCK_TU_WITH_COLOR(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x7AE0589093A2E088, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_MPTICKER(BOOLblink, BOOLp1)
    return native.call(0xF020C96915705B3A, BOOLblink, BOOLp1)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_CREW_RANKUP(constcharp0, constcharp1, constcharp2, BOOLp3, BOOLp4)
    return native.call(0x8EFCCF6EC66D85E4, constcharp0, constcharp1, constcharp2, BOOLp3, BOOLp4)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_VERSUS_TU(constchartxdName1, constchartextureName1, intcount1, constchartxdName2, constchartextureName2, intcount2, inthudColor1, inthudColor2)
    return native.call(0xB6871B0555B02996, constchartxdName1, constchartextureName1, intcount1, constchartxdName2, constchartextureName2, intcount2, inthudColor1, inthudColor2)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_REPLAY_ICON(inttype, intimage, constchartext)
    return native.call(0xD202B92CBF1D816F, inttype, intimage, constchartext)
end

function natives.END_TEXT_COMMAND_THEFEED_POST_REPLAY_INPUT(inttype, constcharbutton, constchartext)
    return native.call(0xDD6CB2CCE7C2735C, inttype, constcharbutton, constchartext)
end

function natives.BEGIN_TEXT_COMMAND_PRINT(constcharGxtEntry)
    return native.call(0xB87A37EEB7FAA67D, constcharGxtEntry)
end

function natives.END_TEXT_COMMAND_PRINT(intduration, BOOLdrawImmediately)
    return native.call(0x9D77056A530643F6, intduration, BOOLdrawImmediately)
end

function natives.BEGIN_TEXT_COMMAND_IS_MESSAGE_DISPLAYED(constchartext)
    return native.call(0x853648FD1063A213, constchartext)
end

function natives.END_TEXT_COMMAND_IS_MESSAGE_DISPLAYED()
    return native.call(0x8A9BA1AB3E237613)
end

function natives.BEGIN_TEXT_COMMAND_DISPLAY_TEXT(constchartext)
    return native.call(0x25FBB336DF1804CB, constchartext)
end

function natives.END_TEXT_COMMAND_DISPLAY_TEXT(floatx, floaty, intp2)
    return native.call(0xCD015E5BB0D96A57, floatx, floaty, intp2)
end

function natives.BEGIN_TEXT_COMMAND_GET_WIDTH(constchartext)
    return native.call(0x54CE8AC98E120CAB, constchartext)
end

function natives.END_TEXT_COMMAND_GET_WIDTH(BOOLp0)
    return native.call(0x85F061DA64ED2F67, BOOLp0)
end

function natives.BEGIN_TEXT_COMMAND_LINE_COUNT(constcharentry)
    return native.call(0x521FB041D93DD0E4, constcharentry)
end

function natives.END_TEXT_COMMAND_LINE_COUNT(floatx, floaty)
    return native.call(0x9040DFB09BE75706, floatx, floaty)
end

function natives.BEGIN_TEXT_COMMAND_DISPLAY_HELP(constcharinputType)
    return native.call(0x8509B634FBE7DA11, constcharinputType)
end

function natives.END_TEXT_COMMAND_DISPLAY_HELP(intp0, BOOLloop, BOOLbeep, intshape)
    return native.call(0x238FFE5C7B0498A6, intp0, BOOLloop, BOOLbeep, intshape)
end

function natives.BEGIN_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(constcharlabelName)
    return native.call(0x0A24DA3A41B718F5, constcharlabelName)
end

function natives.END_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(intp0)
    return native.call(0x10BDDBFC529428DD, intp0)
end

function natives.BEGIN_TEXT_COMMAND_SET_BLIP_NAME(constchartextLabel)
    return native.call(0xF9113A30DE5C6670, constchartextLabel)
end

function natives.END_TEXT_COMMAND_SET_BLIP_NAME(Blipblip)
    return native.call(0xBC38B49BCB83BC9B, Blipblip)
end

function natives.BEGIN_TEXT_COMMAND_OBJECTIVE(constcharp0)
    return native.call(0x23D69E0465570028, constcharp0)
end

function natives.END_TEXT_COMMAND_OBJECTIVE(BOOLp0)
    return native.call(0xCFDBDF5AE59BA0F4, BOOLp0)
end

function natives.BEGIN_TEXT_COMMAND_CLEAR_PRINT(constchartext)
    return native.call(0xE124FA80A759019C, constchartext)
end

function natives.END_TEXT_COMMAND_CLEAR_PRINT()
    return native.call(0xFCC75460ABA29378)
end

function natives.BEGIN_TEXT_COMMAND_OVERRIDE_BUTTON_TEXT(constchargxtEntry)
    return native.call(0x8F9EE5687F8EECCD, constchargxtEntry)
end

function natives.END_TEXT_COMMAND_OVERRIDE_BUTTON_TEXT(intp0)
    return native.call(0xA86911979638106F, intp0)
end

function natives.ADD_TEXT_COMPONENT_INTEGER(intvalue)
    return native.call(0x03B504CF259931BC, intvalue)
end

function natives.ADD_TEXT_COMPONENT_FLOAT(floatvalue, intdecimalPlaces)
    return native.call(0xE7DCB5B874BCD96E, floatvalue, intdecimalPlaces)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_TEXT_LABEL(constcharlabelName)
    return native.call(0xC63CD5D2920ACBE7, constcharlabelName)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_TEXT_LABEL_HASH_KEY(HashgxtEntryHash)
    return native.call(0x17299B63C7683A2B, HashgxtEntryHash)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_BLIP_NAME(Blipblip)
    return native.call(0x80EAD8E2E1D5D52E, Blipblip)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_PLAYER_NAME(constchartext)
    return native.call(0x6C188BE134E074AA, constchartext)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_TIME(inttimestamp, intflags)
    return native.call(0x1115F16B8AB9E8BF, inttimestamp, intflags)
end

function natives.ADD_TEXT_COMPONENT_FORMATTED_INTEGER(intvalue, BOOLcommaSeparated)
    return native.call(0x0E4C749FF9DE9CC4, intvalue, BOOLcommaSeparated)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_PHONE_NUMBER(constcharp0, intp1)
    return native.call(0x761B77454205A61D, constcharp0, intp1)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_WEBSITE(constcharwebsite)
    return native.call(0x94CF4AC034C9C986, constcharwebsite)
end

function natives.ADD_TEXT_COMPONENT_SUBSTRING_KEYBOARD_DISPLAY(constcharstring)
    return native.call(0x5F68520888E69014, constcharstring)
end

function natives.SET_COLOUR_OF_NEXT_TEXT_COMPONENT(inthudColor)
    return native.call(0x39BBF623FC803EAC, inthudColor)
end

function natives.GET_TEXT_SUBSTRING(constchartext, intposition, intlength)
    return native.call(0x169BD9382084C8C0, constchartext, intposition, intlength)
end

function natives.GET_TEXT_SUBSTRING_SAFE(constchartext, intposition, intlength, intmaxLength)
    return native.call(0xB2798643312205C5, constchartext, intposition, intlength, intmaxLength)
end

function natives.GET_TEXT_SUBSTRING_SLICE(constchartext, intstartPosition, intendPosition)
    return native.call(0xCE94AEBA5D82908A, constchartext, intstartPosition, intendPosition)
end

function natives.GET_LABEL_TEXT(constcharlabelName)
    return native.call(0x7B5280EBA9840C72, constcharlabelName)
end

function natives.CLEAR_PRINTS()
    return native.call(0xCC33FA791322B9D9)
end

function natives.CLEAR_BRIEF()
    return native.call(0x9D292F73ADBD9313)
end

function natives.CLEAR_ALL_HELP_MESSAGES()
    return native.call(0x6178F68A87A4D3A0)
end

function natives.CLEAR_THIS_PRINT(constcharp0)
    return native.call(0xCF708001E1E536DD, constcharp0)
end

function natives.CLEAR_SMALL_PRINTS()
    return native.call(0x2CEA2839313C09AC)
end

function natives.DOES_TEXT_BLOCK_EXIST(constchargxt)
    return native.call(0x1C7302E725259789, constchargxt)
end

function natives.REQUEST_ADDITIONAL_TEXT(constchargxt, intslot)
    return native.call(0x71A78003C8E71424, constchargxt, intslot)
end

function natives.REQUEST_ADDITIONAL_TEXT_FOR_DLC(constchargxt, intslot)
    return native.call(0x6009F9F1AE90D8A6, constchargxt, intslot)
end

function natives.HAS_ADDITIONAL_TEXT_LOADED(intslot)
    return native.call(0x02245FE4BED318B8, intslot)
end

function natives.CLEAR_ADDITIONAL_TEXT(intp0, BOOLp1)
    return native.call(0x2A179DF17CCF04CD, intp0, BOOLp1)
end

function natives.IS_STREAMING_ADDITIONAL_TEXT(intp0)
    return native.call(0x8B6817B71B85EBF0, intp0)
end

function natives.HAS_THIS_ADDITIONAL_TEXT_LOADED(constchargxt, intslot)
    return native.call(0xADBF060E2B30C5BC, constchargxt, intslot)
end

function natives.IS_MESSAGE_BEING_DISPLAYED()
    return native.call(0x7984C03AA5CC2F41)
end

function natives.DOES_TEXT_LABEL_EXIST(constchargxt)
    return native.call(0xAC09CA973C564252, constchargxt)
end

function natives._0x98C3CF913D895111(constcharstring, intlength)
    return native.call(0x98C3CF913D895111, constcharstring, intlength)
end

function natives.GET_LENGTH_OF_STRING_WITH_THIS_TEXT_LABEL(constchargxt)
    return native.call(0x801BD273D3A23F74, constchargxt)
end

function natives.GET_LENGTH_OF_LITERAL_STRING(constcharstring)
    return native.call(0xF030907CCBB8A9FD, constcharstring)
end

function natives.GET_LENGTH_OF_LITERAL_STRING_IN_BYTES(constcharstring)
    return native.call(0x43E4111189E54F0E, constcharstring)
end

function natives.GET_STREET_NAME_FROM_HASH_KEY(Hashhash)
    return native.call(0xD0EF8A959B8A4CB9, Hashhash)
end

function natives.IS_HUD_PREFERENCE_SWITCHED_ON()
    return native.call(0x1930DFA731813EC4)
end

function natives.IS_RADAR_PREFERENCE_SWITCHED_ON()
    return native.call(0x9EB6522EA68F22FE)
end

function natives.IS_SUBTITLE_PREFERENCE_SWITCHED_ON()
    return native.call(0xAD6DACA4BA53E0A4)
end

function natives.DISPLAY_HUD(BOOLtoggle)
    return native.call(0xA6294919E56FF02A, BOOLtoggle)
end

function natives.DISPLAY_HUD_WHEN_DEAD_THIS_FRAME()
    return native.call(0x7669F9E39DC17063)
end

function natives.DISPLAY_HUD_WHEN_PAUSED_THIS_FRAME()
    return native.call(0x402F9ED62087E898)
end

function natives.DISPLAY_RADAR(BOOLtoggle)
    return native.call(0xA0EBB943C300E693, BOOLtoggle)
end

function natives._0xCD74233600C4EA6B(BOOLtoggle)
    return native.call(0xCD74233600C4EA6B, BOOLtoggle)
end

function natives._0xC2D2AD9EAAE265B8()
    return native.call(0xC2D2AD9EAAE265B8)
end

function natives.IS_HUD_HIDDEN()
    return native.call(0xA86478C6958735C5)
end

function natives.IS_RADAR_HIDDEN()
    return native.call(0x157F93B036700462)
end

function natives.IS_MINIMAP_RENDERING()
    return native.call(0xAF754F20EB5CD51A)
end

function natives._0x0C698D8F099174C7(Anyp0)
    return native.call(0x0C698D8F099174C7, Anyp0)
end

function natives._0xE4C3B169876D33D7(Anyp0)
    return native.call(0xE4C3B169876D33D7, Anyp0)
end

function natives._0xEB81A3DADD503187()
    return native.call(0xEB81A3DADD503187)
end

function natives.SET_BLIP_ROUTE(Blipblip, BOOLenabled)
    return native.call(0x4F7D8A9BFB0B43E9, Blipblip, BOOLenabled)
end

function natives.CLEAR_ALL_BLIP_ROUTES()
    return native.call(0xD12882D3FF82BF11)
end

function natives.SET_BLIP_ROUTE_COLOUR(Blipblip, intcolour)
    return native.call(0x837155CD2F63DA09, Blipblip, intcolour)
end

function natives.SET_FORCE_BLIP_ROUTES_ON_FOOT(BOOLtoggle)
    return native.call(0x2790F4B17D098E26, BOOLtoggle)
end

function natives.SET_USE_WAYPOINT_AS_DESTINATION(BOOLtoggle)
    return native.call(0x6CDD58146A436083, BOOLtoggle)
end

function natives._0xD1942374085C8469(BOOLdisabled)
    return native.call(0xD1942374085C8469, BOOLdisabled)
end

function natives.ADD_NEXT_MESSAGE_TO_PREVIOUS_BRIEFS(BOOLp0)
    return native.call(0x60296AF4BA14ABC5, BOOLp0)
end

function natives._0x57D760D55F54E071(intp0)
    return native.call(0x57D760D55F54E071, intp0)
end

function natives.SET_RADAR_ZOOM_PRECISE(floatzoom)
    return native.call(0xBD12C5EEE184C337, floatzoom)
end

function natives.SET_RADAR_ZOOM(intzoomLevel)
    return native.call(0x096EF57A0C999BBA, intzoomLevel)
end

function natives.SET_RADAR_ZOOM_TO_BLIP(Blipblip, floatzoom)
    return native.call(0xF98E4B3E56AFC7B1, Blipblip, floatzoom)
end

function natives.SET_RADAR_ZOOM_TO_DISTANCE(floatzoom)
    return native.call(0xCB7CC0D58405AD41, floatzoom)
end

function natives._0xD2049635DEB9C375()
    return native.call(0xD2049635DEB9C375)
end

function natives.GET_HUD_COLOUR(inthudColorIndex, intr, intg, intb, inta)
    return native.call(0x7C9C91AB74A0360F, inthudColorIndex, intr, intg, intb, inta)
end

function natives.SET_SCRIPT_VARIABLE_HUD_COLOUR(intr, intg, intb, inta)
    return native.call(0xD68A5FF8A3A89874, intr, intg, intb, inta)
end

function natives.SET_SCRIPT_VARIABLE_2_HUD_COLOUR(intr, intg, intb, inta)
    return native.call(0x16A304E6CB2BFAB9, intr, intg, intb, inta)
end

function natives.REPLACE_HUD_COLOUR(inthudColorIndex, inthudColorIndex2)
    return native.call(0x1CCC708F0F850613, inthudColorIndex, inthudColorIndex2)
end

function natives.REPLACE_HUD_COLOUR_WITH_RGBA(inthudColorIndex, intr, intg, intb, inta)
    return native.call(0xF314CF4F0211894E, inthudColorIndex, intr, intg, intb, inta)
end

function natives.SET_ABILITY_BAR_VISIBILITY_IN_MULTIPLAYER(BOOLvisible)
    return native.call(0x1DFEDD15019315A9, BOOLvisible)
end

function natives.SET_ALLOW_ABILITY_BAR_IN_MULTIPLAYER(BOOLtoggle)
    return native.call(0x889329C80FE5963C, BOOLtoggle)
end

function natives.FLASH_ABILITY_BAR(intmillisecondsToFlash)
    return native.call(0x02CFBA0C9E9275CE, intmillisecondsToFlash)
end

function natives.SET_ABILITY_BAR_VALUE(floatp0, floatp1)
    return native.call(0x9969599CCFF5D85E, floatp0, floatp1)
end

function natives.FLASH_WANTED_DISPLAY(BOOLp0)
    return native.call(0xA18AFB39081B6A1F, BOOLp0)
end

function natives._0xBA8D65C1C65702E5(BOOLtoggle)
    return native.call(0xBA8D65C1C65702E5, BOOLtoggle)
end

function natives.SET_CURRENT_CHARACTER_HUD_COLOR(inthudColorId)
    return native.call(0x2ACCB195F3CCD9DE, inthudColorId)
end

function natives.GET_RENDERED_CHARACTER_HEIGHT(floatsize, intfont)
    return native.call(0xDB88A37483346780, floatsize, intfont)
end

function natives.SET_TEXT_SCALE(floatscale, floatsize)
    return native.call(0x07C837F9A01C34C9, floatscale, floatsize)
end

function natives.SET_TEXT_COLOUR(intred, intgreen, intblue, intalpha)
    return native.call(0xBE6B23FFA53FB442, intred, intgreen, intblue, intalpha)
end

function natives.SET_TEXT_CENTRE(BOOLalign)
    return native.call(0xC02F4DBFB51D988B, BOOLalign)
end

function natives.SET_TEXT_RIGHT_JUSTIFY(BOOLtoggle)
    return native.call(0x6B3C4650BC8BEE47, BOOLtoggle)
end

function natives.SET_TEXT_JUSTIFICATION(intjustifyType)
    return native.call(0x4E096588B13FFECA, intjustifyType)
end

function natives.SET_TEXT_WRAP(floatstart, floatend)
    return native.call(0x63145D9C883A1A70, floatstart, floatend)
end

function natives.SET_TEXT_LEADING(intp0)
    return native.call(0xA50ABC31E3CDFAFF, intp0)
end

function natives.SET_TEXT_PROPORTIONAL(BOOLp0)
    return native.call(0x038C1F517D7FDCF8, BOOLp0)
end

function natives.SET_TEXT_FONT(intfontType)
    return native.call(0x66E0276CC5F6B9DA, intfontType)
end

function natives.SET_TEXT_DROP_SHADOW()
    return native.call(0x1CA3E9EAC9D93E5E)
end

function natives.SET_TEXT_DROPSHADOW(intdistance, intr, intg, intb, inta)
    return native.call(0x465C84BC39F1C351, intdistance, intr, intg, intb, inta)
end

function natives.SET_TEXT_OUTLINE()
    return native.call(0x2513DFB0FB8400FE)
end

function natives.SET_TEXT_EDGE(intp0, intr, intg, intb, inta)
    return native.call(0x441603240D202FA6, intp0, intr, intg, intb, inta)
end

function natives.SET_TEXT_RENDER_ID(intrenderId)
    return native.call(0x5F15302936E07111, intrenderId)
end

function natives.GET_DEFAULT_SCRIPT_RENDERTARGET_RENDER_ID()
    return native.call(0x52F0982D7FD156B6)
end

function natives.REGISTER_NAMED_RENDERTARGET(constcharname, BOOLp1)
    return native.call(0x57D9C12635E25CE3, constcharname, BOOLp1)
end

function natives.IS_NAMED_RENDERTARGET_REGISTERED(constcharname)
    return native.call(0x78DCDC15C9F116B4, constcharname)
end

function natives.RELEASE_NAMED_RENDERTARGET(constcharname)
    return native.call(0xE9F6FFE837354DD4, constcharname)
end

function natives.LINK_NAMED_RENDERTARGET(HashmodelHash)
    return native.call(0xF6C09E276AEB3F2D, HashmodelHash)
end

function natives.GET_NAMED_RENDERTARGET_RENDER_ID(constcharname)
    return native.call(0x1A6478B61C6BDC3B, constcharname)
end

function natives.IS_NAMED_RENDERTARGET_LINKED(HashmodelHash)
    return native.call(0x113750538FA31298, HashmodelHash)
end

function natives.CLEAR_HELP(BOOLtoggle)
    return native.call(0x8DFCED7A656F8802, BOOLtoggle)
end

function natives.IS_HELP_MESSAGE_ON_SCREEN()
    return native.call(0xDAD37F45428801AE)
end

function natives._0x214CD562A939246A()
    return native.call(0x214CD562A939246A)
end

function natives.IS_HELP_MESSAGE_BEING_DISPLAYED()
    return native.call(0x4D79439A6B55AC67)
end

function natives.IS_HELP_MESSAGE_FADING_OUT()
    return native.call(0x327EDEEEAC55C369)
end

function natives.SET_HELP_MESSAGE_TEXT_STYLE(intstyle, inthudColor, intalpha, intp3, intp4)
    return native.call(0xB9C362BABECDDC7A, intstyle, inthudColor, intalpha, intp3, intp4)
end

function natives.GET_STANDARD_BLIP_ENUM_ID()
    return native.call(0x4A9923385BDB9DAD)
end

function natives.GET_WAYPOINT_BLIP_ENUM_ID()
    return native.call(0x186E5D252FA50E7D)
end

function natives.GET_NUMBER_OF_ACTIVE_BLIPS()
    return native.call(0x9A3FF3DE163034E8)
end

function natives.GET_NEXT_BLIP_INFO_ID(intblipSprite)
    return native.call(0x14F96AA50D6FBEA7, intblipSprite)
end

function natives.GET_FIRST_BLIP_INFO_ID(intblipSprite)
    return native.call(0x1BEDE233E6CD2A1F, intblipSprite)
end

function natives.GET_CLOSEST_BLIP_OF_TYPE(intblipSprite)
    return native.call(0xD484BF71050CA1EE, intblipSprite)
end

function natives.GET_BLIP_INFO_ID_COORD(Blipblip)
    return native.call(0xFA7C7F0AADF25D09, Blipblip)
end

function natives.GET_BLIP_INFO_ID_DISPLAY(Blipblip)
    return native.call(0x1E314167F701DC3B, Blipblip)
end

function natives.GET_BLIP_INFO_ID_TYPE(Blipblip)
    return native.call(0xBE9B0959FFD0779B, Blipblip)
end

function natives.GET_BLIP_INFO_ID_ENTITY_INDEX(Blipblip)
    return native.call(0x4BA4E2553AFEDC2C, Blipblip)
end

function natives.GET_BLIP_INFO_ID_PICKUP_INDEX(Blipblip)
    return native.call(0x9B6786E4C03DD382, Blipblip)
end

function natives.GET_BLIP_FROM_ENTITY(Entityentity)
    return native.call(0xBC8DBDCA2436F7E8, Entityentity)
end

function natives.ADD_BLIP_FOR_RADIUS(floatposX, floatposY, floatposZ, floatradius)
    return native.call(0x46818D79B1F7499A, floatposX, floatposY, floatposZ, floatradius)
end

function natives.ADD_BLIP_FOR_AREA(floatx, floaty, floatz, floatwidth, floatheight)
    return native.call(0xCE5D0E5E315DB238, floatx, floaty, floatz, floatwidth, floatheight)
end

function natives.ADD_BLIP_FOR_ENTITY(Entityentity)
    return native.call(0x5CDE92C702A8FCE7, Entityentity)
end

function natives.ADD_BLIP_FOR_PICKUP(Pickuppickup)
    return native.call(0xBE339365C863BD36, Pickuppickup)
end

function natives.ADD_BLIP_FOR_COORD(floatx, floaty, floatz)
    return native.call(0x5A039BB0BCA604B6, floatx, floaty, floatz)
end

function natives.TRIGGER_SONAR_BLIP(floatposX, floatposY, floatposZ, floatradius, intp4)
    return native.call(0x72DD432F3CDFC0EE, floatposX, floatposY, floatposZ, floatradius, intp4)
end

function natives.ALLOW_SONAR_BLIPS(BOOLtoggle)
    return native.call(0x60734CC207C9833C, BOOLtoggle)
end

function natives.SET_BLIP_COORDS(Blipblip, floatposX, floatposY, floatposZ)
    return native.call(0xAE2AF67E9D9AF65D, Blipblip, floatposX, floatposY, floatposZ)
end

function natives.GET_BLIP_COORDS(Blipblip)
    return native.call(0x586AFE3FF72D996E, Blipblip)
end

function natives.SET_BLIP_SPRITE(Blipblip, intspriteId)
    return native.call(0xDF735600A4696DAF, Blipblip, intspriteId)
end

function natives.GET_BLIP_SPRITE(Blipblip)
    return native.call(0x1FC877464A04FC4F, Blipblip)
end

function natives._0x9FCB3CBFB3EAD69A(intp0, floatp1)
    return native.call(0x9FCB3CBFB3EAD69A, intp0, floatp1)
end

function natives._0xB7B873520C84C118()
    return native.call(0xB7B873520C84C118)
end

function natives.SET_BLIP_NAME_FROM_TEXT_FILE(Blipblip, constchargxtEntry)
    return native.call(0xEAA0FFE120D92784, Blipblip, constchargxtEntry)
end

function natives.SET_BLIP_NAME_TO_PLAYER_NAME(Blipblip, Playerplayer)
    return native.call(0x127DE7B20C60A6A3, Blipblip, Playerplayer)
end

function natives.SET_BLIP_ALPHA(Blipblip, intalpha)
    return native.call(0x45FF974EEE1C8734, Blipblip, intalpha)
end

function natives.GET_BLIP_ALPHA(Blipblip)
    return native.call(0x970F608F0EE6C885, Blipblip)
end

function natives.SET_BLIP_FADE(Blipblip, intopacity, intduration)
    return native.call(0x2AEE8F8390D2298C, Blipblip, intopacity, intduration)
end

function natives.GET_BLIP_FADE_STATUS(Blipblip)
    return native.call(0x2C173AE2BDB9385E, Blipblip)
end

function natives.SET_BLIP_ROTATION(Blipblip, introtation)
    return native.call(0xF87683CDF73C3F6E, Blipblip, introtation)
end

function natives.SET_BLIP_SQUARED_ROTATION(Blipblip, floatheading)
    return native.call(0xA8B6AFDAC320AC87, Blipblip, floatheading)
end

function natives.GET_BLIP_ROTATION(Blipblip)
    return native.call(0x003E92BA477F9D7F, Blipblip)
end

function natives.SET_BLIP_FLASH_TIMER(Blipblip, intduration)
    return native.call(0xD3CD6FD297AE87CC, Blipblip, intduration)
end

function natives.SET_BLIP_FLASH_INTERVAL(Blipblip, Anyp1)
    return native.call(0xAA51DB313C010A7E, Blipblip, Anyp1)
end

function natives.SET_BLIP_COLOUR(Blipblip, intcolor)
    return native.call(0x03D7FB09E75D6B7E, Blipblip, intcolor)
end

function natives.SET_BLIP_SECONDARY_COLOUR(Blipblip, intr, intg, intb)
    return native.call(0x14892474891E09EB, Blipblip, intr, intg, intb)
end

function natives.GET_BLIP_COLOUR(Blipblip)
    return native.call(0xDF729E8D20CF7327, Blipblip)
end

function natives.GET_BLIP_HUD_COLOUR(Blipblip)
    return native.call(0x729B5F1EFBC0AAEE, Blipblip)
end

function natives.IS_BLIP_SHORT_RANGE(Blipblip)
    return native.call(0xDA5F8727EB75B926, Blipblip)
end

function natives.IS_BLIP_ON_MINIMAP(Blipblip)
    return native.call(0xE41CA53051197A27, Blipblip)
end

function natives.DOES_BLIP_HAVE_GPS_ROUTE(Blipblip)
    return native.call(0xDD2238F57B977751, Blipblip)
end

function natives.SET_BLIP_HIDDEN_ON_LEGEND(Blipblip, BOOLtoggle)
    return native.call(0x54318C915D27E4CE, Blipblip, BOOLtoggle)
end

function natives.SET_BLIP_HIGH_DETAIL(Blipblip, BOOLtoggle)
    return native.call(0xE2590BC29220CEBB, Blipblip, BOOLtoggle)
end

function natives.SET_BLIP_AS_MISSION_CREATOR_BLIP(Blipblip, BOOLtoggle)
    return native.call(0x24AC0137444F9FD5, Blipblip, BOOLtoggle)
end

function natives.IS_MISSION_CREATOR_BLIP(Blipblip)
    return native.call(0x26F49BF3381D933D, Blipblip)
end

function natives.GET_NEW_SELECTED_MISSION_CREATOR_BLIP()
    return native.call(0x5C90988E7C8E1AF4)
end

function natives.IS_HOVERING_OVER_MISSION_CREATOR_BLIP()
    return native.call(0x4167EFE0527D706E)
end

function natives.SHOW_START_MISSION_INSTRUCTIONAL_BUTTON(BOOLtoggle)
    return native.call(0xF1A6C18B35BCADE6, BOOLtoggle)
end

function natives.SHOW_CONTACT_INSTRUCTIONAL_BUTTON(BOOLtoggle)
    return native.call(0xC772A904CDE1186F, BOOLtoggle)
end

function natives._0x2916A928514C9827()
    return native.call(0x2916A928514C9827)
end

function natives._0xB552929B85FC27EC(Anyp0, Anyp1)
    return native.call(0xB552929B85FC27EC, Anyp0, Anyp1)
end

function natives.SET_BLIP_FLASHES(Blipblip, BOOLtoggle)
    return native.call(0xB14552383D39CE3E, Blipblip, BOOLtoggle)
end

function natives.SET_BLIP_FLASHES_ALTERNATE(Blipblip, BOOLtoggle)
    return native.call(0x2E8D9498C56DD0D1, Blipblip, BOOLtoggle)
end

function natives.IS_BLIP_FLASHING(Blipblip)
    return native.call(0xA5E41FD83AD6CEF0, Blipblip)
end

function natives.SET_BLIP_AS_SHORT_RANGE(Blipblip, BOOLtoggle)
    return native.call(0xBE8BE4FE60E27B72, Blipblip, BOOLtoggle)
end

function natives.SET_BLIP_SCALE(Blipblip, floatscale)
    return native.call(0xD38744167B2FA257, Blipblip, floatscale)
end

function natives.SET_BLIP_SCALE_TRANSFORMATION(Blipblip, floatxScale, floatyScale)
    return native.call(0xCD6524439909C979, Blipblip, floatxScale, floatyScale)
end

function natives.SET_BLIP_PRIORITY(Blipblip, intpriority)
    return native.call(0xAE9FC9EF6A9FAC79, Blipblip, intpriority)
end

function natives.SET_BLIP_DISPLAY(Blipblip, intdisplayId)
    return native.call(0x9029B2F3DA924928, Blipblip, intdisplayId)
end

function natives.SET_BLIP_CATEGORY(Blipblip, intindex)
    return native.call(0x234CDD44D996FD9A, Blipblip, intindex)
end

function natives.REMOVE_BLIP(Blipblip)
    return native.call(0x86A652570E5F25DD, Blipblip)
end

function natives.SET_BLIP_AS_FRIENDLY(Blipblip, BOOLtoggle)
    return native.call(0x6F6F290102C02AB4, Blipblip, BOOLtoggle)
end

function natives.PULSE_BLIP(Blipblip)
    return native.call(0x742D6FD43115AF73, Blipblip)
end

function natives.SHOW_NUMBER_ON_BLIP(Blipblip, intnumber)
    return native.call(0xA3C0B359DCB848B6, Blipblip, intnumber)
end

function natives.HIDE_NUMBER_ON_BLIP(Blipblip)
    return native.call(0x532CFF637EF80148, Blipblip)
end

function natives.SHOW_HEIGHT_ON_BLIP(Blipblip, BOOLtoggle)
    return native.call(0x75A16C3DA34F1245, Blipblip, BOOLtoggle)
end

function natives.SHOW_TICK_ON_BLIP(Blipblip, BOOLtoggle)
    return native.call(0x74513EA3E505181E, Blipblip, BOOLtoggle)
end

function natives.SHOW_HEADING_INDICATOR_ON_BLIP(Blipblip, BOOLtoggle)
    return native.call(0x5FBCA48327B914DF, Blipblip, BOOLtoggle)
end

function natives.SHOW_OUTLINE_INDICATOR_ON_BLIP(Blipblip, BOOLtoggle)
    return native.call(0xB81656BC81FE24D1, Blipblip, BOOLtoggle)
end

function natives.SHOW_FRIEND_INDICATOR_ON_BLIP(Blipblip, BOOLtoggle)
    return native.call(0x23C3EB807312F01A, Blipblip, BOOLtoggle)
end

function natives.SHOW_CREW_INDICATOR_ON_BLIP(Blipblip, BOOLtoggle)
    return native.call(0xDCFB5D4DB8BF367E, Blipblip, BOOLtoggle)
end

function natives.SET_BLIP_EXTENDED_HEIGHT_THRESHOLD(Blipblip, BOOLtoggle)
    return native.call(0xC4278F70131BAA6D, Blipblip, BOOLtoggle)
end

function natives._0x4B5B620C9B59ED34(Anyp0, Anyp1)
    return native.call(0x4B5B620C9B59ED34, Anyp0, Anyp1)
end

function natives._0x2C9F302398E13141(Blipblip, Anyp1)
    return native.call(0x2C9F302398E13141, Blipblip, Anyp1)
end

function natives.SET_BLIP_AS_MINIMAL_ON_EDGE(Blipblip, BOOLtoggle)
    return native.call(0x2B6D467DAB714E8D, Blipblip, BOOLtoggle)
end

function natives.SET_RADIUS_BLIP_EDGE(Blipblip, BOOLtoggle)
    return native.call(0x25615540D894B814, Blipblip, BOOLtoggle)
end

function natives.DOES_BLIP_EXIST(Blipblip)
    return native.call(0xA6DB27D19ECBB7DA, Blipblip)
end

function natives.SET_WAYPOINT_OFF()
    return native.call(0xA7E4E2D361C2627F)
end

function natives.DELETE_WAYPOINT()
    return native.call(0xD8E694757BCEA8E9)
end

function natives.REFRESH_WAYPOINT()
    return native.call(0x81FA173F170560D1)
end

function natives.IS_WAYPOINT_ACTIVE()
    return native.call(0x1DD1F58F493F1DA5)
end

function natives.SET_NEW_WAYPOINT(floatx, floaty)
    return native.call(0xFE43368D2AA4F2FC, floatx, floaty)
end

function natives.SET_BLIP_BRIGHT(Blipblip, BOOLtoggle)
    return native.call(0xB203913733F27884, Blipblip, BOOLtoggle)
end

function natives.SET_BLIP_SHOW_CONE(Blipblip, BOOLtoggle, inthudColorIndex)
    return native.call(0x13127EC3665E8EE1, Blipblip, BOOLtoggle, inthudColorIndex)
end

function natives._0xC594B315EDF2D4AF(Pedped)
    return native.call(0xC594B315EDF2D4AF, Pedped)
end

function natives._0xF83D0FEBE75E62C9(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0xF83D0FEBE75E62C9, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives._0x35A3CD97B2C0A6D2(Blipblip)
    return native.call(0x35A3CD97B2C0A6D2, Blipblip)
end

function natives._0x8410C5E0CD847B9D()
    return native.call(0x8410C5E0CD847B9D)
end

function natives.SET_MINIMAP_COMPONENT(intcomponentId, BOOLtoggle, intoverrideColor)
    return native.call(0x75A9A10948D1DEA6, intcomponentId, BOOLtoggle, intoverrideColor)
end

function natives.SET_MINIMAP_SONAR_ENABLED(BOOLtoggle)
    return native.call(0x6B50FC8749632EC1, BOOLtoggle)
end

function natives.SHOW_SIGNIN_UI()
    return native.call(0x60E892BA4F5BDCA4)
end

function natives.GET_MAIN_PLAYER_BLIP_ID()
    return native.call(0xDCD4EC3F419D02FA)
end

function natives._0x41350B4FC28E3941(BOOLp0)
    return native.call(0x41350B4FC28E3941, BOOLp0)
end

function natives.HIDE_LOADING_ON_FADE_THIS_FRAME()
    return native.call(0x4B0311D3CDC4648F)
end

function natives.SET_RADAR_AS_INTERIOR_THIS_FRAME(Hashinterior, floatx, floaty, intz, intzoom)
    return native.call(0x59E727A1C9D3E31A, Hashinterior, floatx, floaty, intz, intzoom)
end

function natives.SET_INTERIOR_ZOOM_LEVEL_INCREASED(BOOLtoggle)
    return native.call(0x504DFE62A1692296, BOOLtoggle)
end

function natives.SET_INTERIOR_ZOOM_LEVEL_DECREASED(BOOLtoggle)
    return native.call(0x7EC8ABA5E74B3D7A, BOOLtoggle)
end

function natives.SET_RADAR_AS_EXTERIOR_THIS_FRAME()
    return native.call(0xE81B7D2A3DAB2D81)
end

function natives.SET_PLAYER_BLIP_POSITION_THIS_FRAME(floatx, floaty)
    return native.call(0x77E2DD177910E1CF, floatx, floaty)
end

function natives._0xA17784FCA9548D15(Anyp0, Anyp1, Anyp2)
    return native.call(0xA17784FCA9548D15, Anyp0, Anyp1, Anyp2)
end

function natives.IS_MINIMAP_IN_INTERIOR()
    return native.call(0x9049FE339D5F6F6F)
end

function natives.HIDE_MINIMAP_EXTERIOR_MAP_THIS_FRAME()
    return native.call(0x5FBAE526203990C9)
end

function natives.HIDE_MINIMAP_INTERIOR_MAP_THIS_FRAME()
    return native.call(0x20FE7FDFEEAD38C0)
end

function natives.SET_TOGGLE_MINIMAP_HEIST_ISLAND(BOOLtoggle)
    return native.call(0x5E1460624D194A38, BOOLtoggle)
end

function natives.DONT_TILT_MINIMAP_THIS_FRAME()
    return native.call(0x6D14BFDC33B34F55)
end

function natives._0x55F5A5F07134DE60()
    return native.call(0x55F5A5F07134DE60)
end

function natives.SET_WIDESCREEN_FORMAT(Anyp0)
    return native.call(0xC3B07BA00A83B0F1, Anyp0)
end

function natives.DISPLAY_AREA_NAME(BOOLtoggle)
    return native.call(0x276B6CE369C33678, BOOLtoggle)
end

function natives.DISPLAY_CASH(BOOLtoggle)
    return native.call(0x96DEC8D5430208B7, BOOLtoggle)
end

function natives.USE_FAKE_MP_CASH(BOOLtoggle)
    return native.call(0x170F541E1CADD1DE, BOOLtoggle)
end

function natives.CHANGE_FAKE_MP_CASH(intcash, intbank)
    return native.call(0x0772DF77852C2E30, intcash, intbank)
end

function natives.DISPLAY_AMMO_THIS_FRAME(BOOLdisplay)
    return native.call(0xA5E78BA2B1331C55, BOOLdisplay)
end

function natives.DISPLAY_SNIPER_SCOPE_THIS_FRAME()
    return native.call(0x73115226F4814E62)
end

function natives.HIDE_HUD_AND_RADAR_THIS_FRAME()
    return native.call(0x719FF505F097FD20)
end

function natives._0xE67C6DFD386EA5E7(BOOLp0)
    return native.call(0xE67C6DFD386EA5E7, BOOLp0)
end

function natives.SET_MULTIPLAYER_WALLET_CASH()
    return native.call(0xC2D15BEF167E27BC)
end

function natives.REMOVE_MULTIPLAYER_WALLET_CASH()
    return native.call(0x95CF81BD06EE1887)
end

function natives.SET_MULTIPLAYER_BANK_CASH()
    return native.call(0xDD21B55DF695CD0A)
end

function natives.REMOVE_MULTIPLAYER_BANK_CASH()
    return native.call(0xC7C6789AA1CFEDD0)
end

function natives.SET_MULTIPLAYER_HUD_CASH(intp0, intp1)
    return native.call(0xFD1D220394BCB824, intp0, intp1)
end

function natives.REMOVE_MULTIPLAYER_HUD_CASH()
    return native.call(0x968F270E39141ECA)
end

function natives.HIDE_HELP_TEXT_THIS_FRAME()
    return native.call(0xD46923FC481CA285)
end

function natives._0x801879A9B4F4B2FB()
    return native.call(0x801879A9B4F4B2FB)
end

function natives.DISPLAY_HELP_TEXT_THIS_FRAME(constcharmessage, BOOLp1)
    return native.call(0x960C9FF8F616E41C, constcharmessage, BOOLp1)
end

function natives.HUD_FORCE_WEAPON_WHEEL(BOOLshow)
    return native.call(0xEB354E5376BC81A7, BOOLshow)
end

function natives.HUD_DISPLAY_LOADING_SCREEN_TIPS()
    return native.call(0x488043841BBE156F)
end

function natives.HUD_WEAPON_WHEEL_IGNORE_SELECTION()
    return native.call(0x0AFC4AF510774B47)
end

function natives.HUD_WEAPON_WHEEL_GET_SELECTED_HASH()
    return native.call(0xA48931185F0536FE)
end

function natives.HUD_SET_WEAPON_WHEEL_TOP_SLOT(HashweaponHash)
    return native.call(0x72C1056D678BB7D8, HashweaponHash)
end

function natives.HUD_WEAPON_WHEEL_GET_SLOT_HASH(intweaponTypeIndex)
    return native.call(0xA13E93403F26C812, intweaponTypeIndex)
end

function natives.HUD_WEAPON_WHEEL_IGNORE_CONTROL_INPUT(BOOLtoggle)
    return native.call(0x14C9FDCC41F81F63, BOOLtoggle)
end

function natives.SET_GPS_FLAGS(intp0, floatp1)
    return native.call(0x5B440763A4C8D15B, intp0, floatp1)
end

function natives.CLEAR_GPS_FLAGS()
    return native.call(0x21986729D6A3A830)
end

function natives.SET_RACE_TRACK_RENDER(BOOLtoggle)
    return native.call(0x1EAC5F91BCBC5073, BOOLtoggle)
end

function natives.CLEAR_GPS_RACE_TRACK()
    return native.call(0x7AA5B4CE533C858B)
end

function natives.START_GPS_CUSTOM_ROUTE(inthudColor, BOOLdisplayOnFoot, BOOLfollowPlayer)
    return native.call(0xDB34E8D56FC13B08, inthudColor, BOOLdisplayOnFoot, BOOLfollowPlayer)
end

function natives.ADD_POINT_TO_GPS_CUSTOM_ROUTE(floatx, floaty, floatz)
    return native.call(0x311438A071DD9B1A, floatx, floaty, floatz)
end

function natives.SET_GPS_CUSTOM_ROUTE_RENDER(BOOLtoggle, intradarThickness, intmapThickness)
    return native.call(0x900086F371220B6F, BOOLtoggle, intradarThickness, intmapThickness)
end

function natives.CLEAR_GPS_CUSTOM_ROUTE()
    return native.call(0xE6DE0561D9232A64)
end

function natives.START_GPS_MULTI_ROUTE(inthudColor, BOOLrouteFromPlayer, BOOLdisplayOnFoot)
    return native.call(0x3D3D15AF7BCAAF83, inthudColor, BOOLrouteFromPlayer, BOOLdisplayOnFoot)
end

function natives.ADD_POINT_TO_GPS_MULTI_ROUTE(floatx, floaty, floatz)
    return native.call(0xA905192A6781C41B, floatx, floaty, floatz)
end

function natives.SET_GPS_MULTI_ROUTE_RENDER(BOOLtoggle)
    return native.call(0x3DDA37128DD1ACA8, BOOLtoggle)
end

function natives.CLEAR_GPS_MULTI_ROUTE()
    return native.call(0x67EEDEA1B9BAFD94)
end

function natives.CLEAR_GPS_PLAYER_WAYPOINT()
    return native.call(0xFF4FB7C8CDFA3DA7)
end

function natives.SET_GPS_FLASHES(BOOLtoggle)
    return native.call(0x320D0E0D936A0E9B, BOOLtoggle)
end

function natives.SET_MAIN_PLAYER_BLIP_COLOUR(intcolor)
    return native.call(0x7B21E0BB01E8224A, intcolor)
end

function natives.FLASH_MINIMAP_DISPLAY()
    return native.call(0xF2DD778C22B15BDA)
end

function natives.FLASH_MINIMAP_DISPLAY_WITH_COLOR(inthudColorIndex)
    return native.call(0x6B1DE27EE78E6A19, inthudColorIndex)
end

function natives.TOGGLE_STEALTH_RADAR(BOOLtoggle)
    return native.call(0x6AFDFB93754950C7, BOOLtoggle)
end

function natives.SET_MINIMAP_IN_SPECTATOR_MODE(BOOLtoggle, Pedped)
    return native.call(0x1A5CD7752DD28CD3, BOOLtoggle, Pedped)
end

function natives.SET_MISSION_NAME(BOOLp0, constcharname)
    return native.call(0x5F28ECF5FC84772F, BOOLp0, constcharname)
end

function natives.SET_MISSION_NAME_FOR_UGC_MISSION(BOOLp0, constcharname)
    return native.call(0xE45087D85F468BC2, BOOLp0, constcharname)
end

function natives._0x817B86108EB94E51(BOOLp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0x817B86108EB94E51, BOOLp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives.SET_MINIMAP_BLOCK_WAYPOINT(BOOLtoggle)
    return native.call(0x58FADDED207897DC, BOOLtoggle)
end

function natives.SET_MINIMAP_IN_PROLOGUE(BOOLtoggle)
    return native.call(0x9133955F1A2DA957, BOOLtoggle)
end

function natives.SET_MINIMAP_HIDE_FOW(BOOLtoggle)
    return native.call(0xF8DEE0A5600CBB93, BOOLtoggle)
end

function natives.GET_MINIMAP_FOW_DISCOVERY_RATIO()
    return native.call(0xE0130B41D3CF4574)
end

function natives.GET_MINIMAP_FOW_COORDINATE_IS_REVEALED(floatx, floaty, floatz)
    return native.call(0x6E31B91145873922, floatx, floaty, floatz)
end

function natives._0x62E849B7EB28E770(BOOLp0)
    return native.call(0x62E849B7EB28E770, BOOLp0)
end

function natives.SET_MINIMAP_FOW_REVEAL_COORDINATE(floatx, floaty, floatz)
    return native.call(0x0923DBF87DFF735E, floatx, floaty, floatz)
end

function natives.SET_MINIMAP_GOLF_COURSE(inthole)
    return native.call(0x71BDB63DBAF8DA59, inthole)
end

function natives.SET_MINIMAP_GOLF_COURSE_OFF()
    return native.call(0x35EDD5B2E3FF01C0)
end

function natives.LOCK_MINIMAP_ANGLE(intangle)
    return native.call(0x299FAEBB108AE05B, intangle)
end

function natives.UNLOCK_MINIMAP_ANGLE()
    return native.call(0x8183455E16C42E3A)
end

function natives.LOCK_MINIMAP_POSITION(floatx, floaty)
    return native.call(0x1279E861A329E73F, floatx, floaty)
end

function natives.UNLOCK_MINIMAP_POSITION()
    return native.call(0x3E93E06DB8EF1F30)
end

function natives.SET_MINIMAP_ALTITUDE_INDICATOR_LEVEL(floataltitude, BOOLp1, Anyp2)
    return native.call(0xD201F3FF917A506D, floataltitude, BOOLp1, Anyp2)
end

function natives.SET_HEALTH_HUD_DISPLAY_VALUES(inthealth, intcapacity, BOOLwasAdded)
    return native.call(0x3F5CC444DCAAA8F2, inthealth, intcapacity, BOOLwasAdded)
end

function natives.SET_MAX_HEALTH_HUD_DISPLAY(intmaximumValue)
    return native.call(0x975D66A0BC17064C, intmaximumValue)
end

function natives.SET_MAX_ARMOUR_HUD_DISPLAY(intmaximumValue)
    return native.call(0x06A320535F5F0248, intmaximumValue)
end

function natives.SET_BIGMAP_ACTIVE(BOOLtoggleBigMap, BOOLshowFullMap)
    return native.call(0x231C8F89D0539D8F, BOOLtoggleBigMap, BOOLshowFullMap)
end

function natives.IS_HUD_COMPONENT_ACTIVE(intid)
    return native.call(0xBC4C9EA5391ECC0D, intid)
end

function natives.IS_SCRIPTED_HUD_COMPONENT_ACTIVE(intid)
    return native.call(0xDD100EB17A94FF65, intid)
end

function natives.HIDE_SCRIPTED_HUD_COMPONENT_THIS_FRAME(intid)
    return native.call(0xE374C498D8BADC14, intid)
end

function natives.SHOW_SCRIPTED_HUD_COMPONENT_THIS_FRAME(intid)
    return native.call(0x4F38DCA127DAAEA2, intid)
end

function natives.IS_SCRIPTED_HUD_COMPONENT_HIDDEN_THIS_FRAME(intid)
    return native.call(0x09C0403ED9A751C2, intid)
end

function natives.HIDE_HUD_COMPONENT_THIS_FRAME(intid)
    return native.call(0x6806C51AD12B83B8, intid)
end

function natives.SHOW_HUD_COMPONENT_THIS_FRAME(intid)
    return native.call(0x0B4DF1FA60C0E664, intid)
end

function natives.HIDE_AREA_AND_VEHICLE_NAME_THIS_FRAME()
    return native.call(0xA4DEDE28B1814289)
end

function natives.RESET_RETICULE_VALUES()
    return native.call(0x12782CE0A636E9F0)
end

function natives.RESET_HUD_COMPONENT_VALUES(intid)
    return native.call(0x450930E616475D0D, intid)
end

function natives.SET_HUD_COMPONENT_POSITION(intid, floatx, floaty)
    return native.call(0xAABB1F56E2A17CED, intid, floatx, floaty)
end

function natives.GET_HUD_COMPONENT_POSITION(intid)
    return native.call(0x223CA69A8C4417FD, intid)
end

function natives.CLEAR_REMINDER_MESSAGE()
    return native.call(0xB57D8DD645CFA2CF)
end

function natives.GET_HUD_SCREEN_POSITION_FROM_WORLD_POSITION(floatworldX, floatworldY, floatworldZ, floatscreenX, floatscreenY)
    return native.call(0xF9904D11F1ACBEC3, floatworldX, floatworldY, floatworldZ, floatscreenX, floatscreenY)
end

function natives.OPEN_REPORTUGC_MENU()
    return native.call(0x523A590C1A3CC0D3)
end

function natives.FORCE_CLOSE_REPORTUGC_MENU()
    return native.call(0xEE4C0E6DBC6F2C6F)
end

function natives.IS_REPORTUGC_MENU_OPEN()
    return native.call(0x9135584D09A3437E)
end

function natives.IS_FLOATING_HELP_TEXT_ON_SCREEN(inthudIndex)
    return native.call(0x2432784ACA090DA4, inthudIndex)
end

function natives.SET_FLOATING_HELP_TEXT_SCREEN_POSITION(inthudIndex, floatx, floaty)
    return native.call(0x7679CC1BCEBE3D4C, inthudIndex, floatx, floaty)
end

function natives.SET_FLOATING_HELP_TEXT_WORLD_POSITION(inthudIndex, floatx, floaty, floatz)
    return native.call(0x784BA7E0ECEB4178, inthudIndex, floatx, floaty, floatz)
end

function natives.SET_FLOATING_HELP_TEXT_TO_ENTITY(inthudIndex, Entityentity, floatoffsetX, floatoffsetY)
    return native.call(0xB094BC1DB4018240, inthudIndex, Entityentity, floatoffsetX, floatoffsetY)
end

function natives.SET_FLOATING_HELP_TEXT_STYLE(inthudIndex, intp1, intp2, intp3, intp4, intp5)
    return native.call(0x788E7FD431BD67F1, inthudIndex, intp1, intp2, intp3, intp4, intp5)
end

function natives.CLEAR_FLOATING_HELP(inthudIndex, BOOLp1)
    return native.call(0x50085246ABD3FEFA, inthudIndex, BOOLp1)
end

function natives.CREATE_MP_GAMER_TAG_WITH_CREW_COLOR(Playerplayer, constcharusername, BOOLpointedClanTag, BOOLisRockstarClan, constcharclanTag, intclanFlag, intr, intg, intb)
    return native.call(0x6DD05E9D83EFA4C9, Playerplayer, constcharusername, BOOLpointedClanTag, BOOLisRockstarClan, constcharclanTag, intclanFlag, intr, intg, intb)
end

function natives.IS_MP_GAMER_TAG_MOVIE_ACTIVE()
    return native.call(0x6E0EB3EB47C8D7AA)
end

function natives.CREATE_FAKE_MP_GAMER_TAG(Pedped, constcharusername, BOOLpointedClanTag, BOOLisRockstarClan, constcharclanTag, intclanFlag)
    return native.call(0xBFEFE3321A3F5015, Pedped, constcharusername, BOOLpointedClanTag, BOOLisRockstarClan, constcharclanTag, intclanFlag)
end

function natives.REMOVE_MP_GAMER_TAG(intgamerTagId)
    return native.call(0x31698AA80E0223F8, intgamerTagId)
end

function natives.IS_MP_GAMER_TAG_ACTIVE(intgamerTagId)
    return native.call(0x4E929E7A5796FD26, intgamerTagId)
end

function natives.IS_MP_GAMER_TAG_FREE(intgamerTagId)
    return native.call(0x595B5178E412E199, intgamerTagId)
end

function natives.SET_MP_GAMER_TAG_VISIBILITY(intgamerTagId, intcomponent, BOOLtoggle, Anyp3)
    return native.call(0x63BB75ABEDC1F6A0, intgamerTagId, intcomponent, BOOLtoggle, Anyp3)
end

function natives.SET_MP_GAMER_TAG_ENABLED(intgamerTagId, BOOLtoggle)
    return native.call(0xEE76FF7E6A0166B0, intgamerTagId, BOOLtoggle)
end

function natives.SET_MP_GAMER_TAG_ICONS(intgamerTagId, BOOLtoggle)
    return native.call(0xA67F9C46D612B6F1, intgamerTagId, BOOLtoggle)
end

function natives.SET_MP_GAMER_HEALTH_BAR_DISPLAY(intgamerTagId, BOOLtoggle)
    return native.call(0xD29EC58C2F6B5014, intgamerTagId, BOOLtoggle)
end

function natives.SET_MP_GAMER_HEALTH_BAR_MAX(intgamerTagId, intvalue, intmaximumValue)
    return native.call(0x1563FE35E9928E67, intgamerTagId, intvalue, intmaximumValue)
end

function natives.SET_MP_GAMER_TAG_COLOUR(intgamerTagId, intcomponent, inthudColorIndex)
    return native.call(0x613ED644950626AE, intgamerTagId, intcomponent, inthudColorIndex)
end

function natives.SET_MP_GAMER_TAG_HEALTH_BAR_COLOUR(intgamerTagId, inthudColorIndex)
    return native.call(0x3158C77A7E888AB4, intgamerTagId, inthudColorIndex)
end

function natives.SET_MP_GAMER_TAG_ALPHA(intgamerTagId, intcomponent, intalpha)
    return native.call(0xD48FE545CD46F857, intgamerTagId, intcomponent, intalpha)
end

function natives.SET_MP_GAMER_TAG_WANTED_LEVEL(intgamerTagId, intwantedlvl)
    return native.call(0xCF228E2AA03099C3, intgamerTagId, intwantedlvl)
end

function natives.SET_MP_GAMER_TAG_UNK(intgamerTagId, intp1)
    return native.call(0x9C16459B2324B2CF, intgamerTagId, intp1)
end

function natives.SET_MP_GAMER_TAG_NAME(intgamerTagId, constcharstring)
    return native.call(0xDEA2B8283BAA3944, intgamerTagId, constcharstring)
end

function natives.IS_VALID_MP_GAMER_TAG_MOVIE(intgamerTagId)
    return native.call(0xEB709A36958ABE0D, intgamerTagId)
end

function natives.SET_MP_GAMER_TAG_BIG_TEXT(intgamerTagId, constcharstring)
    return native.call(0x7B7723747CCB55B6, intgamerTagId, constcharstring)
end

function natives.GET_CURRENT_WEBPAGE_ID()
    return native.call(0x01A358D9128B7A86)
end

function natives.GET_CURRENT_WEBSITE_ID()
    return native.call(0x97D47996FC48CBAD)
end

function natives.GET_GLOBAL_ACTIONSCRIPT_FLAG(intflagIndex)
    return native.call(0xE3B05614DCE1D014, intflagIndex)
end

function natives.RESET_GLOBAL_ACTIONSCRIPT_FLAG(intflagIndex)
    return native.call(0xB99C4E4D9499DF29, intflagIndex)
end

function natives.IS_WARNING_MESSAGE_ACTIVE_2()
    return native.call(0xAF42195A42C63BBA)
end

function natives.SET_WARNING_MESSAGE(constchartitleMsg, intflags, constcharpromptMsg, BOOLp3, intp4, constcharp5, constcharp6, BOOLshowBackground, interrorCode)
    return native.call(0x7B1776B3B53F8D74, constchartitleMsg, intflags, constcharpromptMsg, BOOLp3, intp4, constcharp5, constcharp6, BOOLshowBackground, interrorCode)
end

function natives.SET_WARNING_MESSAGE_WITH_HEADER(constcharentryHeader, constcharentryLine1, intinstructionalKey, constcharentryLine2, BOOLp4, Anyp5, AnyshowBackground, Anyp7, BOOLp8, Anyp9)
    return native.call(0xDC38CC1E35B6A5D7, constcharentryHeader, constcharentryLine1, intinstructionalKey, constcharentryLine2, BOOLp4, Anyp5, AnyshowBackground, Anyp7, BOOLp8, Anyp9)
end

function natives.SET_WARNING_MESSAGE_WITH_HEADER_AND_SUBSTRING_FLAGS(constcharentryHeader, constcharentryLine1, intinstructionalKey, constcharentryLine2, BOOLp4, Anyp5, AnyadditionalIntInfo, constcharadditionalTextInfoLine1, constcharadditionalTextInfoLine2, BOOLshowBackground, interrorCode)
    return native.call(0x701919482C74B5AB, constcharentryHeader, constcharentryLine1, intinstructionalKey, constcharentryLine2, BOOLp4, Anyp5, AnyadditionalIntInfo, constcharadditionalTextInfoLine1, constcharadditionalTextInfoLine2, BOOLshowBackground, interrorCode)
end

function natives.SET_WARNING_MESSAGE_WITH_HEADER_UNK(constcharentryHeader, constcharentryLine1, intflags, constcharentryLine2, BOOLp4, Anyp5, Anyp6, Anyp7, BOOLshowBg, Anyp9, Anyp10)
    return native.call(0x38B55259C2E078ED, constcharentryHeader, constcharentryLine1, intflags, constcharentryLine2, BOOLp4, Anyp5, Anyp6, Anyp7, BOOLshowBg, Anyp9, Anyp10)
end

function natives.SET_WARNING_MESSAGE_WITH_ALERT(constcharlabelTitle, constcharlabelMessage, intp2, intp3, constcharlabelMessage2, BOOLp5, intp6, intp7, constcharp8, constcharp9, BOOLbackground, interrorCode)
    return native.call(0x15803FEC3B9A872B, constcharlabelTitle, constcharlabelMessage, intp2, intp3, constcharlabelMessage2, BOOLp5, intp6, intp7, constcharp8, constcharp9, BOOLbackground, interrorCode)
end

function natives.GET_WARNING_MESSAGE_TITLE_HASH()
    return native.call(0x81DF9ABA6C83DFF9)
end

function natives.SET_WARNING_MESSAGE_LIST_ROW(intindex, constcharname, intcash, intrp, intlvl, intcolour)
    return native.call(0x0C5A80A9E096D529, intindex, constcharname, intcash, intrp, intlvl, intcolour)
end

function natives._0xDAF87174BE7454FF(Anyp0)
    return native.call(0xDAF87174BE7454FF, Anyp0)
end

function natives.REMOVE_WARNING_MESSAGE_LIST_ITEMS()
    return native.call(0x6EF54AB721DC6242)
end

function natives.IS_WARNING_MESSAGE_ACTIVE()
    return native.call(0xE18B138FABC53103)
end

function natives.CLEAR_DYNAMIC_PAUSE_MENU_ERROR_MESSAGE()
    return native.call(0x7792424AA0EAC32E)
end

function natives.CUSTOM_MINIMAP_SET_ACTIVE(BOOLtoggle)
    return native.call(0x5354C5BA2EA868A4, BOOLtoggle)
end

function natives.CUSTOM_MINIMAP_SET_BLIP_OBJECT(intspriteId)
    return native.call(0x1EAE6DD17B7A5EFA, intspriteId)
end

function natives.CUSTOM_MINIMAP_CREATE_BLIP(floatx, floaty, floatz)
    return native.call(0x551DF99658DB6EE8, floatx, floaty, floatz)
end

function natives.CUSTOM_MINIMAP_CLEAR_BLIPS()
    return native.call(0x2708FC083123F9FF)
end

function natives.FORCE_SONAR_BLIPS_THIS_FRAME()
    return native.call(0x1121BFA1A1A522A8)
end

function natives.GET_NORTH_RADAR_BLIP()
    return native.call(0x3F0CF9CB7E589B88)
end

function natives.DISPLAY_PLAYER_NAME_TAGS_ON_BLIPS(BOOLtoggle)
    return native.call(0x82CEDC33687E1F50, BOOLtoggle)
end

function natives._0x211C4EF450086857()
    return native.call(0x211C4EF450086857)
end

function natives.DRAW_HUD_OVER_FADE_THIS_FRAME()
    return native.call(0xBF4F34A85CA2970C)
end

function natives.ACTIVATE_FRONTEND_MENU(Hashmenuhash, BOOLtogglePause, intcomponent)
    return native.call(0xEF01D36B9C9D0C7B, Hashmenuhash, BOOLtogglePause, intcomponent)
end

function natives.RESTART_FRONTEND_MENU(HashmenuHash, intp1)
    return native.call(0x10706DC6AD2D49C0, HashmenuHash, intp1)
end

function natives.GET_CURRENT_FRONTEND_MENU_VERSION()
    return native.call(0x2309595AD6145265)
end

function natives.SET_PAUSE_MENU_ACTIVE(BOOLtoggle)
    return native.call(0xDF47FC56C71569CF, BOOLtoggle)
end

function natives.DISABLE_FRONTEND_THIS_FRAME()
    return native.call(0x6D3465A73092F0E6)
end

function natives.SUPPRESS_FRONTEND_RENDERING_THIS_FRAME()
    return native.call(0xBA751764F0821256)
end

function natives.ALLOW_PAUSE_MENU_WHEN_DEAD_THIS_FRAME()
    return native.call(0xCC3FDDED67BCFC63)
end

function natives.SET_FRONTEND_ACTIVE(BOOLactive)
    return native.call(0x745711A75AB09277, BOOLactive)
end

function natives.IS_PAUSE_MENU_ACTIVE()
    return native.call(0xB0034A223497FFCB)
end

function natives._0x2F057596F2BD0061()
    return native.call(0x2F057596F2BD0061)
end

function natives.GET_PAUSE_MENU_STATE()
    return native.call(0x272ACD84970869C5)
end

function natives._0x5BFF36D6ED83E0AE()
    return native.call(0x5BFF36D6ED83E0AE)
end

function natives.IS_PAUSE_MENU_RESTARTING()
    return native.call(0x1C491717107431C7)
end

function natives.LOG_DEBUG_INFO(constcharp0)
    return native.call(0x2162C446DFDF38FD, constcharp0)
end

function natives.PAUSE_MENUCEPTION_GO_DEEPER(intpage)
    return native.call(0x77F16B447824DA6C, intpage)
end

function natives.PAUSE_MENUCEPTION_THE_KICK()
    return native.call(0xCDCA26E80FAECB8F)
end

function natives._0x2DE6C5E2E996F178(Anyp0)
    return native.call(0x2DE6C5E2E996F178, Anyp0)
end

function natives.PAUSE_MENU_ACTIVATE_CONTEXT(HashcontextHash)
    return native.call(0xDD564BDD0472C936, HashcontextHash)
end

function natives.PAUSE_MENU_DEACTIVATE_CONTEXT(HashcontextHash)
    return native.call(0x444D8CF241EC25C5, HashcontextHash)
end

function natives.PAUSE_MENU_IS_CONTEXT_ACTIVE(HashcontextHash)
    return native.call(0x84698AB38D0C6636, HashcontextHash)
end

function natives.PAUSE_MENU_IS_CONTEXT_MENU_ACTIVE()
    return native.call(0x2A25ADC48F87841F)
end

function natives._0xDE03620F8703A9DF()
    return native.call(0xDE03620F8703A9DF)
end

function natives._0x359AF31A4B52F5ED()
    return native.call(0x359AF31A4B52F5ED)
end

function natives._0x13C4B962653A5280()
    return native.call(0x13C4B962653A5280)
end

function natives._0xC8E1071177A23BE5(Anyp0, Anyp1, Anyp2)
    return native.call(0xC8E1071177A23BE5, Anyp0, Anyp1, Anyp2)
end

function natives.PAUSE_MENU_REDRAW_INSTRUCTIONAL_BUTTONS(intp0)
    return native.call(0x4895BDEA16E7C080, intp0)
end

function natives.PAUSE_MENU_SET_BUSY_SPINNER(BOOLp0, intposition, intspinnerIndex)
    return native.call(0xC78E239AC5B2DDB9, BOOLp0, intposition, intspinnerIndex)
end

function natives.PAUSE_MENU_SET_WARN_ON_TAB_CHANGE(BOOLp0)
    return native.call(0xF06EBB91A81E09E3, BOOLp0)
end

function natives.IS_FRONTEND_READY_FOR_CONTROL()
    return native.call(0x3BAB9A4E4F2FF5C7)
end

function natives.TAKE_CONTROL_OF_FRONTEND()
    return native.call(0xEC9264727EEC0F28)
end

function natives.RELEASE_CONTROL_OF_FRONTEND()
    return native.call(0x14621BB1DF14E2B2)
end

function natives._0x66E7CB63C97B7D20()
    return native.call(0x66E7CB63C97B7D20)
end

function natives._0x593FEAE1F73392D4()
    return native.call(0x593FEAE1F73392D4)
end

function natives.IS_NAVIGATING_MENU_CONTENT()
    return native.call(0x4E3CD0EF8A489541)
end

function natives.HAS_MENU_TRIGGER_EVENT_OCCURRED()
    return native.call(0xF284AC67940C6812)
end

function natives.HAS_MENU_LAYOUT_CHANGED_EVENT_OCCURRED()
    return native.call(0x2E22FEFA0100275E)
end

function natives._0x0CF54F20DE43879C(Anyp0)
    return native.call(0x0CF54F20DE43879C, Anyp0)
end

function natives.GET_MENU_TRIGGER_EVENT_DETAILS(intlastItemMenuId, intselectedItemUniqueId)
    return native.call(0x36C1451A88A09630, intlastItemMenuId, intselectedItemUniqueId)
end

function natives.GET_MENU_LAYOUT_CHANGED_EVENT_DETAILS(intlastItemMenuId, intselectedItemMenuId, intselectedItemUniqueId)
    return native.call(0x7E17BE53E1AAABAF, intlastItemMenuId, intselectedItemMenuId, intselectedItemUniqueId)
end

function natives._0xA238192F33110615(intr, intg, intb)
    return native.call(0xA238192F33110615, intr, intg, intb)
end

function natives.GET_MENU_PED_INT_STAT(Anyp0, Anyp1)
    return native.call(0xEF4CED81CEBEDC6D, Anyp0, Anyp1)
end

function natives._0xCA6B2F7CE32AB653(Anyp0, Anyp1, Anyp2)
    return native.call(0xCA6B2F7CE32AB653, Anyp0, Anyp1, Anyp2)
end

function natives.GET_MENU_PED_MASKED_INT_STAT(Hashp0, Anyp1, Anyp2, intp3)
    return native.call(0x90A6526CF0381030, Hashp0, Anyp1, Anyp2, intp3)
end

function natives._0x24A49BEAF468DC90(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x24A49BEAF468DC90, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.GET_MENU_PED_FLOAT_STAT(Anyp0, floatp1)
    return native.call(0x5FBD7095FE7AE57F, Anyp0, floatp1)
end

function natives._0x8F08017F9D7C47BD(Anyp0, Anyp1, Anyp2)
    return native.call(0x8F08017F9D7C47BD, Anyp0, Anyp1, Anyp2)
end

function natives.GET_MENU_PED_BOOL_STAT(Hashp0, Anyp1)
    return native.call(0x052991E59076E4E4, Hashp0, Anyp1)
end

function natives.CLEAR_PED_IN_PAUSE_MENU()
    return native.call(0x5E62BE5DC58E9E06)
end

function natives.GIVE_PED_TO_PAUSE_MENU(Pedped, intp1)
    return native.call(0xAC0BFBDC3BE00E14, Pedped, intp1)
end

function natives.SET_PAUSE_MENU_PED_LIGHTING(BOOLstate)
    return native.call(0x3CA6050692BC61B0, BOOLstate)
end

function natives.SET_PAUSE_MENU_PED_SLEEP_STATE(BOOLstate)
    return native.call(0xECF128344E9FF9F1, BOOLstate)
end

function natives.OPEN_ONLINE_POLICIES_MENU()
    return native.call(0x805D7CBB36FD6C4C)
end

function natives._0xF13FE2A80C05C561()
    return native.call(0xF13FE2A80C05C561)
end

function natives.IS_ONLINE_POLICIES_MENU_ACTIVE()
    return native.call(0x6F72CD94F7B5B68C)
end

function natives.OPEN_SOCIAL_CLUB_MENU()
    return native.call(0x75D3691713C3B05A)
end

function natives.CLOSE_SOCIAL_CLUB_MENU()
    return native.call(0xD2B32BE3FC1626C6)
end

function natives.SET_SOCIAL_CLUB_TOUR(constcharname)
    return native.call(0x9E778248D6685FE0, constcharname)
end

function natives.IS_SOCIAL_CLUB_ACTIVE()
    return native.call(0xC406BE343FC4B9AF)
end

function natives._0x1185A8087587322C(BOOLp0)
    return native.call(0x1185A8087587322C, BOOLp0)
end

function natives.FORCE_CLOSE_TEXT_INPUT_BOX()
    return native.call(0x8817605C2BA76200)
end

function natives._0x577599CCED639CA2(Anyp0)
    return native.call(0x577599CCED639CA2, Anyp0)
end

function natives.OVERRIDE_MULTIPLAYER_CHAT_PREFIX(HashgxtEntryHash)
    return native.call(0x6A1738B4323FE2D9, HashgxtEntryHash)
end

function natives.IS_MULTIPLAYER_CHAT_ACTIVE()
    return native.call(0xB118AF58B5F332A1)
end

function natives.CLOSE_MULTIPLAYER_CHAT()
    return native.call(0x1AC8F4AD40E22127)
end

function natives._0x7C226D5346D4D10A(Anyp0)
    return native.call(0x7C226D5346D4D10A, Anyp0)
end

function natives.OVERRIDE_MULTIPLAYER_CHAT_COLOUR(intp0, inthudColor)
    return native.call(0xF47E567B3630DD12, intp0, inthudColor)
end

function natives.MULTIPLAYER_CHAT_SET_DISABLED(BOOLtoggle)
    return native.call(0x1DB21A44B09E8BA3, BOOLtoggle)
end

function natives.FLAG_PLAYER_CONTEXT_IN_TOURNAMENT(BOOLtoggle)
    return native.call(0xCEF214315D276FD1, BOOLtoggle)
end

function natives.SET_PED_HAS_AI_BLIP(Pedped, BOOLhasCone)
    return native.call(0xD30C50DF888D58B5, Pedped, BOOLhasCone)
end

function natives.SET_PED_HAS_AI_BLIP_WITH_COLOR(Pedped, BOOLhasCone, intcolor)
    return native.call(0xB13DCB4C6FAAD238, Pedped, BOOLhasCone, intcolor)
end

function natives.DOES_PED_HAVE_AI_BLIP(Pedped)
    return native.call(0x15B8ECF844EE67ED, Pedped)
end

function natives.SET_PED_AI_BLIP_GANG_ID(Pedped, intgangId)
    return native.call(0xE52B8E7F85D39A08, Pedped, intgangId)
end

function natives.SET_PED_AI_BLIP_HAS_CONE(Pedped, BOOLtoggle)
    return native.call(0x3EED80DFF7325CAA, Pedped, BOOLtoggle)
end

function natives.SET_PED_AI_BLIP_FORCED_ON(Pedped, BOOLtoggle)
    return native.call(0x0C4BBF625CA98C4E, Pedped, BOOLtoggle)
end

function natives.SET_PED_AI_BLIP_NOTICE_RANGE(Pedped, floatrange)
    return native.call(0x97C65887D4B37FA9, Pedped, floatrange)
end

function natives.SET_PED_AI_BLIP_SPRITE(Pedped, intspriteId)
    return native.call(0xFCFACD0DB9D7A57D, Pedped, intspriteId)
end

function natives.GET_AI_BLIP_2(Pedped)
    return native.call(0x7CD934010E115C2C, Pedped)
end

function natives.GET_AI_BLIP(Pedped)
    return native.call(0x56176892826A4FE8, Pedped)
end

function natives.HAS_DIRECTOR_MODE_BEEN_TRIGGERED()
    return native.call(0xA277800A9EAE340E)
end

function natives.SET_DIRECTOR_MODE_CLEAR_TRIGGERED_FLAG()
    return native.call(0x2632482FD6B9AB87)
end

function natives.SET_PLAYER_IS_IN_DIRECTOR_MODE(BOOLtoggle)
    return native.call(0x808519373FD336A3, BOOLtoggle)
end

function natives._0x04655F9D075D0AE5(BOOLtoggle)
    return native.call(0x04655F9D075D0AE5, BOOLtoggle)
end

function natives._0x243296A510B562B6()
    return native.call(0x243296A510B562B6)
end

function natives.GET_INTERIOR_HEADING(Interiorinterior)
    return native.call(0xF49B58631D9E22D9, Interiorinterior)
end

function natives.GET_INTERIOR_LOCATION_AND_NAMEHASH(Interiorinterior, Vector3position, HashnameHash)
    return native.call(0x252BDC06B73FA6EA, Interiorinterior, Vector3position, HashnameHash)
end

function natives.GET_INTERIOR_GROUP_ID(Interiorinterior)
    return native.call(0xE4A84ABF135EF91A, Interiorinterior)
end

function natives.GET_OFFSET_FROM_INTERIOR_IN_WORLD_COORDS(Interiorinterior, floatx, floaty, floatz)
    return native.call(0x9E3B3E6D66F6E22F, Interiorinterior, floatx, floaty, floatz)
end

function natives.IS_INTERIOR_SCENE()
    return native.call(0xBC72B5D7A1CBD54D)
end

function natives.IS_VALID_INTERIOR(Interiorinterior)
    return native.call(0x26B0E73D7EAAF4D3, Interiorinterior)
end

function natives.CLEAR_ROOM_FOR_ENTITY(Entityentity)
    return native.call(0xB365FC0C4E27FFA7, Entityentity)
end

function natives.FORCE_ROOM_FOR_ENTITY(Entityentity, Interiorinterior, HashroomHashKey)
    return native.call(0x52923C4710DD9907, Entityentity, Interiorinterior, HashroomHashKey)
end

function natives.GET_ROOM_KEY_FROM_ENTITY(Entityentity)
    return native.call(0x47C2A06D4F5F424B, Entityentity)
end

function natives.GET_KEY_FOR_ENTITY_IN_ROOM(Entityentity)
    return native.call(0x399685DB942336BC, Entityentity)
end

function natives.GET_INTERIOR_FROM_ENTITY(Entityentity)
    return native.call(0x2107BA504071A6BB, Entityentity)
end

function natives.RETAIN_ENTITY_IN_INTERIOR(Entityentity, Interiorinterior)
    return native.call(0x82EBB79E258FA2B7, Entityentity, Interiorinterior)
end

function natives.CLEAR_INTERIOR_FOR_ENTITY(Entityentity)
    return native.call(0x85D5422B2039A70D, Entityentity)
end

function natives._0x38C1CB1CB119A016(Anyp0, Anyp1)
    return native.call(0x38C1CB1CB119A016, Anyp0, Anyp1)
end

function natives.FORCE_ROOM_FOR_GAME_VIEWPORT(intinteriorID, HashroomHashKey)
    return native.call(0x920D853F3E17F1DA, intinteriorID, HashroomHashKey)
end

function natives._0xAF348AFCB575A441(constcharroomName)
    return native.call(0xAF348AFCB575A441, constcharroomName)
end

function natives._0x405DC2AEF6AF95B9(HashroomHashKey)
    return native.call(0x405DC2AEF6AF95B9, HashroomHashKey)
end

function natives.GET_ROOM_KEY_FOR_GAME_VIEWPORT()
    return native.call(0xA6575914D2A0B450)
end

function natives.CLEAR_ROOM_FOR_GAME_VIEWPORT()
    return native.call(0x23B59D8912F94246)
end

function natives.GET_INTERIOR_FROM_PRIMARY_VIEW()
    return native.call(0xE7D267EC6CA966C3)
end

function natives.GET_INTERIOR_AT_COORDS(floatx, floaty, floatz)
    return native.call(0xB0F7F8663821D9C3, floatx, floaty, floatz)
end

function natives.ADD_PICKUP_TO_INTERIOR_ROOM_BY_NAME(Pickuppickup, constcharroomName)
    return native.call(0x3F6167F351168730, Pickuppickup, constcharroomName)
end

function natives.PIN_INTERIOR_IN_MEMORY(Interiorinterior)
    return native.call(0x2CA429C029CCF247, Interiorinterior)
end

function natives.UNPIN_INTERIOR(Interiorinterior)
    return native.call(0x261CCE7EED010641, Interiorinterior)
end

function natives.IS_INTERIOR_READY(Interiorinterior)
    return native.call(0x6726BDCCC1932F0E, Interiorinterior)
end

function natives._0x4C2330E61D3DEB56(Interiorinterior)
    return native.call(0x4C2330E61D3DEB56, Interiorinterior)
end

function natives.GET_INTERIOR_AT_COORDS_WITH_TYPE(floatx, floaty, floatz, constcharinteriorType)
    return native.call(0x05B7A89BD78797FC, floatx, floaty, floatz, constcharinteriorType)
end

function natives.GET_INTERIOR_AT_COORDS_WITH_TYPEHASH(floatx, floaty, floatz, HashtypeHash)
    return native.call(0xF0F77ADB9F67E79D, floatx, floaty, floatz, HashtypeHash)
end

function natives._0x483ACA1176CA93F1()
    return native.call(0x483ACA1176CA93F1)
end

function natives.IS_COLLISION_MARKED_OUTSIDE(floatx, floaty, floatz)
    return native.call(0xEEA5AC2EDA7C33E8, floatx, floaty, floatz)
end

function natives.GET_INTERIOR_FROM_COLLISION(floatx, floaty, floatz)
    return native.call(0xEC4CF9FCB29A4424, floatx, floaty, floatz)
end

function natives._0x7ECDF98587E92DEC(Anyp0)
    return native.call(0x7ECDF98587E92DEC, Anyp0)
end

function natives.ACTIVATE_INTERIOR_ENTITY_SET(Interiorinterior, constcharentitySetName)
    return native.call(0x55E86AF2712B36A1, Interiorinterior, constcharentitySetName)
end

function natives.DEACTIVATE_INTERIOR_ENTITY_SET(Interiorinterior, constcharentitySetName)
    return native.call(0x420BD37289EEE162, Interiorinterior, constcharentitySetName)
end

function natives.IS_INTERIOR_ENTITY_SET_ACTIVE(Interiorinterior, constcharentitySetName)
    return native.call(0x35F7DD45E8C0A16D, Interiorinterior, constcharentitySetName)
end

function natives.SET_INTERIOR_ENTITY_SET_COLOR(Interiorinterior, constcharentitySetName, intcolor)
    return native.call(0xC1F1920BAF281317, Interiorinterior, constcharentitySetName, intcolor)
end

function natives.REFRESH_INTERIOR(Interiorinterior)
    return native.call(0x41F37C3427C75AE0, Interiorinterior)
end

function natives.ENABLE_EXTERIOR_CULL_MODEL_THIS_FRAME(HashmapObjectHash)
    return native.call(0xA97F257D0151A6AB, HashmapObjectHash)
end

function natives.ENABLE_SCRIPT_CULL_MODEL_THIS_FRAME(HashmapObjectHash)
    return native.call(0x50C375537449F369, HashmapObjectHash)
end

function natives.DISABLE_INTERIOR(Interiorinterior, BOOLtoggle)
    return native.call(0x6170941419D7D8EC, Interiorinterior, BOOLtoggle)
end

function natives.IS_INTERIOR_DISABLED(Interiorinterior)
    return native.call(0xBC5115A5A939DD15, Interiorinterior)
end

function natives.CAP_INTERIOR(Interiorinterior, BOOLtoggle)
    return native.call(0xD9175F941610DB54, Interiorinterior, BOOLtoggle)
end

function natives.IS_INTERIOR_CAPPED(Interiorinterior)
    return native.call(0x92BAC8ACF88CEC26, Interiorinterior)
end

function natives._0x9E6542F0CE8E70A3(BOOLtoggle)
    return native.call(0x9E6542F0CE8E70A3, BOOLtoggle)
end

function natives._0x7241CCB7D020DB69(Entityentity, BOOLtoggle)
    return native.call(0x7241CCB7D020DB69, Entityentity, BOOLtoggle)
end

function natives.CREATE_ITEMSET(BOOLp0)
    return native.call(0x35AD299F50D91B24, BOOLp0)
end

function natives.DESTROY_ITEMSET(ScrHandleitemset)
    return native.call(0xDE18220B1C183EDA, ScrHandleitemset)
end

function natives.IS_ITEMSET_VALID(ScrHandleitemset)
    return native.call(0xB1B1EA596344DFAB, ScrHandleitemset)
end

function natives.ADD_TO_ITEMSET(ScrHandleitem, ScrHandleitemset)
    return native.call(0xE3945201F14637DD, ScrHandleitem, ScrHandleitemset)
end

function natives.REMOVE_FROM_ITEMSET(ScrHandleitem, ScrHandleitemset)
    return native.call(0x25E68244B0177686, ScrHandleitem, ScrHandleitemset)
end

function natives.GET_ITEMSET_SIZE(ScrHandleitemset)
    return native.call(0xD9127E83ABF7C631, ScrHandleitemset)
end

function natives.GET_INDEXED_ITEM_IN_ITEMSET(intindex, ScrHandleitemset)
    return native.call(0x7A197E2521EE2BAB, intindex, ScrHandleitemset)
end

function natives.IS_IN_ITEMSET(ScrHandleitem, ScrHandleitemset)
    return native.call(0x2D0FC594D1E9C107, ScrHandleitem, ScrHandleitemset)
end

function natives.CLEAN_ITEMSET(ScrHandleitemset)
    return native.call(0x41BC0D722FC04221, ScrHandleitemset)
end

function natives._0xF2CA003F167E21D2()
    return native.call(0xF2CA003F167E21D2)
end

function natives.LOADINGSCREEN_GET_LOAD_FREEMODE()
    return native.call(0xEF7D17BC6C85264C)
end

function natives.LOADINGSCREEN_SET_LOAD_FREEMODE(BOOLtoggle)
    return native.call(0xB0C56BD3D808D863, BOOLtoggle)
end

function natives.LOADINGSCREEN_GET_LOAD_FREEMODE_WITH_EVENT_NAME()
    return native.call(0x8AA464D4E0F6ACCD)
end

function natives.LOADINGSCREEN_SET_LOAD_FREEMODE_WITH_EVENT_NAME(BOOLtoggle)
    return native.call(0xFC309E94546FCDB5, BOOLtoggle)
end

function natives.LOADINGSCREEN_IS_LOADING_FREEMODE()
    return native.call(0xC6DC823253FBB366)
end

function natives.LOADINGSCREEN_SET_IS_LOADING_FREEMODE(BOOLtoggle)
    return native.call(0xC7E7181C09F33B69, BOOLtoggle)
end

function natives._0xFA1E0E893D915215(BOOLtoggle)
    return native.call(0xFA1E0E893D915215, BOOLtoggle)
end

function natives.LOCALIZATION_GET_SYSTEM_LANGUAGE()
    return native.call(0x497420E022796B3F)
end

function natives.GET_CURRENT_LANGUAGE()
    return native.call(0x2BDD44CC428A7EAE)
end

function natives.LOCALIZATION_GET_SYSTEM_DATE_FORMAT()
    return native.call(0xA8AE43AEC1A61314)
end

function natives.GET_ALLOCATED_STACK_SIZE()
    return native.call(0x8B3CA62B1EF19B62)
end

function natives.GET_NUMBER_OF_FREE_STACKS_OF_THIS_SIZE(intstackSize)
    return native.call(0xFEAD16FC8F9DFC0F, intstackSize)
end

function natives.SET_RANDOM_SEED(intseed)
    return native.call(0x444D98F98C11F3EC, intseed)
end

function natives.SET_TIME_SCALE(floattimeScale)
    return native.call(0x1D408577D440E81E, floattimeScale)
end

function natives.SET_MISSION_FLAG(BOOLtoggle)
    return native.call(0xC4301E5121A0ED73, BOOLtoggle)
end

function natives.GET_MISSION_FLAG()
    return native.call(0xA33CDCCDA663159E)
end

function natives.SET_RANDOM_EVENT_FLAG(BOOLtoggle)
    return native.call(0x971927086CFD2158, BOOLtoggle)
end

function natives.GET_RANDOM_EVENT_FLAG()
    return native.call(0xD2D57F1D764117B1)
end

function natives.GET_GLOBAL_CHAR_BUFFER()
    return native.call(0x24DA7D7667FD7B09)
end

function natives._0x4DCDF92BF64236CD(constcharp0, constcharp1)
    return native.call(0x4DCDF92BF64236CD, constcharp0, constcharp1)
end

function natives._0x31125FD509D9043F(constcharp0)
    return native.call(0x31125FD509D9043F, constcharp0)
end

function natives._0xEBD3205A207939ED(constcharp0)
    return native.call(0xEBD3205A207939ED, constcharp0)
end

function natives._0x97E7E2C04245115B(Anyp0)
    return native.call(0x97E7E2C04245115B, Anyp0)
end

function natives._0x916CA67D26FD1E37(constcharp0)
    return native.call(0x916CA67D26FD1E37, constcharp0)
end

function natives._0xEB078CA2B5E82ADD(constcharp0, constcharp1)
    return native.call(0xEB078CA2B5E82ADD, constcharp0, constcharp1)
end

function natives._0x703CC7F60CBB2B57(constcharp0)
    return native.call(0x703CC7F60CBB2B57, constcharp0)
end

function natives._0x8951EB9C6906D3C8()
    return native.call(0x8951EB9C6906D3C8)
end

function natives._0xBA4B8D83BDC75551(constcharp0)
    return native.call(0xBA4B8D83BDC75551, constcharp0)
end

function natives.HAS_RESUMED_FROM_SUSPEND()
    return native.call(0xE8B9C0EC9E183F35)
end

function natives._0x65D2EBB47E1CEC21(BOOLtoggle)
    return native.call(0x65D2EBB47E1CEC21, BOOLtoggle)
end

function natives._0x6F2135B6129620C1(BOOLtoggle)
    return native.call(0x6F2135B6129620C1, BOOLtoggle)
end

function natives._0x8D74E26F54B4E5C3(constcharp0)
    return native.call(0x8D74E26F54B4E5C3, constcharp0)
end

function natives.GET_BASE_ELEMENT_METADATA(Anyp0, Anyp1, Anyp2, BOOLp3)
    return native.call(0xB335F761606DB47C, Anyp0, Anyp1, Anyp2, BOOLp3)
end

function natives.GET_PREV_WEATHER_TYPE_HASH_NAME()
    return native.call(0x564B884A05EC45A3)
end

function natives.GET_NEXT_WEATHER_TYPE_HASH_NAME()
    return native.call(0x711327CD09C8F162)
end

function natives.IS_PREV_WEATHER_TYPE(constcharweatherType)
    return native.call(0x44F28F86433B10A9, constcharweatherType)
end

function natives.IS_NEXT_WEATHER_TYPE(constcharweatherType)
    return native.call(0x2FAA3A30BEC0F25D, constcharweatherType)
end

function natives.SET_WEATHER_TYPE_PERSIST(constcharweatherType)
    return native.call(0x704983DF373B198F, constcharweatherType)
end

function natives.SET_WEATHER_TYPE_NOW_PERSIST(constcharweatherType)
    return native.call(0xED712CA327900C8A, constcharweatherType)
end

function natives.SET_WEATHER_TYPE_NOW(constcharweatherType)
    return native.call(0x29B487C359E19889, constcharweatherType)
end

function natives.SET_WEATHER_TYPE_OVERTIME_PERSIST(constcharweatherType, floattime)
    return native.call(0xFB5045B7C42B75BF, constcharweatherType, floattime)
end

function natives.SET_RANDOM_WEATHER_TYPE()
    return native.call(0x8B05F884CF7E8020)
end

function natives.CLEAR_WEATHER_TYPE_PERSIST()
    return native.call(0xCCC39339BEF76CF5)
end

function natives.CLEAR_WEATHER_TYPE_OVERTIME_PERSIST(intmilliseconds)
    return native.call(0x0CF97F497FE7D048, intmilliseconds)
end

function natives.GET_WEATHER_TYPE_TRANSITION(HashweatherType1, HashweatherType2, floatpercentWeather2)
    return native.call(0xF3BBE884A14BB413, HashweatherType1, HashweatherType2, floatpercentWeather2)
end

function natives.SET_WEATHER_TYPE_TRANSITION(HashweatherType1, HashweatherType2, floatpercentWeather2)
    return native.call(0x578C752848ECFA0C, HashweatherType1, HashweatherType2, floatpercentWeather2)
end

function natives.SET_OVERRIDE_WEATHER(constcharweatherType)
    return native.call(0xA43D5C6FE51ADBEF, constcharweatherType)
end

function natives._0x1178E104409FE58C(constcharweatherType, BOOLp1)
    return native.call(0x1178E104409FE58C, constcharweatherType, BOOLp1)
end

function natives.CLEAR_OVERRIDE_WEATHER()
    return native.call(0x338D2E3477711050)
end

function natives.WATER_OVERRIDE_SET_SHOREWAVEAMPLITUDE(floatamplitude)
    return native.call(0xB8F87EAD7533B176, floatamplitude)
end

function natives.WATER_OVERRIDE_SET_SHOREWAVEMINAMPLITUDE(floatminAmplitude)
    return native.call(0xC3EAD29AB273ECE8, floatminAmplitude)
end

function natives.WATER_OVERRIDE_SET_SHOREWAVEMAXAMPLITUDE(floatmaxAmplitude)
    return native.call(0xA7A1127490312C36, floatmaxAmplitude)
end

function natives.WATER_OVERRIDE_SET_OCEANNOISEMINAMPLITUDE(floatminAmplitude)
    return native.call(0x31727907B2C43C55, floatminAmplitude)
end

function natives.WATER_OVERRIDE_SET_OCEANWAVEAMPLITUDE(floatamplitude)
    return native.call(0x405591EC8FD9096D, floatamplitude)
end

function natives.WATER_OVERRIDE_SET_OCEANWAVEMINAMPLITUDE(floatminAmplitude)
    return native.call(0xF751B16FB32ABC1D, floatminAmplitude)
end

function natives.WATER_OVERRIDE_SET_OCEANWAVEMAXAMPLITUDE(floatmaxAmplitude)
    return native.call(0xB3E6360DDE733E82, floatmaxAmplitude)
end

function natives.WATER_OVERRIDE_SET_RIPPLEBUMPINESS(floatbumpiness)
    return native.call(0x7C9C0B1EEB1F9072, floatbumpiness)
end

function natives.WATER_OVERRIDE_SET_RIPPLEMINBUMPINESS(floatminBumpiness)
    return native.call(0x6216B116083A7CB4, floatminBumpiness)
end

function natives.WATER_OVERRIDE_SET_RIPPLEMAXBUMPINESS(floatmaxBumpiness)
    return native.call(0x9F5E6BB6B34540DA, floatmaxBumpiness)
end

function natives.WATER_OVERRIDE_SET_RIPPLEDISTURB(floatdisturb)
    return native.call(0xB9854DFDE0D833D6, floatdisturb)
end

function natives.WATER_OVERRIDE_SET_STRENGTH(floatstrength)
    return native.call(0xC54A08C85AE4D410, floatstrength)
end

function natives.WATER_OVERRIDE_FADE_IN(floatp0)
    return native.call(0xA8434F1DFF41D6E7, floatp0)
end

function natives.WATER_OVERRIDE_FADE_OUT(floatp0)
    return native.call(0xC3C221ADDDE31A11, floatp0)
end

function natives.SET_WIND(floatspeed)
    return native.call(0xAC3A74E8384A9919, floatspeed)
end

function natives.SET_WIND_SPEED(floatspeed)
    return native.call(0xEE09ECEDBABE47FC, floatspeed)
end

function natives.GET_WIND_SPEED()
    return native.call(0xA8CF1CC0AFCD3F12)
end

function natives.SET_WIND_DIRECTION(floatdirection)
    return native.call(0xEB0F4468467B4528, floatdirection)
end

function natives.GET_WIND_DIRECTION()
    return native.call(0x1F400FEF721170DA)
end

function natives.SET_RAIN_LEVEL(floatintensity)
    return native.call(0x643E26EA6E024D92, floatintensity)
end

function natives.GET_RAIN_LEVEL()
    return native.call(0x96695E368AD855F3)
end

function natives.SET_SNOW_LEVEL(floatlevel)
    return native.call(0x7F06937B0CDCBC1A, floatlevel)
end

function natives.GET_SNOW_LEVEL()
    return native.call(0xC5868A966E5BE3AE)
end

function natives.FORCE_LIGHTNING_FLASH()
    return native.call(0xF6062E089251C898)
end

function natives._0x02DEAAC8F8EA7FE7(constcharp0)
    return native.call(0x02DEAAC8F8EA7FE7, constcharp0)
end

function natives.PRELOAD_CLOUD_HAT(constcharname)
    return native.call(0x11B56FBBF7224868, constcharname)
end

function natives.LOAD_CLOUD_HAT(constcharname, floattransitionTime)
    return native.call(0xFC4842A34657BFCB, constcharname, floattransitionTime)
end

function natives.UNLOAD_CLOUD_HAT(constcharname, floatp1)
    return native.call(0xA74802FB8D0B7814, constcharname, floatp1)
end

function natives.UNLOAD_ALL_CLOUD_HATS()
    return native.call(0x957E790EA1727B64)
end

function natives.SET_CLOUD_HAT_OPACITY(floatopacity)
    return native.call(0xF36199225D6D8C86, floatopacity)
end

function natives.GET_CLOUD_HAT_OPACITY()
    return native.call(0x20AC25E781AE4A84)
end

function natives.GET_GAME_TIMER()
    return native.call(0x9CD27B0045628463)
end

function natives.GET_FRAME_TIME()
    return native.call(0x15C40837039FFAF7)
end

function natives.GET_BENCHMARK_TIME()
    return native.call(0xE599A503B3837E1B)
end

function natives.GET_FRAME_COUNT()
    return native.call(0xFC8202EFC642E6F2)
end

function natives.GET_RANDOM_FLOAT_IN_RANGE(floatstartRange, floatendRange)
    return native.call(0x313CE5879CEB6FCD, floatstartRange, floatendRange)
end

function natives.GET_RANDOM_INT_IN_RANGE(intstartRange, intendRange)
    return native.call(0xD53343AA4FB7DD28, intstartRange, intendRange)
end

function natives.GET_RANDOM_INT_IN_RANGE_2(intstartRange, intendRange)
    return native.call(0xF2D49816A804D134, intstartRange, intendRange)
end

function natives.GET_GROUND_Z_FOR_3D_COORD(floatx, floaty, floatz, floatgroundZ, BOOLignoreWater, BOOLp5)
    return native.call(0xC906A7DAB05C8D2B, floatx, floaty, floatz, floatgroundZ, BOOLignoreWater, BOOLp5)
end

function natives.GET_GROUND_Z_AND_NORMAL_FOR_3D_COORD(floatx, floaty, floatz, floatgroundZ, Vector3normal)
    return native.call(0x8BDC7BFC57A81E76, floatx, floaty, floatz, floatgroundZ, Vector3normal)
end

function natives.GET_GROUND_Z_FOR_3D_COORD_2(floatx, floaty, floatz, floatgroundZ, BOOLp4, BOOLp5)
    return native.call(0x9E82F0F362881B29, floatx, floaty, floatz, floatgroundZ, BOOLp4, BOOLp5)
end

function natives.ASIN(floatp0)
    return native.call(0xC843060B5765DCE7, floatp0)
end

function natives.ACOS(floatp0)
    return native.call(0x1D08B970013C34B6, floatp0)
end

function natives.TAN(floatp0)
    return native.call(0x632106CC96E82E91, floatp0)
end

function natives.ATAN(floatp0)
    return native.call(0xA9D1795CD5043663, floatp0)
end

function natives.ATAN2(floatp0, floatp1)
    return native.call(0x8927CBF9D22261A4, floatp0, floatp1)
end

function natives.GET_DISTANCE_BETWEEN_COORDS(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLuseZ)
    return native.call(0xF1B760881820C952, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLuseZ)
end

function natives.GET_ANGLE_BETWEEN_2D_VECTORS(floatx1, floaty1, floatx2, floaty2)
    return native.call(0x186FC4BE848E1C92, floatx1, floaty1, floatx2, floaty2)
end

function natives.GET_HEADING_FROM_VECTOR_2D(floatdx, floatdy)
    return native.call(0x2FFB6B224F4B2926, floatdx, floatdy)
end

function natives.GET_PROGRESS_ALONG_LINE_BETWEEN_COORDS(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, BOOLclamp)
    return native.call(0x7F8F6405F4777AF6, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, BOOLclamp)
end

function natives.GET_CLOSEST_POINT_ON_LINE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, BOOLclamp)
    return native.call(0x21C235BC64831E5A, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, BOOLclamp)
end

function natives._0xF56DFB7B61BE7276(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, floatp10, floatp11, floatp12)
    return native.call(0xF56DFB7B61BE7276, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, floatp10, floatp11, floatp12)
end

function natives._0xA0AD167E4B39D9A2(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10, Anyp11, Anyp12, Anyp13)
    return native.call(0xA0AD167E4B39D9A2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10, Anyp11, Anyp12, Anyp13)
end

function natives.SET_BIT(intaddress, intoffset)
    return native.call(0x933D6A9EEC1BACD0, intaddress, intoffset)
end

function natives.CLEAR_BIT(intaddress, intoffset)
    return native.call(0xE80492A9AC099A93, intaddress, intoffset)
end

function natives.GET_HASH_KEY(constcharstring)
    return native.call(0xD24D37CC275948CC, constcharstring)
end

function natives.SLERP_NEAR_QUATERNION(floatt, floatx, floaty, floatz, floatw, floatx1, floaty1, floatz1, floatw1, floatoutX, floatoutY, floatoutZ, floatoutW)
    return native.call(0xF2F6A2FA49278625, floatt, floatx, floaty, floatz, floatw, floatx1, floaty1, floatz1, floatw1, floatoutX, floatoutY, floatoutZ, floatoutW)
end

function natives.IS_AREA_OCCUPIED(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, BOOLp7, BOOLp8, BOOLp9, BOOLp10, Anyp11, BOOLp12)
    return native.call(0xA61B4DF533DCB56E, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, BOOLp7, BOOLp8, BOOLp9, BOOLp10, Anyp11, BOOLp12)
end

function natives._0x39455BF4F4F55186(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10, Anyp11, Anyp12)
    return native.call(0x39455BF4F4F55186, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10, Anyp11, Anyp12)
end

function natives.IS_POSITION_OCCUPIED(floatx, floaty, floatz, floatrange, BOOLp4, BOOLcheckVehicles, BOOLcheckPeds, BOOLp7, BOOLp8, EntityignoreEntity, BOOLp10)
    return native.call(0xADCDE75E1C60F32D, floatx, floaty, floatz, floatrange, BOOLp4, BOOLcheckVehicles, BOOLcheckPeds, BOOLp7, BOOLp8, EntityignoreEntity, BOOLp10)
end

function natives.IS_POINT_OBSCURED_BY_A_MISSION_ENTITY(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
    return native.call(0xE54E209C35FFA18D, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
end

function natives.CLEAR_AREA(floatX, floatY, floatZ, floatradius, BOOLp4, BOOLignoreCopCars, BOOLignoreObjects, BOOLp7)
    return native.call(0xA56F01F3765B93A0, floatX, floatY, floatZ, floatradius, BOOLp4, BOOLignoreCopCars, BOOLignoreObjects, BOOLp7)
end

function natives.CLEAR_AREA_LEAVE_VEHICLE_HEALTH(floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, BOOLp6, BOOLp7)
    return native.call(0x957838AAF91BD12D, floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, BOOLp6, BOOLp7)
end

function natives.CLEAR_AREA_OF_VEHICLES(floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, BOOLp6, BOOLp7, BOOLp8, BOOLp9, Anyp10)
    return native.call(0x01C7B9B38428AEB6, floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, BOOLp6, BOOLp7, BOOLp8, BOOLp9, Anyp10)
end

function natives.CLEAR_ANGLED_AREA_OF_VEHICLES(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLp7, BOOLp8, BOOLp9, BOOLp10, BOOLp11, Anyp12, Anyp13)
    return native.call(0x11DB3500F042A8AA, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLp7, BOOLp8, BOOLp9, BOOLp10, BOOLp11, Anyp12, Anyp13)
end

function natives.CLEAR_AREA_OF_OBJECTS(floatx, floaty, floatz, floatradius, intflags)
    return native.call(0xDD9B9B385AAC7F5B, floatx, floaty, floatz, floatradius, intflags)
end

function natives.CLEAR_AREA_OF_PEDS(floatx, floaty, floatz, floatradius, intflags)
    return native.call(0xBE31FD6CE464AC59, floatx, floaty, floatz, floatradius, intflags)
end

function natives.CLEAR_AREA_OF_COPS(floatx, floaty, floatz, floatradius, intflags)
    return native.call(0x04F8FC8FCF58F88D, floatx, floaty, floatz, floatradius, intflags)
end

function natives.CLEAR_AREA_OF_PROJECTILES(floatx, floaty, floatz, floatradius, intflags)
    return native.call(0x0A1CB9094635D1A6, floatx, floaty, floatz, floatradius, intflags)
end

function natives._0x7EC6F9A478A6A512()
    return native.call(0x7EC6F9A478A6A512)
end

function natives.SET_SAVE_MENU_ACTIVE(BOOLignoreVehicle)
    return native.call(0xC9BF75D28165FF77, BOOLignoreVehicle)
end

function natives._0x397BAA01068BAA96()
    return native.call(0x397BAA01068BAA96)
end

function natives.SET_CREDITS_ACTIVE(BOOLtoggle)
    return native.call(0xB938B7E6D3C0620C, BOOLtoggle)
end

function natives._0xB51B9AB9EF81868C(BOOLtoggle)
    return native.call(0xB51B9AB9EF81868C, BOOLtoggle)
end

function natives.HAVE_CREDITS_REACHED_END()
    return native.call(0x075F1D57402C93BA)
end

function natives.TERMINATE_ALL_SCRIPTS_WITH_THIS_NAME(constcharscriptName)
    return native.call(0x9DC711BC69C548DF, constcharscriptName)
end

function natives.NETWORK_SET_SCRIPT_IS_SAFE_FOR_NETWORK_GAME()
    return native.call(0x9243BAC96D64C050)
end

function natives.ADD_HOSPITAL_RESTART(floatx, floaty, floatz, floatp3, Anyp4)
    return native.call(0x1F464EF988465A81, floatx, floaty, floatz, floatp3, Anyp4)
end

function natives.DISABLE_HOSPITAL_RESTART(inthospitalIndex, BOOLtoggle)
    return native.call(0xC8535819C450EBA8, inthospitalIndex, BOOLtoggle)
end

function natives.ADD_POLICE_RESTART(floatp0, floatp1, floatp2, floatp3, Anyp4)
    return native.call(0x452736765B31FC4B, floatp0, floatp1, floatp2, floatp3, Anyp4)
end

function natives.DISABLE_POLICE_RESTART(intpoliceIndex, BOOLtoggle)
    return native.call(0x23285DED6EBD7EA3, intpoliceIndex, BOOLtoggle)
end

function natives.SET_RESTART_CUSTOM_POSITION(floatx, floaty, floatz, floatheading)
    return native.call(0x706B5EDCAA7FA663, floatx, floaty, floatz, floatheading)
end

function natives.CLEAR_RESTART_CUSTOM_POSITION()
    return native.call(0xA2716D40842EAF79)
end

function natives.PAUSE_DEATH_ARREST_RESTART(BOOLtoggle)
    return native.call(0x2C2B3493FBF51C71, BOOLtoggle)
end

function natives.IGNORE_NEXT_RESTART(BOOLtoggle)
    return native.call(0x21FFB63D8C615361, BOOLtoggle)
end

function natives.SET_FADE_OUT_AFTER_DEATH(BOOLtoggle)
    return native.call(0x4A18E01DF2C87B86, BOOLtoggle)
end

function natives.SET_FADE_OUT_AFTER_ARREST(BOOLtoggle)
    return native.call(0x1E0B4DC0D990A4E7, BOOLtoggle)
end

function natives.SET_FADE_IN_AFTER_DEATH_ARREST(BOOLtoggle)
    return native.call(0xDA66D2796BA33F12, BOOLtoggle)
end

function natives.SET_FADE_IN_AFTER_LOAD(BOOLtoggle)
    return native.call(0xF3D78F59DFE18D79, BOOLtoggle)
end

function natives.REGISTER_SAVE_HOUSE(floatp0, floatp1, floatp2, floatp3, Anyp4, Anyp5, Anyp6)
    return native.call(0xC0714D0A7EEECA54, floatp0, floatp1, floatp2, floatp3, Anyp4, Anyp5, Anyp6)
end

function natives.SET_SAVE_HOUSE(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x4F548CABEAE553BC, Anyp0, BOOLp1, BOOLp2)
end

function natives.OVERRIDE_SAVE_HOUSE(BOOLp0, floatp1, floatp2, floatp3, floatp4, BOOLp5, floatp6, floatp7)
    return native.call(0x1162EA8AE9D24EEA, BOOLp0, floatp1, floatp2, floatp3, floatp4, BOOLp5, floatp6, floatp7)
end

function natives._0xA4A0065E39C9F25C(Vector3p0, floatp1, BOOLfadeInAfterLoad, BOOLp3)
    return native.call(0xA4A0065E39C9F25C, Vector3p0, floatp1, BOOLfadeInAfterLoad, BOOLp3)
end

function natives.DO_AUTO_SAVE()
    return native.call(0x50EEAAD86232EE55)
end

function natives.GET_IS_AUTO_SAVE_OFF()
    return native.call(0x6E04F06094C87047)
end

function natives.IS_AUTO_SAVE_IN_PROGRESS()
    return native.call(0x69240733738C19A0)
end

function natives.HAS_CODE_REQUESTED_AUTOSAVE()
    return native.call(0x2107A3773771186D)
end

function natives.CLEAR_CODE_REQUESTED_AUTOSAVE()
    return native.call(0x06462A961E94B67C)
end

function natives.BEGIN_REPLAY_STATS(Anyp0, Anyp1)
    return native.call(0xE0E500246FF73D66, Anyp0, Anyp1)
end

function natives.ADD_REPLAY_STAT_VALUE(Anyvalue)
    return native.call(0x69FE6DC87BD2A5E9, Anyvalue)
end

function natives.END_REPLAY_STATS()
    return native.call(0xA23E821FBDF8A5F2)
end

function natives.HAVE_REPLAY_STATS_BEEN_STORED()
    return native.call(0xD642319C54AADEB6)
end

function natives.GET_REPLAY_STAT_MISSION_ID()
    return native.call(0x5B1F2E327B6B6FE1)
end

function natives.GET_REPLAY_STAT_MISSION_TYPE()
    return native.call(0x2B626A0150E4D449)
end

function natives.GET_REPLAY_STAT_COUNT()
    return native.call(0xDC9274A7EF6B2867)
end

function natives.GET_REPLAY_STAT_AT_INDEX(intindex)
    return native.call(0x8098C8D6597AAE18, intindex)
end

function natives.CLEAR_REPLAY_STATS()
    return native.call(0x1B1AB132A16FDA55)
end

function natives.QUEUE_MISSION_REPEAT_LOAD()
    return native.call(0x72DE52178C291CB5)
end

function natives.QUEUE_MISSION_REPEAT_SAVE()
    return native.call(0x44A0BDC559B35F6E)
end

function natives._0xEB2104E905C6F2E9()
    return native.call(0xEB2104E905C6F2E9)
end

function natives.GET_STATUS_OF_MISSION_REPEAT_SAVE()
    return native.call(0x2B5E102E4A42F2BF)
end

function natives.IS_MEMORY_CARD_IN_USE()
    return native.call(0x8A75CE2956274ADD)
end

function natives.SHOOT_SINGLE_BULLET_BETWEEN_COORDS(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intdamage, BOOLp7, HashweaponHash, PedownerPed, BOOLisAudible, BOOLisInvisible, floatspeed)
    return native.call(0x867654CBC7606F2C, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intdamage, BOOLp7, HashweaponHash, PedownerPed, BOOLisAudible, BOOLisInvisible, floatspeed)
end

function natives.SHOOT_SINGLE_BULLET_BETWEEN_COORDS_IGNORE_ENTITY(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intdamage, BOOLp7, HashweaponHash, PedownerPed, BOOLisAudible, BOOLisInvisible, floatspeed, Entityentity, Anyp14)
    return native.call(0xE3A7742E0B7A2F8B, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intdamage, BOOLp7, HashweaponHash, PedownerPed, BOOLisAudible, BOOLisInvisible, floatspeed, Entityentity, Anyp14)
end

function natives.SHOOT_SINGLE_BULLET_BETWEEN_COORDS_IGNORE_ENTITY_NEW(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intdamage, BOOLp7, HashweaponHash, PedownerPed, BOOLisAudible, BOOLisInvisible, floatspeed, Entityentity, BOOLp14, BOOLp15, EntitytargetEntity, BOOLp17, Anyp18, Anyp19, Anyp20)
    return native.call(0xBFE5756E7407064A, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intdamage, BOOLp7, HashweaponHash, PedownerPed, BOOLisAudible, BOOLisInvisible, floatspeed, Entityentity, BOOLp14, BOOLp15, EntitytargetEntity, BOOLp17, Anyp18, Anyp19, Anyp20)
end

function natives.GET_MODEL_DIMENSIONS(HashmodelHash, Vector3minimum, Vector3maximum)
    return native.call(0x03E8D3D5F549087A, HashmodelHash, Vector3minimum, Vector3maximum)
end

function natives.SET_FAKE_WANTED_LEVEL(intfakeWantedLevel)
    return native.call(0x1454F2448DE30163, intfakeWantedLevel)
end

function natives.GET_FAKE_WANTED_LEVEL()
    return native.call(0x4C9296CBCD1B971E)
end

function natives.USING_MISSION_CREATOR(BOOLtoggle)
    return native.call(0xF14878FC50BEC6EE, BOOLtoggle)
end

function natives.ALLOW_MISSION_CREATOR_WARP(BOOLtoggle)
    return native.call(0xDEA36202FC3382DF, BOOLtoggle)
end

function natives.SET_MINIGAME_IN_PROGRESS(BOOLtoggle)
    return native.call(0x19E00D7322C6F85B, BOOLtoggle)
end

function natives.IS_MINIGAME_IN_PROGRESS()
    return native.call(0x2B4A15E44DE0F478)
end

function natives.IS_THIS_A_MINIGAME_SCRIPT()
    return native.call(0x7B30F65D7B710098)
end

function natives.IS_SNIPER_INVERTED()
    return native.call(0x61A23B7EDA9BDA24)
end

function natives.SHOULD_USE_METRIC_MEASUREMENTS()
    return native.call(0xD3D15555431AB793)
end

function natives.GET_PROFILE_SETTING(intprofileSetting)
    return native.call(0xC488FF2356EA7791, intprofileSetting)
end

function natives.ARE_STRINGS_EQUAL(constcharstring1, constcharstring2)
    return native.call(0x0C515FAB3FF9EA92, constcharstring1, constcharstring2)
end

function natives.COMPARE_STRINGS(constcharstr1, constcharstr2, BOOLmatchCase, intmaxLength)
    return native.call(0x1E34710ECD4AB0EB, constcharstr1, constcharstr2, BOOLmatchCase, intmaxLength)
end

function natives.ABSI(intvalue)
    return native.call(0xF0D31AD191A74F87, intvalue)
end

function natives.ABSF(floatvalue)
    return native.call(0x73D57CFFDD12C355, floatvalue)
end

function natives.IS_SNIPER_BULLET_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0xFEFCF11B01287125, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.IS_PROJECTILE_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLownedByPlayer)
    return native.call(0x5270A8FBC098C3F8, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLownedByPlayer)
end

function natives.IS_PROJECTILE_TYPE_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, inttype, BOOLownedByPlayer)
    return native.call(0x2E0DC353342C4A6D, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, inttype, BOOLownedByPlayer)
end

function natives.IS_PROJECTILE_TYPE_IN_ANGLED_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, Anyp7, BOOLownedByPlayer)
    return native.call(0xF0BC12401061DEA0, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, Anyp7, BOOLownedByPlayer)
end

function natives.IS_PROJECTILE_TYPE_WITHIN_DISTANCE(floatx, floaty, floatz, HashprojectileHash, floatradius, BOOLownedByPlayer)
    return native.call(0x34318593248C8FB2, floatx, floaty, floatz, HashprojectileHash, floatradius, BOOLownedByPlayer)
end

function natives.GET_COORDS_OF_PROJECTILE_TYPE_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, HashprojectileHash, Vector3projectilePos, BOOLownedByPlayer)
    return native.call(0x8D7A43EC6A5FEA45, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, HashprojectileHash, Vector3projectilePos, BOOLownedByPlayer)
end

function natives.GET_COORDS_OF_PROJECTILE_TYPE_WITHIN_DISTANCE(Pedped, HashweaponHash, floatdistance, Vector3outCoords, BOOLp4)
    return native.call(0xDFB4138EEFED7B81, Pedped, HashweaponHash, floatdistance, Vector3outCoords, BOOLp4)
end

function natives.GET_PROJECTILE_OF_PROJECTILE_TYPE_WITHIN_DISTANCE(Pedped, HashweaponHash, floatdistance, Vector3outCoords, ObjectoutProjectile, BOOLp5)
    return native.call(0x82FDE6A57EE4EE44, Pedped, HashweaponHash, floatdistance, Vector3outCoords, ObjectoutProjectile, BOOLp5)
end

function natives.IS_BULLET_IN_ANGLED_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLownedByPlayer)
    return native.call(0x1A8B5F3C01E2B477, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLownedByPlayer)
end

function natives.IS_BULLET_IN_AREA(floatx, floaty, floatz, floatradius, BOOLownedByPlayer)
    return native.call(0x3F2023999AD51C1F, floatx, floaty, floatz, floatradius, BOOLownedByPlayer)
end

function natives.IS_BULLET_IN_BOX(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLownedByPlayer)
    return native.call(0xDE0F6D7450D37351, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLownedByPlayer)
end

function natives.HAS_BULLET_IMPACTED_IN_AREA(floatx, floaty, floatz, floatp3, BOOLp4, BOOLp5)
    return native.call(0x9870ACFB89A90995, floatx, floaty, floatz, floatp3, BOOLp4, BOOLp5)
end

function natives.HAS_BULLET_IMPACTED_IN_BOX(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, BOOLp7)
    return native.call(0xDC8C5D7CFEAB8394, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, BOOLp7)
end

function natives.IS_ORBIS_VERSION()
    return native.call(0xA72BC0B675B1519E)
end

function natives.IS_DURANGO_VERSION()
    return native.call(0x4D982ADB1978442D)
end

function natives.IS_XBOX360_VERSION()
    return native.call(0xF6201B4DAF662A9D)
end

function natives.IS_PS3_VERSION()
    return native.call(0xCCA1072C29D096C2)
end

function natives.IS_PC_VERSION()
    return native.call(0x48AF36444B965238)
end

function natives._0x0A27B2B6282F7169()
    return native.call(0x0A27B2B6282F7169)
end

function natives.IS_AUSSIE_VERSION()
    return native.call(0x9F1935CA1F724008)
end

function natives.IS_JAPANESE_VERSION()
    return native.call(0xB8C0BB75D8A77DB3)
end

function natives._0x138679CA01E21F53()
    return native.call(0x138679CA01E21F53)
end

function natives._0xC545AB1CF97ABB34()
    return native.call(0xC545AB1CF97ABB34)
end

function natives._0xF911E695C1EB8518()
    return native.call(0xF911E695C1EB8518)
end

function natives._0x807ABE1AB65C24D2()
    return native.call(0x807ABE1AB65C24D2)
end

function natives.IS_STRING_NULL(constcharstring)
    return native.call(0xF22B6C47C6EAB066, constcharstring)
end

function natives.IS_STRING_NULL_OR_EMPTY(constcharstring)
    return native.call(0xCA042B6957743895, constcharstring)
end

function natives.STRING_TO_INT(constcharstring, intoutInteger)
    return native.call(0x5A5F40FE637EB584, constcharstring, intoutInteger)
end

function natives.SET_BITS_IN_RANGE(intvar, intrangeStart, intrangeEnd, intp3)
    return native.call(0x8EF07E15701D61ED, intvar, intrangeStart, intrangeEnd, intp3)
end

function natives.GET_BITS_IN_RANGE(intvar, intrangeStart, intrangeEnd)
    return native.call(0x53158863FCC0893A, intvar, intrangeStart, intrangeEnd)
end

function natives.ADD_STUNT_JUMP(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, floatx4, floaty4, floatz4, floatcamX, floatcamY, floatcamZ, intp15, intp16, intp17)
    return native.call(0x1A992DA297A4630C, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatx3, floaty3, floatz3, floatx4, floaty4, floatz4, floatcamX, floatcamY, floatcamZ, intp15, intp16, intp17)
end

function natives.ADD_STUNT_JUMP_ANGLED(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius1, floatx3, floaty3, floatz3, floatx4, floaty4, floatz4, floatradius2, floatcamX, floatcamY, floatcamZ, intp17, intp18, intp19)
    return native.call(0xBBE5D803A5360CBF, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius1, floatx3, floaty3, floatz3, floatx4, floaty4, floatz4, floatradius2, floatcamX, floatcamY, floatcamZ, intp17, intp18, intp19)
end

function natives._0xFB80AB299D2EE1BD(BOOLtoggle)
    return native.call(0xFB80AB299D2EE1BD, BOOLtoggle)
end

function natives.DELETE_STUNT_JUMP(intp0)
    return native.call(0xDC518000E39DAE1F, intp0)
end

function natives.ENABLE_STUNT_JUMP_SET(intp0)
    return native.call(0xE369A5783B866016, intp0)
end

function natives.DISABLE_STUNT_JUMP_SET(intp0)
    return native.call(0xA5272EBEDD4747F6, intp0)
end

function natives.SET_STUNT_JUMPS_CAN_TRIGGER(BOOLtoggle)
    return native.call(0xD79185689F8FD5DF, BOOLtoggle)
end

function natives.IS_STUNT_JUMP_IN_PROGRESS()
    return native.call(0x7A3F19700A4D0525)
end

function natives.IS_STUNT_JUMP_MESSAGE_SHOWING()
    return native.call(0x2272B0A1343129F4)
end

function natives.GET_NUM_SUCCESSFUL_STUNT_JUMPS()
    return native.call(0x996DD1E1E02F1008)
end

function natives.GET_TOTAL_SUCCESSFUL_STUNT_JUMPS()
    return native.call(0x6856EC3D35C81EA4)
end

function natives.CANCEL_STUNT_JUMP()
    return native.call(0xE6B7B0ACD4E4B75E)
end

function natives.SET_GAME_PAUSED(BOOLtoggle)
    return native.call(0x577D1284D6873711, BOOLtoggle)
end

function natives.SET_THIS_SCRIPT_CAN_BE_PAUSED(BOOLtoggle)
    return native.call(0xAA391C728106F7AF, BOOLtoggle)
end

function natives.SET_THIS_SCRIPT_CAN_REMOVE_BLIPS_CREATED_BY_ANY_SCRIPT(BOOLtoggle)
    return native.call(0xB98236CAAECEF897, BOOLtoggle)
end

function natives.HAS_BUTTON_COMBINATION_JUST_BEEN_ENTERED(Hashhash, intamount)
    return native.call(0x071E2A839DE82D90, Hashhash, intamount)
end

function natives.HAS_CHEAT_STRING_JUST_BEEN_ENTERED(Hashhash)
    return native.call(0x557E43C447E700A8, Hashhash)
end

function natives._0xFA3FFB0EEBC288A3(BOOLp0)
    return native.call(0xFA3FFB0EEBC288A3, BOOLp0)
end

function natives.SET_INSTANCE_PRIORITY_MODE(intp0)
    return native.call(0x9BAE5AD2508DF078, intp0)
end

function natives.SET_INSTANCE_PRIORITY_HINT(intflag)
    return native.call(0xC5F0A8EBD3F361CE, intflag)
end

function natives.IS_FRONTEND_FADING()
    return native.call(0x7EA2B6AF97ECA6ED)
end

function natives.POPULATE_NOW()
    return native.call(0x7472BB270D7B4F3E)
end

function natives.GET_INDEX_OF_CURRENT_LEVEL()
    return native.call(0xCBAD6729F7B1F4FC)
end

function natives.SET_GRAVITY_LEVEL(intlevel)
    return native.call(0x740E14FAD5842351, intlevel)
end

function natives.START_SAVE_DATA(Anyp0, Anyp1, BOOLp2)
    return native.call(0xA9575F812C6A7997, Anyp0, Anyp1, BOOLp2)
end

function natives.STOP_SAVE_DATA()
    return native.call(0x74E20C9145FB66FD)
end

function natives.GET_SIZE_OF_SAVE_DATA(BOOLp0)
    return native.call(0xA09F896CE912481F, BOOLp0)
end

function natives.REGISTER_INT_TO_SAVE(Anyp0, constcharname)
    return native.call(0x34C9EE5986258415, Anyp0, constcharname)
end

function natives.REGISTER_INT64_TO_SAVE(Anyp0, constcharname)
    return native.call(0xA735353C77334EA0, Anyp0, constcharname)
end

function natives.REGISTER_ENUM_TO_SAVE(Anyp0, constcharname)
    return native.call(0x10C2FA78D0E128A1, Anyp0, constcharname)
end

function natives.REGISTER_FLOAT_TO_SAVE(Anyp0, constcharname)
    return native.call(0x7CAEC29ECB5DFEBB, Anyp0, constcharname)
end

function natives.REGISTER_BOOL_TO_SAVE(Anyp0, constcharname)
    return native.call(0xC8F4131414C835A1, Anyp0, constcharname)
end

function natives.REGISTER_TEXT_LABEL_TO_SAVE(Anyp0, constcharname)
    return native.call(0xEDB1232C5BEAE62F, Anyp0, constcharname)
end

function natives.REGISTER_TEXT_LABEL_TO_SAVE_2(Anyp0, constcharname)
    return native.call(0x6F7794F28C6B2535, Anyp0, constcharname)
end

function natives._0x48F069265A0E4BEC(Anyp0, constcharname)
    return native.call(0x48F069265A0E4BEC, Anyp0, constcharname)
end

function natives._0x8269816F6CFD40F8(Anyp0, constcharname)
    return native.call(0x8269816F6CFD40F8, Anyp0, constcharname)
end

function natives._0xFAA457EF263E8763(Anyp0, constcharname)
    return native.call(0xFAA457EF263E8763, Anyp0, constcharname)
end

function natives.START_SAVE_STRUCT_WITH_SIZE(Anyp0, intsize, constcharstructName)
    return native.call(0xBF737600CDDBEADD, Anyp0, intsize, constcharstructName)
end

function natives.STOP_SAVE_STRUCT()
    return native.call(0xEB1774DF12BB9F12)
end

function natives.START_SAVE_ARRAY_WITH_SIZE(Anyp0, intsize, constchararrayName)
    return native.call(0x60FE567DF1B1AF9D, Anyp0, intsize, constchararrayName)
end

function natives.STOP_SAVE_ARRAY()
    return native.call(0x04456F95153C6BE4)
end

function natives.COPY_MEMORY(Anydst, Anysrc, intsize)
    return native.call(0x213AEB2B90CBA7AC, Anydst, Anysrc, intsize)
end

function natives.ENABLE_DISPATCH_SERVICE(intdispatchService, BOOLtoggle)
    return native.call(0xDC0F817884CDD856, intdispatchService, BOOLtoggle)
end

function natives.BLOCK_DISPATCH_SERVICE_RESOURCE_CREATION(intdispatchService, BOOLtoggle)
    return native.call(0x9B2BD3773123EA2F, intdispatchService, BOOLtoggle)
end

function natives.GET_NUM_DISPATCHED_UNITS_FOR_PLAYER(intdispatchService)
    return native.call(0xEB4A0C2D56441717, intdispatchService)
end

function natives.CREATE_INCIDENT(intdispatchService, floatx, floaty, floatz, intnumUnits, floatradius, intoutIncidentID, Anyp7, Anyp8)
    return native.call(0x3F892CAF67444AE7, intdispatchService, floatx, floaty, floatz, intnumUnits, floatradius, intoutIncidentID, Anyp7, Anyp8)
end

function natives.CREATE_INCIDENT_WITH_ENTITY(intdispatchService, Pedped, intnumUnits, floatradius, intoutIncidentID, Anyp5, Anyp6)
    return native.call(0x05983472F0494E60, intdispatchService, Pedped, intnumUnits, floatradius, intoutIncidentID, Anyp5, Anyp6)
end

function natives.DELETE_INCIDENT(intincidentId)
    return native.call(0x556C1AA270D5A207, intincidentId)
end

function natives.IS_INCIDENT_VALID(intincidentId)
    return native.call(0xC8BC6461E629BEAA, intincidentId)
end

function natives.SET_INCIDENT_REQUESTED_UNITS(intincidentId, intdispatchService, intnumUnits)
    return native.call(0xB08B85D860E7BA3C, intincidentId, intdispatchService, intnumUnits)
end

function natives.SET_INCIDENT_UNK(intincidentId, floatp1)
    return native.call(0xD261BA3E7E998072, intincidentId, floatp1)
end

function natives.FIND_SPAWN_POINT_IN_DIRECTION(floatposX, floatposY, floatposZ, floatfwdVecX, floatfwdVecY, floatfwdVecZ, floatdistance, Vector3spawnPoint)
    return native.call(0x6874E2190B0C1972, floatposX, floatposY, floatposZ, floatfwdVecX, floatfwdVecY, floatfwdVecZ, floatdistance, Vector3spawnPoint)
end

function natives.ADD_POP_MULTIPLIER_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatp6, floatp7, BOOLp8, BOOLp9)
    return native.call(0x67F6413D3220E18D, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatp6, floatp7, BOOLp8, BOOLp9)
end

function natives.DOES_POP_MULTIPLIER_AREA_EXIST(intid)
    return native.call(0x1327E2FE9746BAEE, intid)
end

function natives.REMOVE_POP_MULTIPLIER_AREA(intid, BOOLp1)
    return native.call(0xB129E447A2EDA4BF, intid, BOOLp1)
end

function natives.IS_POP_MULTIPLIER_AREA_UNK(intid)
    return native.call(0x1312F4B242609CE3, intid)
end

function natives.ADD_POP_MULTIPLIER_SPHERE(floatx, floaty, floatz, floatradius, floatpedMultiplier, floatvehicleMultiplier, BOOLp6, BOOLp7)
    return native.call(0x32C7A7E8C43A1F80, floatx, floaty, floatz, floatradius, floatpedMultiplier, floatvehicleMultiplier, BOOLp6, BOOLp7)
end

function natives.DOES_POP_MULTIPLIER_SPHERE_EXIST(intid)
    return native.call(0x171BAFB3C60389F4, intid)
end

function natives.REMOVE_POP_MULTIPLIER_SPHERE(intid, BOOLp1)
    return native.call(0xE6869BECDD8F2403, intid, BOOLp1)
end

function natives.ENABLE_TENNIS_MODE(Pedped, BOOLtoggle, BOOLp2)
    return native.call(0x28A04B411933F8A6, Pedped, BOOLtoggle, BOOLp2)
end

function natives.IS_TENNIS_MODE(Pedped)
    return native.call(0x5D5479D115290C3F, Pedped)
end

function natives.PLAY_TENNIS_SWING_ANIM(Pedped, constcharanimDict, constcharanimName, floatp3, floatp4, BOOLp5)
    return native.call(0xE266ED23311F24D4, Pedped, constcharanimDict, constcharanimName, floatp3, floatp4, BOOLp5)
end

function natives.GET_TENNIS_SWING_ANIM_COMPLETE(Pedped)
    return native.call(0x17DF68D720AA77F8, Pedped)
end

function natives.GET_TENNIS_SWING_ANIM_CAN_BE_INTERRUPTED(Pedped)
    return native.call(0x19BFED045C647C49, Pedped)
end

function natives._0xE95B0C7D5BA3B96B(Pedped)
    return native.call(0xE95B0C7D5BA3B96B, Pedped)
end

function natives.PLAY_TENNIS_DIVE_ANIM(Pedped, intp1, floatp2, floatp3, floatp4, BOOLp5)
    return native.call(0x8FA9C42FC5D7C64B, Pedped, intp1, floatp2, floatp3, floatp4, BOOLp5)
end

function natives.SET_TENNIS_MOVE_NETWORK_SIGNAL_FLOAT(Pedped, constcharp1, floatp2)
    return native.call(0x54F157E0336A3822, Pedped, constcharp1, floatp2)
end

function natives.RESET_DISPATCH_SPAWN_LOCATION()
    return native.call(0x5896F2BD5683A4E1)
end

function natives.SET_DISPATCH_SPAWN_LOCATION(floatx, floaty, floatz)
    return native.call(0xD10F442036302D50, floatx, floaty, floatz)
end

function natives.RESET_DISPATCH_IDEAL_SPAWN_DISTANCE()
    return native.call(0x77A84429DD9F0A15)
end

function natives.SET_DISPATCH_IDEAL_SPAWN_DISTANCE(floatp0)
    return native.call(0x6FE601A64180D423, floatp0)
end

function natives.RESET_DISPATCH_TIME_BETWEEN_SPAWN_ATTEMPTS(Anyp0)
    return native.call(0xEB2DB0CAD13154B3, Anyp0)
end

function natives.SET_DISPATCH_TIME_BETWEEN_SPAWN_ATTEMPTS(Anyp0, floatp1)
    return native.call(0x44F7CBC1BEB3327D, Anyp0, floatp1)
end

function natives.SET_DISPATCH_TIME_BETWEEN_SPAWN_ATTEMPTS_MULTIPLIER(Anyp0, floatp1)
    return native.call(0x48838ED9937A15D1, Anyp0, floatp1)
end

function natives.ADD_DISPATCH_SPAWN_ANGLED_BLOCKING_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth)
    return native.call(0x918C7B2D2FF3928B, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth)
end

function natives.ADD_DISPATCH_SPAWN_BLOCKING_AREA(floatx1, floaty1, floatx2, floaty2)
    return native.call(0x2D4259F1FEB81DA9, floatx1, floaty1, floatx2, floaty2)
end

function natives.REMOVE_DISPATCH_SPAWN_BLOCKING_AREA(Anyp0)
    return native.call(0x264AC28B01B353A5, Anyp0)
end

function natives.RESET_DISPATCH_SPAWN_BLOCKING_AREAS()
    return native.call(0xAC7BFD5C1D83EA75)
end

function natives._0xD9F692D349249528()
    return native.call(0xD9F692D349249528)
end

function natives._0xE532EC1A63231B4F(intp0, intp1)
    return native.call(0xE532EC1A63231B4F, intp0, intp1)
end

function natives.ADD_TACTICAL_NAV_MESH_POINT(floatx, floaty, floatz)
    return native.call(0xB8721407EE9C3FF6, floatx, floaty, floatz)
end

function natives.CLEAR_TACTICAL_NAV_MESH_POINTS()
    return native.call(0xB3CD58CCA6CDA852)
end

function natives.SET_RIOT_MODE_ENABLED(BOOLtoggle)
    return native.call(0x2587A48BC88DFADF, BOOLtoggle)
end

function natives.DISPLAY_ONSCREEN_KEYBOARD_WITH_LONGER_INITIAL_STRING(intp0, constcharwindowTitle, Anyp2, constchardefaultText, constchardefaultConcat1, constchardefaultConcat2, constchardefaultConcat3, constchardefaultConcat4, constchardefaultConcat5, constchardefaultConcat6, constchardefaultConcat7, intmaxInputLength)
    return native.call(0xCA78CFA0366592FE, intp0, constcharwindowTitle, Anyp2, constchardefaultText, constchardefaultConcat1, constchardefaultConcat2, constchardefaultConcat3, constchardefaultConcat4, constchardefaultConcat5, constchardefaultConcat6, constchardefaultConcat7, intmaxInputLength)
end

function natives.DISPLAY_ONSCREEN_KEYBOARD(intp0, constcharwindowTitle, constcharp2, constchardefaultText, constchardefaultConcat1, constchardefaultConcat2, constchardefaultConcat3, intmaxInputLength)
    return native.call(0x00DC833F2568DBF6, intp0, constcharwindowTitle, constcharp2, constchardefaultText, constchardefaultConcat1, constchardefaultConcat2, constchardefaultConcat3, intmaxInputLength)
end

function natives.UPDATE_ONSCREEN_KEYBOARD()
    return native.call(0x0CF2B696BBF945AE)
end

function natives.GET_ONSCREEN_KEYBOARD_RESULT()
    return native.call(0x8362B09B91893647)
end

function natives.CANCEL_ONSCREEN_KEYBOARD()
    return native.call(0x58A39BE597CE99CD)
end

function natives.NEXT_ONSCREEN_KEYBOARD_RESULT_WILL_DISPLAY_USING_THESE_FONTS(intp0)
    return native.call(0x3ED1438C1F5C6612, intp0)
end

function natives.ACTION_MANAGER_ENABLE_ACTION(Hashhash, BOOLenable)
    return native.call(0xA6A12939F16D85BE, Hashhash, BOOLenable)
end

function natives._0x3F60413F5DF65748()
    return native.call(0x3F60413F5DF65748)
end

function natives._0x1EAE0A6E978894A2(intp0, BOOLp1)
    return native.call(0x1EAE0A6E978894A2, intp0, BOOLp1)
end

function natives.SET_EXPLOSIVE_AMMO_THIS_FRAME(Playerplayer)
    return native.call(0xA66C71C98D5F2CFB, Playerplayer)
end

function natives.SET_FIRE_AMMO_THIS_FRAME(Playerplayer)
    return native.call(0x11879CDD803D30F4, Playerplayer)
end

function natives.SET_EXPLOSIVE_MELEE_THIS_FRAME(Playerplayer)
    return native.call(0xFF1BED81BFDC0FE0, Playerplayer)
end

function natives.SET_SUPER_JUMP_THIS_FRAME(Playerplayer)
    return native.call(0x57FFF03E423A4C0B, Playerplayer)
end

function natives.SET_BEAST_MODE_ACTIVE(Playerplayer)
    return native.call(0x438822C279B73B93, Playerplayer)
end

function natives.SET_FORCE_PLAYER_TO_JUMP(Playerplayer)
    return native.call(0xA1183BCFEE0F93D1, Playerplayer)
end

function natives.HAS_GAME_INSTALLED_THIS_SESSION()
    return native.call(0x6FDDF453C0C756EC)
end

function natives._0xFB00CA71DA386228()
    return native.call(0xFB00CA71DA386228)
end

function natives.ARE_PROFILE_SETTINGS_VALID()
    return native.call(0x5AA3BEFA29F03AD4)
end

function natives._0xE3D969D2785FFB5E()
    return native.call(0xE3D969D2785FFB5E)
end

function natives.FORCE_GAME_STATE_PLAYING()
    return native.call(0xC0AA53F866B3134D)
end

function natives.SCRIPT_RACE_INIT(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0A60017F841A54F2, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SCRIPT_RACE_SHUTDOWN()
    return native.call(0x1FF6BF9A63E5757F)
end

function natives._0x1BB299305C3E8C13(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x1BB299305C3E8C13, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SCRIPT_RACE_GET_PLAYER_SPLIT_TIME(Playerplayer, intp1, intp2)
    return native.call(0x8EF5573A1F801A5C, Playerplayer, intp1, intp2)
end

function natives.START_BENCHMARK_RECORDING()
    return native.call(0x92790862E36C2ADA)
end

function natives.STOP_BENCHMARK_RECORDING()
    return native.call(0xC7DB36C24634F52B)
end

function natives.RESET_BENCHMARK_RECORDING()
    return native.call(0x437138B6A830166A)
end

function natives.SAVE_BENCHMARK_RECORDING()
    return native.call(0x37DEB0AA183FB6D8)
end

function natives.UI_IS_SINGLEPLAYER_PAUSE_MENU_ACTIVE()
    return native.call(0xEA2F2061875EED90)
end

function natives.LANDING_MENU_IS_ACTIVE()
    return native.call(0x3BBBD13E5041A79E)
end

function natives.IS_COMMAND_LINE_BENCHMARK_VALUE_SET()
    return native.call(0xA049A5BE0F04F2F8)
end

function natives.GET_BENCHMARK_ITERATIONS_FROM_COMMAND_LINE()
    return native.call(0x4750FC27570311EC)
end

function natives.GET_BENCHMARK_PASS_FROM_COMMAND_LINE()
    return native.call(0x1B2366C3F2A5C8DF)
end

function natives.RESTART_GAME()
    return native.call(0xE574A662ACAEFBB1)
end

function natives.FORCE_SOCIAL_CLUB_UPDATE()
    return native.call(0xEB6891F03362FB12)
end

function natives.HAS_ASYNC_INSTALL_FINISHED()
    return native.call(0x14832BF2ABA53FC5)
end

function natives.CLEANUP_ASYNC_INSTALL()
    return native.call(0xC79AE21974B01FB2)
end

function natives.IS_IN_POWER_SAVING_MODE()
    return native.call(0x684A41975F077262)
end

function natives.GET_POWER_SAVING_MODE_DURATION()
    return native.call(0xABB2FA71C83A1B72)
end

function natives.SET_PLAYER_IS_IN_ANIMAL_FORM(BOOLtoggle)
    return native.call(0x4EBB7E87AA0DBED4, BOOLtoggle)
end

function natives.GET_IS_PLAYER_IN_ANIMAL_FORM()
    return native.call(0x9689123E3F213AA5)
end

function natives.SET_PLAYER_ROCKSTAR_EDITOR_DISABLED(BOOLtoggle)
    return native.call(0x9D8D44ADBBA61EF2, BOOLtoggle)
end

function natives._0x23227DF0B2115469()
    return native.call(0x23227DF0B2115469)
end

function natives._0xD10282B6E3751BA0()
    return native.call(0xD10282B6E3751BA0)
end

function natives._0x693478ACBD7F18E7()
    return native.call(0x693478ACBD7F18E7)
end

function natives.SET_CONTENT_MAP_INDEX(HashcontentId, intindex)
    return native.call(0x4B82FA6F2D624634, HashcontentId, intindex)
end

function natives.GET_CONTENT_MAP_INDEX(HashcontentId)
    return native.call(0xECF041186C5A94DC, HashcontentId)
end

function natives.CREATE_MOBILE_PHONE(intphoneType)
    return native.call(0xA4E8E696C532FBC7, intphoneType)
end

function natives.DESTROY_MOBILE_PHONE()
    return native.call(0x3BC861DF703E5097)
end

function natives.SET_MOBILE_PHONE_SCALE(floatscale)
    return native.call(0xCBDD322A73D6D932, floatscale)
end

function natives.SET_MOBILE_PHONE_ROTATION(floatrotX, floatrotY, floatrotZ, Anyp3)
    return native.call(0xBB779C0CA917E865, floatrotX, floatrotY, floatrotZ, Anyp3)
end

function natives.GET_MOBILE_PHONE_ROTATION(Vector3rotation, Vehiclep1)
    return native.call(0x1CEFB61F193070AE, Vector3rotation, Vehiclep1)
end

function natives.SET_MOBILE_PHONE_POSITION(floatposX, floatposY, floatposZ)
    return native.call(0x693A5C6D6734085B, floatposX, floatposY, floatposZ)
end

function natives.GET_MOBILE_PHONE_POSITION(Vector3position)
    return native.call(0x584FDFDA48805B86, Vector3position)
end

function natives.SCRIPT_IS_MOVING_MOBILE_PHONE_OFFSCREEN(BOOLtoggle)
    return native.call(0xF511F759238A5122, BOOLtoggle)
end

function natives.CAN_PHONE_BE_SEEN_ON_SCREEN()
    return native.call(0xC4E2813898C97A4B)
end

function natives.SET_MOBILE_PHONE_UNK(BOOLtoggle)
    return native.call(0x375A706A5C2FD084, BOOLtoggle)
end

function natives.CELL_CAM_MOVE_FINGER(intdirection)
    return native.call(0x95C9E72F3D7DEC9B, intdirection)
end

function natives.CELL_CAM_SET_LEAN(BOOLtoggle)
    return native.call(0x44E44169EF70138E, BOOLtoggle)
end

function natives.CELL_CAM_ACTIVATE(BOOLp0, BOOLp1)
    return native.call(0xFDE8F069C542D126, BOOLp0, BOOLp1)
end

function natives.CELL_CAM_DISABLE_THIS_FRAME(BOOLtoggle)
    return native.call(0x015C49A93E3E086E, BOOLtoggle)
end

function natives._0xA2CCBE62CD4C91A4(BOOLtoggle)
    return native.call(0xA2CCBE62CD4C91A4, BOOLtoggle)
end

function natives._0x1B0B4AEED5B9B41C(floatp0)
    return native.call(0x1B0B4AEED5B9B41C, floatp0)
end

function natives._0x53F4892D18EC90A4(floatp0)
    return native.call(0x53F4892D18EC90A4, floatp0)
end

function natives._0x3117D84EFA60F77B(floatp0)
    return native.call(0x3117D84EFA60F77B, floatp0)
end

function natives._0x15E69E2802C24B8D(floatp0)
    return native.call(0x15E69E2802C24B8D, floatp0)
end

function natives._0xAC2890471901861C(floatp0)
    return native.call(0xAC2890471901861C, floatp0)
end

function natives._0xD6ADE981781FCA09(floatp0)
    return native.call(0xD6ADE981781FCA09, floatp0)
end

function natives._0xF1E22DC13F5EEBAD(floatp0)
    return native.call(0xF1E22DC13F5EEBAD, floatp0)
end

function natives._0x466DA42C89865553(floatp0)
    return native.call(0x466DA42C89865553, floatp0)
end

function natives.CELL_CAM_IS_CHAR_VISIBLE_NO_FACE_CHECK(Entityentity)
    return native.call(0x439E9BC95B7E7FBE, Entityentity)
end

function natives.GET_MOBILE_PHONE_RENDER_ID(intrenderId)
    return native.call(0xB4A53E05F68B6FA1, intrenderId)
end

function natives.NETWORK_INITIALIZE_CASH(intwallet, intbank)
    return native.call(0x3DA5ECD1A56CBA6D, intwallet, intbank)
end

function natives.NETWORK_DELETE_CHARACTER(intcharacterSlot, BOOLp1, BOOLp2)
    return native.call(0x05A50AF38947EB8D, intcharacterSlot, BOOLp1, BOOLp2)
end

function natives.NETWORK_MANUAL_DELETE_CHARACTER(intcharacterSlot)
    return native.call(0x821418C727FCACD7, intcharacterSlot)
end

function natives.NETWORK_GET_PLAYER_IS_HIGH_EARNER()
    return native.call(0xFB2456B2040A6A67)
end

function natives.NETWORK_CLEAR_CHARACTER_WALLET(intcharacterSlot)
    return native.call(0xA921DED15FDF28F5, intcharacterSlot)
end

function natives.NETWORK_GIVE_PLAYER_JOBSHARE_CASH(intamount, AnygamerHandle)
    return native.call(0xFB18DF9CB95E0105, intamount, AnygamerHandle)
end

function natives.NETWORK_RECEIVE_PLAYER_JOBSHARE_CASH(intvalue, AnygamerHandle)
    return native.call(0x56A3B51944C50598, intvalue, AnygamerHandle)
end

function natives.NETWORK_CAN_SHARE_JOB_CASH()
    return native.call(0x1C2473301B1C66BA)
end

function natives.NETWORK_REFUND_CASH(intindex, constcharcontext, constcharreason, BOOLunk)
    return native.call(0xF9C812CD7C46E817, intindex, constcharcontext, constcharreason, BOOLunk)
end

function natives.NETWORK_DEDUCT_CASH(intamount, constcharp1, constcharp2, BOOLp3, BOOLp4, BOOLp5)
    return native.call(0x18B7AE224B087E26, intamount, constcharp1, constcharp2, BOOLp3, BOOLp4, BOOLp5)
end

function natives.NETWORK_MONEY_CAN_BET(intamount, BOOLp1, BOOLp2)
    return native.call(0x81404F3DC124FE5B, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_CAN_BET(intamount)
    return native.call(0x3A54E33660DED67F, intamount)
end

function natives.NETWORK_CASINO_CAN_USE_GAMBLING_TYPE(Hashhash)
    return native.call(0x158C16F5E4CF41F8, Hashhash)
end

function natives.NETWORK_CASINO_CAN_PURCHASE_CHIPS_WITH_PVC()
    return native.call(0x394DCDB9E836B7A9)
end

function natives.NETWORK_CASINO_CAN_GAMBLE(Anyp0)
    return native.call(0xF62F6D9528358FE4, Anyp0)
end

function natives.NETWORK_CASINO_CAN_PURCHASE_CHIPS_WITH_PVC_2()
    return native.call(0x8968D4D8C6C40C11)
end

function natives.NETWORK_CASINO_PURCHASE_CHIPS(intp0, intp1)
    return native.call(0x3BD101471C7F9EEC, intp0, intp1)
end

function natives.NETWORK_CASINO_SELL_CHIPS(intp0, intp1)
    return native.call(0xED44897CB336F480, intp0, intp1)
end

function natives._0xCD0F5B5D932AE473()
    return native.call(0xCD0F5B5D932AE473)
end

function natives.CAN_PAY_GOON(intp0, intp1, intamount, intp3)
    return native.call(0x9777734DAD16992F, intp0, intp1, intamount, intp3)
end

function natives.NETWORK_EARN_FROM_PICKUP(intamount)
    return native.call(0xED1517D3AF17C698, intamount)
end

function natives.NETWORK_EARN_FROM_CASHING_OUT(intamount)
    return native.call(0x718FBBF67414FA36, intamount)
end

function natives.NETWORK_EARN_FROM_GANGATTACK_PICKUP(intamount)
    return native.call(0xA03D4ACE0A3284CE, intamount)
end

function natives.NETWORK_EARN_FROM_ASSASSINATE_TARGET_KILLED(intamount)
    return native.call(0xFA700D8A9905F78A, intamount)
end

function natives.NETWORK_EARN_FROM_ARMOUR_TRUCK(intamount)
    return native.call(0xF514621E8EA463D0, intamount)
end

function natives.NETWORK_EARN_FROM_CRATE_DROP(intamount)
    return native.call(0xB1CC1B9EC3007A2A, intamount)
end

function natives.NETWORK_EARN_FROM_BETTING(intamount, constcharp1)
    return native.call(0x827A5BA1A44ACA6D, intamount, constcharp1)
end

function natives.NETWORK_EARN_FROM_JOB(intamount, constcharp1)
    return native.call(0xB2CC4836834E8A98, intamount, constcharp1)
end

function natives.NETWORK_EARN_FROM_JOB_X2(intamount, constcharp1)
    return native.call(0xDEBBF584665411D0, intamount, constcharp1)
end

function natives.NETWORK_EARN_FROM_PREMIUM_JOB(intamount, constcharp1)
    return native.call(0xC8407624CEF2354B, intamount, constcharp1)
end

function natives.NETWORK_EARN_FROM_BEND_JOB(intamount, constcharheistHash)
    return native.call(0x61326EE6DF15B0CA, intamount, constcharheistHash)
end

function natives.NETWORK_EARN_FROM_CHALLENGE_WIN(Anyp0, Anyp1, BOOLp2)
    return native.call(0x2B171E6B2F64D8DF, Anyp0, Anyp1, BOOLp2)
end

function natives.NETWORK_EARN_FROM_BOUNTY(intamount, AnygamerHandle, Anyp2, Anyp3)
    return native.call(0x131BB5DA15453ACF, intamount, AnygamerHandle, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_IMPORT_EXPORT(intamount, HashmodelHash)
    return native.call(0xF92A014A634442D6, intamount, HashmodelHash)
end

function natives.NETWORK_EARN_FROM_HOLDUPS(intamount)
    return native.call(0x45B8154E077D9E4D, intamount)
end

function natives.NETWORK_EARN_FROM_PROPERTY(intamount, HashpropertyName)
    return native.call(0x849648349D77F5C5, intamount, HashpropertyName)
end

function natives.NETWORK_EARN_FROM_AI_TARGET_KILL(Anyp0, Anyp1)
    return native.call(0x515B4A22E4D3C6D7, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_NOT_BADSPORT(intamount)
    return native.call(0x4337511FA8221D36, intamount)
end

function natives.NETWORK_EARN_FROM_ROCKSTAR(intamount)
    return native.call(0x02CE1D6AC0FC73EA, intamount)
end

function natives.NETWORK_EARN_FROM_VEHICLE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
    return native.call(0xB539BD8A4C1EECF8, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
end

function natives.NETWORK_EARN_FROM_PERSONAL_VEHICLE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0x3F4D00167E41E0AD, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives.NETWORK_EARN_FROM_DAILY_OBJECTIVES(intp0, constcharp1, intp2)
    return native.call(0x6EA318C91C1A8786, intp0, constcharp1, intp2)
end

function natives.NETWORK_EARN_FROM_AMBIENT_JOB(intp0, constcharp1, Anyp2)
    return native.call(0xFB6DB092FBAE29E6, intp0, constcharp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_JOB_BONUS(Anyp0, Anyp1, Anyp2)
    return native.call(0x6816FB4416760775, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_CRIMINAL_MASTERMIND_BONUS(Anyp0, Anyp1, Anyp2)
    return native.call(0xFA009A62990671D4, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_JOB_BONUS_HEIST_AWARD(Anyp0, Anyp1, Anyp2)
    return native.call(0x9D4FDBB035229669, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_JOB_BONUS_FIRST_TIME_BONUS(Anyp0, Anyp1, Anyp2)
    return native.call(0x11B0A20C493F7E36, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_GOON(Anyp0, Anyp1, Anyp2)
    return native.call(0xCDA1C62BE2777802, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_BOSS(Anyp0, Anyp1, Anyp2)
    return native.call(0x08B0CA7A6AB3AC32, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_BOSS_AGENCY(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0CB1BE0633C024A8, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_WAREHOUSE(intamount, intid)
    return native.call(0x3E4ADAFF1830F146, intamount, intid)
end

function natives.NETWORK_EARN_FROM_CONTRABAND(intamount, Anyp1)
    return native.call(0xECA658CE2A4E5A72, intamount, Anyp1)
end

function natives.NETWORK_EARN_FROM_DESTROYING_CONTRABAND(Anyp0)
    return native.call(0x84C0116D012E8FC2, Anyp0)
end

function natives._0x6B7E4FB50D5F3D65(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x6B7E4FB50D5F3D65, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives._0x31BA138F6304FB9F(Anyp0, Anyp1)
    return native.call(0x31BA138F6304FB9F, Anyp0, Anyp1)
end

function natives._0x55A1E095DB052FA5(Anyp0, Anyp1)
    return native.call(0x55A1E095DB052FA5, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_BUSINESS_PRODUCT(intamount, Anyp1, Anyp2, Anyp3)
    return native.call(0x8586789730B10CAF, intamount, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_VEHICLE_EXPORT(intamount, Anyp1, Anyp2)
    return native.call(0xEDEAD9A91EC768B3, intamount, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_SMUGGLING(intamount, Anyp1, Anyp2, Anyp3)
    return native.call(0xDEE612F2D71B0308, intamount, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_BOUNTY_HUNTER_REWARD(Anyp0)
    return native.call(0xF6B170F9A02E9E87, Anyp0)
end

function natives.NETWORK_EARN_FROM_BUSINESS_BATTLE(Anyp0)
    return native.call(0x42FCE14F50F27291, Anyp0)
end

function natives.NETWORK_EARN_FROM_CLUB_MANAGEMENT_PARTICIPATION(Anyp0)
    return native.call(0xA75EAC69F59E96E7, Anyp0)
end

function natives.NETWORK_EARN_FROM_FMBB_PHONECALL_MISSION(Anyp0)
    return native.call(0xC5156361F26E2212, Anyp0)
end

function natives.NETWORK_EARN_FROM_BUSINESS_HUB_SELL(Anyp0, Anyp1, Anyp2)
    return native.call(0x0B39CF0D53F1C883, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_FMBB_BOSS_WORK(Anyp0)
    return native.call(0x1FDA0AA679C9919B, Anyp0)
end

function natives.NETWORK_EARN_FMBB_WAGE_BONUS(Anyp0)
    return native.call(0xFFFBA1B1F7C0B6F4, Anyp0)
end

function natives.NETWORK_CAN_SPEND_MONEY(Anyp0, BOOLp1, BOOLp2, BOOLp3, Anyp4, Anyp5)
    return native.call(0xAB3CAA6B422164DA, Anyp0, BOOLp1, BOOLp2, BOOLp3, Anyp4, Anyp5)
end

function natives.NETWORK_CAN_SPEND_MONEY_2(Anyp0, BOOLp1, BOOLp2, BOOLp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x7303E27CC6532080, Anyp0, BOOLp1, BOOLp2, BOOLp3, Anyp4, Anyp5, Anyp6)
end

function natives.NETWORK_BUY_ITEM(intamount, Hashitem, Anyp2, Anyp3, BOOLp4, constcharitem_name, Anyp6, Anyp7, Anyp8, BOOLp9)
    return native.call(0xF0077C797F66A355, intamount, Hashitem, Anyp2, Anyp3, BOOLp4, constcharitem_name, Anyp6, Anyp7, Anyp8, BOOLp9)
end

function natives.NETWORK_SPENT_TAXI(intamount, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x17C3A7D31EAE39F9, intamount, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_PAY_EMPLOYEE_WAGE(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x5FD5ED82CBBE9989, Anyp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_PAY_MATCH_ENTRY_FEE(intamount, constcharmatchId, BOOLp2, BOOLp3)
    return native.call(0x9346E14F2AF74D46, intamount, constcharmatchId, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_BETTING(intamount, intp1, constcharmatchId, BOOLp3, BOOLp4)
    return native.call(0x1C436FD11FFA692F, intamount, intp1, constcharmatchId, BOOLp3, BOOLp4)
end

function natives.NETWORK_SPENT_WAGER(Anyp0, Anyp1, intamount)
    return native.call(0xD99DB210089617FE, Anyp0, Anyp1, intamount)
end

function natives.NETWORK_SPENT_IN_STRIPCLUB(Anyp0, BOOLp1, Anyp2, BOOLp3)
    return native.call(0xEE99784E4467689C, Anyp0, BOOLp1, Anyp2, BOOLp3)
end

function natives.NETWORK_BUY_HEALTHCARE(intcost, BOOLp1, BOOLp2)
    return native.call(0xD9B067E55253E3DD, intcost, BOOLp1, BOOLp2)
end

function natives.NETWORK_BUY_AIRSTRIKE(intcost, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x763B4BD305338F19, intcost, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_BUY_BACKUP_GANG(intp0, intp1, BOOLp2, BOOLp3)
    return native.call(0xA3EDDAA42411D3B9, intp0, intp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_BUY_HELI_STRIKE(intcost, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x81AA4610E3FD3A69, intcost, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_AMMO_DROP(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xB162DC95C0A3317B, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_BUY_BOUNTY(intamount, Playervictim, BOOLp2, BOOLp3, Anyp4)
    return native.call(0x7B718E197453F2D9, intamount, Playervictim, BOOLp2, BOOLp3, Anyp4)
end

function natives.NETWORK_BUY_PROPERTY(intcost, HashpropertyName, BOOLp2, BOOLp3)
    return native.call(0x650A08A280870AF6, intcost, HashpropertyName, BOOLp2, BOOLp3)
end

function natives.NETWORK_BUY_SMOKES(intp0, BOOLp1, BOOLp2)
    return native.call(0x75AF80E61248EEBD, intp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_HELI_PICKUP(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x7BF1D73DB2ECA492, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_BOAT_PICKUP(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x524EE43A37232C00, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_BULL_SHARK(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xA6DD8458CE24012C, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_CASH_DROP(intamount, BOOLp1, BOOLp2)
    return native.call(0x289016EC778D60E0, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_HIRE_MUGGER(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xE404BFB981665BF0, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_ROBBED_BY_MUGGER(intamount, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x995A65F15F581359, intamount, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_HIRE_MERCENARY(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xE7B80E2BF9D80BD6, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_BUY_WANTEDLEVEL(Anyp0, Anyp1, BOOLp2, BOOLp3, Anyp4)
    return native.call(0xE1B13771A843C4F6, Anyp0, Anyp1, BOOLp2, BOOLp3, Anyp4)
end

function natives.NETWORK_SPENT_BUY_OFFTHERADAR(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xA628A745E2275C5D, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_BUY_REVEAL_PLAYERS(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x6E176F1B18BC0637, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_CARWASH(Anyp0, Anyp1, Anyp2, BOOLp3, BOOLp4)
    return native.call(0xEC03C719DB2F4306, Anyp0, Anyp1, Anyp2, BOOLp3, BOOLp4)
end

function natives.NETWORK_SPENT_CINEMA(Anyp0, Anyp1, BOOLp2, BOOLp3)
    return native.call(0x6B38ECB05A63A685, Anyp0, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_TELESCOPE(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x7FE61782AD94CC09, Anyp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_HOLDUPS(Anyp0, BOOLp1, BOOLp2)
    return native.call(0xD9B86B9872039763, Anyp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_BUY_PASSIVE_MODE(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x6D3A430D1A809179, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_BANK_INTEREST(intp0, BOOLp1, BOOLp2)
    return native.call(0xCA230C9682556CF1, intp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_PROSTITUTES(Anyp0, BOOLp1, BOOLp2)
    return native.call(0xB21B89501CFAC79E, Anyp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_ARREST_BAIL(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x812F5488B1B2A299, Anyp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_PAY_VEHICLE_INSURANCE_PREMIUM(intamount, HashvehicleModel, AnygamerHandle, BOOLnotBankrupt, BOOLhasTheMoney)
    return native.call(0x9FF28D88C766E3E8, intamount, HashvehicleModel, AnygamerHandle, BOOLnotBankrupt, BOOLhasTheMoney)
end

function natives.NETWORK_SPENT_CALL_PLAYER(Anyp0, Anyp1, BOOLp2, BOOLp3)
    return native.call(0xACDE7185B374177C, Anyp0, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_BOUNTY(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x29B260B84947DFCC, Anyp0, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_FROM_ROCKSTAR(intp0, BOOLp1, BOOLp2)
    return native.call(0x6A445B64ED7ABEB5, intp0, BOOLp1, BOOLp2)
end

function natives._0x9B5016A6433A68C5()
    return native.call(0x9B5016A6433A68C5)
end

function natives.PROCESS_CASH_GIFT(intp0, intp1, constcharp2)
    return native.call(0x20194D48EAEC9A41, intp0, intp1, constcharp2)
end

function natives._0xCD4D66B43B1DD28D(Anyp0, Anyp1, Anyp2)
    return native.call(0xCD4D66B43B1DD28D, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_SPENT_PLAYER_HEALTHCARE(intp0, intp1, BOOLp2, BOOLp3)
    return native.call(0x7C99101F7FCE2EE5, intp0, intp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_NO_COPS(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xD5BB406F4E04019F, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_REQUEST_JOB(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x8204DA7934DF3155, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_REQUEST_HEIST(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x9D26502BB97BFE62, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_BUY_FAIRGROUND_RIDE(intamount, Anyp1, BOOLp2, BOOLp3, Anyp4)
    return native.call(0x8A7B3952DD64D2B5, intamount, Anyp1, BOOLp2, BOOLp3, Anyp4)
end

function natives._0x7C4FCCD2E4DEB394()
    return native.call(0x7C4FCCD2E4DEB394)
end

function natives.NETWORK_SPENT_JOB_SKIP(intamount, constcharmatchId, BOOLp2, BOOLp3)
    return native.call(0x28F174A67B8D0C2F, intamount, constcharmatchId, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_BOSS(intamount, BOOLp1, BOOLp2)
    return native.call(0xFFBE02CD385356BD, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_PAY_GOON(intp0, intp1, intamount)
    return native.call(0x08A1B82B91900682, intp0, intp1, intamount)
end

function natives.NETWORK_SPENT_PAY_BOSS(Anyp0, Anyp1, Anyp2)
    return native.call(0xDBC966A01C02BCA7, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_SPENT_MOVE_YACHT(intamount, BOOLp1, BOOLp2)
    return native.call(0xE7DF4E0545DFB56E, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_RENAME_ORGANIZATION(Anyp0, Anyp1, Anyp2)
    return native.call(0xFC4EE00A7B3BFB76, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_BUY_CONTRABAND(intp0, intp1, Hashp2, BOOLp3, BOOLp4)
    return native.call(0x30FD873ECE50E9F6, intp0, intp1, Hashp2, BOOLp3, BOOLp4)
end

function natives._0x112209CE0290C03A(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x112209CE0290C03A, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xED5FD7AF10F5E262(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xED5FD7AF10F5E262, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x0D30EB83668E63C5(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0D30EB83668E63C5, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_PA_SERVICE_DANCER(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xB49ECA122467D05F, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xE23ADC6FCB1F29AE(Anyp0, Anyp1, Anyp2)
    return native.call(0xE23ADC6FCB1F29AE, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_SPENT_PA_SERVICE_HELI_PICKUP(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0FE8E1FCD2B86B33, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x69EF772B192614C1(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x69EF772B192614C1, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x8E243837643D9583(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x8E243837643D9583, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xBD0EFB25CCA8F97A(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xBD0EFB25CCA8F97A, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xA95F667A755725DA(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xA95F667A755725DA, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_PURCHASE_WAREHOUSE(intamount, Anydata, BOOLp2, BOOLp3)
    return native.call(0x33981D6804E62F49, intamount, Anydata, BOOLp2, BOOLp3)
end

function natives._0x4128464231E3CA0B(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x4128464231E3CA0B, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x2FAB6614CE22E196(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x2FAB6614CE22E196, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_ORDER_WAREHOUSE_VEHICLE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x05F04155A226FBBF, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_ORDER_BODYGUARD_VEHICLE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xE8B0B270B6E7C76E, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_JUKEBOX(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x5BCDE0F640C773D2, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x998E18CEB44487FC(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x998E18CEB44487FC, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xFA07759E6FDDD7CF(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xFA07759E6FDDD7CF, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x6FD97159FE3C971A(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x6FD97159FE3C971A, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x675D19C6067CAE08(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x675D19C6067CAE08, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xA51B086B0B2C0F7A(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xA51B086B0B2C0F7A, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_BA_SERVICE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xD7CCCBA28C4ECAF0, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_SPENT_BUSINESS(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0035BB914316F1E3, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x5F456788B05FAEAC(Anyp0, Anyp1, Anyp2)
    return native.call(0x5F456788B05FAEAC, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_SPENT_VEHICLE_EXPORT_MODS(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0xA75CCF58A60A5FD1, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives._0xB4C2EC463672474E(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xB4C2EC463672474E, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x2AFC2D19B50797F2(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x2AFC2D19B50797F2, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_IMPORT_EXPORT_REPAIR(Anyp0, Anyp1, Anyp2)
    return native.call(0xC1952F3773BA18FE, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_SPENT_PURCHASE_HANGAR(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xCCB339CC970452DA, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_HANGAR(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x615EB504B0788DAF, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_HANGAR_UTILITY_CHARGES(intamount, BOOLp1, BOOLp2)
    return native.call(0xB18AC2ECBB15CB6A, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_HANGAR_STAFF_CHARGES(intamount, BOOLp1, BOOLp2)
    return native.call(0xB1F1346FD57685D7, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_BUY_TRUCK(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xAC272C0AE01B4BD8, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_TRUCK(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x365E877C61D6988B, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_BUY_BUNKER(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x12D148D26538D0F9, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_BUNKER(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0C82D21A77C22D49, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_SELL_BUNKER(intamount, HashbunkerHash)
    return native.call(0x9251B6ABF2D0A5B4, intamount, HashbunkerHash)
end

function natives.NETWORK_SPENT_BALLISTIC_EQUIPMENT(intamount, BOOLp1, BOOLp2)
    return native.call(0x5D97630A8A0EF123, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_EARN_FROM_RDR_BONUS(intamount, Anyp1)
    return native.call(0x7A5349B773584675, intamount, Anyp1)
end

function natives.NETWORK_EARN_FROM_WAGE_PAYMENT(intamount, Anyp1)
    return native.call(0x35F8DA0E8A31EF1B, intamount, Anyp1)
end

function natives.NETWORK_EARN_FROM_WAGE_PAYMENT_BONUS(intamount)
    return native.call(0x005ACA7100BD101D, intamount)
end

function natives.NETWORK_SPENT_BUY_BASE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x4EA3F425C7744D21, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_BASE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x3DD3F33A5D55EA6F, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_BUY_TILTROTOR(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x0CCE73BC7A11E885, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_TILTROTOR(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x165E135D6DFA2907, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_EMPLOY_ASSASSINS(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x5BBBD92186E1F1C5, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_GANGOPS_CANNON(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x771ADB0E7635B7BF, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_GANGOPS_START_MISSION(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xDA947AE8880D5C18, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_CASINO_HEIST_SKIP_MISSION(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x487009DD91D93429, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_SELL_BASE(intamount, HashbaseNameHash)
    return native.call(0x0E1E2FF3F4EC11AA, intamount, HashbaseNameHash)
end

function natives.NETWORK_EARN_FROM_TARGET_REFUND(intamount, intp1)
    return native.call(0x5B669CF2299A271F, intamount, intp1)
end

function natives.NETWORK_EARN_FROM_GANGOPS_WAGES(intamount, intp1)
    return native.call(0x2DCB19ABAB0380A8, intamount, intp1)
end

function natives.NETWORK_EARN_FROM_GANGOPS_WAGES_BONUS(intamount, intp1)
    return native.call(0x15BB2A5C757EB91F, intamount, intp1)
end

function natives.NETWORK_EARN_FROM_DAR_CHALLENGE(intamount, Anyp1)
    return native.call(0xCAC672087B4A24AB, intamount, Anyp1)
end

function natives.NETWORK_EARN_FROM_DOOMSDAY_FINALE_BONUS(intamount, HashvehicleHash)
    return native.call(0x128A747F4A230952, intamount, HashvehicleHash)
end

function natives.NETWORK_EARN_FROM_GANGOPS_AWARDS(intamount, constcharunk, Anyp2)
    return native.call(0xA9A31475F530DFDA, intamount, constcharunk, Anyp2)
end

function natives.NETWORK_EARN_FROM_GANGOPS_ELITE(intamount, constcharunk, intactIndex)
    return native.call(0x2597A0D4A4FC2C77, intamount, constcharunk, intactIndex)
end

function natives.NETWORK_RIVAL_DELIVERY_COMPLETED(intearnedMoney)
    return native.call(0x1B882107C23A9022, intearnedMoney)
end

function natives.NETWORK_SPENT_GANGOPS_START_STRAND(inttype, intamount, BOOLp2, BOOLp3)
    return native.call(0xA19EC0786E326E06, inttype, intamount, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_GANGOPS_TRIP_SKIP(intamount, BOOLp1, BOOLp2)
    return native.call(0x5ECE6FD7B4EC8D6A, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_EARN_FROM_GANGOPS_JOBS_PREP_PARTICIPATION(intamount)
    return native.call(0xED26584F6BDCBBFD, intamount)
end

function natives.NETWORK_EARN_FROM_GANGOPS_JOBS_SETUP(intamount, constcharunk)
    return native.call(0xA9160796D47A2CF8, intamount, constcharunk)
end

function natives.NETWORK_EARN_FROM_GANGOPS_JOBS_FINALE(intamount, constcharunk)
    return native.call(0x1C121FC9545E0D52, intamount, constcharunk)
end

function natives._0x2A7CEC72C3443BCC(Anyp0, Anyp1, Anyp2)
    return native.call(0x2A7CEC72C3443BCC, Anyp0, Anyp1, Anyp2)
end

function natives._0xE0F82D68C7039158(Anyp0)
    return native.call(0xE0F82D68C7039158, Anyp0)
end

function natives._0xB4DEAE67F35E2ACD(Anyp0)
    return native.call(0xB4DEAE67F35E2ACD, Anyp0)
end

function natives.NETWORK_EARN_FROM_BB_EVENT_BONUS(intamount)
    return native.call(0xFDD8D2440DAF1590, intamount)
end

function natives._0x2A93C46AAB1EACC9(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x2A93C46AAB1EACC9, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x226C284C830D0CA8(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x226C284C830D0CA8, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_HACKER_TRUCK_MISSION(Anyp0, intamount, Anyp2, Anyp3)
    return native.call(0xE8815FE993896AD3, Anyp0, intamount, Anyp2, Anyp3)
end

function natives._0xED76D195E6E3BF7F(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xED76D195E6E3BF7F, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x1DC9B749E7AE282B(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x1DC9B749E7AE282B, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xC6E74CF8C884C880(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0xC6E74CF8C884C880, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives._0x65482BFD0923C8A1(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x65482BFD0923C8A1, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.NETWORK_SPENT_RDRHATCHET_BONUS(intamount, BOOLp1, BOOLp2)
    return native.call(0xE284D46FFDB82E36, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_NIGHTCLUB_ENTRY_FEE(Playerplayer, intamount, Anyp1, BOOLp2, BOOLp3)
    return native.call(0x876056684281655D, Playerplayer, intamount, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_NIGHTCLUB_BAR_DRINK(intamount, Anyp1, BOOLp2, BOOLp3)
    return native.call(0xDD21B016E4289465, intamount, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_BOUNTY_HUNTER_MISSION(intamount, BOOLp1, BOOLp2)
    return native.call(0x1BEA0CD93470BB1F, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_REHIRE_DJ(intamount, Anyp1, BOOLp2, BOOLp3)
    return native.call(0xF6C8A544E4CF14FC, intamount, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_ARENA_JOIN_SPECTATOR(intamount, Anyp1, BOOLp2, BOOLp3)
    return native.call(0x14EAEA58F93B55AF, intamount, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_EARN_FROM_ARENA_SKILL_LEVEL_PROGRESSION(intamount, Anyp1)
    return native.call(0xE08256F972C7BB2C, intamount, Anyp1)
end

function natives.NETWORK_EARN_FROM_ARENA_CAREER_PROGRESSION(intamount, Anyp1)
    return native.call(0x0F99F70C61F14619, intamount, Anyp1)
end

function natives.NETWORK_SPENT_MAKE_IT_RAIN(intamount, BOOLp1, BOOLp2)
    return native.call(0xE5F5A060439C2F5D, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_SPENT_BUY_ARENA(intamount, BOOLp1, BOOLp2, constcharp3)
    return native.call(0x40D5DA9550B7CB46, intamount, BOOLp1, BOOLp2, constcharp3)
end

function natives.NETWORK_SPENT_UPGRADE_ARENA(intamount, BOOLp1, BOOLp2, constcharp3)
    return native.call(0x037ABB06825D7AB1, intamount, BOOLp1, BOOLp2, constcharp3)
end

function natives.NETWORK_SPENT_ARENA_SPECTATOR_BOX(intamount, Anyp1, BOOLp2, BOOLp3)
    return native.call(0x7049BF858601DC0F, intamount, Anyp1, BOOLp2, BOOLp3)
end

function natives.NETWORK_SPENT_SPIN_THE_WHEEL_PAYMENT(intamount, Anyp1, BOOLp2)
    return native.call(0x9A5BD1D0000B339C, intamount, Anyp1, BOOLp2)
end

function natives.NETWORK_EARN_FROM_SPIN_THE_WHEEL_CASH(intamount)
    return native.call(0x676C48776CACBB5A, intamount)
end

function natives.NETWORK_SPENT_ARENA_PREMIUM(intamount, BOOLp1, BOOLp2)
    return native.call(0x619496D837EFD920, intamount, BOOLp1, BOOLp2)
end

function natives.NETWORK_EARN_FROM_ARENA_WAR(intamount, Anyp1, Anyp2, Anyp3)
    return native.call(0x631F1CB8FB4130AA, intamount, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_ASSASSINATE_TARGET_KILLED_2(intamount)
    return native.call(0x5E7AE8AABE8B7C0D, intamount)
end

function natives.NETWORK_EARN_FROM_BB_EVENT_CARGO(intamount)
    return native.call(0xA82959062361B259, intamount)
end

function natives.NETWORK_EARN_FROM_RC_TIME_TRIAL(intamount)
    return native.call(0xDFF49EE984E7AAE8, intamount)
end

function natives.NETWORK_EARN_FROM_DAILY_OBJECTIVE_EVENT(intamount)
    return native.call(0x5128DF14A5BB86FC, intamount)
end

function natives.NETWORK_SPENT_CASINO_MEMBERSHIP(intamount, BOOLp1, BOOLp2, intp3)
    return native.call(0xFBBE0570EDF39D46, intamount, BOOLp1, BOOLp2, intp3)
end

function natives.NETWORK_SPENT_BUY_CASINO(intamount, BOOLp1, BOOLp2, Anydata)
    return native.call(0x34A6FC4D06C4DA0F, intamount, BOOLp1, BOOLp2, Anydata)
end

function natives.NETWORK_SPENT_UPGRADE_CASINO(intamount, BOOLp1, BOOLp2, Anydata)
    return native.call(0x4740D62BC1B4EBEA, intamount, BOOLp1, BOOLp2, Anydata)
end

function natives.NETWORK_SPENT_CASINO_GENERIC(intamount, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x88BF9B612B84D3C3, intamount, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_EARN_FROM_TIME_TRIAL_WIN(intamount)
    return native.call(0x0819DB99FD2FBBD8, intamount)
end

function natives.NETWORK_EARN_FROM_COLLECTABLES_ACTION_FIGURES(intamount)
    return native.call(0x5517F90043466049, intamount)
end

function natives.NETWORK_EARN_FROM_COMPLETE_COLLECTION(intamount)
    return native.call(0x83AD64F53F4E9483, intamount)
end

function natives.NETWORK_EARN_FROM_SELLING_VEHICLE(intamount, Anyp1, Anyp2)
    return native.call(0x8BCB27A057DF7B7F, intamount, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_CASINO_MISSION_REWARD(intamount)
    return native.call(0x566FD402B25787DE, intamount)
end

function natives.NETWORK_EARN_FROM_CASINO_STORY_MISSION_REWARD(intamount)
    return native.call(0xAC95ED552157E092, intamount)
end

function natives.NETWORK_EARN_FROM_CASINO_MISSION_PARTICIPATION(intamount)
    return native.call(0x09E8F18641BE2575, intamount)
end

function natives.NETWORK_EARN_FROM_CASINO_AWARD(intamount, Hashhash)
    return native.call(0x973A9781A34F8DEB, intamount, Hashhash)
end

function natives._0x870289A558348378(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x870289A558348378, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x5574637681911FDA(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x5574637681911FDA, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_CASINO_HEIST(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10)
    return native.call(0xD30E8392F407C328, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10)
end

function natives._0xB5B58E24868CB09E(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xB5B58E24868CB09E, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_SPENT_ARCADE_GAME(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xEAD3D81F2C3A1458, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_SPENT_ARCADE_GENERIC(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x43AA7FAC4E6D6687, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_EARN_CASINO_HEIST(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x72E7C7B9615FA3C3, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives._0x4C3B75694F7E0D9C(Anyp0, Anyp1, Anyp2)
    return native.call(0x4C3B75694F7E0D9C, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_ARCADE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xD29334ED1A256DBF, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives._0xA95CFB4E02390842(Anyp0, Anyp1, Anyp2)
    return native.call(0xA95CFB4E02390842, Anyp0, Anyp1, Anyp2)
end

function natives._0x0DD362F14F18942A(intamount, Anyp1, Anyp2)
    return native.call(0x0DD362F14F18942A, intamount, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_CASINO_HEIST_BONUS(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x3EC7471E6909798A, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_EARN_FROM_COLLECTION_ITEM(intamount, Anyp1)
    return native.call(0x84FF63BD4966F33D, intamount, Anyp1)
end

function natives.NETWORK_EARN_COLLECTABLE_COMPLETED_COLLECTION(intamount, Anyp1)
    return native.call(0x5C9B198AF5A54FA6, intamount, Anyp1)
end

function natives._0xDE68E30D89F97132(intamount, Anyp1)
    return native.call(0xDE68E30D89F97132, intamount, Anyp1)
end

function natives._0xE2E244AB823B4483(intamount, Anyp1)
    return native.call(0xE2E244AB823B4483, intamount, Anyp1)
end

function natives.NETWORK_SPENT_BEACH_PARTY_GENERIC(Anyp0)
    return native.call(0x54ABA22FA6371249, Anyp0)
end

function natives.NETWORK_SPENT_SUBMARINE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x6C8BC1488527AAAB, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.NETWORK_SPENT_CASINO_CLUB_GENERIC(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0xC991C255AA6D90B2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives._0x90CD7C6871FBF1B4(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x90CD7C6871FBF1B4, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_SUB(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x89049A84065CE68E, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_ISLAND_HEIST(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xE86689E5F82DE429, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_ISLAND_HEIST(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0xD21D111C46BA9F15, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives._0xA51338E0DCCD4065(Anyp0, Anyp1, Anyp2)
    return native.call(0xA51338E0DCCD4065, Anyp0, Anyp1, Anyp2)
end

function natives._0xE2BB399D90942091(Anyp0, Anyp1)
    return native.call(0xE2BB399D90942091, Anyp0, Anyp1)
end

function natives.NETWORK_SPENT_CARCLUB_MEMBERSHIP(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x1464E17207CD36E2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_SPENT_CARCLUB(Anyp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x925227803A0EAA1B, Anyp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_AUTOSHOP_MODIFICATIONS(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x9BEA350D7C48061B, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_SPENT_CARCLUB_TAKEOVER(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xD1E46824E6FB92B5, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_BUY_AUTOSHOP(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xEEB7E5D1FEB20869, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_AUTOSHOP(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xDD829AA198FDC46C, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_AUTOSHOP_BUSINESS(Anyp0, Anyp1)
    return native.call(0x36A7FD5A7194B03E, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AUTOSHOP_INCOME(Anyp0)
    return native.call(0xC66D1CF99ED7FE25, Anyp0)
end

function natives.NETWORK_EARN_FROM_CARCLUB_MEMBERSHIP(Anyp0)
    return native.call(0xBC6227792A188E2E, Anyp0)
end

function natives.NETWORK_EARN_FROM_VEHICLE_AUTOSHOP(Anyp0, Anyp1)
    return native.call(0x533073E8A596008C, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_VEHICLE_AUTOSHOP_BONUS(Anyp0)
    return native.call(0xFE65AFE7308E32B2, Anyp0)
end

function natives.NETWORK_EARN_FROM_TUNER_AWARD(Anyp0, Anyp1, Anyp2)
    return native.call(0xB846F547D3792DF6, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_TUNER_FINALE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xBCB266247193AC61, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_EARN_FROM_UPGRADE_AUTOSHOP_LOCATION(Anyp0, Anyp1)
    return native.call(0xC10322A8D3E061EE, Anyp0, Anyp1)
end

function natives.NETWORK_SPENT_INTERACTION_MENU_ABILITY(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x93AA4165CB67E925, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_FROM_BANK(Anyp0, Anyp1, Anyp2, BOOLp3)
    return native.call(0xB9F7A469460E7A4A, Anyp0, Anyp1, Anyp2, BOOLp3)
end

function natives.NETWORK_SPENT_BUY_AGENCY(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xEA8CD3C9B3C35884, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_UPGRADE_AGENCY(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x6CCA64840589A3B6, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_AGENCY_CONCIERGE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x1B2120405080125C, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_HIDDEN_CONTACT_SERVICE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xBF8793B91EA094A7, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_SOURCE_BIKE_CONTACT_SERVICE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xD9DF467CBE4398C8, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_COMPANY_SUV_CONTACT_SERVICE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xD86581F9E7CDA383, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SPENT_SUV_FAST_TRAVEL(intp0, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x61A2DF64ED2D396E, intp0, BOOLp1, BOOLp2, Anyp3)
end

function natives.NETWORK_SPENT_SUPPLY_CONTACT_SERVICE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xEBD482B82ACB8BAD, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_EARN_FROM_AGENCY_INCOME(Anyp0)
    return native.call(0x663B4B9D11742A12, Anyp0)
end

function natives.NETWORK_EARN_FROM_AWARD_SECURITY_CONTRACT(Anyp0, Anyp1)
    return native.call(0x146D4EB6D22A403F, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AGENCY_SECURITY_CONTRACT(Anyp0, Anyp1)
    return native.call(0x38482AD49CB905C7, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AWARD_PHONE_HIT(Anyp0, Anyp1)
    return native.call(0x7397A115030F1BE3, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AGENCY_PHONE_HIT(Anyp0, Anyp1, Anyp2)
    return native.call(0xE29F3D5FA63B1B82, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_EARN_FROM_AWARD_AGENCY_STORY(Anyp0, Anyp1)
    return native.call(0x88D6C327D6C57C45, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AGENCY_STORY_PREP(Anyp0, Anyp1)
    return native.call(0x6283E5DE4C4460C6, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AGENCY_STORY_FINALE(Anyp0, Anyp1)
    return native.call(0xBA154373C5FE51E8, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AGENCY_SHORT_TRIP(Anyp0, Anyp1)
    return native.call(0xF4A8E57460BF2037, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_AWARD_SHORT_TRIP(Anyp0, Anyp1)
    return native.call(0x5B4DBDED84D6A420, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_RIVAL_DELIVERY_SECURITY_CONTRACT(Anyp0, Anyp1)
    return native.call(0x235D41210B3A1A5E, Anyp0, Anyp1)
end

function natives.NETWORK_EARN_FROM_UPGRADE_AGENCY_LOCATION(Anyp0, Anyp1)
    return native.call(0xD07C7C3F1995108C, Anyp0, Anyp1)
end

function natives.NETWORK_SPENT_AGGREGATED_UTILITY_BILLS(intamount, BOOLp1, BOOLp2, Anydata)
    return native.call(0x1254B5B3925EFD3D, intamount, BOOLp1, BOOLp2, Anydata)
end

function natives.NETWORK_SPENT_BUSINESS_EXPENSES(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x92D1CFDA1227FF1C, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_GET_VC_BANK_BALANCE()
    return native.call(0x76EF28DA05EA395A)
end

function natives.NETWORK_GET_VC_WALLET_BALANCE(intcharacterSlot)
    return native.call(0xA40F9C2623F6A8B5, intcharacterSlot)
end

function natives.NETWORK_GET_VC_BALANCE()
    return native.call(0x5CBAD97E059E1B94)
end

function natives.NETWORK_GET_EVC_BALANCE()
    return native.call(0x5D1E75F91C07DEE5)
end

function natives.NETWORK_GET_PVC_BALANCE()
    return native.call(0x4F54F3B6C202FB4E)
end

function natives.NETWORK_GET_STRING_WALLET_BALANCE(intcharacterSlot)
    return native.call(0xF9B10B529DCFB33B, intcharacterSlot)
end

function natives.NETWORK_GET_STRING_BANK_BALANCE()
    return native.call(0xA6FA3979BED01B81)
end

function natives.NETWORK_GET_STRING_BANK_WALLET_BALANCE()
    return native.call(0x700AF71AE615E6DD)
end

function natives.NETWORK_GET_CAN_SPEND_FROM_WALLET(intamount, intcharacterSlot)
    return native.call(0xED5AB8860415BABA, intamount, intcharacterSlot)
end

function natives.NETWORK_GET_CAN_SPEND_FROM_BANK(intamount)
    return native.call(0xA31FD6A0865B6D14, intamount)
end

function natives.NETWORK_GET_CAN_SPEND_FROM_BANK_AND_WALLET(intamount, intcharacterSlot)
    return native.call(0xDC18531D7019A535, intamount, intcharacterSlot)
end

function natives.NETWORK_GET_PVC_TRANSFER_BALANCE()
    return native.call(0x13A8DE2FD77D04F3)
end

function natives.NETWORK_GET_CAN_TRANSFER_CASH(intamount)
    return native.call(0x08E8EEADFD0DC4A0, intamount)
end

function natives.NETWORK_CAN_RECEIVE_PLAYER_CASH(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x5D17BE59D2123284, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_GET_REMAINING_TRANSFER_BALANCE()
    return native.call(0xEA560AC9EEB1E19B)
end

function natives.WITHDRAW_VC(intamount)
    return native.call(0xF70EFA14FE091429, intamount)
end

function natives.DEPOSIT_VC(intamount)
    return native.call(0xE260E0BB9CD995AC, intamount)
end

function natives._0xE154B48B68EF72BC(Anyp0)
    return native.call(0xE154B48B68EF72BC, Anyp0)
end

function natives._0x6FCF8DDEA146C45B(Anyp0)
    return native.call(0x6FCF8DDEA146C45B, Anyp0)
end

function natives.NET_GAMESERVER_USE_SERVER_TRANSACTIONS()
    return native.call(0x7D2708796355B20B)
end

function natives.NET_GAMESERVER_CATALOG_ITEM_EXISTS(constcharname)
    return native.call(0xBD4D7EAF8A30F637, constcharname)
end

function natives.NET_GAMESERVER_CATALOG_ITEM_EXISTS_HASH(Hashhash)
    return native.call(0x247F0F73A182EA0B, Hashhash)
end

function natives.NET_GAMESERVER_GET_PRICE(HashitemHash, HashcategoryHash, BOOLp2)
    return native.call(0xC27009422FCCA88D, HashitemHash, HashcategoryHash, BOOLp2)
end

function natives.NET_GAMESERVER_CATALOG_IS_READY()
    return native.call(0x3C4487461E9B0DCB)
end

function natives.NET_GAMESERVER_IS_CATALOG_VALID()
    return native.call(0x2B949A1E6AEC8F6A)
end

function natives.NET_GAMESERVER_GET_CATALOG_CRC()
    return native.call(0x85F6C9ABA1DE2BCF)
end

function natives._0x357B152EF96C30B6()
    return native.call(0x357B152EF96C30B6)
end

function natives.NET_GAMESERVER_GET_CATALOG_STATE(intstate)
    return native.call(0xCF38DAFBB49EDE5E, intstate)
end

function natives._0xE3E5A7C64CA2C6ED()
    return native.call(0xE3E5A7C64CA2C6ED)
end

function natives._0x0395CB47B022E62C(intp0)
    return native.call(0x0395CB47B022E62C, intp0)
end

function natives.NET_GAMESERVER_START_SESSION(intcharSlot)
    return native.call(0xA135AC892A58FC07, intcharSlot)
end

function natives._0x72EB7BA9B69BF6AB()
    return native.call(0x72EB7BA9B69BF6AB)
end

function natives._0x170910093218C8B9(intp0)
    return native.call(0x170910093218C8B9, intp0)
end

function natives._0xC13C38E47EA5DF31(intp0)
    return native.call(0xC13C38E47EA5DF31, intp0)
end

function natives.NET_GAMESERVER_IS_SESSION_VALID(intcharSlot)
    return native.call(0xB24F0944DA203D9E, intcharSlot)
end

function natives._0x74A0FD0688F1EE45(intp0)
    return native.call(0x74A0FD0688F1EE45, intp0)
end

function natives.NET_GAMESERVER_SESSION_APPLY_RECEIVED_DATA(intcharSlot)
    return native.call(0x2F41D51BA3BCD1F1, intcharSlot)
end

function natives.NET_GAMESERVER_IS_SESSION_REFRESH_PENDING()
    return native.call(0x810E8431C0614BF9)
end

function natives.NET_GAMESERVER_UPDATE_BALANCE(BOOLinventory, BOOLplayerbalance)
    return native.call(0x35A1B3E1D1315CFA, BOOLinventory, BOOLplayerbalance)
end

function natives._0x613F125BA3BD2EB9()
    return native.call(0x613F125BA3BD2EB9)
end

function natives.NET_GAMESERVER_GET_TRANSACTION_MANAGER_DATA(intp0, BOOLp1)
    return native.call(0x897433D292B44130, intp0, BOOLp1)
end

function natives.NET_GAMESERVER_BASKET_START(inttransactionId, HashcategoryHash, HashactionHash, intflags)
    return native.call(0x279F08B1A4B29B7E, inttransactionId, HashcategoryHash, HashactionHash, intflags)
end

function natives.NET_GAMESERVER_BASKET_DELETE()
    return native.call(0xFA336E7F40C0A0D0)
end

function natives.NET_GAMESERVER_BASKET_END()
    return native.call(0xA65568121DF2EA26)
end

function natives.NET_GAMESERVER_BASKET_ADD_ITEM(AnyitemData, intquantity)
    return native.call(0xF30980718C8ED876, AnyitemData, intquantity)
end

function natives.NET_GAMESERVER_BASKET_IS_FULL()
    return native.call(0x27F76CC6C55AD30E)
end

function natives.NET_GAMESERVER_BASKET_APPLY_SERVER_DATA(Anyp0, Anyp1)
    return native.call(0xE1A0450ED46A7812, Anyp0, Anyp1)
end

function natives.NET_GAMESERVER_CHECKOUT_START(inttransactionId)
    return native.call(0x39BE7CEA8D9CC8E6, inttransactionId)
end

function natives.NET_GAMESERVER_BEGIN_SERVICE(inttransactionId, HashcategoryHash, HashitemHash, HashactionTypeHash, intvalue, intflags)
    return native.call(0x3C5FD37B5499582E, inttransactionId, HashcategoryHash, HashitemHash, HashactionTypeHash, intvalue, intflags)
end

function natives.NET_GAMESERVER_END_SERVICE(inttransactionId)
    return native.call(0xE2A99A9B524BEFFF, inttransactionId)
end

function natives.NET_GAMESERVER_DELETE_CHARACTER_SLOT(intslot, BOOLtransfer, Hashreason)
    return native.call(0x51F1A8E48C3D2F6D, intslot, BOOLtransfer, Hashreason)
end

function natives.NET_GAMESERVER_DELETE_CHARACTER_SLOT_GET_STATUS()
    return native.call(0x0A6D923DFFC9BD89)
end

function natives.NET_GAMESERVER_DELETE_SET_TELEMETRY_NONCE_SEED()
    return native.call(0x112CEF1615A1139F)
end

function natives.NET_GAMESERVER_TRANSFER_BANK_TO_WALLET(intcharSlot, intamount)
    return native.call(0xD47A2C1BA117471D, intcharSlot, intamount)
end

function natives.NET_GAMESERVER_TRANSFER_WALLET_TO_BANK(intcharSlot, intamount)
    return native.call(0xC2F7FE5309181C7D, intcharSlot, intamount)
end

function natives.NET_GAMESERVER_TRANSFER_CASH_GET_STATUS()
    return native.call(0x23789E777D14CE44)
end

function natives.NET_GAMESERVER_TRANSFER_CASH_GET_STATUS_2()
    return native.call(0x350AA5EBC03D3BD2)
end

function natives.NET_GAMESERVER_TRANSFER_CASH_SET_TELEMETRY_NONCE_SEED()
    return native.call(0x498C1E05CE5F7877)
end

function natives.NET_GAMESERVER_SET_TELEMETRY_NONCE_SEED(intp0)
    return native.call(0x9507D4271988E1AE, intp0)
end

function natives.GET_ONLINE_VERSION()
    return native.call(0xFCA9373EF340AC0A)
end

function natives.NETWORK_IS_SIGNED_IN()
    return native.call(0x054354A99211EB96)
end

function natives.NETWORK_IS_SIGNED_ONLINE()
    return native.call(0x1077788E268557C2)
end

function natives._0xBD545D44CCE70597()
    return native.call(0xBD545D44CCE70597)
end

function natives._0xEBCAB9E5048434F4()
    return native.call(0xEBCAB9E5048434F4)
end

function natives._0x74FB3E29E6D10FA9()
    return native.call(0x74FB3E29E6D10FA9)
end

function natives._0x7808619F31FF22DB()
    return native.call(0x7808619F31FF22DB)
end

function natives._0xA0FA4EC6A05DA44E()
    return native.call(0xA0FA4EC6A05DA44E)
end

function natives.NETWORK_HAS_VALID_ROS_CREDENTIALS()
    return native.call(0x85443FF4C328F53B)
end

function natives._0x8D11E61A4ABF49CC()
    return native.call(0x8D11E61A4ABF49CC)
end

function natives.NETWORK_IS_CLOUD_AVAILABLE()
    return native.call(0x9A4CF4F48AD77302)
end

function natives.NETWORK_HAS_SOCIAL_CLUB_ACCOUNT()
    return native.call(0x67A5589628E0CFF6)
end

function natives.NETWORK_ARE_SOCIAL_CLUB_POLICIES_CURRENT()
    return native.call(0xBA9775570DB788CF)
end

function natives.NETWORK_IS_HOST()
    return native.call(0x8DB296B814EDDA07)
end

function natives.NETWORK_GET_HOST()
    return native.call(0x8251FB94DC4FDFC8)
end

function natives._0x4237E822315D8BA9()
    return native.call(0x4237E822315D8BA9)
end

function natives.NETWORK_HAVE_ONLINE_PRIVILEGES()
    return native.call(0x25CB5A9F37BFD063)
end

function natives.NETWORK_HAS_AGE_RESTRICTED_PROFILE()
    return native.call(0x1353F87E89946207)
end

function natives.NETWORK_HAVE_USER_CONTENT_PRIVILEGES(intp0)
    return native.call(0x72D918C99BCACC54, intp0)
end

function natives.NETWORK_HAVE_COMMUNICATION_PRIVILEGES(intp0, Playerplayer)
    return native.call(0xAEEF48CDF5B6CE7C, intp0, Playerplayer)
end

function natives._0x78321BEA235FD8CD(Anyp0, BOOLp1)
    return native.call(0x78321BEA235FD8CD, Anyp0, BOOLp1)
end

function natives.NETWORK_CHECK_USER_CONTENT_PRIVILEGES(intp0, intp1, BOOLp2)
    return native.call(0x595F028698072DD9, intp0, intp1, BOOLp2)
end

function natives.NETWORK_CHECK_COMMUNICATION_PRIVILEGES(intp0, intp1, BOOLp2)
    return native.call(0x83F28CE49FBBFFBA, intp0, intp1, BOOLp2)
end

function natives._0x07EAB372C8841D99(Anyp0, Anyp1, Anyp2)
    return native.call(0x07EAB372C8841D99, Anyp0, Anyp1, Anyp2)
end

function natives._0x906CA41A4B74ECA4()
    return native.call(0x906CA41A4B74ECA4)
end

function natives._0x023ACAB2DC9DC4A4()
    return native.call(0x023ACAB2DC9DC4A4)
end

function natives.NETWORK_HAS_SOCIAL_NETWORKING_SHARING_PRIV()
    return native.call(0x76BF03FADBF154F5)
end

function natives.NETWORK_GET_AGE_GROUP()
    return native.call(0x9614B71F8ADB982B)
end

function natives._0x0CF6CC51AA18F0F8(Anyp0, Anyp1, Anyp2)
    return native.call(0x0CF6CC51AA18F0F8, Anyp0, Anyp1, Anyp2)
end

function natives._0x64E5C4CC82847B73()
    return native.call(0x64E5C4CC82847B73)
end

function natives._0x1F7BC3539F9E0224()
    return native.call(0x1F7BC3539F9E0224)
end

function natives._0xDE9225854F37BF72()
    return native.call(0xDE9225854F37BF72)
end

function natives.NETWORK_HAVE_ONLINE_PRIVILEGE_2()
    return native.call(0x5EA784D197556507)
end

function natives._0xA8ACB6459542A8C8()
    return native.call(0xA8ACB6459542A8C8)
end

function natives._0x83FE8D7229593017()
    return native.call(0x83FE8D7229593017)
end

function natives._0x7788DFE15016A182()
    return native.call(0x7788DFE15016A182)
end

function natives._0x53C10C8BD774F2C9()
    return native.call(0x53C10C8BD774F2C9)
end

function natives.NETWORK_CAN_BAIL()
    return native.call(0x580CE4438479CC61)
end

function natives.NETWORK_BAIL(intp0, intp1, intp2)
    return native.call(0x95914459A87EBA28, intp0, intp1, intp2)
end

function natives._0x283B6062A2C01E9B()
    return native.call(0x283B6062A2C01E9B)
end

function natives._0x8B4FFC790CA131EF(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x8B4FFC790CA131EF, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_TRANSITION_TRACK(Hashhash, intp1, intp2, intstate, intp4)
    return native.call(0xC3BFED92026A2AAD, Hashhash, intp1, intp2, intstate, intp4)
end

function natives._0x04918A41BC9B8157(Anyp0, Anyp1, Anyp2)
    return native.call(0x04918A41BC9B8157, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_CAN_ACCESS_MULTIPLAYER(intloadingState)
    return native.call(0xAF50DA1A3F8B1BA4, intloadingState)
end

function natives.NETWORK_IS_MULTIPLAYER_DISABLED()
    return native.call(0x9747292807126EDA)
end

function natives.NETWORK_CAN_ENTER_MULTIPLAYER()
    return native.call(0x7E782A910C362C25)
end

function natives.NETWORK_SESSION_ENTER(Anyp0, Anyp1, Anyp2, intmaxPlayers, Anyp4, Anyp5)
    return native.call(0x330ED4D05491934F, Anyp0, Anyp1, Anyp2, intmaxPlayers, Anyp4, Anyp5)
end

function natives.NETWORK_SESSION_FRIEND_MATCHMAKING(intp0, intp1, intmaxPlayers, BOOLp3)
    return native.call(0x2CFC76E0D087C994, intp0, intp1, intmaxPlayers, BOOLp3)
end

function natives.NETWORK_SESSION_CREW_MATCHMAKING(intp0, intp1, intp2, intmaxPlayers, BOOLp4)
    return native.call(0x94BC51E9449D917F, intp0, intp1, intp2, intmaxPlayers, BOOLp4)
end

function natives.NETWORK_SESSION_ACTIVITY_QUICKMATCH(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xBE3E347A87ACEB82, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.NETWORK_SESSION_HOST(intp0, intmaxPlayers, BOOLp2)
    return native.call(0x6F3D4ED9BEE4E61D, intp0, intmaxPlayers, BOOLp2)
end

function natives.NETWORK_SESSION_HOST_CLOSED(intp0, intmaxPlayers)
    return native.call(0xED34C0C02C098BB7, intp0, intmaxPlayers)
end

function natives.NETWORK_SESSION_HOST_FRIENDS_ONLY(intp0, intmaxPlayers)
    return native.call(0xB9CFD27A5D578D83, intp0, intmaxPlayers)
end

function natives.NETWORK_SESSION_IS_CLOSED_FRIENDS()
    return native.call(0xFBCFA2EA2E206890)
end

function natives.NETWORK_SESSION_IS_CLOSED_CREW()
    return native.call(0x74732C6CA90DA2B4)
end

function natives.NETWORK_SESSION_IS_SOLO()
    return native.call(0xF3929C2379B60CCE)
end

function natives.NETWORK_SESSION_IS_PRIVATE()
    return native.call(0xCEF70AA5B3F89BA1)
end

function natives.NETWORK_SESSION_END(BOOLp0, BOOLp1)
    return native.call(0xA02E59562D711006, BOOLp0, BOOLp1)
end

function natives._0xB9351A07A0D458B1(Anyp0)
    return native.call(0xB9351A07A0D458B1, Anyp0)
end

function natives.NETWORK_SESSION_KICK_PLAYER(Playerplayer)
    return native.call(0xFA8904DC5F304220, Playerplayer)
end

function natives.NETWORK_SESSION_GET_KICK_VOTE(Playerplayer)
    return native.call(0xD6D09A6F32F49EF1, Playerplayer)
end

function natives._0x041C7F2A6C9894E6(Anyp0, Anyp1, Anyp2)
    return native.call(0x041C7F2A6C9894E6, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_JOIN_PREVIOUSLY_FAILED_SESSION()
    return native.call(0x59DF79317F85A7E0)
end

function natives.NETWORK_JOIN_PREVIOUSLY_FAILED_TRANSITION()
    return native.call(0xFFE1E5B792D92B34)
end

function natives.NETWORK_SESSION_SET_MATCHMAKING_GROUP(intmatchmakingGroup)
    return native.call(0x49EC8030F5015F8B, intmatchmakingGroup)
end

function natives.NETWORK_SESSION_SET_MATCHMAKING_GROUP_MAX(intplayerType, intplayerCount)
    return native.call(0x8B6A4DD0AF9CE215, intplayerType, intplayerCount)
end

function natives.NETWORK_SESSION_GET_MATCHMAKING_GROUP_FREE(intp0)
    return native.call(0x56CE820830EF040B, intp0)
end

function natives.NETWORK_SESSION_ADD_ACTIVE_MATCHMAKING_GROUP(intgroupId)
    return native.call(0xCAE55F48D3D7875C, intgroupId)
end

function natives._0xF49ABC20D8552257(Anyp0)
    return native.call(0xF49ABC20D8552257, Anyp0)
end

function natives._0x4811BBAC21C5FCD5(Anyp0)
    return native.call(0x4811BBAC21C5FCD5, Anyp0)
end

function natives._0x5539C3EBF104A53A(BOOLp0)
    return native.call(0x5539C3EBF104A53A, BOOLp0)
end

function natives._0x702BC4D605522539(Anyp0)
    return native.call(0x702BC4D605522539, Anyp0)
end

function natives.NETWORK_SESSION_SET_MATCHMAKING_PROPERTY_ID(BOOLp0)
    return native.call(0x3F52E880AAF6C8CA, BOOLp0)
end

function natives.NETWORK_SESSION_SET_MATCHMAKING_MENTAL_STATE(Anyp0)
    return native.call(0xF1EEA2DDA9FFA69D, Anyp0)
end

function natives._0x59D421683D31835A(Anyp0)
    return native.call(0x59D421683D31835A, Anyp0)
end

function natives.NETWORK_SESSION_SET_SCRIPT_VALIDATE_JOIN()
    return native.call(0x1153FA02A659051C)
end

function natives.NETWORK_SESSION_VALIDATE_JOIN(BOOLp0)
    return native.call(0xC19F6C8E7865A6FF, BOOLp0)
end

function natives.NETWORK_ADD_FOLLOWERS(intp0, intp1)
    return native.call(0x236406F60CF216D6, intp0, intp1)
end

function natives.NETWORK_CLEAR_FOLLOWERS()
    return native.call(0x058F43EC59A8631A)
end

function natives.NETWORK_GET_GLOBAL_MULTIPLAYER_CLOCK(inthours, intminutes, intseconds)
    return native.call(0x6D03BFBD643B2A02, inthours, intminutes, intseconds)
end

function natives._0x600F8CB31C7AAB6E(Anyp0)
    return native.call(0x600F8CB31C7AAB6E, Anyp0)
end

function natives.NETWORK_GET_TARGETING_MODE()
    return native.call(0xDFFA5BE8381C3314)
end

function natives.NETWORK_FIND_GAMERS_IN_CREW(Anyp0)
    return native.call(0xE532D6811B3A4D2A, Anyp0)
end

function natives.NETWORK_FIND_MATCHED_GAMERS(Anyp0, floatp1, floatp2, floatp3)
    return native.call(0xF7B2CFDE5C9F700D, Anyp0, floatp1, floatp2, floatp3)
end

function natives.NETWORK_IS_FINDING_GAMERS()
    return native.call(0xDDDF64C91BFCF0AA)
end

function natives.NETWORK_DID_FIND_GAMERS_SUCCEED()
    return native.call(0xF9B83B77929D8863)
end

function natives.NETWORK_GET_NUM_FOUND_GAMERS()
    return native.call(0xA1B043EE79A916FB)
end

function natives.NETWORK_GET_FOUND_GAMER(Anyp0, Anyp1)
    return native.call(0x9DCFF2AFB68B3476, Anyp0, Anyp1)
end

function natives.NETWORK_CLEAR_FOUND_GAMERS()
    return native.call(0x6D14CCEE1B40381A)
end

function natives.NETWORK_QUEUE_GAMER_FOR_STATUS(Anyp0)
    return native.call(0x85A0EF54A500882C, Anyp0)
end

function natives.NETWORK_GET_GAMER_STATUS_FROM_QUEUE()
    return native.call(0x2CC848A861D01493)
end

function natives.NETWORK_IS_GETTING_GAMER_STATUS()
    return native.call(0x94A8394D150B013A)
end

function natives.NETWORK_DID_GET_GAMER_STATUS_SUCCEED()
    return native.call(0x5AE17C6B0134B7F1)
end

function natives.NETWORK_GET_GAMER_STATUS_RESULT(Anyp0, Anyp1)
    return native.call(0x02A8BEC6FD9AF660, Anyp0, Anyp1)
end

function natives.NETWORK_CLEAR_GET_GAMER_STATUS()
    return native.call(0x86E0660E4F5C956D)
end

function natives.NETWORK_SESSION_JOIN_INVITE()
    return native.call(0xC6F8AB8A4189CF3A)
end

function natives.NETWORK_SESSION_CANCEL_INVITE()
    return native.call(0x2FBF47B1B36D36F9)
end

function natives.NETWORK_SESSION_FORCE_CANCEL_INVITE()
    return native.call(0xA29177F7703B5644)
end

function natives.NETWORK_HAS_PENDING_INVITE()
    return native.call(0xAC8C7B9B88C4A668)
end

function natives.NETWORK_HAS_CONFIRMED_INVITE()
    return native.call(0xC42DD763159F3461)
end

function natives.NETWORK_ACCEPT_INVITE()
    return native.call(0x62A0296C1BB1CEB3)
end

function natives.NETWORK_SESSION_WAS_INVITED()
    return native.call(0x23DFB504655D0CE4)
end

function natives.NETWORK_SESSION_GET_INVITER(AnygamerHandle)
    return native.call(0xE57397B4A3429DD0, AnygamerHandle)
end

function natives.NETWORK_SESSION_IS_AWAITING_INVITE_RESPONSE()
    return native.call(0xD313DE83394AF134)
end

function natives._0xBDB6F89C729CF388()
    return native.call(0xBDB6F89C729CF388)
end

function natives.NETWORK_SUPPRESS_INVITE(BOOLtoggle)
    return native.call(0xA0682D67EF1FBA3D, BOOLtoggle)
end

function natives.NETWORK_BLOCK_INVITES(BOOLtoggle)
    return native.call(0x34F9E9049454A7A0, BOOLtoggle)
end

function natives.NETWORK_BLOCK_JOIN_QUEUE_INVITES(BOOLtoggle)
    return native.call(0xCFEB8AF24FC1D0BB, BOOLtoggle)
end

function natives._0x68980414688F7F9D(BOOLp0)
    return native.call(0x68980414688F7F9D, BOOLp0)
end

function natives._0xF814FEC6A19FD6E0()
    return native.call(0xF814FEC6A19FD6E0)
end

function natives.NETWORK_BLOCK_KICKED_PLAYERS(BOOLp0)
    return native.call(0x6B07B9CE4D390375, BOOLp0)
end

function natives.NETWORK_SET_SCRIPT_READY_FOR_EVENTS(BOOLtoggle)
    return native.call(0x7AC752103856FB20, BOOLtoggle)
end

function natives.NETWORK_IS_OFFLINE_INVITE_PENDING()
    return native.call(0x74698374C45701D2)
end

function natives.NETWORK_CLEAR_OFFLINE_INVITE_PENDING()
    return native.call(0x140E6A44870A11CE)
end

function natives.NETWORK_SESSION_HOST_SINGLE_PLAYER(intp0)
    return native.call(0xC74C33FCA52856D5, intp0)
end

function natives.NETWORK_SESSION_LEAVE_SINGLE_PLAYER()
    return native.call(0x3442775428FD2DAA)
end

function natives.NETWORK_IS_GAME_IN_PROGRESS()
    return native.call(0x10FAB35428CCC9D7)
end

function natives.NETWORK_IS_SESSION_ACTIVE()
    return native.call(0xD83C2B94E7508980)
end

function natives.NETWORK_IS_IN_SESSION()
    return native.call(0xCA97246103B63917)
end

function natives.NETWORK_IS_SESSION_STARTED()
    return native.call(0x9DE624D2FC4B603F)
end

function natives.NETWORK_IS_SESSION_BUSY()
    return native.call(0xF4435D66A8E2905E)
end

function natives.NETWORK_CAN_SESSION_END()
    return native.call(0x4EEBC3694E49C572)
end

function natives._0x4C9034162368E206()
    return native.call(0x4C9034162368E206)
end

function natives.NETWORK_SESSION_MARK_VISIBLE(BOOLtoggle)
    return native.call(0x271CC6AB59EBF9A5, BOOLtoggle)
end

function natives.NETWORK_SESSION_IS_VISIBLE()
    return native.call(0xBA416D68C631496A)
end

function natives.NETWORK_SESSION_BLOCK_JOIN_REQUESTS(BOOLtoggle)
    return native.call(0xA73667484D7037C3, BOOLtoggle)
end

function natives.NETWORK_SESSION_CHANGE_SLOTS(intp0, BOOLp1)
    return native.call(0xB4AB419E0D86ACAE, intp0, BOOLp1)
end

function natives.NETWORK_SESSION_GET_PRIVATE_SLOTS()
    return native.call(0x53AFD64C6758F2F9)
end

function natives.NETWORK_SESSION_VOICE_HOST()
    return native.call(0x9C1556705F864230)
end

function natives.NETWORK_SESSION_VOICE_LEAVE()
    return native.call(0x6793E42BE02B575D)
end

function natives.NETWORK_SESSION_VOICE_CONNECT_TO_PLAYER(Anyp0)
    return native.call(0xABD5E88B8A2D3DB2, Anyp0)
end

function natives.NETWORK_SESSION_VOICE_RESPOND_TO_REQUEST(BOOLp0, intp1)
    return native.call(0x7F8413B7FC2AA6B9, BOOLp0, intp1)
end

function natives.NETWORK_SESSION_VOICE_SET_TIMEOUT(inttimeout)
    return native.call(0x5B8ED3DB018927B1, inttimeout)
end

function natives.NETWORK_SESSION_IS_IN_VOICE_SESSION()
    return native.call(0x855BC38818F6F684)
end

function natives._0xB5D3453C98456528()
    return native.call(0xB5D3453C98456528)
end

function natives.NETWORK_SESSION_IS_VOICE_SESSION_BUSY()
    return native.call(0xEF0912DDF7C4CB4B)
end

function natives.NETWORK_SEND_TEXT_MESSAGE(constcharmessage, AnygamerHandle)
    return native.call(0x3A214F2EC889B100, constcharmessage, AnygamerHandle)
end

function natives.NETWORK_SET_ACTIVITY_SPECTATOR(BOOLtoggle)
    return native.call(0x75138790B4359A74, BOOLtoggle)
end

function natives.NETWORK_IS_ACTIVITY_SPECTATOR()
    return native.call(0x12103B9E0C9F92FB)
end

function natives.NETWORK_SET_ACTIVITY_PLAYER_MAX(Anyp0)
    return native.call(0x0E4F77F7B9D74D84, Anyp0)
end

function natives.NETWORK_SET_ACTIVITY_SPECTATOR_MAX(intmaxSpectators)
    return native.call(0x9D277B76D1D12222, intmaxSpectators)
end

function natives.NETWORK_GET_ACTIVITY_PLAYER_NUM(BOOLp0)
    return native.call(0x73E2B500410DA5A2, BOOLp0)
end

function natives.NETWORK_IS_ACTIVITY_SPECTATOR_FROM_HANDLE(AnygamerHandle)
    return native.call(0x2763BBAA72A7BCB9, AnygamerHandle)
end

function natives.NETWORK_HOST_TRANSITION(intp0, intp1, intp2, intp3, Anyp4, BOOLp5, BOOLp6, intp7, Anyp8, intp9)
    return native.call(0xA60BB5CE242BB254, intp0, intp1, intp2, intp3, Anyp4, BOOLp5, BOOLp6, intp7, Anyp8, intp9)
end

function natives.NETWORK_DO_TRANSITION_QUICKMATCH(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x71FB0EBCD4915D56, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.NETWORK_DO_TRANSITION_QUICKMATCH_ASYNC(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0xA091A5E44F0072E5, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.NETWORK_DO_TRANSITION_QUICKMATCH_WITH_GROUP(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
    return native.call(0x9C4AB58491FDC98A, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
end

function natives.NETWORK_JOIN_GROUP_ACTIVITY()
    return native.call(0xA06509A691D12BE4)
end

function natives.NETWORK_CLEAR_GROUP_ACTIVITY()
    return native.call(0x1888694923EF4591)
end

function natives.NETWORK_RETAIN_ACTIVITY_GROUP()
    return native.call(0xB13E88E655E5A3BC)
end

function natives.NETWORK_IS_TRANSITION_CLOSED_FRIENDS()
    return native.call(0x6512765E3BE78C50)
end

function natives.NETWORK_IS_TRANSITION_CLOSED_CREW()
    return native.call(0x0DBD5D7E3C5BEC3B)
end

function natives.NETWORK_IS_TRANSITION_SOLO()
    return native.call(0x5DC577201723960A)
end

function natives.NETWORK_IS_TRANSITION_PRIVATE()
    return native.call(0x5A6AA44FF8E931E6)
end

function natives._0x617F49C2668E6155()
    return native.call(0x617F49C2668E6155)
end

function natives._0x261E97AD7BCF3D40(BOOLp0)
    return native.call(0x261E97AD7BCF3D40, BOOLp0)
end

function natives._0x39917E1B4CB0F911(BOOLp0)
    return native.call(0x39917E1B4CB0F911, BOOLp0)
end

function natives._0x2CE9D95E4051AECD(Anyp0)
    return native.call(0x2CE9D95E4051AECD, Anyp0)
end

function natives.NETWORK_SET_TRANSITION_CREATOR_HANDLE(Anyp0)
    return native.call(0xEF26739BCD9907D5, Anyp0)
end

function natives.NETWORK_CLEAR_TRANSITION_CREATOR_HANDLE()
    return native.call(0xFB3272229A82C759)
end

function natives.NETWORK_INVITE_GAMERS_TO_TRANSITION(Anyp0, Anyp1)
    return native.call(0x4A595C32F77DFF76, Anyp0, Anyp1)
end

function natives.NETWORK_SET_GAMER_INVITED_TO_TRANSITION(AnygamerHandle)
    return native.call(0xCA2C8073411ECDB6, AnygamerHandle)
end

function natives.NETWORK_LEAVE_TRANSITION()
    return native.call(0xD23A1A815D21DB19)
end

function natives.NETWORK_LAUNCH_TRANSITION()
    return native.call(0x2DCF46CB1A4F0884)
end

function natives._0xA2E9C1AB8A92E8CD(BOOLtoggle)
    return native.call(0xA2E9C1AB8A92E8CD, BOOLtoggle)
end

function natives.NETWORK_BAIL_TRANSITION(intp0, intp1, intp2)
    return native.call(0xEAA572036990CD1B, intp0, intp1, intp2)
end

function natives.NETWORK_DO_TRANSITION_TO_GAME(BOOLp0, intmaxPlayers)
    return native.call(0x3E9BB38102A589B0, BOOLp0, intmaxPlayers)
end

function natives.NETWORK_DO_TRANSITION_TO_NEW_GAME(BOOLp0, intmaxPlayers, BOOLp2)
    return native.call(0x4665F51EFED00034, BOOLp0, intmaxPlayers, BOOLp2)
end

function natives.NETWORK_DO_TRANSITION_TO_FREEMODE(Anyp0, Anyp1, BOOLp2, intplayers, BOOLp4)
    return native.call(0x3AAD8B2FCA1E289F, Anyp0, Anyp1, BOOLp2, intplayers, BOOLp4)
end

function natives.NETWORK_DO_TRANSITION_TO_NEW_FREEMODE(Anyp0, Anyp1, intplayers, BOOLp3, BOOLp4, BOOLp5)
    return native.call(0x9E80A5BA8109F974, Anyp0, Anyp1, intplayers, BOOLp3, BOOLp4, BOOLp5)
end

function natives.NETWORK_IS_TRANSITION_TO_GAME()
    return native.call(0x9D7696D8F4FA6CB7)
end

function natives.NETWORK_GET_TRANSITION_MEMBERS(Anydata, intdataCount)
    return native.call(0x73B000F7FBC55829, Anydata, intdataCount)
end

function natives.NETWORK_APPLY_TRANSITION_PARAMETER(intp0, intp1)
    return native.call(0x521638ADA1BA0D18, intp0, intp1)
end

function natives.NETWORK_APPLY_TRANSITION_PARAMETER_STRING(intp0, constcharstring, BOOLp2)
    return native.call(0xEBEFC2E77084F599, intp0, constcharstring, BOOLp2)
end

function natives.NETWORK_SEND_TRANSITION_GAMER_INSTRUCTION(AnygamerHandle, constcharp1, intp2, intp3, BOOLp4)
    return native.call(0x31D1D2B858D25E6B, AnygamerHandle, constcharp1, intp2, intp3, BOOLp4)
end

function natives.NETWORK_MARK_TRANSITION_GAMER_AS_FULLY_JOINED(Anyp0)
    return native.call(0x5728BB6D63E3FF1D, Anyp0)
end

function natives.NETWORK_IS_TRANSITION_HOST()
    return native.call(0x0B824797C9BF2159)
end

function natives.NETWORK_IS_TRANSITION_HOST_FROM_HANDLE(AnygamerHandle)
    return native.call(0x6B5C83BA3EFE6A10, AnygamerHandle)
end

function natives.NETWORK_GET_TRANSITION_HOST(AnygamerHandle)
    return native.call(0x65042B9774C4435E, AnygamerHandle)
end

function natives.NETWORK_IS_IN_TRANSITION()
    return native.call(0x68049AEFF83D8F0A)
end

function natives.NETWORK_IS_TRANSITION_STARTED()
    return native.call(0x53FA83401D9C07FE)
end

function natives.NETWORK_IS_TRANSITION_BUSY()
    return native.call(0x520F3282A53D26B7)
end

function natives.NETWORK_IS_TRANSITION_MATCHMAKING()
    return native.call(0x292564C735375EDF)
end

function natives._0xC571D0E77D8BBC29()
    return native.call(0xC571D0E77D8BBC29)
end

function natives._0x1398582B7F72B3ED(Anyp0)
    return native.call(0x1398582B7F72B3ED, Anyp0)
end

function natives._0x1F8E00FB18239600(Anyp0)
    return native.call(0x1F8E00FB18239600, Anyp0)
end

function natives._0xF6F4383B7C92F11A(Anyp0)
    return native.call(0xF6F4383B7C92F11A, Anyp0)
end

function natives.NETWORK_OPEN_TRANSITION_MATCHMAKING()
    return native.call(0x2B3A8F7CA3A38FDE)
end

function natives.NETWORK_CLOSE_TRANSITION_MATCHMAKING()
    return native.call(0x43F4DBA69710E01E)
end

function natives.NETWORK_IS_TRANSITION_OPEN_TO_MATCHMAKING()
    return native.call(0x37A4494483B9F5C9)
end

function natives.NETWORK_SET_TRANSITION_VISIBILITY_LOCK(BOOLp0, BOOLp1)
    return native.call(0x0C978FDA19692C2C, BOOLp0, BOOLp1)
end

function natives.NETWORK_IS_TRANSITION_VISIBILITY_LOCKED()
    return native.call(0xD0A484CB2F829FBE)
end

function natives.NETWORK_SET_TRANSITION_ACTIVITY_ID(Anyp0)
    return native.call(0x30DE938B516F0AD2, Anyp0)
end

function natives.NETWORK_CHANGE_TRANSITION_SLOTS(Anyp0, Anyp1)
    return native.call(0xEEEDA5E6D7080987, Anyp0, Anyp1)
end

function natives.NETWORK_TRANSITION_BLOCK_JOIN_REQUESTS(BOOLp0)
    return native.call(0x973D76AA760A6CB6, BOOLp0)
end

function natives.NETWORK_HAS_PLAYER_STARTED_TRANSITION(Playerplayer)
    return native.call(0x9AC9CCBFA8C29795, Playerplayer)
end

function natives.NETWORK_ARE_TRANSITION_DETAILS_VALID(Anyp0)
    return native.call(0x2615AA2A695930C1, Anyp0)
end

function natives.NETWORK_JOIN_TRANSITION(Playerplayer)
    return native.call(0x9D060B08CD63321A, Playerplayer)
end

function natives.NETWORK_HAS_INVITED_GAMER_TO_TRANSITION(Anyp0)
    return native.call(0x7284A47B3540E6CF, Anyp0)
end

function natives.NETWORK_HAS_TRANSITION_INVITE_BEEN_ACKED(Anyp0)
    return native.call(0x3F9990BF5F22759C, Anyp0)
end

function natives.NETWORK_IS_ACTIVITY_SESSION()
    return native.call(0x05095437424397FA)
end

function natives._0x236905C700FDB54D()
    return native.call(0x236905C700FDB54D)
end

function natives.NETWORK_SET_PRESENCE_SESSION_INVITES_BLOCKED(BOOLtoggle)
    return native.call(0x4A9FDE3A5A6D0437, BOOLtoggle)
end

function natives.NETWORK_SEND_INVITE_VIA_PRESENCE(AnygamerHandle, constcharp1, Anyp2, Anyp3)
    return native.call(0xC3C7A6AFDB244624, AnygamerHandle, constcharp1, Anyp2, Anyp3)
end

function natives.NETWORK_SEND_TRANSITION_INVITE_VIA_PRESENCE(AnygamerHandle, constcharp1, Anyp2, Anyp3)
    return native.call(0xC116FF9B4D488291, AnygamerHandle, constcharp1, Anyp2, Anyp3)
end

function natives.NETWORK_SEND_PRESENCE_TRANSITION_INVITE(AnygamerHandle, constcharp1, Anyp2, Anyp3)
    return native.call(0x1171A97A3D3981B6, AnygamerHandle, constcharp1, Anyp2, Anyp3)
end

function natives.NETWORK_GET_PRESENCE_INVITE_INDEX_BY_ID(Anyp0)
    return native.call(0x742B58F723233ED9, Anyp0)
end

function natives.NETWORK_GET_NUM_PRESENCE_INVITES()
    return native.call(0xCEFA968912D0F78D)
end

function natives.NETWORK_ACCEPT_PRESENCE_INVITE(Anyp0)
    return native.call(0xFA91550DF9318B22, Anyp0)
end

function natives.NETWORK_REMOVE_PRESENCE_INVITE(Anyp0)
    return native.call(0xF0210268DB0974B1, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_ID(Anyp0)
    return native.call(0xDFF09646E12EC386, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_INVITER(Anyp0)
    return native.call(0x4962CC4AA2F345B7, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_HANDLE(Anyp0, Anyp1)
    return native.call(0x38D5B0FEBB086F75, Anyp0, Anyp1)
end

function natives.NETWORK_GET_PRESENCE_INVITE_SESSION_ID(Anyp0)
    return native.call(0x26E1CD96B0903D60, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_CONTENT_ID(Anyp0)
    return native.call(0x24409FC4C55CB22D, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_PLAYLIST_LENGTH(Anyp0)
    return native.call(0xD39B3FFF8FFDD5BF, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_PLAYLIST_CURRENT(Anyp0)
    return native.call(0x728C4CC7920CD102, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_FROM_ADMIN(Anyp0)
    return native.call(0x3DBF2DF0AEB7D289, Anyp0)
end

function natives.NETWORK_GET_PRESENCE_INVITE_IS_TOURNAMENT(Anyp0)
    return native.call(0x8806CEBFABD3CE05, Anyp0)
end

function natives.NETWORK_HAS_FOLLOW_INVITE()
    return native.call(0x76D9B976C4C09FDE)
end

function natives.NETWORK_ACTION_FOLLOW_INVITE()
    return native.call(0xC88156EBB786F8D5)
end

function natives.NETWORK_CLEAR_FOLLOW_INVITE()
    return native.call(0x439BFDE3CD0610F6)
end

function natives._0xEBF8284D8CADEB53()
    return native.call(0xEBF8284D8CADEB53)
end

function natives.NETWORK_REMOVE_TRANSITION_INVITE(Anyp0)
    return native.call(0x7524B431B2E6F7EE, Anyp0)
end

function natives.NETWORK_REMOVE_ALL_TRANSITION_INVITE()
    return native.call(0x726E0375C7A26368)
end

function natives._0xF083835B70BA9BFE()
    return native.call(0xF083835B70BA9BFE)
end

function natives.NETWORK_INVITE_GAMERS(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x9D80CD1D0E6327DE, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_HAS_INVITED_GAMER(Anyp0)
    return native.call(0x4D86CD31E8976ECE, Anyp0)
end

function natives.NETWORK_HAS_INVITE_BEEN_ACKED(AnygamerHandle)
    return native.call(0x71DC455F5CD1C2B1, AnygamerHandle)
end

function natives._0x3855FB5EB2C5E8B2(Anyp0)
    return native.call(0x3855FB5EB2C5E8B2, Anyp0)
end

function natives.NETWORK_GET_CURRENTLY_SELECTED_GAMER_HANDLE_FROM_INVITE_MENU(Anyp0)
    return native.call(0x74881E6BCAE2327C, Anyp0)
end

function natives.NETWORK_SET_CURRENTLY_SELECTED_GAMER_HANDLE_FROM_INVITE_MENU(Anyp0)
    return native.call(0x7206F674F2A3B1BB, Anyp0)
end

function natives.NETWORK_SET_INVITE_ON_CALL_FOR_INVITE_MENU(Anyp0)
    return native.call(0x66F010A4B031A331, Anyp0)
end

function natives.NETWORK_CHECK_DATA_MANAGER_SUCCEEDED_FOR_HANDLE(Anyp0, Anyp1)
    return native.call(0x44B37CDCAE765AAE, Anyp0, Anyp1)
end

function natives._0x4AD490AE1536933B(Anyp0, Anyp1)
    return native.call(0x4AD490AE1536933B, Anyp0, Anyp1)
end

function natives._0x0D77A82DC2D0DA59(Anyp0, Anyp1)
    return native.call(0x0D77A82DC2D0DA59, Anyp0, Anyp1)
end

function natives.FILLOUT_PM_PLAYER_LIST(AnygamerHandle, Anyp1, Anyp2)
    return native.call(0xCBBD7C4991B64809, AnygamerHandle, Anyp1, Anyp2)
end

function natives.FILLOUT_PM_PLAYER_LIST_WITH_NAMES(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x716B6DB9D1886106, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.REFRESH_PLAYER_LIST_STATS(intp0)
    return native.call(0xE26CCFF8094D8C74, intp0)
end

function natives.NETWORK_SET_CURRENT_DATA_MANAGER_HANDLE(Anyp0)
    return native.call(0x796A87B3B68D1F3D, Anyp0)
end

function natives.NETWORK_IS_IN_PLATFORM_PARTY()
    return native.call(0x2FC5650B0271CB57)
end

function natives.NETWORK_GET_PLATFORM_PARTY_UNK()
    return native.call(0x01ABCE5E7CBDA196)
end

function natives.NETWORK_GET_PLATFORM_PARTY_MEMBERS(Anydata, intdataSize)
    return native.call(0x120364DE2845DAF8, Anydata, intdataSize)
end

function natives.NETWORK_IS_IN_PLATFORM_PARTY_CHAT()
    return native.call(0xFD8B834A8BA05048)
end

function natives.NETWORK_IS_CHATTING_IN_PLATFORM_PARTY(AnygamerHandle)
    return native.call(0x8DE9945BCC9AEC52, AnygamerHandle)
end

function natives._0x2BF66D2E7414F686()
    return native.call(0x2BF66D2E7414F686)
end

function natives._0x14922ED3E38761F0()
    return native.call(0x14922ED3E38761F0)
end

function natives._0x6CE50E47F5543D0C()
    return native.call(0x6CE50E47F5543D0C)
end

function natives.NETWORK_SEND_QUEUED_JOIN_REQUEST()
    return native.call(0xFA2888E3833C8E96)
end

function natives._0x25D990F8E0E3F13C()
    return native.call(0x25D990F8E0E3F13C)
end

function natives.NETWORK_SEED_RANDOM_NUMBER_GENERATOR(intseed)
    return native.call(0xF1B84178F8674195, intseed)
end

function natives.NETWORK_GET_RANDOM_INT()
    return native.call(0x599E4FA1F87EB5FF)
end

function natives.NETWORK_GET_RANDOM_INT_RANGED(intrangeStart, intrangeEnd)
    return native.call(0xE30CF56F1EFA5F43, intrangeStart, intrangeEnd)
end

function natives.NETWORK_PLAYER_IS_CHEATER()
    return native.call(0x655B91F1495A9090)
end

function natives.NETWORK_PLAYER_GET_CHEATER_REASON()
    return native.call(0x172F75B6EE2233BA)
end

function natives.NETWORK_PLAYER_IS_BADSPORT()
    return native.call(0x19D8DA0E5A68045A)
end

function natives.TRIGGER_PLAYER_CRC_HACKER_CHECK(Playerplayer, intp1, HashscriptHash)
    return native.call(0x46FB3ED415C7641C, Playerplayer, intp1, HashscriptHash)
end

function natives._0xA12D3A5A3753CC23()
    return native.call(0xA12D3A5A3753CC23)
end

function natives._0xF287F506767CC8A9()
    return native.call(0xF287F506767CC8A9)
end

function natives.REMOTE_CHEAT_DETECTED(Playerplayer, inta, intb)
    return native.call(0x472841A026D26D8B, Playerplayer, inta, intb)
end

function natives.BAD_SPORT_PLAYER_LEFT_DETECTED(AnygamerHandle, intevent, intamountReceived)
    return native.call(0xEC5E3AF5289DCA81, AnygamerHandle, intevent, intamountReceived)
end

function natives.NETWORK_ADD_INVALID_MODEL(HashmodelHash)
    return native.call(0x7F562DBC212E81F9, HashmodelHash)
end

function natives.NETWORK_REMOVE_INVALID_MODEL(HashmodelHash)
    return native.call(0x791EDB5803B2F468, HashmodelHash)
end

function natives.NETWORK_CLEAR_INVALID_MODELS()
    return native.call(0x03B2F03A53D85E41)
end

function natives.NETWORK_APPLY_PED_SCAR_DATA(Pedped, intp1)
    return native.call(0xE66C690248F11150, Pedped, intp1)
end

function natives.NETWORK_SET_THIS_SCRIPT_IS_NETWORK_SCRIPT(intmaxNumMissionParticipants, BOOLp1, intinstanceId)
    return native.call(0x1CA59E306ECB80A5, intmaxNumMissionParticipants, BOOLp1, intinstanceId)
end

function natives.NETWORK_IS_THIS_SCRIPT_MARKED(Anyp0, BOOLp1, Anyp2)
    return native.call(0xD1110739EEADB592, Anyp0, BOOLp1, Anyp2)
end

function natives.NETWORK_GET_THIS_SCRIPT_IS_NETWORK_SCRIPT()
    return native.call(0x2910669969E9535E)
end

function natives.NETWORK_GET_MAX_NUM_PARTICIPANTS()
    return native.call(0xA6C90FBC38E395EE)
end

function natives.NETWORK_GET_NUM_PARTICIPANTS()
    return native.call(0x18D0456E86604654)
end

function natives.NETWORK_GET_SCRIPT_STATUS()
    return native.call(0x57D158647A6BFABF)
end

function natives.NETWORK_REGISTER_HOST_BROADCAST_VARIABLES(intvars, intnumVars, constchardebugName)
    return native.call(0x3E9B2F01C50DF595, intvars, intnumVars, constchardebugName)
end

function natives.NETWORK_REGISTER_PLAYER_BROADCAST_VARIABLES(intvars, intnumVars, constchardebugName)
    return native.call(0x3364AA97340CA215, intvars, intnumVars, constchardebugName)
end

function natives._0xEA8C0DDB10E2822A(Anyp0, Anyp1, Anyp2)
    return native.call(0xEA8C0DDB10E2822A, Anyp0, Anyp1, Anyp2)
end

function natives._0xD6D7478CA62B8D41(Anyp0, Anyp1, Anyp2)
    return native.call(0xD6D7478CA62B8D41, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_FINISH_BROADCASTING_DATA()
    return native.call(0x64F62AFB081E260D)
end

function natives.NETWORK_HAS_RECEIVED_HOST_BROADCAST_DATA()
    return native.call(0x5D10B3795F3FC886)
end

function natives.NETWORK_GET_PLAYER_INDEX(Playerplayer)
    return native.call(0x24FB80D107371267, Playerplayer)
end

function natives.NETWORK_GET_PARTICIPANT_INDEX(intindex)
    return native.call(0x1B84DF6AF2A46938, intindex)
end

function natives.NETWORK_GET_PLAYER_INDEX_FROM_PED(Pedped)
    return native.call(0x6C0E2E0125610278, Pedped)
end

function natives.NETWORK_GET_NUM_CONNECTED_PLAYERS()
    return native.call(0xA4A79DD2D9600654)
end

function natives.NETWORK_IS_PLAYER_CONNECTED(Playerplayer)
    return native.call(0x93DC1BE4E1ABE9D1, Playerplayer)
end

function natives.NETWORK_GET_TOTAL_NUM_PLAYERS()
    return native.call(0xCF61D4B4702EE9EB)
end

function natives.NETWORK_IS_PARTICIPANT_ACTIVE(intp0)
    return native.call(0x6FF8FF40B6357D45, intp0)
end

function natives.NETWORK_IS_PLAYER_ACTIVE(Playerplayer)
    return native.call(0xB8DFD30D6973E135, Playerplayer)
end

function natives.NETWORK_IS_PLAYER_A_PARTICIPANT(Playerplayer)
    return native.call(0x3CA58F6CB7CBD784, Playerplayer)
end

function natives.NETWORK_IS_HOST_OF_THIS_SCRIPT()
    return native.call(0x83CD99A1E6061AB5)
end

function natives.NETWORK_GET_HOST_OF_THIS_SCRIPT()
    return native.call(0xC7B4D79B01FA7A5C)
end

function natives.NETWORK_GET_HOST_OF_SCRIPT(constcharscriptName, intinstance_id, intposition_hash)
    return native.call(0x1D6A14F1F9A736FC, constcharscriptName, intinstance_id, intposition_hash)
end

function natives.NETWORK_SET_MISSION_FINISHED()
    return native.call(0x3B3D11CD9FFCDFC9)
end

function natives.NETWORK_IS_SCRIPT_ACTIVE(constcharscriptName, intinstance_id, BOOLp2, intposition_hash)
    return native.call(0x9D40DF90FAD26098, constcharscriptName, intinstance_id, BOOLp2, intposition_hash)
end

function natives.NETWORK_IS_SCRIPT_ACTIVE_BY_HASH(HashscriptHash, intp1, BOOLp2, intp3)
    return native.call(0xDA7DE67F5FE5EE13, HashscriptHash, intp1, BOOLp2, intp3)
end

function natives.NETWORK_IS_THREAD_ACTIVE(intthreadId)
    return native.call(0x560B423D73015E77, intthreadId)
end

function natives.NETWORK_GET_NUM_SCRIPT_PARTICIPANTS(constcharscriptName, intinstance_id, intposition_hash)
    return native.call(0x3658E8CD94FC121A, constcharscriptName, intinstance_id, intposition_hash)
end

function natives.NETWORK_GET_INSTANCE_ID_OF_THIS_SCRIPT()
    return native.call(0x638A3A81733086DB)
end

function natives.NETWORK_GET_POSITION_HASH_OF_THIS_SCRIPT()
    return native.call(0x257ED0FADF750BCF)
end

function natives.NETWORK_IS_PLAYER_A_PARTICIPANT_ON_SCRIPT(Playerplayer, constcharscript, intinstance_id)
    return native.call(0x1AD5B71586B94820, Playerplayer, constcharscript, intinstance_id)
end

function natives.NETWORK_PREVENT_SCRIPT_HOST_MIGRATION()
    return native.call(0x2302C0264EA58D31)
end

function natives.NETWORK_REQUEST_TO_BE_HOST_OF_THIS_SCRIPT()
    return native.call(0x741A3D8380319A81)
end

function natives.PARTICIPANT_ID()
    return native.call(0x90986E8876CE0A83)
end

function natives.PARTICIPANT_ID_TO_INT()
    return native.call(0x57A3BDDAD8E5AA0A)
end

function natives.NETWORK_GET_PLAYER_KILLER_OF_PLAYER(Playerplayer, HashweaponHash)
    return native.call(0x2DA41ED6E1FCD7A5, Playerplayer, HashweaponHash)
end

function natives.NETWORK_GET_DESTROYER_OF_NETWORK_ID(intnetId, HashweaponHash)
    return native.call(0x7A1ADEEF01740A24, intnetId, HashweaponHash)
end

function natives.NETWORK_GET_DESTROYER_OF_ENTITY(Entityentity, HashweaponHash)
    return native.call(0xC434133D9BA52777, Entityentity, HashweaponHash)
end

function natives.NETWORK_GET_ASSISTED_DAMAGE_OF_DEAD_ENTITY(Playerplayer, Entityentity, intp2)
    return native.call(0x83660B734994124D, Playerplayer, Entityentity, intp2)
end

function natives.NETWORK_GET_ASSISTED_DAMAGE_OF_ENTITY(Playerplayer, Entityentity, intp2)
    return native.call(0x4CACA84440FA26F6, Playerplayer, Entityentity, intp2)
end

function natives.NETWORK_GET_ENTITY_KILLER_OF_PLAYER(Playerplayer, HashweaponHash)
    return native.call(0x42B2DAA6B596F5F8, Playerplayer, HashweaponHash)
end

function natives.NETWORK_RESURRECT_LOCAL_PLAYER(floatx, floaty, floatz, floatheading, BOOLunk, BOOLchangetime, Anyp6)
    return native.call(0xEA23C49EAA83ACFB, floatx, floaty, floatz, floatheading, BOOLunk, BOOLchangetime, Anyp6)
end

function natives.NETWORK_SET_LOCAL_PLAYER_INVINCIBLE_TIME(inttime)
    return native.call(0x2D95C7E2D7E07307, inttime)
end

function natives.NETWORK_IS_LOCAL_PLAYER_INVINCIBLE()
    return native.call(0x8A8694B48715B000)
end

function natives.NETWORK_DISABLE_INVINCIBLE_FLASHING(Playerplayer, BOOLtoggle)
    return native.call(0x9DD368BF06983221, Playerplayer, BOOLtoggle)
end

function natives.NETWORK_PED_FORCE_GAME_STATE_UPDATE(Pedped)
    return native.call(0xF0BC9BCD24A511D5, Pedped)
end

function natives.NETWORK_SET_LOCAL_PLAYER_SYNC_LOOK_AT(BOOLtoggle)
    return native.call(0x524FF0AEFF9C3973, BOOLtoggle)
end

function natives.NETWORK_HAS_ENTITY_BEEN_REGISTERED_WITH_THIS_THREAD(Entityentity)
    return native.call(0xB07D3185E11657A5, Entityentity)
end

function natives.NETWORK_GET_NETWORK_ID_FROM_ENTITY(Entityentity)
    return native.call(0xA11700682F3AD45C, Entityentity)
end

function natives.NETWORK_GET_ENTITY_FROM_NETWORK_ID(intnetId)
    return native.call(0xCE4E5D9B0A4FF560, intnetId)
end

function natives.NETWORK_GET_ENTITY_IS_NETWORKED(Entityentity)
    return native.call(0xC7827959479DCC78, Entityentity)
end

function natives.NETWORK_GET_ENTITY_IS_LOCAL(Entityentity)
    return native.call(0x0991549DE4D64762, Entityentity)
end

function natives.NETWORK_REGISTER_ENTITY_AS_NETWORKED(Entityentity)
    return native.call(0x06FAACD625D80CAA, Entityentity)
end

function natives.NETWORK_UNREGISTER_NETWORKED_ENTITY(Entityentity)
    return native.call(0x7368E683BB9038D6, Entityentity)
end

function natives.NETWORK_DOES_NETWORK_ID_EXIST(intnetId)
    return native.call(0x38CE16C96BD11344, intnetId)
end

function natives.NETWORK_DOES_ENTITY_EXIST_WITH_NETWORK_ID(intnetId)
    return native.call(0x18A47D074708FD68, intnetId)
end

function natives.NETWORK_REQUEST_CONTROL_OF_NETWORK_ID(intnetId)
    return native.call(0xA670B3662FAFFBD0, intnetId)
end

function natives.NETWORK_HAS_CONTROL_OF_NETWORK_ID(intnetId)
    return native.call(0x4D36070FE0215186, intnetId)
end

function natives.NETWORK_IS_NETWORK_ID_A_CLONE(intnetId)
    return native.call(0x7242F8B741CE1086, intnetId)
end

function natives.NETWORK_REQUEST_CONTROL_OF_ENTITY(Entityentity)
    return native.call(0xB69317BF5E782347, Entityentity)
end

function natives.NETWORK_REQUEST_CONTROL_OF_DOOR(intdoorID)
    return native.call(0x870DDFD5A4A796E4, intdoorID)
end

function natives.NETWORK_HAS_CONTROL_OF_ENTITY(Entityentity)
    return native.call(0x01BF60A500E28887, Entityentity)
end

function natives.NETWORK_HAS_CONTROL_OF_PICKUP(Pickuppickup)
    return native.call(0x5BC9495F0B3B6FA6, Pickuppickup)
end

function natives.NETWORK_HAS_CONTROL_OF_DOOR(HashdoorHash)
    return native.call(0xCB3C68ADB06195DF, HashdoorHash)
end

function natives.NETWORK_IS_DOOR_NETWORKED(HashdoorHash)
    return native.call(0xC01E93FAC20C3346, HashdoorHash)
end

function natives.VEH_TO_NET(Vehiclevehicle)
    return native.call(0xB4C94523F023419C, Vehiclevehicle)
end

function natives.PED_TO_NET(Pedped)
    return native.call(0x0EDEC3C276198689, Pedped)
end

function natives.OBJ_TO_NET(Objectobject)
    return native.call(0x99BFDC94A603E541, Objectobject)
end

function natives.NET_TO_VEH(intnetHandle)
    return native.call(0x367B936610BA360C, intnetHandle)
end

function natives.NET_TO_PED(intnetHandle)
    return native.call(0xBDCD95FC216A8B3E, intnetHandle)
end

function natives.NET_TO_OBJ(intnetHandle)
    return native.call(0xD8515F5FEA14CB3F, intnetHandle)
end

function natives.NET_TO_ENT(intnetHandle)
    return native.call(0xBFFEAB45A9A9094A, intnetHandle)
end

function natives.NETWORK_GET_LOCAL_HANDLE(AnygamerHandle, intgamerHandleSize)
    return native.call(0xE86051786B66CD8E, AnygamerHandle, intgamerHandleSize)
end

function natives.NETWORK_HANDLE_FROM_USER_ID(constcharuserId, AnygamerHandle, intgamerHandleSize)
    return native.call(0xDCD51DD8F87AEC5C, constcharuserId, AnygamerHandle, intgamerHandleSize)
end

function natives.NETWORK_HANDLE_FROM_MEMBER_ID(constcharmemberId, AnygamerHandle, intgamerHandleSize)
    return native.call(0xA0FD21BED61E5C4C, constcharmemberId, AnygamerHandle, intgamerHandleSize)
end

function natives.NETWORK_HANDLE_FROM_PLAYER(Playerplayer, AnygamerHandle, intgamerHandleSize)
    return native.call(0x388EB2B86C73B6B3, Playerplayer, AnygamerHandle, intgamerHandleSize)
end

function natives.NETWORK_HASH_FROM_PLAYER_HANDLE(Playerplayer)
    return native.call(0xBC1D768F2F5D6C05, Playerplayer)
end

function natives.NETWORK_HASH_FROM_GAMER_HANDLE(AnygamerHandle)
    return native.call(0x58575AC3CF2CA8EC, AnygamerHandle)
end

function natives.NETWORK_HANDLE_FROM_FRIEND(intfriendIndex, AnygamerHandle, intgamerHandleSize)
    return native.call(0xD45CB817D7E177D2, intfriendIndex, AnygamerHandle, intgamerHandleSize)
end

function natives.NETWORK_GAMERTAG_FROM_HANDLE_START(AnygamerHandle)
    return native.call(0x9F0C0A981D73FA56, AnygamerHandle)
end

function natives.NETWORK_GAMERTAG_FROM_HANDLE_PENDING()
    return native.call(0xB071E27958EF4CF0)
end

function natives.NETWORK_GAMERTAG_FROM_HANDLE_SUCCEEDED()
    return native.call(0xFD00798DBA7523DD)
end

function natives.NETWORK_GET_GAMERTAG_FROM_HANDLE(AnygamerHandle)
    return native.call(0x426141162EBE5CDB, AnygamerHandle)
end

function natives.NETWORK_DISPLAYNAMES_FROM_HANDLES_START(Anyp0, Anyp1)
    return native.call(0xD66C9E72B3CC4982, Anyp0, Anyp1)
end

function natives.NETWORK_GET_DISPLAYNAMES_FROM_HANDLES(Anyp0, Anyp1, Anyp2)
    return native.call(0x58CC181719256197, Anyp0, Anyp1, Anyp2)
end

function natives.NETWORK_ARE_HANDLES_THE_SAME(AnygamerHandle1, AnygamerHandle2)
    return native.call(0x57DBA049E110F217, AnygamerHandle1, AnygamerHandle2)
end

function natives.NETWORK_IS_HANDLE_VALID(AnygamerHandle, intgamerHandleSize)
    return native.call(0x6F79B93B0A8E4133, AnygamerHandle, intgamerHandleSize)
end

function natives.NETWORK_GET_PLAYER_FROM_GAMER_HANDLE(AnygamerHandle)
    return native.call(0xCE5F689CF5A0A49D, AnygamerHandle)
end

function natives.NETWORK_MEMBER_ID_FROM_GAMER_HANDLE(AnygamerHandle)
    return native.call(0xC82630132081BB6F, AnygamerHandle)
end

function natives.NETWORK_IS_GAMER_IN_MY_SESSION(AnygamerHandle)
    return native.call(0x0F10B05DDF8D16E9, AnygamerHandle)
end

function natives.NETWORK_SHOW_PROFILE_UI(AnygamerHandle)
    return native.call(0x859ED1CEA343FCA8, AnygamerHandle)
end

function natives.NETWORK_PLAYER_GET_NAME(Playerplayer)
    return native.call(0x7718D2E2060837D2, Playerplayer)
end

function natives.NETWORK_PLAYER_GET_USERID(Playerplayer, intuserID)
    return native.call(0x4927FC39CD0869A0, Playerplayer, intuserID)
end

function natives.NETWORK_PLAYER_IS_ROCKSTAR_DEV(Playerplayer)
    return native.call(0x544ABDDA3B409B6D, Playerplayer)
end

function natives.NETWORK_PLAYER_INDEX_IS_CHEATER(Playerplayer)
    return native.call(0x565E430DB3B05BEC, Playerplayer)
end

function natives.NETWORK_GET_ENTITY_NET_SCRIPT_ID(Entityentity)
    return native.call(0x815F18AD865F057F, Entityentity)
end

function natives._0x37D5F739FD494675(Anyp0)
    return native.call(0x37D5F739FD494675, Anyp0)
end

function natives.NETWORK_IS_INACTIVE_PROFILE(Anyp0)
    return native.call(0x7E58745504313A2E, Anyp0)
end

function natives.NETWORK_GET_MAX_FRIENDS()
    return native.call(0xAFEBB0D5D8F687D2)
end

function natives.NETWORK_GET_FRIEND_COUNT()
    return native.call(0x203F1CFD823B27A4)
end

function natives.NETWORK_GET_FRIEND_NAME(intfriendIndex)
    return native.call(0xE11EBBB2A783FE8B, intfriendIndex)
end

function natives.NETWORK_GET_FRIEND_NAME_FROM_INDEX(intfriendIndex)
    return native.call(0x4164F227D052E293, intfriendIndex)
end

function natives.NETWORK_IS_FRIEND_ONLINE(constcharname)
    return native.call(0x425A44533437B64D, constcharname)
end

function natives.NETWORK_IS_FRIEND_HANDLE_ONLINE(AnygamerHandle)
    return native.call(0x87EB7A3FFCB314DB, AnygamerHandle)
end

function natives.NETWORK_IS_FRIEND_IN_SAME_TITLE(constcharfriendName)
    return native.call(0x2EA9A3BEDF3F17B8, constcharfriendName)
end

function natives.NETWORK_IS_FRIEND_IN_MULTIPLAYER(constcharfriendName)
    return native.call(0x57005C18827F3A28, constcharfriendName)
end

function natives.NETWORK_IS_FRIEND(AnygamerHandle)
    return native.call(0x1A24A179F9B31654, AnygamerHandle)
end

function natives.NETWORK_IS_PENDING_FRIEND(Anyp0)
    return native.call(0x0BE73DA6984A6E33, Anyp0)
end

function natives.NETWORK_IS_ADDING_FRIEND()
    return native.call(0x6EA101606F6E4D81)
end

function natives.NETWORK_ADD_FRIEND(AnygamerHandle, constcharmessage)
    return native.call(0x8E02D73914064223, AnygamerHandle, constcharmessage)
end

function natives.NETWORK_IS_FRIEND_INDEX_ONLINE(intfriendIndex)
    return native.call(0xBAD8F2A42B844821, intfriendIndex)
end

function natives.NETWORK_SET_PLAYER_IS_PASSIVE(BOOLtoggle)
    return native.call(0x1B857666604B1A74, BOOLtoggle)
end

function natives.NETWORK_GET_PLAYER_OWNS_WAYPOINT(Playerplayer)
    return native.call(0x82377B65E943F72D, Playerplayer)
end

function natives.NETWORK_CAN_SET_WAYPOINT()
    return native.call(0xC927EC229934AF60)
end

function natives._0x4C2A9FDC22377075()
    return native.call(0x4C2A9FDC22377075)
end

function natives.NETWORK_SET_SCRIPT_AUTOMUTED(Anyp0)
    return native.call(0xB309EBEA797E001F, Anyp0)
end

function natives.NETWORK_HAS_AUTOMUTE_OVERRIDE()
    return native.call(0x26F07DD83A5F7F98)
end

function natives.NETWORK_HAS_HEADSET()
    return native.call(0xE870F9F1F7B4F1FA)
end

function natives._0x7D395EA61622E116(BOOLp0)
    return native.call(0x7D395EA61622E116, BOOLp0)
end

function natives.NETWORK_IS_LOCAL_TALKING()
    return native.call(0xC0D2AF00BCC234CA)
end

function natives.NETWORK_GAMER_HAS_HEADSET(AnygamerHandle)
    return native.call(0xF2FD55CB574BCC55, AnygamerHandle)
end

function natives.NETWORK_IS_GAMER_TALKING(AnygamerHandle)
    return native.call(0x71C33B22606CD88A, AnygamerHandle)
end

function natives.NETWORK_CAN_COMMUNICATE_WITH_GAMER_2(AnygamerHandle)
    return native.call(0x8F5D1AD832AEB06C, AnygamerHandle)
end

function natives.NETWORK_CAN_COMMUNICATE_WITH_GAMER(AnygamerHandle)
    return native.call(0xA150A4F065806B1F, AnygamerHandle)
end

function natives.NETWORK_IS_GAMER_MUTED_BY_ME(AnygamerHandle)
    return native.call(0xCE60DE011B6C7978, AnygamerHandle)
end

function natives.NETWORK_AM_I_MUTED_BY_GAMER(AnygamerHandle)
    return native.call(0xDF02A2C93F1F26DA, AnygamerHandle)
end

function natives.NETWORK_IS_GAMER_BLOCKED_BY_ME(AnygamerHandle)
    return native.call(0xE944C4F5AF1B5883, AnygamerHandle)
end

function natives.NETWORK_AM_I_BLOCKED_BY_GAMER(AnygamerHandle)
    return native.call(0x15337C7C268A27B2, AnygamerHandle)
end

function natives.NETWORK_CAN_VIEW_GAMER_USER_CONTENT(AnygamerHandle)
    return native.call(0xB57A49545BA53CE7, AnygamerHandle)
end

function natives.NETWORK_HAS_VIEW_GAMER_USER_CONTENT_RESULT(AnygamerHandle)
    return native.call(0xCCA4318E1AB03F1F, AnygamerHandle)
end

function natives.NETWORK_CAN_PLAY_MULTIPLAYER_WITH_GAMER(AnygamerHandle)
    return native.call(0x07DD29D5E22763F1, AnygamerHandle)
end

function natives.NETWORK_CAN_GAMER_PLAY_MULTIPLAYER_WITH_ME(AnygamerHandle)
    return native.call(0x135F9B7B7ADD2185, AnygamerHandle)
end

function natives._0x021ABCBD98EC4320(Anyp0)
    return native.call(0x021ABCBD98EC4320, Anyp0)
end

function natives._0x421E34C55F125964(Anyp0)
    return native.call(0x421E34C55F125964, Anyp0)
end

function natives.NETWORK_IS_PLAYER_TALKING(Playerplayer)
    return native.call(0x031E11F3D447647E, Playerplayer)
end

function natives.NETWORK_PLAYER_HAS_HEADSET(Playerplayer)
    return native.call(0x3FB99A8B08D18FD6, Playerplayer)
end

function natives.NETWORK_IS_PLAYER_MUTED_BY_ME(Playerplayer)
    return native.call(0x8C71288AE68EDE39, Playerplayer)
end

function natives.NETWORK_AM_I_MUTED_BY_PLAYER(Playerplayer)
    return native.call(0x9D6981DFC91A8604, Playerplayer)
end

function natives.NETWORK_IS_PLAYER_BLOCKED_BY_ME(Playerplayer)
    return native.call(0x57AF1F8E27483721, Playerplayer)
end

function natives.NETWORK_AM_I_BLOCKED_BY_PLAYER(Playerplayer)
    return native.call(0x87F395D957D4353D, Playerplayer)
end

function natives.NETWORK_GET_PLAYER_LOUDNESS(Playerplayer)
    return native.call(0x21A1684A25C2867F, Playerplayer)
end

function natives.NETWORK_SET_TALKER_PROXIMITY(floatvalue)
    return native.call(0xCBF12D65F95AD686, floatvalue)
end

function natives.NETWORK_GET_TALKER_PROXIMITY()
    return native.call(0x84F0F13120B4E098)
end

function natives.NETWORK_SET_VOICE_ACTIVE(BOOLtoggle)
    return native.call(0xBABEC9E69A91C57B, BOOLtoggle)
end

function natives._0xCFEB46DCD7D8D5EB(BOOLp0)
    return native.call(0xCFEB46DCD7D8D5EB, BOOLp0)
end

function natives.NETWORK_OVERRIDE_TRANSITION_CHAT(BOOLp0)
    return native.call(0xAF66059A131AA269, BOOLp0)
end

function natives.NETWORK_SET_TEAM_ONLY_CHAT(BOOLtoggle)
    return native.call(0xD5B4883AC32F24C3, BOOLtoggle)
end

function natives._0x265559DA40B3F327(Anyp0)
    return native.call(0x265559DA40B3F327, Anyp0)
end

function natives._0x4348BFDA56023A2F(Anyp0, Anyp1)
    return native.call(0x4348BFDA56023A2F, Anyp0, Anyp1)
end

function natives.NETWORK_OVERRIDE_TEAM_RESTRICTIONS(intteam, BOOLtoggle)
    return native.call(0x6F697A66CE78674E, intteam, BOOLtoggle)
end

function natives.NETWORK_SET_OVERRIDE_SPECTATOR_MODE(BOOLtoggle)
    return native.call(0x70DA3BF8DACD3210, BOOLtoggle)
end

function natives.NETWORK_SET_OVERRIDE_TUTORIAL_SESSION_CHAT(BOOLtoggle)
    return native.call(0x3C5C1E2C2FF814B1, BOOLtoggle)
end

function natives._0x9D7AFCBF21C51712(BOOLtoggle)
    return native.call(0x9D7AFCBF21C51712, BOOLtoggle)
end

function natives.NETWORK_SET_NO_SPECTATOR_CHAT(BOOLtoggle)
    return native.call(0xF46A1E03E8755980, BOOLtoggle)
end

function natives._0x6A5D89D7769A40D8(BOOLtoggle)
    return native.call(0x6A5D89D7769A40D8, BOOLtoggle)
end

function natives.NETWORK_OVERRIDE_CHAT_RESTRICTIONS(Playerplayer, BOOLtoggle)
    return native.call(0x3039AE5AD2C9C0C4, Playerplayer, BOOLtoggle)
end

function natives.NETWORK_OVERRIDE_SEND_RESTRICTIONS(Playerplayer, BOOLtoggle)
    return native.call(0x97DD4C5944CC2E6A, Playerplayer, BOOLtoggle)
end

function natives.NETWORK_OVERRIDE_SEND_RESTRICTIONS_ALL(BOOLtoggle)
    return native.call(0x57B192B4D4AD23D5, BOOLtoggle)
end

function natives.NETWORK_OVERRIDE_RECEIVE_RESTRICTIONS(Playerplayer, BOOLtoggle)
    return native.call(0xDDF73E2B1FEC5AB4, Playerplayer, BOOLtoggle)
end

function natives.NETWORK_OVERRIDE_RECEIVE_RESTRICTIONS_ALL(BOOLtoggle)
    return native.call(0x0FF2862B61A58AF9, BOOLtoggle)
end

function natives.NETWORK_SET_VOICE_CHANNEL(intchannel)
    return native.call(0xEF6212C2EFEF1A23, intchannel)
end

function natives.NETWORK_CLEAR_VOICE_CHANNEL()
    return native.call(0xE036A705F989E049)
end

function natives.NETWORK_APPLY_VOICE_PROXIMITY_OVERRIDE(floatx, floaty, floatz)
    return native.call(0xDBD2056652689917, floatx, floaty, floatz)
end

function natives.NETWORK_CLEAR_VOICE_PROXIMITY_OVERRIDE()
    return native.call(0xF03755696450470C)
end

function natives.NETWORK_ENABLE_VOICE_BANDWIDTH_RESTRICTION(Playerplayer)
    return native.call(0x5E3AA4CA2B6FB0EE, Playerplayer)
end

function natives.NETWORK_DISABLE_VOICE_BANDWIDTH_RESTRICTION(Playerplayer)
    return native.call(0xCA575C391FEA25CC, Playerplayer)
end

function natives._0xADB57E5B663CCA8B(Playerp0, floatp1, floatp2)
    return native.call(0xADB57E5B663CCA8B, Playerp0, floatp1, floatp2)
end

function natives._0x8EF52ACAECC51D9C(BOOLtoggle)
    return native.call(0x8EF52ACAECC51D9C, BOOLtoggle)
end

function natives.NETWORK_IS_TEXT_CHAT_ACTIVE()
    return native.call(0x5FCF4D7069B09026)
end

function natives.SHUTDOWN_AND_LAUNCH_SINGLE_PLAYER_GAME()
    return native.call(0x593850C16A36B692)
end

function natives.SHUTDOWN_AND_LOAD_MOST_RECENT_SAVE()
    return native.call(0x9ECA15ADFE141431)
end

function natives.NETWORK_SET_FRIENDLY_FIRE_OPTION(BOOLtoggle)
    return native.call(0xF808475FA571D823, BOOLtoggle)
end

function natives.NETWORK_SET_RICH_PRESENCE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x1DCCACDCFC569362, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.NETWORK_SET_RICH_PRESENCE_STRING(intp0, constchartextLabel)
    return native.call(0x3E200C2BCF4164EB, intp0, constchartextLabel)
end

function natives.NETWORK_GET_TIMEOUT_TIME()
    return native.call(0x5ED0356A0CE3A34F)
end

function natives.NETWORK_LEAVE_PED_BEHIND_BEFORE_WARP(Playerplayer, floatx, floaty, floatz, BOOLp4, BOOLp5)
    return native.call(0x9769F811D1785B03, Playerplayer, floatx, floaty, floatz, BOOLp4, BOOLp5)
end

function natives.NETWORK_LEAVE_PED_BEHIND_BEFORE_CUTSCENE(Playerplayer, BOOLp1)
    return native.call(0xBF22E0F32968E967, Playerplayer, BOOLp1)
end

function natives.REMOVE_ALL_STICKY_BOMBS_FROM_ENTITY(Entityentity, Pedped)
    return native.call(0x715135F4B82AC90D, Entityentity, Pedped)
end

function natives._0x17C9E241111A674D(Anyp0, Anyp1)
    return native.call(0x17C9E241111A674D, Anyp0, Anyp1)
end

function natives._0x2E4C123D1C8A710E(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x2E4C123D1C8A710E, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.NETWORK_CLAN_SERVICE_IS_VALID()
    return native.call(0x579CCED0265D4896)
end

function natives.NETWORK_CLAN_PLAYER_IS_ACTIVE(AnygamerHandle)
    return native.call(0xB124B57F571D8F18, AnygamerHandle)
end

function natives.NETWORK_CLAN_PLAYER_GET_DESC(AnyclanDesc, intbufferSize, AnygamerHandle)
    return native.call(0xEEE6EACBE8874FBA, AnyclanDesc, intbufferSize, AnygamerHandle)
end

function natives.NETWORK_CLAN_IS_ROCKSTAR_CLAN(AnyclanDesc, intbufferSize)
    return native.call(0x7543BB439F63792B, AnyclanDesc, intbufferSize)
end

function natives.NETWORK_CLAN_GET_UI_FORMATTED_TAG(AnyclanDesc, intbufferSize, charformattedTag)
    return native.call(0xF45352426FF3A4F0, AnyclanDesc, intbufferSize, charformattedTag)
end

function natives.NETWORK_CLAN_GET_LOCAL_MEMBERSHIPS_COUNT()
    return native.call(0x1F471B79ACC90BEF)
end

function natives.NETWORK_CLAN_GET_MEMBERSHIP_DESC(AnymemberDesc, intp1)
    return native.call(0x48DE78AF2C8885B8, AnymemberDesc, intp1)
end

function natives.NETWORK_CLAN_DOWNLOAD_MEMBERSHIP(AnygamerHandle)
    return native.call(0xA989044E70010ABE, AnygamerHandle)
end

function natives.NETWORK_CLAN_DOWNLOAD_MEMBERSHIP_PENDING(Anyp0)
    return native.call(0x5B9E023DC6EBEDC0, Anyp0)
end

function natives.NETWORK_CLAN_ANY_DOWNLOAD_MEMBERSHIP_PENDING()
    return native.call(0xB3F64A6A91432477)
end

function natives.NETWORK_CLAN_REMOTE_MEMBERSHIPS_ARE_IN_CACHE(intp0)
    return native.call(0xBB6E6FEE99D866B2, intp0)
end

function natives.NETWORK_CLAN_GET_MEMBERSHIP_COUNT(intp0)
    return native.call(0xAAB11F6C4ADBC2C1, intp0)
end

function natives.NETWORK_CLAN_GET_MEMBERSHIP_VALID(intp0, Anyp1)
    return native.call(0x48A59CF88D43DF0E, intp0, Anyp1)
end

function natives.NETWORK_CLAN_GET_MEMBERSHIP(intp0, AnyclanMembership, intp2)
    return native.call(0xC8BC2011F67B3411, intp0, AnyclanMembership, intp2)
end

function natives.NETWORK_CLAN_JOIN(intclanDesc)
    return native.call(0x9FAAA4F4FC71F87F, intclanDesc)
end

function natives.NETWORK_CLAN_ANIMATION(constcharanimDict, constcharanimName)
    return native.call(0x729E3401F0430686, constcharanimDict, constcharanimName)
end

function natives._0x2B51EDBEFC301339(intp0, constcharp1)
    return native.call(0x2B51EDBEFC301339, intp0, constcharp1)
end

function natives._0xC32EA7A2F6CA7557()
    return native.call(0xC32EA7A2F6CA7557)
end

function natives.NETWORK_CLAN_GET_EMBLEM_TXD_NAME(AnynetHandle, chartxdName)
    return native.call(0x5835D9CD92E83184, AnynetHandle, chartxdName)
end

function natives.NETWORK_CLAN_REQUEST_EMBLEM(Anyp0)
    return native.call(0x13518FF1C6B28938, Anyp0)
end

function natives.NETWORK_CLAN_IS_EMBLEM_READY(Anyp0, Anyp1)
    return native.call(0xA134777FF7F33331, Anyp0, Anyp1)
end

function natives.NETWORK_CLAN_RELEASE_EMBLEM(Anyp0)
    return native.call(0x113E6E3E50E286B0, Anyp0)
end

function natives.NETWORK_GET_PRIMARY_CLAN_DATA_CLEAR()
    return native.call(0x9AA46BADAD0E27ED)
end

function natives.NETWORK_GET_PRIMARY_CLAN_DATA_CANCEL()
    return native.call(0x042E4B70B93E6054)
end

function natives.NETWORK_GET_PRIMARY_CLAN_DATA_START(Anyp0, Anyp1)
    return native.call(0xCE86D8191B762107, Anyp0, Anyp1)
end

function natives.NETWORK_GET_PRIMARY_CLAN_DATA_PENDING()
    return native.call(0xB5074DB804E28CE7)
end

function natives.NETWORK_GET_PRIMARY_CLAN_DATA_SUCCESS()
    return native.call(0x5B4F04F19376A0BA)
end

function natives.NETWORK_GET_PRIMARY_CLAN_DATA_NEW(Anyp0, Anyp1)
    return native.call(0xC080FF658B2E41DA, Anyp0, Anyp1)
end

function natives.SET_NETWORK_ID_CAN_MIGRATE(intnetId, BOOLtoggle)
    return native.call(0x299EEB23175895FC, intnetId, BOOLtoggle)
end

function natives.SET_NETWORK_ID_EXISTS_ON_ALL_MACHINES(intnetId, BOOLtoggle)
    return native.call(0xE05E81A888FA63C8, intnetId, BOOLtoggle)
end

function natives.SET_NETWORK_ID_ALWAYS_EXISTS_FOR_PLAYER(intnetId, Playerplayer, BOOLtoggle)
    return native.call(0xA8A024587329F36A, intnetId, Playerplayer, BOOLtoggle)
end

function natives.SET_NETWORK_ID_CAN_BE_REASSIGNED(intnetId, BOOLtoggle)
    return native.call(0x9D724B400A7E8FFC, intnetId, BOOLtoggle)
end

function natives.NETWORK_SET_ENTITY_CAN_BLEND(Entityentity, BOOLtoggle)
    return native.call(0xD830567D88A1E873, Entityentity, BOOLtoggle)
end

function natives.NETWORK_SET_OBJECT_FORCE_STATIC_BLEND(Objectobject, BOOLtoggle)
    return native.call(0x0379DAF89BA09AA5, Objectobject, BOOLtoggle)
end

function natives.NETWORK_SET_ENTITY_INVISIBLE_TO_NETWORK(Entityentity, BOOLtoggle)
    return native.call(0xF1CA12B18AEF5298, Entityentity, BOOLtoggle)
end

function natives.SET_NETWORK_ID_VISIBLE_IN_CUTSCENE(intnetId, BOOLp1, BOOLp2)
    return native.call(0xA6928482543022B4, intnetId, BOOLp1, BOOLp2)
end

function natives.SET_NETWORK_ID_VISIBLE_IN_CUTSCENE_NO_COLLISION(intnetId, BOOLp1, BOOLp2)
    return native.call(0x32EBD154CB6B8B99, intnetId, BOOLp1, BOOLp2)
end

function natives._0x76B3F29D3F967692(Anyp0, Anyp1)
    return native.call(0x76B3F29D3F967692, Anyp0, Anyp1)
end

function natives.SET_NETWORK_CUTSCENE_ENTITIES(BOOLtoggle)
    return native.call(0xAAA553E7DD28A457, BOOLtoggle)
end

function natives.SET_NETWORK_ID_PASS_CONTROL_IN_TUTORIAL(intnetId, BOOLstate)
    return native.call(0x3FA36981311FA4FF, intnetId, BOOLstate)
end

function natives.IS_NETWORK_ID_OWNED_BY_PARTICIPANT(intnetId)
    return native.call(0xA1607996431332DF, intnetId)
end

function natives.SET_LOCAL_PLAYER_VISIBLE_IN_CUTSCENE(BOOLp0, BOOLp1)
    return native.call(0xD1065D68947E7B6E, BOOLp0, BOOLp1)
end

function natives.SET_LOCAL_PLAYER_INVISIBLE_LOCALLY(BOOLp0)
    return native.call(0xE5F773C1A1D9D168, BOOLp0)
end

function natives.SET_LOCAL_PLAYER_VISIBLE_LOCALLY(BOOLp0)
    return native.call(0x7619364C82D3BF14, BOOLp0)
end

function natives.SET_PLAYER_INVISIBLE_LOCALLY(Playerplayer, BOOLtoggle)
    return native.call(0x12B37D54667DB0B8, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_VISIBLE_LOCALLY(Playerplayer, BOOLtoggle)
    return native.call(0xFAA10F1FAFB11AF2, Playerplayer, BOOLtoggle)
end

function natives.FADE_OUT_LOCAL_PLAYER(BOOLp0)
    return native.call(0x416DBD4CD6ED8DD2, BOOLp0)
end

function natives.NETWORK_FADE_OUT_ENTITY(Entityentity, BOOLnormal, BOOLslow)
    return native.call(0xDE564951F95E09ED, Entityentity, BOOLnormal, BOOLslow)
end

function natives.NETWORK_FADE_IN_ENTITY(Entityentity, BOOLstate, Anyp2)
    return native.call(0x1F4ED342ACEFE62D, Entityentity, BOOLstate, Anyp2)
end

function natives.NETWORK_IS_PLAYER_FADING(Playerplayer)
    return native.call(0x631DC5DFF4B110E3, Playerplayer)
end

function natives.NETWORK_IS_ENTITY_FADING(Entityentity)
    return native.call(0x422F32CC7E56ABAD, Entityentity)
end

function natives.IS_PLAYER_IN_CUTSCENE(Playerplayer)
    return native.call(0xE73092F4157CD126, Playerplayer)
end

function natives.SET_ENTITY_VISIBLE_IN_CUTSCENE(Anyp0, BOOLp1, BOOLp2)
    return native.call(0xE0031D3C8F36AB82, Anyp0, BOOLp1, BOOLp2)
end

function natives.SET_ENTITY_LOCALLY_INVISIBLE(Entityentity)
    return native.call(0xE135A9FF3F5D05D8, Entityentity)
end

function natives.SET_ENTITY_LOCALLY_VISIBLE(Entityentity)
    return native.call(0x241E289B5C059EDC, Entityentity)
end

function natives.IS_DAMAGE_TRACKER_ACTIVE_ON_NETWORK_ID(intnetID)
    return native.call(0x6E192E33AD436366, intnetID)
end

function natives.ACTIVATE_DAMAGE_TRACKER_ON_NETWORK_ID(intnetID, BOOLtoggle)
    return native.call(0xD45B1FFCCD52FF19, intnetID, BOOLtoggle)
end

function natives.IS_DAMAGE_TRACKER_ACTIVE_ON_PLAYER(Playerplayer)
    return native.call(0xB2092A1EAA7FD45F, Playerplayer)
end

function natives.ACTIVATE_DAMAGE_TRACKER_ON_PLAYER(Playerplayer, BOOLtoggle)
    return native.call(0xBEC0816FF5ACBCDA, Playerplayer, BOOLtoggle)
end

function natives.IS_SPHERE_VISIBLE_TO_ANOTHER_MACHINE(floatp0, floatp1, floatp2, floatp3)
    return native.call(0xD82CF8E64C8729D8, floatp0, floatp1, floatp2, floatp3)
end

function natives.IS_SPHERE_VISIBLE_TO_PLAYER(Anyp0, floatp1, floatp2, floatp3, floatp4)
    return native.call(0xDC3A310219E5DA62, Anyp0, floatp1, floatp2, floatp3, floatp4)
end

function natives.RESERVE_NETWORK_MISSION_OBJECTS(intamount)
    return native.call(0x4E5C93BD0C32FBF8, intamount)
end

function natives.RESERVE_NETWORK_MISSION_PEDS(intamount)
    return native.call(0xB60FEBA45333D36F, intamount)
end

function natives.RESERVE_NETWORK_MISSION_VEHICLES(intamount)
    return native.call(0x76B02E21ED27A469, intamount)
end

function natives.RESERVE_NETWORK_LOCAL_OBJECTS(intamount)
    return native.call(0x797F9C5E661D920E, intamount)
end

function natives.RESERVE_NETWORK_LOCAL_PEDS(intamount)
    return native.call(0x2C8DF5D129595281, intamount)
end

function natives.RESERVE_NETWORK_LOCAL_VEHICLES(intamount)
    return native.call(0x42613035157E4208, intamount)
end

function natives.CAN_REGISTER_MISSION_OBJECTS(intamount)
    return native.call(0x800DD4721A8B008B, intamount)
end

function natives.CAN_REGISTER_MISSION_PEDS(intamount)
    return native.call(0xBCBF4FEF9FA5D781, intamount)
end

function natives.CAN_REGISTER_MISSION_VEHICLES(intamount)
    return native.call(0x7277F1F2E085EE74, intamount)
end

function natives.CAN_REGISTER_MISSION_PICKUPS(intamount)
    return native.call(0x0A49D1CB6E34AF72, intamount)
end

function natives._0xE16AA70CE9BEEDC3(Anyp0)
    return native.call(0xE16AA70CE9BEEDC3, Anyp0)
end

function natives.CAN_REGISTER_MISSION_ENTITIES(intped_amt, intvehicle_amt, intobject_amt, intpickup_amt)
    return native.call(0x69778E7564BADE6D, intped_amt, intvehicle_amt, intobject_amt, intpickup_amt)
end

function natives.GET_NUM_RESERVED_MISSION_OBJECTS(BOOLp0, Anyp1)
    return native.call(0xAA81B5F10BC43AC2, BOOLp0, Anyp1)
end

function natives.GET_NUM_RESERVED_MISSION_PEDS(BOOLp0, Anyp1)
    return native.call(0x1F13D5AE5CB17E17, BOOLp0, Anyp1)
end

function natives.GET_NUM_RESERVED_MISSION_VEHICLES(BOOLp0, Anyp1)
    return native.call(0xCF3A965906452031, BOOLp0, Anyp1)
end

function natives.GET_NUM_CREATED_MISSION_OBJECTS(BOOLp0)
    return native.call(0x12B6281B6C6706C0, BOOLp0)
end

function natives.GET_NUM_CREATED_MISSION_PEDS(BOOLp0)
    return native.call(0xCB215C4B56A7FAE7, BOOLp0)
end

function natives.GET_NUM_CREATED_MISSION_VEHICLES(BOOLp0)
    return native.call(0x0CD9AB83489430EA, BOOLp0)
end

function natives.GET_RESERVATIONS_FOR_SLOT_WORLD_POSITION(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0xE42D626EEC94E5D9, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.GET_MAX_NUM_NETWORK_OBJECTS()
    return native.call(0xC7BE335216B5EC7C)
end

function natives.GET_MAX_NUM_NETWORK_PEDS()
    return native.call(0x0C1F7D49C39D2289)
end

function natives.GET_MAX_NUM_NETWORK_VEHICLES()
    return native.call(0x0AFCE529F69B21FF)
end

function natives.GET_MAX_NUM_NETWORK_PICKUPS()
    return native.call(0xA72835064DD63E4C)
end

function natives.NETWORK_SET_OBJECT_INTEREST_RANGE(Objectobject, floatrange)
    return native.call(0xBA7F0B77D80A4EB7, Objectobject, floatrange)
end

function natives._0x0F1A4B45B7693B95(Anyp0, Anyp1)
    return native.call(0x0F1A4B45B7693B95, Anyp0, Anyp1)
end

function natives._0xC6FCEE21C6FCEE21(Anyp0)
    return native.call(0xC6FCEE21C6FCEE21, Anyp0)
end

function natives.GET_NETWORK_TIME()
    return native.call(0x7A5487FE9FAA6B48)
end

function natives.GET_NETWORK_TIME_ACCURATE()
    return native.call(0x89023FBBF9200E9F)
end

function natives.HAS_NETWORK_TIME_STARTED()
    return native.call(0x46718ACEEDEAFC84)
end

function natives.GET_TIME_OFFSET(inttimeA, inttimeB)
    return native.call(0x017008CCDAD48503, inttimeA, inttimeB)
end

function natives.IS_TIME_LESS_THAN(inttimeA, inttimeB)
    return native.call(0xCB2CF5148012C8D0, inttimeA, inttimeB)
end

function natives.IS_TIME_MORE_THAN(inttimeA, inttimeB)
    return native.call(0xDE350F8651E4346C, inttimeA, inttimeB)
end

function natives.IS_TIME_EQUAL_TO(inttimeA, inttimeB)
    return native.call(0xF5BC95857BD6D512, inttimeA, inttimeB)
end

function natives.GET_TIME_DIFFERENCE(inttimeA, inttimeB)
    return native.call(0xA2C6FC031D46FFF0, inttimeA, inttimeB)
end

function natives.GET_TIME_AS_STRING(inttime)
    return native.call(0x9E23B1777A927DAD, inttime)
end

function natives.GET_CLOUD_TIME_AS_STRING()
    return native.call(0xF12E6CD06C73D69E)
end

function natives.GET_CLOUD_TIME_AS_INT()
    return native.call(0x9A73240B49945C76)
end

function natives.CONVERT_POSIX_TIME(intposixTime, AnytimeStructure)
    return native.call(0xAC97AF97FA68E5D5, intposixTime, AnytimeStructure)
end

function natives.NETWORK_SET_IN_SPECTATOR_MODE(BOOLtoggle, PedplayerPed)
    return native.call(0x423DE3854BB50894, BOOLtoggle, PedplayerPed)
end

function natives.NETWORK_SET_IN_SPECTATOR_MODE_EXTENDED(BOOLtoggle, PedplayerPed, BOOLp2)
    return native.call(0x419594E137637120, BOOLtoggle, PedplayerPed, BOOLp2)
end

function natives.NETWORK_SET_IN_FREE_CAM_MODE(BOOLtoggle)
    return native.call(0xFC18DB55AE19E046, BOOLtoggle)
end

function natives.NETWORK_SET_ANTAGONISTIC_TO_PLAYER(BOOLtoggle, Playerplayer)
    return native.call(0x5C707A667DF8B9FA, BOOLtoggle, Playerplayer)
end

function natives.NETWORK_IS_IN_SPECTATOR_MODE()
    return native.call(0x048746E388762E11)
end

function natives.NETWORK_SET_IN_MP_CUTSCENE(BOOLp0, BOOLp1)
    return native.call(0x9CA5DE655269FEC4, BOOLp0, BOOLp1)
end

function natives.NETWORK_IS_IN_MP_CUTSCENE()
    return native.call(0x6CC27C9FA2040220)
end

function natives.NETWORK_IS_PLAYER_IN_MP_CUTSCENE(Playerplayer)
    return native.call(0x63F9EE203C3619F2, Playerplayer)
end

function natives._0xFAC18E7356BD3210()
    return native.call(0xFAC18E7356BD3210)
end

function natives.SET_NETWORK_VEHICLE_RESPOT_TIMER(intnetId, inttime, Anyp2, Anyp3)
    return native.call(0xEC51713AB6EC36E8, intnetId, inttime, Anyp2, Anyp3)
end

function natives.SET_NETWORK_VEHICLE_AS_GHOST(Vehiclevehicle, BOOLtoggle)
    return native.call(0x6274C4712850841E, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_NETWORK_VEHICLE_POSITION_UPDATE_MULTIPLIER(Vehiclevehicle, floatmultiplier)
    return native.call(0xA2A707979FE754DC, Vehiclevehicle, floatmultiplier)
end

function natives.SET_NETWORK_ENABLE_VEHICLE_POSITION_CORRECTION(Vehiclevehicle, BOOLtoggle)
    return native.call(0x838DA0936A24ED4D, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_LOCAL_PLAYER_AS_GHOST(BOOLtoggle, BOOLp1)
    return native.call(0x5FFE9B4144F9712F, BOOLtoggle, BOOLp1)
end

function natives.IS_ENTITY_GHOSTED_TO_LOCAL_PLAYER(Entityentity)
    return native.call(0x21D04D7BC538C146, Entityentity)
end

function natives._0x13F1FCB111B820B0(BOOLp0)
    return native.call(0x13F1FCB111B820B0, BOOLp0)
end

function natives.SET_RELATIONSHIP_TO_PLAYER(Playerplayer, BOOLp1)
    return native.call(0xA7C511FA1C5BDA38, Playerplayer, BOOLp1)
end

function natives.SET_GHOSTED_ENTITY_ALPHA(intalpha)
    return native.call(0x658500AE6D723A7E, intalpha)
end

function natives.RESET_GHOSTED_ENTITY_ALPHA()
    return native.call(0x17330EBF2F2124A8)
end

function natives.NETWORK_SET_ENTITY_GHOSTED_WITH_OWNER(Entityentity, BOOLp1)
    return native.call(0x4BA166079D658ED4, Entityentity, BOOLp1)
end

function natives._0xD7B6C73CAD419BCF(BOOLp0)
    return native.call(0xD7B6C73CAD419BCF, BOOLp0)
end

function natives._0x7EF7649B64D7FF10(Entityentity)
    return native.call(0x7EF7649B64D7FF10, Entityentity)
end

function natives.USE_PLAYER_COLOUR_INSTEAD_OF_TEAM_COLOUR(BOOLtoggle)
    return native.call(0x77758139EC9B66C7, BOOLtoggle)
end

function natives.NETWORK_CREATE_SYNCHRONISED_SCENE(floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, introtationOrder, BOOLuseOcclusionPortal, BOOLlooped, floatp9, floatanimTime, floatp11)
    return native.call(0x7CD6BC4C2BBDD526, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, introtationOrder, BOOLuseOcclusionPortal, BOOLlooped, floatp9, floatanimTime, floatp11)
end

function natives.NETWORK_ADD_PED_TO_SYNCHRONISED_SCENE(Pedped, intnetScene, constcharanimDict, constcharanimnName, floatspeed, floatspeedMultiplier, intduration, intflag, floatplaybackRate, Anyp9)
    return native.call(0x742A637471BCECD9, Pedped, intnetScene, constcharanimDict, constcharanimnName, floatspeed, floatspeedMultiplier, intduration, intflag, floatplaybackRate, Anyp9)
end

function natives._0xA5EAFE473E45C442(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0xA5EAFE473E45C442, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.NETWORK_ADD_ENTITY_TO_SYNCHRONISED_SCENE(Entityentity, intnetScene, constcharanimDict, constcharanimName, floatspeed, floatspeedMulitiplier, intflag)
    return native.call(0xF2404D68CBC855FA, Entityentity, intnetScene, constcharanimDict, constcharanimName, floatspeed, floatspeedMulitiplier, intflag)
end

function natives._0x45F35C0EDC33B03B(intnetScene, HashmodelHash, floatx, floaty, floatz, floatp5, constcharp6, floatp7, floatp8, intflags)
    return native.call(0x45F35C0EDC33B03B, intnetScene, HashmodelHash, floatx, floaty, floatz, floatp5, constcharp6, floatp7, floatp8, intflags)
end

function natives.NETWORK_ADD_SYNCHRONISED_SCENE_CAMERA(intnetScene, constcharanimDict, constcharanimName)
    return native.call(0xCF8BD3B0BD6D42D7, intnetScene, constcharanimDict, constcharanimName)
end

function natives.NETWORK_ATTACH_SYNCHRONISED_SCENE_TO_ENTITY(intnetScene, Entityentity, intbone)
    return native.call(0x478DCBD2A98B705A, intnetScene, Entityentity, intbone)
end

function natives.NETWORK_START_SYNCHRONISED_SCENE(intnetScene)
    return native.call(0x9A1B3FCDB36C8697, intnetScene)
end

function natives.NETWORK_STOP_SYNCHRONISED_SCENE(intnetScene)
    return native.call(0xC254481A4574CB2F, intnetScene)
end

function natives.NETWORK_GET_LOCAL_SCENE_FROM_NETWORK_ID(intnetId)
    return native.call(0x02C40BF885C567B6, intnetId)
end

function natives.NETWORK_FORCE_LOCAL_USE_OF_SYNCED_SCENE_CAMERA(intnetScene)
    return native.call(0xC9B43A33D09CADA7, intnetScene)
end

function natives._0x144DA052257AE7D8(Anyp0)
    return native.call(0x144DA052257AE7D8, Anyp0)
end

function natives._0xFB1F9381E80FA13F(intp0, Anyp1)
    return native.call(0xFB1F9381E80FA13F, intp0, Anyp1)
end

function natives.NETWORK_START_RESPAWN_SEARCH_FOR_PLAYER(Playerplayer, floatx, floaty, floatz, floatradius, floatp5, floatp6, floatp7, intflags)
    return native.call(0x5A6FFA2433E2F14C, Playerplayer, floatx, floaty, floatz, floatradius, floatp5, floatp6, floatp7, intflags)
end

function natives.NETWORK_START_RESPAWN_SEARCH_IN_ANGLED_AREA_FOR_PLAYER(Playerplayer, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, floatp8, floatp9, floatp10, intflags)
    return native.call(0x4BA92A18502BCA61, Playerplayer, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, floatp8, floatp9, floatp10, intflags)
end

function natives.NETWORK_QUERY_RESPAWN_RESULTS(Anyp0)
    return native.call(0x3C891A251567DFCE, Anyp0)
end

function natives.NETWORK_CANCEL_RESPAWN_SEARCH()
    return native.call(0xFB8F2A6F3DF08CBE)
end

function natives.NETWORK_GET_RESPAWN_RESULT(intrandomInt, Vector3coordinates, floatheading)
    return native.call(0x371EA43692861CF1, intrandomInt, Vector3coordinates, floatheading)
end

function natives.NETWORK_GET_RESPAWN_RESULT_FLAGS(intp0)
    return native.call(0x6C34F1208B8923FD, intp0)
end

function natives.NETWORK_START_SOLO_TUTORIAL_SESSION()
    return native.call(0x17E0198B3882C2CB)
end

function natives._0xFB680D403909DC70(intteamId, intinstanceId)
    return native.call(0xFB680D403909DC70, intteamId, intinstanceId)
end

function natives.NETWORK_END_TUTORIAL_SESSION()
    return native.call(0xD0AFAFF5A51D72F7)
end

function natives.NETWORK_IS_IN_TUTORIAL_SESSION()
    return native.call(0xADA24309FE08DACF)
end

function natives._0xB37E4E6A2388CA7B()
    return native.call(0xB37E4E6A2388CA7B)
end

function natives.NETWORK_IS_TUTORIAL_SESSION_CHANGE_PENDING()
    return native.call(0x35F0B98A8387274D)
end

function natives.NETWORK_GET_PLAYER_TUTORIAL_SESSION_INSTANCE(Playerplayer)
    return native.call(0x3B39236746714134, Playerplayer)
end

function natives.NETWORK_IS_PLAYER_EQUAL_TO_INDEX(Playerplayer, intindex)
    return native.call(0x9DE986FC9A87C474, Playerplayer, intindex)
end

function natives._0xFEA7A352DDB34D52(Anyp0)
    return native.call(0xFEA7A352DDB34D52, Anyp0)
end

function natives.NETWORK_CONCEAL_PLAYER(Playerplayer, BOOLtoggle, BOOLp2)
    return native.call(0xBBDF066252829606, Playerplayer, BOOLtoggle, BOOLp2)
end

function natives.NETWORK_IS_PLAYER_CONCEALED(Playerplayer)
    return native.call(0x919B3C98ED8292F9, Playerplayer)
end

function natives.NETWORK_CONCEAL_ENTITY(Entityentity, BOOLtoggle)
    return native.call(0x1632BE0AC1E62876, Entityentity, BOOLtoggle)
end

function natives.NETWORK_IS_ENTITY_CONCEALED(Entityentity)
    return native.call(0x71302EC70689052A, Entityentity)
end

function natives.NETWORK_OVERRIDE_CLOCK_TIME(inthours, intminutes, intseconds)
    return native.call(0xE679E3E06E363892, inthours, intminutes, intseconds)
end

function natives.NETWORK_OVERRIDE_CLOCK_MILLISECONDS_PER_GAME_MINUTE(intms)
    return native.call(0x42BF1D2E723B6D7E, intms)
end

function natives.NETWORK_CLEAR_CLOCK_TIME_OVERRIDE()
    return native.call(0xD972DF67326F966E)
end

function natives.NETWORK_IS_CLOCK_TIME_OVERRIDDEN()
    return native.call(0xD7C95D322FF57522)
end

function natives.NETWORK_ADD_ENTITY_AREA(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5)
    return native.call(0x494C8FB299290269, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5)
end

function natives.NETWORK_ADD_ENTITY_ANGLED_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth)
    return native.call(0x376C6375BA60293A, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth)
end

function natives.NETWORK_ADD_ENTITY_DISPLAYED_BOUNDARIES(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5)
    return native.call(0x25B99872D588A101, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5)
end

function natives._0x2B1C623823DB0D9D(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x2B1C623823DB0D9D, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.NETWORK_REMOVE_ENTITY_AREA(Anyp0)
    return native.call(0x93CF869BAA0C4874, Anyp0)
end

function natives.NETWORK_ENTITY_AREA_DOES_EXIST(intareaHandle)
    return native.call(0xE64A3CA08DFA37A9, intareaHandle)
end

function natives.NETWORK_ENTITY_AREA_HAVE_ALL_REPLIED(intareaHandle)
    return native.call(0x4DF7CFFF471A7FB1, intareaHandle)
end

function natives.NETWORK_ENTITY_AREA_IS_OCCUPIED(intareaHandle)
    return native.call(0x4A2D4E8BF4265B0F, intareaHandle)
end

function natives.NETWORK_USE_HIGH_PRECISION_BLENDING(intnetID, BOOLtoggle)
    return native.call(0x2B1813ABA29016C5, intnetID, BOOLtoggle)
end

function natives._0xA6FCECCF4721D679(Anyp0)
    return native.call(0xA6FCECCF4721D679, Anyp0)
end

function natives._0x95BAF97C82464629(Anyp0, Anyp1)
    return native.call(0x95BAF97C82464629, Anyp0, Anyp1)
end

function natives.NETWORK_REQUEST_CLOUD_BACKGROUND_SCRIPTS()
    return native.call(0x924426BFFD82E915)
end

function natives.NETWORK_IS_CLOUD_BACKGROUND_SCRIPT_REQUEST_PENDING()
    return native.call(0x8132C0EB8B2B3293)
end

function natives.NETWORK_REQUEST_CLOUD_TUNABLES()
    return native.call(0x42FB3B532D526E6C)
end

function natives.NETWORK_IS_TUNABLE_CLOUD_REQUEST_PENDING()
    return native.call(0x0467C11ED88B7D28)
end

function natives.NETWORK_GET_TUNABLE_CLOUD_CRC()
    return native.call(0x10BD227A753B0D84)
end

function natives.NETWORK_DOES_TUNABLE_EXIST(constchartunableContext, constchartunableName)
    return native.call(0x85E5F8B9B898B20A, constchartunableContext, constchartunableName)
end

function natives.NETWORK_ACCESS_TUNABLE_INT(constchartunableContext, constchartunableName, intvalue)
    return native.call(0x8BE1146DFD5D4468, constchartunableContext, constchartunableName, intvalue)
end

function natives.NETWORK_ACCESS_TUNABLE_FLOAT(constchartunableContext, constchartunableName, floatvalue)
    return native.call(0xE5608CA7BC163A5F, constchartunableContext, constchartunableName, floatvalue)
end

function natives.NETWORK_ACCESS_TUNABLE_BOOL(constchartunableContext, constchartunableName)
    return native.call(0xAA6A47A573ABB75A, constchartunableContext, constchartunableName)
end

function natives.NETWORK_DOES_TUNABLE_EXIST_HASH(HashtunableContext, HashtunableName)
    return native.call(0xE4E53E1419D81127, HashtunableContext, HashtunableName)
end

function natives._0xFAFC23AEE23868DB()
    return native.call(0xFAFC23AEE23868DB)
end

function natives.NETWORK_ACCESS_TUNABLE_INT_HASH(HashtunableContext, HashtunableName, intvalue)
    return native.call(0x40FCE03E50E8DBE8, HashtunableContext, HashtunableName, intvalue)
end

function natives.NETWORK_REGISTER_TUNABLE_INT_HASH(HashcontextHash, HashnameHash, intvalue)
    return native.call(0x3A8B55FDA4C8DDEF, HashcontextHash, HashnameHash, intvalue)
end

function natives.NETWORK_ACCESS_TUNABLE_FLOAT_HASH(HashtunableContext, HashtunableName, floatvalue)
    return native.call(0x972BC203BBC4C4D5, HashtunableContext, HashtunableName, floatvalue)
end

function natives.NETWORK_REGISTER_TUNABLE_FLOAT_HASH(HashcontextHash, HashnameHash, floatvalue)
    return native.call(0x1950DAE9848A4739, HashcontextHash, HashnameHash, floatvalue)
end

function natives.NETWORK_ACCESS_TUNABLE_BOOL_HASH(HashtunableContext, HashtunableName)
    return native.call(0xEA16B69D93D71A45, HashtunableContext, HashtunableName)
end

function natives.NETWORK_REGISTER_TUNABLE_BOOL_HASH(HashcontextHash, HashnameHash, BOOLvalue)
    return native.call(0x697F508861875B42, HashcontextHash, HashnameHash, BOOLvalue)
end

function natives.NETWORK_TRY_ACCESS_TUNABLE_BOOL_HASH(HashtunableContext, HashtunableName, BOOLdefaultValue)
    return native.call(0xC7420099936CE286, HashtunableContext, HashtunableName, BOOLdefaultValue)
end

function natives.NETWORK_GET_CONTENT_MODIFIER_LIST_ID(HashcontentHash)
    return native.call(0x187382F8A3E0A6C3, HashcontentHash)
end

function natives._0x7DB53B37A2F211A0()
    return native.call(0x7DB53B37A2F211A0)
end

function natives.NETWORK_RESET_BODY_TRACKER()
    return native.call(0x72433699B4E6DD64)
end

function natives.NETWORK_GET_NUM_BODY_TRACKERS()
    return native.call(0xD38C4A6D047C019D)
end

function natives._0x2E0BF682CC778D49(Anyp0)
    return native.call(0x2E0BF682CC778D49, Anyp0)
end

function natives.NETWORK_SET_ATTRIBUTE_DAMAGE_TO_PLAYER(Pedped, Playerplayer)
    return native.call(0x0EDE326D47CD0F3E, Pedped, Playerplayer)
end

function natives.NETWORK_SET_VEHICLE_WHEELS_DESTRUCTIBLE(Entityentity, BOOLtoggle)
    return native.call(0x890E2C5ABED7236D, Entityentity, BOOLtoggle)
end

function natives._0x38B7C51AB1EDC7D8(Entityentity, BOOLtoggle)
    return native.call(0x38B7C51AB1EDC7D8, Entityentity, BOOLtoggle)
end

function natives._0x3FC795691834481D(Anyp0, Anyp1)
    return native.call(0x3FC795691834481D, Anyp0, Anyp1)
end

function natives.NETWORK_EXPLODE_VEHICLE(Vehiclevehicle, BOOLisAudible, BOOLisInvisible, intnetId)
    return native.call(0x301A42153C9AD707, Vehiclevehicle, BOOLisAudible, BOOLisInvisible, intnetId)
end

function natives.NETWORK_EXPLODE_HELI(Vehiclevehicle, BOOLisAudible, BOOLisInvisible, intnetId)
    return native.call(0x2A5E0621DD815A9A, Vehiclevehicle, BOOLisAudible, BOOLisInvisible, intnetId)
end

function natives.NETWORK_USE_LOGARITHMIC_BLENDING_THIS_FRAME(Entityentity)
    return native.call(0xCD71A4ECAB22709E, Entityentity)
end

function natives.NETWORK_OVERRIDE_COORDS_AND_HEADING(Entityentity, floatx, floaty, floatz, floatheading)
    return native.call(0xA7E30DE9272B6D49, Entityentity, floatx, floaty, floatz, floatheading)
end

function natives._0xE6717E652B8C8D8A(Anyp0, Anyp1)
    return native.call(0xE6717E652B8C8D8A, Anyp0, Anyp1)
end

function natives.NETWORK_DISABLE_PROXIMITY_MIGRATION(intnetID)
    return native.call(0x407091CF6037118E, intnetID)
end

function natives.NETWORK_SET_PROPERTY_ID(intid)
    return native.call(0x1775961C2FBBCB5C, intid)
end

function natives.NETWORK_CLEAR_PROPERTY_ID()
    return native.call(0xC2B82527CA77053E)
end

function natives.NETWORK_SET_PLAYER_MENTAL_STATE(intp0)
    return native.call(0x367EF5E2F439B4C6, intp0)
end

function natives._0x94538037EE44F5CF(BOOLp0)
    return native.call(0x94538037EE44F5CF, BOOLp0)
end

function natives.NETWORK_CACHE_LOCAL_PLAYER_HEAD_BLEND_DATA()
    return native.call(0xBD0BE0BFC927EAC1)
end

function natives.NETWORK_HAS_CACHED_PLAYER_HEAD_BLEND_DATA(Playerplayer)
    return native.call(0x237D5336A9A54108, Playerplayer)
end

function natives.NETWORK_APPLY_CACHED_PLAYER_HEAD_BLEND_DATA(Pedped, Playerplayer)
    return native.call(0x99B72C7ABDE5C910, Pedped, Playerplayer)
end

function natives.GET_NUM_COMMERCE_ITEMS()
    return native.call(0xF2EAC213D5EA0623)
end

function natives.IS_COMMERCE_DATA_VALID()
    return native.call(0xEA14EEF5B7CD2C30)
end

function natives._0xB606E6CC59664972(Anyp0)
    return native.call(0xB606E6CC59664972, Anyp0)
end

function natives._0x1D4DC17C38FEAFF0()
    return native.call(0x1D4DC17C38FEAFF0)
end

function natives.GET_COMMERCE_ITEM_ID(intindex)
    return native.call(0x662635855957C411, intindex)
end

function natives.GET_COMMERCE_ITEM_NAME(intindex)
    return native.call(0xB4271092CA7EDF48, intindex)
end

function natives.GET_COMMERCE_PRODUCT_PRICE(intindex)
    return native.call(0xCA94551B50B4932C, intindex)
end

function natives.GET_COMMERCE_ITEM_NUM_CATS(intindex)
    return native.call(0x2A7776C709904AB0, intindex)
end

function natives.GET_COMMERCE_ITEM_CAT(intindex, intindex2)
    return native.call(0x6F44CBF56D79FAC0, intindex, intindex2)
end

function natives.OPEN_COMMERCE_STORE(constcharp0, constcharp1, intp2)
    return native.call(0x58C21165F6545892, constcharp0, constcharp1, intp2)
end

function natives.IS_COMMERCE_STORE_OPEN()
    return native.call(0x2EAC52B4019E2782)
end

function natives.SET_STORE_ENABLED(BOOLtoggle)
    return native.call(0x9641A9FF718E9C5E, BOOLtoggle)
end

function natives.REQUEST_COMMERCE_ITEM_IMAGE(intindex)
    return native.call(0xA2F952104FC6DD4B, intindex)
end

function natives.RELEASE_ALL_COMMERCE_ITEM_IMAGES()
    return native.call(0x72D0706CD6CCDB58)
end

function natives.GET_COMMERCE_ITEM_TEXTURENAME(intindex)
    return native.call(0x722F5D28B61C5EA8, intindex)
end

function natives.IS_STORE_AVAILABLE_TO_USER()
    return native.call(0x883D79C4071E18B3)
end

function natives._0x265635150FB0D82E()
    return native.call(0x265635150FB0D82E)
end

function natives.RESET_STORE_NETWORK_GAME_TRACKING()
    return native.call(0x444C4525ECE0A4B9)
end

function natives._0x59328EB08C5CEB2B()
    return native.call(0x59328EB08C5CEB2B)
end

function natives._0xFAE628F1E9ADB239(Hashp0, intp1, Hashp2)
    return native.call(0xFAE628F1E9ADB239, Hashp0, intp1, Hashp2)
end

function natives._0x754615490A029508()
    return native.call(0x754615490A029508)
end

function natives._0x155467ACA0F55705()
    return native.call(0x155467ACA0F55705)
end

function natives.CLOUD_DELETE_MEMBER_FILE(constcharp0)
    return native.call(0xC64DED7EF0D2FE37, constcharp0)
end

function natives.CLOUD_HAS_REQUEST_COMPLETED(inthandle)
    return native.call(0x4C61B39930D045DA, inthandle)
end

function natives.CLOUD_DID_REQUEST_SUCCEED(inthandle)
    return native.call(0x3A3D5568AF297CD5, inthandle)
end

function natives.CLOUD_CHECK_AVAILABILITY()
    return native.call(0x4F18196C8D38768D)
end

function natives.CLOUD_IS_CHECKING_AVAILABILITY()
    return native.call(0xC7ABAC5DE675EE3B)
end

function natives.CLOUD_GET_AVAILABILITY_CHECK_RESULT()
    return native.call(0x0B0CC10720653F3B)
end

function natives._0x8B0C2964BA471961()
    return native.call(0x8B0C2964BA471961)
end

function natives._0x88B588B41FF7868E()
    return native.call(0x88B588B41FF7868E)
end

function natives._0x67FC09BC554A75E5()
    return native.call(0x67FC09BC554A75E5)
end

function natives.CLEAR_LAUNCH_PARAMS()
    return native.call(0x966DD84FB6A46017)
end

function natives.UGC_COPY_CONTENT(Anyp0, Anyp1)
    return native.call(0x152D90E4C1B4738A, Anyp0, Anyp1)
end

function natives.UGC_IS_CREATING()
    return native.call(0x9FEDF86898F100E9)
end

function natives.UGC_HAS_CREATE_FINISHED()
    return native.call(0x5E24341A7F92A74B)
end

function natives.UGC_DID_CREATE_SUCCEED()
    return native.call(0x24E4E51FC16305F9)
end

function natives.UGC_GET_CREATE_RESULT()
    return native.call(0xFBC5E768C7A77A6A)
end

function natives.UGC_GET_CREATE_CONTENT_ID()
    return native.call(0xC55A0B40FFB1ED23)
end

function natives.UGC_CLEAR_CREATE_RESULT()
    return native.call(0x17440AA15D1D3739)
end

function natives.UGC_QUERY_MY_CONTENT(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x9BF438815F5D96EA, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives._0x692D58DF40657E8C(Anyp0, Anyp1, Anyp2, constcharp3, Anyp4, BOOLp5)
    return native.call(0x692D58DF40657E8C, Anyp0, Anyp1, Anyp2, constcharp3, Anyp4, BOOLp5)
end

function natives.UGC_QUERY_BY_CONTENT_ID(constcharcontentId, BOOLlatestVersion, constcharcontentTypeName)
    return native.call(0x158EC424F35EC469, constcharcontentId, BOOLlatestVersion, constcharcontentTypeName)
end

function natives.UGC_QUERY_BY_CONTENT_IDS(Anydata, intcount, BOOLlatestVersion, constcharcontentTypeName)
    return native.call(0xC7397A83F7A2A462, Anydata, intcount, BOOLlatestVersion, constcharcontentTypeName)
end

function natives.UGC_QUERY_MOST_RECENTLY_CREATED_CONTENT(intoffset, intcount, constcharcontentTypeName, intp3)
    return native.call(0x6D4CB481FAC835E8, intoffset, intcount, constcharcontentTypeName, intp3)
end

function natives.UGC_GET_BOOKMARKED_CONTENT(Anyp0, Anyp1, constcharp2, Anyp3)
    return native.call(0xD5A4B59980401588, Anyp0, Anyp1, constcharp2, Anyp3)
end

function natives.UGC_GET_MY_CONTENT(Anyp0, Anyp1, constcharp2, Anyp3)
    return native.call(0x3195F8DD0D531052, Anyp0, Anyp1, constcharp2, Anyp3)
end

function natives.UGC_GET_FRIEND_CONTENT(Anyp0, Anyp1, constcharp2, Anyp3)
    return native.call(0xF9E1CCAE8BA4C281, Anyp0, Anyp1, constcharp2, Anyp3)
end

function natives.UGC_GET_CREW_CONTENT(Anyp0, Anyp1, Anyp2, constcharp3, Anyp4)
    return native.call(0x9F6E2821885CAEE2, Anyp0, Anyp1, Anyp2, constcharp3, Anyp4)
end

function natives.UGC_GET_GET_BY_CATEGORY(Anyp0, Anyp1, Anyp2, constcharp3, Anyp4)
    return native.call(0x678BB03C1A3BD51E, Anyp0, Anyp1, Anyp2, constcharp3, Anyp4)
end

function natives.SET_BALANCE_ADD_MACHINE(constcharcontentId, constcharcontentTypeName)
    return native.call(0x815E5E3073DA1D67, constcharcontentId, constcharcontentTypeName)
end

function natives.SET_BALANCE_ADD_MACHINES(Anydata, intdataCount, constcharcontentTypeName)
    return native.call(0xB8322EEB38BE7C26, Anydata, intdataCount, constcharcontentTypeName)
end

function natives.UGC_GET_MOST_RECENTLY_CREATED_CONTENT(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xA7862BC5ED1DFD7E, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.UGC_GET_MOST_RECENTLY_PLAYED_CONTENT(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x97A770BEEF227E2B, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.UGC_GET_TOP_RATED_CONTENT(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x5324A0E3E4CE3570, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.UGC_CANCEL_QUERY()
    return native.call(0xE9B99B6853181409)
end

function natives.UGC_IS_GETTING()
    return native.call(0xD53ACDBEF24A46E8)
end

function natives.UGC_HAS_GET_FINISHED()
    return native.call(0x02ADA21EA2F6918F)
end

function natives.UGC_DID_GET_SUCCEED()
    return native.call(0x941E5306BCD7C2C7)
end

function natives._0xC87E740D9F3872CC()
    return native.call(0xC87E740D9F3872CC)
end

function natives.UGC_GET_QUERY_RESULT()
    return native.call(0xEDF7F927136C224B)
end

function natives.UGC_GET_CONTENT_NUM()
    return native.call(0xE0A6138401BCB837)
end

function natives.UGC_GET_CONTENT_TOTAL()
    return native.call(0x769951E2455E2EB5)
end

function natives.UGC_GET_CONTENT_HASH()
    return native.call(0x3A17A27D75C74887)
end

function natives.UGC_CLEAR_QUERY_RESULTS()
    return native.call(0xBA96394A0EECFA65)
end

function natives.UGC_GET_CONTENT_USER_ID(intp0)
    return native.call(0xCD67AD041A394C9C, intp0)
end

function natives._0x584770794D758C18(intp0, Anyp1)
    return native.call(0x584770794D758C18, intp0, Anyp1)
end

function natives._0x8C8D2739BA44AF0F(Anyp0)
    return native.call(0x8C8D2739BA44AF0F, Anyp0)
end

function natives.UGC_GET_CONTENT_USER_NAME(Anyp0)
    return native.call(0x703F12425ECA8BF5, Anyp0)
end

function natives._0xAEAB987727C5A8A4(Anyp0)
    return native.call(0xAEAB987727C5A8A4, Anyp0)
end

function natives.UGC_GET_CONTENT_CATEGORY(intp0)
    return native.call(0xA7BAB11E7C9C6C5A, intp0)
end

function natives.UGC_GET_CONTENT_ID(intp0)
    return native.call(0x55AA95F481D694D2, intp0)
end

function natives.UGC_GET_ROOT_CONTENT_ID(intp0)
    return native.call(0xC0173D6BFF4E0348, intp0)
end

function natives.UGC_GET_CONTENT_NAME(Anyp0)
    return native.call(0xBF09786A7FCAB582, Anyp0)
end

function natives.UGC_GET_CONTENT_DESCRIPTION_HASH(Anyp0)
    return native.call(0x7CF0448787B23758, Anyp0)
end

function natives.UGC_GET_CONTENT_PATH(intp0, intp1)
    return native.call(0xBAF6BABF9E7CCC13, intp0, intp1)
end

function natives.UGC_GET_CONTENT_UPDATED_DATE(Anyp0, Anyp1)
    return native.call(0xCFD115B373C0DF63, Anyp0, Anyp1)
end

function natives.UGC_GET_CONTENT_FILE_VERSION(Anyp0, Anyp1)
    return native.call(0x37025B27D9B658B1, Anyp0, Anyp1)
end

function natives._0x1D610EB0FEA716D9(intp0)
    return native.call(0x1D610EB0FEA716D9, intp0)
end

function natives._0x7FCC39C46C3C03BD(intp0)
    return native.call(0x7FCC39C46C3C03BD, intp0)
end

function natives.UGC_GET_CONTENT_LANGUAGE(Anyp0)
    return native.call(0x32DD916F3F7C9672, Anyp0)
end

function natives.UGC_GET_CONTENT_IS_PUBLISHED(Anyp0)
    return native.call(0x3054F114121C21EA, Anyp0)
end

function natives.UGC_GET_CONTENT_IS_VERIFIED(Anyp0)
    return native.call(0xA9240A96C74CCA13, Anyp0)
end

function natives.UGC_GET_CONTENT_RATING(Anyp0, Anyp1)
    return native.call(0x1ACCFBA3D8DAB2EE, Anyp0, Anyp1)
end

function natives.UGC_GET_CONTENT_RATING_COUNT(Anyp0, Anyp1)
    return native.call(0x759299C5BB31D2A9, Anyp0, Anyp1)
end

function natives.UGC_GET_CONTENT_RATING_POSITIVE_COUNT(Anyp0, Anyp1)
    return native.call(0x87E5C46C187FE0AE, Anyp0, Anyp1)
end

function natives.UGC_GET_CONTENT_RATING_NEGATIVE_COUNT(Anyp0, Anyp1)
    return native.call(0x4E548C0D7AE39FF9, Anyp0, Anyp1)
end

function natives.UGC_GET_CONTENT_HAS_PLAYER_RECORD(Anyp0)
    return native.call(0x70EA8DA57840F9BE, Anyp0)
end

function natives.UGC_GET_CONTENT_HAS_PLAYER_BOOKMARKED(Anyp0)
    return native.call(0x993CBE59D350D225, Anyp0)
end

function natives.UGC_REQUEST_CONTENT_DATA_FROM_INDEX(intp0, intp1)
    return native.call(0x171DF6A0C07FB3DC, intp0, intp1)
end

function natives.UGC_REQUEST_CONTENT_DATA_FROM_PARAMS(constcharcontentTypeName, constcharcontentId, intp2, intp3, intp4)
    return native.call(0x7FD2990AF016795E, constcharcontentTypeName, constcharcontentId, intp2, intp3, intp4)
end

function natives.UGC_REQUEST_CACHED_DESCRIPTION(intp0)
    return native.call(0x5E0165278F6339EE, intp0)
end

function natives.UGC_IS_DESCRIPTION_REQUEST_IN_PROGRESS(Anyp0)
    return native.call(0x2D5DC831176D0114, Anyp0)
end

function natives.UGC_HAS_DESCRIPTION_REQUEST_FINISHED(Anyp0)
    return native.call(0xEBFA8D50ADDC54C4, Anyp0)
end

function natives.UGC_DID_DESCRIPTION_REQUEST_SUCCEED(Anyp0)
    return native.call(0x162C23CA83ED0A62, Anyp0)
end

function natives.UGC_GET_CACHED_DESCRIPTION(Anyp0, Anyp1)
    return native.call(0x40F7E66472DF3E5C, Anyp0, Anyp1)
end

function natives.UGC_RELEASE_CACHED_DESCRIPTION(Anyp0)
    return native.call(0x5A34CD9C3C5BEC44, Anyp0)
end

function natives._0x68103E2247887242()
    return native.call(0x68103E2247887242)
end

function natives.UGC_PUBLISH(constcharcontentId, constcharbaseContentId, constcharcontentTypeName)
    return native.call(0x1DE0F5F50D723CAA, constcharcontentId, constcharbaseContentId, constcharcontentTypeName)
end

function natives.UGC_SET_BOOKMARKED(constcharcontentId, BOOLbookmarked, constcharcontentTypeName)
    return native.call(0x274A1519DFC1094F, constcharcontentId, BOOLbookmarked, constcharcontentTypeName)
end

function natives.UGC_SET_DELETED(Anyp0, BOOLp1, constcharp2)
    return native.call(0xD05D1A6C74DA3498, Anyp0, BOOLp1, constcharp2)
end

function natives.UGC_IS_MODIFYING()
    return native.call(0x45E816772E93A9DB)
end

function natives.UGC_HAS_MODIFY_FINISHED()
    return native.call(0x299EF3C576773506)
end

function natives.UGC_DID_MODIFY_SUCCEED()
    return native.call(0x793FF272D5B365F4)
end

function natives.UGC_GET_MODIFY_RESULT()
    return native.call(0x5A0A3D1A186A5508)
end

function natives.UGC_CLEAR_MODIFY_RESULT()
    return native.call(0xA1E5E0204A6FCC70)
end

function natives._0xB746D20B17F2A229(Anyp0, Anyp1)
    return native.call(0xB746D20B17F2A229, Anyp0, Anyp1)
end

function natives.UGC_HAS_QUERY_CREATORS_FINISHED()
    return native.call(0x63B406D7884BFA95)
end

function natives.UGC_DID_QUERY_CREATORS_SUCCEED()
    return native.call(0x4D02279C83BE69FE)
end

function natives.UGC_GET_CREATOR_NUM()
    return native.call(0x597F8DBA9B206FC7)
end

function natives.UGC_POLICIES_MAKE_PRIVATE(Anyp0)
    return native.call(0x5CAE833B0EE0C500, Anyp0)
end

function natives.UGC_CLEAR_OFFLINE_QUERY()
    return native.call(0x61A885D3F7CFEE9A)
end

function natives.UGC_SET_QUERY_DATA_FROM_OFFLINE(BOOLp0)
    return native.call(0xF98DDE0A8ED09323, BOOLp0)
end

function natives.UGC_SET_USING_OFFLINE_CONTENT(BOOLp0)
    return native.call(0xFD75DABC0957BF33, BOOLp0)
end

function natives.UGC_IS_LANGUAGE_SUPPORTED(Anyp0)
    return native.call(0xF53E48461B71EECB, Anyp0)
end

function natives.FACEBOOK_POST_COMPLETED_HEIST(constcharheistName, intcashEarned, intxpEarned)
    return native.call(0x098AB65B9ED9A9EC, constcharheistName, intcashEarned, intxpEarned)
end

function natives.FACEBOOK_POST_CREATE_CHARACTER()
    return native.call(0xDC48473142545431)
end

function natives.FACEBOOK_POST_COMPLETED_MILESTONE(intmilestoneId)
    return native.call(0x0AE1F1653B554AB9, intmilestoneId)
end

function natives.FACEBOOK_IS_SENDING_DATA()
    return native.call(0x62B9FEC9A11F10EF)
end

function natives.FACEBOOK_DO_UNK_CHECK()
    return native.call(0xA75E2B6733DA5142)
end

function natives.FACEBOOK_IS_AVAILABLE()
    return native.call(0x43865688AE10F0D7)
end

function natives.TEXTURE_DOWNLOAD_REQUEST(AnygamerHandle, constcharfilePath, constcharname, BOOLp3)
    return native.call(0x16160DA74A8E74A2, AnygamerHandle, constcharfilePath, constcharname, BOOLp3)
end

function natives.TITLE_TEXTURE_DOWNLOAD_REQUEST(constcharfilePath, constcharname, BOOLp2)
    return native.call(0x0B203B4AFDE53A4F, constcharfilePath, constcharname, BOOLp2)
end

function natives.UGC_TEXTURE_DOWNLOAD_REQUEST(constcharp0, intp1, intp2, intp3, constcharp4, BOOLp5)
    return native.call(0x308F96458B7087CC, constcharp0, intp1, intp2, intp3, constcharp4, BOOLp5)
end

function natives.TEXTURE_DOWNLOAD_RELEASE(intp0)
    return native.call(0x487EB90B98E9FB19, intp0)
end

function natives.TEXTURE_DOWNLOAD_HAS_FAILED(intp0)
    return native.call(0x5776ED562C134687, intp0)
end

function natives.TEXTURE_DOWNLOAD_GET_NAME(intp0)
    return native.call(0x3448505B6E35262D, intp0)
end

function natives.GET_STATUS_OF_TEXTURE_DOWNLOAD(intp0)
    return native.call(0x8BD6C6DEA20E82C6, intp0)
end

function natives._0x60EDD13EB3AC1FF3()
    return native.call(0x60EDD13EB3AC1FF3)
end

function natives.NETWORK_SHOULD_SHOW_CONNECTIVITY_TROUBLESHOOTING()
    return native.call(0x82A2B386716608F1)
end

function natives.NETWORK_IS_CABLE_CONNECTED()
    return native.call(0xEFFB25453D8600F9)
end

function natives.NETWORK_GET_ROS_PRIVILEGE_9()
    return native.call(0x66B59CFFD78467AF)
end

function natives.NETWORK_HAVE_ROS_SOCIAL_CLUB_PRIV()
    return native.call(0x606E4D3E3CCCF3EB)
end

function natives.NETWORK_HAVE_ROS_BANNED_PRIV()
    return native.call(0x8020A73847E0CA7D)
end

function natives.NETWORK_HAVE_ROS_CREATE_TICKET_PRIV()
    return native.call(0xA0AD7E2AF5349F61)
end

function natives.NETWORK_HAVE_ROS_MULTIPLAYER_PRIV()
    return native.call(0x5F91D5D0B36AA310)
end

function natives.NETWORK_HAVE_ROS_LEADERBOARD_WRITE_PRIV()
    return native.call(0x422D396F80A96547)
end

function natives.NETWORK_HAS_ROS_PRIVILEGE(intindex)
    return native.call(0xA699957E60D80214, intindex)
end

function natives.NETWORK_HAS_ROS_PRIVILEGE_END_DATE(intprivilege, intbanType, AnytimeData)
    return native.call(0xC22912B1D85F26B1, intprivilege, intbanType, AnytimeData)
end

function natives.NETWORK_GET_ROS_PRIVILEGE_24()
    return native.call(0x593570C289A77688)
end

function natives.NETWORK_GET_ROS_PRIVILEGE_25()
    return native.call(0x91B87C55093DE351)
end

function natives._0x36391F397731595D(Anyp0)
    return native.call(0x36391F397731595D, Anyp0)
end

function natives.NETWORK_START_USER_CONTENT_PERMISSIONS_CHECK(AnynetHandle)
    return native.call(0xDEB2B99A1AF1A2A6, AnynetHandle)
end

function natives._0x9465E683B12D3F6B()
    return native.call(0x9465E683B12D3F6B)
end

function natives._0xCA59CCAE5D01E4CE()
    return native.call(0xCA59CCAE5D01E4CE)
end

function natives.NETWORK_HAS_GAME_BEEN_ALTERED()
    return native.call(0x659CF2EF7F550C4F)
end

function natives.NETWORK_UPDATE_PLAYER_SCARS()
    return native.call(0xB7C7F6AD6424304B)
end

function natives.NETWORK_DISABLE_LEAVE_REMOTE_PED_BEHIND(BOOLtoggle)
    return native.call(0xC505036A35AFD01B, BOOLtoggle)
end

function natives.NETWORK_ALLOW_LOCAL_ENTITY_ATTACHMENT(Entityentity, BOOLtoggle)
    return native.call(0x267C78C60E806B9A, Entityentity, BOOLtoggle)
end

function natives._0x6BFF5F84102DF80A(Playerplayer)
    return native.call(0x6BFF5F84102DF80A, Playerplayer)
end

function natives._0x5C497525F803486B()
    return native.call(0x5C497525F803486B)
end

function natives._0x6FB7BB3607D27FA2()
    return native.call(0x6FB7BB3607D27FA2)
end

function natives._0x45A83257ED02D9BC()
    return native.call(0x45A83257ED02D9BC)
end

function natives.NETWORK_IS_CONNECTION_ENDPOINT_RELAY_SERVER(Playerplayer)
    return native.call(0x16D3D49902F697BB, Playerplayer)
end

function natives.NETWORK_GET_AVERAGE_LATENCY_FOR_PLAYER(Playerplayer)
    return native.call(0xD414BE129BB81B32, Playerplayer)
end

function natives.NETWORK_GET_AVERAGE_LATENCY_FOR_PLAYER_2(Playerplayer)
    return native.call(0x0E3A041ED6AC2B45, Playerplayer)
end

function natives.NETWORK_GET_AVERAGE_PACKET_LOSS_FOR_PLAYER(Playerplayer)
    return native.call(0x350C23949E43686C, Playerplayer)
end

function natives.NETWORK_GET_NUM_UNACKED_FOR_PLAYER(Playerplayer)
    return native.call(0xFF8FCF9FFC458A1C, Playerplayer)
end

function natives.NETWORK_GET_UNRELIABLE_RESEND_COUNT_FOR_PLAYER(Playerplayer)
    return native.call(0x3765C3A3E8192E10, Playerplayer)
end

function natives.NETWORK_GET_OLDEST_RESEND_COUNT_FOR_PLAYER(Playerplayer)
    return native.call(0x52C1EADAF7B10302, Playerplayer)
end

function natives.NETWORK_REPORT_MYSELF()
    return native.call(0x5626D9D6810730D5)
end

function natives._0x64D779659BC37B19(Entityentity)
    return native.call(0x64D779659BC37B19, Entityentity)
end

function natives.NETWORK_GET_PLAYER_COORDS(Playerplayer)
    return native.call(0x125E6D638B8605D4, Playerplayer)
end

function natives.NETWORK_GET_LAST_VELOCITY_RECEIVED(Entityentity)
    return native.call(0x33DE49EDF4DDE77A, Entityentity)
end

function natives._0xAA5FAFCD2C5F5E47(Entityentity)
    return native.call(0xAA5FAFCD2C5F5E47, Entityentity)
end

function natives._0xAEDF1BC1C133D6E3()
    return native.call(0xAEDF1BC1C133D6E3)
end

function natives._0x2555CF7DA5473794()
    return native.call(0x2555CF7DA5473794)
end

function natives._0x6FD992C4A1C1B986()
    return native.call(0x6FD992C4A1C1B986)
end

function natives._0xDB663CC9FF3407A9(Playerplayer)
    return native.call(0xDB663CC9FF3407A9, Playerplayer)
end

function natives.NETWORK_UGC_NAV(Anyp0, Anyp1)
    return native.call(0xC1447451DDB512F0, Anyp0, Anyp1)
end

function natives.CREATE_OBJECT(HashmodelHash, floatx, floaty, floatz, BOOLisNetwork, BOOLbScriptHostObj, BOOLdynamic)
    return native.call(0x509D5878EB39E842, HashmodelHash, floatx, floaty, floatz, BOOLisNetwork, BOOLbScriptHostObj, BOOLdynamic)
end

function natives.CREATE_OBJECT_NO_OFFSET(HashmodelHash, floatx, floaty, floatz, BOOLisNetwork, BOOLbScriptHostObj, BOOLdynamic)
    return native.call(0x9A294B2138ABB884, HashmodelHash, floatx, floaty, floatz, BOOLisNetwork, BOOLbScriptHostObj, BOOLdynamic)
end

function natives.DELETE_OBJECT(Objectobject)
    return native.call(0x539E0AE3E6634B9F, Objectobject)
end

function natives.PLACE_OBJECT_ON_GROUND_PROPERLY(Objectobject)
    return native.call(0x58A850EAEE20FAA3, Objectobject)
end

function natives.PLACE_OBJECT_ON_GROUND_PROPERLY_2(Objectobject)
    return native.call(0xD76EEEF746057FD6, Objectobject)
end

function natives._0xAFE24E4D29249E4A(Objectobject, floatp1, floatp2, BOOLp3)
    return native.call(0xAFE24E4D29249E4A, Objectobject, floatp1, floatp2, BOOLp3)
end

function natives.SLIDE_OBJECT(Objectobject, floattoX, floattoY, floattoZ, floatspeedX, floatspeedY, floatspeedZ, BOOLcollision)
    return native.call(0x2FDFF4107B8C1147, Objectobject, floattoX, floattoY, floattoZ, floatspeedX, floatspeedY, floatspeedZ, BOOLcollision)
end

function natives.SET_OBJECT_TARGETTABLE(Objectobject, BOOLtargettable)
    return native.call(0x8A7391690F5AFD81, Objectobject, BOOLtargettable)
end

function natives.SET_OBJECT_FORCE_VEHICLES_TO_AVOID(Objectobject, BOOLtoggle)
    return native.call(0x77F33F2CCF64B3AA, Objectobject, BOOLtoggle)
end

function natives.GET_CLOSEST_OBJECT_OF_TYPE(floatx, floaty, floatz, floatradius, HashmodelHash, BOOLisMission, BOOLp6, BOOLp7)
    return native.call(0xE143FA2249364369, floatx, floaty, floatz, floatradius, HashmodelHash, BOOLisMission, BOOLp6, BOOLp7)
end

function natives.HAS_OBJECT_BEEN_BROKEN(Objectobject, Anyp1)
    return native.call(0x8ABFB70C49CC43E2, Objectobject, Anyp1)
end

function natives.HAS_CLOSEST_OBJECT_OF_TYPE_BEEN_BROKEN(floatp0, floatp1, floatp2, floatp3, HashmodelHash, Anyp5)
    return native.call(0x761B0E69AC4D007E, floatp0, floatp1, floatp2, floatp3, HashmodelHash, Anyp5)
end

function natives.HAS_CLOSEST_OBJECT_OF_TYPE_BEEN_COMPLETELY_DESTROYED(floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
    return native.call(0x46494A2475701343, floatx, floaty, floatz, floatradius, HashmodelHash, BOOLp5)
end

function natives._0x2542269291C6AC84(Anyp0)
    return native.call(0x2542269291C6AC84, Anyp0)
end

function natives.GET_OBJECT_OFFSET_FROM_COORDS(floatxPos, floatyPos, floatzPos, floatheading, floatxOffset, floatyOffset, floatzOffset)
    return native.call(0x163E252DE035A133, floatxPos, floatyPos, floatzPos, floatheading, floatxOffset, floatyOffset, floatzOffset)
end

function natives.GET_COORDS_AND_ROTATION_OF_CLOSEST_OBJECT_OF_TYPE(floatx, floaty, floatz, floatradius, HashmodelHash, Vector3outPosition, Vector3outRotation, introtationOrder)
    return native.call(0x163F8B586BC95F2A, floatx, floaty, floatz, floatradius, HashmodelHash, Vector3outPosition, Vector3outRotation, introtationOrder)
end

function natives.SET_STATE_OF_CLOSEST_DOOR_OF_TYPE(Hashtype, floatx, floaty, floatz, BOOLlocked, floatheading, BOOLp6)
    return native.call(0xF82D8F1926A02C3D, Hashtype, floatx, floaty, floatz, BOOLlocked, floatheading, BOOLp6)
end

function natives.GET_STATE_OF_CLOSEST_DOOR_OF_TYPE(Hashtype, floatx, floaty, floatz, BOOLlocked, floatheading)
    return native.call(0xEDC1A5B84AEF33FF, Hashtype, floatx, floaty, floatz, BOOLlocked, floatheading)
end

function natives.DOOR_CONTROL(HashmodelHash, floatx, floaty, floatz, BOOLlocked, floatxRotMult, floatyRotMult, floatzRotMult)
    return native.call(0x9B12F9A24FABEDB0, HashmodelHash, floatx, floaty, floatz, BOOLlocked, floatxRotMult, floatyRotMult, floatzRotMult)
end

function natives._0x006E4B040ED37EC3(Anyp0)
    return native.call(0x006E4B040ED37EC3, Anyp0)
end

function natives.ADD_DOOR_TO_SYSTEM(HashdoorHash, HashmodelHash, floatx, floaty, floatz, BOOLp5, BOOLscriptDoor, BOOLisLocal)
    return native.call(0x6F8838D03D1DC226, HashdoorHash, HashmodelHash, floatx, floaty, floatz, BOOLp5, BOOLscriptDoor, BOOLisLocal)
end

function natives.REMOVE_DOOR_FROM_SYSTEM(HashdoorHash, Anyp1)
    return native.call(0x464D8E1427156FE4, HashdoorHash, Anyp1)
end

function natives.DOOR_SYSTEM_SET_DOOR_STATE(HashdoorHash, intstate, BOOLrequestDoor, BOOLforceUpdate)
    return native.call(0x6BAB9442830C7F53, HashdoorHash, intstate, BOOLrequestDoor, BOOLforceUpdate)
end

function natives.DOOR_SYSTEM_GET_DOOR_STATE(HashdoorHash)
    return native.call(0x160AA1B32F6139B8, HashdoorHash)
end

function natives.DOOR_SYSTEM_GET_DOOR_PENDING_STATE(HashdoorHash)
    return native.call(0x4BC2854478F3A749, HashdoorHash)
end

function natives.DOOR_SYSTEM_SET_AUTOMATIC_RATE(HashdoorHash, floatrate, BOOLrequestDoor, BOOLforceUpdate)
    return native.call(0x03C27E13B42A0E82, HashdoorHash, floatrate, BOOLrequestDoor, BOOLforceUpdate)
end

function natives.DOOR_SYSTEM_SET_AUTOMATIC_DISTANCE(HashdoorHash, floatdistance, BOOLrequestDoor, BOOLforceUpdate)
    return native.call(0x9BA001CB45CBF627, HashdoorHash, floatdistance, BOOLrequestDoor, BOOLforceUpdate)
end

function natives.DOOR_SYSTEM_SET_OPEN_RATIO(HashdoorHash, floatajar, BOOLrequestDoor, BOOLforceUpdate)
    return native.call(0xB6E6FBA95C7324AC, HashdoorHash, floatajar, BOOLrequestDoor, BOOLforceUpdate)
end

function natives.DOOR_SYSTEM_GET_AUTOMATIC_DISTANCE(HashdoorHash)
    return native.call(0xE851471AEFC3374F, HashdoorHash)
end

function natives.DOOR_SYSTEM_GET_OPEN_RATIO(HashdoorHash)
    return native.call(0x65499865FCA6E5EC, HashdoorHash)
end

function natives.DOOR_SYSTEM_SET_SPRING_REMOVED(HashdoorHash, BOOLremoved, BOOLrequestDoor, BOOLforceUpdate)
    return native.call(0xC485E07E4F0B7958, HashdoorHash, BOOLremoved, BOOLrequestDoor, BOOLforceUpdate)
end

function natives.DOOR_SYSTEM_SET_HOLD_OPEN(HashdoorHash, BOOLtoggle)
    return native.call(0xD9B71952F78A2640, HashdoorHash, BOOLtoggle)
end

function natives._0xA85A21582451E951(HashdoorHash, BOOLp1)
    return native.call(0xA85A21582451E951, HashdoorHash, BOOLp1)
end

function natives.IS_DOOR_REGISTERED_WITH_SYSTEM(HashdoorHash)
    return native.call(0xC153C43EA202C8C1, HashdoorHash)
end

function natives.IS_DOOR_CLOSED(HashdoorHash)
    return native.call(0xC531EE8A1145A149, HashdoorHash)
end

function natives._0xC7F29CA00F46350E(BOOLp0)
    return native.call(0xC7F29CA00F46350E, BOOLp0)
end

function natives._0x701FDA1E82076BA4()
    return native.call(0x701FDA1E82076BA4)
end

function natives.DOOR_SYSTEM_GET_IS_PHYSICS_LOADED(Anyp0)
    return native.call(0xDF97CDD4FC08FD34, Anyp0)
end

function natives.DOOR_SYSTEM_FIND_EXISTING_DOOR(floatx, floaty, floatz, HashmodelHash, HashoutDoorHash)
    return native.call(0x589F80B325CC82C5, floatx, floaty, floatz, HashmodelHash, HashoutDoorHash)
end

function natives.IS_GARAGE_EMPTY(HashgarageHash, BOOLp1, intp2)
    return native.call(0x90E47239EA1980B8, HashgarageHash, BOOLp1, intp2)
end

function natives.IS_PLAYER_ENTIRELY_INSIDE_GARAGE(HashgarageHash, Playerplayer, floatp2, intp3)
    return native.call(0x024A60DEB0EA69F0, HashgarageHash, Playerplayer, floatp2, intp3)
end

function natives.IS_PLAYER_PARTIALLY_INSIDE_GARAGE(HashgarageHash, Playerplayer, intp2)
    return native.call(0x1761DC5D8471CBAA, HashgarageHash, Playerplayer, intp2)
end

function natives.ARE_ENTITIES_ENTIRELY_INSIDE_GARAGE(HashgarageHash, BOOLp1, BOOLp2, BOOLp3, Anyp4)
    return native.call(0x85B6C850546FDDE2, HashgarageHash, BOOLp1, BOOLp2, BOOLp3, Anyp4)
end

function natives.IS_ANY_ENTITY_ENTIRELY_INSIDE_GARAGE(HashgarageHash, BOOLp1, BOOLp2, BOOLp3, Anyp4)
    return native.call(0x673ED815D6E323B7, HashgarageHash, BOOLp1, BOOLp2, BOOLp3, Anyp4)
end

function natives.IS_OBJECT_ENTIRELY_INSIDE_GARAGE(HashgarageHash, Entityentity, floatp2, intp3)
    return native.call(0x372EF6699146A1E4, HashgarageHash, Entityentity, floatp2, intp3)
end

function natives.IS_OBJECT_PARTIALLY_INSIDE_GARAGE(HashgarageHash, Entityentity, intp2)
    return native.call(0xF0EED5A6BC7B237A, HashgarageHash, Entityentity, intp2)
end

function natives.CLEAR_GARAGE_AREA(HashgarageHash, BOOLisNetwork)
    return native.call(0xDA05194260CDCDF9, HashgarageHash, BOOLisNetwork)
end

function natives.CLEAR_OBJECTS_INSIDE_GARAGE(HashgarageHash, BOOLvehicles, BOOLpeds, BOOLobjects, BOOLisNetwork)
    return native.call(0x190428512B240692, HashgarageHash, BOOLvehicles, BOOLpeds, BOOLobjects, BOOLisNetwork)
end

function natives._0x659F9D71F52843F8(intid, BOOLtoggle)
    return native.call(0x659F9D71F52843F8, intid, BOOLtoggle)
end

function natives.ENABLE_SAVING_IN_GARAGE(HashgarageHash, BOOLtoggle)
    return native.call(0xF2E1A7133DD356A6, HashgarageHash, BOOLtoggle)
end

function natives._0x66A49D021870FE88()
    return native.call(0x66A49D021870FE88)
end

function natives.DOES_OBJECT_OF_TYPE_EXIST_AT_COORDS(floatx, floaty, floatz, floatradius, Hashhash, BOOLp5)
    return native.call(0xBFA48E2FF417213F, floatx, floaty, floatz, floatradius, Hashhash, BOOLp5)
end

function natives.IS_POINT_IN_ANGLED_AREA(floatxPos, floatyPos, floatzPos, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLdebug, BOOLincludeZ)
    return native.call(0x2A70BAE8883E4C81, floatxPos, floatyPos, floatzPos, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLdebug, BOOLincludeZ)
end

function natives.SET_OBJECT_ALLOW_LOW_LOD_BUOYANCY(Objectobject, BOOLtoggle)
    return native.call(0x4D89D607CB3DD1D2, Objectobject, BOOLtoggle)
end

function natives.SET_OBJECT_PHYSICS_PARAMS(Objectobject, floatweight, floatp2, floatp3, floatp4, floatp5, floatgravity, floatp7, floatp8, floatp9, floatp10, floatbuoyancy)
    return native.call(0xF6DF6E90DE7DF90F, Objectobject, floatweight, floatp2, floatp3, floatp4, floatp5, floatgravity, floatp7, floatp8, floatp9, floatp10, floatbuoyancy)
end

function natives.GET_OBJECT_FRAGMENT_DAMAGE_HEALTH(Anyp0, BOOLp1)
    return native.call(0xB6FBFD079B8D0596, Anyp0, BOOLp1)
end

function natives.SET_ACTIVATE_OBJECT_PHYSICS_AS_SOON_AS_IT_IS_UNFROZEN(Objectobject, BOOLtoggle)
    return native.call(0x406137F8EF90EAF5, Objectobject, BOOLtoggle)
end

function natives.IS_ANY_OBJECT_NEAR_POINT(floatx, floaty, floatz, floatrange, BOOLp4)
    return native.call(0x397DC58FF00298D1, floatx, floaty, floatz, floatrange, BOOLp4)
end

function natives.IS_OBJECT_NEAR_POINT(HashobjectHash, floatx, floaty, floatz, floatrange)
    return native.call(0x8C90FE4B381BA60A, HashobjectHash, floatx, floaty, floatz, floatrange)
end

function natives.REMOVE_OBJECT_HIGH_DETAIL_MODEL(Objectobject)
    return native.call(0x4A39DB43E47CF3AA, Objectobject)
end

function natives.BREAK_OBJECT_FRAGMENT_CHILD(Objectp0, Anyp1, BOOLp2)
    return native.call(0xE7E4C198B0185900, Objectp0, Anyp1, BOOLp2)
end

function natives._0xE05F6AEEFEB0BB02(Anyp0, Anyp1, Anyp2)
    return native.call(0xE05F6AEEFEB0BB02, Anyp0, Anyp1, Anyp2)
end

function natives._0xF9C1681347C8BD15(Objectobject)
    return native.call(0xF9C1681347C8BD15, Objectobject)
end

function natives.TRACK_OBJECT_VISIBILITY(Objectobject)
    return native.call(0xB252BC036B525623, Objectobject)
end

function natives.IS_OBJECT_VISIBLE(Objectobject)
    return native.call(0x8B32ACE6326A7546, Objectobject)
end

function natives._0xC6033D32241F6FB5(Objectobject, BOOLtoggle)
    return native.call(0xC6033D32241F6FB5, Objectobject, BOOLtoggle)
end

function natives._0xEB6F1A9B5510A5D2(Anyp0, BOOLp1)
    return native.call(0xEB6F1A9B5510A5D2, Anyp0, BOOLp1)
end

function natives.SET_UNK_GLOBAL_BOOL_RELATED_TO_DAMAGE(BOOLvalue)
    return native.call(0xABDABF4E1EDECBFA, BOOLvalue)
end

function natives.SET_CREATE_WEAPON_OBJECT_LIGHT_SOURCE(Objectobject, BOOLtoggle)
    return native.call(0xBCE595371A5FBAAF, Objectobject, BOOLtoggle)
end

function natives.GET_RAYFIRE_MAP_OBJECT(floatx, floaty, floatz, floatradius, constcharname)
    return native.call(0xB48FCED898292E52, floatx, floaty, floatz, floatradius, constcharname)
end

function natives.SET_STATE_OF_RAYFIRE_MAP_OBJECT(Objectobject, intstate)
    return native.call(0x5C29F698D404C5E1, Objectobject, intstate)
end

function natives.GET_STATE_OF_RAYFIRE_MAP_OBJECT(Objectobject)
    return native.call(0x899BA936634A322E, Objectobject)
end

function natives.DOES_RAYFIRE_MAP_OBJECT_EXIST(Objectobject)
    return native.call(0x52AF537A0C5B8AAD, Objectobject)
end

function natives.GET_RAYFIRE_MAP_OBJECT_ANIM_PHASE(Objectobject)
    return native.call(0x260EE4FDBDF4DB01, Objectobject)
end

function natives.CREATE_PICKUP(HashpickupHash, floatposX, floatposY, floatposZ, intp4, intvalue, BOOLp6, HashmodelHash)
    return native.call(0xFBA08C503DD5FA58, HashpickupHash, floatposX, floatposY, floatposZ, intp4, intvalue, BOOLp6, HashmodelHash)
end

function natives.CREATE_PICKUP_ROTATE(HashpickupHash, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, intflag, intamount, Anyp9, BOOLp10, HashmodelHash)
    return native.call(0x891804727E0A98B7, HashpickupHash, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, intflag, intamount, Anyp9, BOOLp10, HashmodelHash)
end

function natives._0x394CD08E31313C28()
    return native.call(0x394CD08E31313C28)
end

function natives._0x826D1EE4D1CAFC78(Anyp0, Anyp1)
    return native.call(0x826D1EE4D1CAFC78, Anyp0, Anyp1)
end

function natives.CREATE_AMBIENT_PICKUP(HashpickupHash, floatposX, floatposY, floatposZ, intflags, intvalue, HashmodelHash, BOOLp7, BOOLp8)
    return native.call(0x673966A0C0FD7171, HashpickupHash, floatposX, floatposY, floatposZ, intflags, intvalue, HashmodelHash, BOOLp7, BOOLp8)
end

function natives.CREATE_NON_NETWORKED_AMBIENT_PICKUP(HashpickupHash, floatposX, floatposY, floatposZ, intflags, intvalue, HashmodelHash, BOOLp7, BOOLp8)
    return native.call(0x9C93764223E29C50, HashpickupHash, floatposX, floatposY, floatposZ, intflags, intvalue, HashmodelHash, BOOLp7, BOOLp8)
end

function natives._0x1E3F1B1B891A2AAA(Anyp0, Anyp1)
    return native.call(0x1E3F1B1B891A2AAA, Anyp0, Anyp1)
end

function natives.CREATE_PORTABLE_PICKUP(HashpickupHash, floatx, floaty, floatz, BOOLplaceOnGround, HashmodelHash)
    return native.call(0x2EAF1FDB2FB55698, HashpickupHash, floatx, floaty, floatz, BOOLplaceOnGround, HashmodelHash)
end

function natives.CREATE_NON_NETWORKED_PORTABLE_PICKUP(HashpickupHash, floatx, floaty, floatz, BOOLplaceOnGround, HashmodelHash)
    return native.call(0x125494B98A21AAF7, HashpickupHash, floatx, floaty, floatz, BOOLplaceOnGround, HashmodelHash)
end

function natives.ATTACH_PORTABLE_PICKUP_TO_PED(ObjectpickupObject, Pedped)
    return native.call(0x8DC39368BDD57755, ObjectpickupObject, Pedped)
end

function natives.DETACH_PORTABLE_PICKUP_FROM_PED(ObjectpickupObject)
    return native.call(0xCF463D1E9A0AECB1, ObjectpickupObject)
end

function natives._0x5CE2E45A5CE2E45A(Anyp0)
    return native.call(0x5CE2E45A5CE2E45A, Anyp0)
end

function natives.HIDE_PORTABLE_PICKUP_WHEN_DETACHED(ObjectpickupObject, BOOLtoggle)
    return native.call(0x867458251D47CCB2, ObjectpickupObject, BOOLtoggle)
end

function natives.SET_MAX_NUM_PORTABLE_PICKUPS_CARRIED_BY_PLAYER(HashmodelHash, intp1)
    return native.call(0x0BF3B3BD47D79C08, HashmodelHash, intp1)
end

function natives.SET_LOCAL_PLAYER_CAN_COLLECT_PORTABLE_PICKUPS(BOOLp0)
    return native.call(0x78857FC65CADB909, BOOLp0)
end

function natives.GET_SAFE_PICKUP_COORDS(floatx, floaty, floatz, floatp3, floatp4)
    return native.call(0x6E16BC2503FF1FF0, floatx, floaty, floatz, floatp3, floatp4)
end

function natives._0xD4A7A435B3710D05(floatx, floaty, floatz, floatradius)
    return native.call(0xD4A7A435B3710D05, floatx, floaty, floatz, floatradius)
end

function natives._0xB7C6D80FB371659A()
    return native.call(0xB7C6D80FB371659A)
end

function natives.GET_PICKUP_COORDS(Pickuppickup)
    return native.call(0x225B8B35C88029B3, Pickuppickup)
end

function natives._0x8DCA505A5C196F05(Anyp0, Anyp1)
    return native.call(0x8DCA505A5C196F05, Anyp0, Anyp1)
end

function natives.REMOVE_ALL_PICKUPS_OF_TYPE(HashpickupHash)
    return native.call(0x27F9D613092159CF, HashpickupHash)
end

function natives.HAS_PICKUP_BEEN_COLLECTED(Pickuppickup)
    return native.call(0x80EC48E6679313F9, Pickuppickup)
end

function natives.REMOVE_PICKUP(Pickuppickup)
    return native.call(0x3288D8ACAECD2AB2, Pickuppickup)
end

function natives.CREATE_MONEY_PICKUPS(floatx, floaty, floatz, intvalue, intamount, Hashmodel)
    return native.call(0x0589B5E791CE9B2B, floatx, floaty, floatz, intvalue, intamount, Hashmodel)
end

function natives.DOES_PICKUP_EXIST(Pickuppickup)
    return native.call(0xAFC1CA75AD4074D1, Pickuppickup)
end

function natives.DOES_PICKUP_OBJECT_EXIST(ObjectpickupObject)
    return native.call(0xD9EFB6DBF7DAAEA3, ObjectpickupObject)
end

function natives.GET_PICKUP_OBJECT(Pickuppickup)
    return native.call(0x5099BC55630B25AE, Pickuppickup)
end

function natives.IS_OBJECT_A_PICKUP(Objectobject)
    return native.call(0xFC481C641EBBD27D, Objectobject)
end

function natives.IS_OBJECT_A_PORTABLE_PICKUP(Objectobject)
    return native.call(0x0378C08504160D0D, Objectobject)
end

function natives.DOES_PICKUP_OF_TYPE_EXIST_IN_AREA(HashpickupHash, floatx, floaty, floatz, floatradius)
    return native.call(0xF9C36251F6E48E33, HashpickupHash, floatx, floaty, floatz, floatradius)
end

function natives.SET_PICKUP_REGENERATION_TIME(Pickuppickup, intduration)
    return native.call(0x78015C9B4B3ECC9D, Pickuppickup, intduration)
end

function natives.FORCE_PICKUP_REGENERATE(Anyp0)
    return native.call(0x758A5C1B3B1E1990, Anyp0)
end

function natives.TOGGLE_USE_PICKUPS_FOR_PLAYER(Playerplayer, HashpickupHash, BOOLtoggle)
    return native.call(0x616093EC6B139DD9, Playerplayer, HashpickupHash, BOOLtoggle)
end

function natives.SET_LOCAL_PLAYER_CAN_USE_PICKUPS_WITH_THIS_MODEL(HashmodelHash, BOOLtoggle)
    return native.call(0x88EAEC617CD26926, HashmodelHash, BOOLtoggle)
end

function natives._0xFDC07C58E8AAB715(HashpickupHash)
    return native.call(0xFDC07C58E8AAB715, HashpickupHash)
end

function natives.SET_TEAM_PICKUP_OBJECT(Objectobject, Anyp1, BOOLp2)
    return native.call(0x53E0DF1A2A3CF0CA, Objectobject, Anyp1, BOOLp2)
end

function natives.PREVENT_COLLECTION_OF_PORTABLE_PICKUP(Objectobject, BOOLp1, BOOLp2)
    return native.call(0x92AEFB5F6E294023, Objectobject, BOOLp1, BOOLp2)
end

function natives._0x27F248C3FEBFAAD3(Anyp0, Anyp1)
    return native.call(0x27F248C3FEBFAAD3, Anyp0, Anyp1)
end

function natives._0x0596843B34B95CE5(Anyp0, Anyp1)
    return native.call(0x0596843B34B95CE5, Anyp0, Anyp1)
end

function natives._0xA08FE5E49BDC39DD(Anyp0, floatp1, BOOLp2)
    return native.call(0xA08FE5E49BDC39DD, Anyp0, floatp1, BOOLp2)
end

function natives._0x62454A641B41F3C5(Anyp0)
    return native.call(0x62454A641B41F3C5, Anyp0)
end

function natives._0x39A5FB7EAF150840(Anyp0, Anyp1)
    return native.call(0x39A5FB7EAF150840, Anyp0, Anyp1)
end

function natives._0x834344A414C7C85D(Anyp0, Anyp1)
    return native.call(0x834344A414C7C85D, Anyp0, Anyp1)
end

function natives.GET_DEFAULT_AMMO_FOR_WEAPON_PICKUP(HashpickupHash)
    return native.call(0xDB41D07A45A6D4B7, HashpickupHash)
end

function natives.SET_PICKUP_GENERATION_RANGE_MULTIPLIER(floatmultiplier)
    return native.call(0x318516E02DE3ECE2, floatmultiplier)
end

function natives.GET_PICKUP_GENERATION_RANGE_MULTIPLIER()
    return native.call(0xB3ECA65C7317F174)
end

function natives._0x31F924B53EADDF65(BOOLp0)
    return native.call(0x31F924B53EADDF65, BOOLp0)
end

function natives.SET_PICKUP_UNCOLLECTABLE(Anyp0, Anyp1)
    return native.call(0x1C1B69FAE509BA97, Anyp0, Anyp1)
end

function natives._0x858EC9FD25DE04AA(Anyp0, Anyp1)
    return native.call(0x858EC9FD25DE04AA, Anyp0, Anyp1)
end

function natives.SET_PICKUP_HIDDEN_WHEN_UNCOLLECTABLE(Anyp0, Anyp1)
    return native.call(0x3ED2B83AB2E82799, Anyp0, Anyp1)
end

function natives._0x8881C98A31117998(Anyp0, Anyp1)
    return native.call(0x8881C98A31117998, Anyp0, Anyp1)
end

function natives._0x8CFF648FBD7330F1(Anyp0)
    return native.call(0x8CFF648FBD7330F1, Anyp0)
end

function natives._0x46F3ADD1E2D5BAF2(Anyp0, Anyp1)
    return native.call(0x46F3ADD1E2D5BAF2, Anyp0, Anyp1)
end

function natives._0x641F272B52E2F0F8(Anyp0, Anyp1)
    return native.call(0x641F272B52E2F0F8, Anyp0, Anyp1)
end

function natives._0x4C134B4DF76025D0(Pickuppickup, BOOLtoggle)
    return native.call(0x4C134B4DF76025D0, Pickuppickup, BOOLtoggle)
end

function natives._0xAA059C615DE9DD03(Pickuppickup, BOOLtoggle)
    return native.call(0xAA059C615DE9DD03, Pickuppickup, BOOLtoggle)
end

function natives.SUPPRESS_PICKUP_REWARD_TYPE(intrewardType, BOOLsuppress)
    return native.call(0xF92099527DB8E2A7, intrewardType, BOOLsuppress)
end

function natives.CLEAR_ALL_PICKUP_REWARD_TYPE_SUPPRESSION()
    return native.call(0xA2C1F5E92AFE49ED)
end

function natives.CLEAR_PICKUP_REWARD_TYPE_SUPPRESSION(Anyp0)
    return native.call(0x762DB2D380B48D04, Anyp0)
end

function natives.RENDER_FAKE_PICKUP_GLOW(floatx, floaty, floatz, intcolorIndex)
    return native.call(0x3430676B11CDF21D, floatx, floaty, floatz, intcolorIndex)
end

function natives._0x7813E8B8C4AE4799(Pickuppickup)
    return native.call(0x7813E8B8C4AE4799, Pickuppickup)
end

function natives._0xBFFE53AE7E67FCDC(Pickuppickup, BOOLtoggle)
    return native.call(0xBFFE53AE7E67FCDC, Pickuppickup, BOOLtoggle)
end

function natives._0xD05A3241B9A86F19(Entityentity, BOOLtoggle)
    return native.call(0xD05A3241B9A86F19, Entityentity, BOOLtoggle)
end

function natives._0xB2D0BDE54F0E8E5A(Objectobject, BOOLtoggle)
    return native.call(0xB2D0BDE54F0E8E5A, Objectobject, BOOLtoggle)
end

function natives.GET_WEAPON_TYPE_FROM_PICKUP_TYPE(HashpickupHash)
    return native.call(0x08F96CA6C551AD51, HashpickupHash)
end

function natives.GET_PICKUP_HASH_FROM_WEAPON(HashweaponHash)
    return native.call(0xD6429A016084F1A5, HashweaponHash)
end

function natives.IS_PICKUP_WEAPON_OBJECT_VALID(Objectobject)
    return native.call(0x11D1E53A726891FE, Objectobject)
end

function natives.GET_OBJECT_TEXTURE_VARIATION(Objectobject)
    return native.call(0xE84EB93729C5F36A, Objectobject)
end

function natives.SET_OBJECT_TEXTURE_VARIATION(Objectobject, inttextureVariation)
    return native.call(0x971DA0055324D033, Objectobject, inttextureVariation)
end

function natives.SET_TEXTURE_VARIATION_OF_CLOSEST_OBJECT_OF_TYPE(floatx, floaty, floatz, floatradius, HashmodelHash, inttextureVariation)
    return native.call(0xF12E33034D887F66, floatx, floaty, floatz, floatradius, HashmodelHash, inttextureVariation)
end

function natives._0x31574B1B41268673(Anyp0, Anyp1)
    return native.call(0x31574B1B41268673, Anyp0, Anyp1)
end

function natives.SET_OBJECT_LIGHT_COLOR(Objectobject, BOOLp1, intr, intg, intb)
    return native.call(0x5F048334B4A4E774, Objectobject, BOOLp1, intr, intg, intb)
end

function natives._0xADF084FB8F075D06(Objectobject)
    return native.call(0xADF084FB8F075D06, Objectobject)
end

function natives._0x3B2FD68DB5F8331C(Objectobject, BOOLtoggle)
    return native.call(0x3B2FD68DB5F8331C, Objectobject, BOOLtoggle)
end

function natives.SET_OBJECT_STUNT_PROP_SPEEDUP(Objectobject, Anyp1)
    return native.call(0x96EE0EBA0163DF80, Objectobject, Anyp1)
end

function natives.SET_OBJECT_STUNT_PROP_DURATION(Objectobject, floatduration)
    return native.call(0xDF6CA0330F2E737B, Objectobject, floatduration)
end

function natives.GET_PICKUP_HASH(HashpickupHash)
    return native.call(0x5EAAD83F8CFB4575, HashpickupHash)
end

function natives.SET_FORCE_OBJECT_THIS_FRAME(floatx, floaty, floatz, floatp3)
    return native.call(0xF538081986E49E9D, floatx, floaty, floatz, floatp3)
end

function natives.MARK_OBJECT_FOR_DELETION(Objectobject)
    return native.call(0xADBE4809F19F927A, Objectobject)
end

function natives._0x8CAAB2BD3EA58BD4(Anyp0)
    return native.call(0x8CAAB2BD3EA58BD4, Anyp0)
end

function natives._0x63ECF581BC70E363(Anyp0, Anyp1)
    return native.call(0x63ECF581BC70E363, Anyp0, Anyp1)
end

function natives.SET_ENABLE_ARENA_PROP_PHYSICS(Objectobject, BOOLtoggle, intp2)
    return native.call(0x911024442F4898F0, Objectobject, BOOLtoggle, intp2)
end

function natives.SET_ENABLE_ARENA_PROP_PHYSICS_ON_PED(Objectobject, BOOLtoggle, intp2, Pedped)
    return native.call(0xB20834A7DD3D8896, Objectobject, BOOLtoggle, intp2, Pedped)
end

function natives._0x734E1714D077DA9A(Objectobject, BOOLtoggle)
    return native.call(0x734E1714D077DA9A, Objectobject, BOOLtoggle)
end

function natives._0x1A6CBB06E2D0D79D(Objectobject, BOOLp1)
    return native.call(0x1A6CBB06E2D0D79D, Objectobject, BOOLp1)
end

function natives.GET_IS_ARENA_PROP_PHYSICS_DISABLED(Objectobject, Anyp1)
    return native.call(0x43C677F1E1158005, Objectobject, Anyp1)
end

function natives._0x3BD770D281982DB5(Anyp0, Anyp1)
    return native.call(0x3BD770D281982DB5, Anyp0, Anyp1)
end

function natives._0x1C57C94A6446492A(Objectobject, BOOLtoggle)
    return native.call(0x1C57C94A6446492A, Objectobject, BOOLtoggle)
end

function natives._0xB5B7742424BD4445(Objectobject, BOOLtoggle)
    return native.call(0xB5B7742424BD4445, Objectobject, BOOLtoggle)
end

function natives.IS_CONTROL_ENABLED(intpadIndex, intcontrol)
    return native.call(0x1CEA6BFDF248E5D9, intpadIndex, intcontrol)
end

function natives.IS_CONTROL_PRESSED(intpadIndex, intcontrol)
    return native.call(0xF3A21BCD95725A4A, intpadIndex, intcontrol)
end

function natives.IS_CONTROL_RELEASED(intpadIndex, intcontrol)
    return native.call(0x648EE3E7F38877DD, intpadIndex, intcontrol)
end

function natives.IS_CONTROL_JUST_PRESSED(intpadIndex, intcontrol)
    return native.call(0x580417101DDB492F, intpadIndex, intcontrol)
end

function natives.IS_CONTROL_JUST_RELEASED(intpadIndex, intcontrol)
    return native.call(0x50F940259D3841E6, intpadIndex, intcontrol)
end

function natives.GET_CONTROL_VALUE(intpadIndex, intcontrol)
    return native.call(0xD95E79E8686D2C27, intpadIndex, intcontrol)
end

function natives.GET_CONTROL_NORMAL(intpadIndex, intcontrol)
    return native.call(0xEC3C9B8D5327B563, intpadIndex, intcontrol)
end

function natives._0x5B73C77D9EB66E24(BOOLp0)
    return native.call(0x5B73C77D9EB66E24, BOOLp0)
end

function natives.GET_CONTROL_UNBOUND_NORMAL(intpadIndex, intcontrol)
    return native.call(0x5B84D09CEC5209C5, intpadIndex, intcontrol)
end

function natives.SET_CONTROL_NORMAL(intpadIndex, intcontrol, floatamount)
    return native.call(0xE8A25867FBA3B05E, intpadIndex, intcontrol, floatamount)
end

function natives.IS_DISABLED_CONTROL_PRESSED(intpadIndex, intcontrol)
    return native.call(0xE2587F8CBBD87B1D, intpadIndex, intcontrol)
end

function natives.IS_DISABLED_CONTROL_RELEASED(intpadIndex, intcontrol)
    return native.call(0xFB6C4072E9A32E92, intpadIndex, intcontrol)
end

function natives.IS_DISABLED_CONTROL_JUST_PRESSED(intpadIndex, intcontrol)
    return native.call(0x91AEF906BCA88877, intpadIndex, intcontrol)
end

function natives.IS_DISABLED_CONTROL_JUST_RELEASED(intpadIndex, intcontrol)
    return native.call(0x305C8DCD79DA8B0F, intpadIndex, intcontrol)
end

function natives.GET_DISABLED_CONTROL_NORMAL(intpadIndex, intcontrol)
    return native.call(0x11E65974A982637C, intpadIndex, intcontrol)
end

function natives.GET_DISABLED_CONTROL_UNBOUND_NORMAL(intpadIndex, intcontrol)
    return native.call(0x4F8A26A890FD62FB, intpadIndex, intcontrol)
end

function natives.GET_CONTROL_HOW_LONG_AGO(intp0)
    return native.call(0xD7D22F5592AED8BA, intp0)
end

function natives.IS_USING_KEYBOARD(intpadIndex)
    return native.call(0xA571D46727E2B718, intpadIndex)
end

function natives.IS_USING_KEYBOARD_2(intpadIndex)
    return native.call(0x13337B38DB572509, intpadIndex)
end

function natives.SET_CURSOR_LOCATION(floatx, floaty)
    return native.call(0xFC695459D4D0E219, floatx, floaty)
end

function natives._0x23F09EADC01449D6(intpadIndex)
    return native.call(0x23F09EADC01449D6, intpadIndex)
end

function natives._0x6CD79468A1E595C6(intpadIndex)
    return native.call(0x6CD79468A1E595C6, intpadIndex)
end

function natives.GET_CONTROL_INSTRUCTIONAL_BUTTON(intpadIndex, intcontrol, BOOLp2)
    return native.call(0x0499D7B09FC9B407, intpadIndex, intcontrol, BOOLp2)
end

function natives.GET_CONTROL_GROUP_INSTRUCTIONAL_BUTTON(intpadIndex, intcontrolGroup, BOOLp2)
    return native.call(0x80C2FD58D720C801, intpadIndex, intcontrolGroup, BOOLp2)
end

function natives.SET_CONTROL_LIGHT_EFFECT_COLOR(intpadIndex, intred, intgreen, intblue)
    return native.call(0x8290252FFF36ACB5, intpadIndex, intred, intgreen, intblue)
end

function natives._0xCB0360EFEFB2580D(intpadIndex)
    return native.call(0xCB0360EFEFB2580D, intpadIndex)
end

function natives.SET_PAD_SHAKE(intpadIndex, intduration, intfrequency)
    return native.call(0x48B3886C1358D0D5, intpadIndex, intduration, intfrequency)
end

function natives._0x14D29BB12D47F68C(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x14D29BB12D47F68C, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.STOP_PAD_SHAKE(intpadIndex)
    return native.call(0x38C16A305E8CDC8D, intpadIndex)
end

function natives.SET_PAD_SHAKE_SUPPRESSED_ID(intpadIndex, Anyp1)
    return native.call(0xF239400E16C23E08, intpadIndex, Anyp1)
end

function natives.CLEAR_SUPPRESSED_PAD_RUMBLE(intp0)
    return native.call(0xA0CEFCEA390AAB9B, intp0)
end

function natives.IS_LOOK_INVERTED()
    return native.call(0x77B612531280010D)
end

function natives._0xE1615EC03B3BB4FD()
    return native.call(0xE1615EC03B3BB4FD)
end

function natives.GET_LOCAL_PLAYER_AIM_STATE()
    return native.call(0xBB41AFBBBC0A0287)
end

function natives.GET_LOCAL_PLAYER_AIM_STATE_2()
    return native.call(0x59B9A7AF4C95133C)
end

function natives.GET_IS_USING_ALTERNATE_HANDBRAKE()
    return native.call(0x25AAA32BDC98F2A3)
end

function natives.GET_IS_USING_ALTERNATE_DRIVEBY()
    return native.call(0x0F70731BACCFBB96)
end

function natives.GET_ALLOW_MOVEMENT_WHILE_ZOOMED()
    return native.call(0xFC859E2374407556)
end

function natives.SET_PLAYERPAD_SHAKES_WHEN_CONTROLLER_DISABLED(BOOLtoggle)
    return native.call(0x798FDEB5B1575088, BOOLtoggle)
end

function natives.SET_INPUT_EXCLUSIVE(intpadIndex, intcontrol)
    return native.call(0xEDE476E5EE29EDB1, intpadIndex, intcontrol)
end

function natives.DISABLE_CONTROL_ACTION(intpadIndex, intcontrol, BOOLdisable)
    return native.call(0xFE99B66D079CF6BC, intpadIndex, intcontrol, BOOLdisable)
end

function natives.ENABLE_CONTROL_ACTION(intpadIndex, intcontrol, BOOLenable)
    return native.call(0x351220255D64C155, intpadIndex, intcontrol, BOOLenable)
end

function natives.DISABLE_ALL_CONTROL_ACTIONS(intpadIndex)
    return native.call(0x5F4B6931816E599B, intpadIndex)
end

function natives.ENABLE_ALL_CONTROL_ACTIONS(intpadIndex)
    return native.call(0xA5FFE9B05F199DE7, intpadIndex)
end

function natives.INIT_PC_SCRIPTED_CONTROLS(constcharname)
    return native.call(0x3D42B92563939375, constcharname)
end

function natives.SWITCH_PC_SCRIPTED_CONTROLS(constcharname)
    return native.call(0x4683149ED1DDE7A1, constcharname)
end

function natives.SHUTDOWN_PC_SCRIPTED_CONTROLS()
    return native.call(0x643ED62D5EA3BEBD)
end

function natives._0x7F4724035FDCA1DD(intpadIndex)
    return native.call(0x7F4724035FDCA1DD, intpadIndex)
end

function natives.SET_ROADS_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLnodeEnabled, BOOLunknown2)
    return native.call(0xBF1A602B5BA52FEE, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLnodeEnabled, BOOLunknown2)
end

function natives.SET_ROADS_IN_ANGLED_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLunknown1, BOOLunknown2, BOOLunknown3)
    return native.call(0x1A5AA1208AF5DB59, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, BOOLunknown1, BOOLunknown2, BOOLunknown3)
end

function natives.SET_PED_PATHS_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLunknown, Anyp7)
    return native.call(0x34F060F4BF92E018, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLunknown, Anyp7)
end

function natives.GET_SAFE_COORD_FOR_PED(floatx, floaty, floatz, BOOLonGround, Vector3outPosition, intflags)
    return native.call(0xB61C8E878A4199CA, floatx, floaty, floatz, BOOLonGround, Vector3outPosition, intflags)
end

function natives.GET_CLOSEST_VEHICLE_NODE(floatx, floaty, floatz, Vector3outPosition, intnodeType, floatp5, floatp6)
    return native.call(0x240A18690AE96513, floatx, floaty, floatz, Vector3outPosition, intnodeType, floatp5, floatp6)
end

function natives.GET_CLOSEST_MAJOR_VEHICLE_NODE(floatx, floaty, floatz, Vector3outPosition, floatunknown1, intunknown2)
    return native.call(0x2EABE3B06F58C1BE, floatx, floaty, floatz, Vector3outPosition, floatunknown1, intunknown2)
end

function natives.GET_CLOSEST_VEHICLE_NODE_WITH_HEADING(floatx, floaty, floatz, Vector3outPosition, floatoutHeading, intnodeType, floatp6, intp7)
    return native.call(0xFF071FB798B803B0, floatx, floaty, floatz, Vector3outPosition, floatoutHeading, intnodeType, floatp6, intp7)
end

function natives.GET_NTH_CLOSEST_VEHICLE_NODE(floatx, floaty, floatz, intnthClosest, Vector3outPosition, Anyunknown1, Anyunknown2, Anyunknown3)
    return native.call(0xE50E52416CCF948B, floatx, floaty, floatz, intnthClosest, Vector3outPosition, Anyunknown1, Anyunknown2, Anyunknown3)
end

function natives.GET_NTH_CLOSEST_VEHICLE_NODE_ID(floatx, floaty, floatz, intnth, intnodetype, floatp5, floatp6)
    return native.call(0x22D7275A79FE8215, floatx, floaty, floatz, intnth, intnodetype, floatp5, floatp6)
end

function natives.GET_NTH_CLOSEST_VEHICLE_NODE_WITH_HEADING(floatx, floaty, floatz, intnthClosest, Vector3outPosition, floatoutHeading, Anyunknown1, intunknown2, floatunknown3, floatunknown4)
    return native.call(0x80CA6A8B6C094CC4, floatx, floaty, floatz, intnthClosest, Vector3outPosition, floatoutHeading, Anyunknown1, intunknown2, floatunknown3, floatunknown4)
end

function natives.GET_NTH_CLOSEST_VEHICLE_NODE_ID_WITH_HEADING(floatx, floaty, floatz, intnthClosest, Vector3outPosition, floatoutHeading, Anyp6, floatp7, floatp8)
    return native.call(0x6448050E9C2A7207, floatx, floaty, floatz, intnthClosest, Vector3outPosition, floatoutHeading, Anyp6, floatp7, floatp8)
end

function natives.GET_NTH_CLOSEST_VEHICLE_NODE_FAVOUR_DIRECTION(floatx, floaty, floatz, floatdesiredX, floatdesiredY, floatdesiredZ, intnthClosest, Vector3outPosition, floatoutHeading, intnodetype, floatp10, Anyp11)
    return native.call(0x45905BE8654AE067, floatx, floaty, floatz, floatdesiredX, floatdesiredY, floatdesiredZ, intnthClosest, Vector3outPosition, floatoutHeading, intnodetype, floatp10, Anyp11)
end

function natives.GET_VEHICLE_NODE_PROPERTIES(floatx, floaty, floatz, intdensity, intflags)
    return native.call(0x0568566ACBB5DEDC, floatx, floaty, floatz, intdensity, intflags)
end

function natives.IS_VEHICLE_NODE_ID_VALID(intvehicleNodeId)
    return native.call(0x1EAF30FCFBF5AF74, intvehicleNodeId)
end

function natives.GET_VEHICLE_NODE_POSITION(intnodeId, Vector3outPosition)
    return native.call(0x703123E5E7D429C2, intnodeId, Vector3outPosition)
end

function natives.GET_VEHICLE_NODE_IS_GPS_ALLOWED(intnodeID)
    return native.call(0xA2AE5C478B96E3B6, intnodeID)
end

function natives.GET_VEHICLE_NODE_IS_SWITCHED_OFF(intnodeID)
    return native.call(0x4F5070AA58F69279, intnodeID)
end

function natives.GET_CLOSEST_ROAD(floatx, floaty, floatz, floatp3, intp4, Vector3p5, Vector3p6, Anyp7, Anyp8, floatp9, BOOLp10)
    return native.call(0x132F52BBA570FE92, floatx, floaty, floatz, floatp3, intp4, Vector3p5, Vector3p6, Anyp7, Anyp8, floatp9, BOOLp10)
end

function natives.SET_ALL_PATHS_CACHE_BOUNDINGSTRUCT(BOOLtoggle)
    return native.call(0x228E5C6AD4D74BFD, BOOLtoggle)
end

function natives.SET_AI_GLOBAL_PATH_NODES_TYPE(inttype)
    return native.call(0xF74B1FFA4A15FBEA, inttype)
end

function natives.ARE_NODES_LOADED_FOR_AREA(floatx1, floaty1, floatx2, floaty2)
    return native.call(0xF7B79A50B905A30D, floatx1, floaty1, floatx2, floaty2)
end

function natives.REQUEST_PATHS_PREFER_ACCURATE_BOUNDINGSTRUCT(floatx1, floaty1, floatx2, floaty2)
    return native.call(0x07FB139B592FA687, floatx1, floaty1, floatx2, floaty2)
end

function natives.SET_ROADS_BACK_TO_ORIGINAL(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
    return native.call(0x1EE7063B80FFC77C, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
end

function natives.SET_ROADS_BACK_TO_ORIGINAL_IN_ANGLED_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, Anyp7)
    return native.call(0x0027501B9F3B407E, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatwidth, Anyp7)
end

function natives.SET_AMBIENT_PED_RANGE_MULTIPLIER_THIS_FRAME(floatmultiplier)
    return native.call(0x0B919E1FB47CC4E0, floatmultiplier)
end

function natives._0xAA76052DDA9BFC3E(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0xAA76052DDA9BFC3E, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.SET_PED_PATHS_BACK_TO_ORIGINAL(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Anyp6)
    return native.call(0xE04B48F2CC926253, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Anyp6)
end

function natives.GET_RANDOM_VEHICLE_NODE(floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, BOOLp6, Vector3outPosition, intnodeId)
    return native.call(0x93E0DB8440B73A7D, floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, BOOLp6, Vector3outPosition, intnodeId)
end

function natives.GET_STREET_NAME_AT_COORD(floatx, floaty, floatz, HashstreetName, HashcrossingRoad)
    return native.call(0x2EB41072B4C1E4C0, floatx, floaty, floatz, HashstreetName, HashcrossingRoad)
end

function natives.GENERATE_DIRECTIONS_TO_COORD(floatx, floaty, floatz, BOOLp3, intdirection, floatp5, floatdistToNxJunction)
    return native.call(0xF90125F1F79ECDF8, floatx, floaty, floatz, BOOLp3, intdirection, floatp5, floatdistToNxJunction)
end

function natives.SET_IGNORE_NO_GPS_FLAG(BOOLtoggle)
    return native.call(0x72751156E7678833, BOOLtoggle)
end

function natives.SET_IGNORE_SECONDARY_ROUTE_NODES(BOOLtoggle)
    return native.call(0x1FC289A0C3FF470F, BOOLtoggle)
end

function natives.SET_GPS_DISABLED_ZONE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz3)
    return native.call(0xDC20483CD3DD5201, floatx1, floaty1, floatz1, floatx2, floaty2, floatz3)
end

function natives.GET_GPS_BLIP_ROUTE_LENGTH()
    return native.call(0xBBB45C3CF5C8AA85)
end

function natives.GET_GPS_WAYPOINT_ROUTE_END(Vector3result, BOOLp1, floatp2, intp3)
    return native.call(0xF3162836C28F9DA5, Vector3result, BOOLp1, floatp2, intp3)
end

function natives.GET_GPS_BLIP_ROUTE_FOUND()
    return native.call(0x869DAACBBE9FA006)
end

function natives.GET_ROAD_BOUNDARY_USING_HEADING(floatx, floaty, floatz, floatheading, Vector3outPosition)
    return native.call(0xA0F8A7517A273C05, floatx, floaty, floatz, floatheading, Vector3outPosition)
end

function natives.GET_POINT_ON_ROAD_SIDE(floatx, floaty, floatz, intp3, Vector3outPosition)
    return native.call(0x16F46FB18C8009E4, floatx, floaty, floatz, intp3, Vector3outPosition)
end

function natives.IS_POINT_ON_ROAD(floatx, floaty, floatz, Vehiclevehicle)
    return native.call(0x125BF4ABFC536B09, floatx, floaty, floatz, Vehiclevehicle)
end

function natives.GET_NEXT_GPS_DISABLED_ZONE_INDEX()
    return native.call(0xD3A6A0EF48823A8C)
end

function natives.SET_GPS_DISABLED_ZONE_AT_INDEX(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intindex)
    return native.call(0xD0BC1C6FB18EE154, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intindex)
end

function natives.CLEAR_GPS_DISABLED_ZONE_AT_INDEX(intindex)
    return native.call(0x2801D0012266DF07, intindex)
end

function natives.ADD_NAVMESH_REQUIRED_REGION(floatx, floaty, floatradius)
    return native.call(0x387EAD7EE42F6685, floatx, floaty, floatradius)
end

function natives.REMOVE_NAVMESH_REQUIRED_REGIONS()
    return native.call(0x916F0A3CDEC3445E)
end

function natives.IS_NAVMESH_REQUIRED_REGION_OWNED_BY_ANY_THREAD()
    return native.call(0x705A844002B39DC0)
end

function natives.DISABLE_NAVMESH_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLtoggle)
    return native.call(0x4C8872D8CDBE1B8B, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLtoggle)
end

function natives.ARE_ALL_NAVMESH_REGIONS_LOADED()
    return native.call(0x8415D95B194A3AEA)
end

function natives.IS_NAVMESH_LOADED_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0xF813C7E63F9062A5, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.GET_NUM_NAVMESHES_EXISTING_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0x01708E8DD3FF8C65, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.ADD_NAVMESH_BLOCKING_OBJECT(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, BOOLp7, Anyp8)
    return native.call(0xFCD5C8E06E502F5A, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, BOOLp7, Anyp8)
end

function natives.UPDATE_NAVMESH_BLOCKING_OBJECT(Anyp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, Anyp8)
    return native.call(0x109E99373F290687, Anyp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, Anyp8)
end

function natives.REMOVE_NAVMESH_BLOCKING_OBJECT(Anyp0)
    return native.call(0x46399A7895957C0E, Anyp0)
end

function natives.DOES_NAVMESH_BLOCKING_OBJECT_EXIST(Anyp0)
    return native.call(0x0EAEB0DB4B132399, Anyp0)
end

function natives.GET_APPROX_HEIGHT_FOR_POINT(floatx, floaty)
    return native.call(0x29C24BFBED8AB8FB, floatx, floaty)
end

function natives.GET_APPROX_HEIGHT_FOR_AREA(floatx1, floaty1, floatx2, floaty2)
    return native.call(0x8ABE8608576D9CE3, floatx1, floaty1, floatx2, floaty2)
end

function natives.GET_APPROX_FLOOR_FOR_POINT(floatx, floaty)
    return native.call(0x336511A34F2E5185, floatx, floaty)
end

function natives.GET_APPROX_FLOOR_FOR_AREA(floatx1, floaty1, floatx2, floaty2)
    return native.call(0x3599D741C9AC6310, floatx1, floaty1, floatx2, floaty2)
end

function natives.CALCULATE_TRAVEL_DISTANCE_BETWEEN_POINTS(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0xADD95C7005C4A197, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.CREATE_PED(intpedType, HashmodelHash, floatx, floaty, floatz, floatheading, BOOLisNetwork, BOOLbScriptHostPed)
    return native.call(0xD49F9B0955C367DE, intpedType, HashmodelHash, floatx, floaty, floatz, floatheading, BOOLisNetwork, BOOLbScriptHostPed)
end

function natives.DELETE_PED(Pedped)
    return native.call(0x9614299DCB53E54B, Pedped)
end

function natives.CLONE_PED(Pedped, BOOLisNetwork, BOOLbScriptHostPed, BOOLcopyHeadBlendFlag)
    return native.call(0xEF29A16337FACADB, Pedped, BOOLisNetwork, BOOLbScriptHostPed, BOOLcopyHeadBlendFlag)
end

function natives.CLONE_PED_EX(Pedped, BOOLisNetwork, BOOLbScriptHostPed, BOOLcopyHeadBlendFlag, BOOLp4)
    return native.call(0x668FD40BCBA5DE48, Pedped, BOOLisNetwork, BOOLbScriptHostPed, BOOLcopyHeadBlendFlag, BOOLp4)
end

function natives.CLONE_PED_TO_TARGET(Pedped, PedtargetPed)
    return native.call(0xE952D6431689AD9A, Pedped, PedtargetPed)
end

function natives.CLONE_PED_TO_TARGET_EX(Pedped, PedtargetPed, BOOLp2)
    return native.call(0x148B08C2D2ACB884, Pedped, PedtargetPed, BOOLp2)
end

function natives.IS_PED_IN_VEHICLE(Pedped, Vehiclevehicle, BOOLatGetIn)
    return native.call(0xA3EE4A07279BB9DB, Pedped, Vehiclevehicle, BOOLatGetIn)
end

function natives.IS_PED_IN_MODEL(Pedped, HashmodelHash)
    return native.call(0x796D90EFB19AA332, Pedped, HashmodelHash)
end

function natives.IS_PED_IN_ANY_VEHICLE(Pedped, BOOLatGetIn)
    return native.call(0x997ABD671D25CA0B, Pedped, BOOLatGetIn)
end

function natives.IS_COP_PED_IN_AREA_3D(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0x16EC4839969F9F5E, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.IS_PED_INJURED(Pedped)
    return native.call(0x84A2DD9AC37C35C1, Pedped)
end

function natives.IS_PED_HURT(Pedped)
    return native.call(0x5983BB449D7FDB12, Pedped)
end

function natives.IS_PED_FATALLY_INJURED(Pedped)
    return native.call(0xD839450756ED5A80, Pedped)
end

function natives.IS_PED_DEAD_OR_DYING(Pedped, BOOLp1)
    return native.call(0x3317DEDB88C95038, Pedped, BOOLp1)
end

function natives.IS_CONVERSATION_PED_DEAD(Pedped)
    return native.call(0xE0A0AEC214B1FABA, Pedped)
end

function natives.IS_PED_AIMING_FROM_COVER(Pedped)
    return native.call(0x3998B1276A3300E5, Pedped)
end

function natives.IS_PED_RELOADING(Pedped)
    return native.call(0x24B100C68C645951, Pedped)
end

function natives.IS_PED_A_PLAYER(Pedped)
    return native.call(0x12534C348C6CB68B, Pedped)
end

function natives.CREATE_PED_INSIDE_VEHICLE(Vehiclevehicle, intpedType, HashmodelHash, intseat, BOOLisNetwork, BOOLbScriptHostPed)
    return native.call(0x7DD959874C1FD534, Vehiclevehicle, intpedType, HashmodelHash, intseat, BOOLisNetwork, BOOLbScriptHostPed)
end

function natives.SET_PED_DESIRED_HEADING(Pedped, floatheading)
    return native.call(0xAA5A7ECE2AA8FE70, Pedped, floatheading)
end

function natives.FREEZE_PED_CAMERA_ROTATION(Pedped)
    return native.call(0xFF287323B0E2C69A, Pedped)
end

function natives.IS_PED_FACING_PED(Pedped, PedotherPed, floatangle)
    return native.call(0xD71649DB0A545AA3, Pedped, PedotherPed, floatangle)
end

function natives.IS_PED_IN_MELEE_COMBAT(Pedped)
    return native.call(0x4E209B2C1EAD5159, Pedped)
end

function natives.IS_PED_STOPPED(Pedped)
    return native.call(0x530944F6F4B8A214, Pedped)
end

function natives.IS_PED_SHOOTING_IN_AREA(Pedped, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp7, BOOLp8)
    return native.call(0x7E9DFE24AC1E58EF, Pedped, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp7, BOOLp8)
end

function natives.IS_ANY_PED_SHOOTING_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp6, BOOLp7)
    return native.call(0xA0D3D71EA1086C55, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp6, BOOLp7)
end

function natives.IS_PED_SHOOTING(Pedped)
    return native.call(0x34616828CD07F1A1, Pedped)
end

function natives.SET_PED_ACCURACY(Pedped, intaccuracy)
    return native.call(0x7AEFB85C1D49DEB6, Pedped, intaccuracy)
end

function natives.GET_PED_ACCURACY(Pedped)
    return native.call(0x37F4AD56ECBC0CD6, Pedped)
end

function natives._0x87DDEB611B329A9C(floatmultiplier)
    return native.call(0x87DDEB611B329A9C, floatmultiplier)
end

function natives.IS_PED_MODEL(Pedped, HashmodelHash)
    return native.call(0xC9D55B1A358A5BF7, Pedped, HashmodelHash)
end

function natives.EXPLODE_PED_HEAD(Pedped, HashweaponHash)
    return native.call(0x2D05CED3A38D0F3A, Pedped, HashweaponHash)
end

function natives.REMOVE_PED_ELEGANTLY(Pedped)
    return native.call(0xAC6D445B994DF95E, Pedped)
end

function natives.ADD_ARMOUR_TO_PED(Pedped, intamount)
    return native.call(0x5BA652A0CD14DF2F, Pedped, intamount)
end

function natives.SET_PED_ARMOUR(Pedped, intamount)
    return native.call(0xCEA04D83135264CC, Pedped, intamount)
end

function natives.SET_PED_INTO_VEHICLE(Pedped, Vehiclevehicle, intseatIndex)
    return native.call(0xF75B0D629E1C063D, Pedped, Vehiclevehicle, intseatIndex)
end

function natives.SET_PED_ALLOW_VEHICLES_OVERRIDE(Pedped, BOOLtoggle)
    return native.call(0x3C028C636A414ED9, Pedped, BOOLtoggle)
end

function natives.CAN_CREATE_RANDOM_PED(BOOLunk)
    return native.call(0x3E8349C08E4B82E4, BOOLunk)
end

function natives.CREATE_RANDOM_PED(floatposX, floatposY, floatposZ)
    return native.call(0xB4AC7D0CF06BFE8F, floatposX, floatposY, floatposZ)
end

function natives.CREATE_RANDOM_PED_AS_DRIVER(Vehiclevehicle, BOOLreturnHandle)
    return native.call(0x9B62392B474F44A0, Vehiclevehicle, BOOLreturnHandle)
end

function natives.CAN_CREATE_RANDOM_DRIVER()
    return native.call(0xB8EB95E5B4E56978)
end

function natives.CAN_CREATE_RANDOM_BIKE_RIDER()
    return native.call(0xEACEEDA81751915C)
end

function natives.SET_PED_MOVE_ANIMS_BLEND_OUT(Pedped)
    return native.call(0x9E8C908F41584ECD, Pedped)
end

function natives.SET_PED_CAN_BE_DRAGGED_OUT(Pedped, BOOLtoggle)
    return native.call(0xC1670E958EEE24E5, Pedped, BOOLtoggle)
end

function natives._0xF2BEBCDFAFDAA19E(BOOLtoggle)
    return native.call(0xF2BEBCDFAFDAA19E, BOOLtoggle)
end

function natives.IS_PED_MALE(Pedped)
    return native.call(0x6D9F5FAA7488BA46, Pedped)
end

function natives.IS_PED_HUMAN(Pedped)
    return native.call(0xB980061DA992779D, Pedped)
end

function natives.GET_VEHICLE_PED_IS_IN(Pedped, BOOLincludeLastVehicle)
    return native.call(0x9A9112A0FE9A4713, Pedped, BOOLincludeLastVehicle)
end

function natives.RESET_PED_LAST_VEHICLE(Pedped)
    return native.call(0xBB8DE8CF6A8DD8BB, Pedped)
end

function natives.SET_PED_DENSITY_MULTIPLIER_THIS_FRAME(floatmultiplier)
    return native.call(0x95E3D6257B166CF2, floatmultiplier)
end

function natives.SET_SCENARIO_PED_DENSITY_MULTIPLIER_THIS_FRAME(floatp0, floatp1)
    return native.call(0x7A556143A1C03898, floatp0, floatp1)
end

function natives._0x5A7F62FDA59759BD()
    return native.call(0x5A7F62FDA59759BD)
end

function natives.SET_SCRIPTED_CONVERSION_COORD_THIS_FRAME(floatx, floaty, floatz)
    return native.call(0x5086C7843552CF85, floatx, floaty, floatz)
end

function natives.SET_PED_NON_CREATION_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0xEE01041D559983EA, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.CLEAR_PED_NON_CREATION_AREA()
    return native.call(0x2E05208086BA0651)
end

function natives.INSTANTLY_FILL_PED_POPULATION()
    return native.call(0x4759CC730F947C81)
end

function natives.IS_PED_ON_MOUNT(Pedped)
    return native.call(0x460BC76A0E10655E, Pedped)
end

function natives.GET_MOUNT(Pedped)
    return native.call(0xE7E11B8DCBED1058, Pedped)
end

function natives.IS_PED_ON_VEHICLE(Pedped)
    return native.call(0x67722AEB798E5FAB, Pedped)
end

function natives.IS_PED_ON_SPECIFIC_VEHICLE(Pedped, Vehiclevehicle)
    return native.call(0xEC5F66E459AF3BB2, Pedped, Vehiclevehicle)
end

function natives.SET_PED_MONEY(Pedped, intamount)
    return native.call(0xA9C8960E8684C1B5, Pedped, intamount)
end

function natives.GET_PED_MONEY(Pedped)
    return native.call(0x3F69145BBA87BAE7, Pedped)
end

function natives._0xFF4803BC019852D9(floatp0, Anyp1)
    return native.call(0xFF4803BC019852D9, floatp0, Anyp1)
end

function natives.SET_AMBIENT_PEDS_DROP_MONEY(BOOLp0)
    return native.call(0x6B0E6172C9A4D902, BOOLp0)
end

function natives._0x9911F4A24485F653(BOOLp0)
    return native.call(0x9911F4A24485F653, BOOLp0)
end

function natives.SET_PED_SUFFERS_CRITICAL_HITS(Pedped, BOOLtoggle)
    return native.call(0xEBD76F2359F190AC, Pedped, BOOLtoggle)
end

function natives._0xAFC976FD0580C7B3(Pedped, BOOLtoggle)
    return native.call(0xAFC976FD0580C7B3, Pedped, BOOLtoggle)
end

function natives.IS_PED_SITTING_IN_VEHICLE(Pedped, Vehiclevehicle)
    return native.call(0xA808AA1D79230FC2, Pedped, Vehiclevehicle)
end

function natives.IS_PED_SITTING_IN_ANY_VEHICLE(Pedped)
    return native.call(0x826AA586EDB9FEF8, Pedped)
end

function natives.IS_PED_ON_FOOT(Pedped)
    return native.call(0x01FEE67DB37F59B2, Pedped)
end

function natives.IS_PED_ON_ANY_BIKE(Pedped)
    return native.call(0x94495889E22C6479, Pedped)
end

function natives.IS_PED_PLANTING_BOMB(Pedped)
    return native.call(0xC70B5FAE151982D8, Pedped)
end

function natives.GET_DEAD_PED_PICKUP_COORDS(Pedped, floatp1, floatp2)
    return native.call(0xCD5003B097200F36, Pedped, floatp1, floatp2)
end

function natives.IS_PED_IN_ANY_BOAT(Pedped)
    return native.call(0x2E0E1C2B4F6CB339, Pedped)
end

function natives.IS_PED_IN_ANY_SUB(Pedped)
    return native.call(0xFBFC01CCFB35D99E, Pedped)
end

function natives.IS_PED_IN_ANY_HELI(Pedped)
    return native.call(0x298B91AE825E5705, Pedped)
end

function natives.IS_PED_IN_ANY_PLANE(Pedped)
    return native.call(0x5FFF4CFC74D8FB80, Pedped)
end

function natives.IS_PED_IN_FLYING_VEHICLE(Pedped)
    return native.call(0x9134873537FA419C, Pedped)
end

function natives.SET_PED_DIES_IN_WATER(Pedped, BOOLtoggle)
    return native.call(0x56CEF0AC79073BDE, Pedped, BOOLtoggle)
end

function natives.SET_PED_DIES_IN_SINKING_VEHICLE(Pedped, BOOLtoggle)
    return native.call(0xD718A22995E2B4BC, Pedped, BOOLtoggle)
end

function natives.GET_PED_ARMOUR(Pedped)
    return native.call(0x9483AF821605B1D8, Pedped)
end

function natives.SET_PED_STAY_IN_VEHICLE_WHEN_JACKED(Pedped, BOOLtoggle)
    return native.call(0xEDF4079F9D54C9A1, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_BE_SHOT_IN_VEHICLE(Pedped, BOOLtoggle)
    return native.call(0xC7EF1BA83230BA07, Pedped, BOOLtoggle)
end

function natives.GET_PED_LAST_DAMAGE_BONE(Pedped, intoutBone)
    return native.call(0xD75960F6BD9EA49C, Pedped, intoutBone)
end

function natives.CLEAR_PED_LAST_DAMAGE_BONE(Pedped)
    return native.call(0x8EF6B7AC68E2F01B, Pedped)
end

function natives.SET_AI_WEAPON_DAMAGE_MODIFIER(floatvalue)
    return native.call(0x1B1E2A40A65B8521, floatvalue)
end

function natives.RESET_AI_WEAPON_DAMAGE_MODIFIER()
    return native.call(0xEA16670E7BA4743C)
end

function natives.SET_AI_MELEE_WEAPON_DAMAGE_MODIFIER(floatmodifier)
    return native.call(0x66460DEDDD417254, floatmodifier)
end

function natives.RESET_AI_MELEE_WEAPON_DAMAGE_MODIFIER()
    return native.call(0x46E56A7CD1D63C3F)
end

function natives._0x2F3C3D9F50681DE4(Anyp0, BOOLp1)
    return native.call(0x2F3C3D9F50681DE4, Anyp0, BOOLp1)
end

function natives.SET_PED_CAN_BE_TARGETTED(Pedped, BOOLtoggle)
    return native.call(0x63F58F7C80513AAD, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_BE_TARGETTED_BY_TEAM(Pedped, intteam, BOOLtoggle)
    return native.call(0xBF1CA77833E58F2C, Pedped, intteam, BOOLtoggle)
end

function natives.SET_PED_CAN_BE_TARGETTED_BY_PLAYER(Pedped, Playerplayer, BOOLtoggle)
    return native.call(0x66B57B72E0836A76, Pedped, Playerplayer, BOOLtoggle)
end

function natives._0x061CB768363D6424(Pedped, BOOLtoggle)
    return native.call(0x061CB768363D6424, Pedped, BOOLtoggle)
end

function natives._0xFD325494792302D7(Pedped, BOOLtoggle)
    return native.call(0xFD325494792302D7, Pedped, BOOLtoggle)
end

function natives.IS_PED_IN_ANY_POLICE_VEHICLE(Pedped)
    return native.call(0x0BD04E29640C9C12, Pedped)
end

function natives.FORCE_PED_TO_OPEN_PARACHUTE(Pedped)
    return native.call(0x16E42E800B472221, Pedped)
end

function natives.IS_PED_IN_PARACHUTE_FREE_FALL(Pedped)
    return native.call(0x7DCE8BDA0F1C1200, Pedped)
end

function natives.IS_PED_FALLING(Pedped)
    return native.call(0xFB92A102F1C4DFA3, Pedped)
end

function natives.IS_PED_JUMPING(Pedped)
    return native.call(0xCEDABC5900A0BF97, Pedped)
end

function natives._0x412F1364FA066CFB(Anyp0)
    return native.call(0x412F1364FA066CFB, Anyp0)
end

function natives._0x451D05012CCEC234(Anyp0)
    return native.call(0x451D05012CCEC234, Anyp0)
end

function natives.IS_PED_CLIMBING(Pedped)
    return native.call(0x53E8CB4F48BFE623, Pedped)
end

function natives.IS_PED_VAULTING(Pedped)
    return native.call(0x117C70D1F5730B5E, Pedped)
end

function natives.IS_PED_DIVING(Pedped)
    return native.call(0x5527B8246FEF9B11, Pedped)
end

function natives.IS_PED_JUMPING_OUT_OF_VEHICLE(Pedped)
    return native.call(0x433DDFFE2044B636, Pedped)
end

function natives.IS_PED_OPENING_A_DOOR(Pedped)
    return native.call(0x26AF0E8E30BD2A2C, Pedped)
end

function natives.GET_PED_PARACHUTE_STATE(Pedped)
    return native.call(0x79CFD9827CC979B6, Pedped)
end

function natives.GET_PED_PARACHUTE_LANDING_TYPE(Pedped)
    return native.call(0x8B9F1FC6AE8166C0, Pedped)
end

function natives.SET_PED_PARACHUTE_TINT_INDEX(Pedped, inttintIndex)
    return native.call(0x333FC8DB079B7186, Pedped, inttintIndex)
end

function natives.GET_PED_PARACHUTE_TINT_INDEX(Pedped, intoutTintIndex)
    return native.call(0xEAF5F7E5AE7C6C9D, Pedped, intoutTintIndex)
end

function natives.SET_PED_RESERVE_PARACHUTE_TINT_INDEX(Pedped, Anyp1)
    return native.call(0xE88DA0751C22A2AD, Pedped, Anyp1)
end

function natives.CREATE_PARACHUTE_BAG_OBJECT(Pedped, BOOLp1, BOOLp2)
    return native.call(0x8C4F3BF23B6237DB, Pedped, BOOLp1, BOOLp2)
end

function natives.SET_PED_DUCKING(Pedped, BOOLtoggle)
    return native.call(0x030983CA930B692D, Pedped, BOOLtoggle)
end

function natives.IS_PED_DUCKING(Pedped)
    return native.call(0xD125AE748725C6BC, Pedped)
end

function natives.IS_PED_IN_ANY_TAXI(Pedped)
    return native.call(0x6E575D6A898AB852, Pedped)
end

function natives.SET_PED_ID_RANGE(Pedped, floatvalue)
    return native.call(0xF107E836A70DCE05, Pedped, floatvalue)
end

function natives.SET_PED_HIGHLY_PERCEPTIVE(Pedped, BOOLtoggle)
    return native.call(0x52D59AB61DDC05DD, Pedped, BOOLtoggle)
end

function natives.SET_PED_PERCEPTION_OVERRIDE_THIS_FRAME(floatseeingRange, floatseeingRangePeripheral, floathearingRange, floatvisualFieldMinAzimuthAngle, floatvisualFieldMaxAzimuthAngle, floatfieldOfGazeMaxAngle, floatp6)
    return native.call(0x2F074C904D85129E, floatseeingRange, floatseeingRangePeripheral, floathearingRange, floatvisualFieldMinAzimuthAngle, floatvisualFieldMaxAzimuthAngle, floatfieldOfGazeMaxAngle, floatp6)
end

function natives.SET_PED_INJURED_ON_GROUND_BEHAVIOUR(Pedped, floatunk)
    return native.call(0xEC4B4B3B9908052A, Pedped, floatunk)
end

function natives.DISABLE_PED_INJURED_ON_GROUND_BEHAVIOUR(Pedped)
    return native.call(0x733C87D4CE22BEA2, Pedped)
end

function natives.SET_PED_SEEING_RANGE(Pedped, floatvalue)
    return native.call(0xF29CF591C4BF6CEE, Pedped, floatvalue)
end

function natives.SET_PED_HEARING_RANGE(Pedped, floatvalue)
    return native.call(0x33A8F7F7D5F7F33C, Pedped, floatvalue)
end

function natives.SET_PED_VISUAL_FIELD_MIN_ANGLE(Pedped, floatvalue)
    return native.call(0x2DB492222FB21E26, Pedped, floatvalue)
end

function natives.SET_PED_VISUAL_FIELD_MAX_ANGLE(Pedped, floatvalue)
    return native.call(0x70793BDCA1E854D4, Pedped, floatvalue)
end

function natives.SET_PED_VISUAL_FIELD_MIN_ELEVATION_ANGLE(Pedped, floatangle)
    return native.call(0x7A276EB2C224D70F, Pedped, floatangle)
end

function natives.SET_PED_VISUAL_FIELD_MAX_ELEVATION_ANGLE(Pedped, floatangle)
    return native.call(0x78D0B67629D75856, Pedped, floatangle)
end

function natives.SET_PED_VISUAL_FIELD_PERIPHERAL_RANGE(Pedped, floatrange)
    return native.call(0x9C74B0BC831B753A, Pedped, floatrange)
end

function natives.SET_PED_VISUAL_FIELD_CENTER_ANGLE(Pedped, floatangle)
    return native.call(0x3B6405E8AB34A907, Pedped, floatangle)
end

function natives.GET_PED_VISUAL_FIELD_CENTER_ANGLE(Pedped)
    return native.call(0xEF2C71A32CAD5FBD, Pedped)
end

function natives.SET_PED_STEALTH_MOVEMENT(Pedped, BOOLp1, constcharaction)
    return native.call(0x88CBB5CEB96B7BD2, Pedped, BOOLp1, constcharaction)
end

function natives.GET_PED_STEALTH_MOVEMENT(Pedped)
    return native.call(0x7C2AC9CA66575FBF, Pedped)
end

function natives.CREATE_GROUP(intunused)
    return native.call(0x90370EBE0FEE1A3D, intunused)
end

function natives.SET_PED_AS_GROUP_LEADER(Pedped, intgroupId)
    return native.call(0x2A7819605465FBCE, Pedped, intgroupId)
end

function natives.SET_PED_AS_GROUP_MEMBER(Pedped, intgroupId)
    return native.call(0x9F3480FE65DB31B5, Pedped, intgroupId)
end

function natives.SET_PED_CAN_TELEPORT_TO_GROUP_LEADER(PedpedHandle, intgroupHandle, BOOLtoggle)
    return native.call(0x2E2F4240B3F24647, PedpedHandle, intgroupHandle, BOOLtoggle)
end

function natives.REMOVE_GROUP(intgroupId)
    return native.call(0x8EB2F69076AF7053, intgroupId)
end

function natives.REMOVE_PED_FROM_GROUP(Pedped)
    return native.call(0xED74007FFB146BC2, Pedped)
end

function natives.IS_PED_GROUP_MEMBER(Pedped, intgroupId)
    return native.call(0x9BB01E3834671191, Pedped, intgroupId)
end

function natives.IS_PED_HANGING_ON_TO_VEHICLE(Pedped)
    return native.call(0x1C86D8AEF8254B78, Pedped)
end

function natives.SET_GROUP_SEPARATION_RANGE(intgroupHandle, floatseparationRange)
    return native.call(0x4102C7858CFEE4E4, intgroupHandle, floatseparationRange)
end

function natives.SET_PED_MIN_GROUND_TIME_FOR_STUNGUN(Pedped, intms)
    return native.call(0xFA0675AB151073FA, Pedped, intms)
end

function natives.IS_PED_PRONE(Pedped)
    return native.call(0xD6A86331A537A7B9, Pedped)
end

function natives.IS_PED_IN_COMBAT(Pedped, Pedtarget)
    return native.call(0x4859F1FC66A6278E, Pedped, Pedtarget)
end

function natives.GET_PED_TASK_COMBAT_TARGET(Pedped, Anyp1)
    return native.call(0x32C27A11307B01CC, Pedped, Anyp1)
end

function natives.CAN_PED_IN_COMBAT_SEE_TARGET(Pedped, Pedtarget)
    return native.call(0xEAD42DE3610D0721, Pedped, Pedtarget)
end

function natives.IS_PED_DOING_DRIVEBY(Pedped)
    return native.call(0xB2C086CC1BF8F2BF, Pedped)
end

function natives.IS_PED_JACKING(Pedped)
    return native.call(0x4AE4FF911DFB61DA, Pedped)
end

function natives.IS_PED_BEING_JACKED(Pedped)
    return native.call(0x9A497FE2DF198913, Pedped)
end

function natives.IS_PED_BEING_STUNNED(Pedped, intp1)
    return native.call(0x4FBACCE3B4138EE8, Pedped, intp1)
end

function natives.GET_PEDS_JACKER(Pedped)
    return native.call(0x9B128DC36C1E04CF, Pedped)
end

function natives.GET_JACK_TARGET(Pedped)
    return native.call(0x5486A79D9FBD342D, Pedped)
end

function natives.IS_PED_FLEEING(Pedped)
    return native.call(0xBBCCE00B381F8482, Pedped)
end

function natives.IS_PED_IN_COVER(Pedped, BOOLexceptUseWeapon)
    return native.call(0x60DFD0691A170B88, Pedped, BOOLexceptUseWeapon)
end

function natives.IS_PED_IN_COVER_FACING_LEFT(Pedped)
    return native.call(0x845333B3150583AB, Pedped)
end

function natives.IS_PED_IN_HIGH_COVER(Pedped)
    return native.call(0x6A03BF943D767C93, Pedped)
end

function natives.IS_PED_GOING_INTO_COVER(Pedped)
    return native.call(0x9F65DBC537E59AD5, Pedped)
end

function natives.SET_PED_PINNED_DOWN(Pedped, BOOLpinned, inti)
    return native.call(0xAAD6D1ACF08F4612, Pedped, BOOLpinned, inti)
end

function natives.GET_SEAT_PED_IS_TRYING_TO_ENTER(Pedped)
    return native.call(0x6F4C85ACD641BCD2, Pedped)
end

function natives.GET_VEHICLE_PED_IS_TRYING_TO_ENTER(Pedped)
    return native.call(0x814FA8BE5449445D, Pedped)
end

function natives.GET_PED_SOURCE_OF_DEATH(Pedped)
    return native.call(0x93C8B64DEB84728C, Pedped)
end

function natives.GET_PED_CAUSE_OF_DEATH(Pedped)
    return native.call(0x16FFE42AB2D2DC59, Pedped)
end

function natives.GET_PED_TIME_OF_DEATH(Pedped)
    return native.call(0x1E98817B311AE98A, Pedped)
end

function natives.COUNT_PEDS_IN_COMBAT_WITH_TARGET(Pedped)
    return native.call(0x5407B7288D0478B7, Pedped)
end

function natives.COUNT_PEDS_IN_COMBAT_WITH_TARGET_WITHIN_RADIUS(Pedped, floatx, floaty, floatz, floatradius)
    return native.call(0x336B3D200AB007CB, Pedped, floatx, floaty, floatz, floatradius)
end

function natives.SET_PED_RELATIONSHIP_GROUP_DEFAULT_HASH(Pedped, Hashhash)
    return native.call(0xADB3F206518799E8, Pedped, Hashhash)
end

function natives.SET_PED_RELATIONSHIP_GROUP_HASH(Pedped, Hashhash)
    return native.call(0xC80A74AC829DDD92, Pedped, Hashhash)
end

function natives.SET_RELATIONSHIP_BETWEEN_GROUPS(intrelationship, Hashgroup1, Hashgroup2)
    return native.call(0xBF25EB89375A37AD, intrelationship, Hashgroup1, Hashgroup2)
end

function natives.CLEAR_RELATIONSHIP_BETWEEN_GROUPS(intrelationship, Hashgroup1, Hashgroup2)
    return native.call(0x5E29243FB56FC6D4, intrelationship, Hashgroup1, Hashgroup2)
end

function natives.ADD_RELATIONSHIP_GROUP(constcharname, HashgroupHash)
    return native.call(0xF372BC22FCB88606, constcharname, HashgroupHash)
end

function natives.REMOVE_RELATIONSHIP_GROUP(HashgroupHash)
    return native.call(0xB6BA2444AB393DA2, HashgroupHash)
end

function natives.DOES_RELATIONSHIP_GROUP_EXIST(HashgroupHash)
    return native.call(0xCC6E3B6BB69501F1, HashgroupHash)
end

function natives.GET_RELATIONSHIP_BETWEEN_PEDS(Pedped1, Pedped2)
    return native.call(0xEBA5AD3A0EAF7121, Pedped1, Pedped2)
end

function natives.GET_PED_RELATIONSHIP_GROUP_DEFAULT_HASH(Pedped)
    return native.call(0x42FDD0F017B1E38E, Pedped)
end

function natives.GET_PED_RELATIONSHIP_GROUP_HASH(Pedped)
    return native.call(0x7DBDD04862D95F04, Pedped)
end

function natives.GET_RELATIONSHIP_BETWEEN_GROUPS(Hashgroup1, Hashgroup2)
    return native.call(0x9E6B70061662AE5C, Hashgroup1, Hashgroup2)
end

function natives.SET_RELATIONSHIP_GROUP_DONT_AFFECT_WANTED_LEVEL(Hashgroup, BOOLp1)
    return native.call(0x5615E0C5EB2BC6E2, Hashgroup, BOOLp1)
end

function natives._0xAD27D957598E49E9(Pedped, Anyp1, floatp2, Hashhash, Anyp4, Anyp5)
    return native.call(0xAD27D957598E49E9, Pedped, Anyp1, floatp2, Hashhash, Anyp4, Anyp5)
end

function natives.SET_PED_CAN_BE_TARGETED_WITHOUT_LOS(Pedped, BOOLtoggle)
    return native.call(0x4328652AE5769C71, Pedped, BOOLtoggle)
end

function natives.SET_PED_TO_INFORM_RESPECTED_FRIENDS(Pedped, floatradius, intmaxFriends)
    return native.call(0x112942C6E708F70B, Pedped, floatradius, intmaxFriends)
end

function natives.IS_PED_RESPONDING_TO_EVENT(Pedped, Anyevent)
    return native.call(0x625B774D75C87068, Pedped, Anyevent)
end

function natives.GET_PED_EVENT_DATA(Pedped, inteventType, AnyoutData)
    return native.call(0xBA656A3BB01BDEA3, Pedped, inteventType, AnyoutData)
end

function natives.SET_PED_FIRING_PATTERN(Pedped, HashpatternHash)
    return native.call(0x9AC577F5A12AD8A9, Pedped, HashpatternHash)
end

function natives.SET_PED_SHOOT_RATE(Pedped, intshootRate)
    return native.call(0x614DA022990752DC, Pedped, intshootRate)
end

function natives.SET_COMBAT_FLOAT(Pedped, intcombatType, floatp2)
    return native.call(0xFF41B4B141ED981C, Pedped, intcombatType, floatp2)
end

function natives.GET_COMBAT_FLOAT(Pedped, intp1)
    return native.call(0x52DFF8A10508090A, Pedped, intp1)
end

function natives.GET_GROUP_SIZE(intgroupID, Anyunknown, intsizeInMembers)
    return native.call(0x8DE69FE35CA09A45, intgroupID, Anyunknown, intsizeInMembers)
end

function natives.DOES_GROUP_EXIST(intgroupId)
    return native.call(0x7C6B0C22F9F40BBE, intgroupId)
end

function natives.GET_PED_GROUP_INDEX(Pedped)
    return native.call(0xF162E133B4E7A675, Pedped)
end

function natives.IS_PED_IN_GROUP(Pedped)
    return native.call(0x5891CAC5D4ACFF74, Pedped)
end

function natives.GET_PLAYER_PED_IS_FOLLOWING(Pedped)
    return native.call(0x6A3975DEA89F9A17, Pedped)
end

function natives.SET_GROUP_FORMATION(intgroupId, intformationType)
    return native.call(0xCE2F5FC3AF7E8C1E, intgroupId, intformationType)
end

function natives.SET_GROUP_FORMATION_SPACING(intgroupId, floatx, floaty, floatz)
    return native.call(0x1D9D45004C28C916, intgroupId, floatx, floaty, floatz)
end

function natives.RESET_GROUP_FORMATION_DEFAULT_SPACING(intgroupHandle)
    return native.call(0x63DAB4CCB3273205, intgroupHandle)
end

function natives.GET_VEHICLE_PED_IS_USING(Pedped)
    return native.call(0x6094AD011A2EA87D, Pedped)
end

function natives.GET_VEHICLE_PED_IS_ENTERING(Pedped)
    return native.call(0xF92691AED837A5FC, Pedped)
end

function natives.SET_PED_GRAVITY(Pedped, BOOLtoggle)
    return native.call(0x9FF447B6B6AD960A, Pedped, BOOLtoggle)
end

function natives.APPLY_DAMAGE_TO_PED(Pedped, intdamageAmount, BOOLp2, Anyp3)
    return native.call(0x697157CED63F18D4, Pedped, intdamageAmount, BOOLp2, Anyp3)
end

function natives.GET_TIME_OF_LAST_PED_WEAPON_DAMAGE(Pedped, HashweaponHash)
    return native.call(0x36B77BB84687C318, Pedped, HashweaponHash)
end

function natives.SET_PED_ALLOWED_TO_DUCK(Pedped, BOOLtoggle)
    return native.call(0xDA1F1B7BE1A8766F, Pedped, BOOLtoggle)
end

function natives.SET_PED_NEVER_LEAVES_GROUP(Pedped, BOOLtoggle)
    return native.call(0x3DBFC55D5C9BB447, Pedped, BOOLtoggle)
end

function natives.GET_PED_TYPE(Pedped)
    return native.call(0xFF059E1E4C01E63C, Pedped)
end

function natives.SET_PED_AS_COP(Pedped, BOOLtoggle)
    return native.call(0xBB03C38DD3FB7FFD, Pedped, BOOLtoggle)
end

function natives.SET_PED_MAX_HEALTH(Pedped, intvalue)
    return native.call(0xF5F6378C4F3419D3, Pedped, intvalue)
end

function natives.GET_PED_MAX_HEALTH(Pedped)
    return native.call(0x4700A416E8324EF3, Pedped)
end

function natives.SET_PED_MAX_TIME_IN_WATER(Pedped, floatvalue)
    return native.call(0x43C851690662113D, Pedped, floatvalue)
end

function natives.SET_PED_MAX_TIME_UNDERWATER(Pedped, floatvalue)
    return native.call(0x6BA428C528D9E522, Pedped, floatvalue)
end

function natives._0x2735233A786B1BEF(Pedped, floatp1)
    return native.call(0x2735233A786B1BEF, Pedped, floatp1)
end

function natives.SET_PED_VEHICLE_FORCED_SEAT_USAGE(Pedped, Vehiclevehicle, intseatIndex, intflags, Anyp4)
    return native.call(0x952F06BEECD775CC, Pedped, Vehiclevehicle, intseatIndex, intflags, Anyp4)
end

function natives.CLEAR_ALL_PED_VEHICLE_FORCED_SEAT_USAGE(Pedped)
    return native.call(0xE6CA85E7259CE16B, Pedped)
end

function natives._0xB282749D5E028163(Anyp0, Anyp1)
    return native.call(0xB282749D5E028163, Anyp0, Anyp1)
end

function natives.SET_PED_CAN_BE_KNOCKED_OFF_VEHICLE(Pedped, intstate)
    return native.call(0x7A6535691B477C48, Pedped, intstate)
end

function natives.CAN_KNOCK_PED_OFF_VEHICLE(Pedped)
    return native.call(0x51AC07A44D4F5B8A, Pedped)
end

function natives.KNOCK_PED_OFF_VEHICLE(Pedped)
    return native.call(0x45BBCBA77C29A841, Pedped)
end

function natives.SET_PED_COORDS_NO_GANG(Pedped, floatposX, floatposY, floatposZ)
    return native.call(0x87052FE446E07247, Pedped, floatposX, floatposY, floatposZ)
end

function natives.GET_PED_AS_GROUP_MEMBER(intgroupID, intmemberNumber)
    return native.call(0x51455483CF23ED97, intgroupID, intmemberNumber)
end

function natives.GET_PED_AS_GROUP_LEADER(intgroupID)
    return native.call(0x5CCE68DBD5FE93EC, intgroupID)
end

function natives.SET_PED_KEEP_TASK(Pedped, BOOLtoggle)
    return native.call(0x971D38760FBC02EF, Pedped, BOOLtoggle)
end

function natives._0x49E50BDB8BA4DAB2(Pedped, BOOLtoggle)
    return native.call(0x49E50BDB8BA4DAB2, Pedped, BOOLtoggle)
end

function natives.IS_PED_SWIMMING(Pedped)
    return native.call(0x9DE327631295B4C2, Pedped)
end

function natives.IS_PED_SWIMMING_UNDER_WATER(Pedped)
    return native.call(0xC024869A53992F34, Pedped)
end

function natives.SET_PED_COORDS_KEEP_VEHICLE(Pedped, floatposX, floatposY, floatposZ)
    return native.call(0x9AFEFF481A85AB2E, Pedped, floatposX, floatposY, floatposZ)
end

function natives.SET_PED_DIES_IN_VEHICLE(Pedped, BOOLtoggle)
    return native.call(0x2A30922C90C9B42C, Pedped, BOOLtoggle)
end

function natives.SET_CREATE_RANDOM_COPS(BOOLtoggle)
    return native.call(0x102E68B2024D536D, BOOLtoggle)
end

function natives.SET_CREATE_RANDOM_COPS_NOT_ON_SCENARIOS(BOOLtoggle)
    return native.call(0x8A4986851C4EF6E7, BOOLtoggle)
end

function natives.SET_CREATE_RANDOM_COPS_ON_SCENARIOS(BOOLtoggle)
    return native.call(0x444CB7D7DBE6973D, BOOLtoggle)
end

function natives.CAN_CREATE_RANDOM_COPS()
    return native.call(0x5EE2CAFF7F17770D)
end

function natives.SET_PED_AS_ENEMY(Pedped, BOOLtoggle)
    return native.call(0x02A0C9720B854BFA, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_SMASH_GLASS(Pedped, BOOLp1, BOOLp2)
    return native.call(0x1CCE141467FF42A2, Pedped, BOOLp1, BOOLp2)
end

function natives.IS_PED_IN_ANY_TRAIN(Pedped)
    return native.call(0x6F972C1AB75A1ED0, Pedped)
end

function natives.IS_PED_GETTING_INTO_A_VEHICLE(Pedped)
    return native.call(0xBB062B2B5722478E, Pedped)
end

function natives.IS_PED_TRYING_TO_ENTER_A_LOCKED_VEHICLE(Pedped)
    return native.call(0x44D28D5DDFE5F68C, Pedped)
end

function natives.SET_ENABLE_HANDCUFFS(Pedped, BOOLtoggle)
    return native.call(0xDF1AF8B5D56542FA, Pedped, BOOLtoggle)
end

function natives.SET_ENABLE_BOUND_ANKLES(Pedped, BOOLtoggle)
    return native.call(0xC52E0F855C58FC2E, Pedped, BOOLtoggle)
end

function natives.SET_ENABLE_SCUBA(Pedped, BOOLtoggle)
    return native.call(0xF99F62004024D506, Pedped, BOOLtoggle)
end

function natives.SET_CAN_ATTACK_FRIENDLY(Pedped, BOOLtoggle, BOOLp2)
    return native.call(0xB3B1CB349FF9C75D, Pedped, BOOLtoggle, BOOLp2)
end

function natives.GET_PED_ALERTNESS(Pedped)
    return native.call(0xF6AA118530443FD2, Pedped)
end

function natives.SET_PED_ALERTNESS(Pedped, intvalue)
    return native.call(0xDBA71115ED9941A6, Pedped, intvalue)
end

function natives.SET_PED_GET_OUT_UPSIDE_DOWN_VEHICLE(Pedped, BOOLtoggle)
    return native.call(0xBC0ED94165A48BC2, Pedped, BOOLtoggle)
end

function natives.SET_PED_MOVEMENT_CLIPSET(Pedped, constcharclipSet, floattransitionSpeed)
    return native.call(0xAF8A94EDE7712BEF, Pedped, constcharclipSet, floattransitionSpeed)
end

function natives.RESET_PED_MOVEMENT_CLIPSET(Pedped, floatp1)
    return native.call(0xAA74EC0CB0AAEA2C, Pedped, floatp1)
end

function natives.SET_PED_STRAFE_CLIPSET(Pedped, constcharclipSet)
    return native.call(0x29A28F3F8CF6D854, Pedped, constcharclipSet)
end

function natives.RESET_PED_STRAFE_CLIPSET(Pedped)
    return native.call(0x20510814175EA477, Pedped)
end

function natives.SET_PED_WEAPON_MOVEMENT_CLIPSET(Pedped, constcharclipSet)
    return native.call(0x2622E35B77D3ACA2, Pedped, constcharclipSet)
end

function natives.RESET_PED_WEAPON_MOVEMENT_CLIPSET(Pedped)
    return native.call(0x97B0DB5B4AA74E77, Pedped)
end

function natives.SET_PED_DRIVE_BY_CLIPSET_OVERRIDE(Pedped, constcharclipset)
    return native.call(0xED34AB6C5CB36520, Pedped, constcharclipset)
end

function natives.CLEAR_PED_DRIVE_BY_CLIPSET_OVERRIDE(Pedped)
    return native.call(0x4AFE3690D7E0B5AC, Pedped)
end

function natives.SET_PED_COVER_CLIPSET_OVERRIDE(Pedped, constcharp1)
    return native.call(0x9DBA107B4937F809, Pedped, constcharp1)
end

function natives.CLEAR_PED_COVER_CLIPSET_OVERRIDE(Pedped)
    return native.call(0xC79196DCB36F6121, Pedped)
end

function natives._0x80054D7FCC70EEC6(Pedped)
    return native.call(0x80054D7FCC70EEC6, Pedped)
end

function natives.SET_PED_IN_VEHICLE_CONTEXT(Pedped, Hashcontext)
    return native.call(0x530071295899A8C6, Pedped, Hashcontext)
end

function natives.RESET_PED_IN_VEHICLE_CONTEXT(Pedped)
    return native.call(0x22EF8FF8778030EB, Pedped)
end

function natives.IS_SCRIPTED_SCENARIO_PED_USING_CONDITIONAL_ANIM(Pedped, constcharanimDict, constcharanim)
    return native.call(0x6EC47A344923E1ED, Pedped, constcharanimDict, constcharanim)
end

function natives.SET_PED_ALTERNATE_WALK_ANIM(Pedped, constcharanimDict, constcharanimName, floatp3, BOOLp4)
    return native.call(0x6C60394CB4F75E9A, Pedped, constcharanimDict, constcharanimName, floatp3, BOOLp4)
end

function natives.CLEAR_PED_ALTERNATE_WALK_ANIM(Pedped, floatp1)
    return native.call(0x8844BBFCE30AA9E9, Pedped, floatp1)
end

function natives.SET_PED_ALTERNATE_MOVEMENT_ANIM(Pedped, intstance, constcharanimDictionary, constcharanimationName, floatp4, BOOLp5)
    return native.call(0x90A43CC281FFAB46, Pedped, intstance, constcharanimDictionary, constcharanimationName, floatp4, BOOLp5)
end

function natives.CLEAR_PED_ALTERNATE_MOVEMENT_ANIM(Pedped, intstance, floatp2)
    return native.call(0xD8D19675ED5FBDCE, Pedped, intstance, floatp2)
end

function natives.SET_PED_GESTURE_GROUP(Pedped, constcharanimGroupGesture)
    return native.call(0xDDF803377F94AAA8, Pedped, constcharanimGroupGesture)
end

function natives.GET_ANIM_INITIAL_OFFSET_POSITION(constcharanimDict, constcharanimName, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, floatp8, intp9)
    return native.call(0xBE22B26DD764C040, constcharanimDict, constcharanimName, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, floatp8, intp9)
end

function natives.GET_ANIM_INITIAL_OFFSET_ROTATION(constcharanimDict, constcharanimName, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, floatp8, intp9)
    return native.call(0x4B805E6046EE9E47, constcharanimDict, constcharanimName, floatx, floaty, floatz, floatxRot, floatyRot, floatzRot, floatp8, intp9)
end

function natives.GET_PED_DRAWABLE_VARIATION(Pedped, intcomponentId)
    return native.call(0x67F3780DD425D4FC, Pedped, intcomponentId)
end

function natives.GET_NUMBER_OF_PED_DRAWABLE_VARIATIONS(Pedped, intcomponentId)
    return native.call(0x27561561732A7842, Pedped, intcomponentId)
end

function natives.GET_PED_TEXTURE_VARIATION(Pedped, intcomponentId)
    return native.call(0x04A355E041E004E6, Pedped, intcomponentId)
end

function natives.GET_NUMBER_OF_PED_TEXTURE_VARIATIONS(Pedped, intcomponentId, intdrawableId)
    return native.call(0x8F7156A3142A6BAD, Pedped, intcomponentId, intdrawableId)
end

function natives.GET_NUMBER_OF_PED_PROP_DRAWABLE_VARIATIONS(Pedped, intpropId)
    return native.call(0x5FAF9754E789FB47, Pedped, intpropId)
end

function natives.GET_NUMBER_OF_PED_PROP_TEXTURE_VARIATIONS(Pedped, intpropId, intdrawableId)
    return native.call(0xA6E7F1CEB523E171, Pedped, intpropId, intdrawableId)
end

function natives.GET_PED_PALETTE_VARIATION(Pedped, intcomponentId)
    return native.call(0xE3DD5F2A84B42281, Pedped, intcomponentId)
end

function natives._0x9E30E91FB03A2CAF(Anyp0, Anyp1)
    return native.call(0x9E30E91FB03A2CAF, Anyp0, Anyp1)
end

function natives._0x1E77FA7A62EE6C4C(Anyp0)
    return native.call(0x1E77FA7A62EE6C4C, Anyp0)
end

function natives._0xF033419D1B81FAE8(Anyp0)
    return native.call(0xF033419D1B81FAE8, Anyp0)
end

function natives.IS_PED_COMPONENT_VARIATION_VALID(Pedped, intcomponentId, intdrawableId, inttextureId)
    return native.call(0xE825F6B6CEA7671D, Pedped, intcomponentId, intdrawableId, inttextureId)
end

function natives.SET_PED_COMPONENT_VARIATION(Pedped, intcomponentId, intdrawableId, inttextureId, intpaletteId)
    return native.call(0x262B14F48D29DE80, Pedped, intcomponentId, intdrawableId, inttextureId, intpaletteId)
end

function natives.SET_PED_RANDOM_COMPONENT_VARIATION(Pedped, intp1)
    return native.call(0xC8A9481A01E63C28, Pedped, intp1)
end

function natives.SET_PED_RANDOM_PROPS(Pedped)
    return native.call(0xC44AA05345C992C6, Pedped)
end

function natives.SET_PED_DEFAULT_COMPONENT_VARIATION(Pedped)
    return native.call(0x45EEE61580806D63, Pedped)
end

function natives.SET_PED_BLEND_FROM_PARENTS(Pedped, Anyp1, Anyp2, floatp3, floatp4)
    return native.call(0x137BBD05230DB22D, Pedped, Anyp1, Anyp2, floatp3, floatp4)
end

function natives.SET_PED_HEAD_BLEND_DATA(Pedped, intshapeFirstID, intshapeSecondID, intshapeThirdID, intskinFirstID, intskinSecondID, intskinThirdID, floatshapeMix, floatskinMix, floatthirdMix, BOOLisParent)
    return native.call(0x9414E18B9434C2FE, Pedped, intshapeFirstID, intshapeSecondID, intshapeThirdID, intskinFirstID, intskinSecondID, intskinThirdID, floatshapeMix, floatskinMix, floatthirdMix, BOOLisParent)
end

function natives.GET_PED_HEAD_BLEND_DATA(Pedped, AnyheadBlendData)
    return native.call(0x2746BD9D88C5C5D0, Pedped, AnyheadBlendData)
end

function natives.UPDATE_PED_HEAD_BLEND_DATA(Pedped, floatshapeMix, floatskinMix, floatthirdMix)
    return native.call(0x723538F61C647C5A, Pedped, floatshapeMix, floatskinMix, floatthirdMix)
end

function natives.SET_PED_EYE_COLOR(Pedped, intindex)
    return native.call(0x50B56988B170AFDF, Pedped, intindex)
end

function natives.GET_PED_EYE_COLOR(Pedped)
    return native.call(0x76BBA2CEE66D47E9, Pedped)
end

function natives.SET_PED_HEAD_OVERLAY(Pedped, intoverlayID, intindex, floatopacity)
    return native.call(0x48F44967FA05CC1E, Pedped, intoverlayID, intindex, floatopacity)
end

function natives.GET_PED_HEAD_OVERLAY_VALUE(Pedped, intoverlayID)
    return native.call(0xA60EF3B6461A4D43, Pedped, intoverlayID)
end

function natives.GET_PED_HEAD_OVERLAY_NUM(intoverlayID)
    return native.call(0xCF1CE768BB43480E, intoverlayID)
end

function natives.SET_PED_HEAD_OVERLAY_COLOR(Pedped, intoverlayID, intcolorType, intcolorID, intsecondColorID)
    return native.call(0x497BF74A7B9CB952, Pedped, intoverlayID, intcolorType, intcolorID, intsecondColorID)
end

function natives.SET_PED_HAIR_COLOR(Pedped, intcolorID, inthighlightColorID)
    return native.call(0x4CFFC65454C93A49, Pedped, intcolorID, inthighlightColorID)
end

function natives.GET_NUM_HAIR_COLORS()
    return native.call(0xE5C0CF872C2AD150)
end

function natives.GET_NUM_MAKEUP_COLORS()
    return native.call(0xD1F7CA1535D22818)
end

function natives.GET_PED_HAIR_RGB_COLOR(inthairColorIndex, intoutR, intoutG, intoutB)
    return native.call(0x4852FC386E2E1BB5, inthairColorIndex, intoutR, intoutG, intoutB)
end

function natives.GET_PED_MAKEUP_RGB_COLOR(intmakeupColorIndex, intoutR, intoutG, intoutB)
    return native.call(0x013E5CFC38CD5387, intmakeupColorIndex, intoutR, intoutG, intoutB)
end

function natives.IS_PED_HAIR_VALID_CREATOR_COLOR(intcolorId)
    return native.call(0xED6D8E27A43B8CDE, intcolorId)
end

function natives.GET_DEFAULT_SECONDARY_HAIR_CREATOR_COLOR(intcolorId)
    return native.call(0xEA9960D07DADCF10, intcolorId)
end

function natives.IS_PED_LIPSTICK_VALID_CREATOR_COLOR(intcolorId)
    return native.call(0x3E802F11FBE27674, intcolorId)
end

function natives.IS_PED_BLUSH_VALID_CREATOR_COLOR(intcolorId)
    return native.call(0xF41B5D290C99A3D6, intcolorId)
end

function natives.IS_PED_HAIR_VALID_BARBER_COLOR(intcolorID)
    return native.call(0xE0D36E5D9E99CC21, intcolorID)
end

function natives.GET_DEFAULT_SECONDARY_HAIR_BARBER_COLOR(intcolorID)
    return native.call(0xAAA6A3698A69E048, intcolorID)
end

function natives.IS_PED_LIPSTICK_VALID_BARBER_COLOR(intcolorID)
    return native.call(0x0525A2C2562F3CD4, intcolorID)
end

function natives.IS_PED_BLUSH_VALID_BARBER_COLOR(intcolorID)
    return native.call(0x604E810189EE3A59, intcolorID)
end

function natives.IS_PED_BLUSH_FACEPAINT_VALID_BARBER_COLOR(intcolorId)
    return native.call(0x09E7ECA981D9B210, intcolorId)
end

function natives.GET_TINT_OF_HAIR_COMPONENT_VARIATION(HashmodelHash, intdrawableId, inttextureId)
    return native.call(0xC56FBF2F228E1DAC, HashmodelHash, intdrawableId, inttextureId)
end

function natives.SET_PED_MICRO_MORPH_VALUE(Pedped, intindex, floatscale)
    return native.call(0x71A5C1DBA060049E, Pedped, intindex, floatscale)
end

function natives.HAS_PED_HEAD_BLEND_FINISHED(Pedped)
    return native.call(0x654CD0A825161131, Pedped)
end

function natives.FINALIZE_HEAD_BLEND(Pedped)
    return native.call(0x4668D80430D6C299, Pedped)
end

function natives.SET_HEAD_BLEND_PALETTE_COLOR(Pedped, intr, intg, intb, intid)
    return native.call(0xCC9682B8951C5229, Pedped, intr, intg, intb, intid)
end

function natives.DISABLE_HEAD_BLEND_PALETTE_COLOR(Pedped)
    return native.call(0xA21C118553BBDF02, Pedped)
end

function natives.GET_PED_HEAD_BLEND_FIRST_INDEX(inttype)
    return native.call(0x68D353AB88B97E0C, inttype)
end

function natives.GET_PED_HEAD_BLEND_NUM_HEADS(inttype)
    return native.call(0x5EF37013A6539C9D, inttype)
end

function natives.SET_PED_PRELOAD_VARIATION_DATA(Pedped, intslot, intdrawableId, inttextureId)
    return native.call(0x39D55A620FCB6A3A, Pedped, intslot, intdrawableId, inttextureId)
end

function natives.HAS_PED_PRELOAD_VARIATION_DATA_FINISHED(Pedped)
    return native.call(0x66680A92700F43DF, Pedped)
end

function natives.RELEASE_PED_PRELOAD_VARIATION_DATA(Pedped)
    return native.call(0x5AAB586FFEC0FD96, Pedped)
end

function natives.SET_PED_PRELOAD_PROP_DATA(Pedped, intcomponentId, intdrawableId, intTextureId)
    return native.call(0x2B16A3BFF1FBCE49, Pedped, intcomponentId, intdrawableId, intTextureId)
end

function natives.HAS_PED_PRELOAD_PROP_DATA_FINISHED(Pedped)
    return native.call(0x784002A632822099, Pedped)
end

function natives.RELEASE_PED_PRELOAD_PROP_DATA(Pedped)
    return native.call(0xF79F9DEF0AADE61A, Pedped)
end

function natives.GET_PED_PROP_INDEX(Pedped, intcomponentId)
    return native.call(0x898CC20EA75BACD8, Pedped, intcomponentId)
end

function natives.SET_PED_PROP_INDEX(Pedped, intcomponentId, intdrawableId, intTextureId, BOOLattach)
    return native.call(0x93376B65A266EB5F, Pedped, intcomponentId, intdrawableId, intTextureId, BOOLattach)
end

function natives.KNOCK_OFF_PED_PROP(Pedped, BOOLp1, BOOLp2, BOOLp3, BOOLp4)
    return native.call(0x6FD7816A36615F48, Pedped, BOOLp1, BOOLp2, BOOLp3, BOOLp4)
end

function natives.CLEAR_PED_PROP(Pedped, intpropId)
    return native.call(0x0943E5B8E078E76E, Pedped, intpropId)
end

function natives.CLEAR_ALL_PED_PROPS(Pedped)
    return native.call(0xCD8A7537A9B52F06, Pedped)
end

function natives.DROP_AMBIENT_PROP(Pedped)
    return native.call(0xAFF4710E2A0A6C12, Pedped)
end

function natives.GET_PED_PROP_TEXTURE_INDEX(Pedped, intcomponentId)
    return native.call(0xE131A28626F81AB2, Pedped, intcomponentId)
end

function natives.CLEAR_PED_PARACHUTE_PACK_VARIATION(Pedped)
    return native.call(0x1280804F7CFD2D6C, Pedped)
end

function natives.SET_PED_SCUBA_GEAR_VARIATION(Pedped)
    return native.call(0x36C6984C3ED0C911, Pedped)
end

function natives.CLEAR_PED_SCUBA_GEAR_VARIATION(Pedped)
    return native.call(0xB50EB4CCB29704AC, Pedped)
end

function natives._0xFEC9A3B1820F3331(Anyp0)
    return native.call(0xFEC9A3B1820F3331, Anyp0)
end

function natives.SET_BLOCKING_OF_NON_TEMPORARY_EVENTS(Pedped, BOOLtoggle)
    return native.call(0x9F8AA94D6D97DBF4, Pedped, BOOLtoggle)
end

function natives.SET_PED_BOUNDS_ORIENTATION(Pedped, floatp1, floatp2, floatp3, floatp4, floatp5)
    return native.call(0x4F5F651ACCC9C4CF, Pedped, floatp1, floatp2, floatp3, floatp4, floatp5)
end

function natives.REGISTER_TARGET(Pedped, Pedtarget)
    return native.call(0x2F25D9AEFA34FBA2, Pedped, Pedtarget)
end

function natives.REGISTER_HATED_TARGETS_AROUND_PED(Pedped, floatradius)
    return native.call(0x9222F300BF8354FE, Pedped, floatradius)
end

function natives.GET_RANDOM_PED_AT_COORD(floatx, floaty, floatz, floatxRadius, floatyRadius, floatzRadius, intpedType)
    return native.call(0x876046A8E3A4B71C, floatx, floaty, floatz, floatxRadius, floatyRadius, floatzRadius, intpedType)
end

function natives.GET_CLOSEST_PED(floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, PedoutPed, BOOLp7, BOOLp8, intpedType)
    return native.call(0xC33AB876A77F8164, floatx, floaty, floatz, floatradius, BOOLp4, BOOLp5, PedoutPed, BOOLp7, BOOLp8, intpedType)
end

function natives.SET_SCENARIO_PEDS_TO_BE_RETURNED_BY_NEXT_COMMAND(BOOLvalue)
    return native.call(0x14F19A8782C8071E, BOOLvalue)
end

function natives._0x03EA03AF85A85CB7(Pedped, BOOLp1, BOOLp2, BOOLp3, BOOLp4, BOOLp5, BOOLp6, BOOLp7, Anyp8)
    return native.call(0x03EA03AF85A85CB7, Pedped, BOOLp1, BOOLp2, BOOLp3, BOOLp4, BOOLp5, BOOLp6, BOOLp7, Anyp8)
end

function natives.SET_DRIVER_RACING_MODIFIER(Peddriver, floatmodifier)
    return native.call(0xDED5AF5A0EA4B297, Peddriver, floatmodifier)
end

function natives.SET_DRIVER_ABILITY(Peddriver, floatability)
    return native.call(0xB195FFA8042FC5C3, Peddriver, floatability)
end

function natives.SET_DRIVER_AGGRESSIVENESS(Peddriver, floataggressiveness)
    return native.call(0xA731F608CA104E3C, Peddriver, floataggressiveness)
end

function natives.CAN_PED_RAGDOLL(Pedped)
    return native.call(0x128F79EDCECE4FD5, Pedped)
end

function natives.SET_PED_TO_RAGDOLL(Pedped, inttime1, inttime2, intragdollType, BOOLp4, BOOLp5, BOOLp6)
    return native.call(0xAE99FB955581844A, Pedped, inttime1, inttime2, intragdollType, BOOLp4, BOOLp5, BOOLp6)
end

function natives.SET_PED_TO_RAGDOLL_WITH_FALL(Pedped, inttime, intp2, intragdollType, floatx, floaty, floatz, floatp7, floatp8, floatp9, floatp10, floatp11, floatp12, floatp13)
    return native.call(0xD76632D99E4966C8, Pedped, inttime, intp2, intragdollType, floatx, floaty, floatz, floatp7, floatp8, floatp9, floatp10, floatp11, floatp12, floatp13)
end

function natives.SET_PED_RAGDOLL_ON_COLLISION(Pedped, BOOLtoggle)
    return native.call(0xF0A4F1BBF4FA7497, Pedped, BOOLtoggle)
end

function natives.IS_PED_RAGDOLL(Pedped)
    return native.call(0x47E4E977581C5B55, Pedped)
end

function natives.IS_PED_RUNNING_RAGDOLL_TASK(Pedped)
    return native.call(0xE3B6097CC25AA69E, Pedped)
end

function natives.SET_PED_RAGDOLL_FORCE_FALL(Pedped)
    return native.call(0x01F6594B923B9251, Pedped)
end

function natives.RESET_PED_RAGDOLL_TIMER(Pedped)
    return native.call(0x9FA4664CF62E47E8, Pedped)
end

function natives.SET_PED_CAN_RAGDOLL(Pedped, BOOLtoggle)
    return native.call(0xB128377056A54E2A, Pedped, BOOLtoggle)
end

function natives.IS_PED_RUNNING_MELEE_TASK(Pedped)
    return native.call(0xD1871251F3B5ACD7, Pedped)
end

function natives.IS_PED_RUNNING_MOBILE_PHONE_TASK(Pedped)
    return native.call(0x2AFE52F782F25775, Pedped)
end

function natives.IS_MOBILE_PHONE_TO_PED_EAR(Pedped)
    return native.call(0xA3F3564A5B3646C0, Pedped)
end

function natives.SET_RAGDOLL_BLOCKING_FLAGS(Pedped, intflags)
    return native.call(0x26695EC767728D84, Pedped, intflags)
end

function natives.CLEAR_RAGDOLL_BLOCKING_FLAGS(Pedped, intflags)
    return native.call(0xD86D101FCFD00A4B, Pedped, intflags)
end

function natives.SET_PED_ANGLED_DEFENSIVE_AREA(Pedped, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, BOOLp8, BOOLp9)
    return native.call(0xC7F76DF27A5045A1, Pedped, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, BOOLp8, BOOLp9)
end

function natives.SET_PED_SPHERE_DEFENSIVE_AREA(Pedped, floatx, floaty, floatz, floatradius, BOOLp5, BOOLp6)
    return native.call(0x9D3151A373974804, Pedped, floatx, floaty, floatz, floatradius, BOOLp5, BOOLp6)
end

function natives.SET_PED_DEFENSIVE_SPHERE_ATTACHED_TO_PED(Pedped, Pedtarget, floatxOffset, floatyOffset, floatzOffset, floatradius, BOOLp6)
    return native.call(0xF9B8F91AAD3B953E, Pedped, Pedtarget, floatxOffset, floatyOffset, floatzOffset, floatradius, BOOLp6)
end

function natives.SET_PED_DEFENSIVE_SPHERE_ATTACHED_TO_VEHICLE(Pedped, Vehicletarget, floatxOffset, floatyOffset, floatzOffset, floatradius, BOOLp6)
    return native.call(0xE4723DB6E736CCFF, Pedped, Vehicletarget, floatxOffset, floatyOffset, floatzOffset, floatradius, BOOLp6)
end

function natives.SET_PED_DEFENSIVE_AREA_ATTACHED_TO_PED(Pedped, PedattachPed, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, BOOLp9, BOOLp10)
    return native.call(0x4EF47FE21698A8B6, Pedped, PedattachPed, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, BOOLp9, BOOLp10)
end

function natives.SET_PED_DEFENSIVE_AREA_DIRECTION(Pedped, floatp1, floatp2, floatp3, BOOLp4)
    return native.call(0x413C6C763A4AFFAD, Pedped, floatp1, floatp2, floatp3, BOOLp4)
end

function natives.REMOVE_PED_DEFENSIVE_AREA(Pedped, BOOLtoggle)
    return native.call(0x74D4E028107450A9, Pedped, BOOLtoggle)
end

function natives.GET_PED_DEFENSIVE_AREA_POSITION(Pedped, BOOLp1)
    return native.call(0x3C06B8786DD94CD1, Pedped, BOOLp1)
end

function natives.IS_PED_DEFENSIVE_AREA_ACTIVE(Pedped, BOOLp1)
    return native.call(0xBA63D9FE45412247, Pedped, BOOLp1)
end

function natives.SET_PED_PREFERRED_COVER_SET(Pedped, AnyitemSet)
    return native.call(0x8421EB4DA7E391B9, Pedped, AnyitemSet)
end

function natives.REMOVE_PED_PREFERRED_COVER_SET(Pedped)
    return native.call(0xFDDB234CF74073D9, Pedped)
end

function natives.REVIVE_INJURED_PED(Pedped)
    return native.call(0x8D8ACD8388CD99CE, Pedped)
end

function natives.RESURRECT_PED(Pedped)
    return native.call(0x71BC8E838B9C6035, Pedped)
end

function natives.SET_PED_NAME_DEBUG(Pedped, constcharname)
    return native.call(0x98EFA132A4117BE1, Pedped, constcharname)
end

function natives.GET_PED_EXTRACTED_DISPLACEMENT(Pedped, BOOLworldSpace)
    return native.call(0xE0AF41401ADF87E3, Pedped, BOOLworldSpace)
end

function natives.SET_PED_DIES_WHEN_INJURED(Pedped, BOOLtoggle)
    return native.call(0x5BA7919BED300023, Pedped, BOOLtoggle)
end

function natives.SET_PED_ENABLE_WEAPON_BLOCKING(Pedped, BOOLtoggle)
    return native.call(0x97A790315D3831FD, Pedped, BOOLtoggle)
end

function natives._0xF9ACF4A08098EA25(Pedped, BOOLp1)
    return native.call(0xF9ACF4A08098EA25, Pedped, BOOLp1)
end

function natives.RESET_PED_VISIBLE_DAMAGE(Pedped)
    return native.call(0x3AC1F7B898F30C05, Pedped)
end

function natives.APPLY_PED_BLOOD_DAMAGE_BY_ZONE(Pedped, Anyp1, floatp2, floatp3, Anyp4)
    return native.call(0x816F6981C60BF53B, Pedped, Anyp1, floatp2, floatp3, Anyp4)
end

function natives.APPLY_PED_BLOOD(Pedped, intboneIndex, floatxRot, floatyRot, floatzRot, constcharwoundType)
    return native.call(0x83F7E01C7B769A26, Pedped, intboneIndex, floatxRot, floatyRot, floatzRot, constcharwoundType)
end

function natives.APPLY_PED_BLOOD_BY_ZONE(Pedped, intp1, floatp2, floatp3, constcharp4)
    return native.call(0x3311E47B91EDCBBC, Pedped, intp1, floatp2, floatp3, constcharp4)
end

function natives.APPLY_PED_BLOOD_SPECIFIC(Pedped, intp1, floatp2, floatp3, floatp4, floatp5, intp6, floatp7, constcharp8)
    return native.call(0xEF0D582CBF2D9B0F, Pedped, intp1, floatp2, floatp3, floatp4, floatp5, intp6, floatp7, constcharp8)
end

function natives.APPLY_PED_DAMAGE_DECAL(Pedped, intdamageZone, floatxOffset, floatyOffset, floatheading, floatscale, floatalpha, intvariation, BOOLfadeIn, constchardecalName)
    return native.call(0x397C38AA7B4A5F83, Pedped, intdamageZone, floatxOffset, floatyOffset, floatheading, floatscale, floatalpha, intvariation, BOOLfadeIn, constchardecalName)
end

function natives.APPLY_PED_DAMAGE_PACK(Pedped, constchardamagePack, floatdamage, floatmult)
    return native.call(0x46DF918788CB093F, Pedped, constchardamagePack, floatdamage, floatmult)
end

function natives.CLEAR_PED_BLOOD_DAMAGE(Pedped)
    return native.call(0x8FE22675A5A45817, Pedped)
end

function natives.CLEAR_PED_BLOOD_DAMAGE_BY_ZONE(Pedped, intp1)
    return native.call(0x56E3B78C5408D9F4, Pedped, intp1)
end

function natives.HIDE_PED_BLOOD_DAMAGE_BY_ZONE(Pedped, Anyp1, BOOLp2)
    return native.call(0x62AB793144DE75DC, Pedped, Anyp1, BOOLp2)
end

function natives.CLEAR_PED_DAMAGE_DECAL_BY_ZONE(Pedped, intp1, constcharp2)
    return native.call(0x523C79AEEFCC4A2A, Pedped, intp1, constcharp2)
end

function natives.GET_PED_DECORATIONS_STATE(Pedped)
    return native.call(0x71EAB450D86954A1, Pedped)
end

function natives._0x2B694AFCF64E6994(Pedped, BOOLp1)
    return native.call(0x2B694AFCF64E6994, Pedped, BOOLp1)
end

function natives.CLEAR_PED_WETNESS(Pedped)
    return native.call(0x9C720776DAA43E7E, Pedped)
end

function natives.SET_PED_WETNESS_HEIGHT(Pedped, floatheight)
    return native.call(0x44CB6447D2571AA0, Pedped, floatheight)
end

function natives.SET_PED_WETNESS_ENABLED_THIS_FRAME(Pedped)
    return native.call(0xB5485E4907B53019, Pedped)
end

function natives.CLEAR_PED_ENV_DIRT(Pedped)
    return native.call(0x6585D955A68452A5, Pedped)
end

function natives.SET_PED_SWEAT(Pedped, floatsweat)
    return native.call(0x27B0405F59637D1F, Pedped, floatsweat)
end

function natives.ADD_PED_DECORATION_FROM_HASHES(Pedped, Hashcollection, Hashoverlay)
    return native.call(0x5F5D1665E352A839, Pedped, Hashcollection, Hashoverlay)
end

function natives.ADD_PED_DECORATION_FROM_HASHES_IN_CORONA(Pedped, Hashcollection, Hashoverlay)
    return native.call(0x5619BFA07CFD7833, Pedped, Hashcollection, Hashoverlay)
end

function natives.GET_PED_DECORATION_ZONE_FROM_HASHES(Hashcollection, Hashoverlay)
    return native.call(0x9FD452BFBE7A7A8B, Hashcollection, Hashoverlay)
end

function natives.CLEAR_PED_DECORATIONS(Pedped)
    return native.call(0x0E5173C163976E38, Pedped)
end

function natives.CLEAR_PED_DECORATIONS_LEAVE_SCARS(Pedped)
    return native.call(0xE3B27E70CEAB9F0C, Pedped)
end

function natives.WAS_PED_SKELETON_UPDATED(Pedped)
    return native.call(0x11B499C1E0FF8559, Pedped)
end

function natives.GET_PED_BONE_COORDS(Pedped, intboneId, floatoffsetX, floatoffsetY, floatoffsetZ)
    return native.call(0x17C07FC640E86B4E, Pedped, intboneId, floatoffsetX, floatoffsetY, floatoffsetZ)
end

function natives.CREATE_NM_MESSAGE(BOOLstartImmediately, intmessageId)
    return native.call(0x418EF2A1BCE56685, BOOLstartImmediately, intmessageId)
end

function natives.GIVE_PED_NM_MESSAGE(Pedped)
    return native.call(0xB158DFCCC56E5C5B, Pedped)
end

function natives.ADD_SCENARIO_BLOCKING_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp6, BOOLp7, BOOLp8, BOOLp9)
    return native.call(0x1B5C85C612E5256E, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp6, BOOLp7, BOOLp8, BOOLp9)
end

function natives.REMOVE_SCENARIO_BLOCKING_AREAS()
    return native.call(0xD37401D78A929A49)
end

function natives.REMOVE_SCENARIO_BLOCKING_AREA(Anyp0, BOOLp1)
    return native.call(0x31D16B74C6E29D66, Anyp0, BOOLp1)
end

function natives.SET_SCENARIO_PEDS_SPAWN_IN_SPHERE_AREA(floatx, floaty, floatz, floatrange, intp4)
    return native.call(0x28157D43CF600981, floatx, floaty, floatz, floatrange, intp4)
end

function natives.DOES_SCENARIO_BLOCKING_AREA_EXIST(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0x8A24B067D175A7BD, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.IS_PED_USING_SCENARIO(Pedped, constcharscenario)
    return native.call(0x1BF094736DD62C2E, Pedped, constcharscenario)
end

function natives.IS_PED_USING_ANY_SCENARIO(Pedped)
    return native.call(0x57AB4A3080F85143, Pedped)
end

function natives.SET_PED_PANIC_EXIT_SCENARIO(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xFE07FF6495D52E2A, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SET_PED_SCARED_WHEN_USING_SCENARIO(Pedped, BOOLtoggle)
    return native.call(0x9A77DFD295E29B09, Pedped, BOOLtoggle)
end

function natives._0x25361A96E0F7E419(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x25361A96E0F7E419, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SET_PED_SHOULD_PLAY_DIRECTED_SCENARIO_EXIT(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xEC6935EBE0847B90, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SET_PED_SHOULD_PLAY_NORMAL_SCENARIO_EXIT(Pedped)
    return native.call(0xA3A9299C4F2ADB98, Pedped)
end

function natives.SET_PED_SHOULD_PLAY_IMMEDIATE_SCENARIO_EXIT(Pedped)
    return native.call(0xF1C03A5352243A30, Pedped)
end

function natives.SET_PED_SHOULD_PLAY_FLEE_SCENARIO_EXIT(Pedped, Anyp1, Anyp2, Anyp3)
    return native.call(0xEEED8FAFEC331A70, Pedped, Anyp1, Anyp2, Anyp3)
end

function natives._0x425AECF167663F48(Pedped, BOOLp1)
    return native.call(0x425AECF167663F48, Pedped, BOOLp1)
end

function natives._0x5B6010B3CBC29095(Anyp0, BOOLp1)
    return native.call(0x5B6010B3CBC29095, Anyp0, BOOLp1)
end

function natives._0xCEDA60A74219D064(Anyp0, BOOLp1)
    return native.call(0xCEDA60A74219D064, Anyp0, BOOLp1)
end

function natives._0xC30BDAEE47256C13(Anyp0)
    return native.call(0xC30BDAEE47256C13, Anyp0)
end

function natives.PLAY_FACIAL_ANIM(Pedped, constcharanimName, constcharanimDict)
    return native.call(0xE1E65CA8AC9C00ED, Pedped, constcharanimName, constcharanimDict)
end

function natives.SET_FACIAL_CLIPSET_OVERRIDE(Pedped, constcharanimDict)
    return native.call(0x5687C7F05B39E401, Pedped, constcharanimDict)
end

function natives.SET_FACIAL_IDLE_ANIM_OVERRIDE(Pedped, constcharanimName, constcharanimDict)
    return native.call(0xFFC24B988B938B38, Pedped, constcharanimName, constcharanimDict)
end

function natives.CLEAR_FACIAL_IDLE_ANIM_OVERRIDE(Pedped)
    return native.call(0x726256CC1EEB182F, Pedped)
end

function natives.SET_PED_CAN_PLAY_GESTURE_ANIMS(Pedped, BOOLtoggle)
    return native.call(0xBAF20C5432058024, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_PLAY_VISEME_ANIMS(Pedped, BOOLtoggle, BOOLp2)
    return native.call(0xF833DDBA3B104D43, Pedped, BOOLtoggle, BOOLp2)
end

function natives.SET_PED_CAN_PLAY_INJURED_ANIMS(Pedped, BOOLp1)
    return native.call(0x33A60D8BDD6E508C, Pedped, BOOLp1)
end

function natives.SET_PED_CAN_PLAY_AMBIENT_ANIMS(Pedped, BOOLtoggle)
    return native.call(0x6373D1349925A70E, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_PLAY_AMBIENT_BASE_ANIMS(Pedped, BOOLtoggle)
    return native.call(0x0EB0585D15254740, Pedped, BOOLtoggle)
end

function natives._0xC2EE020F5FB4DB53(Pedped)
    return native.call(0xC2EE020F5FB4DB53, Pedped)
end

function natives.SET_PED_CAN_ARM_IK(Pedped, BOOLtoggle)
    return native.call(0x6C3B4D6D13B4C841, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_HEAD_IK(Pedped, BOOLtoggle)
    return native.call(0xC11C18092C5530DC, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_LEG_IK(Pedped, BOOLtoggle)
    return native.call(0x73518ECE2485412B, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_TORSO_IK(Pedped, BOOLtoggle)
    return native.call(0xF2B7106D37947CE0, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_TORSO_REACT_IK(Pedped, BOOLp1)
    return native.call(0xF5846EDB26A98A24, Pedped, BOOLp1)
end

function natives._0x6647C5F6F5792496(Pedped, BOOLp1)
    return native.call(0x6647C5F6F5792496, Pedped, BOOLp1)
end

function natives.SET_PED_CAN_USE_AUTO_CONVERSATION_LOOKAT(Pedped, BOOLtoggle)
    return native.call(0xEC4686EC06434678, Pedped, BOOLtoggle)
end

function natives.IS_PED_HEADTRACKING_PED(Pedped1, Pedped2)
    return native.call(0x5CD3CB88A7F8850D, Pedped1, Pedped2)
end

function natives.IS_PED_HEADTRACKING_ENTITY(Pedped, Entityentity)
    return native.call(0x813A0A7C9D2E831F, Pedped, Entityentity)
end

function natives.SET_PED_PRIMARY_LOOKAT(Pedped, PedlookAt)
    return native.call(0xCD17B554996A8D9E, Pedped, PedlookAt)
end

function natives.SET_PED_CLOTH_PACKAGE_INDEX(Anyp0, Anyp1)
    return native.call(0x78C4E9961DB3EB5B, Anyp0, Anyp1)
end

function natives.SET_PED_CLOTH_PRONE(Anyp0, Anyp1)
    return native.call(0x82A3D6D9CC2CB8E3, Anyp0, Anyp1)
end

function natives._0xA660FAF550EB37E5(Anyp0, BOOLp1)
    return native.call(0xA660FAF550EB37E5, Anyp0, BOOLp1)
end

function natives.SET_PED_CONFIG_FLAG(Pedped, intflagId, BOOLvalue)
    return native.call(0x1913FE4CBF41C463, Pedped, intflagId, BOOLvalue)
end

function natives.SET_PED_RESET_FLAG(Pedped, intflagId, BOOLdoReset)
    return native.call(0xC1E8A365BF3B29F2, Pedped, intflagId, BOOLdoReset)
end

function natives.GET_PED_CONFIG_FLAG(Pedped, intflagId, BOOLp2)
    return native.call(0x7EE53118C892B513, Pedped, intflagId, BOOLp2)
end

function natives.GET_PED_RESET_FLAG(Pedped, intflagId)
    return native.call(0xAF9E59B1B1FBF2A0, Pedped, intflagId)
end

function natives.SET_PED_GROUP_MEMBER_PASSENGER_INDEX(Pedped, intindex)
    return native.call(0x0BDDB8D9EC6BCF3C, Pedped, intindex)
end

function natives.SET_PED_CAN_EVASIVE_DIVE(Pedped, BOOLtoggle)
    return native.call(0x6B7A646C242A7059, Pedped, BOOLtoggle)
end

function natives.IS_PED_EVASIVE_DIVING(Pedped, EntityevadingEntity)
    return native.call(0x414641C26E105898, Pedped, EntityevadingEntity)
end

function natives.SET_PED_SHOOTS_AT_COORD(Pedped, floatx, floaty, floatz, BOOLtoggle)
    return native.call(0x96A05E4FB321B1BA, Pedped, floatx, floaty, floatz, BOOLtoggle)
end

function natives.SET_PED_MODEL_IS_SUPPRESSED(HashmodelHash, BOOLtoggle)
    return native.call(0xE163A4BCE4DE6F11, HashmodelHash, BOOLtoggle)
end

function natives.STOP_ANY_PED_MODEL_BEING_SUPPRESSED()
    return native.call(0xB47BD05FA66B40CF)
end

function natives.SET_PED_CAN_BE_TARGETED_WHEN_INJURED(Pedped, BOOLtoggle)
    return native.call(0x638C03B0F9878F57, Pedped, BOOLtoggle)
end

function natives.SET_PED_GENERATES_DEAD_BODY_EVENTS(Pedped, BOOLtoggle)
    return native.call(0x7FB17BA2E7DECA5B, Pedped, BOOLtoggle)
end

function natives.BLOCK_PED_DEAD_BODY_SHOCKING_EVENTS(Pedped, BOOLtoggle)
    return native.call(0xE43A13C9E4CCCBCF, Pedped, BOOLtoggle)
end

function natives._0x3E9679C1DFCF422C(Anyp0, Anyp1)
    return native.call(0x3E9679C1DFCF422C, Anyp0, Anyp1)
end

function natives.SET_PED_CAN_RAGDOLL_FROM_PLAYER_IMPACT(Pedped, BOOLtoggle)
    return native.call(0xDF993EE5E90ABA25, Pedped, BOOLtoggle)
end

function natives.GIVE_PED_HELMET(Pedped, BOOLcannotRemove, inthelmetFlag, inttextureIndex)
    return native.call(0x54C7C4A94367717E, Pedped, BOOLcannotRemove, inthelmetFlag, inttextureIndex)
end

function natives.REMOVE_PED_HELMET(Pedped, BOOLinstantly)
    return native.call(0xA7B2458D0AD6DED8, Pedped, BOOLinstantly)
end

function natives.IS_PED_TAKING_OFF_HELMET(Pedped)
    return native.call(0x14590DDBEDB1EC85, Pedped)
end

function natives.SET_PED_HELMET(Pedped, BOOLcanWearHelmet)
    return native.call(0x560A43136EB58105, Pedped, BOOLcanWearHelmet)
end

function natives.SET_PED_HELMET_FLAG(Pedped, inthelmetFlag)
    return native.call(0xC0E78D5C2CE3EB25, Pedped, inthelmetFlag)
end

function natives.SET_PED_HELMET_PROP_INDEX(Pedped, intpropIndex, BOOLp2)
    return native.call(0x26D83693ED99291C, Pedped, intpropIndex, BOOLp2)
end

function natives.SET_PED_HELMET_UNK(Pedped, BOOLp1, intp2, intp3)
    return native.call(0x3F7325574E41B44D, Pedped, BOOLp1, intp2, intp3)
end

function natives.IS_PED_HELMET_UNK(Pedped)
    return native.call(0xB9496CE47546DB2C, Pedped)
end

function natives.SET_PED_HELMET_TEXTURE_INDEX(Pedped, inttextureIndex)
    return native.call(0xF1550C4BD22582E2, Pedped, inttextureIndex)
end

function natives.IS_PED_WEARING_HELMET(Pedped)
    return native.call(0xF33BDFE19B309B19, Pedped)
end

function natives.CLEAR_PED_STORED_HAT_PROP(Pedped)
    return native.call(0x687C0B594907D2E8, Pedped)
end

function natives.GET_PED_HELMET_STORED_HAT_PROP_INDEX(Pedped)
    return native.call(0x451294E859ECC018, Pedped)
end

function natives.GET_PED_HELMET_STORED_HAT_TEX_INDEX(Pedped)
    return native.call(0x9D728C1E12BF5518, Pedped)
end

function natives._0xF2385935BFFD4D92(Anyp0)
    return native.call(0xF2385935BFFD4D92, Anyp0)
end

function natives.SET_PED_TO_LOAD_COVER(Pedped, BOOLtoggle)
    return native.call(0x332B562EEDA62399, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_COWER_IN_COVER(Pedped, BOOLtoggle)
    return native.call(0xCB7553CDCEF4A735, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_PEEK_IN_COVER(Pedped, BOOLtoggle)
    return native.call(0xC514825C507E3736, Pedped, BOOLtoggle)
end

function natives.SET_PED_PLAYS_HEAD_ON_HORN_ANIM_WHEN_DIES_IN_VEHICLE(Pedped, BOOLtoggle)
    return native.call(0x94D94BF1A75AED3D, Pedped, BOOLtoggle)
end

function natives.SET_PED_LEG_IK_MODE(Pedped, intmode)
    return native.call(0xC396F5B86FF9FEBD, Pedped, intmode)
end

function natives.SET_PED_MOTION_BLUR(Pedped, BOOLtoggle)
    return native.call(0x0A986918B102B448, Pedped, BOOLtoggle)
end

function natives.SET_PED_CAN_SWITCH_WEAPON(Pedped, BOOLtoggle)
    return native.call(0xED7F7EFE9FABF340, Pedped, BOOLtoggle)
end

function natives.SET_PED_DIES_INSTANTLY_IN_WATER(Pedped, BOOLtoggle)
    return native.call(0xEEB64139BA29A7CF, Pedped, BOOLtoggle)
end

function natives.SET_LADDER_CLIMB_INPUT_STATE(Pedped, intp1)
    return native.call(0x1A330D297AAC6BC1, Pedped, intp1)
end

function natives.STOP_PED_WEAPON_FIRING_WHEN_DROPPED(Pedped)
    return native.call(0xC158D28142A34608, Pedped)
end

function natives.SET_SCRIPTED_ANIM_SEAT_OFFSET(Pedped, floatp1)
    return native.call(0x5917BBA32D06C230, Pedped, floatp1)
end

function natives.SET_PED_COMBAT_MOVEMENT(Pedped, intcombatMovement)
    return native.call(0x4D9CA1009AFBD057, Pedped, intcombatMovement)
end

function natives.GET_PED_COMBAT_MOVEMENT(Pedped)
    return native.call(0xDEA92412FCAEB3F5, Pedped)
end

function natives.SET_PED_COMBAT_ABILITY(Pedped, intabilityLevel)
    return native.call(0xC7622C0D36B2FDA8, Pedped, intabilityLevel)
end

function natives.SET_PED_COMBAT_RANGE(Pedped, intcombatRange)
    return native.call(0x3C606747B23E497B, Pedped, intcombatRange)
end

function natives.GET_PED_COMBAT_RANGE(Pedped)
    return native.call(0xF9D9F7F2DB8E2FA0, Pedped)
end

function natives.SET_PED_COMBAT_ATTRIBUTES(Pedped, intattributeId, BOOLenabled)
    return native.call(0x9F7794730795E019, Pedped, intattributeId, BOOLenabled)
end

function natives.SET_PED_TARGET_LOSS_RESPONSE(Pedped, intresponseType)
    return native.call(0x0703B9079823DA4A, Pedped, intresponseType)
end

function natives.IS_PED_PERFORMING_MELEE_ACTION(Pedped)
    return native.call(0xDCCA191DF9980FD7, Pedped)
end

function natives.IS_PED_PERFORMING_STEALTH_KILL(Pedped)
    return native.call(0xFD4CCDBCC59941B7, Pedped)
end

function natives.IS_PED_PERFORMING_DEPENDENT_COMBO_LIMIT(Pedped)
    return native.call(0xEBD0EDBA5BE957CF, Pedped)
end

function natives.IS_PED_BEING_STEALTH_KILLED(Pedped)
    return native.call(0x863B23EFDE9C5DF2, Pedped)
end

function natives.GET_MELEE_TARGET_FOR_PED(Pedped)
    return native.call(0x18A3E9EE1297FD39, Pedped)
end

function natives.WAS_PED_KILLED_BY_STEALTH(Pedped)
    return native.call(0xF9800AA1A771B000, Pedped)
end

function natives.WAS_PED_KILLED_BY_TAKEDOWN(Pedped)
    return native.call(0x7F08E26039C7347C, Pedped)
end

function natives.WAS_PED_KNOCKED_OUT(Pedped)
    return native.call(0x61767F73EACEED21, Pedped)
end

function natives.SET_PED_FLEE_ATTRIBUTES(Pedped, intattributeFlags, BOOLenable)
    return native.call(0x70A2D1137C8ED7C9, Pedped, intattributeFlags, BOOLenable)
end

function natives.SET_PED_COWER_HASH(Pedped, constcharp1)
    return native.call(0xA549131166868ED3, Pedped, constcharp1)
end

function natives.SET_PED_STEERS_AROUND_DEAD_BODIES(Pedped, BOOLtoggle)
    return native.call(0x2016C603D6B8987C, Pedped, BOOLtoggle)
end

function natives.SET_PED_STEERS_AROUND_PEDS(Pedped, BOOLtoggle)
    return native.call(0x46F2193B3AD1D891, Pedped, BOOLtoggle)
end

function natives.SET_PED_STEERS_AROUND_OBJECTS(Pedped, BOOLtoggle)
    return native.call(0x1509C089ADC208BF, Pedped, BOOLtoggle)
end

function natives.SET_PED_STEERS_AROUND_VEHICLES(Pedped, BOOLtoggle)
    return native.call(0xEB6FB9D48DDE23EC, Pedped, BOOLtoggle)
end

function natives._0xA9B61A329BFDCBEA(Anyp0, BOOLp1)
    return native.call(0xA9B61A329BFDCBEA, Anyp0, BOOLp1)
end

function natives.SET_PED_INCREASED_AVOIDANCE_RADIUS(Pedped)
    return native.call(0x570389D1C3DE3C6B, Pedped)
end

function natives.SET_PED_BLOCKS_PATHING_WHEN_DEAD(Pedped, BOOLtoggle)
    return native.call(0x576594E8D64375E2, Pedped, BOOLtoggle)
end

function natives._0xA52D5247A4227E14(Anyp0)
    return native.call(0xA52D5247A4227E14, Anyp0)
end

function natives.IS_ANY_PED_NEAR_POINT(floatx, floaty, floatz, floatradius)
    return native.call(0x083961498679DC9F, floatx, floaty, floatz, floatradius)
end

function natives.FORCE_PED_AI_AND_ANIMATION_UPDATE(Pedped, BOOLp1, BOOLp2)
    return native.call(0x2208438012482A1A, Pedped, BOOLp1, BOOLp2)
end

function natives.IS_PED_HEADING_TOWARDS_POSITION(Pedped, floatx, floaty, floatz, floatp4)
    return native.call(0xFCF37A457CB96DC0, Pedped, floatx, floaty, floatz, floatp4)
end

function natives.REQUEST_PED_VISIBILITY_TRACKING(Pedped)
    return native.call(0x7D7A2E43E74E2EB8, Pedped)
end

function natives.REQUEST_PED_VEHICLE_VISIBILITY_TRACKING(Pedped, BOOLp1)
    return native.call(0x2BC338A7B21F4608, Pedped, BOOLp1)
end

function natives._0xCD018C591F94CB43(Pedped, BOOLp1)
    return native.call(0xCD018C591F94CB43, Pedped, BOOLp1)
end

function natives._0x75BA1CB3B7D40CAF(Pedped, BOOLp1)
    return native.call(0x75BA1CB3B7D40CAF, Pedped, BOOLp1)
end

function natives.IS_TRACKED_PED_VISIBLE(Pedped)
    return native.call(0x91C8E617F64188AC, Pedped)
end

function natives.GET_TRACKED_PED_PIXELCOUNT(Pedped)
    return native.call(0x511F1A683387C7E2, Pedped)
end

function natives.IS_PED_TRACKED(Pedped)
    return native.call(0x4C5E1F087CD10BB7, Pedped)
end

function natives.HAS_PED_RECEIVED_EVENT(Pedped, inteventId)
    return native.call(0x8507BCB710FA6DC0, Pedped, inteventId)
end

function natives.CAN_PED_SEE_HATED_PED(Pedped1, Pedped2)
    return native.call(0x6CD5A433374D4CFB, Pedped1, Pedped2)
end

function natives._0x9C6A6C19B6C0C496(Pedped, intp1)
    return native.call(0x9C6A6C19B6C0C496, Pedped, intp1)
end

function natives._0x2DFC81C9B9608549(Pedped, intp1)
    return native.call(0x2DFC81C9B9608549, Pedped, intp1)
end

function natives.GET_PED_BONE_INDEX(Pedped, intboneId)
    return native.call(0x3F428D08BE5AAE31, Pedped, intboneId)
end

function natives.GET_PED_RAGDOLL_BONE_INDEX(Pedped, intbone)
    return native.call(0x2057EF813397A772, Pedped, intbone)
end

function natives.SET_PED_ENVEFF_SCALE(Pedped, floatvalue)
    return native.call(0xBF29516833893561, Pedped, floatvalue)
end

function natives.GET_PED_ENVEFF_SCALE(Pedped)
    return native.call(0x9C14D30395A51A3C, Pedped)
end

function natives.SET_ENABLE_PED_ENVEFF_SCALE(Pedped, BOOLtoggle)
    return native.call(0xD2C5AA0C0E8D0F1E, Pedped, BOOLtoggle)
end

function natives._0x110F526AB784111F(Pedped, floatp1)
    return native.call(0x110F526AB784111F, Pedped, floatp1)
end

function natives.SET_PED_ENVEFF_COLOR_MODULATOR(Pedped, intp1, intp2, intp3)
    return native.call(0xD69411AA0CEBF9E9, Pedped, intp1, intp2, intp3)
end

function natives.SET_PED_EMISSIVE_INTENSITY(Pedped, floatintensity)
    return native.call(0x4E90D746056E273D, Pedped, floatintensity)
end

function natives.GET_PED_EMISSIVE_INTENSITY(Pedped)
    return native.call(0x1461B28A06717D68, Pedped)
end

function natives.IS_PED_SHADER_EFFECT_VALID(Pedped)
    return native.call(0x81AA517FBBA05D39, Pedped)
end

function natives._0xE906EC930F5FE7C8(Anyp0, Anyp1)
    return native.call(0xE906EC930F5FE7C8, Anyp0, Anyp1)
end

function natives._0x1216E0BFA72CC703(Anyp0, Anyp1)
    return native.call(0x1216E0BFA72CC703, Anyp0, Anyp1)
end

function natives.SET_PED_AO_BLOB_RENDERING(Pedped, BOOLtoggle)
    return native.call(0x2B5AA717A181FB4C, Pedped, BOOLtoggle)
end

function natives._0xB8B52E498014F5B0(Pedped)
    return native.call(0xB8B52E498014F5B0, Pedped)
end

function natives.CREATE_SYNCHRONIZED_SCENE(floatx, floaty, floatz, floatroll, floatpitch, floatyaw, intp6)
    return native.call(0x8C18E0F9080ADD73, floatx, floaty, floatz, floatroll, floatpitch, floatyaw, intp6)
end

function natives.CREATE_SYNCHRONIZED_SCENE_AT_MAP_OBJECT(floatx, floaty, floatz, floatradius, Hashobject)
    return native.call(0x62EC273D00187DCA, floatx, floaty, floatz, floatradius, Hashobject)
end

function natives.IS_SYNCHRONIZED_SCENE_RUNNING(intsceneId)
    return native.call(0x25D39B935A038A26, intsceneId)
end

function natives.SET_SYNCHRONIZED_SCENE_ORIGIN(intsceneID, floatx, floaty, floatz, floatroll, floatpitch, floatyaw, BOOLp7)
    return native.call(0x6ACF6B7225801CD7, intsceneID, floatx, floaty, floatz, floatroll, floatpitch, floatyaw, BOOLp7)
end

function natives.SET_SYNCHRONIZED_SCENE_PHASE(intsceneID, floatphase)
    return native.call(0x734292F4F0ABF6D0, intsceneID, floatphase)
end

function natives.GET_SYNCHRONIZED_SCENE_PHASE(intsceneID)
    return native.call(0xE4A310B1D7FA73CC, intsceneID)
end

function natives.SET_SYNCHRONIZED_SCENE_RATE(intsceneID, floatrate)
    return native.call(0xB6C49F8A5E295A5D, intsceneID, floatrate)
end

function natives.GET_SYNCHRONIZED_SCENE_RATE(intsceneID)
    return native.call(0xD80932D577274D40, intsceneID)
end

function natives.SET_SYNCHRONIZED_SCENE_LOOPED(intsceneID, BOOLtoggle)
    return native.call(0xD9A897A4C6C2974F, intsceneID, BOOLtoggle)
end

function natives.IS_SYNCHRONIZED_SCENE_LOOPED(intsceneID)
    return native.call(0x62522002E0C391BA, intsceneID)
end

function natives.SET_SYNCHRONIZED_SCENE_HOLD_LAST_FRAME(intsceneID, BOOLtoggle)
    return native.call(0x394B9CD12435C981, intsceneID, BOOLtoggle)
end

function natives.IS_SYNCHRONIZED_SCENE_HOLD_LAST_FRAME(intsceneID)
    return native.call(0x7F2F4F13AC5257EF, intsceneID)
end

function natives.ATTACH_SYNCHRONIZED_SCENE_TO_ENTITY(intsceneID, Entityentity, intboneIndex)
    return native.call(0x272E4723B56A3B96, intsceneID, Entityentity, intboneIndex)
end

function natives.DETACH_SYNCHRONIZED_SCENE(intsceneID)
    return native.call(0x6D38F1F04CBB37EA, intsceneID)
end

function natives.TAKE_OWNERSHIP_OF_SYNCHRONIZED_SCENE(intscene)
    return native.call(0xCD9CC7E200A52A6F, intscene)
end

function natives.FORCE_PED_MOTION_STATE(Pedped, HashmotionStateHash, BOOLp2, intp3, BOOLp4)
    return native.call(0xF28965D04F570DCA, Pedped, HashmotionStateHash, BOOLp2, intp3, BOOLp4)
end

function natives.GET_PED_CURRENT_MOVEMENT_SPEED(Pedped, floatspeedX, floatspeedY)
    return native.call(0xF60165E1D2C5370B, Pedped, floatspeedX, floatspeedY)
end

function natives.SET_PED_MAX_MOVE_BLEND_RATIO(Pedped, floatvalue)
    return native.call(0x433083750C5E064A, Pedped, floatvalue)
end

function natives.SET_PED_MIN_MOVE_BLEND_RATIO(Pedped, floatvalue)
    return native.call(0x01A898D26E2333DD, Pedped, floatvalue)
end

function natives.SET_PED_MOVE_RATE_OVERRIDE(Pedped, floatvalue)
    return native.call(0x085BF80FA50A39D1, Pedped, floatvalue)
end

function natives._0x0B3E35AC043707D9(Anyp0, Anyp1)
    return native.call(0x0B3E35AC043707D9, Anyp0, Anyp1)
end

function natives._0x46B05BCAE43856B0(Pedped, intflag)
    return native.call(0x46B05BCAE43856B0, Pedped, intflag)
end

function natives.GET_PED_NEARBY_VEHICLES(Pedped, AnysizeAndVehs)
    return native.call(0xCFF869CBFA210D82, Pedped, AnysizeAndVehs)
end

function natives.GET_PED_NEARBY_PEDS(Pedped, AnysizeAndPeds, intignore)
    return native.call(0x23F8F5FC7E8C4A6B, Pedped, AnysizeAndPeds, intignore)
end

function natives.HAVE_ALL_STREAMING_REQUESTS_COMPLETED(Pedped)
    return native.call(0x7350823473013C02, Pedped)
end

function natives.IS_PED_USING_ACTION_MODE(Pedped)
    return native.call(0x00E73468D085F745, Pedped)
end

function natives.SET_PED_USING_ACTION_MODE(Pedped, BOOLp1, intp2, constcharaction)
    return native.call(0xD75ACCF5E0FB5367, Pedped, BOOLp1, intp2, constcharaction)
end

function natives.SET_MOVEMENT_MODE_OVERRIDE(Pedped, constcharname)
    return native.call(0x781DE8FA214E87D2, Pedped, constcharname)
end

function natives.SET_PED_CAPSULE(Pedped, floatvalue)
    return native.call(0x364DF566EC833DE2, Pedped, floatvalue)
end

function natives.REGISTER_PEDHEADSHOT(Pedped)
    return native.call(0x4462658788425076, Pedped)
end

function natives.REGISTER_PEDHEADSHOT_3(Pedped)
    return native.call(0xBA8805A1108A2515, Pedped)
end

function natives.REGISTER_PEDHEADSHOT_TRANSPARENT(Pedped)
    return native.call(0x953563CE563143AF, Pedped)
end

function natives.UNREGISTER_PEDHEADSHOT(intid)
    return native.call(0x96B1361D9B24C2FF, intid)
end

function natives.IS_PEDHEADSHOT_VALID(intid)
    return native.call(0xA0A9668F158129A2, intid)
end

function natives.IS_PEDHEADSHOT_READY(intid)
    return native.call(0x7085228842B13A67, intid)
end

function natives.GET_PEDHEADSHOT_TXD_STRING(intid)
    return native.call(0xDB4EACD4AD0A5D6B, intid)
end

function natives.REQUEST_PEDHEADSHOT_IMG_UPLOAD(intid)
    return native.call(0xF0DAEF2F545BEE25, intid)
end

function natives.RELEASE_PEDHEADSHOT_IMG_UPLOAD(intid)
    return native.call(0x5D517B27CF6ECD04, intid)
end

function natives.IS_PEDHEADSHOT_IMG_UPLOAD_AVAILABLE()
    return native.call(0xEBB376779A760AA8)
end

function natives.HAS_PEDHEADSHOT_IMG_UPLOAD_FAILED()
    return native.call(0x876928DDDFCCC9CD)
end

function natives.HAS_PEDHEADSHOT_IMG_UPLOAD_SUCCEEDED()
    return native.call(0xE8A169E666CBC541)
end

function natives.SET_PED_HEATSCALE_OVERRIDE(Pedped, floatheatScale)
    return native.call(0xC1F6EBF9A3D55538, Pedped, floatheatScale)
end

function natives.DISABLE_PED_HEATSCALE_OVERRIDE(Pedped)
    return native.call(0x600048C60D5C2C51, Pedped)
end

function natives.SPAWNPOINTS_START_SEARCH(floatp0, floatp1, floatp2, floatp3, floatp4, intinteriorFlags, floatscale, intduration)
    return native.call(0x2DF9038C90AD5264, floatp0, floatp1, floatp2, floatp3, floatp4, intinteriorFlags, floatscale, intduration)
end

function natives.SPAWNPOINTS_START_SEARCH_IN_ANGLED_AREA(floatx, floaty, floatz, floatp3, floatp4, floatp5, floatp6, intinteriorFlags, floatscale, intduration)
    return native.call(0xB2AFF10216DEFA2F, floatx, floaty, floatz, floatp3, floatp4, floatp5, floatp6, intinteriorFlags, floatscale, intduration)
end

function natives.SPAWNPOINTS_CANCEL_SEARCH()
    return native.call(0xFEE4A5459472A9F8)
end

function natives.SPAWNPOINTS_IS_SEARCH_ACTIVE()
    return native.call(0x3C67506996001F5E)
end

function natives.SPAWNPOINTS_IS_SEARCH_COMPLETE()
    return native.call(0xA586FBEB32A53DBB)
end

function natives.SPAWNPOINTS_IS_SEARCH_FAILED()
    return native.call(0xF445DE8DA80A1792)
end

function natives.SPAWNPOINTS_GET_NUM_SEARCH_RESULTS()
    return native.call(0xA635C11B8C44AFC2)
end

function natives.SPAWNPOINTS_GET_SEARCH_RESULT(intrandomInt, floatx, floaty, floatz)
    return native.call(0x280C7E3AC7F56E90, intrandomInt, floatx, floaty, floatz)
end

function natives.SPAWNPOINTS_GET_SEARCH_RESULT_FLAGS(intp0, intp1)
    return native.call(0xB782F8238512BAD5, intp0, intp1)
end

function natives.SET_IK_TARGET(Pedped, intikIndex, EntityentityLookAt, intboneLookAt, floatoffsetX, floatoffsetY, floatoffsetZ, Anyp7, intblendInDuration, intblendOutDuration)
    return native.call(0xC32779C16FCEECD9, Pedped, intikIndex, EntityentityLookAt, intboneLookAt, floatoffsetX, floatoffsetY, floatoffsetZ, Anyp7, intblendInDuration, intblendOutDuration)
end

function natives._0xED3C76ADFA6D07C4(Pedped)
    return native.call(0xED3C76ADFA6D07C4, Pedped)
end

function natives.REQUEST_ACTION_MODE_ASSET(constcharasset)
    return native.call(0x290E2780BB7AA598, constcharasset)
end

function natives.HAS_ACTION_MODE_ASSET_LOADED(constcharasset)
    return native.call(0xE4B5F4BF2CB24E65, constcharasset)
end

function natives.REMOVE_ACTION_MODE_ASSET(constcharasset)
    return native.call(0x13E940F88470FA51, constcharasset)
end

function natives.REQUEST_STEALTH_MODE_ASSET(constcharasset)
    return native.call(0x2A0A62FCDEE16D4F, constcharasset)
end

function natives.HAS_STEALTH_MODE_ASSET_LOADED(constcharasset)
    return native.call(0xE977FC5B08AF3441, constcharasset)
end

function natives.REMOVE_STEALTH_MODE_ASSET(constcharasset)
    return native.call(0x9219857D21F0E842, constcharasset)
end

function natives.SET_PED_LOD_MULTIPLIER(Pedped, floatmultiplier)
    return native.call(0xDC2C5C242AAC342B, Pedped, floatmultiplier)
end

function natives.SET_PED_CAN_LOSE_PROPS_ON_DAMAGE(Pedped, BOOLtoggle, intp2)
    return native.call(0xE861D0B05C7662B8, Pedped, BOOLtoggle, intp2)
end

function natives.SET_FORCE_FOOTSTEP_UPDATE(Pedped, BOOLtoggle)
    return native.call(0x129466ED55140F8D, Pedped, BOOLtoggle)
end

function natives.SET_FORCE_STEP_TYPE(Pedped, BOOLp1, inttype, intp3)
    return native.call(0xCB968B53FC7F916D, Pedped, BOOLp1, inttype, intp3)
end

function natives.IS_ANY_HOSTILE_PED_NEAR_POINT(Pedped, floatx, floaty, floatz, floatradius)
    return native.call(0x68772DB2B2526F9F, Pedped, floatx, floaty, floatz, floatradius)
end

function natives.SET_PED_CAN_PLAY_IN_CAR_IDLES(Pedped, BOOLtoggle)
    return native.call(0x820E9892A77E97CD, Pedped, BOOLtoggle)
end

function natives.IS_TARGET_PED_IN_PERCEPTION_AREA(Pedped, PedtargetPed, floatp2, floatp3, floatp4, floatp5)
    return native.call(0x06087579E7AA85A9, Pedped, PedtargetPed, floatp2, floatp3, floatp4, floatp5)
end

function natives.SET_POP_CONTROL_SPHERE_THIS_FRAME(floatx, floaty, floatz, floatmin, floatmax)
    return native.call(0xD8C3BE3EE94CAF2D, floatx, floaty, floatz, floatmin, floatmax)
end

function natives._0xD33DAA36272177C4(Pedped)
    return native.call(0xD33DAA36272177C4, Pedped)
end

function natives.SET_DISABLE_PED_FALL_DAMAGE(Pedped, BOOLtoggle)
    return native.call(0x711794453CFD692B, Pedped, BOOLtoggle)
end

function natives._0x83A169EABCDB10A2(Anyp0, Anyp1)
    return native.call(0x83A169EABCDB10A2, Anyp0, Anyp1)
end

function natives.SET_PED_STEER_BIAS(Pedped, floatvalue)
    return native.call(0x288DF530C92DAD6F, Pedped, floatvalue)
end

function natives.IS_PED_SWAPPING_WEAPON(PedPed)
    return native.call(0x3795688A307E1EB6, PedPed)
end

function natives._0x0F62619393661D6E(Anyp0, Anyp1, Anyp2)
    return native.call(0x0F62619393661D6E, Anyp0, Anyp1, Anyp2)
end

function natives._0xDFE68C4B787E1BFB(Pedped)
    return native.call(0xDFE68C4B787E1BFB, Pedped)
end

function natives.SET_ENABLE_SCUBA_GEAR_LIGHT(Pedped, BOOLtoggle)
    return native.call(0xEE2476B9EE4A094F, Pedped, BOOLtoggle)
end

function natives.IS_SCUBA_GEAR_LIGHT_ENABLED(Pedped)
    return native.call(0x88274C11CF0D866D, Pedped)
end

function natives.CLEAR_FACIAL_CLIPSET_OVERRIDE(Pedped)
    return native.call(0x637822DC2AFEEBF8, Pedped)
end

function natives._0xFAB944D4D481ACCB(Pedped, BOOLtoggle)
    return native.call(0xFAB944D4D481ACCB, Pedped, BOOLtoggle)
end

function natives.ADD_ROPE(floatx, floaty, floatz, floatrotX, floatrotY, floatrotZ, floatlength, intropeType, floatmaxLength, floatminLength, floatwindingSpeed, BOOLp11, BOOLp12, BOOLrigid, floatp14, BOOLbreakWhenShot, AnyunkPtr)
    return native.call(0xE832D760399EB220, floatx, floaty, floatz, floatrotX, floatrotY, floatrotZ, floatlength, intropeType, floatmaxLength, floatminLength, floatwindingSpeed, BOOLp11, BOOLp12, BOOLrigid, floatp14, BOOLbreakWhenShot, AnyunkPtr)
end

function natives.DELETE_ROPE(intropeId)
    return native.call(0x52B4829281364649, intropeId)
end

function natives.DELETE_CHILD_ROPE(intropeId)
    return native.call(0xAA5D6B1888E4DB20, intropeId)
end

function natives.DOES_ROPE_EXIST(intropeId)
    return native.call(0xFD5448BE3111ED96, intropeId)
end

function natives._0xA1AE736541B0FCA3(intropeId, BOOLp1)
    return native.call(0xA1AE736541B0FCA3, intropeId, BOOLp1)
end

function natives.ROPE_DRAW_SHADOW_ENABLED(intropeId, BOOLtoggle)
    return native.call(0xF159A63806BB5BA8, intropeId, BOOLtoggle)
end

function natives.LOAD_ROPE_DATA(intropeId, constcharrope_preset)
    return native.call(0xCBB203C04D1ABD27, intropeId, constcharrope_preset)
end

function natives.PIN_ROPE_VERTEX(intropeId, intvertex, floatx, floaty, floatz)
    return native.call(0x2B320CF14146B69A, intropeId, intvertex, floatx, floaty, floatz)
end

function natives.UNPIN_ROPE_VERTEX(intropeId, intvertex)
    return native.call(0x4B5AE2EEE4A8F180, intropeId, intvertex)
end

function natives.GET_ROPE_VERTEX_COUNT(intropeId)
    return native.call(0x3655F544CD30F0B5, intropeId)
end

function natives.ATTACH_ENTITIES_TO_ROPE(intropeId, Entityent1, Entityent2, floatent1_x, floatent1_y, floatent1_z, floatent2_x, floatent2_y, floatent2_z, floatlength, BOOLp10, BOOLp11, Anyp12, Anyp13)
    return native.call(0x3D95EC8B6D940AC3, intropeId, Entityent1, Entityent2, floatent1_x, floatent1_y, floatent1_z, floatent2_x, floatent2_y, floatent2_z, floatlength, BOOLp10, BOOLp11, Anyp12, Anyp13)
end

function natives.ATTACH_ROPE_TO_ENTITY(intropeId, Entityentity, floatx, floaty, floatz, BOOLp5)
    return native.call(0x4B490A6832559A65, intropeId, Entityentity, floatx, floaty, floatz, BOOLp5)
end

function natives.DETACH_ROPE_FROM_ENTITY(intropeId, Entityentity)
    return native.call(0xBCF3026912A8647D, intropeId, Entityentity)
end

function natives.ROPE_SET_UPDATE_PINVERTS(intropeId)
    return native.call(0xC8D667EE52114ABA, intropeId)
end

function natives.ROPE_SET_UPDATE_ORDER(intropeId, Anyp1)
    return native.call(0xDC57A637A20006ED, intropeId, Anyp1)
end

function natives._0x36CCB9BE67B970FD(intropeId, BOOLp1)
    return native.call(0x36CCB9BE67B970FD, intropeId, BOOLp1)
end

function natives._0x84DE3B5FB3E666F0(intropeId)
    return native.call(0x84DE3B5FB3E666F0, intropeId)
end

function natives.GET_ROPE_LAST_VERTEX_COORD(intropeId)
    return native.call(0x21BB0FBD3E217C2D, intropeId)
end

function natives.GET_ROPE_VERTEX_COORD(intropeId, intvertex)
    return native.call(0xEA61CA8E80F09E4D, intropeId, intvertex)
end

function natives.START_ROPE_WINDING(intropeId)
    return native.call(0x1461C72C889E343E, intropeId)
end

function natives.STOP_ROPE_WINDING(intropeId)
    return native.call(0xCB2D4AB84A19AA7C, intropeId)
end

function natives.START_ROPE_UNWINDING_FRONT(intropeId)
    return native.call(0x538D1179EC1AA9A9, intropeId)
end

function natives.STOP_ROPE_UNWINDING_FRONT(intropeId)
    return native.call(0xFFF3A50779EFBBB3, intropeId)
end

function natives.ROPE_CONVERT_TO_SIMPLE(intropeId)
    return native.call(0x5389D48EFA2F079A, intropeId)
end

function natives.ROPE_LOAD_TEXTURES()
    return native.call(0x9B9039DBF2D258C1)
end

function natives.ROPE_ARE_TEXTURES_LOADED()
    return native.call(0xF2D0E6A75CC05597)
end

function natives.ROPE_UNLOAD_TEXTURES()
    return native.call(0x6CE36C35C1AC8163)
end

function natives.DOES_ROPE_BELONG_TO_THIS_SCRIPT(intropeId)
    return native.call(0x271C9D3ACA5D6409, intropeId)
end

function natives._0xBC0CE682D4D05650(intropeId, intp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, floatp10, floatp11, floatp12, floatp13)
    return native.call(0xBC0CE682D4D05650, intropeId, intp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, floatp10, floatp11, floatp12, floatp13)
end

function natives.ROPE_CHANGE_SCRIPT_OWNER(Anyp0, BOOLp1, BOOLp2)
    return native.call(0xB1B6216CA2E7B55E, Anyp0, BOOLp1, BOOLp2)
end

function natives._0xB743F735C03D7810(intropeId, intp1)
    return native.call(0xB743F735C03D7810, intropeId, intp1)
end

function natives.ROPE_GET_DISTANCE_BETWEEN_ENDS(intropeId)
    return native.call(0x73040398DFF9A4A6, intropeId)
end

function natives.ROPE_FORCE_LENGTH(intropeId, floatlength)
    return native.call(0xD009F759A723DB1B, intropeId, floatlength)
end

function natives.ROPE_RESET_LENGTH(intropeId, floatlength)
    return native.call(0xC16DE94D9BEA14A0, intropeId, floatlength)
end

function natives.APPLY_IMPULSE_TO_CLOTH(floatposX, floatposY, floatposZ, floatvecX, floatvecY, floatvecZ, floatimpulse)
    return native.call(0xE37F721824571784, floatposX, floatposY, floatposZ, floatvecX, floatvecY, floatvecZ, floatimpulse)
end

function natives.SET_DAMPING(Entityentity, intvertex, floatvalue)
    return native.call(0xEEA3B200A6FEB65B, Entityentity, intvertex, floatvalue)
end

function natives.ACTIVATE_PHYSICS(Entityentity)
    return native.call(0x710311ADF0E20730, Entityentity)
end

function natives.SET_CGOFFSET(Entityentity, floatx, floaty, floatz)
    return native.call(0xD8FA3908D7B86904, Entityentity, floatx, floaty, floatz)
end

function natives.GET_CGOFFSET(Entityentity)
    return native.call(0x8214A4B5A7A33612, Entityentity)
end

function natives.SET_CG_AT_BOUNDCENTER(Entityentity)
    return native.call(0xBE520D9761FF811F, Entityentity)
end

function natives.BREAK_ENTITY_GLASS(Entityentity, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, Anyp9, BOOLp10)
    return native.call(0x2E648D16F6E308F3, Entityentity, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, Anyp9, BOOLp10)
end

function natives.GET_HAS_OBJECT_FRAG_INST(Objectobject)
    return native.call(0x0C112765300C7E1E, Objectobject)
end

function natives.SET_DISABLE_BREAKING(Objectobject, BOOLtoggle)
    return native.call(0x5CEC1A84620E7D5B, Objectobject, BOOLtoggle)
end

function natives._0xCC6E963682533882(Objectobject)
    return native.call(0xCC6E963682533882, Objectobject)
end

function natives.SET_DISABLE_FRAG_DAMAGE(Objectobject, BOOLtoggle)
    return native.call(0x01BA3AED21C16CFB, Objectobject, BOOLtoggle)
end

function natives._0x15F944730C832252(Entityentity, BOOLtoggle)
    return native.call(0x15F944730C832252, Entityentity, BOOLtoggle)
end

function natives._0x9EBD751E5787BAF2(BOOLp0)
    return native.call(0x9EBD751E5787BAF2, BOOLp0)
end

function natives.SET_LAUNCH_CONTROL_ENABLED(BOOLtoggle)
    return native.call(0xAA6A6098851C396F, BOOLtoggle)
end

function natives.GET_PLAYER_PED(Playerplayer)
    return native.call(0x43A66C31C68491C0, Playerplayer)
end

function natives.GET_PLAYER_PED_SCRIPT_INDEX(Playerplayer)
    return native.call(0x50FAC3A3E030A6E1, Playerplayer)
end

function natives.SET_PLAYER_MODEL(Playerplayer, Hashmodel)
    return native.call(0x00A1CADD00108836, Playerplayer, Hashmodel)
end

function natives.CHANGE_PLAYER_PED(Playerplayer, Pedped, BOOLp2, BOOLresetDamage)
    return native.call(0x048189FAC643DEEE, Playerplayer, Pedped, BOOLp2, BOOLresetDamage)
end

function natives.GET_PLAYER_RGB_COLOUR(Playerplayer, intr, intg, intb)
    return native.call(0xE902EF951DCE178F, Playerplayer, intr, intg, intb)
end

function natives.GET_NUMBER_OF_PLAYERS()
    return native.call(0x407C7F91DDB46C16)
end

function natives.GET_PLAYER_TEAM(Playerplayer)
    return native.call(0x37039302F4E0A008, Playerplayer)
end

function natives.SET_PLAYER_TEAM(Playerplayer, intteam)
    return native.call(0x0299FA38396A4940, Playerplayer, intteam)
end

function natives.GET_NUMBER_OF_PLAYERS_IN_TEAM(intteam)
    return native.call(0x1FC200409F10E6F1, intteam)
end

function natives.GET_PLAYER_NAME(Playerplayer)
    return native.call(0x6D0DE6A7B5DA71F8, Playerplayer)
end

function natives.GET_WANTED_LEVEL_RADIUS(Playerplayer)
    return native.call(0x085DEB493BE80812, Playerplayer)
end

function natives.GET_PLAYER_WANTED_CENTRE_POSITION(Playerplayer)
    return native.call(0x0C92BA89F1AF26F8, Playerplayer)
end

function natives.SET_PLAYER_WANTED_CENTRE_POSITION(Playerplayer, Vector3position, BOOLp2, BOOLp3)
    return native.call(0x520E541A97A13354, Playerplayer, Vector3position, BOOLp2, BOOLp3)
end

function natives.GET_WANTED_LEVEL_THRESHOLD(intwantedLevel)
    return native.call(0xFDD179EAF45B556C, intwantedLevel)
end

function natives.SET_PLAYER_WANTED_LEVEL(Playerplayer, intwantedLevel, BOOLdisableNoMission)
    return native.call(0x39FF19C64EF7DA5B, Playerplayer, intwantedLevel, BOOLdisableNoMission)
end

function natives.SET_PLAYER_WANTED_LEVEL_NO_DROP(Playerplayer, intwantedLevel, BOOLp2)
    return native.call(0x340E61DE7F471565, Playerplayer, intwantedLevel, BOOLp2)
end

function natives.SET_PLAYER_WANTED_LEVEL_NOW(Playerplayer, BOOLp1)
    return native.call(0xE0A7D1E497FFCD6F, Playerplayer, BOOLp1)
end

function natives.ARE_PLAYER_FLASHING_STARS_ABOUT_TO_DROP(Playerplayer)
    return native.call(0xAFAF86043E5874E9, Playerplayer)
end

function natives.ARE_PLAYER_STARS_GREYED_OUT(Playerplayer)
    return native.call(0x0A6EB355EE14A2DB, Playerplayer)
end

function natives._0x7E07C78925D5FD96(Anyp0)
    return native.call(0x7E07C78925D5FD96, Anyp0)
end

function natives.SET_DISPATCH_COPS_FOR_PLAYER(Playerplayer, BOOLtoggle)
    return native.call(0xDB172424876553F4, Playerplayer, BOOLtoggle)
end

function natives.IS_PLAYER_WANTED_LEVEL_GREATER(Playerplayer, intwantedLevel)
    return native.call(0x238DB2A2C23EE9EF, Playerplayer, intwantedLevel)
end

function natives.CLEAR_PLAYER_WANTED_LEVEL(Playerplayer)
    return native.call(0xB302540597885499, Playerplayer)
end

function natives.IS_PLAYER_DEAD(Playerplayer)
    return native.call(0x424D4687FA1E5652, Playerplayer)
end

function natives.IS_PLAYER_PRESSING_HORN(Playerplayer)
    return native.call(0xFA1E2BF8B10598F9, Playerplayer)
end

function natives.SET_PLAYER_CONTROL(Playerplayer, BOOLbHasControl, intflags)
    return native.call(0x8D32347D6D4C40A2, Playerplayer, BOOLbHasControl, intflags)
end

function natives.GET_PLAYER_WANTED_LEVEL(Playerplayer)
    return native.call(0xE28E54788CE8F12D, Playerplayer)
end

function natives.SET_MAX_WANTED_LEVEL(intmaxWantedLevel)
    return native.call(0xAA5F02DB48D704B9, intmaxWantedLevel)
end

function natives.SET_POLICE_RADAR_BLIPS(BOOLtoggle)
    return native.call(0x43286D561B72B8BF, BOOLtoggle)
end

function natives.SET_POLICE_IGNORE_PLAYER(Playerplayer, BOOLtoggle)
    return native.call(0x32C62AA929C2DA6A, Playerplayer, BOOLtoggle)
end

function natives.IS_PLAYER_PLAYING(Playerplayer)
    return native.call(0x5E9564D8246B909A, Playerplayer)
end

function natives.SET_EVERYONE_IGNORE_PLAYER(Playerplayer, BOOLtoggle)
    return native.call(0x8EEDA153AD141BA4, Playerplayer, BOOLtoggle)
end

function natives.SET_ALL_RANDOM_PEDS_FLEE(Playerplayer, BOOLtoggle)
    return native.call(0x056E0FE8534C2949, Playerplayer, BOOLtoggle)
end

function natives.SET_ALL_RANDOM_PEDS_FLEE_THIS_FRAME(Playerplayer)
    return native.call(0x471D2FF42A94B4F2, Playerplayer)
end

function natives._0xDE45D1A1EF45EE61(Playerplayer, BOOLtoggle)
    return native.call(0xDE45D1A1EF45EE61, Playerplayer, BOOLtoggle)
end

function natives._0xC3376F42B1FACCC6(Playerplayer)
    return native.call(0xC3376F42B1FACCC6, Playerplayer)
end

function natives._0xFAC75988A7D078D3(Playerplayer)
    return native.call(0xFAC75988A7D078D3, Playerplayer)
end

function natives.SET_IGNORE_LOW_PRIORITY_SHOCKING_EVENTS(Playerplayer, BOOLtoggle)
    return native.call(0x596976B02B6B5700, Playerplayer, BOOLtoggle)
end

function natives.SET_WANTED_LEVEL_MULTIPLIER(floatmultiplier)
    return native.call(0x020E5F00CDA207BA, floatmultiplier)
end

function natives.SET_WANTED_LEVEL_DIFFICULTY(Playerplayer, floatdifficulty)
    return native.call(0x9B0BB33B04405E7A, Playerplayer, floatdifficulty)
end

function natives.RESET_WANTED_LEVEL_DIFFICULTY(Playerplayer)
    return native.call(0xB9D0DD990DC141DD, Playerplayer)
end

function natives.GET_WANTED_LEVEL_PAROLE_DURATION()
    return native.call(0xA72200F51875FEA4)
end

function natives.SET_WANTED_LEVEL_HIDDEN_EVASION_TIME(Playerplayer, intwantedLevel, intlossTime)
    return native.call(0x49B856B1360C47C7, Playerplayer, intwantedLevel, intlossTime)
end

function natives.RESET_WANTED_LEVEL_HIDDEN_EVASION_TIME(Playerplayer)
    return native.call(0x823EC8E82BA45986, Playerplayer)
end

function natives.START_FIRING_AMNESTY(intduration)
    return native.call(0xBF9BD71691857E48, intduration)
end

function natives.REPORT_CRIME(Playerplayer, intcrimeType, intwantedLvlThresh)
    return native.call(0xE9B09589827545E7, Playerplayer, intcrimeType, intwantedLvlThresh)
end

function natives.SUPPRESS_CRIME_THIS_FRAME(Playerplayer, intcrimeType)
    return native.call(0x9A987297ED8BD838, Playerplayer, intcrimeType)
end

function natives._0xBC9490CA15AEA8FB(Playerplayer)
    return native.call(0xBC9490CA15AEA8FB, Playerplayer)
end

function natives._0x4669B3ED80F24B4E(Playerplayer)
    return native.call(0x4669B3ED80F24B4E, Playerplayer)
end

function natives._0x2F41A3BAE005E5FA(Anyp0, Anyp1)
    return native.call(0x2F41A3BAE005E5FA, Anyp0, Anyp1)
end

function natives._0xAD73CE5A09E42D12(Playerplayer)
    return native.call(0xAD73CE5A09E42D12, Playerplayer)
end

function natives._0x36F1B38855F2A8DF(Playerplayer)
    return native.call(0x36F1B38855F2A8DF, Playerplayer)
end

function natives.REPORT_POLICE_SPOTTED_PLAYER(Playerplayer)
    return native.call(0xDC64D2C53493ED12, Playerplayer)
end

function natives._0xB45EFF719D8427A6(floatp0)
    return native.call(0xB45EFF719D8427A6, floatp0)
end

function natives._0x0032A6DBA562C518()
    return native.call(0x0032A6DBA562C518)
end

function natives.CAN_PLAYER_START_MISSION(Playerplayer)
    return native.call(0xDE7465A27D403C06, Playerplayer)
end

function natives.IS_PLAYER_READY_FOR_CUTSCENE(Playerplayer)
    return native.call(0x908CBECC2CAA3690, Playerplayer)
end

function natives.IS_PLAYER_TARGETTING_ENTITY(Playerplayer, Entityentity)
    return native.call(0x7912F7FC4F6264B6, Playerplayer, Entityentity)
end

function natives.GET_PLAYER_TARGET_ENTITY(Playerplayer, Entityentity)
    return native.call(0x13EDE1A5DBF797C9, Playerplayer, Entityentity)
end

function natives.IS_PLAYER_FREE_AIMING(Playerplayer)
    return native.call(0x2E397FD2ECD37C87, Playerplayer)
end

function natives.IS_PLAYER_FREE_AIMING_AT_ENTITY(Playerplayer, Entityentity)
    return native.call(0x3C06B5C839B38F7B, Playerplayer, Entityentity)
end

function natives.GET_ENTITY_PLAYER_IS_FREE_AIMING_AT(Playerplayer, Entityentity)
    return native.call(0x2975C866E6713290, Playerplayer, Entityentity)
end

function natives.SET_PLAYER_LOCKON_RANGE_OVERRIDE(Playerplayer, floatrange)
    return native.call(0x29961D490E5814FD, Playerplayer, floatrange)
end

function natives.SET_PLAYER_CAN_DO_DRIVE_BY(Playerplayer, BOOLtoggle)
    return native.call(0x6E8834B52EC20C77, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_CAN_BE_HASSLED_BY_GANGS(Playerplayer, BOOLtoggle)
    return native.call(0xD5E460AD7020A246, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_CAN_USE_COVER(Playerplayer, BOOLtoggle)
    return native.call(0xD465A8599DFF6814, Playerplayer, BOOLtoggle)
end

function natives.GET_MAX_WANTED_LEVEL()
    return native.call(0x462E0DB9B137DC5F)
end

function natives.IS_PLAYER_TARGETTING_ANYTHING(Playerplayer)
    return native.call(0x78CFE51896B6B8A4, Playerplayer)
end

function natives.SET_PLAYER_SPRINT(Playerplayer, BOOLtoggle)
    return native.call(0xA01B8075D8B92DF4, Playerplayer, BOOLtoggle)
end

function natives.RESET_PLAYER_STAMINA(Playerplayer)
    return native.call(0xA6F312FCCE9C1DFE, Playerplayer)
end

function natives.RESTORE_PLAYER_STAMINA(Playerplayer, floatp1)
    return native.call(0xA352C1B864CAFD33, Playerplayer, floatp1)
end

function natives.GET_PLAYER_SPRINT_STAMINA_REMAINING(Playerplayer)
    return native.call(0x3F9F16F8E65A7ED7, Playerplayer)
end

function natives.GET_PLAYER_SPRINT_TIME_REMAINING(Playerplayer)
    return native.call(0x1885BC9B108B4C99, Playerplayer)
end

function natives.GET_PLAYER_UNDERWATER_TIME_REMAINING(Playerplayer)
    return native.call(0xA1FCF8E6AF40B731, Playerplayer)
end

function natives.SET_PLAYER_UNDERWATER_TIME_REMAINING(Playerplayer, floattime)
    return native.call(0xA0D3E4F7AAFB7E78, Playerplayer, floattime)
end

function natives.GET_PLAYER_GROUP(Playerplayer)
    return native.call(0x0D127585F77030AF, Playerplayer)
end

function natives.GET_PLAYER_MAX_ARMOUR(Playerplayer)
    return native.call(0x92659B4CE1863CB3, Playerplayer)
end

function natives.IS_PLAYER_CONTROL_ON(Playerplayer)
    return native.call(0x49C32D60007AFA47, Playerplayer)
end

function natives.IS_PLAYER_CAM_CONTROL_DISABLED()
    return native.call(0x7C814D2FB49F40C0)
end

function natives.IS_PLAYER_SCRIPT_CONTROL_ON(Playerplayer)
    return native.call(0x8A876A65283DD7D7, Playerplayer)
end

function natives.IS_PLAYER_CLIMBING(Playerplayer)
    return native.call(0x95E8F73DC65EFB9C, Playerplayer)
end

function natives.IS_PLAYER_BEING_ARRESTED(Playerplayer, BOOLatArresting)
    return native.call(0x388A47C51ABDAC8E, Playerplayer, BOOLatArresting)
end

function natives.RESET_PLAYER_ARREST_STATE(Playerplayer)
    return native.call(0x2D03E13C460760D6, Playerplayer)
end

function natives.GET_PLAYERS_LAST_VEHICLE()
    return native.call(0xB6997A7EB3F5C8C0)
end

function natives.GET_PLAYER_INDEX()
    return native.call(0xA5EDC40EF369B48D)
end

function natives.INT_TO_PLAYERINDEX(intvalue)
    return native.call(0x41BD2A6B006AF756, intvalue)
end

function natives.INT_TO_PARTICIPANTINDEX(intvalue)
    return native.call(0x9EC6603812C24710, intvalue)
end

function natives.GET_TIME_SINCE_PLAYER_HIT_VEHICLE(Playerplayer)
    return native.call(0x5D35ECF3A81A0EE0, Playerplayer)
end

function natives.GET_TIME_SINCE_PLAYER_HIT_PED(Playerplayer)
    return native.call(0xE36A25322DC35F42, Playerplayer)
end

function natives.GET_TIME_SINCE_PLAYER_DROVE_ON_PAVEMENT(Playerplayer)
    return native.call(0xD559D2BE9E37853B, Playerplayer)
end

function natives.GET_TIME_SINCE_PLAYER_DROVE_AGAINST_TRAFFIC(Playerplayer)
    return native.call(0xDB89591E290D9182, Playerplayer)
end

function natives.IS_PLAYER_FREE_FOR_AMBIENT_TASK(Playerplayer)
    return native.call(0xDCCFD3F106C36AB4, Playerplayer)
end

function natives.PLAYER_ID()
    return native.call(0x4F8644AF03D0E0D6)
end

function natives.PLAYER_PED_ID()
    return native.call(0xD80958FC74E988A6)
end

function natives.NETWORK_PLAYER_ID_TO_INT()
    return native.call(0xEE68096F9F37341E)
end

function natives.HAS_FORCE_CLEANUP_OCCURRED(intcleanupFlags)
    return native.call(0xC968670BFACE42D9, intcleanupFlags)
end

function natives.FORCE_CLEANUP(intcleanupFlags)
    return native.call(0xBC8983F38F78ED51, intcleanupFlags)
end

function natives.FORCE_CLEANUP_FOR_ALL_THREADS_WITH_THIS_NAME(constcharname, intcleanupFlags)
    return native.call(0x4C68DDDDF0097317, constcharname, intcleanupFlags)
end

function natives.FORCE_CLEANUP_FOR_THREAD_WITH_THIS_ID(intid, intcleanupFlags)
    return native.call(0xF745B37630DF176B, intid, intcleanupFlags)
end

function natives.GET_CAUSE_OF_MOST_RECENT_FORCE_CLEANUP()
    return native.call(0x9A41CF4674A12272)
end

function natives.SET_PLAYER_MAY_ONLY_ENTER_THIS_VEHICLE(Playerplayer, Vehiclevehicle)
    return native.call(0x8026FF78F208978A, Playerplayer, Vehiclevehicle)
end

function natives.SET_PLAYER_MAY_NOT_ENTER_ANY_VEHICLE(Playerplayer)
    return native.call(0x1DE37BBF9E9CC14A, Playerplayer)
end

function natives.GIVE_ACHIEVEMENT_TO_PLAYER(intachievementId)
    return native.call(0xBEC7076D64130195, intachievementId)
end

function natives.SET_ACHIEVEMENT_PROGRESS(intachievementId, intprogress)
    return native.call(0xC2AFFFDABBDC2C5C, intachievementId, intprogress)
end

function natives.GET_ACHIEVEMENT_PROGRESS(intachievementId)
    return native.call(0x1C186837D0619335, intachievementId)
end

function natives.HAS_ACHIEVEMENT_BEEN_PASSED(intachievementId)
    return native.call(0x867365E111A3B6EB, intachievementId)
end

function natives.IS_PLAYER_ONLINE()
    return native.call(0xF25D331DC2627BBC)
end

function natives.IS_PLAYER_LOGGING_IN_NP()
    return native.call(0x74556E1420867ECA)
end

function natives.DISPLAY_SYSTEM_SIGNIN_UI(BOOLunk)
    return native.call(0x94DD7888C10A979E, BOOLunk)
end

function natives.IS_SYSTEM_UI_BEING_DISPLAYED()
    return native.call(0x5D511E3867C87139)
end

function natives.SET_PLAYER_INVINCIBLE(Playerplayer, BOOLtoggle)
    return native.call(0x239528EACDC3E7DE, Playerplayer, BOOLtoggle)
end

function natives.GET_PLAYER_INVINCIBLE(Playerplayer)
    return native.call(0xB721981B2B939E07, Playerplayer)
end

function natives._0xDCC07526B8EC45AF(Playerplayer)
    return native.call(0xDCC07526B8EC45AF, Playerplayer)
end

function natives.SET_PLAYER_INVINCIBLE_KEEP_RAGDOLL_ENABLED(Playerplayer, BOOLtoggle)
    return native.call(0x6BC97F4F4BB3C04B, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_CAN_COLLECT_DROPPED_MONEY(Playerplayer, BOOLp1)
    return native.call(0xCAC57395B151135F, Playerplayer, BOOLp1)
end

function natives.REMOVE_PLAYER_HELMET(Playerplayer, BOOLp2)
    return native.call(0xF3AC26D3CC576528, Playerplayer, BOOLp2)
end

function natives.GIVE_PLAYER_RAGDOLL_CONTROL(Playerplayer, BOOLtoggle)
    return native.call(0x3C49C870E66F0A28, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_LOCKON(Playerplayer, BOOLtoggle)
    return native.call(0x5C8B2F450EE4328E, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_TARGETING_MODE(inttargetMode)
    return native.call(0xB1906895227793F3, inttargetMode)
end

function natives.SET_PLAYER_TARGET_LEVEL(inttargetLevel)
    return native.call(0x5702B917B99DB1CD, inttargetLevel)
end

function natives._0xB9CF1F793A9F1BF1()
    return native.call(0xB9CF1F793A9F1BF1)
end

function natives._0xCB645E85E97EA48B()
    return native.call(0xCB645E85E97EA48B)
end

function natives.CLEAR_PLAYER_HAS_DAMAGED_AT_LEAST_ONE_PED(Playerplayer)
    return native.call(0xF0B67A4DE6AB5F98, Playerplayer)
end

function natives.HAS_PLAYER_DAMAGED_AT_LEAST_ONE_PED(Playerplayer)
    return native.call(0x20CE80B0C2BF4ACC, Playerplayer)
end

function natives.CLEAR_PLAYER_HAS_DAMAGED_AT_LEAST_ONE_NON_ANIMAL_PED(Playerplayer)
    return native.call(0x4AACB96203D11A31, Playerplayer)
end

function natives.HAS_PLAYER_DAMAGED_AT_LEAST_ONE_NON_ANIMAL_PED(Playerplayer)
    return native.call(0xE4B90F367BD81752, Playerplayer)
end

function natives.SET_AIR_DRAG_MULTIPLIER_FOR_PLAYERS_VEHICLE(Playerplayer, floatmultiplier)
    return native.call(0xCA7DC8329F0A1E9E, Playerplayer, floatmultiplier)
end

function natives.SET_SWIM_MULTIPLIER_FOR_PLAYER(Playerplayer, floatmultiplier)
    return native.call(0xA91C6F0FF7D16A13, Playerplayer, floatmultiplier)
end

function natives.SET_RUN_SPRINT_MULTIPLIER_FOR_PLAYER(Playerplayer, floatmultiplier)
    return native.call(0x6DB47AA77FD94E09, Playerplayer, floatmultiplier)
end

function natives.GET_TIME_SINCE_LAST_ARREST()
    return native.call(0x5063F92F07C2A316)
end

function natives.GET_TIME_SINCE_LAST_DEATH()
    return native.call(0xC7034807558DDFCA)
end

function natives.ASSISTED_MOVEMENT_CLOSE_ROUTE()
    return native.call(0xAEBF081FFC0A0E5E)
end

function natives.ASSISTED_MOVEMENT_FLUSH_ROUTE()
    return native.call(0x8621390F0CDCFE1F)
end

function natives.SET_PLAYER_FORCED_AIM(Playerplayer, BOOLtoggle)
    return native.call(0x0FEE4F80AC44A726, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_FORCED_ZOOM(Playerplayer, BOOLtoggle)
    return native.call(0x75E7D505F2B15902, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_FORCE_SKIP_AIM_INTRO(Playerplayer, BOOLtoggle)
    return native.call(0x7651BC64AE59E128, Playerplayer, BOOLtoggle)
end

function natives.DISABLE_PLAYER_FIRING(Playerplayer, BOOLtoggle)
    return native.call(0x5E6CC07646BBEAB8, Playerplayer, BOOLtoggle)
end

function natives._0xB885852C39CC265D()
    return native.call(0xB885852C39CC265D)
end

function natives.SET_DISABLE_AMBIENT_MELEE_MOVE(Playerplayer, BOOLtoggle)
    return native.call(0x2E8AABFA40A84F8C, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_MAX_ARMOUR(Playerplayer, intvalue)
    return native.call(0x77DFCCF5948B8C71, Playerplayer, intvalue)
end

function natives.SPECIAL_ABILITY_ACTIVATE(Playerplayer, intp1)
    return native.call(0x821FDC827D6F4090, Playerplayer, intp1)
end

function natives.SET_SPECIAL_ABILITY(Playerplayer, intp1, Anyp2)
    return native.call(0xB214D570EAD7F81A, Playerplayer, intp1, Anyp2)
end

function natives.SPECIAL_ABILITY_DEPLETE(Playerplayer, intp1)
    return native.call(0x17F7471EACA78290, Playerplayer, intp1)
end

function natives.SPECIAL_ABILITY_DEACTIVATE(Playerplayer, Anyp1)
    return native.call(0xD6A953C6D1492057, Playerplayer, Anyp1)
end

function natives.SPECIAL_ABILITY_DEACTIVATE_FAST(Playerplayer, Anyp1)
    return native.call(0x9CB5CE07A3968D5A, Playerplayer, Anyp1)
end

function natives.SPECIAL_ABILITY_RESET(Playerplayer, Anyp1)
    return native.call(0x375F0E738F861A94, Playerplayer, Anyp1)
end

function natives.SPECIAL_ABILITY_CHARGE_ON_MISSION_FAILED(Playerplayer, Anyp1)
    return native.call(0xC9A763D8FE87436A, Playerplayer, Anyp1)
end

function natives.SPECIAL_ABILITY_CHARGE_SMALL(Playerplayer, BOOLp1, BOOLp2, Anyp3)
    return native.call(0x2E7B9B683481687D, Playerplayer, BOOLp1, BOOLp2, Anyp3)
end

function natives.SPECIAL_ABILITY_CHARGE_MEDIUM(Playerplayer, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xF113E3AA9BC54613, Playerplayer, BOOLp1, BOOLp2, Anyp3)
end

function natives.SPECIAL_ABILITY_CHARGE_LARGE(Playerplayer, BOOLp1, BOOLp2, Anyp3)
    return native.call(0xF733F45FA4497D93, Playerplayer, BOOLp1, BOOLp2, Anyp3)
end

function natives.SPECIAL_ABILITY_CHARGE_CONTINUOUS(Playerplayer, Pedp1, Anyp2)
    return native.call(0xED481732DFF7E997, Playerplayer, Pedp1, Anyp2)
end

function natives.SPECIAL_ABILITY_CHARGE_ABSOLUTE(Playerplayer, intp1, BOOLp2, Anyp3)
    return native.call(0xB7B0870EB531D08D, Playerplayer, intp1, BOOLp2, Anyp3)
end

function natives.SPECIAL_ABILITY_CHARGE_NORMALIZED(Playerplayer, floatnormalizedValue, BOOLp2, Anyp3)
    return native.call(0xA0696A65F009EE18, Playerplayer, floatnormalizedValue, BOOLp2, Anyp3)
end

function natives.SPECIAL_ABILITY_FILL_METER(Playerplayer, BOOLp1, Anyp2)
    return native.call(0x3DACA8DDC6FD4980, Playerplayer, BOOLp1, Anyp2)
end

function natives.SPECIAL_ABILITY_DEPLETE_METER(Playerplayer, BOOLp1, Anyp2)
    return native.call(0x1D506DBBBC51E64B, Playerplayer, BOOLp1, Anyp2)
end

function natives.SPECIAL_ABILITY_LOCK(HashplayerModel, Anyp1)
    return native.call(0x6A09D0D590A47D13, HashplayerModel, Anyp1)
end

function natives.SPECIAL_ABILITY_UNLOCK(HashplayerModel, Anyp1)
    return native.call(0xF145F3BE2EFA9A3B, HashplayerModel, Anyp1)
end

function natives.IS_SPECIAL_ABILITY_UNLOCKED(HashplayerModel)
    return native.call(0xC6017F6A6CDFA694, HashplayerModel)
end

function natives.IS_SPECIAL_ABILITY_ACTIVE(Playerplayer, Anyp1)
    return native.call(0x3E5F7FC85D854E15, Playerplayer, Anyp1)
end

function natives.IS_SPECIAL_ABILITY_METER_FULL(Playerplayer, Anyp1)
    return native.call(0x05A1FE504B7F2587, Playerplayer, Anyp1)
end

function natives.ENABLE_SPECIAL_ABILITY(Playerplayer, BOOLtoggle, Anyp2)
    return native.call(0x181EC197DAEFE121, Playerplayer, BOOLtoggle, Anyp2)
end

function natives.IS_SPECIAL_ABILITY_ENABLED(Playerplayer, Anyp1)
    return native.call(0xB1D200FE26AEF3CB, Playerplayer, Anyp1)
end

function natives.SET_SPECIAL_ABILITY_MULTIPLIER(floatmultiplier)
    return native.call(0xA49C426ED0CA4AB7, floatmultiplier)
end

function natives._0xFFEE8FA29AB9A18E(Playerplayer, Anyp1)
    return native.call(0xFFEE8FA29AB9A18E, Playerplayer, Anyp1)
end

function natives._0x5FC472C501CCADB3(Playerplayer)
    return native.call(0x5FC472C501CCADB3, Playerplayer)
end

function natives._0xF10B44FD479D69F3(Playerplayer, intp1)
    return native.call(0xF10B44FD479D69F3, Playerplayer, intp1)
end

function natives._0xDD2620B7B9D16FF1(Playerplayer, floatp1)
    return native.call(0xDD2620B7B9D16FF1, Playerplayer, floatp1)
end

function natives.START_PLAYER_TELEPORT(Playerplayer, floatx, floaty, floatz, floatheading, BOOLp5, BOOLfindCollisionLand, BOOLp7)
    return native.call(0xAD15F075A4DA0FDE, Playerplayer, floatx, floaty, floatz, floatheading, BOOLp5, BOOLfindCollisionLand, BOOLp7)
end

function natives.UPDATE_PLAYER_TELEPORT(Playerplayer)
    return native.call(0xE23D5873C2394C61, Playerplayer)
end

function natives.STOP_PLAYER_TELEPORT()
    return native.call(0xC449EDED9D73009C)
end

function natives.IS_PLAYER_TELEPORT_ACTIVE()
    return native.call(0x02B15662D7F8886F)
end

function natives.GET_PLAYER_CURRENT_STEALTH_NOISE(Playerplayer)
    return native.call(0x2F395D61F3A1F877, Playerplayer)
end

function natives.SET_PLAYER_HEALTH_RECHARGE_MULTIPLIER(Playerplayer, floatregenRate)
    return native.call(0x5DB660B38DD98A31, Playerplayer, floatregenRate)
end

function natives.GET_PLAYER_HEALTH_RECHARGE_LIMIT(Playerplayer)
    return native.call(0x8BC515BAE4AAF8FF, Playerplayer)
end

function natives.SET_PLAYER_HEALTH_RECHARGE_LIMIT(Playerplayer, floatlimit)
    return native.call(0xC388A0F065F5BC34, Playerplayer, floatlimit)
end

function natives.SET_PLAYER_FALL_DISTANCE(Playerplayer, floatp1)
    return native.call(0xEFD79FA81DFBA9CB, Playerplayer, floatp1)
end

function natives.SET_PLAYER_WEAPON_DAMAGE_MODIFIER(Playerplayer, floatmodifier)
    return native.call(0xCE07B9F7817AADA3, Playerplayer, floatmodifier)
end

function natives.SET_PLAYER_WEAPON_DEFENSE_MODIFIER(Playerplayer, floatmodifier)
    return native.call(0x2D83BC011CA14A3C, Playerplayer, floatmodifier)
end

function natives.SET_PLAYER_WEAPON_DEFENSE_MODIFIER_2(Playerplayer, floatmodifier)
    return native.call(0xBCFDE9EDE4CF27DC, Playerplayer, floatmodifier)
end

function natives.SET_PLAYER_MELEE_WEAPON_DAMAGE_MODIFIER(Playerplayer, floatmodifier, BOOLp2)
    return native.call(0x4A3DC7ECCC321032, Playerplayer, floatmodifier, BOOLp2)
end

function natives.SET_PLAYER_MELEE_WEAPON_DEFENSE_MODIFIER(Playerplayer, floatmodifier)
    return native.call(0xAE540335B4ABC4E2, Playerplayer, floatmodifier)
end

function natives.SET_PLAYER_VEHICLE_DAMAGE_MODIFIER(Playerplayer, floatmodifier)
    return native.call(0xA50E117CDDF82F0C, Playerplayer, floatmodifier)
end

function natives.SET_PLAYER_VEHICLE_DEFENSE_MODIFIER(Playerplayer, floatmodifier)
    return native.call(0x4C60E6EFDAFF2462, Playerplayer, floatmodifier)
end

function natives._0x8D768602ADEF2245(Playerplayer, floatp1)
    return native.call(0x8D768602ADEF2245, Playerplayer, floatp1)
end

function natives._0xD821056B9ACF8052(Playerplayer, Anyp1)
    return native.call(0xD821056B9ACF8052, Playerplayer, Anyp1)
end

function natives._0x31E90B8873A4CD3B(Playerplayer, floatp1)
    return native.call(0x31E90B8873A4CD3B, Playerplayer, floatp1)
end

function natives.SET_PLAYER_PARACHUTE_TINT_INDEX(Playerplayer, inttintIndex)
    return native.call(0xA3D0E54541D9A5E5, Playerplayer, inttintIndex)
end

function natives.GET_PLAYER_PARACHUTE_TINT_INDEX(Playerplayer, inttintIndex)
    return native.call(0x75D3F7A1B0D9B145, Playerplayer, inttintIndex)
end

function natives.SET_PLAYER_RESERVE_PARACHUTE_TINT_INDEX(Playerplayer, intindex)
    return native.call(0xAF04C87F5DC1DF38, Playerplayer, intindex)
end

function natives.GET_PLAYER_RESERVE_PARACHUTE_TINT_INDEX(Playerplayer, intindex)
    return native.call(0xD5A016BC3C09CF40, Playerplayer, intindex)
end

function natives.SET_PLAYER_PARACHUTE_PACK_TINT_INDEX(Playerplayer, inttintIndex)
    return native.call(0x93B0FB27C9A04060, Playerplayer, inttintIndex)
end

function natives.GET_PLAYER_PARACHUTE_PACK_TINT_INDEX(Playerplayer, inttintIndex)
    return native.call(0x6E9C742F340CE5A2, Playerplayer, inttintIndex)
end

function natives.SET_PLAYER_HAS_RESERVE_PARACHUTE(Playerplayer)
    return native.call(0x7DDAB28D31FAC363, Playerplayer)
end

function natives.GET_PLAYER_HAS_RESERVE_PARACHUTE(Playerplayer)
    return native.call(0x5DDFE2FF727F3CA3, Playerplayer)
end

function natives.SET_PLAYER_CAN_LEAVE_PARACHUTE_SMOKE_TRAIL(Playerplayer, BOOLenabled)
    return native.call(0xF401B182DBA8AF53, Playerplayer, BOOLenabled)
end

function natives.SET_PLAYER_PARACHUTE_SMOKE_TRAIL_COLOR(Playerplayer, intr, intg, intb)
    return native.call(0x8217FD371A4625CF, Playerplayer, intr, intg, intb)
end

function natives.GET_PLAYER_PARACHUTE_SMOKE_TRAIL_COLOR(Playerplayer, intr, intg, intb)
    return native.call(0xEF56DBABD3CD4887, Playerplayer, intr, intg, intb)
end

function natives.SET_PLAYER_RESET_FLAG_PREFER_REAR_SEATS(Playerplayer, intflags)
    return native.call(0x11D5F725F0E780E0, Playerplayer, intflags)
end

function natives.SET_PLAYER_NOISE_MULTIPLIER(Playerplayer, floatmultiplier)
    return native.call(0xDB89EF50FF25FCE9, Playerplayer, floatmultiplier)
end

function natives.SET_PLAYER_SNEAKING_NOISE_MULTIPLIER(Playerplayer, floatmultiplier)
    return native.call(0xB2C1A29588A9F47C, Playerplayer, floatmultiplier)
end

function natives.CAN_PED_HEAR_PLAYER(Playerplayer, Pedped)
    return native.call(0xF297383AA91DCA29, Playerplayer, Pedped)
end

function natives.SIMULATE_PLAYER_INPUT_GAIT(Playerplayer, floatamount, intgaitType, floatspeed, BOOLp4, BOOLp5)
    return native.call(0x477D5D63E63ECA5D, Playerplayer, floatamount, intgaitType, floatspeed, BOOLp4, BOOLp5)
end

function natives.RESET_PLAYER_INPUT_GAIT(Playerplayer)
    return native.call(0x19531C47A2ABD691, Playerplayer)
end

function natives.SET_AUTO_GIVE_PARACHUTE_WHEN_ENTER_PLANE(Playerplayer, BOOLtoggle)
    return native.call(0x9F343285A00B4BB6, Playerplayer, BOOLtoggle)
end

function natives.SET_AUTO_GIVE_SCUBA_GEAR_WHEN_EXIT_VEHICLE(Playerplayer, BOOLtoggle)
    return native.call(0xD2B315B6689D537D, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_STEALTH_PERCEPTION_MODIFIER(Playerplayer, floatvalue)
    return native.call(0x4E9021C1FCDD507A, Playerplayer, floatvalue)
end

function natives._0x690A61A6D13583F6(Playerplayer)
    return native.call(0x690A61A6D13583F6, Playerplayer)
end

function natives._0x9EDD76E87D5D51BA(Playerplayer)
    return native.call(0x9EDD76E87D5D51BA, Playerplayer)
end

function natives.SET_PLAYER_SIMULATE_AIMING(Playerplayer, BOOLtoggle)
    return native.call(0xC54C95DA968EC5B5, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_CLOTH_PIN_FRAMES(Playerplayer, intp1)
    return native.call(0x749FADDF97DFE930, Playerplayer, intp1)
end

function natives.SET_PLAYER_CLOTH_PACKAGE_INDEX(intindex)
    return native.call(0x9F7BBA2EA6372500, intindex)
end

function natives.SET_PLAYER_CLOTH_LOCK_COUNTER(intvalue)
    return native.call(0x14D913B777DFF5DA, intvalue)
end

function natives.PLAYER_ATTACH_VIRTUAL_BOUND(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7)
    return native.call(0xED51733DC73AED51, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7)
end

function natives.PLAYER_DETACH_VIRTUAL_BOUND()
    return native.call(0x1DD5897E2FA6E7C9)
end

function natives.HAS_PLAYER_BEEN_SPOTTED_IN_STOLEN_VEHICLE(Playerplayer)
    return native.call(0xD705740BB0A1CF4C, Playerplayer)
end

function natives.IS_PLAYER_BATTLE_AWARE(Playerplayer)
    return native.call(0x38D28DA81E4E9BF9, Playerplayer)
end

function natives._0xBC0753C9CA14B506(Playerplayer, intp1, BOOLp2)
    return native.call(0xBC0753C9CA14B506, Playerplayer, intp1, BOOLp2)
end

function natives.EXTEND_WORLD_BOUNDARY_FOR_PLAYER(floatx, floaty, floatz)
    return native.call(0x5006D96C995A5827, floatx, floaty, floatz)
end

function natives.RESET_WORLD_BOUNDARY_FOR_PLAYER()
    return native.call(0xDA1DF03D5A315F4E)
end

function natives.IS_PLAYER_RIDING_TRAIN(Playerplayer)
    return native.call(0x4EC12697209F2196, Playerplayer)
end

function natives.HAS_PLAYER_LEFT_THE_WORLD(Playerplayer)
    return native.call(0xD55DDFB47991A294, Playerplayer)
end

function natives.SET_PLAYER_LEAVE_PED_BEHIND(Playerplayer, BOOLtoggle)
    return native.call(0xFF300C7649724A0B, Playerplayer, BOOLtoggle)
end

function natives.SET_PLAYER_PARACHUTE_VARIATION_OVERRIDE(Playerplayer, intp1, Anyp2, Anyp3, BOOLp4)
    return native.call(0xD9284A8C0D48352C, Playerplayer, intp1, Anyp2, Anyp3, BOOLp4)
end

function natives.CLEAR_PLAYER_PARACHUTE_VARIATION_OVERRIDE(Playerplayer)
    return native.call(0x0F4CC924CF8C7B21, Playerplayer)
end

function natives.SET_PLAYER_PARACHUTE_MODEL_OVERRIDE(Playerplayer, Hashmodel)
    return native.call(0x977DB4641F6FC3DB, Playerplayer, Hashmodel)
end

function natives.SET_PLAYER_RESERVE_PARACHUTE_MODEL_OVERRIDE(Playerplayer, Hashmodel)
    return native.call(0x0764486AEDE748DB, Playerplayer, Hashmodel)
end

function natives.GET_PLAYER_PARACHUTE_MODEL_OVERRIDE(Playerplayer)
    return native.call(0xC219887CA3E65C41, Playerplayer)
end

function natives.GET_PLAYER_RESERVE_PARACHUTE_MODEL_OVERRIDE(Playerplayer)
    return native.call(0x37FAAA68DCA9D08D, Playerplayer)
end

function natives.CLEAR_PLAYER_PARACHUTE_MODEL_OVERRIDE(Playerplayer)
    return native.call(0x8753997EB5F6EE3F, Playerplayer)
end

function natives.CLEAR_PLAYER_RESERVE_PARACHUTE_MODEL_OVERRIDE(Playerplayer)
    return native.call(0x290D248E25815AE8, Playerplayer)
end

function natives.SET_PLAYER_PARACHUTE_PACK_MODEL_OVERRIDE(Playerplayer, Hashmodel)
    return native.call(0xDC80A4C2F18A2B64, Playerplayer, Hashmodel)
end

function natives.CLEAR_PLAYER_PARACHUTE_PACK_MODEL_OVERRIDE(Playerplayer)
    return native.call(0x10C54E4389C12B42, Playerplayer)
end

function natives.DISABLE_PLAYER_VEHICLE_REWARDS(Playerplayer)
    return native.call(0xC142BE3BB9CE125F, Playerplayer)
end

function natives._0x2F7CEB6520288061(BOOLp0)
    return native.call(0x2F7CEB6520288061, BOOLp0)
end

function natives.SET_PLAYER_BLUETOOTH_STATE(Playerplayer, BOOLstate)
    return native.call(0x5DC40A8869C22141, Playerplayer, BOOLstate)
end

function natives.IS_PLAYER_BLUETOOTH_ENABLE(Playerplayer)
    return native.call(0x65FAEE425DE637B0, Playerplayer)
end

function natives._0x5501B7A5CDB79D37(Playerplayer)
    return native.call(0x5501B7A5CDB79D37, Playerplayer)
end

function natives.GET_PLAYER_FAKE_WANTED_LEVEL(Playerplayer)
    return native.call(0x56105E599CAB0EFA, Playerplayer)
end

function natives._0x55FCC0C390620314(Anyp0, Anyp1, Anyp2)
    return native.call(0x55FCC0C390620314, Anyp0, Anyp1, Anyp2)
end

function natives._0x2382AB11450AE7BA(Anyp0, Anyp1)
    return native.call(0x2382AB11450AE7BA, Anyp0, Anyp1)
end

function natives._0x6E4361FF3E8CD7CA(Anyp0)
    return native.call(0x6E4361FF3E8CD7CA, Anyp0)
end

function natives._0x237440E46D918649(Anyp0)
    return native.call(0x237440E46D918649, Anyp0)
end

function natives.SET_PLAYER_HOMING_ROCKET_DISABLED(Anyp0, Anyp1)
    return native.call(0xEE4EBDD2593BA844, Anyp0, Anyp1)
end

function natives._0x9097EB6D4BB9A12A(Playerplayer, Entityentity)
    return native.call(0x9097EB6D4BB9A12A, Playerplayer, Entityentity)
end

function natives._0x9F260BFB59ADBCA3(Playerplayer, Entityentity)
    return native.call(0x9F260BFB59ADBCA3, Playerplayer, Entityentity)
end

function natives._0x7BAE68775557AE0B(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x7BAE68775557AE0B, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives._0x7148E0F43D11F0D9()
    return native.call(0x7148E0F43D11F0D9)
end

function natives._0x70A382ADEC069DD3(floatcoordX, floatcoordY, floatcoordZ)
    return native.call(0x70A382ADEC069DD3, floatcoordX, floatcoordY, floatcoordZ)
end

function natives._0x48621C9FCA3EBD28(intp0)
    return native.call(0x48621C9FCA3EBD28, intp0)
end

function natives._0x81CBAE94390F9F89()
    return native.call(0x81CBAE94390F9F89)
end

function natives._0x13B350B8AD0EEE10()
    return native.call(0x13B350B8AD0EEE10)
end

function natives._0x293220DA1B46CEBC(floatp0, floatp1, intp2)
    return native.call(0x293220DA1B46CEBC, floatp0, floatp1, intp2)
end

function natives._0x208784099002BC30(constcharmissionNameLabel, Anyp1)
    return native.call(0x208784099002BC30, constcharmissionNameLabel, Anyp1)
end

function natives.STOP_RECORDING_THIS_FRAME()
    return native.call(0xEB2D525B57F42B40)
end

function natives._0xF854439EFBB3B583()
    return native.call(0xF854439EFBB3B583)
end

function natives.DISABLE_ROCKSTAR_EDITOR_CAMERA_CHANGES()
    return native.call(0xAF66DCEE6609B148)
end

function natives._0x66972397E0757E7A(intp0, intp1, intp2)
    return native.call(0x66972397E0757E7A, intp0, intp1, intp2)
end

function natives.START_RECORDING(intmode)
    return native.call(0xC3AC2FFF9612AC81, intmode)
end

function natives.STOP_RECORDING_AND_SAVE_CLIP()
    return native.call(0x071A5197D6AFC8B3)
end

function natives.STOP_RECORDING_AND_DISCARD_CLIP()
    return native.call(0x88BB3507ED41A240)
end

function natives.SAVE_RECORDING_CLIP()
    return native.call(0x644546EC5287471B)
end

function natives.IS_RECORDING()
    return native.call(0x1897CA71995A90B4)
end

function natives._0xDF4B952F7D381B95()
    return native.call(0xDF4B952F7D381B95)
end

function natives._0x4282E08174868BE3()
    return native.call(0x4282E08174868BE3)
end

function natives._0x33D47E85B476ABCD(BOOLp0)
    return native.call(0x33D47E85B476ABCD, BOOLp0)
end

function natives._0x7E2BD3EF6C205F09(constcharp0, BOOLp1)
    return native.call(0x7E2BD3EF6C205F09, constcharp0, BOOLp1)
end

function natives.IS_INTERIOR_RENDERING_DISABLED()
    return native.call(0x95AB8B5C992C7B58)
end

function natives._0x5AD3932DAEB1E5D3()
    return native.call(0x5AD3932DAEB1E5D3)
end

function natives._0xE058175F8EAFE79A(BOOLp0)
    return native.call(0xE058175F8EAFE79A, BOOLp0)
end

function natives.RESET_EDITOR_VALUES()
    return native.call(0x3353D13F09307691)
end

function natives.ACTIVATE_ROCKSTAR_EDITOR(intp0)
    return native.call(0x49DA8145672B2725, intp0)
end

function natives._0x84B418E93894AC1C()
    return native.call(0x84B418E93894AC1C)
end

function natives._0x85F41F9225D08C72()
    return native.call(0x85F41F9225D08C72)
end

function natives._0xC8CB5999919EA2CA()
    return native.call(0xC8CB5999919EA2CA)
end

function natives._0x77A16200E18E0C55()
    return native.call(0x77A16200E18E0C55)
end

function natives._0xFCE2747EEF1D05FC(intp0, Anyp1)
    return native.call(0xFCE2747EEF1D05FC, intp0, Anyp1)
end

function natives._0xE5E9746A66359F9D()
    return native.call(0xE5E9746A66359F9D)
end

function natives._0x690B76BD2763E068()
    return native.call(0x690B76BD2763E068)
end

function natives.REQUEST_SCRIPT(constcharscriptName)
    return native.call(0x6EB5F71AA68F2E8E, constcharscriptName)
end

function natives.SET_SCRIPT_AS_NO_LONGER_NEEDED(constcharscriptName)
    return native.call(0xC90D2DCACD56184C, constcharscriptName)
end

function natives.HAS_SCRIPT_LOADED(constcharscriptName)
    return native.call(0xE6CC9F3BA0FB9EF1, constcharscriptName)
end

function natives.DOES_SCRIPT_EXIST(constcharscriptName)
    return native.call(0xFC04745FBE67C19A, constcharscriptName)
end

function natives.REQUEST_SCRIPT_WITH_NAME_HASH(HashscriptHash)
    return native.call(0xD62A67D26D9653E6, HashscriptHash)
end

function natives.SET_SCRIPT_WITH_NAME_HASH_AS_NO_LONGER_NEEDED(HashscriptHash)
    return native.call(0xC5BC038960E9DB27, HashscriptHash)
end

function natives.HAS_SCRIPT_WITH_NAME_HASH_LOADED(HashscriptHash)
    return native.call(0x5F0F0C783EB16C04, HashscriptHash)
end

function natives.DOES_SCRIPT_WITH_NAME_HASH_EXIST(HashscriptHash)
    return native.call(0xF86AA3C56BA31381, HashscriptHash)
end

function natives.TERMINATE_THREAD(intthreadId)
    return native.call(0xC8B189ED9138BCD4, intthreadId)
end

function natives.IS_THREAD_ACTIVE(intthreadId)
    return native.call(0x46E9AE36D8FA6417, intthreadId)
end

function natives.GET_NAME_OF_THREAD(intthreadId)
    return native.call(0x05A42BA9FC8DA96B, intthreadId)
end

function natives.SCRIPT_THREAD_ITERATOR_RESET()
    return native.call(0xDADFADA5A20143A8)
end

function natives.SCRIPT_THREAD_ITERATOR_GET_NEXT_THREAD_ID()
    return native.call(0x30B4FA1C82DD4B9F)
end

function natives.GET_ID_OF_THIS_THREAD()
    return native.call(0xC30338E8088E2E21)
end

function natives.TERMINATE_THIS_THREAD()
    return native.call(0x1090044AD1DA76FA)
end

function natives.GET_NUMBER_OF_REFERENCES_OF_SCRIPT_WITH_NAME_HASH(HashscriptHash)
    return native.call(0x2C83A9DA6BFFC4F9, HashscriptHash)
end

function natives.GET_THIS_SCRIPT_NAME()
    return native.call(0x442E0A7EDE4A738A)
end

function natives.GET_HASH_OF_THIS_SCRIPT_NAME()
    return native.call(0x8A1C8B1738FFE87E)
end

function natives.GET_NUMBER_OF_EVENTS(inteventGroup)
    return native.call(0x5F92A689A06620AA, inteventGroup)
end

function natives.GET_EVENT_EXISTS(inteventGroup, inteventIndex)
    return native.call(0x936E6168A9BCEDB5, inteventGroup, inteventIndex)
end

function natives.GET_EVENT_AT_INDEX(inteventGroup, inteventIndex)
    return native.call(0xD8F66A3A60C62153, inteventGroup, inteventIndex)
end

function natives.GET_EVENT_DATA(inteventGroup, inteventIndex, AnyeventData, inteventDataSize)
    return native.call(0x2902843FCD2B2D79, inteventGroup, inteventIndex, AnyeventData, inteventDataSize)
end

function natives.TRIGGER_SCRIPT_EVENT(inteventGroup, AnyeventData, inteventDataSize, intplayerBits)
    return native.call(0x5AE99C571D5BBE5D, inteventGroup, AnyeventData, inteventDataSize, intplayerBits)
end

function natives.SHUTDOWN_LOADING_SCREEN()
    return native.call(0x078EBE9809CCD637)
end

function natives.SET_NO_LOADING_SCREEN(BOOLtoggle)
    return native.call(0x5262CC1995D07E09, BOOLtoggle)
end

function natives.GET_NO_LOADING_SCREEN()
    return native.call(0x18C1270EA7F199BC)
end

function natives._0xB1577667C3708F9B()
    return native.call(0xB1577667C3708F9B)
end

function natives.BG_EXITED_BECAUSE_BACKGROUND_THREAD_STOPPED()
    return native.call(0x836B62713E0534CA)
end

function natives._0x760910B49D2B98EA()
    return native.call(0x760910B49D2B98EA)
end

function natives.BG_START_CONTEXT_HASH(HashcontextHash)
    return native.call(0x75B18E49607874C7, HashcontextHash)
end

function natives.BG_END_CONTEXT_HASH(HashcontextHash)
    return native.call(0x107E5CC7CA942BC1, HashcontextHash)
end

function natives.BG_START_CONTEXT(constcharcontextName)
    return native.call(0x9D5A25BADB742ACD, constcharcontextName)
end

function natives.BG_END_CONTEXT(constcharcontextName)
    return native.call(0xDC2BACD920D0A0DD, constcharcontextName)
end

function natives._0x0F6F1EBBC4E1D5E6(intscriptIndex, constcharp1)
    return native.call(0x0F6F1EBBC4E1D5E6, intscriptIndex, constcharp1)
end

function natives._0x22E21FBCFC88C149(intscriptIndex, constcharp1)
    return native.call(0x22E21FBCFC88C149, intscriptIndex, constcharp1)
end

function natives._0x829CD22E043A2577(Hashp0)
    return native.call(0x829CD22E043A2577, Hashp0)
end

function natives.TRIGGER_SCRIPT_EVENT_2(inteventGroup, AnyeventData, inteventDataSize, intplayerBits)
    return native.call(0xA40CC53DF8E50837, inteventGroup, AnyeventData, inteventDataSize, intplayerBits)
end

function natives.REGISTER_PROTECTED_VARIABLE(Anyvariable)
    return native.call(0x40EB1EFD921822BC, Anyvariable)
end

function natives.UNREGISTER_PROTECTED_VARIABLE(Anyvariable)
    return native.call(0x340A36A700E99699, Anyvariable)
end

function natives.FORCE_CHECK_PROTECTED_VARIABLES_NOW()
    return native.call(0x8E580AB902917360)
end

function natives.START_SHAPE_TEST_LOS_PROBE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intflags, Entityentity, intp8)
    return native.call(0x7EE9F5D83DD4F90E, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intflags, Entityentity, intp8)
end

function natives.START_EXPENSIVE_SYNCHRONOUS_SHAPE_TEST_LOS_PROBE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intflags, Entityentity, intp8)
    return native.call(0x377906D8A31E5586, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intflags, Entityentity, intp8)
end

function natives.START_SHAPE_TEST_BOUNDING_BOX(Entityentity, intflags1, intflags2)
    return native.call(0x052837721A854EC7, Entityentity, intflags1, intflags2)
end

function natives.START_SHAPE_TEST_BOX(floatx, floaty, floatz, floatx1, floaty2, floatz2, floatrotX, floatrotY, floatrotZ, Anyp9, intflags, Entityentity, Anyp12)
    return native.call(0xFE466162C4401D18, floatx, floaty, floatz, floatx1, floaty2, floatz2, floatrotX, floatrotY, floatrotZ, Anyp9, intflags, Entityentity, Anyp12)
end

function natives.START_SHAPE_TEST_BOUND(Entityentity, intflags1, intflags2)
    return native.call(0x37181417CE7C8900, Entityentity, intflags1, intflags2)
end

function natives.START_SHAPE_TEST_CAPSULE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius, intflags, Entityentity, intp9)
    return native.call(0x28579D1B8F8AAC80, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius, intflags, Entityentity, intp9)
end

function natives.START_SHAPE_TEST_SWEPT_SPHERE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius, intflags, Entityentity, Anyp9)
    return native.call(0xE6AC6C45FBE83004, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatradius, intflags, Entityentity, Anyp9)
end

function natives.START_SHAPE_TEST_SURROUNDING_COORDS(Vector3pVec1, Vector3pVec2, intflag, Entityentity, intflag2)
    return native.call(0xFF6BE494C7987F34, Vector3pVec1, Vector3pVec2, intflag, Entityentity, intflag2)
end

function natives.GET_SHAPE_TEST_RESULT(intshapeTestHandle, BOOLhit, Vector3endCoords, Vector3surfaceNormal, EntityentityHit)
    return native.call(0x3D87450E15D98694, intshapeTestHandle, BOOLhit, Vector3endCoords, Vector3surfaceNormal, EntityentityHit)
end

function natives.GET_SHAPE_TEST_RESULT_INCLUDING_MATERIAL(intshapeTestHandle, BOOLhit, Vector3endCoords, Vector3surfaceNormal, HashmaterialHash, EntityentityHit)
    return native.call(0x65287525D951F6BE, intshapeTestHandle, BOOLhit, Vector3endCoords, Vector3surfaceNormal, HashmaterialHash, EntityentityHit)
end

function natives.RELEASE_SCRIPT_GUID_FROM_ENTITY(EntityentityHit)
    return native.call(0x2B3334BCA57CD799, EntityentityHit)
end

function natives.SC_INBOX_GET_TOTAL_NUM_MESSAGES()
    return native.call(0x03A93FF1A2CA0864)
end

function natives.SC_INBOX_GET_MESSAGE_TYPE_AT_INDEX(intmsgIndex)
    return native.call(0xBB8EA16ECBC976C4, intmsgIndex)
end

function natives.SC_INBOX_GET_MESSAGE_IS_READ_AT_INDEX(intmsgIndex)
    return native.call(0x93028F1DB42BFD08, intmsgIndex)
end

function natives.SC_INBOX_SET_MESSAGE_AS_READ_AT_INDEX(intmsgIndex)
    return native.call(0x2C015348CF19CA1D, intmsgIndex)
end

function natives.SC_INBOX_MESSAGE_GET_DATA_INT(intp0, constcharcontext, intout)
    return native.call(0xA00EFE4082C4056E, intp0, constcharcontext, intout)
end

function natives.SC_INBOX_MESSAGE_GET_DATA_BOOL(intp0, constcharp1)
    return native.call(0xFFE5C16F402D851D, intp0, constcharp1)
end

function natives.SC_INBOX_MESSAGE_GET_DATA_STRING(intp0, constcharcontext, charout)
    return native.call(0x7572EF42FC6A9B6D, intp0, constcharcontext, charout)
end

function natives.SC_INBOX_MESSAGE_DO_APPLY(intp0)
    return native.call(0x9A2C8064B6C1E41A, intp0)
end

function natives.SC_INBOX_MESSAGE_GET_RAW_TYPE_AT_INDEX(intp0)
    return native.call(0xF3E31D16CBDCB304, intp0)
end

function natives.SC_INBOX_MESSAGE_PUSH_GAMER_TO_EVENT_RECIP_LIST(AnygamerHandle)
    return native.call(0xDA024BDBD600F44A, AnygamerHandle)
end

function natives.SC_INBOX_MESSAGE_SEND_UGC_STAT_UPDATE_EVENT(Anydata)
    return native.call(0xA68D3D229F4F3B06, Anydata)
end

function natives.SC_INBOX_MESSAGE_GET_UGCDATA(intp0, Anyp1)
    return native.call(0x69D82604A1A5A254, intp0, Anyp1)
end

function natives.SC_INBOX_MESSAGE_SEND_BOUNTY_PRESENCE_EVENT(Anydata)
    return native.call(0x6AFD2CD753FEEF83, Anydata)
end

function natives.SC_INBOX_MESSAGE_GET_BOUNTY_DATA(intindex, AnyoutData)
    return native.call(0x87E0052F08BD64E6, intindex, AnyoutData)
end

function natives.SC_INBOX_GET_EMAILS(intoffset, intlimit)
    return native.call(0x040ADDCBAFA1018A, intoffset, intlimit)
end

function natives._0x16DA8172459434AA()
    return native.call(0x16DA8172459434AA)
end

function natives._0x7DB18CA8CAD5B098()
    return native.call(0x7DB18CA8CAD5B098)
end

function natives._0x4737980E8A283806(intp0, Anyp1)
    return native.call(0x4737980E8A283806, intp0, Anyp1)
end

function natives._0x44ACA259D67651DB(Anyp0, Anyp1)
    return native.call(0x44ACA259D67651DB, Anyp0, Anyp1)
end

function natives.SC_EMAIL_MESSAGE_PUSH_GAMER_TO_RECIP_LIST(AnygamerHandle)
    return native.call(0x2330C12A7A605D16, AnygamerHandle)
end

function natives.SC_EMAIL_MESSAGE_CLEAR_RECIP_LIST()
    return native.call(0x55DF6DB45179236E)
end

function natives.SC_EMAIL_SEND_EMAIL(constcharp0)
    return native.call(0x116FB94DC4B79F17, constcharp0)
end

function natives._0x07DBD622D9533857(Anyp0)
    return native.call(0x07DBD622D9533857, Anyp0)
end

function natives.SET_HANDLE_ROCKSTAR_MESSAGE_VIA_SCRIPT(BOOLtoggle)
    return native.call(0xBFA0A56A817C6C7D, BOOLtoggle)
end

function natives.SC_HAS_NEW_ROCKSTAR_MSG()
    return native.call(0xBC1CC91205EC8D6E)
end

function natives.SC_GET_NEW_ROCKSTAR_MSG()
    return native.call(0xDF649C4E9AFDD788)
end

function natives.SC_PRESENCE_ATTR_SET_INT(HashattrHash, intvalue)
    return native.call(0x1F1E9682483697C7, HashattrHash, intvalue)
end

function natives.SC_PRESENCE_ATTR_SET_FLOAT(HashattrHash, floatvalue)
    return native.call(0xC4C4575F62534A24, HashattrHash, floatvalue)
end

function natives.SC_PRESENCE_ATTR_SET_STRING(HashattrHash, constcharvalue)
    return native.call(0x287F1F75D2803595, HashattrHash, constcharvalue)
end

function natives._0x487912FD248EFDDF(Anyp0, floatp1)
    return native.call(0x487912FD248EFDDF, Anyp0, floatp1)
end

function natives.SC_GAMERDATA_GET_INT()
    return native.call(0xC85A7127E7AD02AA)
end

function natives.SC_GAMERDATA_GET_FLOAT()
    return native.call(0xA770C8EEC6FB2AC5)
end

function natives.SC_GAMERDATA_GET_BOOL(constcharname)
    return native.call(0x8416FE4E4629D7D7, constcharname)
end

function natives.SC_GAMERDATA_GET_STRING()
    return native.call(0x7FFCBFEE44ECFABF)
end

function natives._0x2D874D4AE612A65F()
    return native.call(0x2D874D4AE612A65F)
end

function natives.SC_PROFANITY_CHECK_STRING(constcharstring, inttoken)
    return native.call(0x75632C5ECD7ED843, constcharstring, inttoken)
end

function natives.SC_PROFANITY_CHECK_UGC_STRING(constcharstring, inttoken)
    return native.call(0xEB2BF817463DFA28, constcharstring, inttoken)
end

function natives.SC_PROFANITY_GET_CHECK_IS_VALID(inttoken)
    return native.call(0x1753344C770358AE, inttoken)
end

function natives.SC_PROFANITY_GET_CHECK_IS_PENDING(inttoken)
    return native.call(0x82E4A58BABC15AE7, inttoken)
end

function natives.SC_PROFANITY_GET_STRING_PASSED(inttoken)
    return native.call(0x85535ACF97FC0969, inttoken)
end

function natives.SC_PROFANITY_GET_STRING_STATUS(inttoken)
    return native.call(0x930DE22F07B1CCE3, inttoken)
end

function natives.SC_LICENSEPLATE_CHECK_STRING(constcharp0, intp1)
    return native.call(0xF6BAAAF762E1BF40, constcharp0, intp1)
end

function natives.SC_LICENSEPLATE_GET_CHECK_IS_VALID(Anyp0)
    return native.call(0xF22CA0FD74B80E7A, Anyp0)
end

function natives.SC_LICENSEPLATE_GET_CHECK_IS_PENDING(Anyp0)
    return native.call(0x9237E334F6E43156, Anyp0)
end

function natives.SC_LICENSEPLATE_GET_COUNT(inttoken)
    return native.call(0x700569DBA175A77C, inttoken)
end

function natives.SC_LICENSEPLATE_GET_PLATE(inttoken, intplateIndex)
    return native.call(0x1D4446A62D35B0D0, inttoken, intplateIndex)
end

function natives.SC_LICENSEPLATE_GET_PLATE_DATA(inttoken, intplateIndex)
    return native.call(0x2E89990DDFF670C3, inttoken, intplateIndex)
end

function natives.SC_LICENSEPLATE_SET_PLATE_DATA(constcharoldPlateText, constcharnewPlateText, AnyplateData)
    return native.call(0xD0EE05FE193646EA, constcharoldPlateText, constcharnewPlateText, AnyplateData)
end

function natives.SC_LICENSEPLATE_ADD(constcharplateText, AnyplateData, inttoken)
    return native.call(0x1989C6E6F67E76A8, constcharplateText, AnyplateData, inttoken)
end

function natives.SC_LICENSEPLATE_GET_ADD_IS_PENDING(inttoken)
    return native.call(0x07C61676E5BB52CD, inttoken)
end

function natives.SC_LICENSEPLATE_GET_ADD_STATUS(inttoken)
    return native.call(0x8147FFF6A718E1AD, inttoken)
end

function natives.SC_LICENSEPLATE_ISVALID(constcharplateText, inttoken)
    return native.call(0x0F73393BAC7E6730, constcharplateText, inttoken)
end

function natives.SC_LICENSEPLATE_GET_ISVALID_IS_PENDING(inttoken)
    return native.call(0xD302E99EDF0449CF, inttoken)
end

function natives.SC_LICENSEPLATE_GET_ISVALID_STATUS(inttoken)
    return native.call(0x5C4EBFFA98BDB41C, inttoken)
end

function natives._0xFF8F3A92B75ED67A()
    return native.call(0xFF8F3A92B75ED67A)
end

function natives._0x4ED9C8D6DA297639()
    return native.call(0x4ED9C8D6DA297639)
end

function natives._0x710BCDA8071EDED1(constcharp0, intp1)
    return native.call(0x710BCDA8071EDED1, constcharp0, intp1)
end

function natives._0x50A8A36201DBF83E(constcharp0, floatp1)
    return native.call(0x50A8A36201DBF83E, constcharp0, floatp1)
end

function natives._0x9DE5D2F723575ED0(constcharp0, charp1)
    return native.call(0x9DE5D2F723575ED0, constcharp0, charp1)
end

function natives._0xC2C97EA97711D1AE(charp0)
    return native.call(0xC2C97EA97711D1AE, charp0)
end

function natives._0x450819D8CF90C416(constcharp0)
    return native.call(0x450819D8CF90C416, constcharp0)
end

function natives._0x4A7D6E727F941747(constcharp0)
    return native.call(0x4A7D6E727F941747, constcharp0)
end

function natives._0xE75A4A2E5E316D86(constcharp0, intp1, constcharp2)
    return native.call(0xE75A4A2E5E316D86, constcharp0, intp1, constcharp2)
end

function natives._0x2570E26BE63964E3(constcharp0, floatp1, constcharp2)
    return native.call(0x2570E26BE63964E3, constcharp0, floatp1, constcharp2)
end

function natives._0x1D12A56FC95BE92E(constcharp0, charp1, constcharp2)
    return native.call(0x1D12A56FC95BE92E, constcharp0, charp1, constcharp2)
end

function natives._0x33DF47CC0642061B(charp0, constcharp1)
    return native.call(0x33DF47CC0642061B, charp0, constcharp1)
end

function natives._0xA468E0BE12B12C70(intp0)
    return native.call(0xA468E0BE12B12C70, intp0)
end

function natives._0x8CC469AB4D349B7C(intp0, constcharp1, intp2)
    return native.call(0x8CC469AB4D349B7C, intp0, constcharp1, intp2)
end

function natives._0xC5A35C73B68F3C49(intp0, constcharp1, floatp2)
    return native.call(0xC5A35C73B68F3C49, intp0, constcharp1, floatp2)
end

function natives._0x699E4A5C8C893A18(intp0, constcharp1, charp2)
    return native.call(0x699E4A5C8C893A18, intp0, constcharp1, charp2)
end

function natives._0x19853B5B17D77BCA(intp0, charp1)
    return native.call(0x19853B5B17D77BCA, intp0, charp1)
end

function natives._0x6BFB12CE158E3DD4(Anyp0)
    return native.call(0x6BFB12CE158E3DD4, Anyp0)
end

function natives._0xFE4C1D0D3B9CC17E(Anyp0, Anyp1)
    return native.call(0xFE4C1D0D3B9CC17E, Anyp0, Anyp1)
end

function natives._0xD8122C407663B995()
    return native.call(0xD8122C407663B995)
end

function natives._0x3001BEF2FECA3680()
    return native.call(0x3001BEF2FECA3680)
end

function natives._0x92DA6E70EF249BD1(constcharp0, intp1)
    return native.call(0x92DA6E70EF249BD1, constcharp0, intp1)
end

function natives._0x675721C9F644D161()
    return native.call(0x675721C9F644D161)
end

function natives._0xE4F6E8D07A2F0F51(Anyp0)
    return native.call(0xE4F6E8D07A2F0F51, Anyp0)
end

function natives._0x8A4416C0DB05FA66(Anyp0)
    return native.call(0x8A4416C0DB05FA66, Anyp0)
end

function natives._0xEA95C0853A27888E()
    return native.call(0xEA95C0853A27888E)
end

function natives.SC_GET_NICKNAME()
    return native.call(0x198D161F458ECC7F)
end

function natives._0x225798743970412B(intp0)
    return native.call(0x225798743970412B, intp0)
end

function natives.SC_GET_HAS_ACHIEVEMENT_BEEN_PASSED(intachievementId)
    return native.call(0x418DC16FAE452C1C, intachievementId)
end

function natives.STAT_CLEAR_SLOT_FOR_RELOAD(intstatSlot)
    return native.call(0xEB0A72181D4AA4AD, intstatSlot)
end

function natives.STAT_LOAD(intp0)
    return native.call(0xA651443F437B1CE6, intp0)
end

function natives.STAT_SAVE(intp0, BOOLp1, intp2, Anyp3)
    return native.call(0xE07BCA305B82D2FD, intp0, BOOLp1, intp2, Anyp3)
end

function natives._0x5688585E6D563CD8(intp0)
    return native.call(0x5688585E6D563CD8, intp0)
end

function natives.STAT_LOAD_PENDING(Anyp0)
    return native.call(0xA1750FFAFA181661, Anyp0)
end

function natives.STAT_SAVE_PENDING()
    return native.call(0x7D3A583856F2C5AC)
end

function natives.STAT_SAVE_PENDING_OR_REQUESTED()
    return native.call(0xBBB6AD006F1BBEA3)
end

function natives.STAT_DELETE_SLOT(Anyp0)
    return native.call(0x49A49BED12794D70, Anyp0)
end

function natives.STAT_SLOT_IS_LOADED(Anyp0)
    return native.call(0x0D0A9F0E7BD91E3C, Anyp0)
end

function natives._0x7F2C4CDF2E82DF4C(Anyp0)
    return native.call(0x7F2C4CDF2E82DF4C, Anyp0)
end

function natives._0xE496A53BA5F50A56(Anyp0)
    return native.call(0xE496A53BA5F50A56, Anyp0)
end

function natives.STAT_SET_BLOCK_SAVES(BOOLtoggle)
    return native.call(0xF434A10BA01C37D0, BOOLtoggle)
end

function natives._0x6A7F19756F1A9016()
    return native.call(0x6A7F19756F1A9016)
end

function natives._0x7E6946F68A38B74F(Anyp0)
    return native.call(0x7E6946F68A38B74F, Anyp0)
end

function natives._0xA8733668D1047B51(Anyp0)
    return native.call(0xA8733668D1047B51, Anyp0)
end

function natives._0xECB41AC6AB754401()
    return native.call(0xECB41AC6AB754401)
end

function natives._0x9B4BD21D69B1E609()
    return native.call(0x9B4BD21D69B1E609)
end

function natives._0xC0E0D686DDFC6EAE()
    return native.call(0xC0E0D686DDFC6EAE)
end

function natives.STAT_SET_INT(HashstatName, intvalue, BOOLsave)
    return native.call(0xB3271D7AB655B441, HashstatName, intvalue, BOOLsave)
end

function natives.STAT_SET_FLOAT(HashstatName, floatvalue, BOOLsave)
    return native.call(0x4851997F37FE9B3C, HashstatName, floatvalue, BOOLsave)
end

function natives.STAT_SET_BOOL(HashstatName, BOOLvalue, BOOLsave)
    return native.call(0x4B33C4243DE0C432, HashstatName, BOOLvalue, BOOLsave)
end

function natives.STAT_SET_GXT_LABEL(HashstatName, constcharvalue, BOOLsave)
    return native.call(0x17695002FD8B2AE0, HashstatName, constcharvalue, BOOLsave)
end

function natives.STAT_SET_DATE(HashstatName, Anyvalue, intnumFields, BOOLsave)
    return native.call(0x2C29BFB64F4FCBE4, HashstatName, Anyvalue, intnumFields, BOOLsave)
end

function natives.STAT_SET_STRING(HashstatName, constcharvalue, BOOLsave)
    return native.call(0xA87B2335D12531D7, HashstatName, constcharvalue, BOOLsave)
end

function natives.STAT_SET_POS(HashstatName, floatx, floaty, floatz, BOOLsave)
    return native.call(0xDB283FDE680FE72E, HashstatName, floatx, floaty, floatz, BOOLsave)
end

function natives.STAT_SET_MASKED_INT(HashstatName, Anyp1, Anyp2, intp3, BOOLsave)
    return native.call(0x7BBB1B54583ED410, HashstatName, Anyp1, Anyp2, intp3, BOOLsave)
end

function natives.STAT_SET_USER_ID(HashstatName, constcharvalue, BOOLsave)
    return native.call(0x8CDDF1E452BABE11, HashstatName, constcharvalue, BOOLsave)
end

function natives.STAT_SET_CURRENT_POSIX_TIME(HashstatName, BOOLp1)
    return native.call(0xC2F84B7F9C4D0C61, HashstatName, BOOLp1)
end

function natives.STAT_GET_INT(HashstatHash, intoutValue, intp2)
    return native.call(0x767FBC2AC802EF3D, HashstatHash, intoutValue, intp2)
end

function natives.STAT_GET_FLOAT(HashstatHash, floatoutValue, Anyp2)
    return native.call(0xD7AE6C9C9C6AC54C, HashstatHash, floatoutValue, Anyp2)
end

function natives.STAT_GET_BOOL(HashstatHash, BOOLoutValue, Anyp2)
    return native.call(0x11B5E6D2AE73F48E, HashstatHash, BOOLoutValue, Anyp2)
end

function natives.STAT_GET_DATE(HashstatHash, Anyp1, Anyp2, Anyp3)
    return native.call(0x8B0FACEFC36C824B, HashstatHash, Anyp1, Anyp2, Anyp3)
end

function natives.STAT_GET_STRING(HashstatHash, intp1)
    return native.call(0xE50384ACC2C3DB74, HashstatHash, intp1)
end

function natives.STAT_GET_POS(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x350F82CCB186AA1B, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.STAT_GET_MASKED_INT(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x655185A06D9EEAAB, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.STAT_GET_USER_ID(Anyp0)
    return native.call(0x2365C388E393BBE2, Anyp0)
end

function natives.STAT_GET_LICENSE_PLATE(HashstatName)
    return native.call(0x5473D4195058B2E4, HashstatName)
end

function natives.STAT_SET_LICENSE_PLATE(HashstatName, constcharstr)
    return native.call(0x69FF13266D7296DA, HashstatName, constcharstr)
end

function natives.STAT_INCREMENT(HashstatName, floatvalue)
    return native.call(0x9B5A68C6489E9909, HashstatName, floatvalue)
end

function natives.STAT_COMMUNITY_START_SYNCH()
    return native.call(0x5A556B229A169402)
end

function natives.STAT_COMMUNITY_SYNCH_IS_PENDING()
    return native.call(0xB1D2BB1E1631F5B1)
end

function natives.STAT_COMMUNITY_GET_HISTORY(HashstatName, intp1, floatoutValue)
    return native.call(0xBED9F5693F34ED17, HashstatName, intp1, floatoutValue)
end

function natives._0x26D7399B9587FE89(intp0)
    return native.call(0x26D7399B9587FE89, intp0)
end

function natives._0xA78B8FA58200DA56(intp0)
    return native.call(0xA78B8FA58200DA56, intp0)
end

function natives.STAT_GET_NUMBER_OF_DAYS(HashstatName)
    return native.call(0xE0E854F5280FB769, HashstatName)
end

function natives.STAT_GET_NUMBER_OF_HOURS(HashstatName)
    return native.call(0xF2D4B2FE415AAFC3, HashstatName)
end

function natives.STAT_GET_NUMBER_OF_MINUTES(HashstatName)
    return native.call(0x7583B4BE4C5A41B5, HashstatName)
end

function natives.STAT_GET_NUMBER_OF_SECONDS(HashstatName)
    return native.call(0x2CE056FF3723F00B, HashstatName)
end

function natives.STAT_SET_PROFILE_SETTING_VALUE(intprofileSetting, intvalue)
    return native.call(0x68F01422BE1D838F, intprofileSetting, intvalue)
end

function natives._0xC01D2470F22CDE5A(Anyp0)
    return native.call(0xC01D2470F22CDE5A, Anyp0)
end

function natives.STAT_GET_PACKED_INT_MASK(intp0)
    return native.call(0x94F12ABF9C79E339, intp0)
end

function natives.GET_PACKED_INT_STAT_KEY(intindex, BOOLspStat, BOOLcharStat, intcharacter)
    return native.call(0x61E111E323419E07, intindex, BOOLspStat, BOOLcharStat, intcharacter)
end

function natives.GET_PACKED_TU_INT_STAT_KEY(intindex, BOOLspStat, BOOLcharStat, intcharacter)
    return native.call(0xD16C2AD6B8E32854, intindex, BOOLspStat, BOOLcharStat, intcharacter)
end

function natives.GET_NGSTAT_INT_HASH(intindex, BOOLspStat, BOOLcharStat, intcharacter, constcharsection)
    return native.call(0x2B4CDCA6F07FF3DA, intindex, BOOLspStat, BOOLcharStat, intcharacter, constcharsection)
end

function natives.GET_PACKED_STAT_BOOL(intindex, intcharacterSlot)
    return native.call(0xDA7EBFC49AE3F1B0, intindex, intcharacterSlot)
end

function natives.GET_PACKED_STAT_INT(intindex, intcharacterSlot)
    return native.call(0x0BC900A6FE73770C, intindex, intcharacterSlot)
end

function natives.SET_PACKED_STAT_BOOL(intindex, BOOLvalue, intcharacterSlot)
    return native.call(0xDB8A58AEAA67CD07, intindex, BOOLvalue, intcharacterSlot)
end

function natives.SET_PACKED_STAT_INT(intindex, intvalue, intcharacterSlot)
    return native.call(0x1581503AE529CD2E, intindex, intvalue, intcharacterSlot)
end

function natives.PLAYSTATS_BACKGROUND_SCRIPT_ACTION(constcharaction, intvalue)
    return native.call(0x5009DFD741329729, constcharaction, intvalue)
end

function natives.PLAYSTATS_NPC_INVITE(Anyp0)
    return native.call(0x93054C88E6AA7C44, Anyp0)
end

function natives.PLAYSTATS_AWARD_XP(intamount, Hashtype, Hashcategory)
    return native.call(0x46F917F6B4128FE4, intamount, Hashtype, Hashcategory)
end

function natives.PLAYSTATS_RANK_UP(intrank)
    return native.call(0xC7F2DE41D102BFB4, intrank)
end

function natives.PLAYSTATS_STARTED_SESSION_IN_OFFLINEMODE()
    return native.call(0x098760C7461724CD)
end

function natives.PLAYSTATS_ACTIVITY_DONE(Anyp0, Anyp1)
    return native.call(0xA071E0ED98F91286, Anyp0, Anyp1)
end

function natives.PLAYSTATS_LEAVE_JOB_CHAIN(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xC5BE134EC7BA96A0, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_MISSION_STARTED(Anyp0, Anyp1, Anyp2, BOOLp3)
    return native.call(0xC19A2925C34D2231, Anyp0, Anyp1, Anyp2, BOOLp3)
end

function natives.PLAYSTATS_MISSION_OVER(Anyp0, Anyp1, Anyp2, BOOLp3, BOOLp4, BOOLp5)
    return native.call(0x7C4BB33A8CED7324, Anyp0, Anyp1, Anyp2, BOOLp3, BOOLp4, BOOLp5)
end

function natives.PLAYSTATS_MISSION_CHECKPOINT(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xC900596A63978C1D, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_RANDOM_MISSION_DONE(constcharname, Anyp1, Anyp2, Anyp3)
    return native.call(0x71862B1D855F32E1, constcharname, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_ROS_BET(intamount, intact, Playerplayer, floatcm)
    return native.call(0x121FB4DDDC2D5291, intamount, intact, Playerplayer, floatcm)
end

function natives.PLAYSTATS_RACE_CHECKPOINT(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x9C375C315099DDE4, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives._0x6DEE77AFF8C21BD1(intplayerAccountId, intposixTime)
    return native.call(0x6DEE77AFF8C21BD1, intplayerAccountId, intposixTime)
end

function natives.PLAYSTATS_MATCH_STARTED(Anyp0, Anyp1, Anyp2)
    return native.call(0xBC80E22DED931E3D, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_SHOP_ITEM(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x176852ACAAC173D1, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_CRATE_DROP_MISSION_DONE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
    return native.call(0x1CAE5D2E3F9A07F0, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
end

function natives.PLAYSTATS_CRATE_CREATED(floatp0, floatp1, floatp2)
    return native.call(0xAFC7E5E075A96F46, floatp0, floatp1, floatp2)
end

function natives.PLAYSTATS_HOLD_UP_MISSION_DONE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xCB00196B31C39EB1, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_IMPORT_EXPORT_MISSION_DONE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x2B69F5074C894811, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_RACE_TO_POINT_MISSION_DONE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xADDD1C754E2E2914, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_ACQUIRED_HIDDEN_PACKAGE(Anyp0)
    return native.call(0x79AB33F0FBFAC40C, Anyp0)
end

function natives.PLAYSTATS_WEBSITE_VISITED(HashscaleformHash, intp1)
    return native.call(0xDDF24D535060F811, HashscaleformHash, intp1)
end

function natives.PLAYSTATS_FRIEND_ACTIVITY(Anyp0, Anyp1)
    return native.call(0x0F71DE29AB2258F1, Anyp0, Anyp1)
end

function natives.PLAYSTATS_ODDJOB_DONE(Anyp0, Anyp1, Anyp2)
    return native.call(0x69DEA3E9DB727B4C, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_PROP_CHANGE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xBA739D6D5A05D6E7, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_CLOTH_CHANGE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x34B973047A2268B9, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_WEAPON_MODE_CHANGE(HashweaponHash, HashcomponentHashTo, HashcomponentHashFrom)
    return native.call(0xE95C8A1875A02CA4, HashweaponHash, HashcomponentHashTo, HashcomponentHashFrom)
end

function natives.PLAYSTATS_CHEAT_APPLIED(constcharcheat)
    return native.call(0x6058665D72302D3F, constcharcheat)
end

function natives._0xF8C54A461C3E11DC(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xF8C54A461C3E11DC, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_JOB_BEND(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xF5BB8DAC426A52C0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0xA736CF7FB7C5BFF4(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xA736CF7FB7C5BFF4, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x14E0B2D1AD1044E0(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x14E0B2D1AD1044E0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_QUICKFIX_TOOL(intelement, constcharitem)
    return native.call(0x90D0622866E80445, intelement, constcharitem)
end

function natives.PLAYSTATS_IDLE_KICK(inttime)
    return native.call(0x5DA3A8DE8CB6226F, inttime)
end

function natives.PLAYSTATS_SET_JOIN_TYPE(intjoinType)
    return native.call(0xD1032E482629049E, intjoinType)
end

function natives.PLAYSTATS_HEIST_SAVE_CHEAT(Hashhash, intp1)
    return native.call(0xF4FF020A08BC8863, Hashhash, intp1)
end

function natives.PLAYSTATS_DIRECTOR_MODE(Anyp0)
    return native.call(0x46326E13DA4E0546, Anyp0)
end

function natives.PLAYSTATS_AWARD_BADSPORT(intid)
    return native.call(0x47B32F5611E6E483, intid)
end

function natives.PLAYSTATS_PEGASAIRCRAFT(HashmodelHash)
    return native.call(0x9572BD4DD6B72122, HashmodelHash)
end

function natives.PLAYSTATS_FREEMODE_CHALLENGES(Anyp0)
    return native.call(0x6A60E43998228229, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_VEHICLE_TARGET(Anyp0)
    return native.call(0xBFAFDB5FAAA5C5AB, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_URBAN_WARFARE(Anyp0)
    return native.call(0x8C9D11605E59D955, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_CHECKPOINT_COLLECTION(Anyp0)
    return native.call(0x3DE3AA516FB126A4, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_ATOB(Anyp0)
    return native.call(0xBAA2F0490E146BE8, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_PENNED_IN(Anyp0)
    return native.call(0x1A7CE7CD3E653485, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_PASS_THE_PARCEL(Anyp0)
    return native.call(0x419615486BBF1956, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_HOT_PROPERTY(Anyp0)
    return native.call(0x84DFC579C2FC214C, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_DEADDROP(Anyp0)
    return native.call(0x0A9C7F36E5D7B683, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_KING_OF_THE_CASTLE(Anyp0)
    return native.call(0x164C5FF663790845, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_CRIMINAL_DAMAGE(Anyp0)
    return native.call(0xEDBF6C9B0D2C65C8, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_COMPETITIVE_URBAN_WARFARE(Anyp0)
    return native.call(0x6551B1F7F6CD46EA, Anyp0)
end

function natives.PLAYSTATS_FREEMODE_HUNT_BEAST(Anyp0)
    return native.call(0x2CD90358F67D0AA8, Anyp0)
end

function natives.PLAYSTATS_PI_MENU_HIDE_SETTINGS(Anydata)
    return native.call(0x203B381133817079, Anydata)
end

function natives.LEADERBOARDS_GET_NUMBER_OF_COLUMNS(Anyp0, Anyp1)
    return native.call(0x117B45156D7EFF2E, Anyp0, Anyp1)
end

function natives.LEADERBOARDS_GET_COLUMN_ID(Anyp0, Anyp1, Anyp2)
    return native.call(0xC4B5467A1886EA7E, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS_GET_COLUMN_TYPE(Anyp0, Anyp1, Anyp2)
    return native.call(0xBF4FEF46DB7894D3, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS_READ_CLEAR_ALL()
    return native.call(0xA34CB6E6F0DF4A0B)
end

function natives.LEADERBOARDS_READ_CLEAR(Anyp0, Anyp1, Anyp2)
    return native.call(0x7CCE5C737A665701, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS_READ_PENDING(Anyp0, Anyp1, Anyp2)
    return native.call(0xAC392C8483342AC2, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS_READ_ANY_PENDING()
    return native.call(0xA31FD15197B192BD)
end

function natives.LEADERBOARDS_READ_SUCCESSFUL(Anyp0, Anyp1, Anyp2)
    return native.call(0x2FB19228983E832C, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS2_READ_FRIENDS_BY_ROW(Anyp0, Anyp1, Anyp2, BOOLp3, Anyp4, Anyp5)
    return native.call(0x918B101666F9CB83, Anyp0, Anyp1, Anyp2, BOOLp3, Anyp4, Anyp5)
end

function natives.LEADERBOARDS2_READ_BY_HANDLE(Anyp0, Anyp1)
    return native.call(0xC30713A383BFBF0E, Anyp0, Anyp1)
end

function natives.LEADERBOARDS2_READ_BY_ROW(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0xA9CDB1E3F0A49883, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.LEADERBOARDS2_READ_BY_RANK(Anyp0, Anyp1, Anyp2)
    return native.call(0xBA2C7DB0C129449A, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS2_READ_BY_RADIUS(Anyp0, Anyp1, Anyp2)
    return native.call(0x5CE587FB5A42C8C4, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS2_READ_BY_SCORE_INT(Anyp0, Anyp1, Anyp2)
    return native.call(0x7EEC7E4F6984A16A, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS2_READ_BY_SCORE_FLOAT(Anyp0, floatp1, Anyp2)
    return native.call(0xE662C8B759D08F3C, Anyp0, floatp1, Anyp2)
end

function natives.LEADERBOARDS2_READ_RANK_PREDICTION(Anyp0, Anyp1, Anyp2)
    return native.call(0xC38DC1E90D22547C, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS2_READ_BY_PLATFORM(Anyp0, constchargamerHandleCsv, constcharplatformName)
    return native.call(0xF1AE5DCDBFCA2721, Anyp0, constchargamerHandleCsv, constcharplatformName)
end

function natives.LEADERBOARDS2_READ_BY_HELP_PURPLE_START(Anyp0)
    return native.call(0xA0F93D5465B3094D, Anyp0)
end

function natives.LEADERBOARDS2_READ_BY_HELP_PURPLE_END()
    return native.call(0x71B008056E5692D6)
end

function natives.LEADERBOARDS2_READ_BY_HELP_PURPLE_INFO(Anyp0, Anyp1)
    return native.call(0x34770B9CE0E03B91, Anyp0, Anyp1)
end

function natives.LEADERBOARDS2_READ_BY_HELP_PURPLE_INT(Anyp0, Anyp1)
    return native.call(0x88578F6EC36B4A3A, Anyp0, Anyp1)
end

function natives.LEADERBOARDS2_READ_BY_HELP_PURPLE_FLOAT(Anyp0, Anyp1)
    return native.call(0x38491439B6BA7F7D, Anyp0, Anyp1)
end

function natives.LEADERBOARDS2_WRITE_DATA(Anyp0)
    return native.call(0xAE2206545888AE49, Anyp0)
end

function natives.LEADERBOARDS_WRITE_ADD_COLUMN(Anyp0, Anyp1, floatp2)
    return native.call(0x0BCA1D2C47B0D269, Anyp0, Anyp1, floatp2)
end

function natives.LEADERBOARDS_WRITE_ADD_COLUMN_LONG(Anyp0, Anyp1, Anyp2)
    return native.call(0x2E65248609523599, Anyp0, Anyp1, Anyp2)
end

function natives.LEADERBOARDS_CACHE_DATA_ROW(Anyp0)
    return native.call(0xB9BB18E2C40142ED, Anyp0)
end

function natives.LEADERBOARDS_CLEAR_CACHE_DATA()
    return native.call(0xD4B02A6B476E1FDC)
end

function natives._0x8EC74CEB042E7CFF(Anyp0)
    return native.call(0x8EC74CEB042E7CFF, Anyp0)
end

function natives.LEADERBOARDS_GET_CACHE_EXISTS(Anyp0)
    return native.call(0x9C51349BE6CDFE2C, Anyp0)
end

function natives.LEADERBOARDS_GET_CACHE_TIME(Anyp0)
    return native.call(0xF04C1C27DA35F6C8, Anyp0)
end

function natives.LEADERBOARDS_GET_CACHE_NUMBER_OF_ROWS(Anyp0)
    return native.call(0x58A651CD201D89AD, Anyp0)
end

function natives.LEADERBOARDS_GET_CACHE_DATA_ROW(Anyp0, Anyp1, Anyp2)
    return native.call(0x9120E8DBA3D69273, Anyp0, Anyp1, Anyp2)
end

function natives.PRESENCE_EVENT_UPDATESTAT_INT(HashstatHash, intvalue, intp2)
    return native.call(0x11FF1C80276097ED, HashstatHash, intvalue, intp2)
end

function natives.PRESENCE_EVENT_UPDATESTAT_FLOAT(HashstatHash, floatvalue, intp2)
    return native.call(0x30A6614C1F7799B8, HashstatHash, floatvalue, intp2)
end

function natives.PRESENCE_EVENT_UPDATESTAT_INT_WITH_STRING(HashstatHash, intvalue, intp2, constcharstring)
    return native.call(0x6483C25849031C4F, HashstatHash, intvalue, intp2, constcharstring)
end

function natives._0x5EAD2BF6484852E4()
    return native.call(0x5EAD2BF6484852E4)
end

function natives._0xC141B8917E0017EC()
    return native.call(0xC141B8917E0017EC)
end

function natives.SET_PROFILE_SETTING_PROLOGUE_COMPLETE()
    return native.call(0xB475F27C6A994D65)
end

function natives._0xC67E2DA1CBE759E2()
    return native.call(0xC67E2DA1CBE759E2)
end

function natives._0xF1A1803D3476F215(intvalue)
    return native.call(0xF1A1803D3476F215, intvalue)
end

function natives._0x38BAAA5DD4C9D19F(intvalue)
    return native.call(0x38BAAA5DD4C9D19F, intvalue)
end

function natives._0x55384438FC55AD8E(intvalue)
    return native.call(0x55384438FC55AD8E, intvalue)
end

function natives._0x723C1CE13FBFDB67(Anyp0, Anyp1)
    return native.call(0x723C1CE13FBFDB67, Anyp0, Anyp1)
end

function natives._0x0D01D20616FC73FB(Anyp0, Anyp1)
    return native.call(0x0D01D20616FC73FB, Anyp0, Anyp1)
end

function natives._0x428EAF89E24F6C36(Anyp0, floatp1)
    return native.call(0x428EAF89E24F6C36, Anyp0, floatp1)
end

function natives.STAT_SET_CHEAT_IS_ACTIVE()
    return native.call(0x047CBED6F6F8B63C)
end

function natives.LEADERBOARDS2_WRITE_DATA_FOR_EVENT_TYPE(Anyp0, Anyp1)
    return native.call(0xC980E62E33DF1D5C, Anyp0, Anyp1)
end

function natives._0x6F361B8889A792A3()
    return native.call(0x6F361B8889A792A3)
end

function natives._0xC847B43F369AC0B5()
    return native.call(0xC847B43F369AC0B5)
end

function natives.STAT_MIGRATE_SAVE(constcharplatformName)
    return native.call(0xA5C80D8E768A9E66, constcharplatformName)
end

function natives._0x9A62EC95AE10E011()
    return native.call(0x9A62EC95AE10E011)
end

function natives._0x4C89FE2BDEB3F169()
    return native.call(0x4C89FE2BDEB3F169)
end

function natives._0xC6E0E2616A7576BB()
    return native.call(0xC6E0E2616A7576BB)
end

function natives._0x5BD5F255321C4AAF(Anyp0)
    return native.call(0x5BD5F255321C4AAF, Anyp0)
end

function natives._0xDEAAF77EB3687E97(Anyp0, Anyp1)
    return native.call(0xDEAAF77EB3687E97, Anyp0, Anyp1)
end

function natives.STAT_GET_SAVE_MIGRATION_STATUS(Anydata)
    return native.call(0x886913BBEACA68C1, Anydata)
end

function natives.STAT_SAVE_MIGRATION_CANCEL()
    return native.call(0x4FEF53183C3C6414)
end

function natives.STAT_GET_CANCEL_SAVE_MIGRATION_STATUS()
    return native.call(0x567384DFA67029E6)
end

function natives.STAT_SAVE_MIGRATION_CONSUME_CONTENT_UNLOCK(HashcontentId, constcharsrcPlatform, constcharsrcGamerHandle)
    return native.call(0x3270F67EED31FBC1, HashcontentId, constcharsrcPlatform, constcharsrcGamerHandle)
end

function natives.STAT_GET_SAVE_MIGRATION_CONSUME_CONTENT_UNLOCK_STATUS(intp0)
    return native.call(0xCE5AA445ABA8DEE0, intp0)
end

function natives.STAT_MANAGER_SET_MUTABLE()
    return native.call(0x98E2BC1CA26287C3)
end

function natives.STAT_MANAGER_SET_IMMUTABLE()
    return native.call(0x629526ABA383BCAA)
end

function natives.STAT_MANAGER_IS_MUTABLE()
    return native.call(0xBE3DB208333D9844)
end

function natives.STAT_TRACKING_ENABLE(intstatType, intvalueType)
    return native.call(0x33D72899E24C3365, intstatType, intvalueType)
end

function natives.STAT_TRACKING_CLEAR_PROGRESS()
    return native.call(0xA761D4AC6115623D)
end

function natives.STAT_GET_PROGRESS_OF_TRACKED_STAT(floatvalue)
    return native.call(0xF11F01D98113536A, floatvalue)
end

function natives.STAT_IS_TRACKING_ENABLED()
    return native.call(0x8B9CDBD6C566C38C)
end

function natives.STAT_GET_CHALLENGE_NEAR_MISSES()
    return native.call(0xE8853FBCE7D8D0D6)
end

function natives.STAT_GET_CHALLENGE_LONGEST_WHEELIE()
    return native.call(0xA943FD1722E11EFD)
end

function natives.STAT_GET_CHALLENGE_LONGEST_STOPPIE()
    return native.call(0x84A810B375E69C0E)
end

function natives.STAT_GET_CHALLENGE_LONGEST_JUMP()
    return native.call(0x9EC8858184CD253A)
end

function natives.STAT_GET_CHALLENGE_NO_CRASHES()
    return native.call(0xBA9749CC94C1FD85)
end

function natives.STAT_GET_CHALLENGE_HIGHEST_SPEED()
    return native.call(0x55A8BECAF28A4EB7)
end

function natives.STAT_GET_CHALLENGE_REVERSE_DRIVING()
    return native.call(0x32CAC93C9DE73D32)
end

function natives.STAT_GET_CHALLENGE_LONGEST_FREEFALL()
    return native.call(0xAFF47709F1D5DCCE)
end

function natives.STAT_GET_CHALLENGE_LOW_FLYING()
    return native.call(0x6E0A5253375C4584)
end

function natives.STAT_GET_HEIGHT_ABOVE_GROUND(floatp0)
    return native.call(0x1A8EA222F9C67DBB, floatp0)
end

function natives.STAT_IS_ABOVE_DEEP_WATER()
    return native.call(0xF9F2922717B819EC)
end

function natives.STAT_GET_LONGEST_BAIL()
    return native.call(0x0B8B7F74BF061C6D)
end

function natives._0xB3DA2606774A8E2D()
    return native.call(0xB3DA2606774A8E2D)
end

function natives.SET_HAS_CONTENT_UNLOCKS_FLAGS(intvalue)
    return native.call(0xDAC073C7901F9E15, intvalue)
end

function natives.SET_SAVE_MIGRATION_TRANSACTION_ID(inttransactionId)
    return native.call(0xF6792800AC95350D, inttransactionId)
end

function natives._0x6BC0ACD0673ACEBE(Anyp0, Anyp1, Anyp2)
    return native.call(0x6BC0ACD0673ACEBE, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_BW_BOSS_ON_BOSS_DEATH_MATCH(Anyp0)
    return native.call(0x8D8ADB562F09A245, Anyp0)
end

function natives.PLAYSTATS_BW_YACHT_ATTACK(Anyp0)
    return native.call(0xD1A1EE3B4FA8E760, Anyp0)
end

function natives.PLAYSTATS_BW_HUNT_THE_BOSS(Anyp0)
    return native.call(0x88087EE1F28024AE, Anyp0)
end

function natives.PLAYSTATS_BW_SIGHTSEER(Anyp0)
    return native.call(0xFCC228E07217FCAC, Anyp0)
end

function natives.PLAYSTATS_BW_ASSAULT(Anyp0)
    return native.call(0x678F86D8FC040BDB, Anyp0)
end

function natives.PLAYSTATS_BW_BELLY_OF_THE_BEAST(Anyp0)
    return native.call(0xA6F54BB2FFCA35EA, Anyp0)
end

function natives.PLAYSTATS_BW_HEADHUNTER(Anyp0)
    return native.call(0x5FF2C33B13A02A11, Anyp0)
end

function natives.PLAYSTATS_BW_FRAGILE_GOOODS(Anyp0)
    return native.call(0x282B6739644F4347, Anyp0)
end

function natives.PLAYSTATS_BW_AIR_FREIGHT(Anyp0)
    return native.call(0xF06A6F41CB445443, Anyp0)
end

function natives.PLAYSTATS_BC_CAR_JACKING(Anyp0)
    return native.call(0x7B18DA61F6BAE9D5, Anyp0)
end

function natives.PLAYSTATS_BC_SMASH_AND_GRAB(Anyp0)
    return native.call(0x06EAF70AE066441E, Anyp0)
end

function natives.PLAYSTATS_BC_PROTECTION_RACKET(Anyp0)
    return native.call(0x14EDA9EE27BD1626, Anyp0)
end

function natives.PLAYSTATS_BC_MOST_WANTED(Anyp0)
    return native.call(0x930F504203F561C9, Anyp0)
end

function natives.PLAYSTATS_BC_FINDERS_KEEPERS(Anyp0)
    return native.call(0xE3261D791EB44ACB, Anyp0)
end

function natives.PLAYSTATS_BC_POINT_TO_POINT(Anyp0)
    return native.call(0x73001E34F85137F8, Anyp0)
end

function natives.PLAYSTATS_BC_CASHING(Anyp0)
    return native.call(0x53CAE13E9B426993, Anyp0)
end

function natives.PLAYSTATS_BC_SALVAGE(Anyp0)
    return native.call(0x7D36291161859389, Anyp0)
end

function natives.PLAYSTATS_SPENT_PI_CUSTOM_LOADOUT(intamount)
    return native.call(0xBE509B0A3693DE8B, intamount)
end

function natives.PLAYSTATS_BUY_CONTRABAND(Anydata)
    return native.call(0xD6781E42755531F7, Anydata)
end

function natives.PLAYSTATS_SELL_CONTRABAND(Anydata)
    return native.call(0xC729991A9065376E, Anydata)
end

function natives.PLAYSTATS_DEFEND_CONTRABAND(Anydata)
    return native.call(0x2605663BD4F23B5D, Anydata)
end

function natives.PLAYSTATS_RECOVER_CONTRABAND(Anydata)
    return native.call(0x04D90BA8207ADA2D, Anydata)
end

function natives.PLAYSTATS_HIT_CONTRABAND_DESTROY_LIMIT(Anyp0)
    return native.call(0x60EEDC12AF66E846, Anyp0)
end

function natives.PLAYSTATS_BECOME_BOSS(Anyp0)
    return native.call(0x3EBEAC6C3F81F6BD, Anyp0)
end

function natives.PLAYSTATS_BECOME_GOON(Anyp0, Anyp1, Anyp2)
    return native.call(0x96E6D5150DBF1C09, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_END_BEING_BOSS(Anyp0, Anyp1)
    return native.call(0xA3C53804BDB68ED2, Anyp0, Anyp1)
end

function natives.PLAYSTATS_END_BEING_GOON(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x6BCCF9948492FD85, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.HIRED_LIMO(Anyp0, Anyp1)
    return native.call(0x792271AB35C356A4, Anyp0, Anyp1)
end

function natives.ORDERED_BOSS_VEHICLE(Anyp0, Anyp1, HashvehicleHash)
    return native.call(0xCEA553E35C2246E1, Anyp0, Anyp1, HashvehicleHash)
end

function natives.PLAYSTATS_CHANGE_UNIFORM(Anyp0, Anyp1, Anyp2)
    return native.call(0xD1C9B92BDD3F151D, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_CHANGE_GOON_LOOKING_FOR_WORK(Anyp0)
    return native.call(0x44919CC079BB60BF, Anyp0)
end

function natives.PLAYSTATS_GHOSTING_TO_PLAYER(Anyp0)
    return native.call(0x7033EEFD9B28088E, Anyp0)
end

function natives.PLAYSTATS_VIP_POACH(Anyp0, Anyp1, Anyp2)
    return native.call(0xAA525DFF66BB82F5, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_PUNISH_BODYGUARD(Anyp0)
    return native.call(0x015B03EE1C43E6EC, Anyp0)
end

function natives.PLAYSTATS_STUNT_PERFORMED_EVENT_ALLOW_TRIGGER()
    return native.call(0x928DBFB892638EF3)
end

function natives.PLAYSTATS_STUNT_PERFORMED_EVENT_DISALLOW_TRIGGER()
    return native.call(0x8A800DACCC0DA55D)
end

function natives.PLAYSTATS_MISSION_ENDED(Anyp0)
    return native.call(0xBF371CD2B64212FD, Anyp0)
end

function natives.PLAYSTATS_IMPEXP_MISSION_ENDED(Anyp0)
    return native.call(0x7D8BA05688AD64C7, Anyp0)
end

function natives.PLAYSTATS_CHANGE_MC_ROLE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x0B565B0AAE56A0E8, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.PLAYSTATS_CHANGE_MC_OUTFIT(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x28ECB8AC2F607DB2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_CHANGE_MC_EMBLEM(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x0A50D2604E05CB94, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_MC_REQUEST_BIKE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xCC25A4553DFBF9EA, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_KILLED_RIVAL_MC_MEMBER(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xF534D94DFA2EAD26, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_ABANDONING_MC(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0xD558BEC0BBA7E8D2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_EARNED_MC_POINTS(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x501478855A6074CE, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.PLAYSTATS_MC_FORMATION_ENDS(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x03C2EEBB04B3FB72, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.PLAYSTATS_MC_CLUBHOUSE_ACTIVITY(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x8989CBD7B4E82534, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.PLAYSTATS_RIVAL_BEHAVIOUR(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0x27AA1C973CACFE63, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.PLAYSTATS_COPY_RANK_INTO_NEW_SLOT(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0xB7257BA2550EA10A, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.PLAYSTATS_DUPE_DETECTION(Anydata)
    return native.call(0x848B66100EE33B05, Anydata)
end

function natives.PLAYSTATS_BAN_ALERT(intp0)
    return native.call(0x516FC96EB88EEFE5, intp0)
end

function natives.PLAYSTATS_GUNRUN_MISSION_ENDED(Anydata)
    return native.call(0x0EACDF8487D5155A, Anydata)
end

function natives.PLAYSTATS_GUNRUN_RND(Anyp0)
    return native.call(0xDAF80797FC534BEC, Anyp0)
end

function natives.PLAYSTATS_BUSINESS_BATTLE_ENDED(Anyp0)
    return native.call(0x316DB59CD14C1774, Anyp0)
end

function natives.PLAYSTATS_WAREHOUSE_MISSION_ENDED(Anyp0)
    return native.call(0x2D7A9B577E72385E, Anyp0)
end

function natives.PLAYSTATS_NIGHTCLUB_MISSION_ENDED(Anyp0)
    return native.call(0x830C3A44EB3F2CF9, Anyp0)
end

function natives.PLAYSTATS_DJ_USAGE(Anyp0, Anyp1)
    return native.call(0xB26F670685631727, Anyp0, Anyp1)
end

function natives.PLAYSTATS_MINIGAME_USAGE(Anyp0, Anyp1, Anyp2)
    return native.call(0xC14BD9F5337219B2, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_STONE_HATCHET_END(Anydata)
    return native.call(0x35E39E5570358630, Anydata)
end

function natives.PLAYSTATS_SMUG_MISSION_ENDED(Anydata)
    return native.call(0x320C35147D5B5DDD, Anydata)
end

function natives.PLAYSTATS_H2_FMPREP_END(Anydata)
    return native.call(0xD8AFB345A9C5CCBB, Anydata)
end

function natives.PLAYSTATS_H2_INSTANCE_END(Anydata, Anyp1, Anyp2, Anyp3)
    return native.call(0x1E1497D0D2108115, Anydata, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_DAR_MISSION_END(Anydata)
    return native.call(0x0BC254FF3A911501, Anydata)
end

function natives.PLAYSTATS_ENTER_SESSION_PACK(Anydata)
    return native.call(0x878FF156D36E9956, Anydata)
end

function natives.PLAYSTATS_DRONE_USAGE(intp0, intp1, intp2)
    return native.call(0x66C7BB2416ED3FCE, intp0, intp1, intp2)
end

function natives.PLAYSTATS_SPECTATOR_WHEEL_SPIN(intp0, intp1, intp2, intp3)
    return native.call(0x6731DE84A38BFAD0, intp0, intp1, intp2, intp3)
end

function natives.PLAYSTATS_ARENA_WAR_SPECTATOR(intp0, intp1, intp2, intp3, intp4)
    return native.call(0x6F4F599753F8200A, intp0, intp1, intp2, intp3, intp4)
end

function natives.PLAYSTATS_ARENA_WARS_ENDED(Anydata)
    return native.call(0xB479D9F0D48A1BC5, Anydata)
end

function natives.PLAYSTATS_PASSIVE_MODE(BOOLp0, intp1, intp2, intp3)
    return native.call(0x35EEC6C2BC821A71, BOOLp0, intp1, intp2, intp3)
end

function natives.PLAYSTATS_COLLECTIBLE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0xCD0A8A9338681CF2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.PLAYSTATS_CASINO_STORY_MISSION_ENDED(Anyp0, Anyp1)
    return native.call(0xFCCCAC2BD3C1F180, Anyp0, Anyp1)
end

function natives.PLAYSTATS_CASINO_CHIP(Anyp0)
    return native.call(0x0999F3F090EC5012, Anyp0)
end

function natives.PLAYSTATS_CASINO_ROULETTE(Anyp0)
    return native.call(0x95101C443A84E7F1, Anyp0)
end

function natives.PLAYSTATS_CASINO_BLACKJACK(Anyp0)
    return native.call(0x3EAE97309727E7AD, Anyp0)
end

function natives.PLAYSTATS_CASINO_THREECARDPOKER(Anyp0)
    return native.call(0xF740FB339D471C35, Anyp0)
end

function natives.PLAYSTATS_CASINO_SLOTMACHINE(Anyp0)
    return native.call(0xEF5EC67D392B830A, Anyp0)
end

function natives.PLAYSTATS_CASINO_INSIDETRACK(Anyp0)
    return native.call(0x049F059625058A86, Anyp0)
end

function natives.PLAYSTATS_CASINO_LUCKYSEVEN(Anyp0)
    return native.call(0x0C432C1435F5E4FA, Anyp0)
end

function natives.PLAYSTATS_CASINO_ROULETTE_LIGHT(Anyp0)
    return native.call(0x6572ABA3DE1197FC, Anyp0)
end

function natives.PLAYSTATS_CASINO_BLACKJACK_LIGHT(Anyp0)
    return native.call(0xD5451C7BF151EB6F, Anyp0)
end

function natives.PLAYSTATS_CASINO_THREECARDPOKER_LIGHT(Anyp0)
    return native.call(0xC9001364B4388F22, Anyp0)
end

function natives.PLAYSTATS_CASINO_SLOTMACHINE_LIGHT(Anyp0)
    return native.call(0xE60054A0FAE8227F, Anyp0)
end

function natives.PLAYSTATS_CASINO_INSIDETRACK_LIGHT(Anyp0)
    return native.call(0x23A3CBCD50D54E47, Anyp0)
end

function natives.PLAYSTATS_ARCADEGAME(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x533A7D1EA58DF958, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.PLAYSTATS_ARCADE_LOVEMATCH(Anyp0, Anyp1)
    return native.call(0x4FCDBD3F0A813C25, Anyp0, Anyp1)
end

function natives.PLAYSTATS_CASINO_MISSION_ENDED(Anydata)
    return native.call(0x1A0D4A6C336B7BC5, Anydata)
end

function natives.PLAYSTATS_HEIST3_DRONE(Anyp0)
    return native.call(0xDFBD93BF2943E29B, Anyp0)
end

function natives.PLAYSTATS_HEIST3_HACK(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x92FC0EEDFAC04A14, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.PLAYSTATS_NPC_PHONE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x0077F15613D36993, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.PLAYSTATS_ARCADE_CABINET(Anyp0)
    return native.call(0xF9096193DF1F99D4, Anyp0)
end

function natives.PLAYSTATS_HEIST3_FINALE(Anyp0)
    return native.call(0x2E0259BABC27A327, Anyp0)
end

function natives.PLAYSTATS_HEIST3_PREP(Anyp0)
    return native.call(0x53C31853EC9531FF, Anyp0)
end

function natives.PLAYSTATS_MASTER_CONTROL(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x810B5FCC52EC7FF0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_QUIT_MODE(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x5BF29846C6527C54, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_MISSION_VOTE(Anyp0)
    return native.call(0xC03FAB2C2F92289B, Anyp0)
end

function natives.PLAYSTATS_NJVS_VOTE(Anyp0)
    return native.call(0x5CDAED54B34B0ED0, Anyp0)
end

function natives._0x4AFF7E02E485E92B()
    return native.call(0x4AFF7E02E485E92B)
end

function natives.PLAYSTATS_FREEMODE_MISSION_END(Anyp0, Anyp1, Anyp2)
    return native.call(0x46A70777BE6CEAB9, Anyp0, Anyp1, Anyp2)
end

function natives.PLAYSTATS_HEIST4_PREP(Anyp0)
    return native.call(0xDFCDB14317A9B361, Anyp0)
end

function natives.PLAYSTATS_HEIST4_FINALE(Anyp0)
    return native.call(0xC1E963C58664B556, Anyp0)
end

function natives.PLAYSTATS_HEIST4_HACK(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x2FA3173480008493, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.PLAYSTATS_SUB_WEAP(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xD4367D310F079DB0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_FAST_TRVL(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0x4DC416F246A41FC8, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives.PLAYSTATS_HUB_ENTRY(Anyp0)
    return native.call(0x2818FF6638CB09DE, Anyp0)
end

function natives.PLAYSTATS_DJ_MISSION_ENDED(Anyp0)
    return native.call(0xD6CA58B3B53A0F22, Anyp0)
end

function natives.PLAYSTATS_ROBBERY_PREP(Anyp0)
    return native.call(0x1A67DFBF1F5C3835, Anyp0)
end

function natives.PLAYSTATS_ROBBERY_FINALE(Anyp0)
    return native.call(0xBBA55BE9AAAABF44, Anyp0)
end

function natives.PLAYSTATS_EXTRA_EVENT(Anyp0)
    return native.call(0xFA5B74BAB8A7EF99, Anyp0)
end

function natives.PLAYSTATS_CARCLUB_POINTS(Anyp0)
    return native.call(0xFF14D6FEEC507BBE, Anyp0)
end

function natives.PLAYSTATS_CARCLUB_CHALLENGE(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x1187CB58D7F3BED7, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.PLAYSTATS_CARCLUB_PRIZE(Anyp0, Anyp1)
    return native.call(0x69C922B677621428, Anyp0, Anyp1)
end

function natives.PLAYSTATS_AWARDS_NAV(Anyp0, Anyp1)
    return native.call(0x70F52471E758EBAE, Anyp0, Anyp1)
end

function natives.PLAYSTATS_INST_MISSION_END(Anyp0)
    return native.call(0xFEA3F7E83C0610FA, Anyp0)
end

function natives.PLAYSTATS_HUB_EXIT(Anyp0)
    return native.call(0x5A46ACE5C4661132, Anyp0)
end

function natives.LOAD_ALL_OBJECTS_NOW()
    return native.call(0xBD6E84632DD4CB3F)
end

function natives.LOAD_SCENE(floatx, floaty, floatz)
    return native.call(0x4448EB75B4904BDB, floatx, floaty, floatz)
end

function natives.NETWORK_UPDATE_LOAD_SCENE()
    return native.call(0xC4582015556D1C46)
end

function natives.IS_NETWORK_LOADING_SCENE()
    return native.call(0x41CA5A33160EA4AB)
end

function natives.SET_INTERIOR_ACTIVE(intinteriorID, BOOLtoggle)
    return native.call(0xE37B76C387BE28ED, intinteriorID, BOOLtoggle)
end

function natives.REQUEST_MODEL(Hashmodel)
    return native.call(0x963D27A58DF860AC, Hashmodel)
end

function natives.REQUEST_MENU_PED_MODEL(Hashmodel)
    return native.call(0xA0261AEF7ACFC51E, Hashmodel)
end

function natives.HAS_MODEL_LOADED(Hashmodel)
    return native.call(0x98A4EB5D89A0C952, Hashmodel)
end

function natives.REQUEST_MODELS_IN_ROOM(Interiorinterior, constcharroomName)
    return native.call(0x8A7A40100EDFEC58, Interiorinterior, constcharroomName)
end

function natives.SET_MODEL_AS_NO_LONGER_NEEDED(Hashmodel)
    return native.call(0xE532F5D78798DAAB, Hashmodel)
end

function natives.IS_MODEL_IN_CDIMAGE(Hashmodel)
    return native.call(0x35B9E0803292B641, Hashmodel)
end

function natives.IS_MODEL_VALID(Hashmodel)
    return native.call(0xC0296A2EDF545E92, Hashmodel)
end

function natives.IS_MODEL_A_PED(Hashmodel)
    return native.call(0x75816577FEA6DAD5, Hashmodel)
end

function natives.IS_MODEL_A_VEHICLE(Hashmodel)
    return native.call(0x19AAC8F07BFEC53E, Hashmodel)
end

function natives.REQUEST_COLLISION_AT_COORD(floatx, floaty, floatz)
    return native.call(0x07503F7948F491A7, floatx, floaty, floatz)
end

function natives.REQUEST_COLLISION_FOR_MODEL(Hashmodel)
    return native.call(0x923CB32A3B874FCB, Hashmodel)
end

function natives.HAS_COLLISION_FOR_MODEL_LOADED(Hashmodel)
    return native.call(0x22CCA434E368F03A, Hashmodel)
end

function natives.REQUEST_ADDITIONAL_COLLISION_AT_COORD(floatx, floaty, floatz)
    return native.call(0xC9156DC11411A9EA, floatx, floaty, floatz)
end

function natives.DOES_ANIM_DICT_EXIST(constcharanimDict)
    return native.call(0x2DA49C3B79856961, constcharanimDict)
end

function natives.REQUEST_ANIM_DICT(constcharanimDict)
    return native.call(0xD3BD40951412FEF6, constcharanimDict)
end

function natives.HAS_ANIM_DICT_LOADED(constcharanimDict)
    return native.call(0xD031A9162D01088C, constcharanimDict)
end

function natives.REMOVE_ANIM_DICT(constcharanimDict)
    return native.call(0xF66A602F829E2A06, constcharanimDict)
end

function natives.REQUEST_ANIM_SET(constcharanimSet)
    return native.call(0x6EA47DAE7FAD0EED, constcharanimSet)
end

function natives.HAS_ANIM_SET_LOADED(constcharanimSet)
    return native.call(0xC4EA073D86FB29B0, constcharanimSet)
end

function natives.REMOVE_ANIM_SET(constcharanimSet)
    return native.call(0x16350528F93024B3, constcharanimSet)
end

function natives.REQUEST_CLIP_SET(constcharclipSet)
    return native.call(0xD2A71E1A77418A49, constcharclipSet)
end

function natives.HAS_CLIP_SET_LOADED(constcharclipSet)
    return native.call(0x318234F4F3738AF3, constcharclipSet)
end

function natives.REMOVE_CLIP_SET(constcharclipSet)
    return native.call(0x01F73A131C18CD94, constcharclipSet)
end

function natives.REQUEST_IPL(constchariplName)
    return native.call(0x41B4893843BBDB74, constchariplName)
end

function natives.REMOVE_IPL(constchariplName)
    return native.call(0xEE6C5AD3ECE0A82D, constchariplName)
end

function natives.IS_IPL_ACTIVE(constchariplName)
    return native.call(0x88A741E44A2B3495, constchariplName)
end

function natives.SET_STREAMING(BOOLtoggle)
    return native.call(0x6E0C692677008888, BOOLtoggle)
end

function natives.LOAD_GLOBAL_WATER_TYPE(intwaterType)
    return native.call(0x7E3F55ED251B76D3, intwaterType)
end

function natives.GET_GLOBAL_WATER_TYPE()
    return native.call(0xF741BD853611592D)
end

function natives.SET_GAME_PAUSES_FOR_STREAMING(BOOLtoggle)
    return native.call(0x717CD6E6FAEBBEDC, BOOLtoggle)
end

function natives.SET_REDUCE_PED_MODEL_BUDGET(BOOLtoggle)
    return native.call(0x77B5F9A36BF96710, BOOLtoggle)
end

function natives.SET_REDUCE_VEHICLE_MODEL_BUDGET(BOOLtoggle)
    return native.call(0x80C527893080CCF3, BOOLtoggle)
end

function natives.SET_DITCH_POLICE_MODELS(BOOLtoggle)
    return native.call(0x42CBE54462D92634, BOOLtoggle)
end

function natives.GET_NUMBER_OF_STREAMING_REQUESTS()
    return native.call(0x4060057271CEBC89)
end

function natives.REQUEST_PTFX_ASSET()
    return native.call(0x944955FB2A3935C8)
end

function natives.HAS_PTFX_ASSET_LOADED()
    return native.call(0xCA7D9B86ECA7481B)
end

function natives.REMOVE_PTFX_ASSET()
    return native.call(0x88C6814073DD4A73)
end

function natives.REQUEST_NAMED_PTFX_ASSET(constcharfxName)
    return native.call(0xB80D8756B4668AB6, constcharfxName)
end

function natives.HAS_NAMED_PTFX_ASSET_LOADED(constcharfxName)
    return native.call(0x8702416E512EC454, constcharfxName)
end

function natives.REMOVE_NAMED_PTFX_ASSET(constcharfxName)
    return native.call(0x5F61EBBE1A00F96D, constcharfxName)
end

function natives.SET_VEHICLE_POPULATION_BUDGET(intp0)
    return native.call(0xCB9E1EB3BE2AF4E9, intp0)
end

function natives.SET_PED_POPULATION_BUDGET(intp0)
    return native.call(0x8C95333CFC3340F3, intp0)
end

function natives.CLEAR_FOCUS()
    return native.call(0x31B73D1EA9F01DA2)
end

function natives.SET_FOCUS_POS_AND_VEL(floatx, floaty, floatz, floatoffsetX, floatoffsetY, floatoffsetZ)
    return native.call(0xBB7454BAFF08FE25, floatx, floaty, floatz, floatoffsetX, floatoffsetY, floatoffsetZ)
end

function natives.SET_FOCUS_ENTITY(Entityentity)
    return native.call(0x198F77705FA0931D, Entityentity)
end

function natives.IS_ENTITY_FOCUS(Entityentity)
    return native.call(0x2DDFF3FB9075D747, Entityentity)
end

function natives._0x0811381EF5062FEC(Entityp0)
    return native.call(0x0811381EF5062FEC, Entityp0)
end

function natives.SET_MAPDATACULLBOX_ENABLED(constcharname, BOOLtoggle)
    return native.call(0xAF12610C644A35C9, constcharname, BOOLtoggle)
end

function natives._0x4E52E752C76E7E7A(Anyp0)
    return native.call(0x4E52E752C76E7E7A, Anyp0)
end

function natives.STREAMVOL_CREATE_SPHERE(floatx, floaty, floatz, floatrad, Anyp4, Anyp5)
    return native.call(0x219C7B8D53E429FD, floatx, floaty, floatz, floatrad, Anyp4, Anyp5)
end

function natives.STREAMVOL_CREATE_FRUSTUM(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, Anyp7, Anyp8)
    return native.call(0x1F3F018BC3AFA77C, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, Anyp7, Anyp8)
end

function natives.STREAMVOL_CREATE_LINE(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
    return native.call(0x0AD9710CEE2F590F, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
end

function natives.STREAMVOL_DELETE(Anyunused)
    return native.call(0x1EE7D8DF4425F053, Anyunused)
end

function natives.STREAMVOL_HAS_LOADED(Anyunused)
    return native.call(0x7D41E9D2D17C5B2D, Anyunused)
end

function natives.STREAMVOL_IS_VALID(Anyunused)
    return native.call(0x07C313F94746702C, Anyunused)
end

function natives.IS_STREAMVOL_ACTIVE()
    return native.call(0xBC9823AB80A3DCAC)
end

function natives.NEW_LOAD_SCENE_START(floatposX, floatposY, floatposZ, floatoffsetX, floatoffsetY, floatoffsetZ, floatradius, intp7)
    return native.call(0x212A8D0D2BABFAC2, floatposX, floatposY, floatposZ, floatoffsetX, floatoffsetY, floatoffsetZ, floatradius, intp7)
end

function natives.NEW_LOAD_SCENE_START_SPHERE(floatx, floaty, floatz, floatradius, Anyp4)
    return native.call(0xACCFB4ACF53551B0, floatx, floaty, floatz, floatradius, Anyp4)
end

function natives.NEW_LOAD_SCENE_STOP()
    return native.call(0xC197616D221FF4A4)
end

function natives.IS_NEW_LOAD_SCENE_ACTIVE()
    return native.call(0xA41A05B6CB741B85)
end

function natives.IS_NEW_LOAD_SCENE_LOADED()
    return native.call(0x01B8247A7A8B9AD1)
end

function natives._0x71E7B2E657449AAD()
    return native.call(0x71E7B2E657449AAD)
end

function natives.START_PLAYER_SWITCH(Pedfrom, Pedto, intflags, intswitchType)
    return native.call(0xFAA23F2CBA159D67, Pedfrom, Pedto, intflags, intswitchType)
end

function natives.STOP_PLAYER_SWITCH()
    return native.call(0x95C0A5BBDC189AA1)
end

function natives.IS_PLAYER_SWITCH_IN_PROGRESS()
    return native.call(0xD9D2CFFF49FAB35F)
end

function natives.GET_PLAYER_SWITCH_TYPE()
    return native.call(0xB3C94A90D9FC9E62)
end

function natives.GET_IDEAL_PLAYER_SWITCH_TYPE(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
    return native.call(0xB5D7B26B45720E05, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2)
end

function natives.GET_PLAYER_SWITCH_STATE()
    return native.call(0x470555300D10B2A5)
end

function natives.GET_PLAYER_SHORT_SWITCH_STATE()
    return native.call(0x20F898A5D9782800)
end

function natives.SET_PLAYER_SHORT_SWITCH_STYLE(intp0)
    return native.call(0x5F2013F8BC24EE69, intp0)
end

function natives.GET_PLAYER_SWITCH_JUMP_CUT_INDEX()
    return native.call(0x78C0D93253149435)
end

function natives.SET_PLAYER_SWITCH_OUTRO(floatcameraCoordX, floatcameraCoordY, floatcameraCoordZ, floatcamRotationX, floatcamRotationY, floatcamRotationZ, floatcamFov, floatcamFarClip, introtationOrder)
    return native.call(0xC208B673CE446B61, floatcameraCoordX, floatcameraCoordY, floatcameraCoordZ, floatcamRotationX, floatcamRotationY, floatcamRotationZ, floatcamFov, floatcamFarClip, introtationOrder)
end

function natives.SET_PLAYER_SWITCH_ESTABLISHING_SHOT(constcharname)
    return native.call(0x0FDE9DBFC0A6BC65, constcharname)
end

function natives.ALLOW_PLAYER_SWITCH_PAN()
    return native.call(0x43D1680C6D19A8E9)
end

function natives.ALLOW_PLAYER_SWITCH_OUTRO()
    return native.call(0x74DE2E8739086740)
end

function natives.ALLOW_PLAYER_SWITCH_ASCENT()
    return native.call(0x8E2A065ABDAE6994)
end

function natives.ALLOW_PLAYER_SWITCH_DESCENT()
    return native.call(0xAD5FDF34B81BFE79)
end

function natives.IS_SWITCH_READY_FOR_DESCENT()
    return native.call(0xDFA80CB25D0A19B3)
end

function natives.ENABLE_SWITCH_PAUSE_BEFORE_DESCENT()
    return native.call(0xD4793DFF3AF2ABCD)
end

function natives.DISABLE_SWITCH_OUTRO_FX()
    return native.call(0xBD605B8E0E18B3BB)
end

function natives.SWITCH_OUT_PLAYER(Pedped, intflags, intswitchType)
    return native.call(0xAAB3200ED59016BC, Pedped, intflags, intswitchType)
end

function natives.SWITCH_IN_PLAYER(Pedped)
    return native.call(0xD8295AF639FD9CB8, Pedped)
end

function natives._0x933BBEEB8C61B5F4()
    return native.call(0x933BBEEB8C61B5F4)
end

function natives.GET_PLAYER_SWITCH_INTERP_OUT_DURATION()
    return native.call(0x08C2D6C52A3104BB)
end

function natives.GET_PLAYER_SWITCH_INTERP_OUT_CURRENT_TIME()
    return native.call(0x5B48A06DD0E792A5)
end

function natives.IS_SWITCH_SKIPPING_DESCENT()
    return native.call(0x5B74EA8CFD5E3E7E)
end

function natives._0x1E9057A74FD73E23()
    return native.call(0x1E9057A74FD73E23)
end

function natives.GET_LODSCALE()
    return native.call(0x0C15B0E443B2349D)
end

function natives.OVERRIDE_LODSCALE_THIS_FRAME(floatscaling)
    return native.call(0xA76359FC80B2438E, floatscaling)
end

function natives._0xBED8CA5FF5E04113(floatp0, floatp1, floatp2, floatp3)
    return native.call(0xBED8CA5FF5E04113, floatp0, floatp1, floatp2, floatp3)
end

function natives._0x472397322E92A856()
    return native.call(0x472397322E92A856)
end

function natives.SET_RENDER_HD_ONLY(BOOLtoggle)
    return native.call(0x40AEFD1A244741F2, BOOLtoggle)
end

function natives._0x03F1A106BDA7DD3E()
    return native.call(0x03F1A106BDA7DD3E)
end

function natives.IPL_GROUP_SWAP_START(constchariplName1, constchariplName2)
    return native.call(0x95A7DABDDBB78AE7, constchariplName1, constchariplName2)
end

function natives.IPL_GROUP_SWAP_CANCEL()
    return native.call(0x63EB2B972A218CAC)
end

function natives.IPL_GROUP_SWAP_IS_READY()
    return native.call(0xFB199266061F820A)
end

function natives.IPL_GROUP_SWAP_FINISH()
    return native.call(0xF4A0DADB70F57FA6)
end

function natives.IPL_GROUP_SWAP_IS_ACTIVE()
    return native.call(0x5068F488DDB54DD8)
end

function natives.PREFETCH_SRL(constcharsrl)
    return native.call(0x3D245789CE12982C, constcharsrl)
end

function natives.IS_SRL_LOADED()
    return native.call(0xD0263801A4C5B0BB)
end

function natives.BEGIN_SRL()
    return native.call(0x9BADDC94EF83B823)
end

function natives.END_SRL()
    return native.call(0x0A41540E63C9EE17)
end

function natives.SET_SRL_TIME(floatp0)
    return native.call(0xA74A541C6884E7B8, floatp0)
end

function natives._0xEF39EE20C537E98C(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0xEF39EE20C537E98C, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives._0xBEB2D9A1D9A8F55A(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xBEB2D9A1D9A8F55A, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives._0x20C6C7E4EB082A7F(BOOLp0)
    return native.call(0x20C6C7E4EB082A7F, BOOLp0)
end

function natives._0xF8155A7F03DDFC8E(Anyp0)
    return native.call(0xF8155A7F03DDFC8E, Anyp0)
end

function natives.SET_HD_AREA(floatx, floaty, floatz, floatradius)
    return native.call(0xB85F26619073E775, floatx, floaty, floatz, floatradius)
end

function natives.CLEAR_HD_AREA()
    return native.call(0xCE58B1CFB9290813)
end

function natives.INIT_CREATOR_BUDGET()
    return native.call(0xB5A4DB34FE89B88A)
end

function natives.SHUTDOWN_CREATOR_BUDGET()
    return native.call(0xCCE26000E9A6FAD7)
end

function natives.ADD_MODEL_TO_CREATOR_BUDGET(HashmodelHash)
    return native.call(0x0BC3144DEB678666, HashmodelHash)
end

function natives.REMOVE_MODEL_FROM_CREATOR_BUDGET(HashmodelHash)
    return native.call(0xF086AD9354FAC3A3, HashmodelHash)
end

function natives.GET_USED_CREATOR_BUDGET()
    return native.call(0x3D3D8B3BE5A83D35)
end

function natives.SET_ISLAND_HOPPER_ENABLED(constcharname, BOOLtoggle)
    return native.call(0x9A9D1BA639675CF1, constcharname, BOOLtoggle)
end

function natives.TASK_PAUSE(Pedped, intms)
    return native.call(0xE73A266DB0CA9042, Pedped, intms)
end

function natives.TASK_STAND_STILL(Pedped, inttime)
    return native.call(0x919BE13EED931959, Pedped, inttime)
end

function natives.TASK_JUMP(Pedped, BOOLunused, Anyp2, Anyp3)
    return native.call(0x0AE4086104E067B1, Pedped, BOOLunused, Anyp2, Anyp3)
end

function natives.TASK_COWER(Pedped, intduration)
    return native.call(0x3EB1FE9E8E908E15, Pedped, intduration)
end

function natives.TASK_HANDS_UP(Pedped, intduration, PedfacingPed, intp3, BOOLp4)
    return native.call(0xF2EAB31979A7F910, Pedped, intduration, PedfacingPed, intp3, BOOLp4)
end

function natives.UPDATE_TASK_HANDS_UP_DURATION(Pedped, intduration)
    return native.call(0xA98FCAFD7893C834, Pedped, intduration)
end

function natives.TASK_OPEN_VEHICLE_DOOR(Pedped, Vehiclevehicle, inttimeOut, intseat, floatspeed)
    return native.call(0x965791A9A488A062, Pedped, Vehiclevehicle, inttimeOut, intseat, floatspeed)
end

function natives.TASK_ENTER_VEHICLE(Pedped, Vehiclevehicle, inttimeout, intseat, floatspeed, intflag, Anyp6)
    return native.call(0xC20E50AA46D09CA8, Pedped, Vehiclevehicle, inttimeout, intseat, floatspeed, intflag, Anyp6)
end

function natives.TASK_LEAVE_VEHICLE(Pedped, Vehiclevehicle, intflags)
    return native.call(0xD3DBCE61A490BE02, Pedped, Vehiclevehicle, intflags)
end

function natives.TASK_GET_OFF_BOAT(Pedped, Vehicleboat)
    return native.call(0x9C00E77AF14B2DFF, Pedped, Vehicleboat)
end

function natives.TASK_SKY_DIVE(Pedped, BOOLp1)
    return native.call(0x601736CFE536B0A0, Pedped, BOOLp1)
end

function natives.TASK_PARACHUTE(Pedped, BOOLp1, BOOLp2)
    return native.call(0xD2F1C53C97EE81AB, Pedped, BOOLp1, BOOLp2)
end

function natives.TASK_PARACHUTE_TO_TARGET(Pedped, floatx, floaty, floatz)
    return native.call(0xB33E291AFA6BD03A, Pedped, floatx, floaty, floatz)
end

function natives.SET_PARACHUTE_TASK_TARGET(Pedped, floatx, floaty, floatz)
    return native.call(0xC313379AF0FCEDA7, Pedped, floatx, floaty, floatz)
end

function natives.SET_PARACHUTE_TASK_THRUST(Pedped, floatthrust)
    return native.call(0x0729BAC1B8C64317, Pedped, floatthrust)
end

function natives.TASK_RAPPEL_FROM_HELI(Pedped, floatminHeightAboveGround)
    return native.call(0x09693B0312F91649, Pedped, floatminHeightAboveGround)
end

function natives.TASK_VEHICLE_DRIVE_TO_COORD(Pedped, Vehiclevehicle, floatx, floaty, floatz, floatspeed, Anyp6, HashvehicleModel, intdrivingMode, floatstopRange, floatp10)
    return native.call(0xE2A2AA2F659D77A7, Pedped, Vehiclevehicle, floatx, floaty, floatz, floatspeed, Anyp6, HashvehicleModel, intdrivingMode, floatstopRange, floatp10)
end

function natives.TASK_VEHICLE_DRIVE_TO_COORD_LONGRANGE(Pedped, Vehiclevehicle, floatx, floaty, floatz, floatspeed, intdriveMode, floatstopRange)
    return native.call(0x158BB33F920D360C, Pedped, Vehiclevehicle, floatx, floaty, floatz, floatspeed, intdriveMode, floatstopRange)
end

function natives.TASK_VEHICLE_DRIVE_WANDER(Pedped, Vehiclevehicle, floatspeed, intdrivingStyle)
    return native.call(0x480142959D337D00, Pedped, Vehiclevehicle, floatspeed, intdrivingStyle)
end

function natives.TASK_FOLLOW_TO_OFFSET_OF_ENTITY(Pedped, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatmovementSpeed, inttimeout, floatstoppingRange, BOOLpersistFollowing)
    return native.call(0x304AE42E357B8C7E, Pedped, Entityentity, floatoffsetX, floatoffsetY, floatoffsetZ, floatmovementSpeed, inttimeout, floatstoppingRange, BOOLpersistFollowing)
end

function natives.TASK_GO_STRAIGHT_TO_COORD(Pedped, floatx, floaty, floatz, floatspeed, inttimeout, floattargetHeading, floatdistanceToSlide)
    return native.call(0xD76B57B44F1E6F8B, Pedped, floatx, floaty, floatz, floatspeed, inttimeout, floattargetHeading, floatdistanceToSlide)
end

function natives.TASK_GO_STRAIGHT_TO_COORD_RELATIVE_TO_ENTITY(Entityentity1, Entityentity2, floatp2, floatp3, floatp4, floatp5, Anyp6)
    return native.call(0x61E360B7E040D12E, Entityentity1, Entityentity2, floatp2, floatp3, floatp4, floatp5, Anyp6)
end

function natives.TASK_ACHIEVE_HEADING(Pedped, floatheading, inttimeout)
    return native.call(0x93B93A37987F1F3D, Pedped, floatheading, inttimeout)
end

function natives.TASK_FLUSH_ROUTE()
    return native.call(0x841142A1376E9006)
end

function natives.TASK_EXTEND_ROUTE(floatx, floaty, floatz)
    return native.call(0x1E7889778264843A, floatx, floaty, floatz)
end

function natives.TASK_FOLLOW_POINT_ROUTE(Pedped, floatspeed, intunknown)
    return native.call(0x595583281858626E, Pedped, floatspeed, intunknown)
end

function natives.TASK_GO_TO_ENTITY(Entityentity, Entitytarget, intduration, floatdistance, floatspeed, floatp5, intp6)
    return native.call(0x6A071245EB0D1882, Entityentity, Entitytarget, intduration, floatdistance, floatspeed, floatp5, intp6)
end

function natives.TASK_SMART_FLEE_COORD(Pedped, floatx, floaty, floatz, floatdistance, inttime, BOOLp6, BOOLp7)
    return native.call(0x94587F17E9C365D5, Pedped, floatx, floaty, floatz, floatdistance, inttime, BOOLp6, BOOLp7)
end

function natives.TASK_SMART_FLEE_PED(Pedped, PedfleeTarget, floatdistance, AnyfleeTime, BOOLp4, BOOLp5)
    return native.call(0x22B0D0E37CCB840D, Pedped, PedfleeTarget, floatdistance, AnyfleeTime, BOOLp4, BOOLp5)
end

function natives.TASK_REACT_AND_FLEE_PED(Pedped, PedfleeTarget)
    return native.call(0x72C896464915D1B1, Pedped, PedfleeTarget)
end

function natives.TASK_SHOCKING_EVENT_REACT(Pedped, inteventHandle)
    return native.call(0x452419CBD838065B, Pedped, inteventHandle)
end

function natives.TASK_WANDER_IN_AREA(Pedped, floatx, floaty, floatz, floatradius, floatminimalLength, floattimeBetweenWalks)
    return native.call(0xE054346CA3A0F315, Pedped, floatx, floaty, floatz, floatradius, floatminimalLength, floattimeBetweenWalks)
end

function natives.TASK_WANDER_STANDARD(Pedped, floatp1, intp2)
    return native.call(0xBB9CE077274F6A1B, Pedped, floatp1, intp2)
end

function natives.TASK_WANDER_SPECIFIC(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x6919A2F136426098, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.TASK_VEHICLE_PARK(Pedped, Vehiclevehicle, floatx, floaty, floatz, floatheading, intmode, floatradius, BOOLkeepEngineOn)
    return native.call(0x0F3E34E968EA374E, Pedped, Vehiclevehicle, floatx, floaty, floatz, floatheading, intmode, floatradius, BOOLkeepEngineOn)
end

function natives.TASK_STEALTH_KILL(Pedkiller, Pedtarget, HashactionType, floatp3, Anyp4)
    return native.call(0xAA5DC05579D60BD9, Pedkiller, Pedtarget, HashactionType, floatp3, Anyp4)
end

function natives.TASK_PLANT_BOMB(Pedped, floatx, floaty, floatz, floatheading)
    return native.call(0x965FEC691D55E9BF, Pedped, floatx, floaty, floatz, floatheading)
end

function natives.TASK_FOLLOW_NAV_MESH_TO_COORD(Pedped, floatx, floaty, floatz, floatspeed, inttimeout, floatstoppingRange, BOOLpersistFollowing, floatunk)
    return native.call(0x15D3A79D4E44B913, Pedped, floatx, floaty, floatz, floatspeed, inttimeout, floatstoppingRange, BOOLpersistFollowing, floatunk)
end

function natives.TASK_FOLLOW_NAV_MESH_TO_COORD_ADVANCED(Pedped, floatx, floaty, floatz, floatspeed, inttimeout, floatunkFloat, intunkInt, floatunkX, floatunkY, floatunkZ, floatunk_40000f)
    return native.call(0x17F58B88D085DBAC, Pedped, floatx, floaty, floatz, floatspeed, inttimeout, floatunkFloat, intunkInt, floatunkX, floatunkY, floatunkZ, floatunk_40000f)
end

function natives.SET_PED_PATH_CAN_USE_CLIMBOVERS(Pedped, BOOLToggle)
    return native.call(0x8E06A6FE76C9EFF4, Pedped, BOOLToggle)
end

function natives.SET_PED_PATH_CAN_USE_LADDERS(Pedped, BOOLToggle)
    return native.call(0x77A5B103C87F476E, Pedped, BOOLToggle)
end

function natives.SET_PED_PATH_CAN_DROP_FROM_HEIGHT(Pedped, BOOLToggle)
    return native.call(0xE361C5C71C431A4F, Pedped, BOOLToggle)
end

function natives.SET_PED_PATH_CLIMB_COST_MODIFIER(Pedped, floatmodifier)
    return native.call(0x88E32DB8C1A4AA4B, Pedped, floatmodifier)
end

function natives.SET_PED_PATH_MAY_ENTER_WATER(Pedped, BOOLmayEnterWater)
    return native.call(0xF35425A4204367EC, Pedped, BOOLmayEnterWater)
end

function natives.SET_PED_PATH_PREFER_TO_AVOID_WATER(Pedped, BOOLavoidWater)
    return native.call(0x38FE1EC73743793C, Pedped, BOOLavoidWater)
end

function natives.SET_PED_PATH_AVOID_FIRE(Pedped, BOOLavoidFire)
    return native.call(0x4455517B28441E60, Pedped, BOOLavoidFire)
end

function natives.SET_GLOBAL_MIN_BIRD_FLIGHT_HEIGHT(floatheight)
    return native.call(0x6C6B148586F934F7, floatheight)
end

function natives.GET_NAVMESH_ROUTE_DISTANCE_REMAINING(Pedped, floatdistanceRemaining, BOOLisPathReady)
    return native.call(0xC6F5C0BCDC74D62D, Pedped, floatdistanceRemaining, BOOLisPathReady)
end

function natives.GET_NAVMESH_ROUTE_RESULT(Pedped)
    return native.call(0x632E831F382A0FA8, Pedped)
end

function natives._0x3E38E28A1D80DDF6(Pedped)
    return native.call(0x3E38E28A1D80DDF6, Pedped)
end

function natives.TASK_GO_TO_COORD_ANY_MEANS(Pedped, floatx, floaty, floatz, floatspeed, Anyp5, BOOLp6, intwalkingStyle, floatp8)
    return native.call(0x5BC448CB78FA3E88, Pedped, floatx, floaty, floatz, floatspeed, Anyp5, BOOLp6, intwalkingStyle, floatp8)
end

function natives.TASK_GO_TO_COORD_ANY_MEANS_EXTRA_PARAMS(Pedped, floatx, floaty, floatz, floatspeed, Anyp5, BOOLp6, intwalkingStyle, floatp8, Anyp9, Anyp10, Anyp11, Anyp12)
    return native.call(0x1DD45F9ECFDB1BC9, Pedped, floatx, floaty, floatz, floatspeed, Anyp5, BOOLp6, intwalkingStyle, floatp8, Anyp9, Anyp10, Anyp11, Anyp12)
end

function natives.TASK_GO_TO_COORD_ANY_MEANS_EXTRA_PARAMS_WITH_CRUISE_SPEED(Pedped, floatx, floaty, floatz, floatspeed, Anyp5, BOOLp6, intwalkingStyle, floatp8, Anyp9, Anyp10, Anyp11, Anyp12, Anyp13)
    return native.call(0xB8ECD61F531A7B02, Pedped, floatx, floaty, floatz, floatspeed, Anyp5, BOOLp6, intwalkingStyle, floatp8, Anyp9, Anyp10, Anyp11, Anyp12, Anyp13)
end

function natives.TASK_PLAY_ANIM(Pedped, constcharanimDictionary, constcharanimationName, floatblendInSpeed, floatblendOutSpeed, intduration, intflag, floatplaybackRate, BOOLlockX, BOOLlockY, BOOLlockZ)
    return native.call(0xEA47FE3719165B94, Pedped, constcharanimDictionary, constcharanimationName, floatblendInSpeed, floatblendOutSpeed, intduration, intflag, floatplaybackRate, BOOLlockX, BOOLlockY, BOOLlockZ)
end

function natives.TASK_PLAY_ANIM_ADVANCED(Pedped, constcharanimDict, constcharanimName, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatanimEnterSpeed, floatanimExitSpeed, intduration, Anyflag, floatanimTime, Anyp14, Anyp15)
    return native.call(0x83CDB10EA29B370B, Pedped, constcharanimDict, constcharanimName, floatposX, floatposY, floatposZ, floatrotX, floatrotY, floatrotZ, floatanimEnterSpeed, floatanimExitSpeed, intduration, Anyflag, floatanimTime, Anyp14, Anyp15)
end

function natives.STOP_ANIM_TASK(Pedped, constcharanimDictionary, constcharanimationName, floatp3)
    return native.call(0x97FF36A1D40EA00A, Pedped, constcharanimDictionary, constcharanimationName, floatp3)
end

function natives.TASK_SCRIPTED_ANIMATION(Pedped, Anyp1, Anyp2, Anyp3, floatp4, floatp5)
    return native.call(0x126EF75F1E17ABE5, Pedped, Anyp1, Anyp2, Anyp3, floatp4, floatp5)
end

function natives.PLAY_ENTITY_SCRIPTED_ANIM(Anyp0, Anyp1, Anyp2, Anyp3, floatp4, floatp5)
    return native.call(0x77A1EEC547E7FCF1, Anyp0, Anyp1, Anyp2, Anyp3, floatp4, floatp5)
end

function natives.STOP_ANIM_PLAYBACK(Pedped, intp1, BOOLp2)
    return native.call(0xEE08C992D238C5D1, Pedped, intp1, BOOLp2)
end

function natives.SET_ANIM_WEIGHT(Anyp0, floatp1, Anyp2, Anyp3, BOOLp4)
    return native.call(0x207F1A47C0342F48, Anyp0, floatp1, Anyp2, Anyp3, BOOLp4)
end

function natives.SET_ANIM_PHASE(Entityentity, floatp1, Anyp2, BOOLp3)
    return native.call(0xDDF3CB5A0A4C0B49, Entityentity, floatp1, Anyp2, BOOLp3)
end

function natives.SET_ANIM_RATE(Anyp0, floatp1, Anyp2, BOOLp3)
    return native.call(0x032D49C5E359C847, Anyp0, floatp1, Anyp2, BOOLp3)
end

function natives.SET_ANIM_LOOPED(Anyp0, BOOLp1, Anyp2, BOOLp3)
    return native.call(0x70033C3CC29A1FF4, Anyp0, BOOLp1, Anyp2, BOOLp3)
end

function natives.TASK_PLAY_PHONE_GESTURE_ANIMATION(Pedped, constcharanimDict, constcharanimation, constcharboneMaskType, floatp4, floatp5, BOOLp6, BOOLp7)
    return native.call(0x8FBB6758B3B3E9EC, Pedped, constcharanimDict, constcharanimation, constcharboneMaskType, floatp4, floatp5, BOOLp6, BOOLp7)
end

function natives.TASK_STOP_PHONE_GESTURE_ANIMATION(Pedped, Anyp1)
    return native.call(0x3FA00D4F4641BFAE, Pedped, Anyp1)
end

function natives.IS_PLAYING_PHONE_GESTURE_ANIM(Pedped)
    return native.call(0xB8EBB1E9D3588C10, Pedped)
end

function natives.GET_PHONE_GESTURE_ANIM_CURRENT_TIME(Pedped)
    return native.call(0x47619ABE8B268C60, Pedped)
end

function natives.GET_PHONE_GESTURE_ANIM_TOTAL_TIME(Pedped)
    return native.call(0x1EE0F68A7C25DEC6, Pedped)
end

function natives.TASK_VEHICLE_PLAY_ANIM(Vehiclevehicle, constcharanimationSet, constcharanimationName)
    return native.call(0x69F5C3BD0F3EBD89, Vehiclevehicle, constcharanimationSet, constcharanimationName)
end

function natives.TASK_LOOK_AT_COORD(Entityentity, floatx, floaty, floatz, intduration, Anyp5, Anyp6)
    return native.call(0x6FA46612594F7973, Entityentity, floatx, floaty, floatz, intduration, Anyp5, Anyp6)
end

function natives.TASK_LOOK_AT_ENTITY(Pedped, EntitylookAt, intduration, intunknown1, intunknown2)
    return native.call(0x69F4BE8C8CC4796C, Pedped, EntitylookAt, intduration, intunknown1, intunknown2)
end

function natives.TASK_CLEAR_LOOK_AT(Pedped)
    return native.call(0x0F804F1DB19B9689, Pedped)
end

function natives.OPEN_SEQUENCE_TASK(inttaskSequenceId)
    return native.call(0xE8854A4326B9E12B, inttaskSequenceId)
end

function natives.CLOSE_SEQUENCE_TASK(inttaskSequenceId)
    return native.call(0x39E72BC99E6360CB, inttaskSequenceId)
end

function natives.TASK_PERFORM_SEQUENCE(Pedped, inttaskSequenceId)
    return native.call(0x5ABA3986D90D8A3B, Pedped, inttaskSequenceId)
end

function natives.TASK_PERFORM_SEQUENCE_LOCALLY(Pedped, inttaskSequenceId)
    return native.call(0x8C33220C8D78CA0D, Pedped, inttaskSequenceId)
end

function natives.CLEAR_SEQUENCE_TASK(inttaskSequenceId)
    return native.call(0x3841422E9C488D8C, inttaskSequenceId)
end

function natives.SET_SEQUENCE_TO_REPEAT(inttaskSequenceId, BOOLrepeat)
    return native.call(0x58C70CF3A41E4AE7, inttaskSequenceId, BOOLrepeat)
end

function natives.GET_SEQUENCE_PROGRESS(Pedped)
    return native.call(0x00A9010CFE1E3533, Pedped)
end

function natives.GET_IS_TASK_ACTIVE(Pedped, inttaskIndex)
    return native.call(0xB0760331C7AA4155, Pedped, inttaskIndex)
end

function natives.GET_SCRIPT_TASK_STATUS(Pedped, HashtaskHash)
    return native.call(0x77F1BEB8863288D5, Pedped, HashtaskHash)
end

function natives.GET_ACTIVE_VEHICLE_MISSION_TYPE(Vehiclevehicle)
    return native.call(0x534AEBA6E5ED4CAB, Vehiclevehicle)
end

function natives.TASK_LEAVE_ANY_VEHICLE(Pedped, intp1, intflags)
    return native.call(0x504D54DF3F6F2247, Pedped, intp1, intflags)
end

function natives.TASK_AIM_GUN_SCRIPTED(Pedped, HashscriptTask, BOOLp2, BOOLp3)
    return native.call(0x7A192BE16D373D00, Pedped, HashscriptTask, BOOLp2, BOOLp3)
end

function natives.TASK_AIM_GUN_SCRIPTED_WITH_TARGET(Anyp0, Anyp1, floatp2, floatp3, floatp4, Anyp5, BOOLp6, BOOLp7)
    return native.call(0x8605AF0DE8B3A5AC, Anyp0, Anyp1, floatp2, floatp3, floatp4, Anyp5, BOOLp6, BOOLp7)
end

function natives.UPDATE_TASK_AIM_GUN_SCRIPTED_TARGET(Pedp0, Pedp1, floatp2, floatp3, floatp4, BOOLp5)
    return native.call(0x9724FB59A3E72AD0, Pedp0, Pedp1, floatp2, floatp3, floatp4, BOOLp5)
end

function natives.GET_CLIP_SET_FOR_SCRIPTED_GUN_TASK(intp0)
    return native.call(0x3A8CADC7D37AACC5, intp0)
end

function natives.TASK_AIM_GUN_AT_ENTITY(Pedped, Entityentity, intduration, BOOLp3)
    return native.call(0x9B53BB6E8943AF53, Pedped, Entityentity, intduration, BOOLp3)
end

function natives.TASK_TURN_PED_TO_FACE_ENTITY(Pedped, Entityentity, intduration)
    return native.call(0x5AD23D40115353AC, Pedped, Entityentity, intduration)
end

function natives.TASK_AIM_GUN_AT_COORD(Pedped, floatx, floaty, floatz, inttime, BOOLp5, BOOLp6)
    return native.call(0x6671F3EEC681BDA1, Pedped, floatx, floaty, floatz, inttime, BOOLp5, BOOLp6)
end

function natives.TASK_SHOOT_AT_COORD(Pedped, floatx, floaty, floatz, intduration, HashfiringPattern)
    return native.call(0x46A6CC01E0826106, Pedped, floatx, floaty, floatz, intduration, HashfiringPattern)
end

function natives.TASK_SHUFFLE_TO_NEXT_VEHICLE_SEAT(Pedped, Vehiclevehicle, Anyp2)
    return native.call(0x7AA80209BDA643EB, Pedped, Vehiclevehicle, Anyp2)
end

function natives.CLEAR_PED_TASKS(Pedped)
    return native.call(0xE1EF3C1216AFF2CD, Pedped)
end

function natives.CLEAR_PED_SECONDARY_TASK(Pedped)
    return native.call(0x176CECF6F920D707, Pedped)
end

function natives.TASK_EVERYONE_LEAVE_VEHICLE(Vehiclevehicle)
    return native.call(0x7F93691AB4B92272, Vehiclevehicle)
end

function natives.TASK_GOTO_ENTITY_OFFSET(Pedped, Anyp1, Anyp2, floatx, floaty, floatz, intduration)
    return native.call(0xE39B4FF4FDEBDE27, Pedped, Anyp1, Anyp2, floatx, floaty, floatz, intduration)
end

function natives.TASK_GOTO_ENTITY_OFFSET_XY(intp0, Pedoed, intduration, floatp3, floatp4, floatp5, floatp6, BOOLp7)
    return native.call(0x338E7EF52B6095A9, intp0, Pedoed, intduration, floatp3, floatp4, floatp5, floatp6, BOOLp7)
end

function natives.TASK_TURN_PED_TO_FACE_COORD(Pedped, floatx, floaty, floatz, intduration)
    return native.call(0x1DDA930A0AC38571, Pedped, floatx, floaty, floatz, intduration)
end

function natives.TASK_VEHICLE_TEMP_ACTION(Peddriver, Vehiclevehicle, intaction, inttime)
    return native.call(0xC429DCEEB339E129, Peddriver, Vehiclevehicle, intaction, inttime)
end

function natives.TASK_VEHICLE_MISSION(Peddriver, Vehiclevehicle, VehiclevehicleTarget, intmissionType, floatp4, Anyp5, floatp6, floatp7, BOOLDriveAgainstTraffic)
    return native.call(0x659427E0EF36BCDE, Peddriver, Vehiclevehicle, VehiclevehicleTarget, intmissionType, floatp4, Anyp5, floatp6, floatp7, BOOLDriveAgainstTraffic)
end

function natives.TASK_VEHICLE_MISSION_PED_TARGET(Pedped, Vehiclevehicle, PedpedTarget, intmissionType, floatmaxSpeed, intdrivingStyle, floatminDistance, floatp7, BOOLDriveAgainstTraffic)
    return native.call(0x9454528DF15D657A, Pedped, Vehiclevehicle, PedpedTarget, intmissionType, floatmaxSpeed, intdrivingStyle, floatminDistance, floatp7, BOOLDriveAgainstTraffic)
end

function natives.TASK_VEHICLE_MISSION_COORS_TARGET(Pedped, Vehiclevehicle, floatx, floaty, floatz, intp5, intp6, intp7, floatp8, floatp9, BOOLDriveAgainstTraffic)
    return native.call(0xF0AF20AA7731F8C3, Pedped, Vehiclevehicle, floatx, floaty, floatz, intp5, intp6, intp7, floatp8, floatp9, BOOLDriveAgainstTraffic)
end

function natives.TASK_VEHICLE_ESCORT(Pedped, Vehiclevehicle, VehicletargetVehicle, intmode, floatspeed, intdrivingStyle, floatminDistance, intp7, floatnoRoadsDistance)
    return native.call(0x0FA6E4B75F302400, Pedped, Vehiclevehicle, VehicletargetVehicle, intmode, floatspeed, intdrivingStyle, floatminDistance, intp7, floatnoRoadsDistance)
end

function natives.TASK_VEHICLE_FOLLOW(Peddriver, Vehiclevehicle, EntitytargetEntity, floatspeed, intdrivingStyle, intminDistance)
    return native.call(0xFC545A9F0626E3B6, Peddriver, Vehiclevehicle, EntitytargetEntity, floatspeed, intdrivingStyle, intminDistance)
end

function natives.TASK_VEHICLE_CHASE(Peddriver, EntitytargetEnt)
    return native.call(0x3C08A8E30363B353, Peddriver, EntitytargetEnt)
end

function natives.TASK_VEHICLE_HELI_PROTECT(Pedpilot, Vehiclevehicle, EntityentityToFollow, floattargetSpeed, intp4, floatradius, intaltitude, intp7)
    return native.call(0x1E09C32048FEFD1C, Pedpilot, Vehiclevehicle, EntityentityToFollow, floattargetSpeed, intp4, floatradius, intaltitude, intp7)
end

function natives.SET_TASK_VEHICLE_CHASE_BEHAVIOR_FLAG(Pedped, intflag, BOOLset)
    return native.call(0xCC665AAC360D31E7, Pedped, intflag, BOOLset)
end

function natives.SET_TASK_VEHICLE_CHASE_IDEAL_PURSUIT_DISTANCE(Pedped, floatdistance)
    return native.call(0x639B642FACBE4EDD, Pedped, floatdistance)
end

function natives.TASK_HELI_CHASE(Pedpilot, EntityentityToFollow, floatx, floaty, floatz)
    return native.call(0xAC83B1DB38D0ADA0, Pedpilot, EntityentityToFollow, floatx, floaty, floatz)
end

function natives.TASK_PLANE_CHASE(Pedpilot, EntityentityToFollow, floatx, floaty, floatz)
    return native.call(0x2D2386F273FF7A25, Pedpilot, EntityentityToFollow, floatx, floaty, floatz)
end

function natives.TASK_PLANE_LAND(Pedpilot, Vehicleplane, floatrunwayStartX, floatrunwayStartY, floatrunwayStartZ, floatrunwayEndX, floatrunwayEndY, floatrunwayEndZ)
    return native.call(0xBF19721FA34D32C0, Pedpilot, Vehicleplane, floatrunwayStartX, floatrunwayStartY, floatrunwayStartZ, floatrunwayEndX, floatrunwayEndY, floatrunwayEndZ)
end

function natives._0x6100B3CEFD43452E(Pedp0)
    return native.call(0x6100B3CEFD43452E, Pedp0)
end

function natives.CLEAR_VEHICLE_TASKS(Vehiclevehicle)
    return native.call(0xDBBC7A2432524127, Vehiclevehicle)
end

function natives._0x53DDC75BC3AC0A90(Vehiclevehicle)
    return native.call(0x53DDC75BC3AC0A90, Vehiclevehicle)
end

function natives.TASK_PLANE_GOTO_PRECISE_VTOL(Pedped, Vehiclevehicle, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0xF7F9DCCA89E7505B, Pedped, Vehiclevehicle, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.TASK_SUBMARINE_GOTO_AND_STOP(Anyp0, Vehiclesubmarine, floatx, floaty, floatz, Anyp5)
    return native.call(0xC22B40579A498CA4, Anyp0, Vehiclesubmarine, floatx, floaty, floatz, Anyp5)
end

function natives.TASK_HELI_MISSION(Pedpilot, Vehicleaircraft, VehicletargetVehicle, PedtargetPed, floatdestinationX, floatdestinationY, floatdestinationZ, intmissionFlag, floatmaxSpeed, floatradius, floattargetHeading, intmaxHeight, intminHeight, floatunk3, intbehaviorFlags)
    return native.call(0xDAD029E187A2BEB4, Pedpilot, Vehicleaircraft, VehicletargetVehicle, PedtargetPed, floatdestinationX, floatdestinationY, floatdestinationZ, intmissionFlag, floatmaxSpeed, floatradius, floattargetHeading, intmaxHeight, intminHeight, floatunk3, intbehaviorFlags)
end

function natives.TASK_HELI_ESCORT_HELI(Pedpilot, Vehicleheli1, Vehicleheli2, floatp3, floatp4, floatp5)
    return native.call(0xB385523325077210, Pedpilot, Vehicleheli1, Vehicleheli2, floatp3, floatp4, floatp5)
end

function natives.TASK_PLANE_MISSION(Pedpilot, Vehicleaircraft, VehicletargetVehicle, PedtargetPed, floatdestinationX, floatdestinationY, floatdestinationZ, intmissionFlag, floatangularDrag, floatunk, floattargetHeading, floatmaxZ, floatminZ, Anyp13)
    return native.call(0x23703CD154E83B88, Pedpilot, Vehicleaircraft, VehicletargetVehicle, PedtargetPed, floatdestinationX, floatdestinationY, floatdestinationZ, intmissionFlag, floatangularDrag, floatunk, floattargetHeading, floatmaxZ, floatminZ, Anyp13)
end

function natives.TASK_PLANE_TAXI(Pedpilot, Vehicleaircraft, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
    return native.call(0x92C360B5F15D2302, Pedpilot, Vehicleaircraft, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6)
end

function natives.TASK_BOAT_MISSION(PedpedDriver, Vehicleboat, Anyp2, Anyp3, floatx, floaty, floatz, Anyp7, floatmaxSpeed, intdrivingStyle, floatp10, Anyp11)
    return native.call(0x15C86013127CE63F, PedpedDriver, Vehicleboat, Anyp2, Anyp3, floatx, floaty, floatz, Anyp7, floatmaxSpeed, intdrivingStyle, floatp10, Anyp11)
end

function natives.TASK_DRIVE_BY(PeddriverPed, PedtargetPed, VehicletargetVehicle, floattargetX, floattargetY, floattargetZ, floatdistanceToShoot, intpedAccuracy, BOOLp8, HashfiringPattern)
    return native.call(0x2F8AF0E82773A171, PeddriverPed, PedtargetPed, VehicletargetVehicle, floattargetX, floattargetY, floattargetZ, floatdistanceToShoot, intpedAccuracy, BOOLp8, HashfiringPattern)
end

function natives.SET_DRIVEBY_TASK_TARGET(PedshootingPed, PedtargetPed, VehicletargetVehicle, floatx, floaty, floatz)
    return native.call(0xE5B302114D8162EE, PedshootingPed, PedtargetPed, VehicletargetVehicle, floatx, floaty, floatz)
end

function natives.CLEAR_DRIVEBY_TASK_UNDERNEATH_DRIVING_TASK(Pedped)
    return native.call(0xC35B5CDB2824CF69, Pedped)
end

function natives.IS_DRIVEBY_TASK_UNDERNEATH_DRIVING_TASK(Pedped)
    return native.call(0x8785E6E40C7A8818, Pedped)
end

function natives.CONTROL_MOUNTED_WEAPON(Pedped)
    return native.call(0xDCFE42068FE0135A, Pedped)
end

function natives.SET_MOUNTED_WEAPON_TARGET(PedshootingPed, PedtargetPed, VehicletargetVehicle, floatx, floaty, floatz, Anyp6, Anyp7)
    return native.call(0xCCD892192C6D2BB9, PedshootingPed, PedtargetPed, VehicletargetVehicle, floatx, floaty, floatz, Anyp6, Anyp7)
end

function natives.IS_MOUNTED_WEAPON_TASK_UNDERNEATH_DRIVING_TASK(Pedped)
    return native.call(0xA320EF046186FA3B, Pedped)
end

function natives.TASK_USE_MOBILE_PHONE(Pedped, intp1, Anyp2)
    return native.call(0xBD2A8EC3AF4DE7DB, Pedped, intp1, Anyp2)
end

function natives.TASK_USE_MOBILE_PHONE_TIMED(Pedped, intduration)
    return native.call(0x5EE02954A14C69DB, Pedped, intduration)
end

function natives.TASK_CHAT_TO_PED(Pedped, Pedtarget, Anyp2, floatp3, floatp4, floatp5, floatp6, floatp7)
    return native.call(0x8C338E0263E4FD19, Pedped, Pedtarget, Anyp2, floatp3, floatp4, floatp5, floatp6, floatp7)
end

function natives.TASK_WARP_PED_INTO_VEHICLE(Pedped, Vehiclevehicle, intseat)
    return native.call(0x9A7D091411C5F684, Pedped, Vehiclevehicle, intseat)
end

function natives.TASK_SHOOT_AT_ENTITY(Entityentity, Entitytarget, intduration, HashfiringPattern)
    return native.call(0x08DA95E8298AE772, Entityentity, Entitytarget, intduration, HashfiringPattern)
end

function natives.TASK_CLIMB(Pedped, BOOLunused)
    return native.call(0x89D9FCC2435112F1, Pedped, BOOLunused)
end

function natives.TASK_CLIMB_LADDER(Pedped, intp1)
    return native.call(0xB6C987F9285A3814, Pedped, intp1)
end

function natives.TASK_RAPPEL_DOWN_WALL(Pedped, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatminZ, intropeHandle, constcharclipSet, Anyp10)
    return native.call(0xEAF66ACDDC794793, Pedped, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, floatminZ, intropeHandle, constcharclipSet, Anyp10)
end

function natives._0x9D252648778160DF(Anyp0)
    return native.call(0x9D252648778160DF, Anyp0)
end

function natives.CLEAR_PED_TASKS_IMMEDIATELY(Pedped)
    return native.call(0xAAA34F8A7CB32098, Pedped)
end

function natives.TASK_PERFORM_SEQUENCE_FROM_PROGRESS(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0x89221B16730234F0, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.SET_NEXT_DESIRED_MOVE_STATE(floatp0)
    return native.call(0xF1B9F16E89E2C93A, floatp0)
end

function natives.SET_PED_DESIRED_MOVE_BLEND_RATIO(Pedped, floatp1)
    return native.call(0x1E982AC8716912C5, Pedped, floatp1)
end

function natives.GET_PED_DESIRED_MOVE_BLEND_RATIO(Pedped)
    return native.call(0x8517D4A6CA8513ED, Pedped)
end

function natives.TASK_GOTO_ENTITY_AIMING(Pedped, Entitytarget, floatdistanceToStopAt, floatStartAimingDist)
    return native.call(0xA9DA48FAB8A76C12, Pedped, Entitytarget, floatdistanceToStopAt, floatStartAimingDist)
end

function natives.TASK_SET_DECISION_MAKER(Pedped, Hashp1)
    return native.call(0xEB8517DDA73720DA, Pedped, Hashp1)
end

function natives.TASK_SET_SPHERE_DEFENSIVE_AREA(Anyp0, floatp1, floatp2, floatp3, floatp4)
    return native.call(0x933C06518B52A9A4, Anyp0, floatp1, floatp2, floatp3, floatp4)
end

function natives.TASK_CLEAR_DEFENSIVE_AREA(Anyp0)
    return native.call(0x95A6C46A31D1917D, Anyp0)
end

function natives.TASK_PED_SLIDE_TO_COORD(Pedped, floatx, floaty, floatz, floatheading, floatp5)
    return native.call(0xD04FE6765D990A06, Pedped, floatx, floaty, floatz, floatheading, floatp5)
end

function natives.TASK_PED_SLIDE_TO_COORD_HDG_RATE(Pedped, floatx, floaty, floatz, floatheading, floatp5, floatp6)
    return native.call(0x5A4A6A6D3DC64F52, Pedped, floatx, floaty, floatz, floatheading, floatp5, floatp6)
end

function natives.ADD_COVER_POINT(floatp0, floatp1, floatp2, floatp3, Anyp4, Anyp5, Anyp6, BOOLp7)
    return native.call(0xD5C12A75C7B9497F, floatp0, floatp1, floatp2, floatp3, Anyp4, Anyp5, Anyp6, BOOLp7)
end

function natives.REMOVE_COVER_POINT(ScrHandlecoverpoint)
    return native.call(0xAE287C923D891715, ScrHandlecoverpoint)
end

function natives.DOES_SCRIPTED_COVER_POINT_EXIST_AT_COORDS(floatx, floaty, floatz)
    return native.call(0xA98B8E3C088E5A31, floatx, floaty, floatz)
end

function natives.GET_SCRIPTED_COVER_POINT_COORDS(ScrHandlecoverpoint)
    return native.call(0x594A1028FC2A3E85, ScrHandlecoverpoint)
end

function natives.ADD_SCRIPTED_BLOCKING_AREA(floatx, floaty, floatz, floatradius)
    return native.call(0x28B7B9BFDAF274AA, floatx, floaty, floatz, floatradius)
end

function natives.TASK_COMBAT_PED(Pedped, PedtargetPed, intp2, intp3)
    return native.call(0xF166E48407BAC484, Pedped, PedtargetPed, intp2, intp3)
end

function natives.TASK_COMBAT_PED_TIMED(Anyp0, Pedped, intp2, Anyp3)
    return native.call(0x944F30DCB7096BDE, Anyp0, Pedped, intp2, Anyp3)
end

function natives.TASK_SEEK_COVER_FROM_POS(Pedped, floatx, floaty, floatz, intduration, BOOLp5)
    return native.call(0x75AC2B60386D89F2, Pedped, floatx, floaty, floatz, intduration, BOOLp5)
end

function natives.TASK_SEEK_COVER_FROM_PED(Pedped, Pedtarget, intduration, BOOLp3)
    return native.call(0x84D32B3BEC531324, Pedped, Pedtarget, intduration, BOOLp3)
end

function natives.TASK_SEEK_COVER_TO_COVER_POINT(Anyp0, Anyp1, floatp2, floatp3, floatp4, Anyp5, BOOLp6)
    return native.call(0xD43D95C7A869447F, Anyp0, Anyp1, floatp2, floatp3, floatp4, Anyp5, BOOLp6)
end

function natives.TASK_SEEK_COVER_TO_COORDS(Pedped, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Anyp7, BOOLp8)
    return native.call(0x39246A6958EF072C, Pedped, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Anyp7, BOOLp8)
end

function natives.TASK_PUT_PED_DIRECTLY_INTO_COVER(Pedped, floatx, floaty, floatz, Anytimeout, BOOLp5, floatp6, BOOLp7, BOOLp8, Anyp9, BOOLp10)
    return native.call(0x4172393E6BE1FECE, Pedped, floatx, floaty, floatz, Anytimeout, BOOLp5, floatp6, BOOLp7, BOOLp8, Anyp9, BOOLp10)
end

function natives.TASK_WARP_PED_DIRECTLY_INTO_COVER(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x6E01E9E8D89F8276, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.TASK_EXIT_COVER(Anyp0, Anyp1, floatp2, floatp3, floatp4)
    return native.call(0x79B258E397854D29, Anyp0, Anyp1, floatp2, floatp3, floatp4)
end

function natives.TASK_PUT_PED_DIRECTLY_INTO_MELEE(Pedped, PedmeleeTarget, floatp2, floatp3, floatp4, BOOLp5)
    return native.call(0x1C6CD14A876FFE39, Pedped, PedmeleeTarget, floatp2, floatp3, floatp4, BOOLp5)
end

function natives.TASK_TOGGLE_DUCK(BOOLp0, BOOLp1)
    return native.call(0xAC96609B9995EDF8, BOOLp0, BOOLp1)
end

function natives.TASK_GUARD_CURRENT_POSITION(Pedp0, floatp1, floatp2, BOOLp3)
    return native.call(0x4A58A47A72E3FCB4, Pedp0, floatp1, floatp2, BOOLp3)
end

function natives.TASK_GUARD_ASSIGNED_DEFENSIVE_AREA(Anyp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
    return native.call(0xD2A207EEBDF9889B, Anyp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6)
end

function natives.TASK_GUARD_SPHERE_DEFENSIVE_AREA(Pedp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6, floatp7, floatp8, floatp9, floatp10)
    return native.call(0xC946FE14BE0EB5E2, Pedp0, floatp1, floatp2, floatp3, floatp4, floatp5, Anyp6, floatp7, floatp8, floatp9, floatp10)
end

function natives.TASK_STAND_GUARD(Pedped, floatx, floaty, floatz, floatheading, constcharscenarioName)
    return native.call(0xAE032F8BBA959E90, Pedped, floatx, floaty, floatz, floatheading, constcharscenarioName)
end

function natives.SET_DRIVE_TASK_CRUISE_SPEED(Peddriver, floatcruiseSpeed)
    return native.call(0x5C9B84BD7D31D908, Peddriver, floatcruiseSpeed)
end

function natives.SET_DRIVE_TASK_MAX_CRUISE_SPEED(Anyp0, floatp1)
    return native.call(0x404A5AA9B9F0B746, Anyp0, floatp1)
end

function natives.SET_DRIVE_TASK_DRIVING_STYLE(Pedped, intdrivingStyle)
    return native.call(0xDACE1BE37D88AF67, Pedped, intdrivingStyle)
end

function natives.ADD_COVER_BLOCKING_AREA(floatplayerX, floatplayerY, floatplayerZ, floatradiusX, floatradiusY, floatradiusZ, BOOLp6, BOOLp7, BOOLp8, BOOLp9)
    return native.call(0x45C597097DD7CB81, floatplayerX, floatplayerY, floatplayerZ, floatradiusX, floatradiusY, floatradiusZ, BOOLp6, BOOLp7, BOOLp8, BOOLp9)
end

function natives.REMOVE_ALL_COVER_BLOCKING_AREAS()
    return native.call(0xDB6708C0B46F56D8)
end

function natives.REMOVE_COVER_BLOCKING_AREAS_AT_COORD(floatx, floaty, floatz)
    return native.call(0xFA83CA6776038F64, floatx, floaty, floatz)
end

function natives.REMOVE_SPECIFIC_COVER_BLOCKING_AREA(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
    return native.call(0x1F351CF1C6475734, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9)
end

function natives.TASK_START_SCENARIO_IN_PLACE(Pedped, constcharscenarioName, intunkDelay, BOOLplayEnterAnim)
    return native.call(0x142A02425FF02BD9, Pedped, constcharscenarioName, intunkDelay, BOOLplayEnterAnim)
end

function natives.TASK_START_SCENARIO_AT_POSITION(Pedped, constcharscenarioName, floatx, floaty, floatz, floatheading, intduration, BOOLsittingScenario, BOOLteleport)
    return native.call(0xFA4EFC79F69D4F07, Pedped, constcharscenarioName, floatx, floaty, floatz, floatheading, intduration, BOOLsittingScenario, BOOLteleport)
end

function natives.TASK_USE_NEAREST_SCENARIO_TO_COORD(Pedped, floatx, floaty, floatz, floatdistance, intduration)
    return native.call(0x277F471BA9DB000B, Pedped, floatx, floaty, floatz, floatdistance, intduration)
end

function natives.TASK_USE_NEAREST_SCENARIO_TO_COORD_WARP(Pedped, floatx, floaty, floatz, floatradius, Anyp5)
    return native.call(0x58E2E0F23F6B76C3, Pedped, floatx, floaty, floatz, floatradius, Anyp5)
end

function natives.TASK_USE_NEAREST_SCENARIO_CHAIN_TO_COORD(Anyp0, floatp1, floatp2, floatp3, floatp4, Anyp5)
    return native.call(0x9FDA1B3D7E7028B3, Anyp0, floatp1, floatp2, floatp3, floatp4, Anyp5)
end

function natives.TASK_USE_NEAREST_SCENARIO_CHAIN_TO_COORD_WARP(Anyp0, floatp1, floatp2, floatp3, floatp4, Anyp5)
    return native.call(0x97A28E63F0BA5631, Anyp0, floatp1, floatp2, floatp3, floatp4, Anyp5)
end

function natives.DOES_SCENARIO_EXIST_IN_AREA(floatx, floaty, floatz, floatradius, BOOLb)
    return native.call(0x5A59271FFADD33C1, floatx, floaty, floatz, floatradius, BOOLb)
end

function natives.DOES_SCENARIO_OF_TYPE_EXIST_IN_AREA(floatp0, floatp1, floatp2, Anyp3, floatp4, BOOLp5)
    return native.call(0x0A9D0C2A3BBC86C1, floatp0, floatp1, floatp2, Anyp3, floatp4, BOOLp5)
end

function natives.IS_SCENARIO_OCCUPIED(floatp0, floatp1, floatp2, floatp3, BOOLp4)
    return native.call(0x788756D73AC2E07C, floatp0, floatp1, floatp2, floatp3, BOOLp4)
end

function natives.PED_HAS_USE_SCENARIO_TASK(Pedped)
    return native.call(0x295E3CCEC879CCD7, Pedped)
end

function natives.PLAY_ANIM_ON_RUNNING_SCENARIO(Pedped, constcharanimDict, constcharanimName)
    return native.call(0x748040460F8DF5DC, Pedped, constcharanimDict, constcharanimName)
end

function natives.DOES_SCENARIO_GROUP_EXIST(constcharscenarioGroup)
    return native.call(0xF9034C136C9E00D3, constcharscenarioGroup)
end

function natives.IS_SCENARIO_GROUP_ENABLED(constcharscenarioGroup)
    return native.call(0x367A09DED4E05B99, constcharscenarioGroup)
end

function natives.SET_SCENARIO_GROUP_ENABLED(constcharscenarioGroup, BOOLp1)
    return native.call(0x02C8E5B49848664E, constcharscenarioGroup, BOOLp1)
end

function natives.RESET_SCENARIO_GROUPS_ENABLED()
    return native.call(0xDD902D0349AFAD3A)
end

function natives.SET_EXCLUSIVE_SCENARIO_GROUP(constcharscenarioGroup)
    return native.call(0x535E97E1F7FC0C6A, constcharscenarioGroup)
end

function natives.RESET_EXCLUSIVE_SCENARIO_GROUP()
    return native.call(0x4202BBCB8684563D)
end

function natives.IS_SCENARIO_TYPE_ENABLED(constcharscenarioType)
    return native.call(0x3A815DB3EA088722, constcharscenarioType)
end

function natives.SET_SCENARIO_TYPE_ENABLED(constcharscenarioType, BOOLtoggle)
    return native.call(0xEB47EC4E34FB7EE1, constcharscenarioType, BOOLtoggle)
end

function natives.RESET_SCENARIO_TYPES_ENABLED()
    return native.call(0x0D40EE2A7F2B2D6D)
end

function natives.IS_PED_ACTIVE_IN_SCENARIO(Pedped)
    return native.call(0xAA135F9482C82CC3, Pedped)
end

function natives.IS_PED_PLAYING_BASE_CLIP_IN_SCENARIO(Pedped)
    return native.call(0x621C6E4729388E41, Pedped)
end

function natives.SET_PED_CAN_PLAY_AMBIENT_IDLES(Pedped, BOOLp1, BOOLp2)
    return native.call(0x8FD89A6240813FD0, Pedped, BOOLp1, BOOLp2)
end

function natives.TASK_COMBAT_HATED_TARGETS_IN_AREA(Pedped, floatx, floaty, floatz, floatradius, Anyp5)
    return native.call(0x4CF5F55DAC3280A0, Pedped, floatx, floaty, floatz, floatradius, Anyp5)
end

function natives.TASK_COMBAT_HATED_TARGETS_AROUND_PED(Pedped, floatradius, intp2)
    return native.call(0x7BF835BB9E2698C8, Pedped, floatradius, intp2)
end

function natives.TASK_COMBAT_HATED_TARGETS_AROUND_PED_TIMED(Anyp0, floatp1, Anyp2, Anyp3)
    return native.call(0x2BBA30B854534A0C, Anyp0, floatp1, Anyp2, Anyp3)
end

function natives.TASK_THROW_PROJECTILE(Pedped, floatx, floaty, floatz, Anyp4, Anyp5)
    return native.call(0x7285951DBF6B5A51, Pedped, floatx, floaty, floatz, Anyp4, Anyp5)
end

function natives.TASK_SWAP_WEAPON(Pedped, BOOLp1)
    return native.call(0xA21C51255B205245, Pedped, BOOLp1)
end

function natives.TASK_RELOAD_WEAPON(Pedped, BOOLunused)
    return native.call(0x62D2916F56B9CD2D, Pedped, BOOLunused)
end

function natives.IS_PED_GETTING_UP(Pedped)
    return native.call(0x2A74E1D5F2F00EEC, Pedped)
end

function natives.TASK_WRITHE(Pedped, Pedtarget, inttime, intp3, Anyp4, Anyp5)
    return native.call(0xCDDC2B77CE54AC6E, Pedped, Pedtarget, inttime, intp3, Anyp4, Anyp5)
end

function natives.IS_PED_IN_WRITHE(Pedped)
    return native.call(0xDEB6D52126E7D640, Pedped)
end

function natives.OPEN_PATROL_ROUTE(constcharpatrolRoute)
    return native.call(0xA36BFB5EE89F3D82, constcharpatrolRoute)
end

function natives.CLOSE_PATROL_ROUTE()
    return native.call(0xB043ECA801B8CBC1)
end

function natives.ADD_PATROL_ROUTE_NODE(intp0, constcharp1, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intp8)
    return native.call(0x8EDF950167586B7C, intp0, constcharp1, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, intp8)
end

function natives.ADD_PATROL_ROUTE_LINK(Anyp0, Anyp1)
    return native.call(0x23083260DEC3A551, Anyp0, Anyp1)
end

function natives.CREATE_PATROL_ROUTE()
    return native.call(0xAF8A443CCC8018DC)
end

function natives.DELETE_PATROL_ROUTE(constcharpatrolRoute)
    return native.call(0x7767DD9D65E91319, constcharpatrolRoute)
end

function natives.GET_PATROL_TASK_STATUS(Pedped, intp1, intp2)
    return native.call(0x52F734CEBE20DFBA, Pedped, intp1, intp2)
end

function natives.TASK_PATROL(Pedped, constcharp1, Anyp2, BOOLp3, BOOLp4)
    return native.call(0xBDA5DF49D080FE4E, Pedped, constcharp1, Anyp2, BOOLp3, BOOLp4)
end

function natives.TASK_STAY_IN_COVER(Pedped)
    return native.call(0xE5DA8615A6180789, Pedped)
end

function natives.ADD_VEHICLE_SUBTASK_ATTACK_COORD(Pedped, floatx, floaty, floatz)
    return native.call(0x5CF0D8F9BBA0DD75, Pedped, floatx, floaty, floatz)
end

function natives.ADD_VEHICLE_SUBTASK_ATTACK_PED(Pedped, Pedtarget)
    return native.call(0x85F462BADC7DA47F, Pedped, Pedtarget)
end

function natives.TASK_VEHICLE_SHOOT_AT_PED(Pedped, Pedtarget, floatp2)
    return native.call(0x10AB107B887214D8, Pedped, Pedtarget, floatp2)
end

function natives.TASK_VEHICLE_AIM_AT_PED(Pedped, Pedtarget)
    return native.call(0xE41885592B08B097, Pedped, Pedtarget)
end

function natives.TASK_VEHICLE_SHOOT_AT_COORD(Pedped, floatx, floaty, floatz, floatp4)
    return native.call(0x5190796ED39C9B6D, Pedped, floatx, floaty, floatz, floatp4)
end

function natives.TASK_VEHICLE_AIM_AT_COORD(Pedped, floatx, floaty, floatz)
    return native.call(0x447C1E9EF844BC0F, Pedped, floatx, floaty, floatz)
end

function natives.TASK_VEHICLE_GOTO_NAVMESH(Pedped, Vehiclevehicle, floatx, floaty, floatz, floatspeed, intbehaviorFlag, floatstoppingRange)
    return native.call(0x195AEEB13CEFE2EE, Pedped, Vehiclevehicle, floatx, floaty, floatz, floatspeed, intbehaviorFlag, floatstoppingRange)
end

function natives.TASK_GO_TO_COORD_WHILE_AIMING_AT_COORD(Pedped, floatx, floaty, floatz, floataimAtX, floataimAtY, floataimAtZ, floatmoveSpeed, BOOLp8, floatp9, floatp10, BOOLp11, Anyflags, BOOLp13, HashfiringPattern)
    return native.call(0x11315AB3385B8AC0, Pedped, floatx, floaty, floatz, floataimAtX, floataimAtY, floataimAtZ, floatmoveSpeed, BOOLp8, floatp9, floatp10, BOOLp11, Anyflags, BOOLp13, HashfiringPattern)
end

function natives.TASK_GO_TO_COORD_WHILE_AIMING_AT_ENTITY(Anyp0, floatp1, floatp2, floatp3, Anyp4, floatp5, BOOLp6, floatp7, floatp8, BOOLp9, Anyp10, BOOLp11, Anyp12, Anyp13)
    return native.call(0xB2A16444EAD9AE47, Anyp0, floatp1, floatp2, floatp3, Anyp4, floatp5, BOOLp6, floatp7, floatp8, BOOLp9, Anyp10, BOOLp11, Anyp12, Anyp13)
end

function natives.TASK_GO_TO_COORD_AND_AIM_AT_HATED_ENTITIES_NEAR_COORD(PedpedHandle, floatgoToLocationX, floatgoToLocationY, floatgoToLocationZ, floatfocusLocationX, floatfocusLocationY, floatfocusLocationZ, floatspeed, BOOLshootAtEnemies, floatdistanceToStopAt, floatnoRoadsDistance, BOOLunkTrue, intunkFlag, intaimingFlag, HashfiringPattern)
    return native.call(0xA55547801EB331FC, PedpedHandle, floatgoToLocationX, floatgoToLocationY, floatgoToLocationZ, floatfocusLocationX, floatfocusLocationY, floatfocusLocationZ, floatspeed, BOOLshootAtEnemies, floatdistanceToStopAt, floatnoRoadsDistance, BOOLunkTrue, intunkFlag, intaimingFlag, HashfiringPattern)
end

function natives.TASK_GO_TO_ENTITY_WHILE_AIMING_AT_COORD(Anyp0, Anyp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, floatp7, floatp8, BOOLp9, BOOLp10, Anyp11)
    return native.call(0x04701832B739DCE5, Anyp0, Anyp1, floatp2, floatp3, floatp4, floatp5, BOOLp6, floatp7, floatp8, BOOLp9, BOOLp10, Anyp11)
end

function natives.TASK_GO_TO_ENTITY_WHILE_AIMING_AT_ENTITY(Pedped, EntityentityToWalkTo, EntityentityToAimAt, floatspeed, BOOLshootatEntity, floatp5, floatp6, BOOLp7, BOOLp8, HashfiringPattern)
    return native.call(0x97465886D35210E9, Pedped, EntityentityToWalkTo, EntityentityToAimAt, floatspeed, BOOLshootatEntity, floatp5, floatp6, BOOLp7, BOOLp8, HashfiringPattern)
end

function natives.SET_HIGH_FALL_TASK(Pedped, Anyp1, Anyp2, Anyp3)
    return native.call(0x8C825BDC7741D37C, Pedped, Anyp1, Anyp2, Anyp3)
end

function natives.REQUEST_WAYPOINT_RECORDING(constcharname)
    return native.call(0x9EEFB62EB27B5792, constcharname)
end

function natives.GET_IS_WAYPOINT_RECORDING_LOADED(constcharname)
    return native.call(0xCB4E8BE8A0063C5D, constcharname)
end

function natives.REMOVE_WAYPOINT_RECORDING(constcharname)
    return native.call(0xFF1B8B4AA1C25DC8, constcharname)
end

function natives.WAYPOINT_RECORDING_GET_NUM_POINTS(constcharname, intpoints)
    return native.call(0x5343532C01A07234, constcharname, intpoints)
end

function natives.WAYPOINT_RECORDING_GET_COORD(constcharname, intpoint, Vector3coord)
    return native.call(0x2FB897405C90B361, constcharname, intpoint, Vector3coord)
end

function natives.WAYPOINT_RECORDING_GET_SPEED_AT_POINT(constcharname, intpoint)
    return native.call(0x005622AEBC33ACA9, constcharname, intpoint)
end

function natives.WAYPOINT_RECORDING_GET_CLOSEST_WAYPOINT(constcharname, floatx, floaty, floatz, intpoint)
    return native.call(0xB629A298081F876F, constcharname, floatx, floaty, floatz, intpoint)
end

function natives.TASK_FOLLOW_WAYPOINT_RECORDING(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x0759591819534F7B, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives.IS_WAYPOINT_PLAYBACK_GOING_ON_FOR_PED(Anyp0)
    return native.call(0xE03B3F2D3DC59B64, Anyp0)
end

function natives.GET_PED_WAYPOINT_PROGRESS(Pedped)
    return native.call(0x2720AAA75001E094, Pedped)
end

function natives.GET_PED_WAYPOINT_DISTANCE(Anyp0)
    return native.call(0xE6A877C64CAF1BC5, Anyp0)
end

function natives.SET_PED_WAYPOINT_ROUTE_OFFSET(Anyp0, Anyp1, Anyp2, Anyp3)
    return native.call(0xED98E10B0AFCE4B4, Anyp0, Anyp1, Anyp2, Anyp3)
end

function natives.GET_WAYPOINT_DISTANCE_ALONG_ROUTE(constcharp0, intp1)
    return native.call(0xA5B769058763E497, constcharp0, intp1)
end

function natives.WAYPOINT_PLAYBACK_GET_IS_PAUSED(Anyp0)
    return native.call(0x701375A7D43F01CB, Anyp0)
end

function natives.WAYPOINT_PLAYBACK_PAUSE(Anyp0, BOOLp1, BOOLp2)
    return native.call(0x0F342546AA06FED5, Anyp0, BOOLp1, BOOLp2)
end

function natives.WAYPOINT_PLAYBACK_RESUME(Anyp0, BOOLp1, Anyp2, Anyp3)
    return native.call(0x244F70C84C547D2D, Anyp0, BOOLp1, Anyp2, Anyp3)
end

function natives.WAYPOINT_PLAYBACK_OVERRIDE_SPEED(Anyp0, floatp1, BOOLp2)
    return native.call(0x7D7D2B47FA788E85, Anyp0, floatp1, BOOLp2)
end

function natives.WAYPOINT_PLAYBACK_USE_DEFAULT_SPEED(Anyp0)
    return native.call(0x6599D834B12D0800, Anyp0)
end

function natives.USE_WAYPOINT_RECORDING_AS_ASSISTED_MOVEMENT_ROUTE(constcharname, BOOLp1, floatp2, floatp3)
    return native.call(0x5A353B8E6B1095B5, constcharname, BOOLp1, floatp2, floatp3)
end

function natives.WAYPOINT_PLAYBACK_START_AIMING_AT_PED(Anyp0, Anyp1, BOOLp2)
    return native.call(0x20E330937C399D29, Anyp0, Anyp1, BOOLp2)
end

function natives.WAYPOINT_PLAYBACK_START_AIMING_AT_COORD(Anyp0, floatp1, floatp2, floatp3, BOOLp4)
    return native.call(0x8968400D900ED8B3, Anyp0, floatp1, floatp2, floatp3, BOOLp4)
end

function natives.WAYPOINT_PLAYBACK_START_SHOOTING_AT_PED(Anyp0, Anyp1, BOOLp2, Anyp3)
    return native.call(0xE70BA7B90F8390DC, Anyp0, Anyp1, BOOLp2, Anyp3)
end

function natives.WAYPOINT_PLAYBACK_START_SHOOTING_AT_COORD(Anyp0, floatp1, floatp2, floatp3, BOOLp4, Anyp5)
    return native.call(0x057A25CFCC9DB671, Anyp0, floatp1, floatp2, floatp3, BOOLp4, Anyp5)
end

function natives.WAYPOINT_PLAYBACK_STOP_AIMING_OR_SHOOTING(Anyp0)
    return native.call(0x47EFA040EBB8E2EA, Anyp0)
end

function natives.ASSISTED_MOVEMENT_REQUEST_ROUTE(constcharroute)
    return native.call(0x817268968605947A, constcharroute)
end

function natives.ASSISTED_MOVEMENT_REMOVE_ROUTE(constcharroute)
    return native.call(0x3548536485DD792B, constcharroute)
end

function natives.ASSISTED_MOVEMENT_IS_ROUTE_LOADED(constcharroute)
    return native.call(0x60F9A4393A21F741, constcharroute)
end

function natives.ASSISTED_MOVEMENT_SET_ROUTE_PROPERTIES(constcharroute, intprops)
    return native.call(0xD5002D78B7162E1B, constcharroute, intprops)
end

function natives.ASSISTED_MOVEMENT_OVERRIDE_LOAD_DISTANCE_THIS_FRAME(floatdist)
    return native.call(0x13945951E16EF912, floatdist)
end

function natives.TASK_VEHICLE_FOLLOW_WAYPOINT_RECORDING(Pedped, Vehiclevehicle, constcharWPRecording, intp3, intp4, intp5, intp6, floatp7, BOOLp8, floatp9)
    return native.call(0x3123FAA6DB1CF7ED, Pedped, Vehiclevehicle, constcharWPRecording, intp3, intp4, intp5, intp6, floatp7, BOOLp8, floatp9)
end

function natives.IS_WAYPOINT_PLAYBACK_GOING_ON_FOR_VEHICLE(Vehiclevehicle)
    return native.call(0xF5134943EA29868C, Vehiclevehicle)
end

function natives.GET_VEHICLE_WAYPOINT_PROGRESS(Vehiclevehicle)
    return native.call(0x9824CFF8FC66E159, Vehiclevehicle)
end

function natives.GET_VEHICLE_WAYPOINT_TARGET_POINT(Vehiclevehicle)
    return native.call(0x416B62AC8B9E5BBD, Vehiclevehicle)
end

function natives.VEHICLE_WAYPOINT_PLAYBACK_PAUSE(Vehiclevehicle)
    return native.call(0x8A4E6AC373666BC5, Vehiclevehicle)
end

function natives.VEHICLE_WAYPOINT_PLAYBACK_RESUME(Vehiclevehicle)
    return native.call(0xDC04FCAA7839D492, Vehiclevehicle)
end

function natives.VEHICLE_WAYPOINT_PLAYBACK_USE_DEFAULT_SPEED(Vehiclevehicle)
    return native.call(0x5CEB25A7D2848963, Vehiclevehicle)
end

function natives.VEHICLE_WAYPOINT_PLAYBACK_OVERRIDE_SPEED(Vehiclevehicle, floatspeed)
    return native.call(0x121F0593E0A431D7, Vehiclevehicle, floatspeed)
end

function natives.TASK_SET_BLOCKING_OF_NON_TEMPORARY_EVENTS(Pedped, BOOLtoggle)
    return native.call(0x90D2156198831D69, Pedped, BOOLtoggle)
end

function natives.TASK_FORCE_MOTION_STATE(Pedped, Hashstate, BOOLp2)
    return native.call(0x4F056E1AFFEF17AB, Pedped, Hashstate, BOOLp2)
end

function natives.TASK_MOVE_NETWORK_BY_NAME(Pedped, constchartask, floatmultiplier, BOOLp3, constcharanimDict, intflags)
    return native.call(0x2D537BA194896636, Pedped, constchartask, floatmultiplier, BOOLp3, constcharanimDict, intflags)
end

function natives.TASK_MOVE_NETWORK_ADVANCED_BY_NAME(Pedped, constcharp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, Anyp8, floatp9, BOOLp10, constcharanimDict, intflags)
    return native.call(0xD5B35BEA41919ACB, Pedped, constcharp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, Anyp8, floatp9, BOOLp10, constcharanimDict, intflags)
end

function natives.TASK_MOVE_NETWORK_BY_NAME_WITH_INIT_PARAMS(Pedped, constcharp1, Anydata, floatp3, BOOLp4, constcharanimDict, intflags)
    return native.call(0x3D45B0B355C5E0C9, Pedped, constcharp1, Anydata, floatp3, BOOLp4, constcharanimDict, intflags)
end

function natives._0x29682E2CCF21E9B5(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10, Anyp11, Anyp12, Anyp13)
    return native.call(0x29682E2CCF21E9B5, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8, Anyp9, Anyp10, Anyp11, Anyp12, Anyp13)
end

function natives.IS_TASK_MOVE_NETWORK_ACTIVE(Pedped)
    return native.call(0x921CE12C489C4C41, Pedped)
end

function natives.IS_TASK_MOVE_NETWORK_READY_FOR_TRANSITION(Pedped)
    return native.call(0x30ED88D5E0C56A37, Pedped)
end

function natives.REQUEST_TASK_MOVE_NETWORK_STATE_TRANSITION(Pedped, constcharname)
    return native.call(0xD01015C7316AE176, Pedped, constcharname)
end

function natives._0xAB13A5565480B6D9(Pedped, constcharp1)
    return native.call(0xAB13A5565480B6D9, Pedped, constcharp1)
end

function natives.GET_TASK_MOVE_NETWORK_STATE(Pedped)
    return native.call(0x717E4D1F2048376D, Pedped)
end

function natives._0x8423541E8B3A1589(Anyp0, Anyp1, Anyp2)
    return native.call(0x8423541E8B3A1589, Anyp0, Anyp1, Anyp2)
end

function natives.SET_TASK_MOVE_NETWORK_SIGNAL_FLOAT(Pedped, constcharsignalName, floatvalue)
    return native.call(0xD5BB4025AE449A4E, Pedped, constcharsignalName, floatvalue)
end

function natives.SET_TASK_MOVE_NETWORK_SIGNAL_FLOAT_2(Pedped, constcharsignalName, floatvalue)
    return native.call(0x373EF409B82697A3, Pedped, constcharsignalName, floatvalue)
end

function natives._0x8634CEF2522D987B(Pedped, constcharp1, floatvalue)
    return native.call(0x8634CEF2522D987B, Pedped, constcharp1, floatvalue)
end

function natives.SET_TASK_MOVE_NETWORK_SIGNAL_BOOL(Pedped, constcharsignalName, BOOLvalue)
    return native.call(0xB0A6CFD2C69C1088, Pedped, constcharsignalName, BOOLvalue)
end

function natives.GET_TASK_MOVE_NETWORK_SIGNAL_FLOAT(Pedped, constcharsignalName)
    return native.call(0x44AB0B3AFECCE242, Pedped, constcharsignalName)
end

function natives.GET_TASK_MOVE_NETWORK_SIGNAL_BOOL(Pedped, constcharsignalName)
    return native.call(0xA7FFBA498E4AAF67, Pedped, constcharsignalName)
end

function natives.GET_TASK_MOVE_NETWORK_EVENT(Pedped, constchareventName)
    return native.call(0xB4F47213DF45A64C, Pedped, constchareventName)
end

function natives._0x0FFB3C758E8C07B9(Pedped, BOOLp1)
    return native.call(0x0FFB3C758E8C07B9, Pedped, BOOLp1)
end

function natives.IS_MOVE_BLEND_RATIO_STILL(Pedped)
    return native.call(0x349CE7B56DAFD95C, Pedped)
end

function natives.IS_MOVE_BLEND_RATIO_WALKING(Pedped)
    return native.call(0xF133BBBE91E1691F, Pedped)
end

function natives.IS_MOVE_BLEND_RATIO_RUNNING(Pedped)
    return native.call(0xD4D8636C0199A939, Pedped)
end

function natives.IS_MOVE_BLEND_RATIO_SPRINTING(Pedped)
    return native.call(0x24A2AD74FA9814E2, Pedped)
end

function natives.IS_PED_STILL(Pedped)
    return native.call(0xAC29253EEF8F0180, Pedped)
end

function natives.IS_PED_WALKING(Pedped)
    return native.call(0xDE4C184B2B9B071A, Pedped)
end

function natives.IS_PED_RUNNING(Pedped)
    return native.call(0xC5286FFC176F28A2, Pedped)
end

function natives.IS_PED_SPRINTING(Pedped)
    return native.call(0x57E457CD2C0FC168, Pedped)
end

function natives.IS_PED_STRAFING(Pedped)
    return native.call(0xE45B7F222DE47E09, Pedped)
end

function natives.TASK_SYNCHRONIZED_SCENE(Pedped, intscene, constcharanimDictionary, constcharanimationName, floatspeed, floatspeedMultiplier, intduration, intflag, floatplaybackRate, Anyp9)
    return native.call(0xEEA929141F699854, Pedped, intscene, constcharanimDictionary, constcharanimationName, floatspeed, floatspeedMultiplier, intduration, intflag, floatplaybackRate, Anyp9)
end

function natives.TASK_AGITATED_ACTION(Pedped, Pedped2)
    return native.call(0x19D1B791CB3670FE, Pedped, Pedped2)
end

function natives.TASK_SWEEP_AIM_ENTITY(Pedped, constcharanim, constcharp2, constcharp3, constcharp4, intp5, Vehiclevehicle, floatp7, floatp8)
    return native.call(0x2047C02158D6405A, Pedped, constcharanim, constcharp2, constcharp3, constcharp4, intp5, Vehiclevehicle, floatp7, floatp8)
end

function natives.UPDATE_TASK_SWEEP_AIM_ENTITY(Pedped, Entityentity)
    return native.call(0xE4973DBDBE6E44B3, Pedped, Entityentity)
end

function natives.TASK_SWEEP_AIM_POSITION(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, floatp6, floatp7, floatp8, floatp9, floatp10)
    return native.call(0x7AFE8FDC10BC07D2, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, floatp6, floatp7, floatp8, floatp9, floatp10)
end

function natives.UPDATE_TASK_SWEEP_AIM_POSITION(Anyp0, floatp1, floatp2, floatp3)
    return native.call(0xBB106883F5201FC4, Anyp0, floatp1, floatp2, floatp3)
end

function natives.TASK_ARREST_PED(Pedped, Pedtarget)
    return native.call(0xF3B9A78A178572B1, Pedped, Pedtarget)
end

function natives.IS_PED_RUNNING_ARREST_TASK(Pedped)
    return native.call(0x3DC52677769B4AE0, Pedped)
end

function natives.IS_PED_BEING_ARRESTED(Pedped)
    return native.call(0x90A09F3A45FED688, Pedped)
end

function natives.UNCUFF_PED(Pedped)
    return native.call(0x67406F2C8F87FC4F, Pedped)
end

function natives.IS_PED_CUFFED(Pedped)
    return native.call(0x74E559B3BC910685, Pedped)
end

function natives.CREATE_VEHICLE(HashmodelHash, floatx, floaty, floatz, floatheading, BOOLisNetwork, BOOLbScriptHostVeh, BOOLp7)
    return native.call(0xAF35D0D2583051B0, HashmodelHash, floatx, floaty, floatz, floatheading, BOOLisNetwork, BOOLbScriptHostVeh, BOOLp7)
end

function natives.DELETE_VEHICLE(Vehiclevehicle)
    return native.call(0xEA386986E786A54F, Vehiclevehicle)
end

function natives._0x7D6F9A3EF26136A0(Vehiclevehicle, BOOLtoggle, BOOLp2)
    return native.call(0x7D6F9A3EF26136A0, Vehiclevehicle, BOOLtoggle, BOOLp2)
end

function natives.SET_VEHICLE_CAN_BE_LOCKED_ON(Vehiclevehicle, BOOLcanBeLockedOn, BOOLunk)
    return native.call(0x1DDA078D12879EEE, Vehiclevehicle, BOOLcanBeLockedOn, BOOLunk)
end

function natives.SET_VEHICLE_ALLOW_NO_PASSENGERS_LOCKON(Vehicleveh, BOOLtoggle)
    return native.call(0x5D14D4154BFE7B2C, Vehicleveh, BOOLtoggle)
end

function natives.GET_VEHICLE_HOMING_LOCKON_STATE(Vehiclevehicle)
    return native.call(0xE6B0E8CFC3633BF0, Vehiclevehicle)
end

function natives._0x6EAAEFC76ACC311F(Anyp0)
    return native.call(0x6EAAEFC76ACC311F, Anyp0)
end

function natives._0x407DC5E97DB1A4D3(Anyp0, Anyp1)
    return native.call(0x407DC5E97DB1A4D3, Anyp0, Anyp1)
end

function natives.IS_VEHICLE_MODEL(Vehiclevehicle, Hashmodel)
    return native.call(0x423E8DE37D934D89, Vehiclevehicle, Hashmodel)
end

function natives.DOES_SCRIPT_VEHICLE_GENERATOR_EXIST(intvehicleGenerator)
    return native.call(0xF6086BC836400876, intvehicleGenerator)
end

function natives.CREATE_SCRIPT_VEHICLE_GENERATOR(floatx, floaty, floatz, floatheading, floatp4, floatp5, HashmodelHash, intp7, intp8, intp9, intp10, BOOLp11, BOOLp12, BOOLp13, BOOLp14, BOOLp15, intp16)
    return native.call(0x9DEF883114668116, floatx, floaty, floatz, floatheading, floatp4, floatp5, HashmodelHash, intp7, intp8, intp9, intp10, BOOLp11, BOOLp12, BOOLp13, BOOLp14, BOOLp15, intp16)
end

function natives.DELETE_SCRIPT_VEHICLE_GENERATOR(intvehicleGenerator)
    return native.call(0x22102C9ABFCF125D, intvehicleGenerator)
end

function natives.SET_SCRIPT_VEHICLE_GENERATOR(intvehicleGenerator, BOOLenabled)
    return native.call(0xD9D620E0AC6DC4B0, intvehicleGenerator, BOOLenabled)
end

function natives.SET_ALL_VEHICLE_GENERATORS_ACTIVE_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp6, BOOLp7)
    return native.call(0xC12321827687FE4D, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, BOOLp6, BOOLp7)
end

function natives.SET_ALL_VEHICLE_GENERATORS_ACTIVE()
    return native.call(0x34AD89078831A4BC)
end

function natives.SET_ALL_LOW_PRIORITY_VEHICLE_GENERATORS_ACTIVE(BOOLactive)
    return native.call(0x608207E7A8FB787C, BOOLactive)
end

function natives._0x9A75585FB2E54FAD(floatx, floaty, floatz, floatradius)
    return native.call(0x9A75585FB2E54FAD, floatx, floaty, floatz, floatradius)
end

function natives._0x0A436B8643716D14()
    return native.call(0x0A436B8643716D14)
end

function natives.SET_VEHICLE_ON_GROUND_PROPERLY(Vehiclevehicle, floatp1)
    return native.call(0x49733E92263139D1, Vehiclevehicle, floatp1)
end

function natives.SET_VEHICLE_USE_CUTSCENE_WHEEL_COMPRESSION(Vehiclep0, BOOLp1, BOOLp2, BOOLp3)
    return native.call(0xE023E8AC4EF7C117, Vehiclep0, BOOLp1, BOOLp2, BOOLp3)
end

function natives.IS_VEHICLE_STUCK_ON_ROOF(Vehiclevehicle)
    return native.call(0xB497F06B288DCFDF, Vehiclevehicle)
end

function natives.ADD_VEHICLE_UPSIDEDOWN_CHECK(Vehiclevehicle)
    return native.call(0xB72E26D81006005B, Vehiclevehicle)
end

function natives.REMOVE_VEHICLE_UPSIDEDOWN_CHECK(Vehiclevehicle)
    return native.call(0xC53EB42A499A7E90, Vehiclevehicle)
end

function natives.IS_VEHICLE_STOPPED(Vehiclevehicle)
    return native.call(0x5721B434AD84D57A, Vehiclevehicle)
end

function natives.GET_VEHICLE_NUMBER_OF_PASSENGERS(Vehiclevehicle, BOOLincludeDriver, BOOLincludeDeadOccupants)
    return native.call(0x24CB2137731FFE89, Vehiclevehicle, BOOLincludeDriver, BOOLincludeDeadOccupants)
end

function natives.GET_VEHICLE_MAX_NUMBER_OF_PASSENGERS(Vehiclevehicle)
    return native.call(0xA7C4F2C6E744A550, Vehiclevehicle)
end

function natives.GET_VEHICLE_MODEL_NUMBER_OF_SEATS(HashmodelHash)
    return native.call(0x2AD93716F184EDA4, HashmodelHash)
end

function natives.IS_SEAT_WARP_ONLY(Vehiclevehicle, intseatIndex)
    return native.call(0xF7F203E31F96F6A1, Vehiclevehicle, intseatIndex)
end

function natives.IS_TURRET_SEAT(Vehiclevehicle, intseatIndex)
    return native.call(0xE33FFA906CE74880, Vehiclevehicle, intseatIndex)
end

function natives.DOES_VEHICLE_ALLOW_RAPPEL(Vehiclevehicle)
    return native.call(0x4E417C547182C84D, Vehiclevehicle)
end

function natives.SET_VEHICLE_DENSITY_MULTIPLIER_THIS_FRAME(floatmultiplier)
    return native.call(0x245A6883D966D537, floatmultiplier)
end

function natives.SET_RANDOM_VEHICLE_DENSITY_MULTIPLIER_THIS_FRAME(floatmultiplier)
    return native.call(0xB3B3359379FE77D3, floatmultiplier)
end

function natives.SET_PARKED_VEHICLE_DENSITY_MULTIPLIER_THIS_FRAME(floatmultiplier)
    return native.call(0xEAE6DCC7EEE3DB1D, floatmultiplier)
end

function natives.SET_DISABLE_RANDOM_TRAINS_THIS_FRAME(BOOLtoggle)
    return native.call(0xD4B8E3D1917BC86B, BOOLtoggle)
end

function natives.SET_AMBIENT_VEHICLE_RANGE_MULTIPLIER_THIS_FRAME(floatvalue)
    return native.call(0x90B6DA738A9A25DA, floatvalue)
end

function natives.SET_FAR_DRAW_VEHICLES(BOOLtoggle)
    return native.call(0x26324F33423F3CC3, BOOLtoggle)
end

function natives.SET_NUMBER_OF_PARKED_VEHICLES(intvalue)
    return native.call(0xCAA15F13EBD417FF, intvalue)
end

function natives.SET_VEHICLE_DOORS_LOCKED(Vehiclevehicle, intdoorLockStatus)
    return native.call(0xB664292EAECF7FA6, Vehiclevehicle, intdoorLockStatus)
end

function natives.SET_VEHICLE_INDIVIDUAL_DOORS_LOCKED(Vehiclevehicle, intdoorId, intdoorLockStatus)
    return native.call(0xBE70724027F85BCD, Vehiclevehicle, intdoorId, intdoorLockStatus)
end

function natives.SET_VEHICLE_HAS_MUTED_SIRENS(Vehiclevehicle, BOOLtoggle)
    return native.call(0xD8050E0EB60CF274, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_DOORS_LOCKED_FOR_PLAYER(Vehiclevehicle, Playerplayer, BOOLtoggle)
    return native.call(0x517AAF684BB50CD1, Vehiclevehicle, Playerplayer, BOOLtoggle)
end

function natives.GET_VEHICLE_DOORS_LOCKED_FOR_PLAYER(Vehiclevehicle, Playerplayer)
    return native.call(0xF6AF6CB341349015, Vehiclevehicle, Playerplayer)
end

function natives.SET_VEHICLE_DOORS_LOCKED_FOR_ALL_PLAYERS(Vehiclevehicle, BOOLtoggle)
    return native.call(0xA2F80B8D040727CC, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_DOORS_LOCKED_FOR_NON_SCRIPT_PLAYERS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x9737A37136F07E75, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_DOORS_LOCKED_FOR_TEAM(Vehiclevehicle, intteam, BOOLtoggle)
    return native.call(0xB81F6D4A8F5EEBA8, Vehiclevehicle, intteam, BOOLtoggle)
end

function natives.SET_VEHICLE_DOORS_LOCKED_FOR_UNK(Vehiclevehicle, BOOLtoggle)
    return native.call(0x203B527D1B77904C, Vehiclevehicle, BOOLtoggle)
end

function natives._0x76D26A22750E849E(Vehiclevehicle)
    return native.call(0x76D26A22750E849E, Vehiclevehicle)
end

function natives.EXPLODE_VEHICLE(Vehiclevehicle, BOOLisAudible, BOOLisInvisible)
    return native.call(0xBA71116ADF5B514C, Vehiclevehicle, BOOLisAudible, BOOLisInvisible)
end

function natives.SET_VEHICLE_OUT_OF_CONTROL(Vehiclevehicle, BOOLkillDriver, BOOLexplodeOnImpact)
    return native.call(0xF19D095E42D430CC, Vehiclevehicle, BOOLkillDriver, BOOLexplodeOnImpact)
end

function natives.SET_VEHICLE_TIMED_EXPLOSION(Vehiclevehicle, Pedped, BOOLtoggle)
    return native.call(0x2E0A74E1002380B1, Vehiclevehicle, Pedped, BOOLtoggle)
end

function natives.ADD_VEHICLE_PHONE_EXPLOSIVE_DEVICE(Vehiclevehicle)
    return native.call(0x99AD4CCCB128CBC9, Vehiclevehicle)
end

function natives.CLEAR_VEHICLE_PHONE_EXPLOSIVE_DEVICE()
    return native.call(0xAA3F739ABDDCF21F)
end

function natives.HAS_VEHICLE_PHONE_EXPLOSIVE_DEVICE()
    return native.call(0x6ADAABD3068C5235)
end

function natives.DETONATE_VEHICLE_PHONE_EXPLOSIVE_DEVICE()
    return native.call(0xEF49CF0270307CBE)
end

function natives.SET_TAXI_LIGHTS(Vehiclevehicle, BOOLstate)
    return native.call(0x598803E85E8448D9, Vehiclevehicle, BOOLstate)
end

function natives.IS_TAXI_LIGHT_ON(Vehiclevehicle)
    return native.call(0x7504C0F113AB50FC, Vehiclevehicle)
end

function natives.IS_VEHICLE_IN_GARAGE_AREA(constchargarageName, Vehiclevehicle)
    return native.call(0xCEE4490CD57BB3C2, constchargarageName, Vehiclevehicle)
end

function natives.SET_VEHICLE_COLOURS(Vehiclevehicle, intcolorPrimary, intcolorSecondary)
    return native.call(0x4F1D4BE3A7F24601, Vehiclevehicle, intcolorPrimary, intcolorSecondary)
end

function natives.SET_VEHICLE_FULLBEAM(Vehiclevehicle, BOOLtoggle)
    return native.call(0x8B7FD87F0DDB421E, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_IS_RACING(Vehiclevehicle, BOOLtoggle)
    return native.call(0x07116E24E9D1929D, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_CUSTOM_PRIMARY_COLOUR(Vehiclevehicle, intr, intg, intb)
    return native.call(0x7141766F91D15BEA, Vehiclevehicle, intr, intg, intb)
end

function natives.GET_VEHICLE_CUSTOM_PRIMARY_COLOUR(Vehiclevehicle, intr, intg, intb)
    return native.call(0xB64CF2CCA9D95F52, Vehiclevehicle, intr, intg, intb)
end

function natives.CLEAR_VEHICLE_CUSTOM_PRIMARY_COLOUR(Vehiclevehicle)
    return native.call(0x55E1D2758F34E437, Vehiclevehicle)
end

function natives.GET_IS_VEHICLE_PRIMARY_COLOUR_CUSTOM(Vehiclevehicle)
    return native.call(0xF095C0405307B21B, Vehiclevehicle)
end

function natives.SET_VEHICLE_CUSTOM_SECONDARY_COLOUR(Vehiclevehicle, intr, intg, intb)
    return native.call(0x36CED73BFED89754, Vehiclevehicle, intr, intg, intb)
end

function natives.GET_VEHICLE_CUSTOM_SECONDARY_COLOUR(Vehiclevehicle, intr, intg, intb)
    return native.call(0x8389CD56CA8072DC, Vehiclevehicle, intr, intg, intb)
end

function natives.CLEAR_VEHICLE_CUSTOM_SECONDARY_COLOUR(Vehiclevehicle)
    return native.call(0x5FFBDEEC3E8E2009, Vehiclevehicle)
end

function natives.GET_IS_VEHICLE_SECONDARY_COLOUR_CUSTOM(Vehiclevehicle)
    return native.call(0x910A32E7AAD2656C, Vehiclevehicle)
end

function natives.SET_VEHICLE_ENVEFF_SCALE(Vehiclevehicle, floatfade)
    return native.call(0x3AFDC536C3D01674, Vehiclevehicle, floatfade)
end

function natives.GET_VEHICLE_ENVEFF_SCALE(Vehiclevehicle)
    return native.call(0xA82819CAC9C4C403, Vehiclevehicle)
end

function natives.SET_CAN_RESPRAY_VEHICLE(Vehiclevehicle, BOOLstate)
    return native.call(0x52BBA29D5EC69356, Vehiclevehicle, BOOLstate)
end

function natives._0xAB31EF4DE6800CE9(Anyp0, Anyp1)
    return native.call(0xAB31EF4DE6800CE9, Anyp0, Anyp1)
end

function natives._0x1B212B26DD3C04DF(Vehiclevehicle, BOOLtoggle)
    return native.call(0x1B212B26DD3C04DF, Vehiclevehicle, BOOLtoggle)
end

function natives.FORCE_SUBMARINE_SURFACE_MODE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x33506883545AC0DF, Vehiclevehicle, BOOLtoggle)
end

function natives._0xC67DB108A9ADE3BE(Anyp0, Anyp1)
    return native.call(0xC67DB108A9ADE3BE, Anyp0, Anyp1)
end

function natives.SET_SUBMARINE_CRUSH_DEPTHS(Vehiclevehicle, BOOLp1, floatdepth1, floatdepth2, floatdepth3)
    return native.call(0xC59872A5134879C7, Vehiclevehicle, BOOLp1, floatdepth1, floatdepth2, floatdepth3)
end

function natives.GET_SUBMARINE_IS_BELOW_FIRST_CRUSH_DEPTH(Vehiclesubmarine)
    return native.call(0x3E71D0B300B7AA79, Vehiclesubmarine)
end

function natives.GET_SUBMARINE_CRUSH_DEPTH_WARNING_STATE(Vehiclesubmarine)
    return native.call(0x093D6DDCA5B8FBAE, Vehiclesubmarine)
end

function natives._0xED5EDE9E676643C9(Anyp0, Anyp1)
    return native.call(0xED5EDE9E676643C9, Anyp0, Anyp1)
end

function natives.SET_BOAT_ANCHOR(Vehiclevehicle, BOOLtoggle)
    return native.call(0x75DBEC174AEEAD10, Vehiclevehicle, BOOLtoggle)
end

function natives.CAN_ANCHOR_BOAT_HERE(Vehiclevehicle)
    return native.call(0x26C10ECBDA5D043B, Vehiclevehicle)
end

function natives.CAN_ANCHOR_BOAT_HERE_2(Vehiclevehicle)
    return native.call(0x24F4121D07579880, Vehiclevehicle)
end

function natives.SET_BOAT_FROZEN_WHEN_ANCHORED(Vehiclevehicle, BOOLtoggle)
    return native.call(0xE3EBAAE484798530, Vehiclevehicle, BOOLtoggle)
end

function natives._0xB28B1FE5BFADD7F5(Vehiclevehicle, BOOLp1)
    return native.call(0xB28B1FE5BFADD7F5, Vehiclevehicle, BOOLp1)
end

function natives.SET_BOAT_MOVEMENT_RESISTANCE(Vehiclevehicle, floatvalue)
    return native.call(0xE842A9398079BD82, Vehiclevehicle, floatvalue)
end

function natives.IS_BOAT_ANCHORED_AND_FROZEN(Vehiclevehicle)
    return native.call(0xB0AD1238A709B1A2, Vehiclevehicle)
end

function natives.SET_BOAT_SINKS_WHEN_WRECKED(Vehiclevehicle, BOOLtoggle)
    return native.call(0x8F719973E1445BA2, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_BOAT_IS_SINKING(Anyp0)
    return native.call(0xBD32E46AA95C1DD2, Anyp0)
end

function natives.SET_VEHICLE_SIREN(Vehiclevehicle, BOOLtoggle)
    return native.call(0xF4924635A19EB37D, Vehiclevehicle, BOOLtoggle)
end

function natives.IS_VEHICLE_SIREN_ON(Vehiclevehicle)
    return native.call(0x4C9BF537BE2634B2, Vehiclevehicle)
end

function natives.IS_VEHICLE_SIREN_AUDIO_ON(Vehiclevehicle)
    return native.call(0xB5CC40FBCB586380, Vehiclevehicle)
end

function natives.SET_VEHICLE_STRONG(Vehiclevehicle, BOOLtoggle)
    return native.call(0x3E8C8727991A8A0B, Vehiclevehicle, BOOLtoggle)
end

function natives.REMOVE_VEHICLE_STUCK_CHECK(Vehiclevehicle)
    return native.call(0x8386BFB614D06749, Vehiclevehicle)
end

function natives.GET_VEHICLE_COLOURS(Vehiclevehicle, intcolorPrimary, intcolorSecondary)
    return native.call(0xA19435F193E081AC, Vehiclevehicle, intcolorPrimary, intcolorSecondary)
end

function natives.IS_VEHICLE_SEAT_FREE(Vehiclevehicle, intseatIndex, BOOLisTaskRunning)
    return native.call(0x22AC59A870E6A669, Vehiclevehicle, intseatIndex, BOOLisTaskRunning)
end

function natives.GET_PED_IN_VEHICLE_SEAT(Vehiclevehicle, intseatIndex, BOOLp2)
    return native.call(0xBB40DD2270B65366, Vehiclevehicle, intseatIndex, BOOLp2)
end

function natives.GET_LAST_PED_IN_VEHICLE_SEAT(Vehiclevehicle, intseatIndex)
    return native.call(0x83F969AA1EE2A664, Vehiclevehicle, intseatIndex)
end

function natives.GET_VEHICLE_LIGHTS_STATE(Vehiclevehicle, BOOLlightsOn, BOOLhighbeamsOn)
    return native.call(0xB91B4C20085BD12F, Vehiclevehicle, BOOLlightsOn, BOOLhighbeamsOn)
end

function natives.IS_VEHICLE_TYRE_BURST(Vehiclevehicle, intwheelID, BOOLcompletely)
    return native.call(0xBA291848A0815CA9, Vehiclevehicle, intwheelID, BOOLcompletely)
end

function natives.SET_VEHICLE_FORWARD_SPEED(Vehiclevehicle, floatspeed)
    return native.call(0xAB54A438726D25D5, Vehiclevehicle, floatspeed)
end

function natives._0x6501129C9E0FFA05(Anyp0, Anyp1)
    return native.call(0x6501129C9E0FFA05, Anyp0, Anyp1)
end

function natives.BRING_VEHICLE_TO_HALT(Vehiclevehicle, floatdistance, intduration, BOOLunknown)
    return native.call(0x260BE8F09E326A20, Vehiclevehicle, floatdistance, intduration, BOOLunknown)
end

function natives._0xDCE97BDF8A0EABC8(Vehiclevehicle, Anyp1)
    return native.call(0xDCE97BDF8A0EABC8, Vehiclevehicle, Anyp1)
end

function natives._0x9849DE24FCF23CCC(Vehiclevehicle, BOOLtoggle)
    return native.call(0x9849DE24FCF23CCC, Vehiclevehicle, BOOLtoggle)
end

function natives._0x8664170EF165C4A6(Anyp0, Anyp1)
    return native.call(0x8664170EF165C4A6, Anyp0, Anyp1)
end

function natives.STOP_BRING_VEHICLE_TO_HALT(Vehiclevehicle)
    return native.call(0x7C06330BFDDA182E, Vehiclevehicle)
end

function natives.IS_VEHICLE_BEING_HALTED(Vehiclevehicle)
    return native.call(0xC69BB1D832A710EF, Vehiclevehicle)
end

function natives.SET_FORKLIFT_FORK_HEIGHT(Vehiclevehicle, floatheight)
    return native.call(0x37EBBF3117BD6A25, Vehiclevehicle, floatheight)
end

function natives.IS_ENTITY_ATTACHED_TO_HANDLER_FRAME(Vehiclevehicle, Entityentity)
    return native.call(0x57715966069157AD, Vehiclevehicle, Entityentity)
end

function natives.IS_ANY_ENTITY_ATTACHED_TO_HANDLER_FRAME(Vehiclevehicle)
    return native.call(0x62CA17B74C435651, Vehiclevehicle)
end

function natives.FIND_VEHICLE_CARRYING_THIS_ENTITY(Entityentity)
    return native.call(0x375E7FC44F21C8AB, Entityentity)
end

function natives.IS_HANDLER_FRAME_ABOVE_CONTAINER(Vehiclevehicle, Entityentity)
    return native.call(0x89D630CF5EA96D23, Vehiclevehicle, Entityentity)
end

function natives._0x6A98C2ECF57FA5D4(Vehiclevehicle, Entityentity)
    return native.call(0x6A98C2ECF57FA5D4, Vehiclevehicle, Entityentity)
end

function natives.DETACH_CONTAINER_FROM_HANDLER_FRAME(Vehiclevehicle)
    return native.call(0x7C0043FDFF6436BC, Vehiclevehicle)
end

function natives._0x8AA9180DE2FEDD45(Vehiclevehicle, BOOLp1)
    return native.call(0x8AA9180DE2FEDD45, Vehiclevehicle, BOOLp1)
end

function natives.SET_BOAT_DISABLE_AVOIDANCE(Vehiclevehicle, BOOLp1)
    return native.call(0x0A6A279F3AA4FD70, Vehiclevehicle, BOOLp1)
end

function natives.IS_HELI_LANDING_AREA_BLOCKED(Vehiclevehicle)
    return native.call(0x634148744F385576, Vehiclevehicle)
end

function natives._0x107A473D7A6647A9(Vehiclevehicle)
    return native.call(0x107A473D7A6647A9, Vehiclevehicle)
end

function natives.SET_HELI_TURBULENCE_SCALAR(Vehiclevehicle, floatp1)
    return native.call(0xE6F13851780394DA, Vehiclevehicle, floatp1)
end

function natives.SET_CAR_BOOT_OPEN(Vehiclevehicle)
    return native.call(0xFC40CBF7B90CA77C, Vehiclevehicle)
end

function natives.SET_VEHICLE_TYRE_BURST(Vehiclevehicle, intindex, BOOLonRim, floatp3)
    return native.call(0xEC6A202EE4960385, Vehiclevehicle, intindex, BOOLonRim, floatp3)
end

function natives.SET_VEHICLE_DOORS_SHUT(Vehiclevehicle, BOOLcloseInstantly)
    return native.call(0x781B3D62BB013EF5, Vehiclevehicle, BOOLcloseInstantly)
end

function natives.SET_VEHICLE_TYRES_CAN_BURST(Vehiclevehicle, BOOLtoggle)
    return native.call(0xEB9DC3C7D8596C46, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_VEHICLE_TYRES_CAN_BURST(Vehiclevehicle)
    return native.call(0x678B9BB8C3F58FEB, Vehiclevehicle)
end

function natives.SET_VEHICLE_WHEELS_CAN_BREAK(Vehiclevehicle, BOOLenabled)
    return native.call(0x29B18B4FD460CA8F, Vehiclevehicle, BOOLenabled)
end

function natives.SET_VEHICLE_DOOR_OPEN(Vehiclevehicle, intdoorId, BOOLloose, BOOLopenInstantly)
    return native.call(0x7C65DAC73C35C862, Vehiclevehicle, intdoorId, BOOLloose, BOOLopenInstantly)
end

function natives._0x3B458DDB57038F08(Vehiclevehicle, intdoorId, BOOLtoggle)
    return native.call(0x3B458DDB57038F08, Vehiclevehicle, intdoorId, BOOLtoggle)
end

function natives._0xA247F9EF01D8082E(Anyp0)
    return native.call(0xA247F9EF01D8082E, Anyp0)
end

function natives.REMOVE_VEHICLE_WINDOW(Vehiclevehicle, intwindowIndex)
    return native.call(0xA711568EEDB43069, Vehiclevehicle, intwindowIndex)
end

function natives.ROLL_DOWN_WINDOWS(Vehiclevehicle)
    return native.call(0x85796B0549DDE156, Vehiclevehicle)
end

function natives.ROLL_DOWN_WINDOW(Vehiclevehicle, intwindowIndex)
    return native.call(0x7AD9E6CE657D69E3, Vehiclevehicle, intwindowIndex)
end

function natives.ROLL_UP_WINDOW(Vehiclevehicle, intwindowIndex)
    return native.call(0x602E548F46E24D59, Vehiclevehicle, intwindowIndex)
end

function natives.SMASH_VEHICLE_WINDOW(Vehiclevehicle, intindex)
    return native.call(0x9E5B5E4D2CCD2259, Vehiclevehicle, intindex)
end

function natives.FIX_VEHICLE_WINDOW(Vehiclevehicle, intindex)
    return native.call(0x772282EBEB95E682, Vehiclevehicle, intindex)
end

function natives.POP_OUT_VEHICLE_WINDSCREEN(Vehiclevehicle)
    return native.call(0x6D645D59FB5F5AD3, Vehiclevehicle)
end

function natives.EJECT_JB700_ROOF(Vehiclevehicle, floatx, floaty, floatz)
    return native.call(0xE38CB9D7D39FDBCC, Vehiclevehicle, floatx, floaty, floatz)
end

function natives.SET_VEHICLE_LIGHTS(Vehiclevehicle, intstate)
    return native.call(0x34E710FF01247C5A, Vehiclevehicle, intstate)
end

function natives.SET_VEHICLE_USE_PLAYER_LIGHT_SETTINGS(Vehiclevehicle, BOOLtoggle)
    return native.call(0xC45C27EF50F36ADC, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_LIGHTS_MODE(Vehiclevehicle, intp1)
    return native.call(0x1FD09E7390A74D54, Vehiclevehicle, intp1)
end

function natives.SET_VEHICLE_ALARM(Vehiclevehicle, BOOLstate)
    return native.call(0xCDE5E70C1DDB954C, Vehiclevehicle, BOOLstate)
end

function natives.START_VEHICLE_ALARM(Vehiclevehicle)
    return native.call(0xB8FF7AB45305C345, Vehiclevehicle)
end

function natives.IS_VEHICLE_ALARM_ACTIVATED(Vehiclevehicle)
    return native.call(0x4319E335B71FFF34, Vehiclevehicle)
end

function natives.SET_VEHICLE_INTERIORLIGHT(Vehiclevehicle, BOOLtoggle)
    return native.call(0xBC2042F090AF6AD3, Vehiclevehicle, BOOLtoggle)
end

function natives._0x8821196D91FA2DE5(Vehiclevehicle, BOOLtoggle)
    return native.call(0x8821196D91FA2DE5, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_LIGHT_MULTIPLIER(Vehiclevehicle, floatmultiplier)
    return native.call(0xB385454F8791F57C, Vehiclevehicle, floatmultiplier)
end

function natives.ATTACH_VEHICLE_TO_TRAILER(Vehiclevehicle, Vehicletrailer, floatradius)
    return native.call(0x3C7D42D58F770B54, Vehiclevehicle, Vehicletrailer, floatradius)
end

function natives.ATTACH_VEHICLE_ON_TO_TRAILER(Vehiclevehicle, Vehicletrailer, floatoffsetX, floatoffsetY, floatoffsetZ, floatcoordsX, floatcoordsY, floatcoordsZ, floatrotationX, floatrotationY, floatrotationZ, floatdisableCollisions)
    return native.call(0x16B5E274BDE402F8, Vehiclevehicle, Vehicletrailer, floatoffsetX, floatoffsetY, floatoffsetZ, floatcoordsX, floatcoordsY, floatcoordsZ, floatrotationX, floatrotationY, floatrotationZ, floatdisableCollisions)
end

function natives.STABILISE_ENTITY_ATTACHED_TO_HELI(Vehiclevehicle, Entityentity, floatp2)
    return native.call(0x374706271354CB18, Vehiclevehicle, Entityentity, floatp2)
end

function natives.DETACH_VEHICLE_FROM_TRAILER(Vehiclevehicle)
    return native.call(0x90532EDF0D2BDD86, Vehiclevehicle)
end

function natives.IS_VEHICLE_ATTACHED_TO_TRAILER(Vehiclevehicle)
    return native.call(0xE7CF3C4F9F489F0C, Vehiclevehicle)
end

function natives.SET_TRAILER_INVERSE_MASS_SCALE(Vehiclevehicle, floatp1)
    return native.call(0x2A8F319B392E7B3F, Vehiclevehicle, floatp1)
end

function natives.SET_TRAILER_LEGS_RAISED(Vehiclevehicle)
    return native.call(0x95CF53B3D687F9FA, Vehiclevehicle)
end

function natives.SET_TRAILER_LEGS_LOWERED(Anyp0)
    return native.call(0x878C75C09FBDB942, Anyp0)
end

function natives.SET_VEHICLE_TYRE_FIXED(Vehiclevehicle, inttyreIndex)
    return native.call(0x6E13FC662B882D1D, Vehiclevehicle, inttyreIndex)
end

function natives.SET_VEHICLE_NUMBER_PLATE_TEXT(Vehiclevehicle, constcharplateText)
    return native.call(0x95A88F0B409CDA47, Vehiclevehicle, constcharplateText)
end

function natives.GET_VEHICLE_NUMBER_PLATE_TEXT(Vehiclevehicle)
    return native.call(0x7CE1CCB9B293020E, Vehiclevehicle)
end

function natives.GET_NUMBER_OF_VEHICLE_NUMBER_PLATES()
    return native.call(0x4C4D6B2644F458CB)
end

function natives.SET_VEHICLE_NUMBER_PLATE_TEXT_INDEX(Vehiclevehicle, intplateIndex)
    return native.call(0x9088EB5A43FFB0A1, Vehiclevehicle, intplateIndex)
end

function natives.GET_VEHICLE_NUMBER_PLATE_TEXT_INDEX(Vehiclevehicle)
    return native.call(0xF11BC2DD9A3E7195, Vehiclevehicle)
end

function natives.SET_RANDOM_TRAINS(BOOLtoggle)
    return native.call(0x80D9F74197EA47D9, BOOLtoggle)
end

function natives.CREATE_MISSION_TRAIN(intvariation, floatx, floaty, floatz, BOOLdirection, Anyp5, Anyp6)
    return native.call(0x63C6CCA8E68AE8C8, intvariation, floatx, floaty, floatz, BOOLdirection, Anyp5, Anyp6)
end

function natives.SWITCH_TRAIN_TRACK(inttrackId, BOOLstate)
    return native.call(0xFD813BB7DB977F20, inttrackId, BOOLstate)
end

function natives.SET_TRAIN_TRACK_SPAWN_FREQUENCY(inttrackIndex, intfrequency)
    return native.call(0x21973BBF8D17EDFA, inttrackIndex, intfrequency)
end

function natives._0x2310A8F9421EBF43(Anyp0)
    return native.call(0x2310A8F9421EBF43, Anyp0)
end

function natives.DELETE_ALL_TRAINS()
    return native.call(0x736A718577F39C7D)
end

function natives.SET_TRAIN_SPEED(Vehicletrain, floatspeed)
    return native.call(0xAA0BC91BE0B796E3, Vehicletrain, floatspeed)
end

function natives.SET_TRAIN_CRUISE_SPEED(Vehicletrain, floatspeed)
    return native.call(0x16469284DB8C62B5, Vehicletrain, floatspeed)
end

function natives.SET_RANDOM_BOATS(BOOLtoggle)
    return native.call(0x84436EC293B1415F, BOOLtoggle)
end

function natives.SET_RANDOM_BOATS_IN_MP(BOOLtoggle)
    return native.call(0xDA5E12F728DB30CA, BOOLtoggle)
end

function natives.SET_GARBAGE_TRUCKS(BOOLtoggle)
    return native.call(0x2AFD795EEAC8D30D, BOOLtoggle)
end

function natives.DOES_VEHICLE_HAVE_STUCK_VEHICLE_CHECK(Vehiclevehicle)
    return native.call(0x57E4C39DE5EE8470, Vehiclevehicle)
end

function natives.GET_VEHICLE_RECORDING_ID(intrecording, constcharscript)
    return native.call(0x21543C612379DB3C, intrecording, constcharscript)
end

function natives.REQUEST_VEHICLE_RECORDING(intrecording, constcharscript)
    return native.call(0xAF514CABE74CBF15, intrecording, constcharscript)
end

function natives.HAS_VEHICLE_RECORDING_BEEN_LOADED(intrecording, constcharscript)
    return native.call(0x300D614A4C785FC4, intrecording, constcharscript)
end

function natives.REMOVE_VEHICLE_RECORDING(intrecording, constcharscript)
    return native.call(0xF1160ACCF98A3FC8, intrecording, constcharscript)
end

function natives.GET_POSITION_OF_VEHICLE_RECORDING_ID_AT_TIME(intid, floattime)
    return native.call(0x92523B76657A517D, intid, floattime)
end

function natives.GET_POSITION_OF_VEHICLE_RECORDING_AT_TIME(intrecording, floattime, constcharscript)
    return native.call(0xD242728AA6F0FBA2, intrecording, floattime, constcharscript)
end

function natives.GET_ROTATION_OF_VEHICLE_RECORDING_ID_AT_TIME(intid, floattime)
    return native.call(0xF0F2103EFAF8CBA7, intid, floattime)
end

function natives.GET_ROTATION_OF_VEHICLE_RECORDING_AT_TIME(intrecording, floattime, constcharscript)
    return native.call(0x2058206FBE79A8AD, intrecording, floattime, constcharscript)
end

function natives.GET_TOTAL_DURATION_OF_VEHICLE_RECORDING_ID(intid)
    return native.call(0x102D125411A7B6E6, intid)
end

function natives.GET_TOTAL_DURATION_OF_VEHICLE_RECORDING(intrecording, constcharscript)
    return native.call(0x0E48D1C262390950, intrecording, constcharscript)
end

function natives.GET_POSITION_IN_RECORDING(Vehiclevehicle)
    return native.call(0x2DACD605FC681475, Vehiclevehicle)
end

function natives.GET_TIME_POSITION_IN_RECORDING(Vehiclevehicle)
    return native.call(0x5746F3A7AB7FE544, Vehiclevehicle)
end

function natives.START_PLAYBACK_RECORDED_VEHICLE(Vehiclevehicle, intrecording, constcharscript, BOOLp3)
    return native.call(0x3F878F92B3A7A071, Vehiclevehicle, intrecording, constcharscript, BOOLp3)
end

function natives.START_PLAYBACK_RECORDED_VEHICLE_WITH_FLAGS(Vehiclevehicle, intrecording, constcharscript, intflags, inttime, intdrivingStyle)
    return native.call(0x7D80FD645D4DA346, Vehiclevehicle, intrecording, constcharscript, intflags, inttime, intdrivingStyle)
end

function natives.FORCE_PLAYBACK_RECORDED_VEHICLE_UPDATE(Vehiclevehicle, BOOLp1)
    return native.call(0x1F2E4E06DEA8992B, Vehiclevehicle, BOOLp1)
end

function natives.STOP_PLAYBACK_RECORDED_VEHICLE(Vehiclevehicle)
    return native.call(0x54833611C17ABDEA, Vehiclevehicle)
end

function natives.PAUSE_PLAYBACK_RECORDED_VEHICLE(Vehiclevehicle)
    return native.call(0x632A689BF42301B1, Vehiclevehicle)
end

function natives.UNPAUSE_PLAYBACK_RECORDED_VEHICLE(Vehiclevehicle)
    return native.call(0x8879EE09268305D5, Vehiclevehicle)
end

function natives.IS_PLAYBACK_GOING_ON_FOR_VEHICLE(Vehiclevehicle)
    return native.call(0x1C8A4C2C19E68EEC, Vehiclevehicle)
end

function natives.IS_PLAYBACK_USING_AI_GOING_ON_FOR_VEHICLE(Vehiclevehicle)
    return native.call(0xAEA8FD591FAD4106, Vehiclevehicle)
end

function natives.GET_CURRENT_PLAYBACK_FOR_VEHICLE(Vehiclevehicle)
    return native.call(0x42BC05C27A946054, Vehiclevehicle)
end

function natives.SKIP_TO_END_AND_STOP_PLAYBACK_RECORDED_VEHICLE(Vehiclevehicle)
    return native.call(0xAB8E2EDA0C0A5883, Vehiclevehicle)
end

function natives.SET_PLAYBACK_SPEED(Vehiclevehicle, floatspeed)
    return native.call(0x6683AB880E427778, Vehiclevehicle, floatspeed)
end

function natives.START_PLAYBACK_RECORDED_VEHICLE_USING_AI(Vehiclevehicle, intrecording, constcharscript, floatspeed, intdrivingStyle)
    return native.call(0x29DE5FA52D00428C, Vehiclevehicle, intrecording, constcharscript, floatspeed, intdrivingStyle)
end

function natives.SKIP_TIME_IN_PLAYBACK_RECORDED_VEHICLE(Vehiclevehicle, floattime)
    return native.call(0x9438F7AD68771A20, Vehiclevehicle, floattime)
end

function natives.SET_PLAYBACK_TO_USE_AI(Vehiclevehicle, intdrivingStyle)
    return native.call(0xA549C3B37EA28131, Vehiclevehicle, intdrivingStyle)
end

function natives.SET_PLAYBACK_TO_USE_AI_TRY_TO_REVERT_BACK_LATER(Vehiclevehicle, inttime, intdrivingStyle, BOOLp3)
    return native.call(0x6E63860BBB190730, Vehiclevehicle, inttime, intdrivingStyle, BOOLp3)
end

function natives._0x5845066D8A1EA7F7(Vehiclevehicle, floatx, floaty, floatz, Anyp4)
    return native.call(0x5845066D8A1EA7F7, Vehiclevehicle, floatx, floaty, floatz, Anyp4)
end

function natives._0x796A877E459B99EA(Anyp0, floatp1, floatp2, floatp3)
    return native.call(0x796A877E459B99EA, Anyp0, floatp1, floatp2, floatp3)
end

function natives._0xFAF2A78061FD9EF4(Anyp0, floatp1, floatp2, floatp3)
    return native.call(0xFAF2A78061FD9EF4, Anyp0, floatp1, floatp2, floatp3)
end

function natives._0x063AE2B2CC273588(Vehiclevehicle, BOOLp1)
    return native.call(0x063AE2B2CC273588, Vehiclevehicle, BOOLp1)
end

function natives.EXPLODE_VEHICLE_IN_CUTSCENE(Vehiclevehicle, BOOLp1)
    return native.call(0x786A4EB67B01BF0B, Vehiclevehicle, BOOLp1)
end

function natives.ADD_VEHICLE_STUCK_CHECK_WITH_WARP(Anyp0, floatp1, Anyp2, BOOLp3, BOOLp4, BOOLp5, Anyp6)
    return native.call(0x2FA9923062DD396C, Anyp0, floatp1, Anyp2, BOOLp3, BOOLp4, BOOLp5, Anyp6)
end

function natives.SET_VEHICLE_MODEL_IS_SUPPRESSED(Hashmodel, BOOLsuppressed)
    return native.call(0x0FC2D89AC25A5814, Hashmodel, BOOLsuppressed)
end

function natives.GET_RANDOM_VEHICLE_IN_SPHERE(floatx, floaty, floatz, floatradius, HashmodelHash, intflags)
    return native.call(0x386F6CE5BAF6091C, floatx, floaty, floatz, floatradius, HashmodelHash, intflags)
end

function natives.GET_RANDOM_VEHICLE_FRONT_BUMPER_IN_SPHERE(floatp0, floatp1, floatp2, floatp3, intp4, intp5, intp6)
    return native.call(0xC5574E0AEB86BA68, floatp0, floatp1, floatp2, floatp3, intp4, intp5, intp6)
end

function natives.GET_RANDOM_VEHICLE_BACK_BUMPER_IN_SPHERE(floatp0, floatp1, floatp2, floatp3, intp4, intp5, intp6)
    return native.call(0xB50807EABE20A8DC, floatp0, floatp1, floatp2, floatp3, intp4, intp5, intp6)
end

function natives.GET_CLOSEST_VEHICLE(floatx, floaty, floatz, floatradius, HashmodelHash, intflags)
    return native.call(0xF73EB622C4F1689B, floatx, floaty, floatz, floatradius, HashmodelHash, intflags)
end

function natives.GET_TRAIN_CARRIAGE(Vehicletrain, inttrailerNumber)
    return native.call(0x08AAFD0814722BC3, Vehicletrain, inttrailerNumber)
end

function natives.IS_MISSION_TRAIN(Vehiclevehicle)
    return native.call(0xAD464F2E18836BFC, Vehiclevehicle)
end

function natives.DELETE_MISSION_TRAIN(Vehicletrain)
    return native.call(0x5B76B14AE875C795, Vehicletrain)
end

function natives.SET_MISSION_TRAIN_AS_NO_LONGER_NEEDED(Vehicletrain, BOOLp1)
    return native.call(0xBBE7648349B49BE8, Vehicletrain, BOOLp1)
end

function natives.SET_MISSION_TRAIN_COORDS(Vehicletrain, floatx, floaty, floatz)
    return native.call(0x591CA673AA6AB736, Vehicletrain, floatx, floaty, floatz)
end

function natives.IS_THIS_MODEL_A_BOAT(Hashmodel)
    return native.call(0x45A9187928F4B9E3, Hashmodel)
end

function natives.IS_THIS_MODEL_A_JETSKI(Hashmodel)
    return native.call(0x9537097412CF75FE, Hashmodel)
end

function natives.IS_THIS_MODEL_A_PLANE(Hashmodel)
    return native.call(0xA0948AB42D7BA0DE, Hashmodel)
end

function natives.IS_THIS_MODEL_A_HELI(Hashmodel)
    return native.call(0xDCE4334788AF94EA, Hashmodel)
end

function natives.IS_THIS_MODEL_A_CAR(Hashmodel)
    return native.call(0x7F6DB52EEFC96DF8, Hashmodel)
end

function natives.IS_THIS_MODEL_A_TRAIN(Hashmodel)
    return native.call(0xAB935175B22E822B, Hashmodel)
end

function natives.IS_THIS_MODEL_A_BIKE(Hashmodel)
    return native.call(0xB50C0B0CEDC6CE84, Hashmodel)
end

function natives.IS_THIS_MODEL_A_BICYCLE(Hashmodel)
    return native.call(0xBF94DD42F63BDED2, Hashmodel)
end

function natives.IS_THIS_MODEL_A_QUADBIKE(Hashmodel)
    return native.call(0x39DAC362EE65FA28, Hashmodel)
end

function natives.IS_THIS_MODEL_AN_AMPHIBIOUS_CAR(Hashmodel)
    return native.call(0x633F6F44A537EBB6, Hashmodel)
end

function natives.IS_THIS_MODEL_AN_AMPHIBIOUS_QUADBIKE(Hashmodel)
    return native.call(0xA1A9FC1C76A6730D, Hashmodel)
end

function natives.SET_HELI_BLADES_FULL_SPEED(Vehiclevehicle)
    return native.call(0xA178472EBB8AE60D, Vehiclevehicle)
end

function natives.SET_HELI_BLADES_SPEED(Vehiclevehicle, floatspeed)
    return native.call(0xFD280B4D7F3ABC4D, Vehiclevehicle, floatspeed)
end

function natives._0x99CAD8E7AFDB60FA(Vehiclevehicle, floatp1, floatp2)
    return native.call(0x99CAD8E7AFDB60FA, Vehiclevehicle, floatp1, floatp2)
end

function natives.SET_VEHICLE_CAN_BE_TARGETTED(Vehiclevehicle, BOOLstate)
    return native.call(0x3750146A28097A82, Vehiclevehicle, BOOLstate)
end

function natives._0xDBC631F109350B8C(Vehiclevehicle, BOOLp1)
    return native.call(0xDBC631F109350B8C, Vehiclevehicle, BOOLp1)
end

function natives.SET_VEHICLE_CAN_BE_VISIBLY_DAMAGED(Vehiclevehicle, BOOLstate)
    return native.call(0x4C7028F78FFD3681, Vehiclevehicle, BOOLstate)
end

function natives.SET_VEHICLE_HAS_UNBREAKABLE_LIGHTS(Vehiclevehicle, BOOLp1)
    return native.call(0x1AA8A837D2169D94, Vehiclevehicle, BOOLp1)
end

function natives.SET_VEHICLE_RESPECTS_LOCKS_WHEN_HAS_DRIVER(Vehiclevehicle, BOOLp1)
    return native.call(0x2311DD7159F00582, Vehiclevehicle, BOOLp1)
end

function natives._0x065D03A9D6B2C6B5(Anyp0, Anyp1)
    return native.call(0x065D03A9D6B2C6B5, Anyp0, Anyp1)
end

function natives.GET_VEHICLE_DIRT_LEVEL(Vehiclevehicle)
    return native.call(0x8F17BC8BA08DA62B, Vehiclevehicle)
end

function natives.SET_VEHICLE_DIRT_LEVEL(Vehiclevehicle, floatdirtLevel)
    return native.call(0x79D3B596FE44EE8B, Vehiclevehicle, floatdirtLevel)
end

function natives.GET_DOES_VEHICLE_HAVE_DAMAGE_DECALS(Vehiclevehicle)
    return native.call(0xBCDC5017D3CE1E9E, Vehiclevehicle)
end

function natives.IS_VEHICLE_DOOR_FULLY_OPEN(Vehiclevehicle, intdoorId)
    return native.call(0x3E933CFF7B111C22, Vehiclevehicle, intdoorId)
end

function natives.SET_VEHICLE_ENGINE_ON(Vehiclevehicle, BOOLvalue, BOOLinstantly, BOOLdisableAutoStart)
    return native.call(0x2497C4717C8B881E, Vehiclevehicle, BOOLvalue, BOOLinstantly, BOOLdisableAutoStart)
end

function natives.SET_VEHICLE_UNDRIVEABLE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x8ABA6AF54B942B95, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_PROVIDES_COVER(Vehiclevehicle, BOOLtoggle)
    return native.call(0x5AFEEDD9BB2899D7, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_DOOR_CONTROL(Vehiclevehicle, intdoorId, intspeed, floatangle)
    return native.call(0xF2BFA0430F0A0FCB, Vehiclevehicle, intdoorId, intspeed, floatangle)
end

function natives.SET_VEHICLE_DOOR_LATCHED(Vehiclevehicle, intdoorId, BOOLp2, BOOLp3, BOOLp4)
    return native.call(0xA5A9653A8D2CAF48, Vehiclevehicle, intdoorId, BOOLp2, BOOLp3, BOOLp4)
end

function natives.GET_VEHICLE_DOOR_ANGLE_RATIO(Vehiclevehicle, intdoorId)
    return native.call(0xFE3F9C29F7B32BD5, Vehiclevehicle, intdoorId)
end

function natives.GET_PED_USING_VEHICLE_DOOR(Vehiclevehicle, intdoord)
    return native.call(0x218297BF0CFD853B, Vehiclevehicle, intdoord)
end

function natives.SET_VEHICLE_DOOR_SHUT(Vehiclevehicle, intdoorId, BOOLcloseInstantly)
    return native.call(0x93D9BD300D7789E5, Vehiclevehicle, intdoorId, BOOLcloseInstantly)
end

function natives.SET_VEHICLE_DOOR_BROKEN(Vehiclevehicle, intdoorId, BOOLdeleteDoor)
    return native.call(0xD4D4F6A4AB575A33, Vehiclevehicle, intdoorId, BOOLdeleteDoor)
end

function natives.SET_VEHICLE_CAN_BREAK(Vehiclevehicle, BOOLtoggle)
    return native.call(0x59BF8C3D52C92F66, Vehiclevehicle, BOOLtoggle)
end

function natives.DOES_VEHICLE_HAVE_ROOF(Vehiclevehicle)
    return native.call(0x8AC862B0B32C5B80, Vehiclevehicle)
end

function natives._0xC4B3347BD68BD609(Anyp0)
    return native.call(0xC4B3347BD68BD609, Anyp0)
end

function natives._0xD3301660A57C9272(Anyp0)
    return native.call(0xD3301660A57C9272, Anyp0)
end

function natives._0xB9562064627FF9DB(Anyp0, Anyp1)
    return native.call(0xB9562064627FF9DB, Anyp0, Anyp1)
end

function natives.IS_BIG_VEHICLE(Vehiclevehicle)
    return native.call(0x9F243D3919F442FE, Vehiclevehicle)
end

function natives.GET_NUMBER_OF_VEHICLE_COLOURS(Vehiclevehicle)
    return native.call(0x3B963160CD65D41E, Vehiclevehicle)
end

function natives.SET_VEHICLE_COLOUR_COMBINATION(Vehiclevehicle, intcolorCombination)
    return native.call(0x33E8CD3322E2FE31, Vehiclevehicle, intcolorCombination)
end

function natives.GET_VEHICLE_COLOUR_COMBINATION(Vehiclevehicle)
    return native.call(0x6A842D197F845D56, Vehiclevehicle)
end

function natives.SET_VEHICLE_XENON_LIGHTS_COLOR(Vehiclevehicle, intcolorIndex)
    return native.call(0xE41033B25D003A07, Vehiclevehicle, intcolorIndex)
end

function natives.GET_VEHICLE_XENON_LIGHTS_COLOR(Vehiclevehicle)
    return native.call(0x3DFF319A831E0CDB, Vehiclevehicle)
end

function natives.SET_VEHICLE_IS_CONSIDERED_BY_PLAYER(Vehiclevehicle, BOOLtoggle)
    return native.call(0x31B927BBC44156CD, Vehiclevehicle, BOOLtoggle)
end

function natives._0xBE5C1255A1830FF5(Vehiclevehicle, BOOLtoggle)
    return native.call(0xBE5C1255A1830FF5, Vehiclevehicle, BOOLtoggle)
end

function natives._0x9BECD4B9FEF3F8A6(Vehiclevehicle, BOOLp1)
    return native.call(0x9BECD4B9FEF3F8A6, Vehiclevehicle, BOOLp1)
end

function natives._0x88BC673CA9E0AE99(Vehiclevehicle, BOOLp1)
    return native.call(0x88BC673CA9E0AE99, Vehiclevehicle, BOOLp1)
end

function natives._0xE851E480B814D4BA(Vehiclevehicle, BOOLp1)
    return native.call(0xE851E480B814D4BA, Vehiclevehicle, BOOLp1)
end

function natives.GET_RANDOM_VEHICLE_MODEL_IN_MEMORY(BOOLp0, HashmodelHash, intsuccessIndicator)
    return native.call(0x055BF0AC0C34F4FD, BOOLp0, HashmodelHash, intsuccessIndicator)
end

function natives.GET_VEHICLE_DOOR_LOCK_STATUS(Vehiclevehicle)
    return native.call(0x25BC98A59C2EA962, Vehiclevehicle)
end

function natives.GET_VEHICLE_DOOR_DESTROY_TYPE(Vehiclevehicle, intdoorId)
    return native.call(0xCA4AC3EAAE46EC7B, Vehiclevehicle, intdoorId)
end

function natives.IS_VEHICLE_DOOR_DAMAGED(Vehicleveh, intdoorID)
    return native.call(0xB8E181E559464527, Vehicleveh, intdoorID)
end

function natives.SET_VEHICLE_DOOR_CAN_BREAK(Vehiclevehicle, intdoorId, BOOLisBreakable)
    return native.call(0x2FA133A4A9D37ED8, Vehiclevehicle, intdoorId, BOOLisBreakable)
end

function natives.IS_VEHICLE_BUMPER_BOUNCING(Vehiclevehicle, BOOLfrontBumper)
    return native.call(0x27B926779DEB502D, Vehiclevehicle, BOOLfrontBumper)
end

function natives.IS_VEHICLE_BUMPER_BROKEN_OFF(Vehiclevehicle, BOOLfront)
    return native.call(0x468056A6BB6F3846, Vehiclevehicle, BOOLfront)
end

function natives.IS_COP_VEHICLE_IN_AREA_3D(floatx1, floatx2, floaty1, floaty2, floatz1, floatz2)
    return native.call(0x7EEF65D5F153E26A, floatx1, floatx2, floaty1, floaty2, floatz1, floatz2)
end

function natives.IS_VEHICLE_ON_ALL_WHEELS(Vehiclevehicle)
    return native.call(0xB104CD1BABF302E2, Vehiclevehicle)
end

function natives.GET_VEHICLE_MODEL_VALUE(HashvehicleModel)
    return native.call(0x5873C14A52D74236, HashvehicleModel)
end

function natives.GET_VEHICLE_LAYOUT_HASH(Vehiclevehicle)
    return native.call(0x28D37D4F71AC5C58, Vehiclevehicle)
end

function natives._0xA01BC64DD4BFBBAC(Vehiclevehicle, intp1)
    return native.call(0xA01BC64DD4BFBBAC, Vehiclevehicle, intp1)
end

function natives.SET_RENDER_TRAIN_AS_DERAILED(Vehicletrain, BOOLtoggle)
    return native.call(0x317B11A312DF5534, Vehicletrain, BOOLtoggle)
end

function natives.SET_VEHICLE_EXTRA_COLOURS(Vehiclevehicle, intpearlescentColor, intwheelColor)
    return native.call(0x2036F561ADD12E33, Vehiclevehicle, intpearlescentColor, intwheelColor)
end

function natives.GET_VEHICLE_EXTRA_COLOURS(Vehiclevehicle, intpearlescentColor, intwheelColor)
    return native.call(0x3BC4245933A166F7, Vehiclevehicle, intpearlescentColor, intwheelColor)
end

function natives.SET_VEHICLE_INTERIOR_COLOR(Vehiclevehicle, intcolor)
    return native.call(0xF40DD601A65F7F19, Vehiclevehicle, intcolor)
end

function natives.GET_VEHICLE_INTERIOR_COLOR(Vehiclevehicle, intcolor)
    return native.call(0x7D1464D472D32136, Vehiclevehicle, intcolor)
end

function natives.SET_VEHICLE_DASHBOARD_COLOR(Vehiclevehicle, intcolor)
    return native.call(0x6089CDF6A57F326C, Vehiclevehicle, intcolor)
end

function natives.GET_VEHICLE_DASHBOARD_COLOR(Vehiclevehicle, intcolor)
    return native.call(0xB7635E80A5C31BFF, Vehiclevehicle, intcolor)
end

function natives.STOP_ALL_GARAGE_ACTIVITY()
    return native.call(0x0F87E938BDF29D66)
end

function natives.SET_VEHICLE_FIXED(Vehiclevehicle)
    return native.call(0x115722B1B9C14C1C, Vehiclevehicle)
end

function natives.SET_VEHICLE_DEFORMATION_FIXED(Vehiclevehicle)
    return native.call(0x953DA1E1B12C0491, Vehiclevehicle)
end

function natives.SET_VEHICLE_CAN_ENGINE_MISSFIRE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x206BC5DC9D1AC70A, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_CAN_LEAK_OIL(Vehiclevehicle, BOOLtoggle)
    return native.call(0x51BB2D88D31A914B, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_CAN_LEAK_PETROL(Vehiclevehicle, BOOLtoggle)
    return native.call(0x192547247864DFDD, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_DISABLE_VEHICLE_PETROL_TANK_FIRES(Vehiclevehicle, BOOLtoggle)
    return native.call(0x465BF26AB9684352, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_DISABLE_VEHICLE_PETROL_TANK_DAMAGE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x37C8252A7C92D017, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_DISABLE_VEHICLE_ENGINE_FIRES(Vehiclevehicle, BOOLtoggle)
    return native.call(0x91A0BD635321F145, Vehiclevehicle, BOOLtoggle)
end

function natives._0xC50CE861B55EAB8B(Vehiclevehicle, BOOLp1)
    return native.call(0xC50CE861B55EAB8B, Vehiclevehicle, BOOLp1)
end

function natives._0x6EBFB22D646FFC18(Vehiclevehicle, BOOLp1)
    return native.call(0x6EBFB22D646FFC18, Vehiclevehicle, BOOLp1)
end

function natives.SET_DISABLE_PRETEND_OCCUPANTS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x25367DE49D64CF16, Vehiclevehicle, BOOLtoggle)
end

function natives.REMOVE_VEHICLES_FROM_GENERATORS_IN_AREA(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Anyunk)
    return native.call(0x46A1E1A299EC4BBA, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Anyunk)
end

function natives.SET_VEHICLE_STEER_BIAS(Vehiclevehicle, floatvalue)
    return native.call(0x42A8EC77D5150CBE, Vehiclevehicle, floatvalue)
end

function natives.IS_VEHICLE_EXTRA_TURNED_ON(Vehiclevehicle, intextraId)
    return native.call(0xD2E6822DBFD6C8BD, Vehiclevehicle, intextraId)
end

function natives.SET_VEHICLE_EXTRA(Vehiclevehicle, intextraId, BOOLdisable)
    return native.call(0x7EE3A3C5E4A40CC9, Vehiclevehicle, intextraId, BOOLdisable)
end

function natives.DOES_EXTRA_EXIST(Vehiclevehicle, intextraId)
    return native.call(0x1262D55792428154, Vehiclevehicle, intextraId)
end

function natives.DOES_VEHICLE_TYRE_EXIST(Vehiclevehicle, inttyreIndex)
    return native.call(0x534E36D4DB9ECC5D, Vehiclevehicle, inttyreIndex)
end

function natives.SET_CONVERTIBLE_ROOF(Vehiclevehicle, BOOLp1)
    return native.call(0xF39C4F538B5124C2, Vehiclevehicle, BOOLp1)
end

function natives.LOWER_CONVERTIBLE_ROOF(Vehiclevehicle, BOOLinstantlyLower)
    return native.call(0xDED51F703D0FA83D, Vehiclevehicle, BOOLinstantlyLower)
end

function natives.RAISE_CONVERTIBLE_ROOF(Vehiclevehicle, BOOLinstantlyRaise)
    return native.call(0x8F5FB35D7E88FC70, Vehiclevehicle, BOOLinstantlyRaise)
end

function natives.GET_CONVERTIBLE_ROOF_STATE(Vehiclevehicle)
    return native.call(0xF8C397922FC03F41, Vehiclevehicle)
end

function natives.IS_VEHICLE_A_CONVERTIBLE(Vehiclevehicle, BOOLp1)
    return native.call(0x52F357A30698BCCE, Vehiclevehicle, BOOLp1)
end

function natives.TRANSFORM_TO_SUBMARINE(Vehiclevehicle, BOOLnoAnimation)
    return native.call(0xBE4C854FFDB6EEBE, Vehiclevehicle, BOOLnoAnimation)
end

function natives.TRANSFORM_TO_CAR(Vehiclevehicle, BOOLnoAnimation)
    return native.call(0x2A69FFD1B42BFF9E, Vehiclevehicle, BOOLnoAnimation)
end

function natives.IS_VEHICLE_IN_SUBMARINE_MODE(Vehiclevehicle)
    return native.call(0xA77DC70BD689A1E5, Vehiclevehicle)
end

function natives.IS_VEHICLE_STOPPED_AT_TRAFFIC_LIGHTS(Vehiclevehicle)
    return native.call(0x2959F696AE390A99, Vehiclevehicle)
end

function natives.SET_VEHICLE_DAMAGE(Vehiclevehicle, floatxOffset, floatyOffset, floatzOffset, floatdamage, floatradius, BOOLfocusOnModel)
    return native.call(0xA1DD317EA8FD4F29, Vehiclevehicle, floatxOffset, floatyOffset, floatzOffset, floatdamage, floatradius, BOOLfocusOnModel)
end

function natives._0x35BB21DE06784373(Anyp0, Anyp1)
    return native.call(0x35BB21DE06784373, Anyp0, Anyp1)
end

function natives.GET_VEHICLE_ENGINE_HEALTH(Vehiclevehicle)
    return native.call(0xC45D23BAF168AAB8, Vehiclevehicle)
end

function natives.SET_VEHICLE_ENGINE_HEALTH(Vehiclevehicle, floathealth)
    return native.call(0x45F6D8EEF34ABEF1, Vehiclevehicle, floathealth)
end

function natives.SET_PLANE_ENGINE_HEALTH(Vehiclevehicle, floathealth)
    return native.call(0x2A86A0475B6A1434, Vehiclevehicle, floathealth)
end

function natives.GET_VEHICLE_PETROL_TANK_HEALTH(Vehiclevehicle)
    return native.call(0x7D5DABE888D2D074, Vehiclevehicle)
end

function natives.SET_VEHICLE_PETROL_TANK_HEALTH(Vehiclevehicle, floathealth)
    return native.call(0x70DB57649FA8D0D8, Vehiclevehicle, floathealth)
end

function natives.IS_VEHICLE_STUCK_TIMER_UP(Vehiclevehicle, intp1, intp2)
    return native.call(0x679BE1DAF71DA874, Vehiclevehicle, intp1, intp2)
end

function natives.RESET_VEHICLE_STUCK_TIMER(Vehiclevehicle, intnullAttributes)
    return native.call(0xD7591B0065AFAA7A, Vehiclevehicle, intnullAttributes)
end

function natives.IS_VEHICLE_DRIVEABLE(Vehiclevehicle, BOOLisOnFireCheck)
    return native.call(0x4C241E39B23DF959, Vehiclevehicle, BOOLisOnFireCheck)
end

function natives.SET_VEHICLE_HAS_BEEN_OWNED_BY_PLAYER(Vehiclevehicle, BOOLowned)
    return native.call(0x2B5F9D2AF1F1722D, Vehiclevehicle, BOOLowned)
end

function natives.SET_VEHICLE_NEEDS_TO_BE_HOTWIRED(Vehiclevehicle, BOOLtoggle)
    return native.call(0xFBA550EA44404EE6, Vehiclevehicle, BOOLtoggle)
end

function natives._0x9F3F689B814F2599(Vehiclevehicle, BOOLp1)
    return native.call(0x9F3F689B814F2599, Vehiclevehicle, BOOLp1)
end

function natives.SET_POLICE_FOCUS_WILL_TRACK_VEHICLE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x4E74E62E0A97E901, Vehiclevehicle, BOOLtoggle)
end

function natives.START_VEHICLE_HORN(Vehiclevehicle, intduration, Hashmode, BOOLforever)
    return native.call(0x9C8C6504B5B63D2C, Vehiclevehicle, intduration, Hashmode, BOOLforever)
end

function natives.SET_VEHICLE_SILENT(Vehiclevehicle, BOOLtoggle)
    return native.call(0x9D44FCCE98450843, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_HAS_STRONG_AXLES(Vehiclevehicle, BOOLtoggle)
    return native.call(0x92F0CF722BC4202F, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_DISPLAY_NAME_FROM_VEHICLE_MODEL(HashmodelHash)
    return native.call(0xB215AAC32D25D019, HashmodelHash)
end

function natives.GET_MAKE_NAME_FROM_VEHICLE_MODEL(HashmodelHash)
    return native.call(0xF7AF4F159FF99F97, HashmodelHash)
end

function natives.GET_VEHICLE_DEFORMATION_AT_POS(Vehiclevehicle, floatoffsetX, floatoffsetY, floatoffsetZ)
    return native.call(0x4EC6CFBC7B2E9536, Vehiclevehicle, floatoffsetX, floatoffsetY, floatoffsetZ)
end

function natives.SET_VEHICLE_LIVERY(Vehiclevehicle, intlivery)
    return native.call(0x60BF608F1B8CD1B6, Vehiclevehicle, intlivery)
end

function natives.GET_VEHICLE_LIVERY(Vehiclevehicle)
    return native.call(0x2BB9230590DA5E8A, Vehiclevehicle)
end

function natives.GET_VEHICLE_LIVERY_COUNT(Vehiclevehicle)
    return native.call(0x87B63E25A529D526, Vehiclevehicle)
end

function natives.SET_VEHICLE_ROOF_LIVERY(Vehiclevehicle, intlivery)
    return native.call(0xA6D3A8750DC73270, Vehiclevehicle, intlivery)
end

function natives.GET_VEHICLE_ROOF_LIVERY(Vehiclevehicle)
    return native.call(0x60190048C0764A26, Vehiclevehicle)
end

function natives.GET_VEHICLE_ROOF_LIVERY_COUNT(Vehiclevehicle)
    return native.call(0x5ECB40269053C0D4, Vehiclevehicle)
end

function natives.IS_VEHICLE_WINDOW_INTACT(Vehiclevehicle, intwindowIndex)
    return native.call(0x46E571A0E20D01F1, Vehiclevehicle, intwindowIndex)
end

function natives.ARE_ALL_VEHICLE_WINDOWS_INTACT(Vehiclevehicle)
    return native.call(0x11D862A3E977A9EF, Vehiclevehicle)
end

function natives.ARE_ANY_VEHICLE_SEATS_FREE(Vehiclevehicle)
    return native.call(0x2D34FC3BC4ADB780, Vehiclevehicle)
end

function natives.RESET_VEHICLE_WHEELS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x21D2E5662C1F6FED, Vehiclevehicle, BOOLtoggle)
end

function natives.IS_HELI_PART_BROKEN(Vehiclevehicle, BOOLp1, BOOLp2, BOOLp3)
    return native.call(0xBC74B4BE25EB6C8A, Vehiclevehicle, BOOLp1, BOOLp2, BOOLp3)
end

function natives.GET_HELI_MAIN_ROTOR_HEALTH(Vehiclevehicle)
    return native.call(0xE4CB7541F413D2C5, Vehiclevehicle)
end

function natives.GET_HELI_TAIL_ROTOR_HEALTH(Vehiclevehicle)
    return native.call(0xAE8CE82A4219AC8C, Vehiclevehicle)
end

function natives.GET_HELI_TAIL_BOOM_HEALTH(Vehiclevehicle)
    return native.call(0xAC51915D27E4A5F7, Vehiclevehicle)
end

function natives.SET_HELI_MAIN_ROTOR_HEALTH(Vehiclevehicle, floathealth)
    return native.call(0x4056EA1105F5ABD7, Vehiclevehicle, floathealth)
end

function natives.SET_HELI_TAIL_ROTOR_HEALTH(Vehiclevehicle, floathealth)
    return native.call(0xFE205F38AAA58E5B, Vehiclevehicle, floathealth)
end

function natives.SET_HELI_TAIL_EXPLODE_THROW_DASHBOARD(Vehiclevehicle, BOOLp1)
    return native.call(0x3EC8BF18AA453FE9, Vehiclevehicle, BOOLp1)
end

function natives.SET_VEHICLE_NAME_DEBUG(Vehiclevehicle, constcharname)
    return native.call(0xBFDF984E2C22B94F, Vehiclevehicle, constcharname)
end

function natives.SET_VEHICLE_EXPLODES_ON_HIGH_EXPLOSION_DAMAGE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x71B0892EC081D60A, Vehiclevehicle, BOOLtoggle)
end

function natives._0xD565F438137F0E10(Anyp0, Anyp1)
    return native.call(0xD565F438137F0E10, Anyp0, Anyp1)
end

function natives._0x3441CAD2F2231923(Vehiclevehicle, BOOLp1)
    return native.call(0x3441CAD2F2231923, Vehiclevehicle, BOOLp1)
end

function natives.SET_VEHICLE_DISABLE_TOWING(Vehiclevehicle, BOOLtoggle)
    return native.call(0x2B6747FAA9DB9D6B, Vehiclevehicle, BOOLtoggle)
end

function natives.DOES_VEHICLE_HAVE_LANDING_GEAR(Vehiclevehicle)
    return native.call(0xE43701C36CAFF1A4, Vehiclevehicle)
end

function natives.CONTROL_LANDING_GEAR(Vehiclevehicle, intstate)
    return native.call(0xCFC8BE9A5E1FE575, Vehiclevehicle, intstate)
end

function natives.GET_LANDING_GEAR_STATE(Vehiclevehicle)
    return native.call(0x9B0F3DCA3DB0F4CD, Vehiclevehicle)
end

function natives.IS_ANY_VEHICLE_NEAR_POINT(floatx, floaty, floatz, floatradius)
    return native.call(0x61E1DD6125A3EEE6, floatx, floaty, floatz, floatradius)
end

function natives.REQUEST_VEHICLE_HIGH_DETAIL_MODEL(Vehiclevehicle)
    return native.call(0xA6E9FDCB2C76785E, Vehiclevehicle)
end

function natives.REMOVE_VEHICLE_HIGH_DETAIL_MODEL(Vehiclevehicle)
    return native.call(0x00689CDE5F7C6787, Vehiclevehicle)
end

function natives.IS_VEHICLE_HIGH_DETAIL(Vehiclevehicle)
    return native.call(0x1F25887F3C104278, Vehiclevehicle)
end

function natives.REQUEST_VEHICLE_ASSET(HashvehicleHash, intvehicleAsset)
    return native.call(0x81A15811460FAB3A, HashvehicleHash, intvehicleAsset)
end

function natives.HAS_VEHICLE_ASSET_LOADED(intvehicleAsset)
    return native.call(0x1BBE0523B8DB9A21, intvehicleAsset)
end

function natives.REMOVE_VEHICLE_ASSET(intvehicleAsset)
    return native.call(0xACE699C71AB9DEB5, intvehicleAsset)
end

function natives.SET_VEHICLE_TOW_TRUCK_ARM_POSITION(Vehiclevehicle, floatposition)
    return native.call(0xFE54B92A344583CA, Vehiclevehicle, floatposition)
end

function natives.ATTACH_VEHICLE_TO_TOW_TRUCK(VehicletowTruck, Vehiclevehicle, BOOLrear, floathookOffsetX, floathookOffsetY, floathookOffsetZ)
    return native.call(0x29A16F8D621C4508, VehicletowTruck, Vehiclevehicle, BOOLrear, floathookOffsetX, floathookOffsetY, floathookOffsetZ)
end

function natives.DETACH_VEHICLE_FROM_TOW_TRUCK(VehicletowTruck, Vehiclevehicle)
    return native.call(0xC2DB6B6708350ED8, VehicletowTruck, Vehiclevehicle)
end

function natives.DETACH_VEHICLE_FROM_ANY_TOW_TRUCK(Vehiclevehicle)
    return native.call(0xD0E9CE05A1E68CD8, Vehiclevehicle)
end

function natives.IS_VEHICLE_ATTACHED_TO_TOW_TRUCK(VehicletowTruck, Vehiclevehicle)
    return native.call(0x146DF9EC4C4B9FD4, VehicletowTruck, Vehiclevehicle)
end

function natives.GET_ENTITY_ATTACHED_TO_TOW_TRUCK(VehicletowTruck)
    return native.call(0xEFEA18DCF10F8F75, VehicletowTruck)
end

function natives.SET_VEHICLE_AUTOMATICALLY_ATTACHES(Vehiclevehicle, BOOLp1, Anyp2)
    return native.call(0x8BA6F76BC53A1493, Vehiclevehicle, BOOLp1, Anyp2)
end

function natives.SET_VEHICLE_BULLDOZER_ARM_POSITION(Vehiclevehicle, floatposition, BOOLp2)
    return native.call(0xF8EBCCC96ADB9FB7, Vehiclevehicle, floatposition, BOOLp2)
end

function natives.SET_VEHICLE_TANK_TURRET_POSITION(Vehiclevehicle, floatposition, BOOLp2)
    return native.call(0x56B94C6D7127DFBA, Vehiclevehicle, floatposition, BOOLp2)
end

function natives._0x0581730AB9380412(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0x0581730AB9380412, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives._0x737E398138550FFF(Anyp0, Anyp1)
    return native.call(0x737E398138550FFF, Anyp0, Anyp1)
end

function natives.SET_VEHICLE_TURRET_SPEED_THIS_FRAME(Vehiclevehicle, floatspeed)
    return native.call(0x1093408B4B9D1146, Vehiclevehicle, floatspeed)
end

function natives.DISABLE_VEHICLE_TURRET_MOVEMENT_THIS_FRAME(Vehiclevehicle)
    return native.call(0x32CAEDF24A583345, Vehiclevehicle)
end

function natives.SET_VEHICLE_FLIGHT_NOZZLE_POSITION(Vehiclevehicle, floatangleRatio)
    return native.call(0x30D779DE7C4F6DD3, Vehiclevehicle, floatangleRatio)
end

function natives.SET_VEHICLE_FLIGHT_NOZZLE_POSITION_IMMEDIATE(Vehiclevehicle, floatangle)
    return native.call(0x9AA47FFF660CB932, Vehiclevehicle, floatangle)
end

function natives.GET_VEHICLE_FLIGHT_NOZZLE_POSITION(Vehicleplane)
    return native.call(0xDA62027C8BDB326E, Vehicleplane)
end

function natives.SET_DISABLE_VEHICLE_FLIGHT_NOZZLE_POSITION(Vehiclevehicle, BOOLtoggle)
    return native.call(0xCE2B43770B655F8F, Vehiclevehicle, BOOLtoggle)
end

function natives._0xA4822F1CF23F4810(Vector3outVec, Anyp1, Vector3outVec1, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
    return native.call(0xA4822F1CF23F4810, Vector3outVec, Anyp1, Vector3outVec1, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7, Anyp8)
end

function natives.SET_VEHICLE_BURNOUT(Vehiclevehicle, BOOLtoggle)
    return native.call(0xFB8794444A7D60FB, Vehiclevehicle, BOOLtoggle)
end

function natives.IS_VEHICLE_IN_BURNOUT(Vehiclevehicle)
    return native.call(0x1297A88E081430EB, Vehiclevehicle)
end

function natives.SET_VEHICLE_REDUCE_GRIP(Vehiclevehicle, BOOLtoggle)
    return native.call(0x222FF6A823D122E2, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_REDUCE_TRACTION(Vehiclevehicle, intval)
    return native.call(0x6DEE944E1EE90CFB, Vehiclevehicle, intval)
end

function natives.SET_VEHICLE_INDICATOR_LIGHTS(Vehiclevehicle, intturnSignal, BOOLtoggle)
    return native.call(0xB5D45264751B7DF0, Vehiclevehicle, intturnSignal, BOOLtoggle)
end

function natives.SET_VEHICLE_BRAKE_LIGHTS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x92B35082E0B42F66, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_HANDBRAKE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x684785568EF26A22, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_BRAKE(Vehiclevehicle, BOOLtoggle)
    return native.call(0xE4E2FD323574965C, Vehiclevehicle, BOOLtoggle)
end

function natives.INSTANTLY_FILL_VEHICLE_POPULATION()
    return native.call(0x48ADC8A773564670)
end

function natives.HAS_INSTANT_FILL_VEHICLE_POPULATION_FINISHED()
    return native.call(0x91D6DD290888CBAB)
end

function natives._0x51DB102F4A3BA5E0(BOOLtoggle)
    return native.call(0x51DB102F4A3BA5E0, BOOLtoggle)
end

function natives._0xA4A9A4C40E615885(intp0)
    return native.call(0xA4A9A4C40E615885, intp0)
end

function natives.GET_VEHICLE_TRAILER_VEHICLE(Vehiclevehicle, Vehicletrailer)
    return native.call(0x1CDD6BADC297830D, Vehiclevehicle, Vehicletrailer)
end

function natives.SET_VEHICLE_USES_LARGE_REAR_RAMP(Vehiclevehicle, BOOLtoggle)
    return native.call(0xCAC66558B944DA67, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_RUDDER_BROKEN(Vehiclevehicle, BOOLtoggle)
    return native.call(0x09606148B6C71DEF, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_CONVERTIBLE_ROOF_LATCH_STATE(Vehiclevehicle, BOOLstate)
    return native.call(0x1A78AD3D8240536F, Vehiclevehicle, BOOLstate)
end

function natives.GET_VEHICLE_ESTIMATED_MAX_SPEED(Vehiclevehicle)
    return native.call(0x53AF99BAA671CA47, Vehiclevehicle)
end

function natives.GET_VEHICLE_MAX_BRAKING(Vehiclevehicle)
    return native.call(0xAD7E85FC227197C4, Vehiclevehicle)
end

function natives.GET_VEHICLE_MAX_TRACTION(Vehiclevehicle)
    return native.call(0xA132FB5370554DB0, Vehiclevehicle)
end

function natives.GET_VEHICLE_ACCELERATION(Vehiclevehicle)
    return native.call(0x5DD35C8D074E57AE, Vehiclevehicle)
end

function natives.GET_VEHICLE_MODEL_ESTIMATED_MAX_SPEED(HashmodelHash)
    return native.call(0xF417C2502FFFED43, HashmodelHash)
end

function natives.GET_VEHICLE_MODEL_MAX_BRAKING(HashmodelHash)
    return native.call(0xDC53FD41B4ED944C, HashmodelHash)
end

function natives.GET_VEHICLE_MODEL_MAX_BRAKING_MAX_MODS(HashmodelHash)
    return native.call(0xBFBA3BA79CFF7EBF, HashmodelHash)
end

function natives.GET_VEHICLE_MODEL_MAX_TRACTION(HashmodelHash)
    return native.call(0x539DE94D44FDFD0D, HashmodelHash)
end

function natives.GET_VEHICLE_MODEL_ACCELERATION(HashmodelHash)
    return native.call(0x8C044C5C84505B6A, HashmodelHash)
end

function natives.GET_VEHICLE_MODEL_ACCELERATION_MAX_MODS(HashmodelHash)
    return native.call(0x53409B5163D5B846, HashmodelHash)
end

function natives.GET_FLYING_VEHICLE_MODEL_AGILITY(HashmodelHash)
    return native.call(0xC6AD107DDC9054CC, HashmodelHash)
end

function natives.GET_BOAT_VEHICLE_MODEL_AGILITY(HashmodelHash)
    return native.call(0x5AA3F878A178C4FC, HashmodelHash)
end

function natives.GET_VEHICLE_CLASS_ESTIMATED_MAX_SPEED(intvehicleClass)
    return native.call(0x00C09F246ABEDD82, intvehicleClass)
end

function natives.GET_VEHICLE_CLASS_MAX_TRACTION(intvehicleClass)
    return native.call(0xDBC86D85C5059461, intvehicleClass)
end

function natives.GET_VEHICLE_CLASS_MAX_AGILITY(intvehicleClass)
    return native.call(0x4F930AD022D6DE3B, intvehicleClass)
end

function natives.GET_VEHICLE_CLASS_MAX_ACCELERATION(intvehicleClass)
    return native.call(0x2F83E7E45D9EA7AE, intvehicleClass)
end

function natives.GET_VEHICLE_CLASS_MAX_BRAKING(intvehicleClass)
    return native.call(0x4BF54C16EC8FEC03, intvehicleClass)
end

function natives.ADD_ROAD_NODE_SPEED_ZONE(floatx, floaty, floatz, floatradius, floatspeed, BOOLp5)
    return native.call(0x2CE544C68FB812A0, floatx, floaty, floatz, floatradius, floatspeed, BOOLp5)
end

function natives.REMOVE_ROAD_NODE_SPEED_ZONE(intspeedzone)
    return native.call(0x1033371FC8E842A7, intspeedzone)
end

function natives.OPEN_BOMB_BAY_DOORS(Vehiclevehicle)
    return native.call(0x87E7F24270732CB1, Vehiclevehicle)
end

function natives.CLOSE_BOMB_BAY_DOORS(Vehiclevehicle)
    return native.call(0x3556041742A0DC74, Vehiclevehicle)
end

function natives.ARE_BOMB_BAY_DOORS_OPEN(Vehicleaircraft)
    return native.call(0xD0917A423314BBA8, Vehicleaircraft)
end

function natives.IS_VEHICLE_SEARCHLIGHT_ON(Vehiclevehicle)
    return native.call(0xC0F97FCE55094987, Vehiclevehicle)
end

function natives.SET_VEHICLE_SEARCHLIGHT(Vehicleheli, BOOLtoggle, BOOLcanBeUsedByAI)
    return native.call(0x14E85C5EE7A4D542, Vehicleheli, BOOLtoggle, BOOLcanBeUsedByAI)
end

function natives.DOES_VEHICLE_HAVE_SEARCHLIGHT(Vehiclevehicle)
    return native.call(0x99015ED7DBEA5113, Vehiclevehicle)
end

function natives.IS_ENTRY_POINT_FOR_SEAT_CLEAR(Pedped, Vehiclevehicle, intseatIndex, BOOLside, BOOLonEnter)
    return native.call(0x639431E895B9AA57, Pedped, Vehiclevehicle, intseatIndex, BOOLside, BOOLonEnter)
end

function natives.GET_ENTRY_POSITION_OF_DOOR(Vehiclevehicle, intdoorId)
    return native.call(0xC0572928C0ABFDA3, Vehiclevehicle, intdoorId)
end

function natives.CAN_SHUFFLE_SEAT(Vehiclevehicle, intseatIndex)
    return native.call(0x30785D90C956BF35, Vehiclevehicle, intseatIndex)
end

function natives.GET_NUM_MOD_KITS(Vehiclevehicle)
    return native.call(0x33F2E3FE70EAAE1D, Vehiclevehicle)
end

function natives.SET_VEHICLE_MOD_KIT(Vehiclevehicle, intmodKit)
    return native.call(0x1F2AA07F00B3217A, Vehiclevehicle, intmodKit)
end

function natives.GET_VEHICLE_MOD_KIT(Vehiclevehicle)
    return native.call(0x6325D1A044AE510D, Vehiclevehicle)
end

function natives.GET_VEHICLE_MOD_KIT_TYPE(Vehiclevehicle)
    return native.call(0xFC058F5121E54C32, Vehiclevehicle)
end

function natives.GET_VEHICLE_WHEEL_TYPE(Vehiclevehicle)
    return native.call(0xB3ED1BFB4BE636DC, Vehiclevehicle)
end

function natives.SET_VEHICLE_WHEEL_TYPE(Vehiclevehicle, intWheelType)
    return native.call(0x487EB21CC7295BA1, Vehiclevehicle, intWheelType)
end

function natives.GET_NUM_MOD_COLORS(intpaintType, BOOLp1)
    return native.call(0xA551BE18C11A476D, intpaintType, BOOLp1)
end

function natives.SET_VEHICLE_MOD_COLOR_1(Vehiclevehicle, intpaintType, intcolor, intpearlescentColor)
    return native.call(0x43FEB945EE7F85B8, Vehiclevehicle, intpaintType, intcolor, intpearlescentColor)
end

function natives.SET_VEHICLE_MOD_COLOR_2(Vehiclevehicle, intpaintType, intcolor)
    return native.call(0x816562BADFDEC83E, Vehiclevehicle, intpaintType, intcolor)
end

function natives.GET_VEHICLE_MOD_COLOR_1(Vehiclevehicle, intpaintType, intcolor, intpearlescentColor)
    return native.call(0xE8D65CA700C9A693, Vehiclevehicle, intpaintType, intcolor, intpearlescentColor)
end

function natives.GET_VEHICLE_MOD_COLOR_2(Vehiclevehicle, intpaintType, intcolor)
    return native.call(0x81592BE4E3878728, Vehiclevehicle, intpaintType, intcolor)
end

function natives.GET_VEHICLE_MOD_COLOR_1_NAME(Vehiclevehicle, BOOLp1)
    return native.call(0xB45085B721EFD38C, Vehiclevehicle, BOOLp1)
end

function natives.GET_VEHICLE_MOD_COLOR_2_NAME(Vehiclevehicle)
    return native.call(0x4967A516ED23A5A1, Vehiclevehicle)
end

function natives.HAVE_VEHICLE_MODS_STREAMED_IN(Vehiclevehicle)
    return native.call(0x9A83F5F9963775EF, Vehiclevehicle)
end

function natives.SET_VEHICLE_MOD(Vehiclevehicle, intmodType, intmodIndex, BOOLcustomTires)
    return native.call(0x6AF0636DDEDCB6DD, Vehiclevehicle, intmodType, intmodIndex, BOOLcustomTires)
end

function natives.GET_VEHICLE_MOD(Vehiclevehicle, intmodType)
    return native.call(0x772960298DA26FDB, Vehiclevehicle, intmodType)
end

function natives.GET_VEHICLE_MOD_VARIATION(Vehiclevehicle, intmodType)
    return native.call(0xB3924ECD70E095DC, Vehiclevehicle, intmodType)
end

function natives.GET_NUM_VEHICLE_MODS(Vehiclevehicle, intmodType)
    return native.call(0xE38E9162A2500646, Vehiclevehicle, intmodType)
end

function natives.REMOVE_VEHICLE_MOD(Vehiclevehicle, intmodType)
    return native.call(0x92D619E420858204, Vehiclevehicle, intmodType)
end

function natives.TOGGLE_VEHICLE_MOD(Vehiclevehicle, intmodType, BOOLtoggle)
    return native.call(0x2A1F4F37F95BAD08, Vehiclevehicle, intmodType, BOOLtoggle)
end

function natives.IS_TOGGLE_MOD_ON(Vehiclevehicle, intmodType)
    return native.call(0x84B233A8C8FC8AE7, Vehiclevehicle, intmodType)
end

function natives.GET_MOD_TEXT_LABEL(Vehiclevehicle, intmodType, intmodValue)
    return native.call(0x8935624F8C5592CC, Vehiclevehicle, intmodType, intmodValue)
end

function natives.GET_MOD_SLOT_NAME(Vehiclevehicle, intmodType)
    return native.call(0x51F0FEB9F6AE98C0, Vehiclevehicle, intmodType)
end

function natives.GET_LIVERY_NAME(Vehiclevehicle, intliveryIndex)
    return native.call(0xB4C7A93837C91A1F, Vehiclevehicle, intliveryIndex)
end

function natives.GET_VEHICLE_MOD_MODIFIER_VALUE(Vehiclevehicle, intmodType, intmodIndex)
    return native.call(0x90A38E9838E0A8C1, Vehiclevehicle, intmodType, intmodIndex)
end

function natives.GET_VEHICLE_MOD_IDENTIFIER_HASH(Vehiclevehicle, intmodType, intmodIndex)
    return native.call(0x4593CF82AA179706, Vehiclevehicle, intmodType, intmodIndex)
end

function natives.PRELOAD_VEHICLE_MOD(Anyp0, intmodType, Anyp2)
    return native.call(0x758F49C24925568A, Anyp0, intmodType, Anyp2)
end

function natives.HAS_PRELOAD_MODS_FINISHED(Anyp0)
    return native.call(0x06F43E5175EB6D96, Anyp0)
end

function natives.RELEASE_PRELOAD_MODS(Vehiclevehicle)
    return native.call(0x445D79F995508307, Vehiclevehicle)
end

function natives.SET_VEHICLE_TYRE_SMOKE_COLOR(Vehiclevehicle, intr, intg, intb)
    return native.call(0xB5BA80F839791C0F, Vehiclevehicle, intr, intg, intb)
end

function natives.GET_VEHICLE_TYRE_SMOKE_COLOR(Vehiclevehicle, intr, intg, intb)
    return native.call(0xB635392A4938B3C3, Vehiclevehicle, intr, intg, intb)
end

function natives.SET_VEHICLE_WINDOW_TINT(Vehiclevehicle, inttint)
    return native.call(0x57C51E6BAD752696, Vehiclevehicle, inttint)
end

function natives.GET_VEHICLE_WINDOW_TINT(Vehiclevehicle)
    return native.call(0x0EE21293DAD47C95, Vehiclevehicle)
end

function natives.GET_NUM_VEHICLE_WINDOW_TINTS()
    return native.call(0x9D1224004B3A6707)
end

function natives.GET_VEHICLE_COLOR(Vehiclevehicle, intr, intg, intb)
    return native.call(0xF3CC740D36221548, Vehiclevehicle, intr, intg, intb)
end

function natives._0xEEBFC7A7EFDC35B4(Vehiclevehicle)
    return native.call(0xEEBFC7A7EFDC35B4, Vehiclevehicle)
end

function natives.GET_VEHICLE_CAUSE_OF_DESTRUCTION(Vehiclevehicle)
    return native.call(0xE495D1EF4C91FD20, Vehiclevehicle)
end

function natives.OVERRIDE_OVERHEAT_HEALTH(Vehiclevehicle, floathealth)
    return native.call(0x5EE5632F47AE9695, Vehiclevehicle, floathealth)
end

function natives.GET_IS_LEFT_VEHICLE_HEADLIGHT_DAMAGED(Vehiclevehicle)
    return native.call(0x5EF77C9ADD3B11A3, Vehiclevehicle)
end

function natives.GET_IS_RIGHT_VEHICLE_HEADLIGHT_DAMAGED(Vehiclevehicle)
    return native.call(0xA7ECB73355EB2F20, Vehiclevehicle)
end

function natives.IS_VEHICLE_ENGINE_ON_FIRE(Vehiclevehicle)
    return native.call(0xEC69ADF931AAE0C3, Vehiclevehicle)
end

function natives.MODIFY_VEHICLE_TOP_SPEED(Vehiclevehicle, floatvalue)
    return native.call(0x93A3996368C94158, Vehiclevehicle, floatvalue)
end

function natives.SET_VEHICLE_MAX_SPEED(Vehiclevehicle, floatspeed)
    return native.call(0xBAA045B4E42F3C06, Vehiclevehicle, floatspeed)
end

function natives._0x1CF38D529D7441D9(Vehiclevehicle, BOOLtoggle)
    return native.call(0x1CF38D529D7441D9, Vehiclevehicle, BOOLtoggle)
end

function natives._0x1F9FB66F3A3842D2(Vehiclevehicle, BOOLp1)
    return native.call(0x1F9FB66F3A3842D2, Vehiclevehicle, BOOLp1)
end

function natives._0x59C3757B3B7408E8(Vehiclevehicle, BOOLtoggle, floatp2)
    return native.call(0x59C3757B3B7408E8, Vehiclevehicle, BOOLtoggle, floatp2)
end

function natives.ADD_VEHICLE_COMBAT_ANGLED_AVOIDANCE_AREA(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6)
    return native.call(0x54B0F614960F4A5F, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6)
end

function natives.REMOVE_VEHICLE_COMBAT_AVOIDANCE_AREA(Anyp0)
    return native.call(0xE30524E1871F481D, Anyp0)
end

function natives.IS_ANY_PED_RAPPELLING_FROM_HELI(Vehiclevehicle)
    return native.call(0x291E373D483E7EE7, Vehiclevehicle)
end

function natives.SET_VEHICLE_CHEAT_POWER_INCREASE(Vehiclevehicle, floatvalue)
    return native.call(0xB59E4BD37AE292DB, Vehiclevehicle, floatvalue)
end

function natives._0x0AD9E8F87FF7C16F(Anyp0, BOOLp1)
    return native.call(0x0AD9E8F87FF7C16F, Anyp0, BOOLp1)
end

function natives.SET_VEHICLE_IS_WANTED(Vehiclevehicle, BOOLstate)
    return native.call(0xF7EC25A3EBEEC726, Vehiclevehicle, BOOLstate)
end

function natives.SET_BOAT_BOOM_POSITION_RATIO(Vehiclevehicle, floatratio)
    return native.call(0xF488C566413B4232, Vehiclevehicle, floatratio)
end

function natives.GET_BOAT_BOOM_POSITION_RATIO_2(Vehiclevehicle, BOOLp1)
    return native.call(0xC1F981A6F74F0C23, Vehiclevehicle, BOOLp1)
end

function natives.GET_BOAT_BOOM_POSITION_RATIO_3(Vehiclevehicle, BOOLp1)
    return native.call(0x0F3B4D4E43177236, Vehiclevehicle, BOOLp1)
end

function natives.GET_BOAT_BOOM_POSITION_RATIO(Vehiclevehicle)
    return native.call(0x6636C535F6CC2725, Vehiclevehicle)
end

function natives.DISABLE_PLANE_AILERON(Vehiclevehicle, BOOLp1, BOOLp2)
    return native.call(0x23428FC53C60919C, Vehiclevehicle, BOOLp1, BOOLp2)
end

function natives.GET_IS_VEHICLE_ENGINE_RUNNING(Vehiclevehicle)
    return native.call(0xAE31E7DF9B5B132E, Vehiclevehicle)
end

function natives.SET_VEHICLE_USE_ALTERNATE_HANDLING(Vehiclevehicle, BOOLtoggle)
    return native.call(0x1D97D1E3A70A649F, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_BIKE_ON_STAND(Vehiclevehicle, floatx, floaty)
    return native.call(0x9CFA4896C3A53CBB, Vehiclevehicle, floatx, floaty)
end

function natives._0xAB04325045427AAE(Vehiclevehicle, BOOLp1)
    return native.call(0xAB04325045427AAE, Vehiclevehicle, BOOLp1)
end

function natives._0xCFD778E7904C255E(Vehiclevehicle)
    return native.call(0xCFD778E7904C255E, Vehiclevehicle)
end

function natives.SET_LAST_DRIVEN_VEHICLE(Vehiclevehicle)
    return native.call(0xACFB2463CC22BED2, Vehiclevehicle)
end

function natives.GET_LAST_DRIVEN_VEHICLE()
    return native.call(0xB2D06FAEDE65B577)
end

function natives.CLEAR_LAST_DRIVEN_VEHICLE()
    return native.call(0xE01903C47C7AC89E)
end

function natives.SET_VEHICLE_HAS_BEEN_DRIVEN_FLAG(Vehiclevehicle, BOOLtoggle)
    return native.call(0x02398B627547189C, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_TASK_VEHICLE_GOTO_PLANE_MIN_HEIGHT_ABOVE_TERRAIN(Vehicleplane, intheight)
    return native.call(0xB893215D8D4C015B, Vehicleplane, intheight)
end

function natives.SET_VEHICLE_LOD_MULTIPLIER(Vehiclevehicle, floatmultiplier)
    return native.call(0x93AE6A61BE015BF1, Vehiclevehicle, floatmultiplier)
end

function natives.SET_VEHICLE_CAN_SAVE_IN_GARAGE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x428BACCDF5E26EAD, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_VEHICLE_NUMBER_OF_BROKEN_OFF_BONES(Vehiclevehicle)
    return native.call(0x42A4BEB35D372407, Vehiclevehicle)
end

function natives.GET_VEHICLE_NUMBER_OF_BROKEN_BONES(Vehiclevehicle)
    return native.call(0x2C8CBFE1EA5FC631, Vehiclevehicle)
end

function natives._0x4D9D109F63FEE1D4(Anyp0, BOOLp1)
    return native.call(0x4D9D109F63FEE1D4, Anyp0, BOOLp1)
end

function natives.SET_VEHICLE_GENERATES_ENGINE_SHOCKING_EVENTS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x279D50DE5652D935, Vehiclevehicle, BOOLtoggle)
end

function natives.COPY_VEHICLE_DAMAGES(VehiclesourceVehicle, VehicletargetVehicle)
    return native.call(0xE44A982368A4AF23, VehiclesourceVehicle, VehicletargetVehicle)
end

function natives._0xF25E02CB9C5818F8()
    return native.call(0xF25E02CB9C5818F8)
end

function natives.SET_LIGHTS_CUTOFF_DISTANCE_TWEAK(floatdistance)
    return native.call(0xBC3CCA5844452B06, floatdistance)
end

function natives.SET_VEHICLE_SHOOT_AT_TARGET(Peddriver, Entityentity, floatxTarget, floatyTarget, floatzTarget)
    return native.call(0x74CD9A9327A282EA, Peddriver, Entityentity, floatxTarget, floatyTarget, floatzTarget)
end

function natives.GET_VEHICLE_LOCK_ON_TARGET(Vehiclevehicle, Entityentity)
    return native.call(0x8F5EBAB1F260CFCE, Vehiclevehicle, Entityentity)
end

function natives.SET_FORCE_HD_VEHICLE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x97CE68CB032583F0, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_CUSTOM_PATH_NODE_STREAMING_RADIUS(Vehiclevehicle, floatp1)
    return native.call(0x182F266C2D9E2BEB, Vehiclevehicle, floatp1)
end

function natives.GET_VEHICLE_PLATE_TYPE(Vehiclevehicle)
    return native.call(0x9CCC9525BF2408E0, Vehiclevehicle)
end

function natives.TRACK_VEHICLE_VISIBILITY(Vehiclevehicle)
    return native.call(0x64473AEFDCF47DCA, Vehiclevehicle)
end

function natives.IS_VEHICLE_VISIBLE(Vehiclevehicle)
    return native.call(0xAA0A52D24FB98293, Vehiclevehicle)
end

function natives.SET_VEHICLE_GRAVITY(Vehiclevehicle, BOOLtoggle)
    return native.call(0x89F149B6131E57DA, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_ENABLE_VEHICLE_SLIPSTREAMING(BOOLtoggle)
    return native.call(0xE6C0C80B8C867537, BOOLtoggle)
end

function natives._0xF051D9BFB6BA39C0(Anyp0)
    return native.call(0xF051D9BFB6BA39C0, Anyp0)
end

function natives.GET_VEHICLE_CURRENT_SLIPSTREAM_DRAFT(Vehiclevehicle)
    return native.call(0x36492C2F0D134C56, Vehiclevehicle)
end

function natives.IS_VEHICLE_SLIPSTREAM_LEADER(Vehiclevehicle)
    return native.call(0x48C633E94A8142A7, Vehiclevehicle)
end

function natives.SET_VEHICLE_INACTIVE_DURING_PLAYBACK(Vehiclevehicle, BOOLtoggle)
    return native.call(0x06582AFF74894C75, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_ACTIVE_DURING_PLAYBACK(Anyp0, BOOLp1)
    return native.call(0xDFFCEF48E511DB48, Anyp0, BOOLp1)
end

function natives.IS_VEHICLE_SPRAYABLE(Vehiclevehicle)
    return native.call(0x8D474C8FAEFF6CDE, Vehiclevehicle)
end

function natives.SET_VEHICLE_ENGINE_CAN_DEGRADE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x983765856F2564F9, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_SHADOW_EFFECT(Vehiclevehicle, intp1, intp2)
    return native.call(0xF0E4BA16D1DB546C, Vehiclevehicle, intp1, intp2)
end

function natives.REMOVE_VEHICLE_SHADOW_EFFECT(Vehiclevehicle)
    return native.call(0xF87D9F2301F7D206, Vehiclevehicle)
end

function natives.IS_PLANE_LANDING_GEAR_INTACT(Vehicleplane)
    return native.call(0x4198AB0022B15F87, Vehicleplane)
end

function natives.ARE_PLANE_PROPELLERS_INTACT(Vehicleplane)
    return native.call(0x755D6D5267CBBD7E, Vehicleplane)
end

function natives.SET_PLANE_PROPELLERS_HEALTH(Vehicleplane, floathealth)
    return native.call(0x4C815EB175086F84, Vehicleplane, floathealth)
end

function natives.SET_VEHICLE_CAN_DEFORM_WHEELS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x0CDDA42F9E360CA6, Vehiclevehicle, BOOLtoggle)
end

function natives.IS_VEHICLE_STOLEN(Vehiclevehicle)
    return native.call(0x4AF9BD80EEBEB453, Vehiclevehicle)
end

function natives.SET_VEHICLE_IS_STOLEN(Vehiclevehicle, BOOLisStolen)
    return native.call(0x67B2C79AA7FF5738, Vehiclevehicle, BOOLisStolen)
end

function natives.SET_PLANE_TURBULENCE_MULTIPLIER(Vehiclevehicle, floatmultiplier)
    return native.call(0xAD2D28A1AFDFF131, Vehiclevehicle, floatmultiplier)
end

function natives.ARE_WINGS_OF_PLANE_INTACT(Vehicleplane)
    return native.call(0x5991A01434CE9677, Vehicleplane)
end

function natives._0xB264C4D2F2B0A78B(Vehiclevehicle)
    return native.call(0xB264C4D2F2B0A78B, Vehiclevehicle)
end

function natives.DETACH_VEHICLE_FROM_CARGOBOB(Vehiclevehicle, Vehiclecargobob)
    return native.call(0x0E21D3DF1051399D, Vehiclevehicle, Vehiclecargobob)
end

function natives.DETACH_VEHICLE_FROM_ANY_CARGOBOB(Vehiclevehicle)
    return native.call(0xADF7BE450512C12F, Vehiclevehicle)
end

function natives.DETACH_ENTITY_FROM_CARGOBOB(Vehiclecargobob, Entityentity)
    return native.call(0xAF03011701811146, Vehiclecargobob, Entityentity)
end

function natives.IS_VEHICLE_ATTACHED_TO_CARGOBOB(Vehiclecargobob, VehiclevehicleAttached)
    return native.call(0xD40148F22E81A1D9, Vehiclecargobob, VehiclevehicleAttached)
end

function natives.GET_VEHICLE_ATTACHED_TO_CARGOBOB(Vehiclecargobob)
    return native.call(0x873B82D42AC2B9E5, Vehiclecargobob)
end

function natives.GET_ENTITY_ATTACHED_TO_CARGOBOB(Anyp0)
    return native.call(0x99093F60746708CA, Anyp0)
end

function natives.ATTACH_VEHICLE_TO_CARGOBOB(Vehiclevehicle, Vehiclecargobob, intp2, floatx, floaty, floatz)
    return native.call(0x4127F1D84E347769, Vehiclevehicle, Vehiclecargobob, intp2, floatx, floaty, floatz)
end

function natives.ATTACH_ENTITY_TO_CARGOBOB(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
    return native.call(0xA1DD82F3CCF9A01E, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5)
end

function natives.SET_CARGOBOB_FORCE_DONT_DETACH_VEHICLE(Vehiclecargobob, BOOLtoggle)
    return native.call(0x571FEB383F629926, Vehiclecargobob, BOOLtoggle)
end

function natives._0x1F34B0626C594380(Anyp0, Anyp1)
    return native.call(0x1F34B0626C594380, Anyp0, Anyp1)
end

function natives._0x2C1D8B3B19E517CC(Anyp0, Anyp1)
    return native.call(0x2C1D8B3B19E517CC, Anyp0, Anyp1)
end

function natives.GET_CARGOBOB_HOOK_POSITION(Vehiclecargobob)
    return native.call(0xCBDB9B923CACC92D, Vehiclecargobob)
end

function natives.DOES_CARGOBOB_HAVE_PICK_UP_ROPE(Vehiclecargobob)
    return native.call(0x1821D91AD4B56108, Vehiclecargobob)
end

function natives.CREATE_PICK_UP_ROPE_FOR_CARGOBOB(Vehiclecargobob, intstate)
    return native.call(0x7BEB0C7A235F6F3B, Vehiclecargobob, intstate)
end

function natives.REMOVE_PICK_UP_ROPE_FOR_CARGOBOB(Vehiclecargobob)
    return native.call(0x9768CF648F54C804, Vehiclecargobob)
end

function natives.SET_PICKUP_ROPE_LENGTH_FOR_CARGOBOB(Vehiclecargobob, floatlength1, floatlength2, BOOLp3)
    return native.call(0x877C1EAEAC531023, Vehiclecargobob, floatlength1, floatlength2, BOOLp3)
end

function natives._0xC0ED6438E6D39BA8(Anyp0, Anyp1, Anyp2)
    return native.call(0xC0ED6438E6D39BA8, Anyp0, Anyp1, Anyp2)
end

function natives.SET_CARGOBOB_PICKUP_ROPE_DAMPING_MULTIPLIER(Anyp0, Anyp1)
    return native.call(0xCF1182F682F65307, Anyp0, Anyp1)
end

function natives.SET_CARGOBOB_PICKUP_ROPE_TYPE(Anyp0, Anyp1)
    return native.call(0x0D5F65A8F4EBDAB5, Anyp0, Anyp1)
end

function natives.DOES_CARGOBOB_HAVE_PICKUP_MAGNET(Vehiclecargobob)
    return native.call(0x6E08BF5B3722BAC9, Vehiclecargobob)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_ACTIVE(Vehiclecargobob, BOOLisActive)
    return native.call(0x9A665550F8DA349B, Vehiclecargobob, BOOLisActive)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_STRENGTH(Vehiclecargobob, floatstrength)
    return native.call(0xBCBFCD9D1DAC19E2, Vehiclecargobob, floatstrength)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_EFFECT_RADIUS(Vehiclecargobob, floatp1)
    return native.call(0xA17BAD153B51547E, Vehiclecargobob, floatp1)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_REDUCED_FALLOFF(Vehiclecargobob, floatp1)
    return native.call(0x66979ACF5102FD2F, Vehiclecargobob, floatp1)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_PULL_ROPE_LENGTH(Vehiclecargobob, floatp1)
    return native.call(0x6D8EAC07506291FB, Vehiclecargobob, floatp1)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_PULL_STRENGTH(Vehiclecargobob, floatp1)
    return native.call(0xED8286F71A819BAA, Vehiclecargobob, floatp1)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_FALLOFF(Vehiclevehicle, floatp1)
    return native.call(0x685D5561680D088B, Vehiclevehicle, floatp1)
end

function natives.SET_CARGOBOB_PICKUP_MAGNET_REDUCED_STRENGTH(Vehiclevehicle, Vehiclecargobob)
    return native.call(0xE301BD63E9E13CF0, Vehiclevehicle, Vehiclecargobob)
end

function natives._0x9BDDC73CC6A115D4(Vehiclevehicle, BOOLp1, BOOLp2)
    return native.call(0x9BDDC73CC6A115D4, Vehiclevehicle, BOOLp1, BOOLp2)
end

function natives._0x56EB5E94318D3FB6(Vehiclevehicle, BOOLp1)
    return native.call(0x56EB5E94318D3FB6, Vehiclevehicle, BOOLp1)
end

function natives.DOES_VEHICLE_HAVE_WEAPONS(Vehiclevehicle)
    return native.call(0x25ECB9F8017D98E0, Vehiclevehicle)
end

function natives._0x2C4A1590ABF43E8B(Vehiclevehicle, BOOLp1)
    return native.call(0x2C4A1590ABF43E8B, Vehiclevehicle, BOOLp1)
end

function natives.DISABLE_VEHICLE_WEAPON(BOOLdisabled, HashweaponHash, Vehiclevehicle, Pedowner)
    return native.call(0xF4FC6A6F67D8D856, BOOLdisabled, HashweaponHash, Vehiclevehicle, Pedowner)
end

function natives.IS_VEHICLE_WEAPON_DISABLED(HashweaponHash, Vehiclevehicle, Pedowner)
    return native.call(0x563B65A643ED072E, HashweaponHash, Vehiclevehicle, Pedowner)
end

function natives._0xE05DD0E9707003A3(Anyp0, BOOLp1)
    return native.call(0xE05DD0E9707003A3, Anyp0, BOOLp1)
end

function natives.SET_VEHICLE_ACTIVE_FOR_PED_NAVIGATION(Vehiclevehicle, BOOLtoggle)
    return native.call(0x21115BCD6E44656A, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_VEHICLE_CLASS(Vehiclevehicle)
    return native.call(0x29439776AAA00A62, Vehiclevehicle)
end

function natives.GET_VEHICLE_CLASS_FROM_NAME(HashmodelHash)
    return native.call(0xDEDF1C8BD47C2200, HashmodelHash)
end

function natives.SET_PLAYERS_LAST_VEHICLE(Vehiclevehicle)
    return native.call(0xBCDF8BAF56C87B6A, Vehiclevehicle)
end

function natives.SET_VEHICLE_CAN_BE_USED_BY_FLEEING_PEDS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x300504B23BD3B711, Vehiclevehicle, BOOLtoggle)
end

function natives._0xE5810AC70602F2F5(Vehiclevehicle, floatp1)
    return native.call(0xE5810AC70602F2F5, Vehiclevehicle, floatp1)
end

function natives.SET_VEHICLE_DROPS_MONEY_WHEN_BLOWN_UP(Vehiclevehicle, BOOLtoggle)
    return native.call(0x068F64F2470F9656, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_KEEP_ENGINE_ON_WHEN_ABANDONED(Vehiclevehicle, BOOLtoggle)
    return native.call(0xB8FBC8B1330CA9B4, Vehiclevehicle, BOOLtoggle)
end

function natives._0x6A973569BA094650(Vehiclevehicle, Anyp1)
    return native.call(0x6A973569BA094650, Vehiclevehicle, Anyp1)
end

function natives.SET_VEHICLE_HANDLING_HASH_FOR_AI(Vehiclevehicle, Hashhash)
    return native.call(0x10655FAB9915623D, Vehiclevehicle, Hashhash)
end

function natives.SET_VEHICLE_EXTENDED_REMOVAL_RANGE(Vehiclevehicle, intrange)
    return native.call(0x79DF7E806202CE01, Vehiclevehicle, intrange)
end

function natives.SET_VEHICLE_STEERING_BIAS_SCALAR(Anyp0, floatp1)
    return native.call(0x9007A2F21DC108D4, Anyp0, floatp1)
end

function natives.SET_HELICOPTER_ROLL_PITCH_YAW_MULT(Vehiclehelicopter, floatmultiplier)
    return native.call(0x6E0859B530A365CC, Vehiclehelicopter, floatmultiplier)
end

function natives.SET_VEHICLE_FRICTION_OVERRIDE(Vehiclevehicle, floatfriction)
    return native.call(0x1837AF7C627009BA, Vehiclevehicle, floatfriction)
end

function natives.SET_VEHICLE_WHEELS_CAN_BREAK_OFF_WHEN_BLOW_UP(Vehiclevehicle, BOOLtoggle)
    return native.call(0xA37B9A517B133349, Vehiclevehicle, BOOLtoggle)
end

function natives.ARE_PLANE_CONTROL_PANELS_INTACT(Vehiclevehicle, BOOLp1)
    return native.call(0xF78F94D60248C737, Vehiclevehicle, BOOLp1)
end

function natives.SET_VEHICLE_CEILING_HEIGHT(Vehiclevehicle, floatheight)
    return native.call(0xA46413066687A328, Vehiclevehicle, floatheight)
end

function natives._0x5E569EC46EC21CAE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x5E569EC46EC21CAE, Vehiclevehicle, BOOLtoggle)
end

function natives.CLEAR_VEHICLE_ROUTE_HISTORY(Vehiclevehicle)
    return native.call(0x6D6AF961B72728AE, Vehiclevehicle)
end

function natives.DOES_VEHICLE_EXIST_WITH_DECORATOR(constchardecorator)
    return native.call(0x956B409B984D9BF7, constchardecorator)
end

function natives._0x41062318F23ED854(Vehiclevehicle, BOOLtoggle)
    return native.call(0x41062318F23ED854, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_EXCLUSIVE_DRIVER(Vehiclevehicle, Pedped, intindex)
    return native.call(0xB5C51B5502E85E83, Vehiclevehicle, Pedped, intindex)
end

function natives.IS_PED_EXCLUSIVE_DRIVER_OF_VEHICLE(Pedped, Vehiclevehicle, intoutIndex)
    return native.call(0xB09D25E77C33EB3F, Pedped, Vehiclevehicle, intoutIndex)
end

function natives.DISABLE_INDIVIDUAL_PLANE_PROPELLER(Vehiclevehicle, intpropeller)
    return native.call(0x500873A45724C863, Vehiclevehicle, intpropeller)
end

function natives.SET_VEHICLE_FORCE_AFTERBURNER(Vehiclevehicle, BOOLtoggle)
    return native.call(0xB055A34527CB8FD7, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_DISABLE_VEHICLE_WINDOW_COLLISIONS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x1087BC8EC540DAEB, Vehiclevehicle, BOOLtoggle)
end

function natives._0x4AD280EB48B2D8E6(Vehiclevehicle, BOOLtogle)
    return native.call(0x4AD280EB48B2D8E6, Vehiclevehicle, BOOLtogle)
end

function natives._0xB68CFAF83A02768D(Vehiclevehicle, BOOLtoggle)
    return native.call(0xB68CFAF83A02768D, Vehiclevehicle, BOOLtoggle)
end

function natives._0x0205F5365292D2EB(Vehiclevehicle, floatp1)
    return native.call(0x0205F5365292D2EB, Vehiclevehicle, floatp1)
end

function natives._0xCF9159024555488C(Anyp0)
    return native.call(0xCF9159024555488C, Anyp0)
end

function natives.SET_DISTANT_CARS_ENABLED(BOOLtoggle)
    return native.call(0xF796359A959DF65D, BOOLtoggle)
end

function natives.SET_VEHICLE_NEON_LIGHTS_COLOUR(Vehiclevehicle, intr, intg, intb)
    return native.call(0x8E0A582209A62695, Vehiclevehicle, intr, intg, intb)
end

function natives._0xB93B2867F7B479D1(Vehiclevehicle, intindex)
    return native.call(0xB93B2867F7B479D1, Vehiclevehicle, intindex)
end

function natives.GET_VEHICLE_NEON_LIGHTS_COLOUR(Vehiclevehicle, intr, intg, intb)
    return native.call(0x7619EEE8C886757F, Vehiclevehicle, intr, intg, intb)
end

function natives.SET_VEHICLE_NEON_LIGHT_ENABLED(Vehiclevehicle, intindex, BOOLtoggle)
    return native.call(0x2AA720E4287BF269, Vehiclevehicle, intindex, BOOLtoggle)
end

function natives.IS_VEHICLE_NEON_LIGHT_ENABLED(Vehiclevehicle, intindex)
    return native.call(0x8C4B92553E4766A5, Vehiclevehicle, intindex)
end

function natives._0x35E0654F4BAD7971(BOOLp0)
    return native.call(0x35E0654F4BAD7971, BOOLp0)
end

function natives.DISABLE_VEHICLE_NEON_LIGHTS(Vehiclevehicle, BOOLtoggle)
    return native.call(0x83F813570FF519DE, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_DISABLE_SUPERDUMMY_MODE(Vehiclevehicle, BOOLp1)
    return native.call(0xB088E9A47AE6EDD5, Vehiclevehicle, BOOLp1)
end

function natives.REQUEST_VEHICLE_DASHBOARD_SCALEFORM_MOVIE(Vehiclevehicle)
    return native.call(0xDBA3C090E3D74690, Vehiclevehicle)
end

function natives.GET_VEHICLE_BODY_HEALTH(Vehiclevehicle)
    return native.call(0xF271147EB7B40F12, Vehiclevehicle)
end

function natives.SET_VEHICLE_BODY_HEALTH(Vehiclevehicle, floatvalue)
    return native.call(0xB77D05AC8C78AADB, Vehiclevehicle, floatvalue)
end

function natives.GET_VEHICLE_SUSPENSION_BOUNDS(Vehiclevehicle, Vector3out1, Vector3out2)
    return native.call(0xDF7E3EEB29642C38, Vehiclevehicle, Vector3out1, Vector3out2)
end

function natives.GET_VEHICLE_SUSPENSION_HEIGHT(Vehiclevehicle)
    return native.call(0x53952FD2BAA19F17, Vehiclevehicle)
end

function natives.SET_CAR_HIGH_SPEED_BUMP_SEVERITY_MULTIPLIER(floatmultiplier)
    return native.call(0x84FD40F56075E816, floatmultiplier)
end

function natives.GET_NUMBER_OF_VEHICLE_DOORS(Vehiclevehicle)
    return native.call(0x92922A607497B14D, Vehiclevehicle)
end

function natives.SET_HYDRAULIC_RAISED(Anyp0, Anyp1)
    return native.call(0x28B18377EB6E25F6, Anyp0, Anyp1)
end

function natives._0xA7DCDF4DED40A8F4(Vehiclevehicle, BOOLp1)
    return native.call(0xA7DCDF4DED40A8F4, Vehiclevehicle, BOOLp1)
end

function natives.GET_VEHICLE_HEALTH_PERCENTAGE(Vehiclevehicle, floatmaxEngineHealth, floatmaxPetrolTankHealth, floatmaxBodyHealth, floatmaxMainRotorHealth, floatmaxTailRotorHealth, floatmaxUnkHealth)
    return native.call(0xB8EF61207C2393A9, Vehiclevehicle, floatmaxEngineHealth, floatmaxPetrolTankHealth, floatmaxBodyHealth, floatmaxMainRotorHealth, floatmaxTailRotorHealth, floatmaxUnkHealth)
end

function natives.GET_VEHICLE_IS_MERCENARY(Vehiclevehicle)
    return native.call(0xD4C4642CB7F50B5D, Vehiclevehicle)
end

function natives._0xC361AA040D6637A8(Vehiclevehicle, BOOLp1)
    return native.call(0xC361AA040D6637A8, Vehiclevehicle, BOOLp1)
end

function natives.SET_VEHICLE_KERS_ALLOWED(Vehiclevehicle, BOOLtoggle)
    return native.call(0x99C82F8A139F3E4E, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_VEHICLE_HAS_KERS(Vehiclevehicle)
    return native.call(0x50634E348C8D44EF, Vehiclevehicle)
end

function natives.SET_PLANE_RESIST_TO_EXPLOSION(Vehiclevehicle, BOOLtoggle)
    return native.call(0xE16142B94664DEFD, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_HELI_RESIST_TO_EXPLOSION(Vehiclevehicle, BOOLp1)
    return native.call(0x8074CC1886802912, Vehiclevehicle, BOOLp1)
end

function natives._0x26D99D5A82FD18E8(Anyp0)
    return native.call(0x26D99D5A82FD18E8, Anyp0)
end

function natives.SET_HYDRAULIC_WHEEL_VALUE(Vehiclevehicle, intwheelId, floatvalue)
    return native.call(0x84EA99C62CB3EF0C, Vehiclevehicle, intwheelId, floatvalue)
end

function natives.GET_HYDRAULIC_WHEEL_VALUE(Vehiclevehicle, intwheelId)
    return native.call(0x0BB5CBDDD0F25AE3, Vehiclevehicle, intwheelId)
end

function natives.SET_CAMBERED_WHEELS_DISABLED(Anyp0, Anyp1)
    return native.call(0x1201E8A3290A3B98, Anyp0, Anyp1)
end

function natives.SET_HYDRAULIC_WHEEL_STATE(Anyp0, Anyp1)
    return native.call(0x8EA86DF356801C7D, Anyp0, Anyp1)
end

function natives.SET_HYDRAULIC_WHEEL_STATE_TRANSITION(Vehiclevehicle, intwheelId, intstate, floatvalue, Anyp4)
    return native.call(0xC24075310A8B9CD1, Vehiclevehicle, intwheelId, intstate, floatvalue, Anyp4)
end

function natives._0x5BA68A0840D546AC(Anyp0, Anyp1)
    return native.call(0x5BA68A0840D546AC, Anyp0, Anyp1)
end

function natives._0x4419966C9936071A(Vehiclevehicle)
    return native.call(0x4419966C9936071A, Vehiclevehicle)
end

function natives._0x870B8B7A766615C8(Anyp0, Anyp1, Anyp2)
    return native.call(0x870B8B7A766615C8, Anyp0, Anyp1, Anyp2)
end

function natives._0x8533CAFDE1F0F336(Anyp0)
    return native.call(0x8533CAFDE1F0F336, Anyp0)
end

function natives.SET_VEHICLE_DAMAGE_MODIFIER(Vehiclevehicle, floatp1)
    return native.call(0x4E20D2A627011E8E, Vehiclevehicle, floatp1)
end

function natives.SET_VEHICLE_UNK_DAMAGE_MULTIPLIER(Vehiclevehicle, floatmultiplier)
    return native.call(0x45A561A9421AB6AD, Vehiclevehicle, floatmultiplier)
end

function natives._0xD4196117AF7BB974(Anyp0, Anyp1)
    return native.call(0xD4196117AF7BB974, Anyp0, Anyp1)
end

function natives._0xBB2333BB87DDD87F(Anyp0, Anyp1)
    return native.call(0xBB2333BB87DDD87F, Anyp0, Anyp1)
end

function natives._0x73561D4425A021A2(Anyp0, Anyp1)
    return native.call(0x73561D4425A021A2, Anyp0, Anyp1)
end

function natives.SET_VEHICLE_CONTROLS_INVERTED(Vehiclevehicle, BOOLstate)
    return native.call(0x5B91B229243351A8, Vehiclevehicle, BOOLstate)
end

function natives._0x7BBE7FF626A591FE(Anyp0)
    return native.call(0x7BBE7FF626A591FE, Anyp0)
end

function natives._0x65B080555EA48149(Anyp0)
    return native.call(0x65B080555EA48149, Anyp0)
end

function natives._0x428AD3E26C8D9EB0(Vehiclevehicle, floatx, floaty, floatz, floatp4)
    return native.call(0x428AD3E26C8D9EB0, Vehiclevehicle, floatx, floaty, floatz, floatp4)
end

function natives._0xE2F53F172B45EDE1()
    return native.call(0xE2F53F172B45EDE1)
end

function natives._0xBA91D045575699AD(Vehiclevehicle)
    return native.call(0xBA91D045575699AD, Vehiclevehicle)
end

function natives._0x80E3357FDEF45C21(Anyp0, Anyp1)
    return native.call(0x80E3357FDEF45C21, Anyp0, Anyp1)
end

function natives.SET_VEHICLE_RAMP_LAUNCH_MODIFIER(Anyp0, Anyp1)
    return native.call(0xEFC13B1CE30D755D, Anyp0, Anyp1)
end

function natives.GET_IS_DOOR_VALID(Vehiclevehicle, intdoorId)
    return native.call(0x645F4B6E8499F632, Vehiclevehicle, intdoorId)
end

function natives.SET_VEHICLE_ROCKET_BOOST_REFILL_TIME(Vehiclevehicle, floatseconds)
    return native.call(0xE00F2AB100B76E89, Vehiclevehicle, floatseconds)
end

function natives.GET_HAS_ROCKET_BOOST(Vehiclevehicle)
    return native.call(0x36D782F68B309BDA, Vehiclevehicle)
end

function natives.IS_VEHICLE_ROCKET_BOOST_ACTIVE(Vehiclevehicle)
    return native.call(0x3D34E80EED4AE3BE, Vehiclevehicle)
end

function natives.SET_VEHICLE_ROCKET_BOOST_ACTIVE(Vehiclevehicle, BOOLactive)
    return native.call(0x81E1552E35DC3839, Vehiclevehicle, BOOLactive)
end

function natives.GET_HAS_RETRACTABLE_WHEELS(Vehiclevehicle)
    return native.call(0xDCA174A42133F08C, Vehiclevehicle)
end

function natives.GET_IS_WHEELS_LOWERED_STATE_ACTIVE(Vehiclevehicle)
    return native.call(0x1DA0DA9CB3F0C8BF, Vehiclevehicle)
end

function natives.RAISE_RETRACTABLE_WHEELS(Vehiclevehicle)
    return native.call(0xF660602546D27BA8, Vehiclevehicle)
end

function natives.LOWER_RETRACTABLE_WHEELS(Vehiclevehicle)
    return native.call(0x5335BE58C083E74E, Vehiclevehicle)
end

function natives.GET_CAN_VEHICLE_JUMP(Vehiclevehicle)
    return native.call(0x9078C0C5EF8C19E9, Vehiclevehicle)
end

function natives.SET_USE_HIGHER_VEHICLE_JUMP_FORCE(Vehiclevehicle, BOOLtoggle)
    return native.call(0xF06A16CA55D138D8, Vehiclevehicle, BOOLtoggle)
end

function natives._0xB2E0C0D6922D31F2(Vehiclevehicle, BOOLtoggle)
    return native.call(0xB2E0C0D6922D31F2, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_WEAPON_CAPACITY(Vehiclevehicle, intweaponIndex, intcapacity)
    return native.call(0x44CD1F493DB2A0A6, Vehiclevehicle, intweaponIndex, intcapacity)
end

function natives.GET_VEHICLE_WEAPON_CAPACITY(Vehiclevehicle, intweaponIndex)
    return native.call(0x8181CE2F25CB9BB7, Vehiclevehicle, intweaponIndex)
end

function natives.GET_VEHICLE_HAS_PARACHUTE(Vehiclevehicle)
    return native.call(0xBC9CFF381338CB4F, Vehiclevehicle)
end

function natives.GET_VEHICLE_CAN_ACTIVATE_PARACHUTE(Vehiclevehicle)
    return native.call(0xA916396DF4154EE3, Vehiclevehicle)
end

function natives.SET_VEHICLE_PARACHUTE_ACTIVE(Vehiclevehicle, BOOLactive)
    return native.call(0x0BFFB028B3DD0A97, Vehiclevehicle, BOOLactive)
end

function natives._0x3DE51E9C80B116CF(Anyp0)
    return native.call(0x3DE51E9C80B116CF, Anyp0)
end

function natives.SET_VEHICLE_RECEIVES_RAMP_DAMAGE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x28D034A93FE31BF5, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_RAMP_SIDEWAYS_LAUNCH_MOTION(Anyp0, Anyp1)
    return native.call(0x1BBAC99C0BC53656, Anyp0, Anyp1)
end

function natives.SET_VEHICLE_RAMP_UPWARDS_LAUNCH_MOTION(Anyp0, Anyp1)
    return native.call(0x756AE6E962168A04, Anyp0, Anyp1)
end

function natives._0x9D30687C57BAA0BB(Anyp0)
    return native.call(0x9D30687C57BAA0BB, Anyp0)
end

function natives.SET_VEHICLE_WEAPONS_DISABLED(Anyp0, Anyp1)
    return native.call(0x86B4B6212CB8B627, Anyp0, Anyp1)
end

function natives._0x41290B40FA63E6DA(Anyp0)
    return native.call(0x41290B40FA63E6DA, Anyp0)
end

function natives.SET_VEHICLE_PARACHUTE_MODEL(Vehiclevehicle, HashmodelHash)
    return native.call(0x4D610C6B56031351, Vehiclevehicle, HashmodelHash)
end

function natives.SET_VEHICLE_PARACHUTE_TEXTURE_VARIATION(Vehiclevehicle, inttextureVariation)
    return native.call(0xA74AD2439468C883, Vehiclevehicle, inttextureVariation)
end

function natives._0x0419B167EE128F33(Anyp0, Anyp1)
    return native.call(0x0419B167EE128F33, Anyp0, Anyp1)
end

function natives._0xF3B0E0AED097A3F5(Anyp0, Anyp1)
    return native.call(0xF3B0E0AED097A3F5, Anyp0, Anyp1)
end

function natives._0xD3E51C0AB8C26EEE(Anyp0, Anyp1)
    return native.call(0xD3E51C0AB8C26EEE, Anyp0, Anyp1)
end

function natives.GET_ALL_VEHICLES(AnyvehsStruct)
    return native.call(0x9B8E1BF04B51F2E8, AnyvehsStruct)
end

function natives._0x72BECCF4B829522E(Anyp0, Anyp1)
    return native.call(0x72BECCF4B829522E, Anyp0, Anyp1)
end

function natives._0x66E3AAFACE2D1EB8(Anyp0, Anyp1, Anyp2)
    return native.call(0x66E3AAFACE2D1EB8, Anyp0, Anyp1, Anyp2)
end

function natives._0x1312DDD8385AEE4E(Anyp0, Anyp1)
    return native.call(0x1312DDD8385AEE4E, Anyp0, Anyp1)
end

function natives._0xEDBC8405B3895CC9(Anyp0, Anyp1)
    return native.call(0xEDBC8405B3895CC9, Anyp0, Anyp1)
end

function natives._0x26E13D440E7F6064(Vehiclevehicle, floatvalue)
    return native.call(0x26E13D440E7F6064, Vehiclevehicle, floatvalue)
end

function natives._0x2FA2494B47FDD009(Anyp0, Anyp1)
    return native.call(0x2FA2494B47FDD009, Anyp0, Anyp1)
end

function natives.SET_VEHICLE_ROCKET_BOOST_PERCENTAGE(Vehiclevehicle, floatpercentage)
    return native.call(0xFEB2DDED3509562E, Vehiclevehicle, floatpercentage)
end

function natives.SET_OPPRESSOR_TRANSFORM_STATE(Vehiclevehicle, BOOLstate)
    return native.call(0x544996C0081ABDEB, Vehiclevehicle, BOOLstate)
end

function natives._0x78CEEE41F49F421F(Anyp0, Anyp1)
    return native.call(0x78CEEE41F49F421F, Anyp0, Anyp1)
end

function natives._0xAF60E6A2936F982A(Anyp0, Anyp1)
    return native.call(0xAF60E6A2936F982A, Anyp0, Anyp1)
end

function natives._0x430A7631A84C9BE7(Anyp0)
    return native.call(0x430A7631A84C9BE7, Anyp0)
end

function natives.DISABLE_VEHICLE_WORLD_COLLISION(Vehiclevehicle)
    return native.call(0x75627043C6AA90AD, Vehiclevehicle)
end

function natives._0x8235F1BEAD557629(Vehiclevehicle, BOOLtoggle)
    return native.call(0x8235F1BEAD557629, Vehiclevehicle, BOOLtoggle)
end

function natives._0x9640E30A7F395E4B(Vehiclevehicle, Anyp1, Anyp2, Anyp3, Anyp4)
    return native.call(0x9640E30A7F395E4B, Vehiclevehicle, Anyp1, Anyp2, Anyp3, Anyp4)
end

function natives._0x0BBB9A7A8FFE931B(Anyp0, Anyp1, Anyp2)
    return native.call(0x0BBB9A7A8FFE931B, Anyp0, Anyp1, Anyp2)
end

function natives.SET_CARGOBOB_HOOK_CAN_ATTACH(Vehiclevehicle, BOOLtoggle)
    return native.call(0x94A68DA412C4007D, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_BOMB_COUNT(Vehiclevehicle, intbombCount)
    return native.call(0xF4B2ED59DEB5D774, Vehiclevehicle, intbombCount)
end

function natives.GET_VEHICLE_BOMB_COUNT(Vehiclevehicle)
    return native.call(0xEA12BD130D7569A1, Vehiclevehicle)
end

function natives.SET_VEHICLE_COUNTERMEASURE_COUNT(Vehiclevehicle, intcounterMeasureCount)
    return native.call(0x9BDA23BF666F0855, Vehiclevehicle, intcounterMeasureCount)
end

function natives.GET_VEHICLE_COUNTERMEASURE_COUNT(Vehiclevehicle)
    return native.call(0xF846AA63DF56B804, Vehiclevehicle)
end

function natives._0x0A3F820A9A9A9AC5(Vehiclevehicle, floatx, floaty, floatz)
    return native.call(0x0A3F820A9A9A9AC5, Vehiclevehicle, floatx, floaty, floatz)
end

function natives._0x51F30DB60626A20E(Vehiclevehicle, floatx, floaty, floatz, floatrotX, floatrotY, floatrotZ, intp7, Anyp8)
    return native.call(0x51F30DB60626A20E, Vehiclevehicle, floatx, floaty, floatz, floatrotX, floatrotY, floatrotZ, intp7, Anyp8)
end

function natives._0x97841634EF7DF1D6(Vehiclevehicle, BOOLtoggle)
    return native.call(0x97841634EF7DF1D6, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_HOVER_TRANSFORM_RATIO(Vehiclevehicle, floatratio)
    return native.call(0xD138FA15C9776837, Vehiclevehicle, floatratio)
end

function natives.SET_VEHICLE_HOVER_TRANSFORM_PERCENTAGE(Vehiclevehicle, floatpercentage)
    return native.call(0x438B3D7CA026FE91, Vehiclevehicle, floatpercentage)
end

function natives.SET_VEHICLE_HOVER_TRANSFORM_ENABLED(Vehiclevehicle, BOOLtoggle)
    return native.call(0xF1211889DF15A763, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_HOVER_TRANSFORM_ACTIVE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x2D55FE374D5FDB91, Vehiclevehicle, BOOLtoggle)
end

function natives.ARE_CHERNOBOG_STABILIZERS_DEPLOYED(Vehiclevehicle)
    return native.call(0x3A9128352EAC9E85, Vehiclevehicle)
end

function natives.FIND_RANDOM_POINT_IN_SPACE(Pedped)
    return native.call(0x8DC9675797123522, Pedped)
end

function natives.SET_DEPLOY_HELI_STUB_WINGS(Vehiclevehicle, BOOLdeploy, BOOLp2)
    return native.call(0xB251E0B33E58B424, Vehiclevehicle, BOOLdeploy, BOOLp2)
end

function natives.ARE_HELI_STUB_WINGS_DEPLOYED(Vehiclevehicle)
    return native.call(0xAEF12960FA943792, Vehiclevehicle)
end

function natives._0xAA653AE61924B0A0(Vehiclevehicle, BOOLtoggle)
    return native.call(0xAA653AE61924B0A0, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_VEHICLE_TURRET_UNK(Vehiclevehicle, intindex, BOOLtoggle)
    return native.call(0xC60060EB0D8AC7B1, Vehiclevehicle, intindex, BOOLtoggle)
end

function natives.SET_SPECIALFLIGHT_WING_RATIO(Vehiclevehicle, floatratio)
    return native.call(0x70A252F60A3E036B, Vehiclevehicle, floatratio)
end

function natives.SET_DISABLE_TURRET_MOVEMENT_THIS_FRAME(Vehiclevehicle, intturretId)
    return native.call(0xE615BB7A7752C76A, Vehiclevehicle, intturretId)
end

function natives._0x887FA38787DE8C72(Vehiclevehicle)
    return native.call(0x887FA38787DE8C72, Vehiclevehicle)
end

function natives.SET_UNK_FLOAT_FOR_SUBMARINE_VEHICLE_TASK(Vehiclevehicle, floatvalue)
    return native.call(0x498218259FB7C72D, Vehiclevehicle, floatvalue)
end

function natives.SET_UNK_BOOL_FOR_SUBMARINE_VEHICLE_TASK(Vehiclevehicle, BOOLvalue)
    return native.call(0x41B9FB92EDED32A6, Vehiclevehicle, BOOLvalue)
end

function natives._0x36DE109527A2C0C4(BOOLtoggle)
    return native.call(0x36DE109527A2C0C4, BOOLtoggle)
end

function natives._0x82E0AC411E41A5B4(BOOLtoggle)
    return native.call(0x82E0AC411E41A5B4, BOOLtoggle)
end

function natives._0x99A05839C46CE316(BOOLtoggle)
    return native.call(0x99A05839C46CE316, BOOLtoggle)
end

function natives.GET_IS_VEHICLE_SHUNT_BOOST_ACTIVE(Vehiclevehicle)
    return native.call(0xA2459F72C14E2E8D, Vehiclevehicle)
end

function natives._0xE8718FAF591FD224(Vehiclevehicle)
    return native.call(0xE8718FAF591FD224, Vehiclevehicle)
end

function natives.GET_LAST_RAMMED_VEHICLE(Vehiclevehicle)
    return native.call(0x04F2FA6E234162F7, Vehiclevehicle)
end

function natives.SET_DISABLE_VEHICLE_UNK(BOOLtoggle)
    return native.call(0x143921E45EC44D62, BOOLtoggle)
end

function natives.SET_VEHICLE_NITRO_ENABLED(Vehiclevehicle, BOOLtoggle, floatlevel, floatpower, floatrechargeTime, BOOLdisableSound)
    return native.call(0xC8E9B6B71B8E660D, Vehiclevehicle, BOOLtoggle, floatlevel, floatpower, floatrechargeTime, BOOLdisableSound)
end

function natives.SET_VEHICLE_WHEELS_DEAL_DAMAGE(Vehiclevehicle, BOOLtoggle)
    return native.call(0x2970EAA18FD5E42F, Vehiclevehicle, BOOLtoggle)
end

function natives.SET_DISABLE_VEHICLE_UNK_2(BOOLtoggle)
    return native.call(0x211E95CE9903940C, BOOLtoggle)
end

function natives._0x5BBCF35BF6E456F7(BOOLtoggle)
    return native.call(0x5BBCF35BF6E456F7, BOOLtoggle)
end

function natives.GET_DOES_VEHICLE_HAVE_TOMBSTONE(Vehiclevehicle)
    return native.call(0x71AFB258CCED3A27, Vehiclevehicle)
end

function natives.HIDE_VEHICLE_TOMBSTONE(Vehiclevehicle, BOOLtoggle)
    return native.call(0xAE71FB656C600587, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_IS_VEHICLE_EMP_DISABLED(Vehiclevehicle)
    return native.call(0x0506ED94363AD905, Vehiclevehicle)
end

function natives._0x8F0D5BA1C2CC91D7(BOOLtoggle)
    return native.call(0x8F0D5BA1C2CC91D7, BOOLtoggle)
end

function natives.GET_TYRE_HEALTH(Vehiclevehicle, intwheelIndex)
    return native.call(0x55EAB010FAEE9380, Vehiclevehicle, intwheelIndex)
end

function natives.SET_TYRE_HEALTH(Vehiclevehicle, intwheelIndex, floathealth)
    return native.call(0x74C68EF97645E79D, Vehiclevehicle, intwheelIndex, floathealth)
end

function natives.GET_TYRE_WEAR_MULTIPLIER(Vehiclevehicle, intwheelIndex)
    return native.call(0x6E387895952F4F71, Vehiclevehicle, intwheelIndex)
end

function natives.SET_TYRE_WEAR_MULTIPLIER(Vehiclevehicle, intwheelIndex, floatmultiplier)
    return native.call(0x01894E2EDE923CA2, Vehiclevehicle, intwheelIndex, floatmultiplier)
end

function natives.SET_TYRE_SOFTNESS_MULTIPLIER(Vehiclevehicle, intwheelIndex, floatmultiplier)
    return native.call(0x392183BB9EA57697, Vehiclevehicle, intwheelIndex, floatmultiplier)
end

function natives.SET_TYRE_TRACTION_LOSS_MULTIPLIER(Vehiclevehicle, intwheelIndex, floatmultiplier)
    return native.call(0xC970D0E0FC31D768, Vehiclevehicle, intwheelIndex, floatmultiplier)
end

function natives._0xF8B49F5BA7F850E7(Vehiclevehicle, intp1)
    return native.call(0xF8B49F5BA7F850E7, Vehiclevehicle, intp1)
end

function natives.SET_REDUCE_DRIFT_VEHICLE_SUSPENSION(Vehiclevehicle, BOOLenable)
    return native.call(0x3A375167F5782A65, Vehiclevehicle, BOOLenable)
end

function natives.SET_DRIFT_TYRES_ENABLED(Vehiclevehicle, BOOLtoggle)
    return native.call(0x5AC79C98C5C17F05, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_DRIFT_TYRES_ENABLED(Vehiclevehicle)
    return native.call(0x2F5A72430E78C8D3, Vehiclevehicle)
end

function natives.NETWORK_USE_HIGH_PRECISION_VEHICLE_BLENDING(Vehiclevehicle, BOOLtoggle)
    return native.call(0xEC0C1D4922AF9754, Vehiclevehicle, BOOLtoggle)
end

function natives.GET_WATER_HEIGHT(floatx, floaty, floatz, floatheight)
    return native.call(0xF6829842C06AE524, floatx, floaty, floatz, floatheight)
end

function natives.GET_WATER_HEIGHT_NO_WAVES(floatx, floaty, floatz, floatheight)
    return native.call(0x8EE6B53CE13A9794, floatx, floaty, floatz, floatheight)
end

function natives.TEST_PROBE_AGAINST_WATER(floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Vector3result)
    return native.call(0xFFA5D878809819DB, floatx1, floaty1, floatz1, floatx2, floaty2, floatz2, Vector3result)
end

function natives.TEST_PROBE_AGAINST_ALL_WATER(Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
    return native.call(0x8974647ED222EA5F, Anyp0, Anyp1, Anyp2, Anyp3, Anyp4, Anyp5, Anyp6, Anyp7)
end

function natives.TEST_VERTICAL_PROBE_AGAINST_ALL_WATER(floatx, floaty, floatz, Anyp3, floatheight)
    return native.call(0x2B3451FA1E3142E2, floatx, floaty, floatz, Anyp3, floatheight)
end

function natives.MODIFY_WATER(floatx, floaty, floatradius, floatheight)
    return native.call(0xC443FD757C3BA637, floatx, floaty, floatradius, floatheight)
end

function natives.ADD_EXTRA_CALMING_QUAD(floatxLow, floatyLow, floatxHigh, floatyHigh, floatheight)
    return native.call(0xFDBF4CDBC07E1706, floatxLow, floatyLow, floatxHigh, floatyHigh, floatheight)
end

function natives.REMOVE_EXTRA_CALMING_QUAD(intp0)
    return native.call(0xB1252E3E59A82AAF, intp0)
end

function natives.SET_DEEP_OCEAN_SCALER(floatintensity)
    return native.call(0xB96B00E976BE977F, floatintensity)
end

function natives.GET_DEEP_OCEAN_SCALER()
    return native.call(0x2B2A2CC86778B619)
end

function natives._0x547237AA71AB44DE(floatp0)
    return native.call(0x547237AA71AB44DE, floatp0)
end

function natives.RESET_DEEP_OCEAN_SCALER()
    return native.call(0x5E5E99285AE812DB)
end

function natives.ENABLE_LASER_SIGHT_RENDERING(BOOLtoggle)
    return native.call(0xC8B46D7727D864AA, BOOLtoggle)
end

function natives.GET_WEAPON_COMPONENT_TYPE_MODEL(HashcomponentHash)
    return native.call(0x0DB57B41EC1DB083, HashcomponentHash)
end

function natives.GET_WEAPONTYPE_MODEL(HashweaponHash)
    return native.call(0xF46CDC33180FDA94, HashweaponHash)
end

function natives.GET_WEAPONTYPE_SLOT(HashweaponHash)
    return native.call(0x4215460B9B8B7FA0, HashweaponHash)
end

function natives.GET_WEAPONTYPE_GROUP(HashweaponHash)
    return native.call(0xC3287EE3050FB74C, HashweaponHash)
end

function natives.GET_WEAPON_COMPONENT_VARIANT_EXTRA_COMPONENT_COUNT(HashcomponentHash)
    return native.call(0x6558AC7C17BFEF58, HashcomponentHash)
end

function natives.GET_WEAPON_COMPONENT_VARIANT_EXTRA_COMPONENT_MODEL(HashcomponentHash, intextraComponentIndex)
    return native.call(0x4D1CB8DC40208A17, HashcomponentHash, intextraComponentIndex)
end

function natives.SET_CURRENT_PED_WEAPON(Pedped, HashweaponHash, BOOLbForceInHand)
    return native.call(0xADF692B254977C0C, Pedped, HashweaponHash, BOOLbForceInHand)
end

function natives.GET_CURRENT_PED_WEAPON(Pedped, HashweaponHash, BOOLp2)
    return native.call(0x3A87E44BB9A01D54, Pedped, HashweaponHash, BOOLp2)
end

function natives.GET_CURRENT_PED_WEAPON_ENTITY_INDEX(Pedped, Anyp1)
    return native.call(0x3B390A939AF0B5FC, Pedped, Anyp1)
end

function natives.GET_BEST_PED_WEAPON(Pedped, BOOLp1)
    return native.call(0x8483E98E8B888AE2, Pedped, BOOLp1)
end

function natives.SET_CURRENT_PED_VEHICLE_WEAPON(Pedped, HashweaponHash)
    return native.call(0x75C55983C2C39DAA, Pedped, HashweaponHash)
end

function natives.GET_CURRENT_PED_VEHICLE_WEAPON(Pedped, HashweaponHash)
    return native.call(0x1017582BCD3832DC, Pedped, HashweaponHash)
end

function natives._0x50276EF8172F5F12(Pedped)
    return native.call(0x50276EF8172F5F12, Pedped)
end

function natives.IS_PED_ARMED(Pedped, inttypeFlags)
    return native.call(0x475768A975D5AD17, Pedped, inttypeFlags)
end

function natives.IS_WEAPON_VALID(HashweaponHash)
    return native.call(0x937C71165CF334B3, HashweaponHash)
end

function natives.HAS_PED_GOT_WEAPON(Pedped, HashweaponHash, BOOLp2)
    return native.call(0x8DECB02F88F428BC, Pedped, HashweaponHash, BOOLp2)
end

function natives.IS_PED_WEAPON_READY_TO_SHOOT(Pedped)
    return native.call(0xB80CA294F2F26749, Pedped)
end

function natives.GET_PED_WEAPONTYPE_IN_SLOT(Pedped, HashweaponSlot)
    return native.call(0xEFFED78E9011134D, Pedped, HashweaponSlot)
end

function natives.GET_AMMO_IN_PED_WEAPON(Pedped, Hashweaponhash)
    return native.call(0x015A522136D7F951, Pedped, Hashweaponhash)
end

function natives.ADD_AMMO_TO_PED(Pedped, HashweaponHash, intammo)
    return native.call(0x78F0424C34306220, Pedped, HashweaponHash, intammo)
end

function natives.SET_PED_AMMO(Pedped, HashweaponHash, intammo, BOOLp3)
    return native.call(0x14E56BC5B5DB6A19, Pedped, HashweaponHash, intammo, BOOLp3)
end

function natives.SET_PED_INFINITE_AMMO(Pedped, BOOLtoggle, HashweaponHash)
    return native.call(0x3EDCB0505123623B, Pedped, BOOLtoggle, HashweaponHash)
end

function natives.SET_PED_INFINITE_AMMO_CLIP(Pedped, BOOLtoggle)
    return native.call(0x183DADC6AA953186, Pedped, BOOLtoggle)
end

function natives._0x24C024BA8379A70A(Anyp0, Anyp1)
    return native.call(0x24C024BA8379A70A, Anyp0, Anyp1)
end

function natives.GIVE_WEAPON_TO_PED(Pedped, HashweaponHash, intammoCount, BOOLisHidden, BOOLbForceInHand)
    return native.call(0xBF0FD6E56C964FCB, Pedped, HashweaponHash, intammoCount, BOOLisHidden, BOOLbForceInHand)
end

function natives.GIVE_DELAYED_WEAPON_TO_PED(Pedped, HashweaponHash, intammoCount, BOOLbForceInHand)
    return native.call(0xB282DC6EBD803C75, Pedped, HashweaponHash, intammoCount, BOOLbForceInHand)
end

function natives.REMOVE_ALL_PED_WEAPONS(Pedped, BOOLp1)
    return native.call(0xF25DF915FA38C5F3, Pedped, BOOLp1)
end

function natives.REMOVE_WEAPON_FROM_PED(Pedped, HashweaponHash)
    return native.call(0x4899CB088EDF59B8, Pedped, HashweaponHash)
end

function natives.HIDE_PED_WEAPON_FOR_SCRIPTED_CUTSCENE(Pedped, BOOLtoggle)
    return native.call(0x6F6981D2253C208F, Pedped, BOOLtoggle)
end

function natives.SET_PED_CURRENT_WEAPON_VISIBLE(Pedped, BOOLvisible, BOOLdeselectWeapon, BOOLp3, BOOLp4)
    return native.call(0x0725A4CCFDED9A70, Pedped, BOOLvisible, BOOLdeselectWeapon, BOOLp3, BOOLp4)
end

function natives.SET_PED_DROPS_WEAPONS_WHEN_DEAD(Pedped, BOOLtoggle)
    return native.call(0x476AE72C1D19D1A8, Pedped, BOOLtoggle)
end

function natives.HAS_PED_BEEN_DAMAGED_BY_WEAPON(Pedped, HashweaponHash, intweaponType)
    return native.call(0x2D343D2219CD027A, Pedped, HashweaponHash, intweaponType)
end

function natives.CLEAR_PED_LAST_WEAPON_DAMAGE(Pedped)
    return native.call(0x0E98F88A24C5F4B8, Pedped)
end

function natives.HAS_ENTITY_BEEN_DAMAGED_BY_WEAPON(Entityentity, HashweaponHash, intweaponType)
    return native.call(0x131D401334815E94, Entityentity, HashweaponHash, intweaponType)
end

function natives.CLEAR_ENTITY_LAST_WEAPON_DAMAGE(Entityentity)
    return native.call(0xAC678E40BE7C74D2, Entityentity)
end

function natives.SET_PED_DROPS_WEAPON(Pedped)
    return native.call(0x6B7513D9966FBEC0, Pedped)
end

function natives.SET_PED_DROPS_INVENTORY_WEAPON(Pedped, HashweaponHash, floatxOffset, floatyOffset, floatzOffset, intammoCount)
    return native.call(0x208A1888007FC0E6, Pedped, HashweaponHash, floatxOffset, floatyOffset, floatzOffset, intammoCount)
end

function natives.GET_MAX_AMMO_IN_CLIP(Pedped, HashweaponHash, BOOLp2)
    return native.call(0xA38DCFFCEA8962FA, Pedped, HashweaponHash, BOOLp2)
end

function natives.GET_AMMO_IN_CLIP(Pedped, HashweaponHash, intammo)
    return native.call(0x2E1202248937775C, Pedped, HashweaponHash, intammo)
end

function natives.SET_AMMO_IN_CLIP(Pedped, HashweaponHash, intammo)
    return native.call(0xDCD2A934D65CB497, Pedped, HashweaponHash, intammo)
end

function natives.GET_MAX_AMMO(Pedped, HashweaponHash, intammo)
    return native.call(0xDC16122C7A20C933, Pedped, HashweaponHash, intammo)
end

function natives.GET_MAX_AMMO_BY_TYPE(Pedped, HashammoTypeHash, intammo)
    return native.call(0x585847C5E4E11709, Pedped, HashammoTypeHash, intammo)
end

function natives.ADD_AMMO_TO_PED_BY_TYPE(Pedped, HashammoTypeHash, intammo)
    return native.call(0x2472622CE1F2D45F, Pedped, HashammoTypeHash, intammo)
end

function natives.SET_PED_AMMO_BY_TYPE(Pedped, HashammoTypeHash, intammo)
    return native.call(0x5FD1E1F011E76D7E, Pedped, HashammoTypeHash, intammo)
end

function natives.GET_PED_AMMO_BY_TYPE(Pedped, HashammoTypeHash)
    return native.call(0x39D22031557946C1, Pedped, HashammoTypeHash)
end

function natives.SET_PED_AMMO_TO_DROP(Pedped, intp1)
    return native.call(0xA4EFEF9440A5B0EF, Pedped, intp1)
end

function natives.SET_PICKUP_AMMO_AMOUNT_SCALER(floatp0)
    return native.call(0xE620FD3512A04F18, floatp0)
end

function natives.GET_PED_AMMO_TYPE_FROM_WEAPON(Pedped, HashweaponHash)
    return native.call(0x7FEAD38B326B9F74, Pedped, HashweaponHash)
end

function natives.GET_PED_AMMO_TYPE_FROM_WEAPON_2(Pedped, HashweaponHash)
    return native.call(0xF489B44DD5AF4BD9, Pedped, HashweaponHash)
end

function natives.GET_PED_LAST_WEAPON_IMPACT_COORD(Pedped, Vector3coords)
    return native.call(0x6C4D0409BA1A2BC2, Pedped, Vector3coords)
end

function natives.SET_PED_GADGET(Pedped, HashgadgetHash, BOOLp2)
    return native.call(0xD0D7B1E680ED4A1A, Pedped, HashgadgetHash, BOOLp2)
end

function natives.GET_IS_PED_GADGET_EQUIPPED(Pedped, HashgadgetHash)
    return native.call(0xF731332072F5156C, Pedped, HashgadgetHash)
end

function natives.GET_SELECTED_PED_WEAPON(Pedped)
    return native.call(0x0A6DB4965674D243, Pedped)
end

function natives.EXPLODE_PROJECTILES(Pedped, HashweaponHash, BOOLp2)
    return native.call(0xFC4BD125DE7611E4, Pedped, HashweaponHash, BOOLp2)
end

function natives.REMOVE_ALL_PROJECTILES_OF_TYPE(HashweaponHash, BOOLexplode)
    return native.call(0xFC52E0F37E446528, HashweaponHash, BOOLexplode)
end

function natives.GET_LOCKON_DISTANCE_OF_CURRENT_PED_WEAPON(Pedped)
    return native.call(0x840F03E9041E2C9C, Pedped)
end

function natives.GET_MAX_RANGE_OF_CURRENT_PED_WEAPON(Pedped)
    return native.call(0x814C9D19DFD69679, Pedped)
end

function natives.HAS_VEHICLE_GOT_PROJECTILE_ATTACHED(Peddriver, Vehiclevehicle, HashweaponHash, Anyp3)
    return native.call(0x717C8481234E3B88, Peddriver, Vehiclevehicle, HashweaponHash, Anyp3)
end

function natives.GIVE_WEAPON_COMPONENT_TO_PED(Pedped, HashweaponHash, HashcomponentHash)
    return native.call(0xD966D51AA5B28BB9, Pedped, HashweaponHash, HashcomponentHash)
end

function natives.REMOVE_WEAPON_COMPONENT_FROM_PED(Pedped, HashweaponHash, HashcomponentHash)
    return native.call(0x1E8BE90C74FB4C09, Pedped, HashweaponHash, HashcomponentHash)
end

function natives.HAS_PED_GOT_WEAPON_COMPONENT(Pedped, HashweaponHash, HashcomponentHash)
    return native.call(0xC593212475FAE340, Pedped, HashweaponHash, HashcomponentHash)
end

function natives.IS_PED_WEAPON_COMPONENT_ACTIVE(Pedped, HashweaponHash, HashcomponentHash)
    return native.call(0x0D78DE0572D3969E, Pedped, HashweaponHash, HashcomponentHash)
end

function natives.REFILL_AMMO_INSTANTLY(Pedped)
    return native.call(0x8C0D57EA686FAD87, Pedped)
end

function natives.MAKE_PED_RELOAD(Pedped)
    return native.call(0x20AE33F3AC9C0033, Pedped)
end

function natives.REQUEST_WEAPON_ASSET(HashweaponHash, intp1, intp2)
    return native.call(0x5443438F033E29C3, HashweaponHash, intp1, intp2)
end

function natives.HAS_WEAPON_ASSET_LOADED(HashweaponHash)
    return native.call(0x36E353271F0E90EE, HashweaponHash)
end

function natives.REMOVE_WEAPON_ASSET(HashweaponHash)
    return native.call(0xAA08EF13F341C8FC, HashweaponHash)
end

function natives.CREATE_WEAPON_OBJECT(HashweaponHash, intammoCount, floatx, floaty, floatz, BOOLshowWorldModel, floatscale, Anyp7, Anyp8, Anyp9)
    return native.call(0x9541D3CF0D398F36, HashweaponHash, intammoCount, floatx, floaty, floatz, BOOLshowWorldModel, floatscale, Anyp7, Anyp8, Anyp9)
end

function natives.GIVE_WEAPON_COMPONENT_TO_WEAPON_OBJECT(ObjectweaponObject, HashaddonHash)
    return native.call(0x33E179436C0B31DB, ObjectweaponObject, HashaddonHash)
end

function natives.REMOVE_WEAPON_COMPONENT_FROM_WEAPON_OBJECT(Anyp0, Anyp1)
    return native.call(0xF7D82B0D66777611, Anyp0, Anyp1)
end

function natives.HAS_WEAPON_GOT_WEAPON_COMPONENT(Objectweapon, HashaddonHash)
    return native.call(0x76A18844E743BF91, Objectweapon, HashaddonHash)
end

function natives.GIVE_WEAPON_OBJECT_TO_PED(ObjectweaponObject, Pedped)
    return native.call(0xB1FA61371AF7C4B7, ObjectweaponObject, Pedped)
end

function natives.DOES_WEAPON_TAKE_WEAPON_COMPONENT(HashweaponHash, HashcomponentHash)
    return native.call(0x5CEE3DF569CECAB0, HashweaponHash, HashcomponentHash)
end

function natives.GET_WEAPON_OBJECT_FROM_PED(Pedped, BOOLp1)
    return native.call(0xCAE1DC9A0E22A16D, Pedped, BOOLp1)
end

function natives.GIVE_LOADOUT_TO_PED(Pedped, HashloadoutHash)
    return native.call(0x68F8BE6AF5CDF8A6, Pedped, HashloadoutHash)
end

function natives.SET_PED_WEAPON_TINT_INDEX(Pedped, HashweaponHash, inttintIndex)
    return native.call(0x50969B9B89ED5738, Pedped, HashweaponHash, inttintIndex)
end

function natives.GET_PED_WEAPON_TINT_INDEX(Pedped, HashweaponHash)
    return native.call(0x2B9EEDC07BD06B9F, Pedped, HashweaponHash)
end

function natives.SET_WEAPON_OBJECT_TINT_INDEX(Objectweapon, inttintIndex)
    return native.call(0xF827589017D4E4A9, Objectweapon, inttintIndex)
end

function natives.GET_WEAPON_OBJECT_TINT_INDEX(Objectweapon)
    return native.call(0xCD183314F7CD2E57, Objectweapon)
end

function natives.GET_WEAPON_TINT_COUNT(HashweaponHash)
    return native.call(0x5DCF6C5CAB2E9BF7, HashweaponHash)
end

function natives.SET_PED_WEAPON_LIVERY_COLOR(Pedped, HashweaponHash, HashcamoComponentHash, intcolorIndex)
    return native.call(0x9FE5633880ECD8ED, Pedped, HashweaponHash, HashcamoComponentHash, intcolorIndex)
end

function natives.GET_PED_WEAPON_LIVERY_COLOR(Pedped, HashweaponHash, HashcamoComponentHash)
    return native.call(0xF0A60040BE558F2D, Pedped, HashweaponHash, HashcamoComponentHash)
end

function natives.SET_WEAPON_OBJECT_LIVERY_COLOR(ObjectweaponObject, HashcamoComponentHash, intcolorIndex)
    return native.call(0x5DA825A85D0EA6E6, ObjectweaponObject, HashcamoComponentHash, intcolorIndex)
end

function natives.GET_WEAPON_OBJECT_LIVERY_COLOR(ObjectweaponObject, HashcamoComponentHash)
    return native.call(0xB3EA4FEABF41464B, ObjectweaponObject, HashcamoComponentHash)
end

function natives._0xA2C9AC24B4061285(Pedped, HashweaponHash)
    return native.call(0xA2C9AC24B4061285, Pedped, HashweaponHash)
end

function natives._0x977CA98939E82E4B(ObjectweaponObject, intp1)
    return native.call(0x977CA98939E82E4B, ObjectweaponObject, intp1)
end

function natives.GET_WEAPON_HUD_STATS(HashweaponHash, AnyoutData)
    return native.call(0xD92C739EE34C9EBA, HashweaponHash, AnyoutData)
end

function natives.GET_WEAPON_COMPONENT_HUD_STATS(HashcomponentHash, AnyoutData)
    return native.call(0xB3CAF387AE12E9F8, HashcomponentHash, AnyoutData)
end

function natives.GET_WEAPON_DAMAGE(HashweaponHash, HashcomponentHash)
    return native.call(0x3133B907D8B32053, HashweaponHash, HashcomponentHash)
end

function natives.GET_WEAPON_CLIP_SIZE(HashweaponHash)
    return native.call(0x583BE370B1EC6EB4, HashweaponHash)
end

function natives.GET_WEAPON_TIME_BETWEEN_SHOTS(HashweaponHash)
    return native.call(0x065D2AACAD8CF7A4, HashweaponHash)
end

function natives.SET_PED_CHANCE_OF_FIRING_BLANKS(Pedped, floatxBias, floatyBias)
    return native.call(0x8378627201D5497D, Pedped, floatxBias, floatyBias)
end

function natives.SET_PED_SHOOT_ORDNANCE_WEAPON(Pedped, floatp1)
    return native.call(0xB4C8D77C80C0421E, Pedped, floatp1)
end

function natives.REQUEST_WEAPON_HIGH_DETAIL_MODEL(EntityweaponObject)
    return native.call(0x48164DBB970AC3F0, EntityweaponObject)
end

function natives.SET_WEAPON_DAMAGE_MODIFIER_THIS_FRAME(HashweaponHash, floatdamageMultiplier)
    return native.call(0x4757F00BC6323CFE, HashweaponHash, floatdamageMultiplier)
end

function natives.SET_WEAPON_EXPLOSION_RADIUS_MULTIPLIER(HashweaponHash, floatmultiplier)
    return native.call(0x4AE5AC8B852D642C, HashweaponHash, floatmultiplier)
end

function natives._0xE6D2CEDD370FF98E(Anyp0, Anyp1)
    return native.call(0xE6D2CEDD370FF98E, Anyp0, Anyp1)
end

function natives.IS_PED_CURRENT_WEAPON_SILENCED(Pedped)
    return native.call(0x65F0C5AE05943EC7, Pedped)
end

function natives.IS_FLASH_LIGHT_ON(Pedped)
    return native.call(0x4B7620C47217126C, Pedped)
end

function natives.SET_FLASH_LIGHT_FADE_DISTANCE(floatdistance)
    return native.call(0xCEA66DAD478CD39B, floatdistance)
end

function natives.SET_FLASH_LIGHT_ENABLED(Pedped, BOOLtoggle)
    return native.call(0x988DB6FE9B3AC000, Pedped, BOOLtoggle)
end

function natives.SET_WEAPON_ANIMATION_OVERRIDE(Pedped, HashanimStyle)
    return native.call(0x1055AC3A667F09D9, Pedped, HashanimStyle)
end

function natives.GET_WEAPON_DAMAGE_TYPE(HashweaponHash)
    return native.call(0x3BE0BB12D25FB305, HashweaponHash)
end

function natives._0xE4DCEC7FD5B739A5(Pedped)
    return native.call(0xE4DCEC7FD5B739A5, Pedped)
end

function natives.CAN_USE_WEAPON_ON_PARACHUTE(HashweaponHash)
    return native.call(0xBC7BE5ABC0879F74, HashweaponHash)
end

function natives.CREATE_AIR_DEFENSE_SPHERE(floatx, floaty, floatz, floatradius, floatp4, floatp5, floatp6, HashweaponHash)
    return native.call(0x91EF34584710BE99, floatx, floaty, floatz, floatradius, floatp4, floatp5, floatp6, HashweaponHash)
end

function natives.CREATE_AIR_DEFENSE_AREA(floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, HashweaponHash)
    return native.call(0x9DA58CDBF6BDBC08, floatp0, floatp1, floatp2, floatp3, floatp4, floatp5, floatp6, floatp7, floatp8, floatp9, HashweaponHash)
end

function natives.REMOVE_AIR_DEFENSE_ZONE(intzoneId)
    return native.call(0x0ABF535877897560, intzoneId)
end

function natives.REMOVE_ALL_AIR_DEFENSE_ZONES()
    return native.call(0x1E45B34ADEBEE48E)
end

function natives.SET_PLAYER_AIR_DEFENSE_ZONE_FLAG(Playerplayer, intzoneId, BOOLenable)
    return native.call(0xECDC202B25E5CF48, Playerplayer, intzoneId, BOOLenable)
end

function natives.IS_ANY_AIR_DEFENSE_ZONE_INSIDE_SPHERE(floatx, floaty, floatz, floatradius, intoutZoneId)
    return native.call(0xDAB963831DBFD3F4, floatx, floaty, floatz, floatradius, intoutZoneId)
end

function natives.FIRE_AIR_DEFENSE_WEAPON(intzoneId, floatx, floaty, floatz)
    return native.call(0x44F1012B69313374, intzoneId, floatx, floaty, floatz)
end

function natives.DOES_AIR_DEFENSE_ZONE_EXIST(intzoneId)
    return native.call(0xCD79A550999D7D4F, intzoneId)
end

function natives.SET_CAN_PED_EQUIP_WEAPON(Pedped, HashweaponHash, BOOLtoggle)
    return native.call(0xB4771B9AAF4E68E4, Pedped, HashweaponHash, BOOLtoggle)
end

function natives.SET_CAN_PED_EQUIP_ALL_WEAPONS(Pedped, BOOLtoggle)
    return native.call(0xEFF296097FF1E509, Pedped, BOOLtoggle)
end

function natives.GET_ZONE_AT_COORDS(floatx, floaty, floatz)
    return native.call(0x27040C25DE6CB2F4, floatx, floaty, floatz)
end

function natives.GET_ZONE_FROM_NAME_ID(constcharzoneName)
    return native.call(0x98CD1D2934B76CC1, constcharzoneName)
end

function natives.GET_ZONE_POPSCHEDULE(intzoneId)
    return native.call(0x4334BC40AA0CB4BB, intzoneId)
end

function natives.GET_NAME_OF_ZONE(floatx, floaty, floatz)
    return native.call(0xCD90657D4C30E1CA, floatx, floaty, floatz)
end

function natives.SET_ZONE_ENABLED(intzoneId, BOOLtoggle)
    return native.call(0xBA5ECEEA120E5611, intzoneId, BOOLtoggle)
end

function natives.GET_ZONE_SCUMMINESS(intzoneId)
    return native.call(0x5F7B268D15BA0739, intzoneId)
end

function natives.OVERRIDE_POPSCHEDULE_VEHICLE_MODEL(intscheduleId, HashvehicleHash)
    return native.call(0x5F7D596BAC2E7777, intscheduleId, HashvehicleHash)
end

function natives.CLEAR_POPSCHEDULE_OVERRIDE_VEHICLE_MODEL(intscheduleId)
    return native.call(0x5C0DE367AA0D911C, intscheduleId)
end

function natives.GET_HASH_OF_MAP_AREA_AT_COORDS(floatx, floaty, floatz)
    return native.call(0x7EE64D51E8498728, floatx, floaty, floatz)
end

return natives
 
Onaylı Üye
Katılım
31 Ocak 2021
Mesajlar
107
Tepki puanı
11
Ödüller
5
Sosyal
5 HİZMET YILI
Sorun yaşamayız devamında umarm
 
Onaylı Üye
Katılım
3 Tem 2022
Mesajlar
52
Tepki puanı
2
Ödüller
2
Yaş
25
3 HİZMET YILI
thx for sharing its so useful <3
 
Durum
Üzgünüz bu konu cevaplar için kapatılmıştır...