UnityEngine.GameCenterModule_Attr.cpp 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. // System.Char[]
  10. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  11. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  12. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF;
  13. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  14. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
  15. // System.Diagnostics.DebuggableAttribute
  16. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B;
  17. // System.Diagnostics.DebuggerBrowsableAttribute
  18. struct DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53;
  19. // System.Runtime.CompilerServices.InternalsVisibleToAttribute
  20. struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C;
  21. // UnityEngine.Bindings.NativeConditionalAttribute
  22. struct NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B;
  23. // UnityEngine.Bindings.NativeHeaderAttribute
  24. struct NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C;
  25. // UnityEngine.Bindings.NativeMethodAttribute
  26. struct NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866;
  27. // UnityEngine.Scripting.RequiredByNativeCodeAttribute
  28. struct RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20;
  29. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  30. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80;
  31. // UnityEngine.Bindings.StaticAccessorAttribute
  32. struct StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA;
  33. // System.String
  34. struct String_t;
  35. // UnityEngine.UnityEngineModuleAssembly
  36. struct UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF;
  37. IL2CPP_EXTERN_C_BEGIN
  38. IL2CPP_EXTERN_C_END
  39. #ifdef __clang__
  40. #pragma clang diagnostic push
  41. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  42. #pragma clang diagnostic ignored "-Wunused-variable"
  43. #endif
  44. // System.Object
  45. // System.Attribute
  46. struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
  47. {
  48. public:
  49. public:
  50. };
  51. // System.String
  52. struct String_t : public RuntimeObject
  53. {
  54. public:
  55. // System.Int32 System.String::m_stringLength
  56. int32_t ___m_stringLength_0;
  57. // System.Char System.String::m_firstChar
  58. Il2CppChar ___m_firstChar_1;
  59. public:
  60. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  61. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  62. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  63. inline void set_m_stringLength_0(int32_t value)
  64. {
  65. ___m_stringLength_0 = value;
  66. }
  67. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  68. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  69. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  70. inline void set_m_firstChar_1(Il2CppChar value)
  71. {
  72. ___m_firstChar_1 = value;
  73. }
  74. };
  75. struct String_t_StaticFields
  76. {
  77. public:
  78. // System.String System.String::Empty
  79. String_t* ___Empty_5;
  80. public:
  81. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  82. inline String_t* get_Empty_5() const { return ___Empty_5; }
  83. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  84. inline void set_Empty_5(String_t* value)
  85. {
  86. ___Empty_5 = value;
  87. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  88. }
  89. };
  90. // System.ValueType
  91. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  92. {
  93. public:
  94. public:
  95. };
  96. // Native definition for P/Invoke marshalling of System.ValueType
  97. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  98. {
  99. };
  100. // Native definition for COM marshalling of System.ValueType
  101. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  102. {
  103. };
  104. // System.Boolean
  105. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  106. {
  107. public:
  108. // System.Boolean System.Boolean::m_value
  109. bool ___m_value_0;
  110. public:
  111. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  112. inline bool get_m_value_0() const { return ___m_value_0; }
  113. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  114. inline void set_m_value_0(bool value)
  115. {
  116. ___m_value_0 = value;
  117. }
  118. };
  119. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  120. {
  121. public:
  122. // System.String System.Boolean::TrueString
  123. String_t* ___TrueString_5;
  124. // System.String System.Boolean::FalseString
  125. String_t* ___FalseString_6;
  126. public:
  127. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  128. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  129. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  130. inline void set_TrueString_5(String_t* value)
  131. {
  132. ___TrueString_5 = value;
  133. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  134. }
  135. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  136. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  137. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  138. inline void set_FalseString_6(String_t* value)
  139. {
  140. ___FalseString_6 = value;
  141. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  142. }
  143. };
  144. // System.Runtime.CompilerServices.CompilationRelaxationsAttribute
  145. struct CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  146. {
  147. public:
  148. // System.Int32 System.Runtime.CompilerServices.CompilationRelaxationsAttribute::m_relaxations
  149. int32_t ___m_relaxations_0;
  150. public:
  151. inline static int32_t get_offset_of_m_relaxations_0() { return static_cast<int32_t>(offsetof(CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF, ___m_relaxations_0)); }
  152. inline int32_t get_m_relaxations_0() const { return ___m_relaxations_0; }
  153. inline int32_t* get_address_of_m_relaxations_0() { return &___m_relaxations_0; }
  154. inline void set_m_relaxations_0(int32_t value)
  155. {
  156. ___m_relaxations_0 = value;
  157. }
  158. };
  159. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  160. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  161. {
  162. public:
  163. public:
  164. };
  165. // System.Enum
  166. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  167. {
  168. public:
  169. public:
  170. };
  171. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  172. {
  173. public:
  174. // System.Char[] System.Enum::enumSeperatorCharArray
  175. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  176. public:
  177. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  178. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  179. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  180. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  181. {
  182. ___enumSeperatorCharArray_0 = value;
  183. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  184. }
  185. };
  186. // Native definition for P/Invoke marshalling of System.Enum
  187. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  188. {
  189. };
  190. // Native definition for COM marshalling of System.Enum
  191. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  192. {
  193. };
  194. // System.Runtime.CompilerServices.InternalsVisibleToAttribute
  195. struct InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  196. {
  197. public:
  198. // System.String System.Runtime.CompilerServices.InternalsVisibleToAttribute::_assemblyName
  199. String_t* ____assemblyName_0;
  200. // System.Boolean System.Runtime.CompilerServices.InternalsVisibleToAttribute::_allInternalsVisible
  201. bool ____allInternalsVisible_1;
  202. public:
  203. inline static int32_t get_offset_of__assemblyName_0() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____assemblyName_0)); }
  204. inline String_t* get__assemblyName_0() const { return ____assemblyName_0; }
  205. inline String_t** get_address_of__assemblyName_0() { return &____assemblyName_0; }
  206. inline void set__assemblyName_0(String_t* value)
  207. {
  208. ____assemblyName_0 = value;
  209. Il2CppCodeGenWriteBarrier((void**)(&____assemblyName_0), (void*)value);
  210. }
  211. inline static int32_t get_offset_of__allInternalsVisible_1() { return static_cast<int32_t>(offsetof(InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C, ____allInternalsVisible_1)); }
  212. inline bool get__allInternalsVisible_1() const { return ____allInternalsVisible_1; }
  213. inline bool* get_address_of__allInternalsVisible_1() { return &____allInternalsVisible_1; }
  214. inline void set__allInternalsVisible_1(bool value)
  215. {
  216. ____allInternalsVisible_1 = value;
  217. }
  218. };
  219. // UnityEngine.Bindings.NativeConditionalAttribute
  220. struct NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  221. {
  222. public:
  223. // System.String UnityEngine.Bindings.NativeConditionalAttribute::<Condition>k__BackingField
  224. String_t* ___U3CConditionU3Ek__BackingField_0;
  225. // System.String UnityEngine.Bindings.NativeConditionalAttribute::<StubReturnStatement>k__BackingField
  226. String_t* ___U3CStubReturnStatementU3Ek__BackingField_1;
  227. // System.Boolean UnityEngine.Bindings.NativeConditionalAttribute::<Enabled>k__BackingField
  228. bool ___U3CEnabledU3Ek__BackingField_2;
  229. public:
  230. inline static int32_t get_offset_of_U3CConditionU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B, ___U3CConditionU3Ek__BackingField_0)); }
  231. inline String_t* get_U3CConditionU3Ek__BackingField_0() const { return ___U3CConditionU3Ek__BackingField_0; }
  232. inline String_t** get_address_of_U3CConditionU3Ek__BackingField_0() { return &___U3CConditionU3Ek__BackingField_0; }
  233. inline void set_U3CConditionU3Ek__BackingField_0(String_t* value)
  234. {
  235. ___U3CConditionU3Ek__BackingField_0 = value;
  236. Il2CppCodeGenWriteBarrier((void**)(&___U3CConditionU3Ek__BackingField_0), (void*)value);
  237. }
  238. inline static int32_t get_offset_of_U3CStubReturnStatementU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B, ___U3CStubReturnStatementU3Ek__BackingField_1)); }
  239. inline String_t* get_U3CStubReturnStatementU3Ek__BackingField_1() const { return ___U3CStubReturnStatementU3Ek__BackingField_1; }
  240. inline String_t** get_address_of_U3CStubReturnStatementU3Ek__BackingField_1() { return &___U3CStubReturnStatementU3Ek__BackingField_1; }
  241. inline void set_U3CStubReturnStatementU3Ek__BackingField_1(String_t* value)
  242. {
  243. ___U3CStubReturnStatementU3Ek__BackingField_1 = value;
  244. Il2CppCodeGenWriteBarrier((void**)(&___U3CStubReturnStatementU3Ek__BackingField_1), (void*)value);
  245. }
  246. inline static int32_t get_offset_of_U3CEnabledU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B, ___U3CEnabledU3Ek__BackingField_2)); }
  247. inline bool get_U3CEnabledU3Ek__BackingField_2() const { return ___U3CEnabledU3Ek__BackingField_2; }
  248. inline bool* get_address_of_U3CEnabledU3Ek__BackingField_2() { return &___U3CEnabledU3Ek__BackingField_2; }
  249. inline void set_U3CEnabledU3Ek__BackingField_2(bool value)
  250. {
  251. ___U3CEnabledU3Ek__BackingField_2 = value;
  252. }
  253. };
  254. // UnityEngine.Bindings.NativeHeaderAttribute
  255. struct NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  256. {
  257. public:
  258. // System.String UnityEngine.Bindings.NativeHeaderAttribute::<Header>k__BackingField
  259. String_t* ___U3CHeaderU3Ek__BackingField_0;
  260. public:
  261. inline static int32_t get_offset_of_U3CHeaderU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C, ___U3CHeaderU3Ek__BackingField_0)); }
  262. inline String_t* get_U3CHeaderU3Ek__BackingField_0() const { return ___U3CHeaderU3Ek__BackingField_0; }
  263. inline String_t** get_address_of_U3CHeaderU3Ek__BackingField_0() { return &___U3CHeaderU3Ek__BackingField_0; }
  264. inline void set_U3CHeaderU3Ek__BackingField_0(String_t* value)
  265. {
  266. ___U3CHeaderU3Ek__BackingField_0 = value;
  267. Il2CppCodeGenWriteBarrier((void**)(&___U3CHeaderU3Ek__BackingField_0), (void*)value);
  268. }
  269. };
  270. // UnityEngine.Bindings.NativeMethodAttribute
  271. struct NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  272. {
  273. public:
  274. // System.String UnityEngine.Bindings.NativeMethodAttribute::<Name>k__BackingField
  275. String_t* ___U3CNameU3Ek__BackingField_0;
  276. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<IsThreadSafe>k__BackingField
  277. bool ___U3CIsThreadSafeU3Ek__BackingField_1;
  278. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<IsFreeFunction>k__BackingField
  279. bool ___U3CIsFreeFunctionU3Ek__BackingField_2;
  280. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<ThrowsException>k__BackingField
  281. bool ___U3CThrowsExceptionU3Ek__BackingField_3;
  282. // System.Boolean UnityEngine.Bindings.NativeMethodAttribute::<HasExplicitThis>k__BackingField
  283. bool ___U3CHasExplicitThisU3Ek__BackingField_4;
  284. public:
  285. inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CNameU3Ek__BackingField_0)); }
  286. inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
  287. inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
  288. inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
  289. {
  290. ___U3CNameU3Ek__BackingField_0 = value;
  291. Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value);
  292. }
  293. inline static int32_t get_offset_of_U3CIsThreadSafeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CIsThreadSafeU3Ek__BackingField_1)); }
  294. inline bool get_U3CIsThreadSafeU3Ek__BackingField_1() const { return ___U3CIsThreadSafeU3Ek__BackingField_1; }
  295. inline bool* get_address_of_U3CIsThreadSafeU3Ek__BackingField_1() { return &___U3CIsThreadSafeU3Ek__BackingField_1; }
  296. inline void set_U3CIsThreadSafeU3Ek__BackingField_1(bool value)
  297. {
  298. ___U3CIsThreadSafeU3Ek__BackingField_1 = value;
  299. }
  300. inline static int32_t get_offset_of_U3CIsFreeFunctionU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CIsFreeFunctionU3Ek__BackingField_2)); }
  301. inline bool get_U3CIsFreeFunctionU3Ek__BackingField_2() const { return ___U3CIsFreeFunctionU3Ek__BackingField_2; }
  302. inline bool* get_address_of_U3CIsFreeFunctionU3Ek__BackingField_2() { return &___U3CIsFreeFunctionU3Ek__BackingField_2; }
  303. inline void set_U3CIsFreeFunctionU3Ek__BackingField_2(bool value)
  304. {
  305. ___U3CIsFreeFunctionU3Ek__BackingField_2 = value;
  306. }
  307. inline static int32_t get_offset_of_U3CThrowsExceptionU3Ek__BackingField_3() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CThrowsExceptionU3Ek__BackingField_3)); }
  308. inline bool get_U3CThrowsExceptionU3Ek__BackingField_3() const { return ___U3CThrowsExceptionU3Ek__BackingField_3; }
  309. inline bool* get_address_of_U3CThrowsExceptionU3Ek__BackingField_3() { return &___U3CThrowsExceptionU3Ek__BackingField_3; }
  310. inline void set_U3CThrowsExceptionU3Ek__BackingField_3(bool value)
  311. {
  312. ___U3CThrowsExceptionU3Ek__BackingField_3 = value;
  313. }
  314. inline static int32_t get_offset_of_U3CHasExplicitThisU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866, ___U3CHasExplicitThisU3Ek__BackingField_4)); }
  315. inline bool get_U3CHasExplicitThisU3Ek__BackingField_4() const { return ___U3CHasExplicitThisU3Ek__BackingField_4; }
  316. inline bool* get_address_of_U3CHasExplicitThisU3Ek__BackingField_4() { return &___U3CHasExplicitThisU3Ek__BackingField_4; }
  317. inline void set_U3CHasExplicitThisU3Ek__BackingField_4(bool value)
  318. {
  319. ___U3CHasExplicitThisU3Ek__BackingField_4 = value;
  320. }
  321. };
  322. // UnityEngine.Scripting.RequiredByNativeCodeAttribute
  323. struct RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  324. {
  325. public:
  326. // System.String UnityEngine.Scripting.RequiredByNativeCodeAttribute::<Name>k__BackingField
  327. String_t* ___U3CNameU3Ek__BackingField_0;
  328. // System.Boolean UnityEngine.Scripting.RequiredByNativeCodeAttribute::<Optional>k__BackingField
  329. bool ___U3COptionalU3Ek__BackingField_1;
  330. // System.Boolean UnityEngine.Scripting.RequiredByNativeCodeAttribute::<GenerateProxy>k__BackingField
  331. bool ___U3CGenerateProxyU3Ek__BackingField_2;
  332. public:
  333. inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20, ___U3CNameU3Ek__BackingField_0)); }
  334. inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
  335. inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
  336. inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
  337. {
  338. ___U3CNameU3Ek__BackingField_0 = value;
  339. Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value);
  340. }
  341. inline static int32_t get_offset_of_U3COptionalU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20, ___U3COptionalU3Ek__BackingField_1)); }
  342. inline bool get_U3COptionalU3Ek__BackingField_1() const { return ___U3COptionalU3Ek__BackingField_1; }
  343. inline bool* get_address_of_U3COptionalU3Ek__BackingField_1() { return &___U3COptionalU3Ek__BackingField_1; }
  344. inline void set_U3COptionalU3Ek__BackingField_1(bool value)
  345. {
  346. ___U3COptionalU3Ek__BackingField_1 = value;
  347. }
  348. inline static int32_t get_offset_of_U3CGenerateProxyU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20, ___U3CGenerateProxyU3Ek__BackingField_2)); }
  349. inline bool get_U3CGenerateProxyU3Ek__BackingField_2() const { return ___U3CGenerateProxyU3Ek__BackingField_2; }
  350. inline bool* get_address_of_U3CGenerateProxyU3Ek__BackingField_2() { return &___U3CGenerateProxyU3Ek__BackingField_2; }
  351. inline void set_U3CGenerateProxyU3Ek__BackingField_2(bool value)
  352. {
  353. ___U3CGenerateProxyU3Ek__BackingField_2 = value;
  354. }
  355. };
  356. // System.Runtime.CompilerServices.RuntimeCompatibilityAttribute
  357. struct RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  358. {
  359. public:
  360. // System.Boolean System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::m_wrapNonExceptionThrows
  361. bool ___m_wrapNonExceptionThrows_0;
  362. public:
  363. inline static int32_t get_offset_of_m_wrapNonExceptionThrows_0() { return static_cast<int32_t>(offsetof(RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80, ___m_wrapNonExceptionThrows_0)); }
  364. inline bool get_m_wrapNonExceptionThrows_0() const { return ___m_wrapNonExceptionThrows_0; }
  365. inline bool* get_address_of_m_wrapNonExceptionThrows_0() { return &___m_wrapNonExceptionThrows_0; }
  366. inline void set_m_wrapNonExceptionThrows_0(bool value)
  367. {
  368. ___m_wrapNonExceptionThrows_0 = value;
  369. }
  370. };
  371. // UnityEngine.UnityEngineModuleAssembly
  372. struct UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  373. {
  374. public:
  375. public:
  376. };
  377. // System.Void
  378. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  379. {
  380. public:
  381. union
  382. {
  383. struct
  384. {
  385. };
  386. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  387. };
  388. public:
  389. };
  390. // System.Diagnostics.DebuggerBrowsableState
  391. struct DebuggerBrowsableState_t2A824ECEB650CFABB239FD0918FCC88A09B45091
  392. {
  393. public:
  394. // System.Int32 System.Diagnostics.DebuggerBrowsableState::value__
  395. int32_t ___value___2;
  396. public:
  397. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggerBrowsableState_t2A824ECEB650CFABB239FD0918FCC88A09B45091, ___value___2)); }
  398. inline int32_t get_value___2() const { return ___value___2; }
  399. inline int32_t* get_address_of_value___2() { return &___value___2; }
  400. inline void set_value___2(int32_t value)
  401. {
  402. ___value___2 = value;
  403. }
  404. };
  405. // UnityEngine.Bindings.StaticAccessorType
  406. struct StaticAccessorType_tFA86A321ADAC16A48DF7FC82F8FBBE5F71D2DC4C
  407. {
  408. public:
  409. // System.Int32 UnityEngine.Bindings.StaticAccessorType::value__
  410. int32_t ___value___2;
  411. public:
  412. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StaticAccessorType_tFA86A321ADAC16A48DF7FC82F8FBBE5F71D2DC4C, ___value___2)); }
  413. inline int32_t get_value___2() const { return ___value___2; }
  414. inline int32_t* get_address_of_value___2() { return &___value___2; }
  415. inline void set_value___2(int32_t value)
  416. {
  417. ___value___2 = value;
  418. }
  419. };
  420. // System.Diagnostics.DebuggableAttribute/DebuggingModes
  421. struct DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8
  422. {
  423. public:
  424. // System.Int32 System.Diagnostics.DebuggableAttribute/DebuggingModes::value__
  425. int32_t ___value___2;
  426. public:
  427. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DebuggingModes_t279D5B9C012ABA935887CB73C5A63A1F46AF08A8, ___value___2)); }
  428. inline int32_t get_value___2() const { return ___value___2; }
  429. inline int32_t* get_address_of_value___2() { return &___value___2; }
  430. inline void set_value___2(int32_t value)
  431. {
  432. ___value___2 = value;
  433. }
  434. };
  435. // System.Diagnostics.DebuggableAttribute
  436. struct DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  437. {
  438. public:
  439. // System.Diagnostics.DebuggableAttribute/DebuggingModes System.Diagnostics.DebuggableAttribute::m_debuggingModes
  440. int32_t ___m_debuggingModes_0;
  441. public:
  442. inline static int32_t get_offset_of_m_debuggingModes_0() { return static_cast<int32_t>(offsetof(DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B, ___m_debuggingModes_0)); }
  443. inline int32_t get_m_debuggingModes_0() const { return ___m_debuggingModes_0; }
  444. inline int32_t* get_address_of_m_debuggingModes_0() { return &___m_debuggingModes_0; }
  445. inline void set_m_debuggingModes_0(int32_t value)
  446. {
  447. ___m_debuggingModes_0 = value;
  448. }
  449. };
  450. // System.Diagnostics.DebuggerBrowsableAttribute
  451. struct DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  452. {
  453. public:
  454. // System.Diagnostics.DebuggerBrowsableState System.Diagnostics.DebuggerBrowsableAttribute::state
  455. int32_t ___state_0;
  456. public:
  457. inline static int32_t get_offset_of_state_0() { return static_cast<int32_t>(offsetof(DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53, ___state_0)); }
  458. inline int32_t get_state_0() const { return ___state_0; }
  459. inline int32_t* get_address_of_state_0() { return &___state_0; }
  460. inline void set_state_0(int32_t value)
  461. {
  462. ___state_0 = value;
  463. }
  464. };
  465. // UnityEngine.Bindings.StaticAccessorAttribute
  466. struct StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  467. {
  468. public:
  469. // System.String UnityEngine.Bindings.StaticAccessorAttribute::<Name>k__BackingField
  470. String_t* ___U3CNameU3Ek__BackingField_0;
  471. // UnityEngine.Bindings.StaticAccessorType UnityEngine.Bindings.StaticAccessorAttribute::<Type>k__BackingField
  472. int32_t ___U3CTypeU3Ek__BackingField_1;
  473. public:
  474. inline static int32_t get_offset_of_U3CNameU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA, ___U3CNameU3Ek__BackingField_0)); }
  475. inline String_t* get_U3CNameU3Ek__BackingField_0() const { return ___U3CNameU3Ek__BackingField_0; }
  476. inline String_t** get_address_of_U3CNameU3Ek__BackingField_0() { return &___U3CNameU3Ek__BackingField_0; }
  477. inline void set_U3CNameU3Ek__BackingField_0(String_t* value)
  478. {
  479. ___U3CNameU3Ek__BackingField_0 = value;
  480. Il2CppCodeGenWriteBarrier((void**)(&___U3CNameU3Ek__BackingField_0), (void*)value);
  481. }
  482. inline static int32_t get_offset_of_U3CTypeU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA, ___U3CTypeU3Ek__BackingField_1)); }
  483. inline int32_t get_U3CTypeU3Ek__BackingField_1() const { return ___U3CTypeU3Ek__BackingField_1; }
  484. inline int32_t* get_address_of_U3CTypeU3Ek__BackingField_1() { return &___U3CTypeU3Ek__BackingField_1; }
  485. inline void set_U3CTypeU3Ek__BackingField_1(int32_t value)
  486. {
  487. ___U3CTypeU3Ek__BackingField_1 = value;
  488. }
  489. };
  490. #ifdef __clang__
  491. #pragma clang diagnostic pop
  492. #endif
  493. // System.Void System.Runtime.CompilerServices.InternalsVisibleToAttribute::.ctor(System.String)
  494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9 (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * __this, String_t* ___assemblyName0, const RuntimeMethod* method);
  495. // System.Void UnityEngine.UnityEngineModuleAssembly::.ctor()
  496. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityEngineModuleAssembly__ctor_m76C129AC6AA438BE601F5279EE9EB599BEF90AF9 (UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF * __this, const RuntimeMethod* method);
  497. // System.Void System.Diagnostics.DebuggableAttribute::.ctor(System.Diagnostics.DebuggableAttribute/DebuggingModes)
  498. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550 (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * __this, int32_t ___modes0, const RuntimeMethod* method);
  499. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor()
  500. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, const RuntimeMethod* method);
  501. // System.Void System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::set_WrapNonExceptionThrows(System.Boolean)
  502. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method);
  503. // System.Void System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(System.Int32)
  504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * __this, int32_t ___relaxations0, const RuntimeMethod* method);
  505. // System.Void System.Runtime.CompilerServices.CompilerGeneratedAttribute::.ctor()
  506. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35 (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * __this, const RuntimeMethod* method);
  507. // System.Void System.Diagnostics.DebuggerBrowsableAttribute::.ctor(System.Diagnostics.DebuggerBrowsableState)
  508. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5 (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * __this, int32_t ___state0, const RuntimeMethod* method);
  509. // System.Void UnityEngine.Scripting.RequiredByNativeCodeAttribute::.ctor()
  510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5 (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * __this, const RuntimeMethod* method);
  511. // System.Void UnityEngine.Bindings.NativeHeaderAttribute::.ctor(System.String)
  512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76 (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * __this, String_t* ___header0, const RuntimeMethod* method);
  513. // System.Void UnityEngine.Bindings.StaticAccessorAttribute::.ctor(System.String,UnityEngine.Bindings.StaticAccessorType)
  514. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706 (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * __this, String_t* ___name0, int32_t ___type1, const RuntimeMethod* method);
  515. // System.Void UnityEngine.Bindings.NativeConditionalAttribute::.ctor(System.String)
  516. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9 (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * __this, String_t* ___condition0, const RuntimeMethod* method);
  517. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor(System.String)
  518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825 (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * __this, String_t* ___name0, const RuntimeMethod* method);
  519. // System.Void UnityEngine.Bindings.NativeMethodAttribute::.ctor()
  520. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeMethodAttribute__ctor_mB0D8BA2FFA19561CCB4257F8D6D03726514A9E5F (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * __this, const RuntimeMethod* method);
  521. // System.Void UnityEngine.Bindings.NativeMethodAttribute::set_IsThreadSafe(System.Boolean)
  522. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_IsThreadSafe_m965EAB84605EABFD2AE9B84FBE7FF311D1116A56_inline (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * __this, bool ___value0, const RuntimeMethod* method);
  523. static void UnityEngine_GameCenterModule_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  524. {
  525. {
  526. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[0];
  527. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x41\x73\x73\x65\x74\x42\x75\x6E\x64\x6C\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  528. }
  529. {
  530. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[1];
  531. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x63\x72\x65\x65\x6E\x43\x61\x70\x74\x75\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  532. }
  533. {
  534. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[2];
  535. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x6E\x61\x6C\x79\x74\x69\x63\x73"), NULL);
  536. }
  537. {
  538. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[3];
  539. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x70\x72\x69\x74\x65\x4D\x61\x73\x6B\x4D\x6F\x64\x75\x6C\x65"), NULL);
  540. }
  541. {
  542. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[4];
  543. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x74\x72\x65\x61\x6D\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
  544. }
  545. {
  546. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[5];
  547. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x75\x62\x73\x74\x61\x6E\x63\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  548. }
  549. {
  550. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[6];
  551. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x75\x62\x73\x79\x73\x74\x65\x6D\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  552. }
  553. {
  554. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[7];
  555. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x4C\x53\x4D\x6F\x64\x75\x6C\x65"), NULL);
  556. }
  557. {
  558. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[8];
  559. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x72\x72\x61\x69\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
  560. }
  561. {
  562. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[9];
  563. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x72\x72\x61\x69\x6E\x50\x68\x79\x73\x69\x63\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  564. }
  565. {
  566. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[10];
  567. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x78\x74\x52\x65\x6E\x64\x65\x72\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
  568. }
  569. {
  570. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[11];
  571. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x69\x6C\x65\x6D\x61\x70\x4D\x6F\x64\x75\x6C\x65"), NULL);
  572. }
  573. {
  574. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[12];
  575. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
  576. }
  577. {
  578. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[13];
  579. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6D\x62\x72\x61\x4D\x6F\x64\x75\x6C\x65"), NULL);
  580. }
  581. {
  582. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[14];
  583. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x43\x6F\x6E\x6E\x65\x63\x74\x4D\x6F\x64\x75\x6C\x65"), NULL);
  584. }
  585. {
  586. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[15];
  587. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x43\x75\x72\x6C\x4D\x6F\x64\x75\x6C\x65"), NULL);
  588. }
  589. {
  590. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[16];
  591. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x54\x65\x73\x74\x50\x72\x6F\x74\x6F\x63\x6F\x6C\x4D\x6F\x64\x75\x6C\x65"), NULL);
  592. }
  593. {
  594. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[17];
  595. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x4D\x6F\x64\x75\x6C\x65"), NULL);
  596. }
  597. {
  598. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[18];
  599. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x70\x72\x69\x74\x65\x53\x68\x61\x70\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  600. }
  601. {
  602. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[19];
  603. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x64\x76\x65\x72\x74\x69\x73\x65\x6D\x65\x6E\x74\x73"), NULL);
  604. }
  605. {
  606. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[20];
  607. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x75\x72\x63\x68\x61\x73\x69\x6E\x67"), NULL);
  608. }
  609. {
  610. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[21];
  611. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x73\x74\x52\x75\x6E\x6E\x65\x72"), NULL);
  612. }
  613. {
  614. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[22];
  615. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x31"), NULL);
  616. }
  617. {
  618. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[23];
  619. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x32"), NULL);
  620. }
  621. {
  622. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[24];
  623. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x33"), NULL);
  624. }
  625. {
  626. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[25];
  627. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x34"), NULL);
  628. }
  629. {
  630. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[26];
  631. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x35"), NULL);
  632. }
  633. {
  634. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[27];
  635. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x36"), NULL);
  636. }
  637. {
  638. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[28];
  639. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x37"), NULL);
  640. }
  641. {
  642. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[29];
  643. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x38"), NULL);
  644. }
  645. {
  646. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[30];
  647. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x52\x75\x6E\x74\x69\x6D\x65\x49\x6E\x69\x74\x69\x61\x6C\x69\x7A\x65\x4F\x6E\x4C\x6F\x61\x64\x4D\x61\x6E\x61\x67\x65\x72\x49\x6E\x69\x74\x69\x61\x6C\x69\x7A\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
  648. }
  649. {
  650. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[31];
  651. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x30\x39"), NULL);
  652. }
  653. {
  654. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[32];
  655. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x72\x6F\x66\x69\x6C\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
  656. }
  657. {
  658. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[33];
  659. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x68\x79\x73\x69\x63\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  660. }
  661. {
  662. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[34];
  663. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x58\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
  664. }
  665. {
  666. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[35];
  667. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
  668. }
  669. {
  670. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[36];
  671. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x72\x61\x73\x68\x52\x65\x70\x6F\x72\x74\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
  672. }
  673. {
  674. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[37];
  675. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x65\x72\x66\x6F\x72\x6D\x61\x6E\x63\x65\x52\x65\x70\x6F\x72\x74\x69\x6E\x67\x4D\x6F\x64\x75\x6C\x65"), NULL);
  676. }
  677. {
  678. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[38];
  679. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  680. }
  681. {
  682. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[39];
  683. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
  684. }
  685. {
  686. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[40];
  687. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x77\x69\x74\x63\x68\x4D\x6F\x64\x75\x6C\x65"), NULL);
  688. }
  689. {
  690. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[41];
  691. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x58\x62\x6F\x78\x4F\x6E\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  692. }
  693. {
  694. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[42];
  695. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x34\x4D\x6F\x64\x75\x6C\x65"), NULL);
  696. }
  697. {
  698. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[43];
  699. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x34\x56\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
  700. }
  701. {
  702. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[44];
  703. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x35\x4D\x6F\x64\x75\x6C\x65"), NULL);
  704. }
  705. {
  706. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[45];
  707. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x53\x35\x56\x52\x4D\x6F\x64\x75\x6C\x65"), NULL);
  708. }
  709. {
  710. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[46];
  711. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x4E\x65\x74\x77\x6F\x72\x6B\x69\x6E\x67"), NULL);
  712. }
  713. {
  714. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[47];
  715. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6C\x6F\x75\x64"), NULL);
  716. }
  717. {
  718. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[48];
  719. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6C\x6F\x75\x64\x2E\x53\x65\x72\x76\x69\x63\x65"), NULL);
  720. }
  721. {
  722. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[49];
  723. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x41\x6E\x61\x6C\x79\x74\x69\x63\x73"), NULL);
  724. }
  725. {
  726. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[50];
  727. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x65\x68\x69\x63\x6C\x65\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  728. }
  729. {
  730. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[51];
  731. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x46\x58\x4D\x6F\x64\x75\x6C\x65"), NULL);
  732. }
  733. {
  734. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[52];
  735. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x54\x65\x78\x74\x75\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  736. }
  737. {
  738. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[53];
  739. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x41\x75\x64\x69\x6F\x4D\x6F\x64\x75\x6C\x65"), NULL);
  740. }
  741. {
  742. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[54];
  743. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x44\x69\x72\x65\x63\x74\x6F\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
  744. }
  745. {
  746. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[55];
  747. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x47\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
  748. }
  749. {
  750. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[56];
  751. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x47\x72\x69\x64\x4D\x6F\x64\x75\x6C\x65"), NULL);
  752. }
  753. {
  754. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[57];
  755. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x48\x6F\x74\x52\x65\x6C\x6F\x61\x64\x4D\x6F\x64\x75\x6C\x65"), NULL);
  756. }
  757. {
  758. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[58];
  759. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x6D\x61\x67\x65\x43\x6F\x6E\x76\x65\x72\x73\x69\x6F\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
  760. }
  761. {
  762. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[59];
  763. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x6E\x70\x75\x74\x4C\x65\x67\x61\x63\x79\x4D\x6F\x64\x75\x6C\x65"), NULL);
  764. }
  765. {
  766. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[60];
  767. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x4A\x53\x4F\x4E\x53\x65\x72\x69\x61\x6C\x69\x7A\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  768. }
  769. {
  770. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[61];
  771. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x4C\x6F\x63\x61\x6C\x69\x7A\x61\x74\x69\x6F\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
  772. }
  773. {
  774. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[62];
  775. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x61\x72\x74\x69\x63\x6C\x65\x53\x79\x73\x74\x65\x6D\x4D\x6F\x64\x75\x6C\x65"), NULL);
  776. }
  777. {
  778. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[63];
  779. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x50\x68\x79\x73\x69\x63\x73\x32\x44\x4D\x6F\x64\x75\x6C\x65"), NULL);
  780. }
  781. {
  782. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[64];
  783. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x30"), NULL);
  784. }
  785. {
  786. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[65];
  787. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x31"), NULL);
  788. }
  789. {
  790. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[66];
  791. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x32"), NULL);
  792. }
  793. {
  794. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[67];
  795. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73\x2E\x41\x6C\x6C\x49\x6E\x31\x52\x75\x6E\x6E\x65\x72"), NULL);
  796. }
  797. {
  798. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[68];
  799. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x54\x69\x6D\x65\x6C\x69\x6E\x65"), NULL);
  800. }
  801. {
  802. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[69];
  803. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x45\x6E\x74\x69\x74\x69\x65\x73"), NULL);
  804. }
  805. {
  806. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[70];
  807. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x41\x73\x73\x65\x6D\x62\x6C\x79\x2D\x43\x53\x68\x61\x72\x70\x2D\x74\x65\x73\x74\x61\x62\x6C\x65"), NULL);
  808. }
  809. {
  810. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[71];
  811. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x70\x61\x74\x69\x61\x6C\x54\x72\x61\x63\x6B\x69\x6E\x67"), NULL);
  812. }
  813. {
  814. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[72];
  815. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x47\x6F\x6F\x67\x6C\x65\x41\x52\x2E\x55\x6E\x69\x74\x79\x4E\x61\x74\x69\x76\x65"), NULL);
  816. }
  817. {
  818. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[73];
  819. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x57\x69\x6E\x64\x6F\x77\x73\x4D\x52\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E"), NULL);
  820. }
  821. {
  822. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[74];
  823. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x32\x44\x2E\x53\x70\x72\x69\x74\x65\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
  824. }
  825. {
  826. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[75];
  827. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x32\x44\x2E\x53\x70\x72\x69\x74\x65\x2E\x45\x64\x69\x74\x6F\x72\x54\x65\x73\x74\x73"), NULL);
  828. }
  829. {
  830. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[76];
  831. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x2E\x42\x75\x69\x6C\x64\x65\x72\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
  832. }
  833. {
  834. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[77];
  835. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x64\x69\x74\x6F\x72\x2E\x55\x49\x42\x75\x69\x6C\x64\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
  836. }
  837. {
  838. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[78];
  839. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x2E\x42\x75\x69\x6C\x64\x65\x72\x2E\x45\x64\x69\x74\x6F\x72\x54\x65\x73\x74\x73"), NULL);
  840. }
  841. {
  842. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[79];
  843. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73"), NULL);
  844. }
  845. {
  846. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[80];
  847. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x47\x61\x6D\x65\x4F\x62\x6A\x65\x63\x74\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  848. }
  849. {
  850. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[81];
  851. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
  852. }
  853. {
  854. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[82];
  855. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x2E\x45\x64\x69\x74\x6F\x72\x54\x65\x73\x74\x73"), NULL);
  856. }
  857. {
  858. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[83];
  859. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49"), NULL);
  860. }
  861. {
  862. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[84];
  863. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x4E\x65\x74\x77\x6F\x72\x6B\x69\x6E\x67\x2E\x54\x72\x61\x6E\x73\x70\x6F\x72\x74"), NULL);
  864. }
  865. {
  866. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[85];
  867. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x41\x73\x73\x65\x6D\x62\x6C\x79\x2D\x43\x53\x68\x61\x72\x70\x2D\x66\x69\x72\x73\x74\x70\x61\x73\x73\x2D\x74\x65\x73\x74\x61\x62\x6C\x65"), NULL);
  868. }
  869. {
  870. UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF * tmp = (UnityEngineModuleAssembly_t33CB058FDDDC458E384578147D6027BB1EC86CFF *)cache->attributes[86];
  871. UnityEngineModuleAssembly__ctor_m76C129AC6AA438BE601F5279EE9EB599BEF90AF9(tmp, NULL);
  872. }
  873. {
  874. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[87];
  875. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x75\x64\x69\x6F\x4D\x6F\x64\x75\x6C\x65"), NULL);
  876. }
  877. {
  878. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[88];
  879. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x6E\x64\x72\x6F\x69\x64\x4A\x4E\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
  880. }
  881. {
  882. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[89];
  883. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x63\x63\x65\x73\x73\x69\x62\x69\x6C\x69\x74\x79\x4D\x6F\x64\x75\x6C\x65"), NULL);
  884. }
  885. {
  886. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[90];
  887. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
  888. }
  889. {
  890. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[91];
  891. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6F\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  892. }
  893. {
  894. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[92];
  895. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x53\x68\x61\x72\x65\x64\x49\x6E\x74\x65\x72\x6E\x61\x6C\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  896. }
  897. {
  898. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[93];
  899. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65"), NULL);
  900. }
  901. {
  902. DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B * tmp = (DebuggableAttribute_tA8054EBD0FC7511695D494B690B5771658E3191B *)cache->attributes[94];
  903. DebuggableAttribute__ctor_m7FF445C8435494A4847123A668D889E692E55550(tmp, 263LL, NULL);
  904. }
  905. {
  906. RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * tmp = (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 *)cache->attributes[95];
  907. RuntimeCompatibilityAttribute__ctor_m551DDF1438CE97A984571949723F30F44CF7317C(tmp, NULL);
  908. RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline(tmp, true, NULL);
  909. }
  910. {
  911. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[96];
  912. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x50\x65\x72\x66\x6F\x72\x6D\x61\x6E\x63\x65\x54\x65\x73\x74\x73\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x52\x75\x6E\x6E\x65\x72\x2E\x54\x65\x73\x74\x73"), NULL);
  913. }
  914. {
  915. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[97];
  916. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73\x2E\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B\x2E\x54\x65\x73\x74\x73"), NULL);
  917. }
  918. {
  919. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[98];
  920. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73\x2E\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B"), NULL);
  921. }
  922. {
  923. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[99];
  924. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x52\x75\x6E\x74\x69\x6D\x65\x54\x65\x73\x74\x73"), NULL);
  925. }
  926. {
  927. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[100];
  928. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x33"), NULL);
  929. }
  930. {
  931. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[101];
  932. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x34"), NULL);
  933. }
  934. {
  935. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[102];
  936. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x43\x6F\x72\x65"), NULL);
  937. }
  938. {
  939. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[103];
  940. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x35"), NULL);
  941. }
  942. {
  943. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[104];
  944. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x37"), NULL);
  945. }
  946. {
  947. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[105];
  948. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x38"), NULL);
  949. }
  950. {
  951. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[106];
  952. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x39"), NULL);
  953. }
  954. {
  955. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[107];
  956. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x30"), NULL);
  957. }
  958. {
  959. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[108];
  960. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x31"), NULL);
  961. }
  962. {
  963. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[109];
  964. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x32"), NULL);
  965. }
  966. {
  967. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[110];
  968. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x33"), NULL);
  969. }
  970. {
  971. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[111];
  972. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x32\x34"), NULL);
  973. }
  974. {
  975. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[112];
  976. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x31"), NULL);
  977. }
  978. {
  979. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[113];
  980. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x32"), NULL);
  981. }
  982. {
  983. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[114];
  984. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x57\x65\x62\x52\x65\x71\x75\x65\x73\x74\x57\x57\x57\x4D\x6F\x64\x75\x6C\x65"), NULL);
  985. }
  986. {
  987. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[115];
  988. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x33"), NULL);
  989. }
  990. {
  991. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[116];
  992. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x35"), NULL);
  993. }
  994. {
  995. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[117];
  996. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x53\x75\x62\x73\x79\x73\x74\x65\x6D\x2E\x52\x65\x67\x69\x73\x74\x72\x61\x74\x69\x6F\x6E"), NULL);
  997. }
  998. {
  999. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[118];
  1000. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x2E\x30\x31\x36"), NULL);
  1001. }
  1002. {
  1003. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[119];
  1004. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x44\x53\x50\x47\x72\x61\x70\x68\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1005. }
  1006. {
  1007. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[120];
  1008. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x43\x6F\x6C\x6C\x65\x63\x74\x69\x6F\x6E\x73"), NULL);
  1009. }
  1010. {
  1011. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[121];
  1012. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x75\x63\x67\x2E\x51\x6F\x53"), NULL);
  1013. }
  1014. {
  1015. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[122];
  1016. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x41\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E"), NULL);
  1017. }
  1018. {
  1019. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[123];
  1020. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x42\x75\x72\x73\x74"), NULL);
  1021. }
  1022. {
  1023. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[124];
  1024. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x42\x75\x72\x73\x74\x2E\x45\x64\x69\x74\x6F\x72"), NULL);
  1025. }
  1026. {
  1027. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[125];
  1028. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x44\x65\x70\x6C\x6F\x79\x6D\x65\x6E\x74\x54\x65\x73\x74\x73\x2E\x53\x65\x72\x76\x69\x63\x65\x73"), NULL);
  1029. }
  1030. {
  1031. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[126];
  1032. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73"), NULL);
  1033. }
  1034. {
  1035. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[127];
  1036. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73\x2E\x55\x6E\x69\x74\x79\x41\x6E\x61\x6C\x79\x74\x69\x63\x73"), NULL);
  1037. }
  1038. {
  1039. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[128];
  1040. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73\x2E\x54\x69\x6D\x65\x6C\x69\x6E\x65"), NULL);
  1041. }
  1042. {
  1043. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[129];
  1044. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x54\x65\x73\x74\x73\x2E\x46\x72\x61\x6D\x65\x77\x6F\x72\x6B"), NULL);
  1045. }
  1046. {
  1047. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[130];
  1048. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x2E\x49\x6E\x74\x65\x72\x6E\x61\x6C\x41\x50\x49\x45\x6E\x67\x69\x6E\x65\x42\x72\x69\x64\x67\x65\x44\x65\x76\x2E\x30\x30\x34"), NULL);
  1049. }
  1050. {
  1051. CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF * tmp = (CompilationRelaxationsAttribute_t661FDDC06629BDA607A42BD660944F039FE03AFF *)cache->attributes[131];
  1052. CompilationRelaxationsAttribute__ctor_mAC3079EBC4EEAB474EED8208EF95DB39C922333B(tmp, 8LL, NULL);
  1053. }
  1054. {
  1055. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[132];
  1056. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x6E\x69\x6D\x61\x74\x69\x6F\x6E\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1057. }
  1058. {
  1059. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[133];
  1060. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x4E\x45\x54\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1061. }
  1062. {
  1063. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[134];
  1064. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x6E\x69\x74\x79\x41\x6E\x61\x6C\x79\x74\x69\x63\x73\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1065. }
  1066. {
  1067. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[135];
  1068. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x57\x69\x6E\x64\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1069. }
  1070. {
  1071. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[136];
  1072. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x41\x73\x73\x65\x74\x42\x75\x6E\x64\x6C\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1073. }
  1074. {
  1075. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[137];
  1076. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x43\x6C\x6F\x74\x68\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1077. }
  1078. {
  1079. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[138];
  1080. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x56\x69\x64\x65\x6F\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1081. }
  1082. {
  1083. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[139];
  1084. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x4D\x47\x55\x49\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1085. }
  1086. {
  1087. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[140];
  1088. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x49\x6E\x70\x75\x74\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1089. }
  1090. {
  1091. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[141];
  1092. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x54\x65\x78\x74\x43\x6F\x72\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1093. }
  1094. {
  1095. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[142];
  1096. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x55\x49\x45\x6C\x65\x6D\x65\x6E\x74\x73\x4E\x61\x74\x69\x76\x65\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1097. }
  1098. {
  1099. InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C * tmp = (InternalsVisibleToAttribute_t1D9772A02892BAC440952F880A43C257E6C3E68C *)cache->attributes[143];
  1100. InternalsVisibleToAttribute__ctor_m420071A75DCEEC72356490C64B4B0B9270DA32B9(tmp, il2cpp_codegen_string_new_wrapper("\x55\x6E\x69\x74\x79\x45\x6E\x67\x69\x6E\x65\x2E\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x4D\x6F\x64\x75\x6C\x65"), NULL);
  1101. }
  1102. }
  1103. static void Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_U3CidU3Ek__BackingField(CustomAttributesCache* cache)
  1104. {
  1105. {
  1106. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1107. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1108. }
  1109. {
  1110. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[1];
  1111. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1112. }
  1113. }
  1114. static void Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_U3CpercentCompletedU3Ek__BackingField(CustomAttributesCache* cache)
  1115. {
  1116. {
  1117. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[0];
  1118. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1119. }
  1120. {
  1121. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[1];
  1122. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1123. }
  1124. }
  1125. static void Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_get_id_m39931C0B44D8A4948E12527FDE77C9211028267B(CustomAttributesCache* cache)
  1126. {
  1127. {
  1128. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1129. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1130. }
  1131. }
  1132. static void Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_set_id_m16A4091CBC207FB287FEFF608C5F45D9D21106A0(CustomAttributesCache* cache)
  1133. {
  1134. {
  1135. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1136. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1137. }
  1138. }
  1139. static void Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_get_percentCompleted_m864BBAA8D955D724A506E62F6741B52D43F38F9D(CustomAttributesCache* cache)
  1140. {
  1141. {
  1142. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1143. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1144. }
  1145. }
  1146. static void Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_set_percentCompleted_mD433F22DBB60B94FD45CC2A73C9A22C93B0CB9CB(CustomAttributesCache* cache)
  1147. {
  1148. {
  1149. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1150. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1151. }
  1152. }
  1153. static void AchievementDescription_t6C56CB1D0F1F374C45EC0F65D5F1192C170B6506_CustomAttributesCacheGenerator_U3CidU3Ek__BackingField(CustomAttributesCache* cache)
  1154. {
  1155. {
  1156. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[0];
  1157. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1158. }
  1159. {
  1160. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[1];
  1161. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1162. }
  1163. }
  1164. static void AchievementDescription_t6C56CB1D0F1F374C45EC0F65D5F1192C170B6506_CustomAttributesCacheGenerator_AchievementDescription_get_id_mD5FEE2DBF0C88887C99E3EDCD9BC65C32EFBAD4A(CustomAttributesCache* cache)
  1165. {
  1166. {
  1167. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1168. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1169. }
  1170. }
  1171. static void AchievementDescription_t6C56CB1D0F1F374C45EC0F65D5F1192C170B6506_CustomAttributesCacheGenerator_AchievementDescription_set_id_m61C4DA5B9AD3353518524A8E34723CE7836D432E(CustomAttributesCache* cache)
  1172. {
  1173. {
  1174. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1175. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1176. }
  1177. }
  1178. static void Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_U3CleaderboardIDU3Ek__BackingField(CustomAttributesCache* cache)
  1179. {
  1180. {
  1181. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[0];
  1182. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1183. }
  1184. {
  1185. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[1];
  1186. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1187. }
  1188. }
  1189. static void Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_U3CvalueU3Ek__BackingField(CustomAttributesCache* cache)
  1190. {
  1191. {
  1192. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1193. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1194. }
  1195. {
  1196. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[1];
  1197. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1198. }
  1199. }
  1200. static void Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_get_leaderboardID_m079BDC75AED9D8C06DC36F78AC233171F023FB4F(CustomAttributesCache* cache)
  1201. {
  1202. {
  1203. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1204. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1205. }
  1206. }
  1207. static void Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_set_leaderboardID_m05255F12ADDC2FC6D7E9646CBAE68D2924E66F65(CustomAttributesCache* cache)
  1208. {
  1209. {
  1210. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1211. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1212. }
  1213. }
  1214. static void Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_get_value_m750646EDC0619A11179177F597C21374F13FCB9E(CustomAttributesCache* cache)
  1215. {
  1216. {
  1217. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1218. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1219. }
  1220. }
  1221. static void Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_set_value_mFECF5E9D1928EEAE7E46F497CDA159549EEB74C4(CustomAttributesCache* cache)
  1222. {
  1223. {
  1224. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1225. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1226. }
  1227. }
  1228. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CidU3Ek__BackingField(CustomAttributesCache* cache)
  1229. {
  1230. {
  1231. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[0];
  1232. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1233. }
  1234. {
  1235. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[1];
  1236. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1237. }
  1238. }
  1239. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CuserScopeU3Ek__BackingField(CustomAttributesCache* cache)
  1240. {
  1241. {
  1242. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1243. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1244. }
  1245. {
  1246. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[1];
  1247. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1248. }
  1249. }
  1250. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CrangeU3Ek__BackingField(CustomAttributesCache* cache)
  1251. {
  1252. {
  1253. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1254. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1255. }
  1256. {
  1257. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[1];
  1258. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1259. }
  1260. }
  1261. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CtimeScopeU3Ek__BackingField(CustomAttributesCache* cache)
  1262. {
  1263. {
  1264. DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 * tmp = (DebuggerBrowsableAttribute_t2FA4793AD1982F5150E07D26822ED5953CD90F53 *)cache->attributes[0];
  1265. DebuggerBrowsableAttribute__ctor_mAA8BCC1E418754685F320B14A08AC226E76346E5(tmp, 0LL, NULL);
  1266. }
  1267. {
  1268. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[1];
  1269. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1270. }
  1271. }
  1272. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_id_m4A262BB19BCACE6C9B19874F5D68C777846C6CD6(CustomAttributesCache* cache)
  1273. {
  1274. {
  1275. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1276. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1277. }
  1278. }
  1279. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_id_mC863AFBCE6B992935BCE9E8B567CDA40CCD94B42(CustomAttributesCache* cache)
  1280. {
  1281. {
  1282. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1283. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1284. }
  1285. }
  1286. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_userScope_m8304E736582482D0E5705C109D95F0CEDF2EE54C(CustomAttributesCache* cache)
  1287. {
  1288. {
  1289. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1290. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1291. }
  1292. }
  1293. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_userScope_m66BBCC760CDAF1C44639BD10E4D901EFD7C3F778(CustomAttributesCache* cache)
  1294. {
  1295. {
  1296. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1297. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1298. }
  1299. }
  1300. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_range_mB9C6C91869423F791E017B71FCDB17A354585519(CustomAttributesCache* cache)
  1301. {
  1302. {
  1303. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1304. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1305. }
  1306. }
  1307. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_range_m29352D47548D750E0E42EC9627C861C69D084444(CustomAttributesCache* cache)
  1308. {
  1309. {
  1310. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1311. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1312. }
  1313. }
  1314. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_timeScope_mE1F4CBEBE4B2E1E6BD245E3BE518680F13BBF276(CustomAttributesCache* cache)
  1315. {
  1316. {
  1317. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1318. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1319. }
  1320. }
  1321. static void Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_timeScope_m36122610C955D05BD7FC713415CA78076986B901(CustomAttributesCache* cache)
  1322. {
  1323. {
  1324. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1325. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1326. }
  1327. }
  1328. static void GcUserProfileData_t18036AD9C18F55CBB882ABACD4DE2771EFFDF03D_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1329. {
  1330. {
  1331. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1332. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1333. }
  1334. }
  1335. static void GcAchievementDescriptionData_tA9C8FD052A0FAD05F5C290DEC026DDF07E81AF9D_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1336. {
  1337. {
  1338. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1339. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1340. }
  1341. }
  1342. static void GcAchievementData_t5391FC501EEDA04D3C45DB4213CAE82CA9ED9C24_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1343. {
  1344. {
  1345. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1346. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1347. }
  1348. }
  1349. static void GcScoreData_tAECE4DD4FB50D9F0B5504A41C1D95B028A5B28EC_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1350. {
  1351. {
  1352. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1353. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1354. }
  1355. }
  1356. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1357. {
  1358. {
  1359. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1360. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1361. }
  1362. {
  1363. NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * tmp = (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C *)cache->attributes[1];
  1364. NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76(tmp, il2cpp_codegen_string_new_wrapper("\x4D\x6F\x64\x75\x6C\x65\x73\x2F\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x2F\x50\x75\x62\x6C\x69\x63\x2F\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x53\x63\x72\x69\x70\x74\x69\x6E\x67\x47\x6C\x75\x65\x2E\x68"), NULL);
  1365. }
  1366. }
  1367. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ClearAchievementDescriptions_mA72C2A90928D81926EF8BCAB66F7150DE0E489CD(CustomAttributesCache* cache)
  1368. {
  1369. {
  1370. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1371. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1372. }
  1373. }
  1374. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetAchievementDescription_mC153A5A1641CD0ACD697FCA5F8AE700E3AC5D556(CustomAttributesCache* cache)
  1375. {
  1376. {
  1377. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1378. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1379. }
  1380. }
  1381. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetAchievementDescriptionImage_mF30697C06E102BA695C5C0A8F1CA7DF665DA592C(CustomAttributesCache* cache)
  1382. {
  1383. {
  1384. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1385. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1386. }
  1387. }
  1388. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerAchievementDescriptionCallback_m2B6DE7A6A44E667D121C17D2F00EC3126E4F83FE(CustomAttributesCache* cache)
  1389. {
  1390. {
  1391. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1392. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1393. }
  1394. }
  1395. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_AuthenticateCallbackWrapper_m589656EB520DF6FDBD4A01FEF3C81E01F5AAE2AB(CustomAttributesCache* cache)
  1396. {
  1397. {
  1398. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1399. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1400. }
  1401. }
  1402. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ClearFriends_m9B33314190B858DB062C30278B9588351B2424BC(CustomAttributesCache* cache)
  1403. {
  1404. {
  1405. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1406. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1407. }
  1408. }
  1409. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetFriends_m2C5398BD94DE525FC80494D147F1A66B134511D6(CustomAttributesCache* cache)
  1410. {
  1411. {
  1412. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1413. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1414. }
  1415. }
  1416. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetFriendImage_m0345E60955A58236E7FAF8AFEB97609976891A27(CustomAttributesCache* cache)
  1417. {
  1418. {
  1419. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1420. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1421. }
  1422. }
  1423. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerFriendsCallbackWrapper_mAAC5526F5A3C56F30959252B475576C305BB7D1B(CustomAttributesCache* cache)
  1424. {
  1425. {
  1426. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1427. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1428. }
  1429. }
  1430. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_AchievementCallbackWrapper_m752E3607DDB87BD4D46C63005991FA059EB34A34(CustomAttributesCache* cache)
  1431. {
  1432. {
  1433. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1434. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1435. }
  1436. }
  1437. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ProgressCallbackWrapper_m936927D783018BF2401D54CA92F8B968C2E3D2B9(CustomAttributesCache* cache)
  1438. {
  1439. {
  1440. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1441. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1442. }
  1443. }
  1444. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ScoreCallbackWrapper_m7F03AD845F9F4969A3ABCE49518FCBCFEB8D1F6A(CustomAttributesCache* cache)
  1445. {
  1446. {
  1447. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1448. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1449. }
  1450. }
  1451. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ScoreLoaderCallbackWrapper_m8E18C1133A5C05CF4449F9D3FADE430BEBBF0DA1(CustomAttributesCache* cache)
  1452. {
  1453. {
  1454. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1455. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1456. }
  1457. }
  1458. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_PopulateLocalUser_m06D6DF4CD813CC6AB95B84289871700D99C4EF42(CustomAttributesCache* cache)
  1459. {
  1460. {
  1461. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1462. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1463. }
  1464. }
  1465. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_LeaderboardCallbackWrapper_m1D0797D04EBCFC94424E7033C9E02D3DA4A8A4B1(CustomAttributesCache* cache)
  1466. {
  1467. {
  1468. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1469. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1470. }
  1471. }
  1472. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ClearUsers_m242535F1ED28589D2C91D12CB1FB3330BBE116A1(CustomAttributesCache* cache)
  1473. {
  1474. {
  1475. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1476. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1477. }
  1478. }
  1479. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetUser_m67E0DEED2E11D8B4E1EFFB03AB95573F1418903C(CustomAttributesCache* cache)
  1480. {
  1481. {
  1482. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1483. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1484. }
  1485. }
  1486. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetUserImage_m36FDEC3247298B1308E85BA4BFD1F8AAAD0E9E7E(CustomAttributesCache* cache)
  1487. {
  1488. {
  1489. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1490. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1491. }
  1492. }
  1493. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerUsersCallbackWrapper_mBF798F547F7094681E0B5B5FFEEE221DD7E4CC33(CustomAttributesCache* cache)
  1494. {
  1495. {
  1496. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1497. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1498. }
  1499. }
  1500. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SafeSetUserImage_m346275823D7FDD78D062A4E746AE1C6D2A82F849(CustomAttributesCache* cache)
  1501. {
  1502. {
  1503. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1504. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1505. }
  1506. }
  1507. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerResetAchievementCallback_m2E643A3EF41033D83DB9C85BE1090B88735209B4(CustomAttributesCache* cache)
  1508. {
  1509. {
  1510. RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 * tmp = (RequiredByNativeCodeAttribute_t855401D3C2EF3B44F4F1C3EE2DCD361CFC358D20 *)cache->attributes[0];
  1511. RequiredByNativeCodeAttribute__ctor_m97C095D1EE6AAB2894AE7E8B2F07D9B47CB8F8B5(tmp, NULL);
  1512. }
  1513. }
  1514. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Authenticate_mB8E4AEEB9851A5F0545980B87B72181CFF0B550C(CustomAttributesCache* cache)
  1515. {
  1516. {
  1517. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1518. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x6F\x63\x61\x6C\x55\x73\x65\x72\x3A\x3A\x47\x65\x74\x49\x6E\x73\x74\x61\x6E\x63\x65\x28\x29"), 1LL, NULL);
  1519. }
  1520. {
  1521. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1522. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1523. }
  1524. }
  1525. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_GetAuthenticated_m8A876D69350A2F69A65D25DBE9A4FDAB04C51C4D(CustomAttributesCache* cache)
  1526. {
  1527. {
  1528. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1529. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1530. }
  1531. {
  1532. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1533. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x6F\x63\x61\x6C\x55\x73\x65\x72\x3A\x3A\x47\x65\x74\x49\x6E\x73\x74\x61\x6E\x63\x65\x28\x29"), 1LL, NULL);
  1534. }
  1535. }
  1536. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_UserName_m7C31CCEE889F1F57D3B6670E15B269C341201F8A(CustomAttributesCache* cache)
  1537. {
  1538. {
  1539. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1540. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1541. }
  1542. {
  1543. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1544. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1545. }
  1546. }
  1547. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_UserID_m6824E492EA2AB9A62D41799A4B1867E3BD0D2FD2(CustomAttributesCache* cache)
  1548. {
  1549. {
  1550. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1551. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1552. }
  1553. {
  1554. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1555. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1556. }
  1557. }
  1558. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_UserGameID_mBA46211C39FE80D6AA3861101144FADD41A5D04E(CustomAttributesCache* cache)
  1559. {
  1560. {
  1561. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1562. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1563. }
  1564. {
  1565. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1566. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1567. }
  1568. }
  1569. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_LegacyUserID_mCC8B227725CC5C36B02A81C7DD02CC094A71113F(CustomAttributesCache* cache)
  1570. {
  1571. {
  1572. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1573. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1574. }
  1575. {
  1576. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1577. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1578. }
  1579. }
  1580. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_GetIsUnderage_m7776069236A4DAC99BCFE0920155F901A18B1EC4(CustomAttributesCache* cache)
  1581. {
  1582. {
  1583. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1584. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1585. }
  1586. {
  1587. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1588. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x6F\x63\x61\x6C\x55\x73\x65\x72\x3A\x3A\x47\x65\x74\x49\x6E\x73\x74\x61\x6E\x63\x65\x28\x29"), 1LL, NULL);
  1589. }
  1590. }
  1591. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_GetUserImage_mA57365C677E0CB5B1C1B6B8E20361C9D58DA73C5(CustomAttributesCache* cache)
  1592. {
  1593. {
  1594. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1595. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x6F\x63\x61\x6C\x55\x73\x65\x72\x3A\x3A\x47\x65\x74\x49\x6E\x73\x74\x61\x6E\x63\x65\x28\x29"), 1LL, NULL);
  1596. }
  1597. {
  1598. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1599. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1600. }
  1601. }
  1602. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_LoadFriends_mF485A93E33F5672A6EDDC74B856AD432FBF12803(CustomAttributesCache* cache)
  1603. {
  1604. {
  1605. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1606. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x6F\x63\x61\x6C\x55\x73\x65\x72\x3A\x3A\x47\x65\x74\x49\x6E\x73\x74\x61\x6E\x63\x65\x28\x29"), 1LL, NULL);
  1607. }
  1608. {
  1609. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1610. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1611. }
  1612. }
  1613. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalLoadAchievementDescriptions_mEF3BDD5E9E1C4B53A18B2C848D526E695CDB94E4(CustomAttributesCache* cache)
  1614. {
  1615. {
  1616. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[0];
  1617. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x4C\x6F\x61\x64\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6F\x6E\x73"), NULL);
  1618. }
  1619. {
  1620. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1621. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6F\x6E"), 2LL, NULL);
  1622. }
  1623. {
  1624. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[2];
  1625. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1626. }
  1627. }
  1628. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalLoadAchievements_mC483E963DB55E8CE904297B7A7D08BA872C8C5F0(CustomAttributesCache* cache)
  1629. {
  1630. {
  1631. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1632. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1633. }
  1634. {
  1635. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[1];
  1636. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x4C\x6F\x61\x64\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74\x73"), NULL);
  1637. }
  1638. {
  1639. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[2];
  1640. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74"), 2LL, NULL);
  1641. }
  1642. }
  1643. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalReportProgress_mE347276319A49E97397DEAA0726B6156746CD2D0(CustomAttributesCache* cache)
  1644. {
  1645. {
  1646. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[0];
  1647. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x52\x65\x70\x6F\x72\x74\x50\x72\x6F\x67\x72\x65\x73\x73"), NULL);
  1648. }
  1649. {
  1650. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1651. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74"), 2LL, NULL);
  1652. }
  1653. {
  1654. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[2];
  1655. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1656. }
  1657. }
  1658. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalReportScore_mAEE46DC335CB58B4B60855A1C0F417D0A2337FB7(CustomAttributesCache* cache)
  1659. {
  1660. {
  1661. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1662. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x53\x63\x6F\x72\x65"), 2LL, NULL);
  1663. }
  1664. {
  1665. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[1];
  1666. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x52\x65\x70\x6F\x72\x74\x53\x63\x6F\x72\x65"), NULL);
  1667. }
  1668. {
  1669. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[2];
  1670. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1671. }
  1672. }
  1673. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalLoadScores_m782C2E75372DB95426C859CA5BE221FFFE9787CF(CustomAttributesCache* cache)
  1674. {
  1675. {
  1676. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[0];
  1677. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x4C\x6F\x61\x64\x53\x63\x6F\x72\x65\x73"), NULL);
  1678. }
  1679. {
  1680. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1681. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1682. }
  1683. {
  1684. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[2];
  1685. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x53\x63\x6F\x72\x65"), 2LL, NULL);
  1686. }
  1687. }
  1688. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_ShowAchievementsUI_mC48635E42795B0F70BA5EAC29CDD5F3FEECF80D0(CustomAttributesCache* cache)
  1689. {
  1690. {
  1691. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1692. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1693. }
  1694. {
  1695. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1696. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6F\x6E"), 2LL, NULL);
  1697. }
  1698. {
  1699. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[2];
  1700. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x53\x68\x6F\x77\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74\x73\x55\x49"), NULL);
  1701. }
  1702. }
  1703. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_ShowLeaderboardUI_m1902CC112F48CC4A35F3E0C170957D48016D8BF5(CustomAttributesCache* cache)
  1704. {
  1705. {
  1706. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[0];
  1707. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x53\x68\x6F\x77\x4C\x65\x61\x64\x65\x72\x62\x6F\x61\x72\x64\x55\x49"), NULL);
  1708. }
  1709. {
  1710. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1711. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x65\x61\x64\x65\x72\x62\x6F\x61\x72\x64"), 2LL, NULL);
  1712. }
  1713. {
  1714. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[2];
  1715. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1716. }
  1717. }
  1718. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_LoadUsers_m59FCA59D1367C1AA3B73768481CAF37DD189B9E6(CustomAttributesCache* cache)
  1719. {
  1720. {
  1721. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1722. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1723. }
  1724. {
  1725. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1726. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x6F\x63\x61\x6C\x55\x73\x65\x72"), 2LL, NULL);
  1727. }
  1728. {
  1729. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[2];
  1730. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x4C\x6F\x61\x64\x55\x73\x65\x72\x73"), NULL);
  1731. }
  1732. }
  1733. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ResetAllAchievements_mE9D28FB583D98AA4088C5F343547F0D6417CEFE1(CustomAttributesCache* cache)
  1734. {
  1735. {
  1736. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1737. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74"), 2LL, NULL);
  1738. }
  1739. {
  1740. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1741. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1742. }
  1743. }
  1744. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ShowDefaultAchievementBanner_mF87D9C8A302CF0AD0A3111427040B689B5B613BE(CustomAttributesCache* cache)
  1745. {
  1746. {
  1747. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1748. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x41\x63\x68\x69\x65\x76\x65\x6D\x65\x6E\x74"), 2LL, NULL);
  1749. }
  1750. {
  1751. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1752. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1753. }
  1754. }
  1755. static void GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ShowSpecificLeaderboardUI_m1D82E3387839C941131D76AB186E98F48B5043EB(CustomAttributesCache* cache)
  1756. {
  1757. {
  1758. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1759. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1760. }
  1761. {
  1762. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1763. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x3A\x3A\x47\x63\x4C\x65\x61\x64\x65\x72\x62\x6F\x61\x72\x64"), 2LL, NULL);
  1764. }
  1765. {
  1766. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[2];
  1767. NativeMethodAttribute__ctor_m7F91BF50E5248D4FC3B6938488ABA3F1A883B825(tmp, il2cpp_codegen_string_new_wrapper("\x53\x68\x6F\x77\x4C\x65\x61\x64\x65\x72\x62\x6F\x61\x72\x64\x55\x49"), NULL);
  1768. }
  1769. }
  1770. static void U3CU3Ec__DisplayClass21_0_t640615F596448CA7D86AAC8EE3A104A2CE70A95A_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1771. {
  1772. {
  1773. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * tmp = (CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)cache->attributes[0];
  1774. CompilerGeneratedAttribute__ctor_m9DC3E4E2DA76FE93948D44199213E2E924DCBE35(tmp, NULL);
  1775. }
  1776. }
  1777. static void GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator(CustomAttributesCache* cache)
  1778. {
  1779. {
  1780. NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C * tmp = (NativeHeaderAttribute_t7F0E4B53790AA75CDB4C44E6D644267F8FE3066C *)cache->attributes[0];
  1781. NativeHeaderAttribute__ctor_m0E83F29C5939F185D6E90541591802EB2845FD76(tmp, il2cpp_codegen_string_new_wrapper("\x4D\x6F\x64\x75\x6C\x65\x73\x2F\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x2F\x50\x75\x62\x6C\x69\x63\x2F\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72\x53\x63\x72\x69\x70\x74\x69\x6E\x67\x47\x6C\x75\x65\x2E\x68"), NULL);
  1782. }
  1783. }
  1784. static void GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator_GcLeaderboard_GcLeaderboard_LoadScores_mE4F307604F265C0C0EBB3D4F73C69CDDCD0C33EA(CustomAttributesCache* cache)
  1785. {
  1786. {
  1787. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1788. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1789. }
  1790. {
  1791. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[1];
  1792. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1793. }
  1794. }
  1795. static void GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator_GcLeaderboard_GcLeaderboard_Loading_m75421046282EED69E844C5A137EB4D1322934C1C(CustomAttributesCache* cache)
  1796. {
  1797. {
  1798. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[0];
  1799. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1800. }
  1801. {
  1802. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[1];
  1803. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1804. }
  1805. }
  1806. static void GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator_GcLeaderboard_GcLeaderboard_Dispose_m45FAF5CB809CC8AA14C925CB11F23D6AD4DF407C(CustomAttributesCache* cache)
  1807. {
  1808. {
  1809. NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B * tmp = (NativeConditionalAttribute_t659349956F06958D4D05443BD06FF5CDC767C88B *)cache->attributes[0];
  1810. NativeConditionalAttribute__ctor_m2D44C123AE8913373A143BBE663F4DEF8D21DEF9(tmp, il2cpp_codegen_string_new_wrapper("\x45\x4E\x41\x42\x4C\x45\x5F\x47\x41\x4D\x45\x43\x45\x4E\x54\x45\x52"), NULL);
  1811. }
  1812. {
  1813. NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * tmp = (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 *)cache->attributes[1];
  1814. NativeMethodAttribute__ctor_mB0D8BA2FFA19561CCB4257F8D6D03726514A9E5F(tmp, NULL);
  1815. NativeMethodAttribute_set_IsThreadSafe_m965EAB84605EABFD2AE9B84FBE7FF311D1116A56_inline(tmp, true, NULL);
  1816. }
  1817. {
  1818. StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA * tmp = (StaticAccessorAttribute_t7A16FF0FA31E38510BBC8BCA5AE56C3E67D5A2BA *)cache->attributes[2];
  1819. StaticAccessorAttribute__ctor_m0C3215256AEFAEFDDCBCD2BA9AA579CDBB230706(tmp, il2cpp_codegen_string_new_wrapper("\x47\x61\x6D\x65\x43\x65\x6E\x74\x65\x72"), 2LL, NULL);
  1820. }
  1821. }
  1822. IL2CPP_EXTERN_C const CustomAttributesCacheGenerator g_UnityEngine_GameCenterModule_AttributeGenerators[];
  1823. const CustomAttributesCacheGenerator g_UnityEngine_GameCenterModule_AttributeGenerators[79] =
  1824. {
  1825. GcUserProfileData_t18036AD9C18F55CBB882ABACD4DE2771EFFDF03D_CustomAttributesCacheGenerator,
  1826. GcAchievementDescriptionData_tA9C8FD052A0FAD05F5C290DEC026DDF07E81AF9D_CustomAttributesCacheGenerator,
  1827. GcAchievementData_t5391FC501EEDA04D3C45DB4213CAE82CA9ED9C24_CustomAttributesCacheGenerator,
  1828. GcScoreData_tAECE4DD4FB50D9F0B5504A41C1D95B028A5B28EC_CustomAttributesCacheGenerator,
  1829. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator,
  1830. U3CU3Ec__DisplayClass21_0_t640615F596448CA7D86AAC8EE3A104A2CE70A95A_CustomAttributesCacheGenerator,
  1831. GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator,
  1832. Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_U3CidU3Ek__BackingField,
  1833. Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_U3CpercentCompletedU3Ek__BackingField,
  1834. AchievementDescription_t6C56CB1D0F1F374C45EC0F65D5F1192C170B6506_CustomAttributesCacheGenerator_U3CidU3Ek__BackingField,
  1835. Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_U3CleaderboardIDU3Ek__BackingField,
  1836. Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_U3CvalueU3Ek__BackingField,
  1837. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CidU3Ek__BackingField,
  1838. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CuserScopeU3Ek__BackingField,
  1839. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CrangeU3Ek__BackingField,
  1840. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_U3CtimeScopeU3Ek__BackingField,
  1841. Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_get_id_m39931C0B44D8A4948E12527FDE77C9211028267B,
  1842. Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_set_id_m16A4091CBC207FB287FEFF608C5F45D9D21106A0,
  1843. Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_get_percentCompleted_m864BBAA8D955D724A506E62F6741B52D43F38F9D,
  1844. Achievement_t43EB1469B011ADDEF59B6CB30044B878770D3565_CustomAttributesCacheGenerator_Achievement_set_percentCompleted_mD433F22DBB60B94FD45CC2A73C9A22C93B0CB9CB,
  1845. AchievementDescription_t6C56CB1D0F1F374C45EC0F65D5F1192C170B6506_CustomAttributesCacheGenerator_AchievementDescription_get_id_mD5FEE2DBF0C88887C99E3EDCD9BC65C32EFBAD4A,
  1846. AchievementDescription_t6C56CB1D0F1F374C45EC0F65D5F1192C170B6506_CustomAttributesCacheGenerator_AchievementDescription_set_id_m61C4DA5B9AD3353518524A8E34723CE7836D432E,
  1847. Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_get_leaderboardID_m079BDC75AED9D8C06DC36F78AC233171F023FB4F,
  1848. Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_set_leaderboardID_m05255F12ADDC2FC6D7E9646CBAE68D2924E66F65,
  1849. Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_get_value_m750646EDC0619A11179177F597C21374F13FCB9E,
  1850. Score_tD70993CC66CCC9CDE0DAB2917533D8094F1E4119_CustomAttributesCacheGenerator_Score_set_value_mFECF5E9D1928EEAE7E46F497CDA159549EEB74C4,
  1851. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_id_m4A262BB19BCACE6C9B19874F5D68C777846C6CD6,
  1852. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_id_mC863AFBCE6B992935BCE9E8B567CDA40CCD94B42,
  1853. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_userScope_m8304E736582482D0E5705C109D95F0CEDF2EE54C,
  1854. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_userScope_m66BBCC760CDAF1C44639BD10E4D901EFD7C3F778,
  1855. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_range_mB9C6C91869423F791E017B71FCDB17A354585519,
  1856. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_range_m29352D47548D750E0E42EC9627C861C69D084444,
  1857. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_get_timeScope_mE1F4CBEBE4B2E1E6BD245E3BE518680F13BBF276,
  1858. Leaderboard_tD587FC5E62BF8F6CC6AC0DF1ABB55D57A60CBE2D_CustomAttributesCacheGenerator_Leaderboard_set_timeScope_m36122610C955D05BD7FC713415CA78076986B901,
  1859. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ClearAchievementDescriptions_mA72C2A90928D81926EF8BCAB66F7150DE0E489CD,
  1860. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetAchievementDescription_mC153A5A1641CD0ACD697FCA5F8AE700E3AC5D556,
  1861. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetAchievementDescriptionImage_mF30697C06E102BA695C5C0A8F1CA7DF665DA592C,
  1862. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerAchievementDescriptionCallback_m2B6DE7A6A44E667D121C17D2F00EC3126E4F83FE,
  1863. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_AuthenticateCallbackWrapper_m589656EB520DF6FDBD4A01FEF3C81E01F5AAE2AB,
  1864. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ClearFriends_m9B33314190B858DB062C30278B9588351B2424BC,
  1865. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetFriends_m2C5398BD94DE525FC80494D147F1A66B134511D6,
  1866. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetFriendImage_m0345E60955A58236E7FAF8AFEB97609976891A27,
  1867. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerFriendsCallbackWrapper_mAAC5526F5A3C56F30959252B475576C305BB7D1B,
  1868. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_AchievementCallbackWrapper_m752E3607DDB87BD4D46C63005991FA059EB34A34,
  1869. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ProgressCallbackWrapper_m936927D783018BF2401D54CA92F8B968C2E3D2B9,
  1870. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ScoreCallbackWrapper_m7F03AD845F9F4969A3ABCE49518FCBCFEB8D1F6A,
  1871. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ScoreLoaderCallbackWrapper_m8E18C1133A5C05CF4449F9D3FADE430BEBBF0DA1,
  1872. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_PopulateLocalUser_m06D6DF4CD813CC6AB95B84289871700D99C4EF42,
  1873. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_LeaderboardCallbackWrapper_m1D0797D04EBCFC94424E7033C9E02D3DA4A8A4B1,
  1874. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ClearUsers_m242535F1ED28589D2C91D12CB1FB3330BBE116A1,
  1875. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetUser_m67E0DEED2E11D8B4E1EFFB03AB95573F1418903C,
  1876. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SetUserImage_m36FDEC3247298B1308E85BA4BFD1F8AAAD0E9E7E,
  1877. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerUsersCallbackWrapper_mBF798F547F7094681E0B5B5FFEEE221DD7E4CC33,
  1878. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_SafeSetUserImage_m346275823D7FDD78D062A4E746AE1C6D2A82F849,
  1879. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_TriggerResetAchievementCallback_m2E643A3EF41033D83DB9C85BE1090B88735209B4,
  1880. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Authenticate_mB8E4AEEB9851A5F0545980B87B72181CFF0B550C,
  1881. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_GetAuthenticated_m8A876D69350A2F69A65D25DBE9A4FDAB04C51C4D,
  1882. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_UserName_m7C31CCEE889F1F57D3B6670E15B269C341201F8A,
  1883. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_UserID_m6824E492EA2AB9A62D41799A4B1867E3BD0D2FD2,
  1884. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_UserGameID_mBA46211C39FE80D6AA3861101144FADD41A5D04E,
  1885. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_LegacyUserID_mCC8B227725CC5C36B02A81C7DD02CC094A71113F,
  1886. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_GetIsUnderage_m7776069236A4DAC99BCFE0920155F901A18B1EC4,
  1887. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_GetUserImage_mA57365C677E0CB5B1C1B6B8E20361C9D58DA73C5,
  1888. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_LoadFriends_mF485A93E33F5672A6EDDC74B856AD432FBF12803,
  1889. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalLoadAchievementDescriptions_mEF3BDD5E9E1C4B53A18B2C848D526E695CDB94E4,
  1890. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalLoadAchievements_mC483E963DB55E8CE904297B7A7D08BA872C8C5F0,
  1891. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalReportProgress_mE347276319A49E97397DEAA0726B6156746CD2D0,
  1892. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalReportScore_mAEE46DC335CB58B4B60855A1C0F417D0A2337FB7,
  1893. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_InternalLoadScores_m782C2E75372DB95426C859CA5BE221FFFE9787CF,
  1894. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_ShowAchievementsUI_mC48635E42795B0F70BA5EAC29CDD5F3FEECF80D0,
  1895. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_ShowLeaderboardUI_m1902CC112F48CC4A35F3E0C170957D48016D8BF5,
  1896. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_Internal_LoadUsers_m59FCA59D1367C1AA3B73768481CAF37DD189B9E6,
  1897. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ResetAllAchievements_mE9D28FB583D98AA4088C5F343547F0D6417CEFE1,
  1898. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ShowDefaultAchievementBanner_mF87D9C8A302CF0AD0A3111427040B689B5B613BE,
  1899. GameCenterPlatform_t358F709563A6FC9DFBF500151EDAEC05EBBA6F72_CustomAttributesCacheGenerator_GameCenterPlatform_ShowSpecificLeaderboardUI_m1D82E3387839C941131D76AB186E98F48B5043EB,
  1900. GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator_GcLeaderboard_GcLeaderboard_LoadScores_mE4F307604F265C0C0EBB3D4F73C69CDDCD0C33EA,
  1901. GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator_GcLeaderboard_GcLeaderboard_Loading_m75421046282EED69E844C5A137EB4D1322934C1C,
  1902. GcLeaderboard_t65BC1BB657B2E25E7BB1FBBB70ACDE29A3A64B72_CustomAttributesCacheGenerator_GcLeaderboard_GcLeaderboard_Dispose_m45FAF5CB809CC8AA14C925CB11F23D6AD4DF407C,
  1903. UnityEngine_GameCenterModule_CustomAttributesCacheGenerator,
  1904. };
  1905. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void RuntimeCompatibilityAttribute_set_WrapNonExceptionThrows_m8562196F90F3EBCEC23B5708EE0332842883C490_inline (RuntimeCompatibilityAttribute_tFF99AB2963098F9CBCD47A20D9FD3D51C17C1C80 * __this, bool ___value0, const RuntimeMethod* method)
  1906. {
  1907. {
  1908. bool L_0 = ___value0;
  1909. __this->set_m_wrapNonExceptionThrows_0(L_0);
  1910. return;
  1911. }
  1912. }
  1913. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void NativeMethodAttribute_set_IsThreadSafe_m965EAB84605EABFD2AE9B84FBE7FF311D1116A56_inline (NativeMethodAttribute_t57F61ACA17BEC1260A06658ACD971B0009CC1866 * __this, bool ___value0, const RuntimeMethod* method)
  1914. {
  1915. {
  1916. bool L_0 = ___value0;
  1917. __this->set_U3CIsThreadSafeU3Ek__BackingField_1(L_0);
  1918. return;
  1919. }
  1920. }