Bulk_UnityEngine.UnityWebRequestWWWModule_0.cpp 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598
  1. #include "il2cpp-config.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <cstring>
  8. #include <string.h>
  9. #include <stdio.h>
  10. #include <cmath>
  11. #include <limits>
  12. #include <assert.h>
  13. #include <stdint.h>
  14. #include "il2cpp-class-internals.h"
  15. #include "codegen/il2cpp-codegen.h"
  16. #include "il2cpp-object-internals.h"
  17. // UnityEngine.WWW
  18. struct WWW_t3688466362;
  19. // System.String
  20. struct String_t;
  21. // UnityEngine.CustomYieldInstruction
  22. struct CustomYieldInstruction_t1895667560;
  23. // UnityEngine.Networking.UnityWebRequest
  24. struct UnityWebRequest_t463507806;
  25. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  26. struct UnityWebRequestAsyncOperation_t3852015985;
  27. // UnityEngine.WWWForm
  28. struct WWWForm_t4064702195;
  29. // System.Text.Encoding
  30. struct Encoding_t1523322056;
  31. // UnityEngine.AssetBundle
  32. struct AssetBundle_t1153907252;
  33. // UnityEngine.Object
  34. struct Object_t631007953;
  35. // UnityEngine.Networking.DownloadHandler
  36. struct DownloadHandler_t2937767557;
  37. // UnityEngine.Networking.DownloadHandlerAssetBundle
  38. struct DownloadHandlerAssetBundle_t197128434;
  39. // System.Byte[]
  40. struct ByteU5BU5D_t4116647657;
  41. // System.Collections.Generic.List`1<System.Byte[]>
  42. struct List_1_t1293755103;
  43. // System.Collections.Generic.List`1<System.String>
  44. struct List_1_t3319525431;
  45. // System.Text.DecoderFallback
  46. struct DecoderFallback_t3123823036;
  47. // System.Text.EncoderFallback
  48. struct EncoderFallback_t1188251036;
  49. // System.Reflection.Assembly
  50. struct Assembly_t;
  51. // System.Object[]
  52. struct ObjectU5BU5D_t2843939325;
  53. // System.Char[]
  54. struct CharU5BU5D_t3528271667;
  55. // System.Void
  56. struct Void_t1185182177;
  57. // System.Action`1<UnityEngine.AsyncOperation>
  58. struct Action_1_t1617499438;
  59. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  60. struct Dictionary_2_t1632706988;
  61. // UnityEngine.Networking.UploadHandler
  62. struct UploadHandler_t2993558019;
  63. extern RuntimeClass* Encoding_t1523322056_il2cpp_TypeInfo_var;
  64. extern const uint32_t WWW_EscapeURL_m4251687403_MetadataUsageId;
  65. extern RuntimeClass* Object_t631007953_il2cpp_TypeInfo_var;
  66. extern RuntimeClass* DownloadHandlerAssetBundle_t197128434_il2cpp_TypeInfo_var;
  67. extern const uint32_t WWW_get_assetBundle_m3753667806_MetadataUsageId;
  68. extern RuntimeClass* ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var;
  69. extern const uint32_t WWW_get_bytes_m3061182897_MetadataUsageId;
  70. extern RuntimeClass* Int64_t3736567304_il2cpp_TypeInfo_var;
  71. extern RuntimeClass* String_t_il2cpp_TypeInfo_var;
  72. extern String_t* _stringLiteral380657706;
  73. extern const uint32_t WWW_get_error_m3055313367_MetadataUsageId;
  74. extern RuntimeClass* Debug_t3317548046_il2cpp_TypeInfo_var;
  75. extern String_t* _stringLiteral4054833267;
  76. extern String_t* _stringLiteral1973828197;
  77. extern const uint32_t WWW_WaitUntilDoneIfPossible_m2855479680_MetadataUsageId;
  78. extern String_t* _stringLiteral3457136609;
  79. extern String_t* _stringLiteral3911804090;
  80. extern String_t* _stringLiteral2487325543;
  81. extern String_t* _stringLiteral3860885797;
  82. extern String_t* _stringLiteral3476706848;
  83. extern String_t* _stringLiteral560819067;
  84. extern String_t* _stringLiteral2030167956;
  85. extern String_t* _stringLiteral1814237603;
  86. extern String_t* _stringLiteral4140321389;
  87. extern String_t* _stringLiteral2002596717;
  88. extern String_t* _stringLiteral1659593328;
  89. extern String_t* _stringLiteral4277434149;
  90. extern String_t* _stringLiteral3090824594;
  91. extern String_t* _stringLiteral3842069051;
  92. extern String_t* _stringLiteral4233297459;
  93. extern String_t* _stringLiteral3545044340;
  94. extern String_t* _stringLiteral573727993;
  95. extern String_t* _stringLiteral2117271536;
  96. extern String_t* _stringLiteral2178748878;
  97. extern String_t* _stringLiteral106317971;
  98. extern String_t* _stringLiteral461727106;
  99. extern String_t* _stringLiteral1542497020;
  100. extern String_t* _stringLiteral2343474426;
  101. extern String_t* _stringLiteral1138636386;
  102. extern String_t* _stringLiteral2791739693;
  103. extern String_t* _stringLiteral1091611732;
  104. extern String_t* _stringLiteral356324127;
  105. extern String_t* _stringLiteral624401215;
  106. extern String_t* _stringLiteral1073086928;
  107. extern String_t* _stringLiteral1060465165;
  108. extern String_t* _stringLiteral3739562776;
  109. extern String_t* _stringLiteral3244775435;
  110. extern String_t* _stringLiteral3899005722;
  111. extern String_t* _stringLiteral4002396095;
  112. extern String_t* _stringLiteral3604523934;
  113. extern String_t* _stringLiteral2201204884;
  114. extern String_t* _stringLiteral3363965078;
  115. extern String_t* _stringLiteral858510039;
  116. extern String_t* _stringLiteral757602046;
  117. extern const uint32_t WWW_GetStatusCodeName_m3580893459_MetadataUsageId;
  118. struct DownloadHandler_t2937767557_marshaled_com;
  119. struct UploadHandler_t2993558019_marshaled_com;
  120. struct UnityWebRequest_t463507806_marshaled_com;
  121. struct ByteU5BU5D_t4116647657;
  122. #ifndef RUNTIMEOBJECT_H
  123. #define RUNTIMEOBJECT_H
  124. #ifdef __clang__
  125. #pragma clang diagnostic push
  126. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  127. #pragma clang diagnostic ignored "-Wunused-variable"
  128. #endif
  129. // System.Object
  130. #ifdef __clang__
  131. #pragma clang diagnostic pop
  132. #endif
  133. #endif // RUNTIMEOBJECT_H
  134. #ifndef U3CMODULEU3E_T692745556_H
  135. #define U3CMODULEU3E_T692745556_H
  136. #ifdef __clang__
  137. #pragma clang diagnostic push
  138. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  139. #pragma clang diagnostic ignored "-Wunused-variable"
  140. #endif
  141. // <Module>
  142. struct U3CModuleU3E_t692745556
  143. {
  144. public:
  145. public:
  146. };
  147. #ifdef __clang__
  148. #pragma clang diagnostic pop
  149. #endif
  150. #endif // U3CMODULEU3E_T692745556_H
  151. #ifndef WWWFORM_T4064702195_H
  152. #define WWWFORM_T4064702195_H
  153. #ifdef __clang__
  154. #pragma clang diagnostic push
  155. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  156. #pragma clang diagnostic ignored "-Wunused-variable"
  157. #endif
  158. // UnityEngine.WWWForm
  159. struct WWWForm_t4064702195 : public RuntimeObject
  160. {
  161. public:
  162. // System.Collections.Generic.List`1<System.Byte[]> UnityEngine.WWWForm::formData
  163. List_1_t1293755103 * ___formData_0;
  164. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fieldNames
  165. List_1_t3319525431 * ___fieldNames_1;
  166. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fileNames
  167. List_1_t3319525431 * ___fileNames_2;
  168. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::types
  169. List_1_t3319525431 * ___types_3;
  170. // System.Byte[] UnityEngine.WWWForm::boundary
  171. ByteU5BU5D_t4116647657* ___boundary_4;
  172. // System.Boolean UnityEngine.WWWForm::containsFiles
  173. bool ___containsFiles_5;
  174. public:
  175. inline static int32_t get_offset_of_formData_0() { return static_cast<int32_t>(offsetof(WWWForm_t4064702195, ___formData_0)); }
  176. inline List_1_t1293755103 * get_formData_0() const { return ___formData_0; }
  177. inline List_1_t1293755103 ** get_address_of_formData_0() { return &___formData_0; }
  178. inline void set_formData_0(List_1_t1293755103 * value)
  179. {
  180. ___formData_0 = value;
  181. Il2CppCodeGenWriteBarrier((&___formData_0), value);
  182. }
  183. inline static int32_t get_offset_of_fieldNames_1() { return static_cast<int32_t>(offsetof(WWWForm_t4064702195, ___fieldNames_1)); }
  184. inline List_1_t3319525431 * get_fieldNames_1() const { return ___fieldNames_1; }
  185. inline List_1_t3319525431 ** get_address_of_fieldNames_1() { return &___fieldNames_1; }
  186. inline void set_fieldNames_1(List_1_t3319525431 * value)
  187. {
  188. ___fieldNames_1 = value;
  189. Il2CppCodeGenWriteBarrier((&___fieldNames_1), value);
  190. }
  191. inline static int32_t get_offset_of_fileNames_2() { return static_cast<int32_t>(offsetof(WWWForm_t4064702195, ___fileNames_2)); }
  192. inline List_1_t3319525431 * get_fileNames_2() const { return ___fileNames_2; }
  193. inline List_1_t3319525431 ** get_address_of_fileNames_2() { return &___fileNames_2; }
  194. inline void set_fileNames_2(List_1_t3319525431 * value)
  195. {
  196. ___fileNames_2 = value;
  197. Il2CppCodeGenWriteBarrier((&___fileNames_2), value);
  198. }
  199. inline static int32_t get_offset_of_types_3() { return static_cast<int32_t>(offsetof(WWWForm_t4064702195, ___types_3)); }
  200. inline List_1_t3319525431 * get_types_3() const { return ___types_3; }
  201. inline List_1_t3319525431 ** get_address_of_types_3() { return &___types_3; }
  202. inline void set_types_3(List_1_t3319525431 * value)
  203. {
  204. ___types_3 = value;
  205. Il2CppCodeGenWriteBarrier((&___types_3), value);
  206. }
  207. inline static int32_t get_offset_of_boundary_4() { return static_cast<int32_t>(offsetof(WWWForm_t4064702195, ___boundary_4)); }
  208. inline ByteU5BU5D_t4116647657* get_boundary_4() const { return ___boundary_4; }
  209. inline ByteU5BU5D_t4116647657** get_address_of_boundary_4() { return &___boundary_4; }
  210. inline void set_boundary_4(ByteU5BU5D_t4116647657* value)
  211. {
  212. ___boundary_4 = value;
  213. Il2CppCodeGenWriteBarrier((&___boundary_4), value);
  214. }
  215. inline static int32_t get_offset_of_containsFiles_5() { return static_cast<int32_t>(offsetof(WWWForm_t4064702195, ___containsFiles_5)); }
  216. inline bool get_containsFiles_5() const { return ___containsFiles_5; }
  217. inline bool* get_address_of_containsFiles_5() { return &___containsFiles_5; }
  218. inline void set_containsFiles_5(bool value)
  219. {
  220. ___containsFiles_5 = value;
  221. }
  222. };
  223. #ifdef __clang__
  224. #pragma clang diagnostic pop
  225. #endif
  226. #endif // WWWFORM_T4064702195_H
  227. #ifndef ENCODING_T1523322056_H
  228. #define ENCODING_T1523322056_H
  229. #ifdef __clang__
  230. #pragma clang diagnostic push
  231. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  232. #pragma clang diagnostic ignored "-Wunused-variable"
  233. #endif
  234. // System.Text.Encoding
  235. struct Encoding_t1523322056 : public RuntimeObject
  236. {
  237. public:
  238. // System.Int32 System.Text.Encoding::codePage
  239. int32_t ___codePage_0;
  240. // System.Int32 System.Text.Encoding::windows_code_page
  241. int32_t ___windows_code_page_1;
  242. // System.Boolean System.Text.Encoding::is_readonly
  243. bool ___is_readonly_2;
  244. // System.Text.DecoderFallback System.Text.Encoding::decoder_fallback
  245. DecoderFallback_t3123823036 * ___decoder_fallback_3;
  246. // System.Text.EncoderFallback System.Text.Encoding::encoder_fallback
  247. EncoderFallback_t1188251036 * ___encoder_fallback_4;
  248. // System.String System.Text.Encoding::body_name
  249. String_t* ___body_name_8;
  250. // System.String System.Text.Encoding::encoding_name
  251. String_t* ___encoding_name_9;
  252. // System.String System.Text.Encoding::header_name
  253. String_t* ___header_name_10;
  254. // System.Boolean System.Text.Encoding::is_mail_news_display
  255. bool ___is_mail_news_display_11;
  256. // System.Boolean System.Text.Encoding::is_mail_news_save
  257. bool ___is_mail_news_save_12;
  258. // System.Boolean System.Text.Encoding::is_browser_save
  259. bool ___is_browser_save_13;
  260. // System.Boolean System.Text.Encoding::is_browser_display
  261. bool ___is_browser_display_14;
  262. // System.String System.Text.Encoding::web_name
  263. String_t* ___web_name_15;
  264. public:
  265. inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___codePage_0)); }
  266. inline int32_t get_codePage_0() const { return ___codePage_0; }
  267. inline int32_t* get_address_of_codePage_0() { return &___codePage_0; }
  268. inline void set_codePage_0(int32_t value)
  269. {
  270. ___codePage_0 = value;
  271. }
  272. inline static int32_t get_offset_of_windows_code_page_1() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___windows_code_page_1)); }
  273. inline int32_t get_windows_code_page_1() const { return ___windows_code_page_1; }
  274. inline int32_t* get_address_of_windows_code_page_1() { return &___windows_code_page_1; }
  275. inline void set_windows_code_page_1(int32_t value)
  276. {
  277. ___windows_code_page_1 = value;
  278. }
  279. inline static int32_t get_offset_of_is_readonly_2() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_readonly_2)); }
  280. inline bool get_is_readonly_2() const { return ___is_readonly_2; }
  281. inline bool* get_address_of_is_readonly_2() { return &___is_readonly_2; }
  282. inline void set_is_readonly_2(bool value)
  283. {
  284. ___is_readonly_2 = value;
  285. }
  286. inline static int32_t get_offset_of_decoder_fallback_3() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___decoder_fallback_3)); }
  287. inline DecoderFallback_t3123823036 * get_decoder_fallback_3() const { return ___decoder_fallback_3; }
  288. inline DecoderFallback_t3123823036 ** get_address_of_decoder_fallback_3() { return &___decoder_fallback_3; }
  289. inline void set_decoder_fallback_3(DecoderFallback_t3123823036 * value)
  290. {
  291. ___decoder_fallback_3 = value;
  292. Il2CppCodeGenWriteBarrier((&___decoder_fallback_3), value);
  293. }
  294. inline static int32_t get_offset_of_encoder_fallback_4() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___encoder_fallback_4)); }
  295. inline EncoderFallback_t1188251036 * get_encoder_fallback_4() const { return ___encoder_fallback_4; }
  296. inline EncoderFallback_t1188251036 ** get_address_of_encoder_fallback_4() { return &___encoder_fallback_4; }
  297. inline void set_encoder_fallback_4(EncoderFallback_t1188251036 * value)
  298. {
  299. ___encoder_fallback_4 = value;
  300. Il2CppCodeGenWriteBarrier((&___encoder_fallback_4), value);
  301. }
  302. inline static int32_t get_offset_of_body_name_8() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___body_name_8)); }
  303. inline String_t* get_body_name_8() const { return ___body_name_8; }
  304. inline String_t** get_address_of_body_name_8() { return &___body_name_8; }
  305. inline void set_body_name_8(String_t* value)
  306. {
  307. ___body_name_8 = value;
  308. Il2CppCodeGenWriteBarrier((&___body_name_8), value);
  309. }
  310. inline static int32_t get_offset_of_encoding_name_9() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___encoding_name_9)); }
  311. inline String_t* get_encoding_name_9() const { return ___encoding_name_9; }
  312. inline String_t** get_address_of_encoding_name_9() { return &___encoding_name_9; }
  313. inline void set_encoding_name_9(String_t* value)
  314. {
  315. ___encoding_name_9 = value;
  316. Il2CppCodeGenWriteBarrier((&___encoding_name_9), value);
  317. }
  318. inline static int32_t get_offset_of_header_name_10() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___header_name_10)); }
  319. inline String_t* get_header_name_10() const { return ___header_name_10; }
  320. inline String_t** get_address_of_header_name_10() { return &___header_name_10; }
  321. inline void set_header_name_10(String_t* value)
  322. {
  323. ___header_name_10 = value;
  324. Il2CppCodeGenWriteBarrier((&___header_name_10), value);
  325. }
  326. inline static int32_t get_offset_of_is_mail_news_display_11() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_mail_news_display_11)); }
  327. inline bool get_is_mail_news_display_11() const { return ___is_mail_news_display_11; }
  328. inline bool* get_address_of_is_mail_news_display_11() { return &___is_mail_news_display_11; }
  329. inline void set_is_mail_news_display_11(bool value)
  330. {
  331. ___is_mail_news_display_11 = value;
  332. }
  333. inline static int32_t get_offset_of_is_mail_news_save_12() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_mail_news_save_12)); }
  334. inline bool get_is_mail_news_save_12() const { return ___is_mail_news_save_12; }
  335. inline bool* get_address_of_is_mail_news_save_12() { return &___is_mail_news_save_12; }
  336. inline void set_is_mail_news_save_12(bool value)
  337. {
  338. ___is_mail_news_save_12 = value;
  339. }
  340. inline static int32_t get_offset_of_is_browser_save_13() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_browser_save_13)); }
  341. inline bool get_is_browser_save_13() const { return ___is_browser_save_13; }
  342. inline bool* get_address_of_is_browser_save_13() { return &___is_browser_save_13; }
  343. inline void set_is_browser_save_13(bool value)
  344. {
  345. ___is_browser_save_13 = value;
  346. }
  347. inline static int32_t get_offset_of_is_browser_display_14() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___is_browser_display_14)); }
  348. inline bool get_is_browser_display_14() const { return ___is_browser_display_14; }
  349. inline bool* get_address_of_is_browser_display_14() { return &___is_browser_display_14; }
  350. inline void set_is_browser_display_14(bool value)
  351. {
  352. ___is_browser_display_14 = value;
  353. }
  354. inline static int32_t get_offset_of_web_name_15() { return static_cast<int32_t>(offsetof(Encoding_t1523322056, ___web_name_15)); }
  355. inline String_t* get_web_name_15() const { return ___web_name_15; }
  356. inline String_t** get_address_of_web_name_15() { return &___web_name_15; }
  357. inline void set_web_name_15(String_t* value)
  358. {
  359. ___web_name_15 = value;
  360. Il2CppCodeGenWriteBarrier((&___web_name_15), value);
  361. }
  362. };
  363. struct Encoding_t1523322056_StaticFields
  364. {
  365. public:
  366. // System.Reflection.Assembly System.Text.Encoding::i18nAssembly
  367. Assembly_t * ___i18nAssembly_5;
  368. // System.Boolean System.Text.Encoding::i18nDisabled
  369. bool ___i18nDisabled_6;
  370. // System.Object[] System.Text.Encoding::encodings
  371. ObjectU5BU5D_t2843939325* ___encodings_7;
  372. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
  373. Encoding_t1523322056 * ___asciiEncoding_16;
  374. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianEncoding
  375. Encoding_t1523322056 * ___bigEndianEncoding_17;
  376. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
  377. Encoding_t1523322056 * ___defaultEncoding_18;
  378. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
  379. Encoding_t1523322056 * ___utf7Encoding_19;
  380. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingWithMarkers
  381. Encoding_t1523322056 * ___utf8EncodingWithMarkers_20;
  382. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingWithoutMarkers
  383. Encoding_t1523322056 * ___utf8EncodingWithoutMarkers_21;
  384. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
  385. Encoding_t1523322056 * ___unicodeEncoding_22;
  386. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::isoLatin1Encoding
  387. Encoding_t1523322056 * ___isoLatin1Encoding_23;
  388. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8EncodingUnsafe
  389. Encoding_t1523322056 * ___utf8EncodingUnsafe_24;
  390. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
  391. Encoding_t1523322056 * ___utf32Encoding_25;
  392. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUTF32Encoding
  393. Encoding_t1523322056 * ___bigEndianUTF32Encoding_26;
  394. // System.Object System.Text.Encoding::lockobj
  395. RuntimeObject * ___lockobj_27;
  396. public:
  397. inline static int32_t get_offset_of_i18nAssembly_5() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___i18nAssembly_5)); }
  398. inline Assembly_t * get_i18nAssembly_5() const { return ___i18nAssembly_5; }
  399. inline Assembly_t ** get_address_of_i18nAssembly_5() { return &___i18nAssembly_5; }
  400. inline void set_i18nAssembly_5(Assembly_t * value)
  401. {
  402. ___i18nAssembly_5 = value;
  403. Il2CppCodeGenWriteBarrier((&___i18nAssembly_5), value);
  404. }
  405. inline static int32_t get_offset_of_i18nDisabled_6() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___i18nDisabled_6)); }
  406. inline bool get_i18nDisabled_6() const { return ___i18nDisabled_6; }
  407. inline bool* get_address_of_i18nDisabled_6() { return &___i18nDisabled_6; }
  408. inline void set_i18nDisabled_6(bool value)
  409. {
  410. ___i18nDisabled_6 = value;
  411. }
  412. inline static int32_t get_offset_of_encodings_7() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___encodings_7)); }
  413. inline ObjectU5BU5D_t2843939325* get_encodings_7() const { return ___encodings_7; }
  414. inline ObjectU5BU5D_t2843939325** get_address_of_encodings_7() { return &___encodings_7; }
  415. inline void set_encodings_7(ObjectU5BU5D_t2843939325* value)
  416. {
  417. ___encodings_7 = value;
  418. Il2CppCodeGenWriteBarrier((&___encodings_7), value);
  419. }
  420. inline static int32_t get_offset_of_asciiEncoding_16() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___asciiEncoding_16)); }
  421. inline Encoding_t1523322056 * get_asciiEncoding_16() const { return ___asciiEncoding_16; }
  422. inline Encoding_t1523322056 ** get_address_of_asciiEncoding_16() { return &___asciiEncoding_16; }
  423. inline void set_asciiEncoding_16(Encoding_t1523322056 * value)
  424. {
  425. ___asciiEncoding_16 = value;
  426. Il2CppCodeGenWriteBarrier((&___asciiEncoding_16), value);
  427. }
  428. inline static int32_t get_offset_of_bigEndianEncoding_17() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___bigEndianEncoding_17)); }
  429. inline Encoding_t1523322056 * get_bigEndianEncoding_17() const { return ___bigEndianEncoding_17; }
  430. inline Encoding_t1523322056 ** get_address_of_bigEndianEncoding_17() { return &___bigEndianEncoding_17; }
  431. inline void set_bigEndianEncoding_17(Encoding_t1523322056 * value)
  432. {
  433. ___bigEndianEncoding_17 = value;
  434. Il2CppCodeGenWriteBarrier((&___bigEndianEncoding_17), value);
  435. }
  436. inline static int32_t get_offset_of_defaultEncoding_18() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___defaultEncoding_18)); }
  437. inline Encoding_t1523322056 * get_defaultEncoding_18() const { return ___defaultEncoding_18; }
  438. inline Encoding_t1523322056 ** get_address_of_defaultEncoding_18() { return &___defaultEncoding_18; }
  439. inline void set_defaultEncoding_18(Encoding_t1523322056 * value)
  440. {
  441. ___defaultEncoding_18 = value;
  442. Il2CppCodeGenWriteBarrier((&___defaultEncoding_18), value);
  443. }
  444. inline static int32_t get_offset_of_utf7Encoding_19() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf7Encoding_19)); }
  445. inline Encoding_t1523322056 * get_utf7Encoding_19() const { return ___utf7Encoding_19; }
  446. inline Encoding_t1523322056 ** get_address_of_utf7Encoding_19() { return &___utf7Encoding_19; }
  447. inline void set_utf7Encoding_19(Encoding_t1523322056 * value)
  448. {
  449. ___utf7Encoding_19 = value;
  450. Il2CppCodeGenWriteBarrier((&___utf7Encoding_19), value);
  451. }
  452. inline static int32_t get_offset_of_utf8EncodingWithMarkers_20() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf8EncodingWithMarkers_20)); }
  453. inline Encoding_t1523322056 * get_utf8EncodingWithMarkers_20() const { return ___utf8EncodingWithMarkers_20; }
  454. inline Encoding_t1523322056 ** get_address_of_utf8EncodingWithMarkers_20() { return &___utf8EncodingWithMarkers_20; }
  455. inline void set_utf8EncodingWithMarkers_20(Encoding_t1523322056 * value)
  456. {
  457. ___utf8EncodingWithMarkers_20 = value;
  458. Il2CppCodeGenWriteBarrier((&___utf8EncodingWithMarkers_20), value);
  459. }
  460. inline static int32_t get_offset_of_utf8EncodingWithoutMarkers_21() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf8EncodingWithoutMarkers_21)); }
  461. inline Encoding_t1523322056 * get_utf8EncodingWithoutMarkers_21() const { return ___utf8EncodingWithoutMarkers_21; }
  462. inline Encoding_t1523322056 ** get_address_of_utf8EncodingWithoutMarkers_21() { return &___utf8EncodingWithoutMarkers_21; }
  463. inline void set_utf8EncodingWithoutMarkers_21(Encoding_t1523322056 * value)
  464. {
  465. ___utf8EncodingWithoutMarkers_21 = value;
  466. Il2CppCodeGenWriteBarrier((&___utf8EncodingWithoutMarkers_21), value);
  467. }
  468. inline static int32_t get_offset_of_unicodeEncoding_22() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___unicodeEncoding_22)); }
  469. inline Encoding_t1523322056 * get_unicodeEncoding_22() const { return ___unicodeEncoding_22; }
  470. inline Encoding_t1523322056 ** get_address_of_unicodeEncoding_22() { return &___unicodeEncoding_22; }
  471. inline void set_unicodeEncoding_22(Encoding_t1523322056 * value)
  472. {
  473. ___unicodeEncoding_22 = value;
  474. Il2CppCodeGenWriteBarrier((&___unicodeEncoding_22), value);
  475. }
  476. inline static int32_t get_offset_of_isoLatin1Encoding_23() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___isoLatin1Encoding_23)); }
  477. inline Encoding_t1523322056 * get_isoLatin1Encoding_23() const { return ___isoLatin1Encoding_23; }
  478. inline Encoding_t1523322056 ** get_address_of_isoLatin1Encoding_23() { return &___isoLatin1Encoding_23; }
  479. inline void set_isoLatin1Encoding_23(Encoding_t1523322056 * value)
  480. {
  481. ___isoLatin1Encoding_23 = value;
  482. Il2CppCodeGenWriteBarrier((&___isoLatin1Encoding_23), value);
  483. }
  484. inline static int32_t get_offset_of_utf8EncodingUnsafe_24() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf8EncodingUnsafe_24)); }
  485. inline Encoding_t1523322056 * get_utf8EncodingUnsafe_24() const { return ___utf8EncodingUnsafe_24; }
  486. inline Encoding_t1523322056 ** get_address_of_utf8EncodingUnsafe_24() { return &___utf8EncodingUnsafe_24; }
  487. inline void set_utf8EncodingUnsafe_24(Encoding_t1523322056 * value)
  488. {
  489. ___utf8EncodingUnsafe_24 = value;
  490. Il2CppCodeGenWriteBarrier((&___utf8EncodingUnsafe_24), value);
  491. }
  492. inline static int32_t get_offset_of_utf32Encoding_25() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___utf32Encoding_25)); }
  493. inline Encoding_t1523322056 * get_utf32Encoding_25() const { return ___utf32Encoding_25; }
  494. inline Encoding_t1523322056 ** get_address_of_utf32Encoding_25() { return &___utf32Encoding_25; }
  495. inline void set_utf32Encoding_25(Encoding_t1523322056 * value)
  496. {
  497. ___utf32Encoding_25 = value;
  498. Il2CppCodeGenWriteBarrier((&___utf32Encoding_25), value);
  499. }
  500. inline static int32_t get_offset_of_bigEndianUTF32Encoding_26() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___bigEndianUTF32Encoding_26)); }
  501. inline Encoding_t1523322056 * get_bigEndianUTF32Encoding_26() const { return ___bigEndianUTF32Encoding_26; }
  502. inline Encoding_t1523322056 ** get_address_of_bigEndianUTF32Encoding_26() { return &___bigEndianUTF32Encoding_26; }
  503. inline void set_bigEndianUTF32Encoding_26(Encoding_t1523322056 * value)
  504. {
  505. ___bigEndianUTF32Encoding_26 = value;
  506. Il2CppCodeGenWriteBarrier((&___bigEndianUTF32Encoding_26), value);
  507. }
  508. inline static int32_t get_offset_of_lockobj_27() { return static_cast<int32_t>(offsetof(Encoding_t1523322056_StaticFields, ___lockobj_27)); }
  509. inline RuntimeObject * get_lockobj_27() const { return ___lockobj_27; }
  510. inline RuntimeObject ** get_address_of_lockobj_27() { return &___lockobj_27; }
  511. inline void set_lockobj_27(RuntimeObject * value)
  512. {
  513. ___lockobj_27 = value;
  514. Il2CppCodeGenWriteBarrier((&___lockobj_27), value);
  515. }
  516. };
  517. #ifdef __clang__
  518. #pragma clang diagnostic pop
  519. #endif
  520. #endif // ENCODING_T1523322056_H
  521. #ifndef YIELDINSTRUCTION_T403091072_H
  522. #define YIELDINSTRUCTION_T403091072_H
  523. #ifdef __clang__
  524. #pragma clang diagnostic push
  525. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  526. #pragma clang diagnostic ignored "-Wunused-variable"
  527. #endif
  528. // UnityEngine.YieldInstruction
  529. struct YieldInstruction_t403091072 : public RuntimeObject
  530. {
  531. public:
  532. public:
  533. };
  534. #ifdef __clang__
  535. #pragma clang diagnostic pop
  536. #endif
  537. // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
  538. struct YieldInstruction_t403091072_marshaled_pinvoke
  539. {
  540. };
  541. // Native definition for COM marshalling of UnityEngine.YieldInstruction
  542. struct YieldInstruction_t403091072_marshaled_com
  543. {
  544. };
  545. #endif // YIELDINSTRUCTION_T403091072_H
  546. struct Il2CppArrayBounds;
  547. #ifndef RUNTIMEARRAY_H
  548. #define RUNTIMEARRAY_H
  549. #ifdef __clang__
  550. #pragma clang diagnostic push
  551. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  552. #pragma clang diagnostic ignored "-Wunused-variable"
  553. #endif
  554. // System.Array
  555. #ifdef __clang__
  556. #pragma clang diagnostic pop
  557. #endif
  558. #endif // RUNTIMEARRAY_H
  559. #ifndef VALUETYPE_T3640485471_H
  560. #define VALUETYPE_T3640485471_H
  561. #ifdef __clang__
  562. #pragma clang diagnostic push
  563. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  564. #pragma clang diagnostic ignored "-Wunused-variable"
  565. #endif
  566. // System.ValueType
  567. struct ValueType_t3640485471 : public RuntimeObject
  568. {
  569. public:
  570. public:
  571. };
  572. #ifdef __clang__
  573. #pragma clang diagnostic pop
  574. #endif
  575. // Native definition for P/Invoke marshalling of System.ValueType
  576. struct ValueType_t3640485471_marshaled_pinvoke
  577. {
  578. };
  579. // Native definition for COM marshalling of System.ValueType
  580. struct ValueType_t3640485471_marshaled_com
  581. {
  582. };
  583. #endif // VALUETYPE_T3640485471_H
  584. #ifndef STRING_T_H
  585. #define STRING_T_H
  586. #ifdef __clang__
  587. #pragma clang diagnostic push
  588. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  589. #pragma clang diagnostic ignored "-Wunused-variable"
  590. #endif
  591. // System.String
  592. struct String_t : public RuntimeObject
  593. {
  594. public:
  595. // System.Int32 System.String::length
  596. int32_t ___length_0;
  597. // System.Char System.String::start_char
  598. Il2CppChar ___start_char_1;
  599. public:
  600. inline static int32_t get_offset_of_length_0() { return static_cast<int32_t>(offsetof(String_t, ___length_0)); }
  601. inline int32_t get_length_0() const { return ___length_0; }
  602. inline int32_t* get_address_of_length_0() { return &___length_0; }
  603. inline void set_length_0(int32_t value)
  604. {
  605. ___length_0 = value;
  606. }
  607. inline static int32_t get_offset_of_start_char_1() { return static_cast<int32_t>(offsetof(String_t, ___start_char_1)); }
  608. inline Il2CppChar get_start_char_1() const { return ___start_char_1; }
  609. inline Il2CppChar* get_address_of_start_char_1() { return &___start_char_1; }
  610. inline void set_start_char_1(Il2CppChar value)
  611. {
  612. ___start_char_1 = value;
  613. }
  614. };
  615. struct String_t_StaticFields
  616. {
  617. public:
  618. // System.String System.String::Empty
  619. String_t* ___Empty_2;
  620. // System.Char[] System.String::WhiteChars
  621. CharU5BU5D_t3528271667* ___WhiteChars_3;
  622. public:
  623. inline static int32_t get_offset_of_Empty_2() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_2)); }
  624. inline String_t* get_Empty_2() const { return ___Empty_2; }
  625. inline String_t** get_address_of_Empty_2() { return &___Empty_2; }
  626. inline void set_Empty_2(String_t* value)
  627. {
  628. ___Empty_2 = value;
  629. Il2CppCodeGenWriteBarrier((&___Empty_2), value);
  630. }
  631. inline static int32_t get_offset_of_WhiteChars_3() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___WhiteChars_3)); }
  632. inline CharU5BU5D_t3528271667* get_WhiteChars_3() const { return ___WhiteChars_3; }
  633. inline CharU5BU5D_t3528271667** get_address_of_WhiteChars_3() { return &___WhiteChars_3; }
  634. inline void set_WhiteChars_3(CharU5BU5D_t3528271667* value)
  635. {
  636. ___WhiteChars_3 = value;
  637. Il2CppCodeGenWriteBarrier((&___WhiteChars_3), value);
  638. }
  639. };
  640. #ifdef __clang__
  641. #pragma clang diagnostic pop
  642. #endif
  643. #endif // STRING_T_H
  644. #ifndef CUSTOMYIELDINSTRUCTION_T1895667560_H
  645. #define CUSTOMYIELDINSTRUCTION_T1895667560_H
  646. #ifdef __clang__
  647. #pragma clang diagnostic push
  648. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  649. #pragma clang diagnostic ignored "-Wunused-variable"
  650. #endif
  651. // UnityEngine.CustomYieldInstruction
  652. struct CustomYieldInstruction_t1895667560 : public RuntimeObject
  653. {
  654. public:
  655. public:
  656. };
  657. #ifdef __clang__
  658. #pragma clang diagnostic pop
  659. #endif
  660. #endif // CUSTOMYIELDINSTRUCTION_T1895667560_H
  661. #ifndef UINT64_T4134040092_H
  662. #define UINT64_T4134040092_H
  663. #ifdef __clang__
  664. #pragma clang diagnostic push
  665. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  666. #pragma clang diagnostic ignored "-Wunused-variable"
  667. #endif
  668. // System.UInt64
  669. struct UInt64_t4134040092
  670. {
  671. public:
  672. // System.UInt64 System.UInt64::m_value
  673. uint64_t ___m_value_0;
  674. public:
  675. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_t4134040092, ___m_value_0)); }
  676. inline uint64_t get_m_value_0() const { return ___m_value_0; }
  677. inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
  678. inline void set_m_value_0(uint64_t value)
  679. {
  680. ___m_value_0 = value;
  681. }
  682. };
  683. #ifdef __clang__
  684. #pragma clang diagnostic pop
  685. #endif
  686. #endif // UINT64_T4134040092_H
  687. #ifndef INT64_T3736567304_H
  688. #define INT64_T3736567304_H
  689. #ifdef __clang__
  690. #pragma clang diagnostic push
  691. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  692. #pragma clang diagnostic ignored "-Wunused-variable"
  693. #endif
  694. // System.Int64
  695. struct Int64_t3736567304
  696. {
  697. public:
  698. // System.Int64 System.Int64::m_value
  699. int64_t ___m_value_2;
  700. public:
  701. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int64_t3736567304, ___m_value_2)); }
  702. inline int64_t get_m_value_2() const { return ___m_value_2; }
  703. inline int64_t* get_address_of_m_value_2() { return &___m_value_2; }
  704. inline void set_m_value_2(int64_t value)
  705. {
  706. ___m_value_2 = value;
  707. }
  708. };
  709. #ifdef __clang__
  710. #pragma clang diagnostic pop
  711. #endif
  712. #endif // INT64_T3736567304_H
  713. #ifndef INT32_T2950945753_H
  714. #define INT32_T2950945753_H
  715. #ifdef __clang__
  716. #pragma clang diagnostic push
  717. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  718. #pragma clang diagnostic ignored "-Wunused-variable"
  719. #endif
  720. // System.Int32
  721. struct Int32_t2950945753
  722. {
  723. public:
  724. // System.Int32 System.Int32::m_value
  725. int32_t ___m_value_2;
  726. public:
  727. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Int32_t2950945753, ___m_value_2)); }
  728. inline int32_t get_m_value_2() const { return ___m_value_2; }
  729. inline int32_t* get_address_of_m_value_2() { return &___m_value_2; }
  730. inline void set_m_value_2(int32_t value)
  731. {
  732. ___m_value_2 = value;
  733. }
  734. };
  735. #ifdef __clang__
  736. #pragma clang diagnostic pop
  737. #endif
  738. #endif // INT32_T2950945753_H
  739. #ifndef BYTE_T1134296376_H
  740. #define BYTE_T1134296376_H
  741. #ifdef __clang__
  742. #pragma clang diagnostic push
  743. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  744. #pragma clang diagnostic ignored "-Wunused-variable"
  745. #endif
  746. // System.Byte
  747. struct Byte_t1134296376
  748. {
  749. public:
  750. // System.Byte System.Byte::m_value
  751. uint8_t ___m_value_2;
  752. public:
  753. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Byte_t1134296376, ___m_value_2)); }
  754. inline uint8_t get_m_value_2() const { return ___m_value_2; }
  755. inline uint8_t* get_address_of_m_value_2() { return &___m_value_2; }
  756. inline void set_m_value_2(uint8_t value)
  757. {
  758. ___m_value_2 = value;
  759. }
  760. };
  761. #ifdef __clang__
  762. #pragma clang diagnostic pop
  763. #endif
  764. #endif // BYTE_T1134296376_H
  765. #ifndef VOID_T1185182177_H
  766. #define VOID_T1185182177_H
  767. #ifdef __clang__
  768. #pragma clang diagnostic push
  769. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  770. #pragma clang diagnostic ignored "-Wunused-variable"
  771. #endif
  772. // System.Void
  773. struct Void_t1185182177
  774. {
  775. public:
  776. public:
  777. };
  778. #ifdef __clang__
  779. #pragma clang diagnostic pop
  780. #endif
  781. #endif // VOID_T1185182177_H
  782. #ifndef ENUM_T4135868527_H
  783. #define ENUM_T4135868527_H
  784. #ifdef __clang__
  785. #pragma clang diagnostic push
  786. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  787. #pragma clang diagnostic ignored "-Wunused-variable"
  788. #endif
  789. // System.Enum
  790. struct Enum_t4135868527 : public ValueType_t3640485471
  791. {
  792. public:
  793. public:
  794. };
  795. struct Enum_t4135868527_StaticFields
  796. {
  797. public:
  798. // System.Char[] System.Enum::split_char
  799. CharU5BU5D_t3528271667* ___split_char_0;
  800. public:
  801. inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
  802. inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
  803. inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
  804. inline void set_split_char_0(CharU5BU5D_t3528271667* value)
  805. {
  806. ___split_char_0 = value;
  807. Il2CppCodeGenWriteBarrier((&___split_char_0), value);
  808. }
  809. };
  810. #ifdef __clang__
  811. #pragma clang diagnostic pop
  812. #endif
  813. // Native definition for P/Invoke marshalling of System.Enum
  814. struct Enum_t4135868527_marshaled_pinvoke
  815. {
  816. };
  817. // Native definition for COM marshalling of System.Enum
  818. struct Enum_t4135868527_marshaled_com
  819. {
  820. };
  821. #endif // ENUM_T4135868527_H
  822. #ifndef BOOLEAN_T97287965_H
  823. #define BOOLEAN_T97287965_H
  824. #ifdef __clang__
  825. #pragma clang diagnostic push
  826. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  827. #pragma clang diagnostic ignored "-Wunused-variable"
  828. #endif
  829. // System.Boolean
  830. struct Boolean_t97287965
  831. {
  832. public:
  833. // System.Boolean System.Boolean::m_value
  834. bool ___m_value_2;
  835. public:
  836. inline static int32_t get_offset_of_m_value_2() { return static_cast<int32_t>(offsetof(Boolean_t97287965, ___m_value_2)); }
  837. inline bool get_m_value_2() const { return ___m_value_2; }
  838. inline bool* get_address_of_m_value_2() { return &___m_value_2; }
  839. inline void set_m_value_2(bool value)
  840. {
  841. ___m_value_2 = value;
  842. }
  843. };
  844. struct Boolean_t97287965_StaticFields
  845. {
  846. public:
  847. // System.String System.Boolean::FalseString
  848. String_t* ___FalseString_0;
  849. // System.String System.Boolean::TrueString
  850. String_t* ___TrueString_1;
  851. public:
  852. inline static int32_t get_offset_of_FalseString_0() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___FalseString_0)); }
  853. inline String_t* get_FalseString_0() const { return ___FalseString_0; }
  854. inline String_t** get_address_of_FalseString_0() { return &___FalseString_0; }
  855. inline void set_FalseString_0(String_t* value)
  856. {
  857. ___FalseString_0 = value;
  858. Il2CppCodeGenWriteBarrier((&___FalseString_0), value);
  859. }
  860. inline static int32_t get_offset_of_TrueString_1() { return static_cast<int32_t>(offsetof(Boolean_t97287965_StaticFields, ___TrueString_1)); }
  861. inline String_t* get_TrueString_1() const { return ___TrueString_1; }
  862. inline String_t** get_address_of_TrueString_1() { return &___TrueString_1; }
  863. inline void set_TrueString_1(String_t* value)
  864. {
  865. ___TrueString_1 = value;
  866. Il2CppCodeGenWriteBarrier((&___TrueString_1), value);
  867. }
  868. };
  869. #ifdef __clang__
  870. #pragma clang diagnostic pop
  871. #endif
  872. #endif // BOOLEAN_T97287965_H
  873. #ifndef INTPTR_T_H
  874. #define INTPTR_T_H
  875. #ifdef __clang__
  876. #pragma clang diagnostic push
  877. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  878. #pragma clang diagnostic ignored "-Wunused-variable"
  879. #endif
  880. // System.IntPtr
  881. struct IntPtr_t
  882. {
  883. public:
  884. // System.Void* System.IntPtr::m_value
  885. void* ___m_value_0;
  886. public:
  887. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  888. inline void* get_m_value_0() const { return ___m_value_0; }
  889. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  890. inline void set_m_value_0(void* value)
  891. {
  892. ___m_value_0 = value;
  893. }
  894. };
  895. struct IntPtr_t_StaticFields
  896. {
  897. public:
  898. // System.IntPtr System.IntPtr::Zero
  899. intptr_t ___Zero_1;
  900. public:
  901. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  902. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  903. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  904. inline void set_Zero_1(intptr_t value)
  905. {
  906. ___Zero_1 = value;
  907. }
  908. };
  909. #ifdef __clang__
  910. #pragma clang diagnostic pop
  911. #endif
  912. #endif // INTPTR_T_H
  913. #ifndef ASYNCOPERATION_T1445031843_H
  914. #define ASYNCOPERATION_T1445031843_H
  915. #ifdef __clang__
  916. #pragma clang diagnostic push
  917. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  918. #pragma clang diagnostic ignored "-Wunused-variable"
  919. #endif
  920. // UnityEngine.AsyncOperation
  921. struct AsyncOperation_t1445031843 : public YieldInstruction_t403091072
  922. {
  923. public:
  924. // System.IntPtr UnityEngine.AsyncOperation::m_Ptr
  925. intptr_t ___m_Ptr_0;
  926. // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
  927. Action_1_t1617499438 * ___m_completeCallback_1;
  928. public:
  929. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AsyncOperation_t1445031843, ___m_Ptr_0)); }
  930. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  931. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  932. inline void set_m_Ptr_0(intptr_t value)
  933. {
  934. ___m_Ptr_0 = value;
  935. }
  936. inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast<int32_t>(offsetof(AsyncOperation_t1445031843, ___m_completeCallback_1)); }
  937. inline Action_1_t1617499438 * get_m_completeCallback_1() const { return ___m_completeCallback_1; }
  938. inline Action_1_t1617499438 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; }
  939. inline void set_m_completeCallback_1(Action_1_t1617499438 * value)
  940. {
  941. ___m_completeCallback_1 = value;
  942. Il2CppCodeGenWriteBarrier((&___m_completeCallback_1), value);
  943. }
  944. };
  945. #ifdef __clang__
  946. #pragma clang diagnostic pop
  947. #endif
  948. // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
  949. struct AsyncOperation_t1445031843_marshaled_pinvoke : public YieldInstruction_t403091072_marshaled_pinvoke
  950. {
  951. intptr_t ___m_Ptr_0;
  952. Il2CppMethodPointer ___m_completeCallback_1;
  953. };
  954. // Native definition for COM marshalling of UnityEngine.AsyncOperation
  955. struct AsyncOperation_t1445031843_marshaled_com : public YieldInstruction_t403091072_marshaled_com
  956. {
  957. intptr_t ___m_Ptr_0;
  958. Il2CppMethodPointer ___m_completeCallback_1;
  959. };
  960. #endif // ASYNCOPERATION_T1445031843_H
  961. #ifndef DOWNLOADHANDLER_T2937767557_H
  962. #define DOWNLOADHANDLER_T2937767557_H
  963. #ifdef __clang__
  964. #pragma clang diagnostic push
  965. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  966. #pragma clang diagnostic ignored "-Wunused-variable"
  967. #endif
  968. // UnityEngine.Networking.DownloadHandler
  969. struct DownloadHandler_t2937767557 : public RuntimeObject
  970. {
  971. public:
  972. // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
  973. intptr_t ___m_Ptr_0;
  974. public:
  975. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(DownloadHandler_t2937767557, ___m_Ptr_0)); }
  976. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  977. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  978. inline void set_m_Ptr_0(intptr_t value)
  979. {
  980. ___m_Ptr_0 = value;
  981. }
  982. };
  983. #ifdef __clang__
  984. #pragma clang diagnostic pop
  985. #endif
  986. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
  987. struct DownloadHandler_t2937767557_marshaled_pinvoke
  988. {
  989. intptr_t ___m_Ptr_0;
  990. };
  991. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
  992. struct DownloadHandler_t2937767557_marshaled_com
  993. {
  994. intptr_t ___m_Ptr_0;
  995. };
  996. #endif // DOWNLOADHANDLER_T2937767557_H
  997. #ifndef OBJECT_T631007953_H
  998. #define OBJECT_T631007953_H
  999. #ifdef __clang__
  1000. #pragma clang diagnostic push
  1001. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1002. #pragma clang diagnostic ignored "-Wunused-variable"
  1003. #endif
  1004. // UnityEngine.Object
  1005. struct Object_t631007953 : public RuntimeObject
  1006. {
  1007. public:
  1008. // System.IntPtr UnityEngine.Object::m_CachedPtr
  1009. intptr_t ___m_CachedPtr_0;
  1010. public:
  1011. inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_t631007953, ___m_CachedPtr_0)); }
  1012. inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
  1013. inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
  1014. inline void set_m_CachedPtr_0(intptr_t value)
  1015. {
  1016. ___m_CachedPtr_0 = value;
  1017. }
  1018. };
  1019. struct Object_t631007953_StaticFields
  1020. {
  1021. public:
  1022. // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
  1023. int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
  1024. public:
  1025. inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_t631007953_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
  1026. inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
  1027. inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
  1028. inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
  1029. {
  1030. ___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
  1031. }
  1032. };
  1033. #ifdef __clang__
  1034. #pragma clang diagnostic pop
  1035. #endif
  1036. // Native definition for P/Invoke marshalling of UnityEngine.Object
  1037. struct Object_t631007953_marshaled_pinvoke
  1038. {
  1039. intptr_t ___m_CachedPtr_0;
  1040. };
  1041. // Native definition for COM marshalling of UnityEngine.Object
  1042. struct Object_t631007953_marshaled_com
  1043. {
  1044. intptr_t ___m_CachedPtr_0;
  1045. };
  1046. #endif // OBJECT_T631007953_H
  1047. #ifndef STRINGCOMPARISON_T3657712135_H
  1048. #define STRINGCOMPARISON_T3657712135_H
  1049. #ifdef __clang__
  1050. #pragma clang diagnostic push
  1051. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1052. #pragma clang diagnostic ignored "-Wunused-variable"
  1053. #endif
  1054. // System.StringComparison
  1055. struct StringComparison_t3657712135
  1056. {
  1057. public:
  1058. // System.Int32 System.StringComparison::value__
  1059. int32_t ___value___1;
  1060. public:
  1061. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StringComparison_t3657712135, ___value___1)); }
  1062. inline int32_t get_value___1() const { return ___value___1; }
  1063. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1064. inline void set_value___1(int32_t value)
  1065. {
  1066. ___value___1 = value;
  1067. }
  1068. };
  1069. #ifdef __clang__
  1070. #pragma clang diagnostic pop
  1071. #endif
  1072. #endif // STRINGCOMPARISON_T3657712135_H
  1073. #ifndef THREADPRIORITY_T1774350854_H
  1074. #define THREADPRIORITY_T1774350854_H
  1075. #ifdef __clang__
  1076. #pragma clang diagnostic push
  1077. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1078. #pragma clang diagnostic ignored "-Wunused-variable"
  1079. #endif
  1080. // UnityEngine.ThreadPriority
  1081. struct ThreadPriority_t1774350854
  1082. {
  1083. public:
  1084. // System.Int32 UnityEngine.ThreadPriority::value__
  1085. int32_t ___value___1;
  1086. public:
  1087. inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ThreadPriority_t1774350854, ___value___1)); }
  1088. inline int32_t get_value___1() const { return ___value___1; }
  1089. inline int32_t* get_address_of_value___1() { return &___value___1; }
  1090. inline void set_value___1(int32_t value)
  1091. {
  1092. ___value___1 = value;
  1093. }
  1094. };
  1095. #ifdef __clang__
  1096. #pragma clang diagnostic pop
  1097. #endif
  1098. #endif // THREADPRIORITY_T1774350854_H
  1099. #ifndef UPLOADHANDLER_T2993558019_H
  1100. #define UPLOADHANDLER_T2993558019_H
  1101. #ifdef __clang__
  1102. #pragma clang diagnostic push
  1103. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1104. #pragma clang diagnostic ignored "-Wunused-variable"
  1105. #endif
  1106. // UnityEngine.Networking.UploadHandler
  1107. struct UploadHandler_t2993558019 : public RuntimeObject
  1108. {
  1109. public:
  1110. // System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr
  1111. intptr_t ___m_Ptr_0;
  1112. public:
  1113. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UploadHandler_t2993558019, ___m_Ptr_0)); }
  1114. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1115. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1116. inline void set_m_Ptr_0(intptr_t value)
  1117. {
  1118. ___m_Ptr_0 = value;
  1119. }
  1120. };
  1121. #ifdef __clang__
  1122. #pragma clang diagnostic pop
  1123. #endif
  1124. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler
  1125. struct UploadHandler_t2993558019_marshaled_pinvoke
  1126. {
  1127. intptr_t ___m_Ptr_0;
  1128. };
  1129. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandler
  1130. struct UploadHandler_t2993558019_marshaled_com
  1131. {
  1132. intptr_t ___m_Ptr_0;
  1133. };
  1134. #endif // UPLOADHANDLER_T2993558019_H
  1135. #ifndef WWW_T3688466362_H
  1136. #define WWW_T3688466362_H
  1137. #ifdef __clang__
  1138. #pragma clang diagnostic push
  1139. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1140. #pragma clang diagnostic ignored "-Wunused-variable"
  1141. #endif
  1142. // UnityEngine.WWW
  1143. struct WWW_t3688466362 : public CustomYieldInstruction_t1895667560
  1144. {
  1145. public:
  1146. // UnityEngine.ThreadPriority UnityEngine.WWW::<threadPriority>k__BackingField
  1147. int32_t ___U3CthreadPriorityU3Ek__BackingField_0;
  1148. // UnityEngine.Networking.UnityWebRequest UnityEngine.WWW::_uwr
  1149. UnityWebRequest_t463507806 * ____uwr_1;
  1150. // UnityEngine.AssetBundle UnityEngine.WWW::_assetBundle
  1151. AssetBundle_t1153907252 * ____assetBundle_2;
  1152. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWW::_responseHeaders
  1153. Dictionary_2_t1632706988 * ____responseHeaders_3;
  1154. public:
  1155. inline static int32_t get_offset_of_U3CthreadPriorityU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(WWW_t3688466362, ___U3CthreadPriorityU3Ek__BackingField_0)); }
  1156. inline int32_t get_U3CthreadPriorityU3Ek__BackingField_0() const { return ___U3CthreadPriorityU3Ek__BackingField_0; }
  1157. inline int32_t* get_address_of_U3CthreadPriorityU3Ek__BackingField_0() { return &___U3CthreadPriorityU3Ek__BackingField_0; }
  1158. inline void set_U3CthreadPriorityU3Ek__BackingField_0(int32_t value)
  1159. {
  1160. ___U3CthreadPriorityU3Ek__BackingField_0 = value;
  1161. }
  1162. inline static int32_t get_offset_of__uwr_1() { return static_cast<int32_t>(offsetof(WWW_t3688466362, ____uwr_1)); }
  1163. inline UnityWebRequest_t463507806 * get__uwr_1() const { return ____uwr_1; }
  1164. inline UnityWebRequest_t463507806 ** get_address_of__uwr_1() { return &____uwr_1; }
  1165. inline void set__uwr_1(UnityWebRequest_t463507806 * value)
  1166. {
  1167. ____uwr_1 = value;
  1168. Il2CppCodeGenWriteBarrier((&____uwr_1), value);
  1169. }
  1170. inline static int32_t get_offset_of__assetBundle_2() { return static_cast<int32_t>(offsetof(WWW_t3688466362, ____assetBundle_2)); }
  1171. inline AssetBundle_t1153907252 * get__assetBundle_2() const { return ____assetBundle_2; }
  1172. inline AssetBundle_t1153907252 ** get_address_of__assetBundle_2() { return &____assetBundle_2; }
  1173. inline void set__assetBundle_2(AssetBundle_t1153907252 * value)
  1174. {
  1175. ____assetBundle_2 = value;
  1176. Il2CppCodeGenWriteBarrier((&____assetBundle_2), value);
  1177. }
  1178. inline static int32_t get_offset_of__responseHeaders_3() { return static_cast<int32_t>(offsetof(WWW_t3688466362, ____responseHeaders_3)); }
  1179. inline Dictionary_2_t1632706988 * get__responseHeaders_3() const { return ____responseHeaders_3; }
  1180. inline Dictionary_2_t1632706988 ** get_address_of__responseHeaders_3() { return &____responseHeaders_3; }
  1181. inline void set__responseHeaders_3(Dictionary_2_t1632706988 * value)
  1182. {
  1183. ____responseHeaders_3 = value;
  1184. Il2CppCodeGenWriteBarrier((&____responseHeaders_3), value);
  1185. }
  1186. };
  1187. #ifdef __clang__
  1188. #pragma clang diagnostic pop
  1189. #endif
  1190. #endif // WWW_T3688466362_H
  1191. #ifndef DOWNLOADHANDLERASSETBUNDLE_T197128434_H
  1192. #define DOWNLOADHANDLERASSETBUNDLE_T197128434_H
  1193. #ifdef __clang__
  1194. #pragma clang diagnostic push
  1195. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1196. #pragma clang diagnostic ignored "-Wunused-variable"
  1197. #endif
  1198. // UnityEngine.Networking.DownloadHandlerAssetBundle
  1199. struct DownloadHandlerAssetBundle_t197128434 : public DownloadHandler_t2937767557
  1200. {
  1201. public:
  1202. public:
  1203. };
  1204. #ifdef __clang__
  1205. #pragma clang diagnostic pop
  1206. #endif
  1207. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandlerAssetBundle
  1208. struct DownloadHandlerAssetBundle_t197128434_marshaled_pinvoke : public DownloadHandler_t2937767557_marshaled_pinvoke
  1209. {
  1210. };
  1211. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandlerAssetBundle
  1212. struct DownloadHandlerAssetBundle_t197128434_marshaled_com : public DownloadHandler_t2937767557_marshaled_com
  1213. {
  1214. };
  1215. #endif // DOWNLOADHANDLERASSETBUNDLE_T197128434_H
  1216. #ifndef ASSETBUNDLE_T1153907252_H
  1217. #define ASSETBUNDLE_T1153907252_H
  1218. #ifdef __clang__
  1219. #pragma clang diagnostic push
  1220. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1221. #pragma clang diagnostic ignored "-Wunused-variable"
  1222. #endif
  1223. // UnityEngine.AssetBundle
  1224. struct AssetBundle_t1153907252 : public Object_t631007953
  1225. {
  1226. public:
  1227. public:
  1228. };
  1229. #ifdef __clang__
  1230. #pragma clang diagnostic pop
  1231. #endif
  1232. #endif // ASSETBUNDLE_T1153907252_H
  1233. #ifndef UNITYWEBREQUEST_T463507806_H
  1234. #define UNITYWEBREQUEST_T463507806_H
  1235. #ifdef __clang__
  1236. #pragma clang diagnostic push
  1237. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1238. #pragma clang diagnostic ignored "-Wunused-variable"
  1239. #endif
  1240. // UnityEngine.Networking.UnityWebRequest
  1241. struct UnityWebRequest_t463507806 : public RuntimeObject
  1242. {
  1243. public:
  1244. // System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr
  1245. intptr_t ___m_Ptr_0;
  1246. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler
  1247. DownloadHandler_t2937767557 * ___m_DownloadHandler_1;
  1248. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler
  1249. UploadHandler_t2993558019 * ___m_UploadHandler_2;
  1250. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField
  1251. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9;
  1252. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField
  1253. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10;
  1254. public:
  1255. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UnityWebRequest_t463507806, ___m_Ptr_0)); }
  1256. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1257. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1258. inline void set_m_Ptr_0(intptr_t value)
  1259. {
  1260. ___m_Ptr_0 = value;
  1261. }
  1262. inline static int32_t get_offset_of_m_DownloadHandler_1() { return static_cast<int32_t>(offsetof(UnityWebRequest_t463507806, ___m_DownloadHandler_1)); }
  1263. inline DownloadHandler_t2937767557 * get_m_DownloadHandler_1() const { return ___m_DownloadHandler_1; }
  1264. inline DownloadHandler_t2937767557 ** get_address_of_m_DownloadHandler_1() { return &___m_DownloadHandler_1; }
  1265. inline void set_m_DownloadHandler_1(DownloadHandler_t2937767557 * value)
  1266. {
  1267. ___m_DownloadHandler_1 = value;
  1268. Il2CppCodeGenWriteBarrier((&___m_DownloadHandler_1), value);
  1269. }
  1270. inline static int32_t get_offset_of_m_UploadHandler_2() { return static_cast<int32_t>(offsetof(UnityWebRequest_t463507806, ___m_UploadHandler_2)); }
  1271. inline UploadHandler_t2993558019 * get_m_UploadHandler_2() const { return ___m_UploadHandler_2; }
  1272. inline UploadHandler_t2993558019 ** get_address_of_m_UploadHandler_2() { return &___m_UploadHandler_2; }
  1273. inline void set_m_UploadHandler_2(UploadHandler_t2993558019 * value)
  1274. {
  1275. ___m_UploadHandler_2 = value;
  1276. Il2CppCodeGenWriteBarrier((&___m_UploadHandler_2), value);
  1277. }
  1278. inline static int32_t get_offset_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9() { return static_cast<int32_t>(offsetof(UnityWebRequest_t463507806, ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9)); }
  1279. inline bool get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9() const { return ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9; }
  1280. inline bool* get_address_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9() { return &___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9; }
  1281. inline void set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9(bool value)
  1282. {
  1283. ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9 = value;
  1284. }
  1285. inline static int32_t get_offset_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(UnityWebRequest_t463507806, ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10)); }
  1286. inline bool get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10() const { return ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10; }
  1287. inline bool* get_address_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10() { return &___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10; }
  1288. inline void set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10(bool value)
  1289. {
  1290. ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10 = value;
  1291. }
  1292. };
  1293. #ifdef __clang__
  1294. #pragma clang diagnostic pop
  1295. #endif
  1296. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest
  1297. struct UnityWebRequest_t463507806_marshaled_pinvoke
  1298. {
  1299. intptr_t ___m_Ptr_0;
  1300. DownloadHandler_t2937767557_marshaled_pinvoke ___m_DownloadHandler_1;
  1301. UploadHandler_t2993558019_marshaled_pinvoke ___m_UploadHandler_2;
  1302. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9;
  1303. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10;
  1304. };
  1305. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest
  1306. struct UnityWebRequest_t463507806_marshaled_com
  1307. {
  1308. intptr_t ___m_Ptr_0;
  1309. DownloadHandler_t2937767557_marshaled_com* ___m_DownloadHandler_1;
  1310. UploadHandler_t2993558019_marshaled_com* ___m_UploadHandler_2;
  1311. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_9;
  1312. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_10;
  1313. };
  1314. #endif // UNITYWEBREQUEST_T463507806_H
  1315. #ifndef UNITYWEBREQUESTASYNCOPERATION_T3852015985_H
  1316. #define UNITYWEBREQUESTASYNCOPERATION_T3852015985_H
  1317. #ifdef __clang__
  1318. #pragma clang diagnostic push
  1319. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1320. #pragma clang diagnostic ignored "-Wunused-variable"
  1321. #endif
  1322. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  1323. struct UnityWebRequestAsyncOperation_t3852015985 : public AsyncOperation_t1445031843
  1324. {
  1325. public:
  1326. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequestAsyncOperation::<webRequest>k__BackingField
  1327. UnityWebRequest_t463507806 * ___U3CwebRequestU3Ek__BackingField_2;
  1328. public:
  1329. inline static int32_t get_offset_of_U3CwebRequestU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(UnityWebRequestAsyncOperation_t3852015985, ___U3CwebRequestU3Ek__BackingField_2)); }
  1330. inline UnityWebRequest_t463507806 * get_U3CwebRequestU3Ek__BackingField_2() const { return ___U3CwebRequestU3Ek__BackingField_2; }
  1331. inline UnityWebRequest_t463507806 ** get_address_of_U3CwebRequestU3Ek__BackingField_2() { return &___U3CwebRequestU3Ek__BackingField_2; }
  1332. inline void set_U3CwebRequestU3Ek__BackingField_2(UnityWebRequest_t463507806 * value)
  1333. {
  1334. ___U3CwebRequestU3Ek__BackingField_2 = value;
  1335. Il2CppCodeGenWriteBarrier((&___U3CwebRequestU3Ek__BackingField_2), value);
  1336. }
  1337. };
  1338. #ifdef __clang__
  1339. #pragma clang diagnostic pop
  1340. #endif
  1341. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  1342. struct UnityWebRequestAsyncOperation_t3852015985_marshaled_pinvoke : public AsyncOperation_t1445031843_marshaled_pinvoke
  1343. {
  1344. UnityWebRequest_t463507806_marshaled_pinvoke ___U3CwebRequestU3Ek__BackingField_2;
  1345. };
  1346. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  1347. struct UnityWebRequestAsyncOperation_t3852015985_marshaled_com : public AsyncOperation_t1445031843_marshaled_com
  1348. {
  1349. UnityWebRequest_t463507806_marshaled_com* ___U3CwebRequestU3Ek__BackingField_2;
  1350. };
  1351. #endif // UNITYWEBREQUESTASYNCOPERATION_T3852015985_H
  1352. // System.Byte[]
  1353. struct ByteU5BU5D_t4116647657 : public RuntimeArray
  1354. {
  1355. public:
  1356. ALIGN_FIELD (8) uint8_t m_Items[1];
  1357. public:
  1358. inline uint8_t GetAt(il2cpp_array_size_t index) const
  1359. {
  1360. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1361. return m_Items[index];
  1362. }
  1363. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  1364. {
  1365. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1366. return m_Items + index;
  1367. }
  1368. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  1369. {
  1370. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1371. m_Items[index] = value;
  1372. }
  1373. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  1374. {
  1375. return m_Items[index];
  1376. }
  1377. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1378. {
  1379. return m_Items + index;
  1380. }
  1381. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  1382. {
  1383. m_Items[index] = value;
  1384. }
  1385. };
  1386. // System.Void UnityEngine.CustomYieldInstruction::.ctor()
  1387. extern "C" IL2CPP_METHOD_ATTR void CustomYieldInstruction__ctor_m3408208142 (CustomYieldInstruction_t1895667560 * __this, const RuntimeMethod* method);
  1388. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Get(System.String)
  1389. extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t463507806 * UnityWebRequest_Get_m996521828 (RuntimeObject * __this /* static, unused */, String_t* p0, const RuntimeMethod* method);
  1390. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest()
  1391. extern "C" IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t3852015985 * UnityWebRequest_SendWebRequest_m489860187 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1392. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,UnityEngine.WWWForm)
  1393. extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t463507806 * UnityWebRequest_Post_m4193475377 (RuntimeObject * __this /* static, unused */, String_t* p0, WWWForm_t4064702195 * p1, const RuntimeMethod* method);
  1394. // System.Void UnityEngine.Networking.UnityWebRequest::set_chunkedTransfer(System.Boolean)
  1395. extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_chunkedTransfer_m1735705240 (UnityWebRequest_t463507806 * __this, bool p0, const RuntimeMethod* method);
  1396. // System.Text.Encoding System.Text.Encoding::get_UTF8()
  1397. extern "C" IL2CPP_METHOD_ATTR Encoding_t1523322056 * Encoding_get_UTF8_m1008486739 (RuntimeObject * __this /* static, unused */, const RuntimeMethod* method);
  1398. // System.String UnityEngine.WWW::EscapeURL(System.String,System.Text.Encoding)
  1399. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_EscapeURL_m2044390713 (RuntimeObject * __this /* static, unused */, String_t* ___s0, Encoding_t1523322056 * ___e1, const RuntimeMethod* method);
  1400. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding)
  1401. extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m1351912812 (RuntimeObject * __this /* static, unused */, String_t* p0, Encoding_t1523322056 * p1, const RuntimeMethod* method);
  1402. // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object)
  1403. extern "C" IL2CPP_METHOD_ATTR bool Object_op_Equality_m1810815630 (RuntimeObject * __this /* static, unused */, Object_t631007953 * p0, Object_t631007953 * p1, const RuntimeMethod* method);
  1404. // System.Boolean UnityEngine.WWW::WaitUntilDoneIfPossible()
  1405. extern "C" IL2CPP_METHOD_ATTR bool WWW_WaitUntilDoneIfPossible_m2855479680 (WWW_t3688466362 * __this, const RuntimeMethod* method);
  1406. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isNetworkError()
  1407. extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isNetworkError_m1231611882 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1408. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  1409. extern "C" IL2CPP_METHOD_ATTR DownloadHandler_t2937767557 * UnityWebRequest_get_downloadHandler_m534911913 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1410. // UnityEngine.AssetBundle UnityEngine.Networking.DownloadHandlerAssetBundle::get_assetBundle()
  1411. extern "C" IL2CPP_METHOD_ATTR AssetBundle_t1153907252 * DownloadHandlerAssetBundle_get_assetBundle_m753005115 (DownloadHandlerAssetBundle_t197128434 * __this, const RuntimeMethod* method);
  1412. // System.Byte[] UnityEngine.WWW::get_bytes()
  1413. extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_t4116647657* WWW_get_bytes_m3061182897 (WWW_t3688466362 * __this, const RuntimeMethod* method);
  1414. // UnityEngine.AssetBundle UnityEngine.AssetBundle::LoadFromMemory(System.Byte[])
  1415. extern "C" IL2CPP_METHOD_ATTR AssetBundle_t1153907252 * AssetBundle_LoadFromMemory_m4030851973 (RuntimeObject * __this /* static, unused */, ByteU5BU5D_t4116647657* p0, const RuntimeMethod* method);
  1416. // System.Byte[] UnityEngine.Networking.DownloadHandler::get_data()
  1417. extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_t4116647657* DownloadHandler_get_data_m1669096410 (DownloadHandler_t2937767557 * __this, const RuntimeMethod* method);
  1418. // System.UInt64 UnityEngine.Networking.UnityWebRequest::get_downloadedBytes()
  1419. extern "C" IL2CPP_METHOD_ATTR uint64_t UnityWebRequest_get_downloadedBytes_m2811634265 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1420. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isDone()
  1421. extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_m1752128881 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1422. // System.String UnityEngine.Networking.UnityWebRequest::get_error()
  1423. extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_m1613086199 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1424. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  1425. extern "C" IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m1090830473 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1426. // System.String UnityEngine.WWW::GetStatusCodeName(System.Int64)
  1427. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_GetStatusCodeName_m3580893459 (WWW_t3688466362 * __this, int64_t ___statusCode0, const RuntimeMethod* method);
  1428. // System.String System.String::Format(System.String,System.Object,System.Object)
  1429. extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m2556382932 (RuntimeObject * __this /* static, unused */, String_t* p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method);
  1430. // System.String UnityEngine.Networking.UnityWebRequest::get_url()
  1431. extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_url_m2568598920 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1432. // System.Void UnityEngine.Networking.UnityWebRequest::Dispose()
  1433. extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m3261105905 (UnityWebRequest_t463507806 * __this, const RuntimeMethod* method);
  1434. // System.String UnityEngine.WWW::get_url()
  1435. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_get_url_m3672399347 (WWW_t3688466362 * __this, const RuntimeMethod* method);
  1436. // System.Boolean System.String::StartsWith(System.String,System.StringComparison)
  1437. extern "C" IL2CPP_METHOD_ATTR bool String_StartsWith_m2640722675 (String_t* __this, String_t* p0, int32_t p1, const RuntimeMethod* method);
  1438. // System.Void UnityEngine.Debug::LogError(System.Object)
  1439. extern "C" IL2CPP_METHOD_ATTR void Debug_LogError_m2850623458 (RuntimeObject * __this /* static, unused */, RuntimeObject * p0, const RuntimeMethod* method);
  1440. #ifdef __clang__
  1441. #pragma clang diagnostic push
  1442. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1443. #pragma clang diagnostic ignored "-Wunused-variable"
  1444. #endif
  1445. #ifdef __clang__
  1446. #pragma clang diagnostic pop
  1447. #endif
  1448. #ifdef __clang__
  1449. #pragma clang diagnostic push
  1450. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1451. #pragma clang diagnostic ignored "-Wunused-variable"
  1452. #endif
  1453. // System.Void UnityEngine.WWW::.ctor(System.String)
  1454. extern "C" IL2CPP_METHOD_ATTR void WWW__ctor_m2915079343 (WWW_t3688466362 * __this, String_t* ___url0, const RuntimeMethod* method)
  1455. {
  1456. {
  1457. CustomYieldInstruction__ctor_m3408208142(__this, /*hidden argument*/NULL);
  1458. String_t* L_0 = ___url0;
  1459. UnityWebRequest_t463507806 * L_1 = UnityWebRequest_Get_m996521828(NULL /*static, unused*/, L_0, /*hidden argument*/NULL);
  1460. __this->set__uwr_1(L_1);
  1461. UnityWebRequest_t463507806 * L_2 = __this->get__uwr_1();
  1462. NullCheck(L_2);
  1463. UnityWebRequest_SendWebRequest_m489860187(L_2, /*hidden argument*/NULL);
  1464. return;
  1465. }
  1466. }
  1467. // System.Void UnityEngine.WWW::.ctor(System.String,UnityEngine.WWWForm)
  1468. extern "C" IL2CPP_METHOD_ATTR void WWW__ctor_m1562165 (WWW_t3688466362 * __this, String_t* ___url0, WWWForm_t4064702195 * ___form1, const RuntimeMethod* method)
  1469. {
  1470. {
  1471. CustomYieldInstruction__ctor_m3408208142(__this, /*hidden argument*/NULL);
  1472. String_t* L_0 = ___url0;
  1473. WWWForm_t4064702195 * L_1 = ___form1;
  1474. UnityWebRequest_t463507806 * L_2 = UnityWebRequest_Post_m4193475377(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  1475. __this->set__uwr_1(L_2);
  1476. UnityWebRequest_t463507806 * L_3 = __this->get__uwr_1();
  1477. NullCheck(L_3);
  1478. UnityWebRequest_set_chunkedTransfer_m1735705240(L_3, (bool)0, /*hidden argument*/NULL);
  1479. UnityWebRequest_t463507806 * L_4 = __this->get__uwr_1();
  1480. NullCheck(L_4);
  1481. UnityWebRequest_SendWebRequest_m489860187(L_4, /*hidden argument*/NULL);
  1482. return;
  1483. }
  1484. }
  1485. // System.String UnityEngine.WWW::EscapeURL(System.String)
  1486. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_EscapeURL_m4251687403 (RuntimeObject * __this /* static, unused */, String_t* ___s0, const RuntimeMethod* method)
  1487. {
  1488. static bool s_Il2CppMethodInitialized;
  1489. if (!s_Il2CppMethodInitialized)
  1490. {
  1491. il2cpp_codegen_initialize_method (WWW_EscapeURL_m4251687403_MetadataUsageId);
  1492. s_Il2CppMethodInitialized = true;
  1493. }
  1494. String_t* V_0 = NULL;
  1495. {
  1496. String_t* L_0 = ___s0;
  1497. IL2CPP_RUNTIME_CLASS_INIT(Encoding_t1523322056_il2cpp_TypeInfo_var);
  1498. Encoding_t1523322056 * L_1 = Encoding_get_UTF8_m1008486739(NULL /*static, unused*/, /*hidden argument*/NULL);
  1499. String_t* L_2 = WWW_EscapeURL_m2044390713(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  1500. V_0 = L_2;
  1501. goto IL_0012;
  1502. }
  1503. IL_0012:
  1504. {
  1505. String_t* L_3 = V_0;
  1506. return L_3;
  1507. }
  1508. }
  1509. // System.String UnityEngine.WWW::EscapeURL(System.String,System.Text.Encoding)
  1510. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_EscapeURL_m2044390713 (RuntimeObject * __this /* static, unused */, String_t* ___s0, Encoding_t1523322056 * ___e1, const RuntimeMethod* method)
  1511. {
  1512. String_t* V_0 = NULL;
  1513. {
  1514. String_t* L_0 = ___s0;
  1515. Encoding_t1523322056 * L_1 = ___e1;
  1516. String_t* L_2 = UnityWebRequest_EscapeURL_m1351912812(NULL /*static, unused*/, L_0, L_1, /*hidden argument*/NULL);
  1517. V_0 = L_2;
  1518. goto IL_000e;
  1519. }
  1520. IL_000e:
  1521. {
  1522. String_t* L_3 = V_0;
  1523. return L_3;
  1524. }
  1525. }
  1526. // UnityEngine.AssetBundle UnityEngine.WWW::get_assetBundle()
  1527. extern "C" IL2CPP_METHOD_ATTR AssetBundle_t1153907252 * WWW_get_assetBundle_m3753667806 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1528. {
  1529. static bool s_Il2CppMethodInitialized;
  1530. if (!s_Il2CppMethodInitialized)
  1531. {
  1532. il2cpp_codegen_initialize_method (WWW_get_assetBundle_m3753667806_MetadataUsageId);
  1533. s_Il2CppMethodInitialized = true;
  1534. }
  1535. AssetBundle_t1153907252 * V_0 = NULL;
  1536. DownloadHandlerAssetBundle_t197128434 * V_1 = NULL;
  1537. ByteU5BU5D_t4116647657* V_2 = NULL;
  1538. {
  1539. AssetBundle_t1153907252 * L_0 = __this->get__assetBundle_2();
  1540. IL2CPP_RUNTIME_CLASS_INIT(Object_t631007953_il2cpp_TypeInfo_var);
  1541. bool L_1 = Object_op_Equality_m1810815630(NULL /*static, unused*/, L_0, (Object_t631007953 *)NULL, /*hidden argument*/NULL);
  1542. if (!L_1)
  1543. {
  1544. goto IL_0087;
  1545. }
  1546. }
  1547. {
  1548. bool L_2 = WWW_WaitUntilDoneIfPossible_m2855479680(__this, /*hidden argument*/NULL);
  1549. if (L_2)
  1550. {
  1551. goto IL_0025;
  1552. }
  1553. }
  1554. {
  1555. V_0 = (AssetBundle_t1153907252 *)NULL;
  1556. goto IL_0093;
  1557. }
  1558. IL_0025:
  1559. {
  1560. UnityWebRequest_t463507806 * L_3 = __this->get__uwr_1();
  1561. NullCheck(L_3);
  1562. bool L_4 = UnityWebRequest_get_isNetworkError_m1231611882(L_3, /*hidden argument*/NULL);
  1563. if (!L_4)
  1564. {
  1565. goto IL_003c;
  1566. }
  1567. }
  1568. {
  1569. V_0 = (AssetBundle_t1153907252 *)NULL;
  1570. goto IL_0093;
  1571. }
  1572. IL_003c:
  1573. {
  1574. UnityWebRequest_t463507806 * L_5 = __this->get__uwr_1();
  1575. NullCheck(L_5);
  1576. DownloadHandler_t2937767557 * L_6 = UnityWebRequest_get_downloadHandler_m534911913(L_5, /*hidden argument*/NULL);
  1577. V_1 = ((DownloadHandlerAssetBundle_t197128434 *)IsInstSealed((RuntimeObject*)L_6, DownloadHandlerAssetBundle_t197128434_il2cpp_TypeInfo_var));
  1578. DownloadHandlerAssetBundle_t197128434 * L_7 = V_1;
  1579. if (!L_7)
  1580. {
  1581. goto IL_0064;
  1582. }
  1583. }
  1584. {
  1585. DownloadHandlerAssetBundle_t197128434 * L_8 = V_1;
  1586. NullCheck(L_8);
  1587. AssetBundle_t1153907252 * L_9 = DownloadHandlerAssetBundle_get_assetBundle_m753005115(L_8, /*hidden argument*/NULL);
  1588. __this->set__assetBundle_2(L_9);
  1589. goto IL_0086;
  1590. }
  1591. IL_0064:
  1592. {
  1593. ByteU5BU5D_t4116647657* L_10 = WWW_get_bytes_m3061182897(__this, /*hidden argument*/NULL);
  1594. V_2 = L_10;
  1595. ByteU5BU5D_t4116647657* L_11 = V_2;
  1596. if (L_11)
  1597. {
  1598. goto IL_0079;
  1599. }
  1600. }
  1601. {
  1602. V_0 = (AssetBundle_t1153907252 *)NULL;
  1603. goto IL_0093;
  1604. }
  1605. IL_0079:
  1606. {
  1607. ByteU5BU5D_t4116647657* L_12 = V_2;
  1608. AssetBundle_t1153907252 * L_13 = AssetBundle_LoadFromMemory_m4030851973(NULL /*static, unused*/, L_12, /*hidden argument*/NULL);
  1609. __this->set__assetBundle_2(L_13);
  1610. }
  1611. IL_0086:
  1612. {
  1613. }
  1614. IL_0087:
  1615. {
  1616. AssetBundle_t1153907252 * L_14 = __this->get__assetBundle_2();
  1617. V_0 = L_14;
  1618. goto IL_0093;
  1619. }
  1620. IL_0093:
  1621. {
  1622. AssetBundle_t1153907252 * L_15 = V_0;
  1623. return L_15;
  1624. }
  1625. }
  1626. // System.Byte[] UnityEngine.WWW::get_bytes()
  1627. extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_t4116647657* WWW_get_bytes_m3061182897 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1628. {
  1629. static bool s_Il2CppMethodInitialized;
  1630. if (!s_Il2CppMethodInitialized)
  1631. {
  1632. il2cpp_codegen_initialize_method (WWW_get_bytes_m3061182897_MetadataUsageId);
  1633. s_Il2CppMethodInitialized = true;
  1634. }
  1635. ByteU5BU5D_t4116647657* V_0 = NULL;
  1636. DownloadHandler_t2937767557 * V_1 = NULL;
  1637. {
  1638. bool L_0 = WWW_WaitUntilDoneIfPossible_m2855479680(__this, /*hidden argument*/NULL);
  1639. if (L_0)
  1640. {
  1641. goto IL_0018;
  1642. }
  1643. }
  1644. {
  1645. V_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0));
  1646. goto IL_005e;
  1647. }
  1648. IL_0018:
  1649. {
  1650. UnityWebRequest_t463507806 * L_1 = __this->get__uwr_1();
  1651. NullCheck(L_1);
  1652. bool L_2 = UnityWebRequest_get_isNetworkError_m1231611882(L_1, /*hidden argument*/NULL);
  1653. if (!L_2)
  1654. {
  1655. goto IL_0034;
  1656. }
  1657. }
  1658. {
  1659. V_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0));
  1660. goto IL_005e;
  1661. }
  1662. IL_0034:
  1663. {
  1664. UnityWebRequest_t463507806 * L_3 = __this->get__uwr_1();
  1665. NullCheck(L_3);
  1666. DownloadHandler_t2937767557 * L_4 = UnityWebRequest_get_downloadHandler_m534911913(L_3, /*hidden argument*/NULL);
  1667. V_1 = L_4;
  1668. DownloadHandler_t2937767557 * L_5 = V_1;
  1669. if (L_5)
  1670. {
  1671. goto IL_0052;
  1672. }
  1673. }
  1674. {
  1675. V_0 = ((ByteU5BU5D_t4116647657*)SZArrayNew(ByteU5BU5D_t4116647657_il2cpp_TypeInfo_var, (uint32_t)0));
  1676. goto IL_005e;
  1677. }
  1678. IL_0052:
  1679. {
  1680. DownloadHandler_t2937767557 * L_6 = V_1;
  1681. NullCheck(L_6);
  1682. ByteU5BU5D_t4116647657* L_7 = DownloadHandler_get_data_m1669096410(L_6, /*hidden argument*/NULL);
  1683. V_0 = L_7;
  1684. goto IL_005e;
  1685. }
  1686. IL_005e:
  1687. {
  1688. ByteU5BU5D_t4116647657* L_8 = V_0;
  1689. return L_8;
  1690. }
  1691. }
  1692. // System.Int32 UnityEngine.WWW::get_bytesDownloaded()
  1693. extern "C" IL2CPP_METHOD_ATTR int32_t WWW_get_bytesDownloaded_m2453026756 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1694. {
  1695. int32_t V_0 = 0;
  1696. {
  1697. UnityWebRequest_t463507806 * L_0 = __this->get__uwr_1();
  1698. NullCheck(L_0);
  1699. uint64_t L_1 = UnityWebRequest_get_downloadedBytes_m2811634265(L_0, /*hidden argument*/NULL);
  1700. V_0 = (((int32_t)((int32_t)L_1)));
  1701. goto IL_0013;
  1702. }
  1703. IL_0013:
  1704. {
  1705. int32_t L_2 = V_0;
  1706. return L_2;
  1707. }
  1708. }
  1709. // System.String UnityEngine.WWW::get_error()
  1710. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_get_error_m3055313367 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1711. {
  1712. static bool s_Il2CppMethodInitialized;
  1713. if (!s_Il2CppMethodInitialized)
  1714. {
  1715. il2cpp_codegen_initialize_method (WWW_get_error_m3055313367_MetadataUsageId);
  1716. s_Il2CppMethodInitialized = true;
  1717. }
  1718. String_t* V_0 = NULL;
  1719. {
  1720. UnityWebRequest_t463507806 * L_0 = __this->get__uwr_1();
  1721. NullCheck(L_0);
  1722. bool L_1 = UnityWebRequest_get_isDone_m1752128881(L_0, /*hidden argument*/NULL);
  1723. if (L_1)
  1724. {
  1725. goto IL_0018;
  1726. }
  1727. }
  1728. {
  1729. V_0 = (String_t*)NULL;
  1730. goto IL_0087;
  1731. }
  1732. IL_0018:
  1733. {
  1734. UnityWebRequest_t463507806 * L_2 = __this->get__uwr_1();
  1735. NullCheck(L_2);
  1736. bool L_3 = UnityWebRequest_get_isNetworkError_m1231611882(L_2, /*hidden argument*/NULL);
  1737. if (!L_3)
  1738. {
  1739. goto IL_0039;
  1740. }
  1741. }
  1742. {
  1743. UnityWebRequest_t463507806 * L_4 = __this->get__uwr_1();
  1744. NullCheck(L_4);
  1745. String_t* L_5 = UnityWebRequest_get_error_m1613086199(L_4, /*hidden argument*/NULL);
  1746. V_0 = L_5;
  1747. goto IL_0087;
  1748. }
  1749. IL_0039:
  1750. {
  1751. UnityWebRequest_t463507806 * L_6 = __this->get__uwr_1();
  1752. NullCheck(L_6);
  1753. int64_t L_7 = UnityWebRequest_get_responseCode_m1090830473(L_6, /*hidden argument*/NULL);
  1754. if ((((int64_t)L_7) < ((int64_t)(((int64_t)((int64_t)((int32_t)400)))))))
  1755. {
  1756. goto IL_0080;
  1757. }
  1758. }
  1759. {
  1760. UnityWebRequest_t463507806 * L_8 = __this->get__uwr_1();
  1761. NullCheck(L_8);
  1762. int64_t L_9 = UnityWebRequest_get_responseCode_m1090830473(L_8, /*hidden argument*/NULL);
  1763. int64_t L_10 = L_9;
  1764. RuntimeObject * L_11 = Box(Int64_t3736567304_il2cpp_TypeInfo_var, &L_10);
  1765. UnityWebRequest_t463507806 * L_12 = __this->get__uwr_1();
  1766. NullCheck(L_12);
  1767. int64_t L_13 = UnityWebRequest_get_responseCode_m1090830473(L_12, /*hidden argument*/NULL);
  1768. String_t* L_14 = WWW_GetStatusCodeName_m3580893459(__this, L_13, /*hidden argument*/NULL);
  1769. IL2CPP_RUNTIME_CLASS_INIT(String_t_il2cpp_TypeInfo_var);
  1770. String_t* L_15 = String_Format_m2556382932(NULL /*static, unused*/, _stringLiteral380657706, L_11, L_14, /*hidden argument*/NULL);
  1771. V_0 = L_15;
  1772. goto IL_0087;
  1773. }
  1774. IL_0080:
  1775. {
  1776. V_0 = (String_t*)NULL;
  1777. goto IL_0087;
  1778. }
  1779. IL_0087:
  1780. {
  1781. String_t* L_16 = V_0;
  1782. return L_16;
  1783. }
  1784. }
  1785. // System.String UnityEngine.WWW::get_url()
  1786. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_get_url_m3672399347 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1787. {
  1788. String_t* V_0 = NULL;
  1789. {
  1790. UnityWebRequest_t463507806 * L_0 = __this->get__uwr_1();
  1791. NullCheck(L_0);
  1792. String_t* L_1 = UnityWebRequest_get_url_m2568598920(L_0, /*hidden argument*/NULL);
  1793. V_0 = L_1;
  1794. goto IL_0012;
  1795. }
  1796. IL_0012:
  1797. {
  1798. String_t* L_2 = V_0;
  1799. return L_2;
  1800. }
  1801. }
  1802. // System.Boolean UnityEngine.WWW::get_keepWaiting()
  1803. extern "C" IL2CPP_METHOD_ATTR bool WWW_get_keepWaiting_m1438015190 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1804. {
  1805. bool V_0 = false;
  1806. int32_t G_B3_0 = 0;
  1807. {
  1808. UnityWebRequest_t463507806 * L_0 = __this->get__uwr_1();
  1809. if (L_0)
  1810. {
  1811. goto IL_0012;
  1812. }
  1813. }
  1814. {
  1815. G_B3_0 = 0;
  1816. goto IL_0020;
  1817. }
  1818. IL_0012:
  1819. {
  1820. UnityWebRequest_t463507806 * L_1 = __this->get__uwr_1();
  1821. NullCheck(L_1);
  1822. bool L_2 = UnityWebRequest_get_isDone_m1752128881(L_1, /*hidden argument*/NULL);
  1823. G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  1824. }
  1825. IL_0020:
  1826. {
  1827. V_0 = (bool)G_B3_0;
  1828. goto IL_0026;
  1829. }
  1830. IL_0026:
  1831. {
  1832. bool L_3 = V_0;
  1833. return L_3;
  1834. }
  1835. }
  1836. // System.Void UnityEngine.WWW::Dispose()
  1837. extern "C" IL2CPP_METHOD_ATTR void WWW_Dispose_m2256148703 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1838. {
  1839. {
  1840. UnityWebRequest_t463507806 * L_0 = __this->get__uwr_1();
  1841. if (!L_0)
  1842. {
  1843. goto IL_0020;
  1844. }
  1845. }
  1846. {
  1847. UnityWebRequest_t463507806 * L_1 = __this->get__uwr_1();
  1848. NullCheck(L_1);
  1849. UnityWebRequest_Dispose_m3261105905(L_1, /*hidden argument*/NULL);
  1850. __this->set__uwr_1((UnityWebRequest_t463507806 *)NULL);
  1851. }
  1852. IL_0020:
  1853. {
  1854. return;
  1855. }
  1856. }
  1857. // System.Boolean UnityEngine.WWW::WaitUntilDoneIfPossible()
  1858. extern "C" IL2CPP_METHOD_ATTR bool WWW_WaitUntilDoneIfPossible_m2855479680 (WWW_t3688466362 * __this, const RuntimeMethod* method)
  1859. {
  1860. static bool s_Il2CppMethodInitialized;
  1861. if (!s_Il2CppMethodInitialized)
  1862. {
  1863. il2cpp_codegen_initialize_method (WWW_WaitUntilDoneIfPossible_m2855479680_MetadataUsageId);
  1864. s_Il2CppMethodInitialized = true;
  1865. }
  1866. bool V_0 = false;
  1867. {
  1868. UnityWebRequest_t463507806 * L_0 = __this->get__uwr_1();
  1869. NullCheck(L_0);
  1870. bool L_1 = UnityWebRequest_get_isDone_m1752128881(L_0, /*hidden argument*/NULL);
  1871. if (!L_1)
  1872. {
  1873. goto IL_0018;
  1874. }
  1875. }
  1876. {
  1877. V_0 = (bool)1;
  1878. goto IL_005f;
  1879. }
  1880. IL_0018:
  1881. {
  1882. String_t* L_2 = WWW_get_url_m3672399347(__this, /*hidden argument*/NULL);
  1883. NullCheck(L_2);
  1884. bool L_3 = String_StartsWith_m2640722675(L_2, _stringLiteral4054833267, 5, /*hidden argument*/NULL);
  1885. if (!L_3)
  1886. {
  1887. goto IL_004d;
  1888. }
  1889. }
  1890. {
  1891. goto IL_0036;
  1892. }
  1893. IL_0034:
  1894. {
  1895. }
  1896. IL_0036:
  1897. {
  1898. UnityWebRequest_t463507806 * L_4 = __this->get__uwr_1();
  1899. NullCheck(L_4);
  1900. bool L_5 = UnityWebRequest_get_isDone_m1752128881(L_4, /*hidden argument*/NULL);
  1901. if (!L_5)
  1902. {
  1903. goto IL_0034;
  1904. }
  1905. }
  1906. {
  1907. V_0 = (bool)1;
  1908. goto IL_005f;
  1909. }
  1910. IL_004d:
  1911. {
  1912. IL2CPP_RUNTIME_CLASS_INIT(Debug_t3317548046_il2cpp_TypeInfo_var);
  1913. Debug_LogError_m2850623458(NULL /*static, unused*/, _stringLiteral1973828197, /*hidden argument*/NULL);
  1914. V_0 = (bool)0;
  1915. goto IL_005f;
  1916. }
  1917. IL_005f:
  1918. {
  1919. bool L_6 = V_0;
  1920. return L_6;
  1921. }
  1922. }
  1923. // System.String UnityEngine.WWW::GetStatusCodeName(System.Int64)
  1924. extern "C" IL2CPP_METHOD_ATTR String_t* WWW_GetStatusCodeName_m3580893459 (WWW_t3688466362 * __this, int64_t ___statusCode0, const RuntimeMethod* method)
  1925. {
  1926. static bool s_Il2CppMethodInitialized;
  1927. if (!s_Il2CppMethodInitialized)
  1928. {
  1929. il2cpp_codegen_initialize_method (WWW_GetStatusCodeName_m3580893459_MetadataUsageId);
  1930. s_Il2CppMethodInitialized = true;
  1931. }
  1932. String_t* V_0 = NULL;
  1933. {
  1934. int64_t L_0 = ___statusCode0;
  1935. if ((((int64_t)L_0) < ((int64_t)(((int64_t)((int64_t)((int32_t)400)))))))
  1936. {
  1937. goto IL_006f;
  1938. }
  1939. }
  1940. {
  1941. int64_t L_1 = ___statusCode0;
  1942. if ((((int64_t)L_1) > ((int64_t)(((int64_t)((int64_t)((int32_t)417)))))))
  1943. {
  1944. goto IL_006f;
  1945. }
  1946. }
  1947. {
  1948. int64_t L_2 = ___statusCode0;
  1949. switch ((((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_2, (int64_t)(((int64_t)((int64_t)((int32_t)400))))))))))
  1950. {
  1951. case 0:
  1952. {
  1953. goto IL_01d4;
  1954. }
  1955. case 1:
  1956. {
  1957. goto IL_01df;
  1958. }
  1959. case 2:
  1960. {
  1961. goto IL_01ea;
  1962. }
  1963. case 3:
  1964. {
  1965. goto IL_01f5;
  1966. }
  1967. case 4:
  1968. {
  1969. goto IL_0200;
  1970. }
  1971. case 5:
  1972. {
  1973. goto IL_020b;
  1974. }
  1975. case 6:
  1976. {
  1977. goto IL_0216;
  1978. }
  1979. case 7:
  1980. {
  1981. goto IL_0221;
  1982. }
  1983. case 8:
  1984. {
  1985. goto IL_022c;
  1986. }
  1987. case 9:
  1988. {
  1989. goto IL_0237;
  1990. }
  1991. case 10:
  1992. {
  1993. goto IL_0242;
  1994. }
  1995. case 11:
  1996. {
  1997. goto IL_024d;
  1998. }
  1999. case 12:
  2000. {
  2001. goto IL_0258;
  2002. }
  2003. case 13:
  2004. {
  2005. goto IL_0263;
  2006. }
  2007. case 14:
  2008. {
  2009. goto IL_026e;
  2010. }
  2011. case 15:
  2012. {
  2013. goto IL_0279;
  2014. }
  2015. case 16:
  2016. {
  2017. goto IL_0284;
  2018. }
  2019. case 17:
  2020. {
  2021. goto IL_028f;
  2022. }
  2023. }
  2024. }
  2025. IL_006f:
  2026. {
  2027. int64_t L_3 = ___statusCode0;
  2028. if ((((int64_t)L_3) < ((int64_t)(((int64_t)((int64_t)((int32_t)200)))))))
  2029. {
  2030. goto IL_00b1;
  2031. }
  2032. }
  2033. {
  2034. int64_t L_4 = ___statusCode0;
  2035. if ((((int64_t)L_4) > ((int64_t)(((int64_t)((int64_t)((int32_t)206)))))))
  2036. {
  2037. goto IL_00b1;
  2038. }
  2039. }
  2040. {
  2041. int64_t L_5 = ___statusCode0;
  2042. switch ((((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_5, (int64_t)(((int64_t)((int64_t)((int32_t)200))))))))))
  2043. {
  2044. case 0:
  2045. {
  2046. goto IL_013a;
  2047. }
  2048. case 1:
  2049. {
  2050. goto IL_0145;
  2051. }
  2052. case 2:
  2053. {
  2054. goto IL_0150;
  2055. }
  2056. case 3:
  2057. {
  2058. goto IL_015b;
  2059. }
  2060. case 4:
  2061. {
  2062. goto IL_0166;
  2063. }
  2064. case 5:
  2065. {
  2066. goto IL_0171;
  2067. }
  2068. case 6:
  2069. {
  2070. goto IL_017c;
  2071. }
  2072. }
  2073. }
  2074. IL_00b1:
  2075. {
  2076. int64_t L_6 = ___statusCode0;
  2077. if ((((int64_t)L_6) < ((int64_t)(((int64_t)((int64_t)((int32_t)300)))))))
  2078. {
  2079. goto IL_00f7;
  2080. }
  2081. }
  2082. {
  2083. int64_t L_7 = ___statusCode0;
  2084. if ((((int64_t)L_7) > ((int64_t)(((int64_t)((int64_t)((int32_t)307)))))))
  2085. {
  2086. goto IL_00f7;
  2087. }
  2088. }
  2089. {
  2090. int64_t L_8 = ___statusCode0;
  2091. switch ((((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_8, (int64_t)(((int64_t)((int64_t)((int32_t)300))))))))))
  2092. {
  2093. case 0:
  2094. {
  2095. goto IL_0187;
  2096. }
  2097. case 1:
  2098. {
  2099. goto IL_0192;
  2100. }
  2101. case 2:
  2102. {
  2103. goto IL_019d;
  2104. }
  2105. case 3:
  2106. {
  2107. goto IL_01a8;
  2108. }
  2109. case 4:
  2110. {
  2111. goto IL_01b3;
  2112. }
  2113. case 5:
  2114. {
  2115. goto IL_01be;
  2116. }
  2117. case 6:
  2118. {
  2119. goto IL_00f7;
  2120. }
  2121. case 7:
  2122. {
  2123. goto IL_01c9;
  2124. }
  2125. }
  2126. }
  2127. IL_00f7:
  2128. {
  2129. int64_t L_9 = ___statusCode0;
  2130. if ((((int64_t)L_9) < ((int64_t)(((int64_t)((int64_t)((int32_t)500)))))))
  2131. {
  2132. goto IL_02dc;
  2133. }
  2134. }
  2135. {
  2136. int64_t L_10 = ___statusCode0;
  2137. if ((((int64_t)L_10) > ((int64_t)(((int64_t)((int64_t)((int32_t)505)))))))
  2138. {
  2139. goto IL_02dc;
  2140. }
  2141. }
  2142. {
  2143. int64_t L_11 = ___statusCode0;
  2144. switch ((((int32_t)((int32_t)((int64_t)il2cpp_codegen_subtract((int64_t)L_11, (int64_t)(((int64_t)((int64_t)((int32_t)500))))))))))
  2145. {
  2146. case 0:
  2147. {
  2148. goto IL_029a;
  2149. }
  2150. case 1:
  2151. {
  2152. goto IL_02a5;
  2153. }
  2154. case 2:
  2155. {
  2156. goto IL_02b0;
  2157. }
  2158. case 3:
  2159. {
  2160. goto IL_02bb;
  2161. }
  2162. case 4:
  2163. {
  2164. goto IL_02c6;
  2165. }
  2166. case 5:
  2167. {
  2168. goto IL_02d1;
  2169. }
  2170. }
  2171. }
  2172. {
  2173. goto IL_02dc;
  2174. }
  2175. IL_013a:
  2176. {
  2177. V_0 = _stringLiteral3457136609;
  2178. goto IL_02e7;
  2179. }
  2180. IL_0145:
  2181. {
  2182. V_0 = _stringLiteral3911804090;
  2183. goto IL_02e7;
  2184. }
  2185. IL_0150:
  2186. {
  2187. V_0 = _stringLiteral2487325543;
  2188. goto IL_02e7;
  2189. }
  2190. IL_015b:
  2191. {
  2192. V_0 = _stringLiteral3860885797;
  2193. goto IL_02e7;
  2194. }
  2195. IL_0166:
  2196. {
  2197. V_0 = _stringLiteral3476706848;
  2198. goto IL_02e7;
  2199. }
  2200. IL_0171:
  2201. {
  2202. V_0 = _stringLiteral560819067;
  2203. goto IL_02e7;
  2204. }
  2205. IL_017c:
  2206. {
  2207. V_0 = _stringLiteral2030167956;
  2208. goto IL_02e7;
  2209. }
  2210. IL_0187:
  2211. {
  2212. V_0 = _stringLiteral1814237603;
  2213. goto IL_02e7;
  2214. }
  2215. IL_0192:
  2216. {
  2217. V_0 = _stringLiteral4140321389;
  2218. goto IL_02e7;
  2219. }
  2220. IL_019d:
  2221. {
  2222. V_0 = _stringLiteral2002596717;
  2223. goto IL_02e7;
  2224. }
  2225. IL_01a8:
  2226. {
  2227. V_0 = _stringLiteral1659593328;
  2228. goto IL_02e7;
  2229. }
  2230. IL_01b3:
  2231. {
  2232. V_0 = _stringLiteral4277434149;
  2233. goto IL_02e7;
  2234. }
  2235. IL_01be:
  2236. {
  2237. V_0 = _stringLiteral3090824594;
  2238. goto IL_02e7;
  2239. }
  2240. IL_01c9:
  2241. {
  2242. V_0 = _stringLiteral3842069051;
  2243. goto IL_02e7;
  2244. }
  2245. IL_01d4:
  2246. {
  2247. V_0 = _stringLiteral4233297459;
  2248. goto IL_02e7;
  2249. }
  2250. IL_01df:
  2251. {
  2252. V_0 = _stringLiteral3545044340;
  2253. goto IL_02e7;
  2254. }
  2255. IL_01ea:
  2256. {
  2257. V_0 = _stringLiteral573727993;
  2258. goto IL_02e7;
  2259. }
  2260. IL_01f5:
  2261. {
  2262. V_0 = _stringLiteral2117271536;
  2263. goto IL_02e7;
  2264. }
  2265. IL_0200:
  2266. {
  2267. V_0 = _stringLiteral2178748878;
  2268. goto IL_02e7;
  2269. }
  2270. IL_020b:
  2271. {
  2272. V_0 = _stringLiteral106317971;
  2273. goto IL_02e7;
  2274. }
  2275. IL_0216:
  2276. {
  2277. V_0 = _stringLiteral461727106;
  2278. goto IL_02e7;
  2279. }
  2280. IL_0221:
  2281. {
  2282. V_0 = _stringLiteral1542497020;
  2283. goto IL_02e7;
  2284. }
  2285. IL_022c:
  2286. {
  2287. V_0 = _stringLiteral2343474426;
  2288. goto IL_02e7;
  2289. }
  2290. IL_0237:
  2291. {
  2292. V_0 = _stringLiteral1138636386;
  2293. goto IL_02e7;
  2294. }
  2295. IL_0242:
  2296. {
  2297. V_0 = _stringLiteral2791739693;
  2298. goto IL_02e7;
  2299. }
  2300. IL_024d:
  2301. {
  2302. V_0 = _stringLiteral1091611732;
  2303. goto IL_02e7;
  2304. }
  2305. IL_0258:
  2306. {
  2307. V_0 = _stringLiteral356324127;
  2308. goto IL_02e7;
  2309. }
  2310. IL_0263:
  2311. {
  2312. V_0 = _stringLiteral624401215;
  2313. goto IL_02e7;
  2314. }
  2315. IL_026e:
  2316. {
  2317. V_0 = _stringLiteral1073086928;
  2318. goto IL_02e7;
  2319. }
  2320. IL_0279:
  2321. {
  2322. V_0 = _stringLiteral1060465165;
  2323. goto IL_02e7;
  2324. }
  2325. IL_0284:
  2326. {
  2327. V_0 = _stringLiteral3739562776;
  2328. goto IL_02e7;
  2329. }
  2330. IL_028f:
  2331. {
  2332. V_0 = _stringLiteral3244775435;
  2333. goto IL_02e7;
  2334. }
  2335. IL_029a:
  2336. {
  2337. V_0 = _stringLiteral3899005722;
  2338. goto IL_02e7;
  2339. }
  2340. IL_02a5:
  2341. {
  2342. V_0 = _stringLiteral4002396095;
  2343. goto IL_02e7;
  2344. }
  2345. IL_02b0:
  2346. {
  2347. V_0 = _stringLiteral3604523934;
  2348. goto IL_02e7;
  2349. }
  2350. IL_02bb:
  2351. {
  2352. V_0 = _stringLiteral2201204884;
  2353. goto IL_02e7;
  2354. }
  2355. IL_02c6:
  2356. {
  2357. V_0 = _stringLiteral3363965078;
  2358. goto IL_02e7;
  2359. }
  2360. IL_02d1:
  2361. {
  2362. V_0 = _stringLiteral858510039;
  2363. goto IL_02e7;
  2364. }
  2365. IL_02dc:
  2366. {
  2367. V_0 = _stringLiteral757602046;
  2368. goto IL_02e7;
  2369. }
  2370. IL_02e7:
  2371. {
  2372. String_t* L_12 = V_0;
  2373. return L_12;
  2374. }
  2375. }
  2376. #ifdef __clang__
  2377. #pragma clang diagnostic pop
  2378. #endif