No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UnityEngine.Purchasing.Stores_CodeGen.c 153KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616
  1. #include "pch-c.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include "codegen/il2cpp-codegen-metadata.h"
  8. extern const RuntimeMethod* AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C_RuntimeMethod_var;
  9. extern void EmbeddedAttribute__ctor_mC8404DFC7B590D095F31BED1845D51F204C2E257 (void);
  10. extern void NullableAttribute__ctor_m7655B58768DF65210F3769D19B59EFBF1159F1F3 (void);
  11. extern void NullableAttribute__ctor_mC933B7DB73CF251AECD9C6A62C015A0966EE145E (void);
  12. extern void NullableContextAttribute__ctor_mA71DE71927AB86CC4FDFFCA1D87C9FFCEDFF0923 (void);
  13. extern void JsonProductDescriptionsDeserializer_DeserializeProductDescriptions_m98605926EA86D48EB99F1D87F32C926B3845D9F3 (void);
  14. extern void JsonProductDescriptionsDeserializer_DeserializeMetadata_mA7E9897C8313254A0A77047BDFC75B1AE33CFD72 (void);
  15. extern void JsonProductDescriptionsDeserializer__ctor_m20F016896A6A95110F9AD437F085398023F9BE05 (void);
  16. extern void AmazonAppStoreStoreExtensions__ctor_m8AEB4063FA2E04197E5E251ED474FDEDA0BC24EF (void);
  17. extern void FakeAmazonExtensions__ctor_mCC1F531E77DFC8CD8EC07E2DBD077D21F89B226E (void);
  18. extern void AndroidJavaStore__ctor_m0D38BF4E9163C97152786CA458452DC56EA27788 (void);
  19. extern void AndroidJavaStore_RetrieveProducts_mA29AFD08E019E3ABD7486DA31B64CAF4AA99B3A1 (void);
  20. extern void AndroidJavaStore_Purchase_m6092044FE46158DADF52DD87C42D14CAE0C928F6 (void);
  21. extern void AndroidJavaStore_FinishTransaction_mB87BF5AFF7584110C9559219323EFDC78AFB1403 (void);
  22. extern void ListExtension_ToJava_mE978EBDBB715630BF3EB53D57B0DADE80E36BE44 (void);
  23. extern void ListExtension_ToJavaArray_m0DF86FDF7D43E283838E042CBF99DBD75386714F (void);
  24. extern void UnityActivity_GetUnityPlayerClass_mAB92F573D73726FCC858D1AD1A71FBB5DCBF0AA3 (void);
  25. extern void UnityActivity_GetCurrentActivity_m4AD23C47CE2C5D5400EC5FE79E910F7E17EE7CB8 (void);
  26. extern void GoogleCachedQuerySkuDetailsService_Finalize_m74694BD9C573DF096648308BF08F9106E38D4F39 (void);
  27. extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m2C5B86190409B0C0CEE7D28211753B4231738C1C (void);
  28. extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSku_m004A5B0121AEE0F898AA2AC6A986345F483F06F5 (void);
  29. extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m5F0490A4825E669B13425DA1D5D78F0359635C07 (void);
  30. extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m882D22766C55E9C6AC9A82C921D8D32D1BAACBD6 (void);
  31. extern void GoogleCachedQuerySkuDetailsService_Contains_mD0BEE84C98B4F8DB1164E0E5C00235154341F9C5 (void);
  32. extern void GoogleCachedQuerySkuDetailsService_Contains_mAF77DEB82415E8FBB8497752BE673B1C5D0396E8 (void);
  33. extern void GoogleCachedQuerySkuDetailsService_AddCachedQueriedSkus_mE543941A26C7B1E9D13DD3D41F43CB1AF038E9C4 (void);
  34. extern void GoogleCachedQuerySkuDetailsService__ctor_m75DE2A2A61BBE9CE416CBE795FCBC1EEB82C1B45 (void);
  35. extern void U3CU3Ec__cctor_m28F1290B83C8238004FB545142A7FC44A30862FC (void);
  36. extern void U3CU3Ec__ctor_m306976DEC98D7D0A109FD1D782DB2B08A6F1D4EF (void);
  37. extern void U3CU3Ec_U3CGetCachedQueriedSkusU3Eb__5_0_mA5F3B0343F2F57981038DB98D3ABBCB2727E025A (void);
  38. extern void GoogleFinishTransactionService__ctor_m00E73732765A281CCE4D7F22A11A486315390ECB (void);
  39. extern void GoogleFinishTransactionService_FinishTransaction_m6A8FE42847AFB1260304124676891D25F830C01A (void);
  40. extern void GoogleFinishTransactionService_FindPurchase_mDDB6EF3226D924B27EEB239E19E924B334C3C10D (void);
  41. extern void GoogleFinishTransactionService_FinishTransactionForPurchase_m6E7C7331B5D6532C1452A172522ADB44F3EF477A (void);
  42. extern void U3CU3Ec__DisplayClass4_0__ctor_m77DBF651398150A28A503E57B6AA5EFCB3237A54 (void);
  43. extern void U3CU3Ec__DisplayClass4_0_U3CFindPurchaseU3Eb__0_m2EF37032672732A91958420A1AB805BB3E3EB3E9 (void);
  44. extern void U3CU3Ec__DisplayClass5_0__ctor_m8D84B5B026DCE730382FA1156834E58A58958737 (void);
  45. extern void U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__0_mFC4642CDDF4B9BB39649BB62A2564D369FD6FBE0 (void);
  46. extern void U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__1_m2D3ED6A5F77317CE25E72DCAF04B2781F65DF86C (void);
  47. extern void U3CFindPurchaseU3Ed__4__ctor_m7242B23212529EA564A6016FF0D60742EE44D009 (void);
  48. extern void U3CFindPurchaseU3Ed__4_MoveNext_m248DD760ABDCEA6A9510928C454BC081DB30312B (void);
  49. extern void U3CFindPurchaseU3Ed__4_SetStateMachine_m4C9A105DC0472A49C9E2C97B89F64286F26F88AB (void);
  50. extern void U3CFinishTransactionU3Ed__3__ctor_mB816ACFB52C51A71B713B47DEFD8F0EE9417E301 (void);
  51. extern void U3CFinishTransactionU3Ed__3_MoveNext_m1A6530743102DAF8982841D6772DD1141A55557C (void);
  52. extern void U3CFinishTransactionU3Ed__3_SetStateMachine_mEDCF39F90824A89CE4261C62CAF1CB45708B2E4F (void);
  53. extern void GoogleLastKnownProductService_get_LastKnownOldProductId_mB0F641FE6161FDB5B7CC65F86EC7517AE6D7ECED (void);
  54. extern void GoogleLastKnownProductService_set_LastKnownOldProductId_mEA04A6050A252BB362319A792F5B83842FFF70B5 (void);
  55. extern void GoogleLastKnownProductService_get_LastKnownProductId_mF73D95666E4113EA53B7581C6A7FFFC85B7AFE8E (void);
  56. extern void GoogleLastKnownProductService_set_LastKnownProductId_m691E76B48D409E7913403560ABE6C401B50A718E (void);
  57. extern void GoogleLastKnownProductService_get_LastKnownProrationMode_m649D8E783EB1BBD6D12BB5CAC63F3B65BA226A6A (void);
  58. extern void GoogleLastKnownProductService_set_LastKnownProrationMode_mFD652416415B081ACADA523F24C3D2A5C9B482C2 (void);
  59. extern void GoogleLastKnownProductService__ctor_mB2B1381DC77FB51FF1F9904D8823F6BCBC75DE97 (void);
  60. extern void GooglePlayStoreService__ctor_mF5FBF0303B1389E326204AAA532E4EB562950B7A (void);
  61. extern void GooglePlayStoreService_InitConnectionWithGooglePlay_mCFBB60729D49E6D3AF4144962557E7C790A3DA5A (void);
  62. extern void GooglePlayStoreService_StartConnection_m598C0DA556160B740ED770343B86F1E9956F4ED5 (void);
  63. extern void GooglePlayStoreService_ResumeConnection_m73468D028C1C28ECD3F6D3D9B7D7CD5880947FB2 (void);
  64. extern void GooglePlayStoreService_AttemptReconnection_m4D1794C468F2267B05F7D14B2D2977BA23362DCF (void);
  65. extern void GooglePlayStoreService_AreConnectionAttemptsExhausted_m20F49CFC1ABA07C7CF9400824EFBB7F093B32243 (void);
  66. extern void GooglePlayStoreService_RetryConnection_m064A3560B1183863F0850A57D9891F4C899064D4 (void);
  67. extern void GooglePlayStoreService_RetryConnectionAttempt_m48CE112D90916842962C50566950ECF79AEA882C (void);
  68. extern void GooglePlayStoreService_OnConnected_m8B93C3F30A25C81BD98334DD918DC5A57BA97DEF (void);
  69. extern void GooglePlayStoreService_DequeueQueryProducts_m42A618BA8A37DA3BB855BAFE7EC53777E2A25656 (void);
  70. extern void GooglePlayStoreService_DequeueFetchPurchases_m3759974224EF80FEDFA8872D7B9715757A0F6619 (void);
  71. extern void GooglePlayStoreService_OnDisconnected_mC6D89E84A79F158AAA952E3334014E626AEF48C7 (void);
  72. extern void GooglePlayStoreService_RetrieveProducts_m87A07E995045F8D2C0296867EF79740701CD9F87 (void);
  73. extern void GooglePlayStoreService_HandleRetrieveProductsNotConnected_mE5E12C093558652FB81EDBEB43ED01B814CEE5A9 (void);
  74. extern void GooglePlayStoreService_Purchase_m78CE45B496A389C9E12B4B6E5000633DB33AE10C (void);
  75. extern void GooglePlayStoreService_Purchase_m4379D016FB241D27A11DB5F5DBAB09D9CCA0D653 (void);
  76. extern void GooglePlayStoreService_FinishTransaction_m108C541DEDCD0AE5B51B000927E139FFB114AF83 (void);
  77. extern void GooglePlayStoreService_FetchPurchases_m0B9DC023CA06A3265117D7A90BB5ADF14F2E5A4A (void);
  78. extern void GooglePlayStoreService_TryFetchPurchases_m2AC309397D6FA5E077D73065954079322DDEB4D8 (void);
  79. extern void GooglePlayStoreService_U3CAttemptReconnectionU3Eb__20_0_m0E240F882132309B9D322ECC87EA6B2A581F6808 (void);
  80. extern void U3CU3Ec__DisplayClass22_0__ctor_mA3465CC56277C7366907EB325CCDAB660B519D50 (void);
  81. extern void U3CU3Ec__DisplayClass22_0_U3CRetryConnectionU3Eb__0_mFCF3E2929B22D7BDA76A1CBB9EBA2FD934EEDC34 (void);
  82. extern void U3CFetchPurchasesU3Ed__34__ctor_m7F4647978321C7E91F6080BBB5E1225D3A31F06C (void);
  83. extern void U3CFetchPurchasesU3Ed__34_MoveNext_m1B677AFF8B1472BFDC0DA16B186C4F0D233E1F00 (void);
  84. extern void U3CFetchPurchasesU3Ed__34_SetStateMachine_m0AA7CBAE3F04281CC113B22100C5E00415D9B5E5 (void);
  85. extern void U3CTryFetchPurchasesU3Ed__35__ctor_m52504C961A008C9AB3874F220BBC1F075C9BFDDF (void);
  86. extern void U3CTryFetchPurchasesU3Ed__35_MoveNext_m1D67FE3A66CFA1A048808A32D69808E9E9234A8C (void);
  87. extern void U3CTryFetchPurchasesU3Ed__35_SetStateMachine_m37746C732AACA7AB89ADDCA1104DAAA51201196D (void);
  88. extern void GooglePriceChangeService__ctor_m4E7EC6CE99DD4F272ACF6AC06D91F08FD0C990C2 (void);
  89. extern void GooglePurchaseService__ctor_m1DE748CB060AD5D8FC3CA43DE0AFC7292D2A1B4D (void);
  90. extern void GooglePurchaseService_Purchase_m29B1CB96BDA2D15289D51DFDC4232751E1970CF1 (void);
  91. extern void GooglePurchaseService_OnQuerySkuDetailsResponse_m95976F034A14D7F2856EE3542D20B41DF8FEDCF0 (void);
  92. extern void GooglePurchaseService_ValidateQuerySkuDetailsResponseParams_m6CFE33C653C6FAE33542B5885467F5C341DAC4F8 (void);
  93. extern void GooglePurchaseService_ValidateSkus_m640D7D5118648CF810EA4FABC663F2E69C71BB03 (void);
  94. extern void GooglePurchaseService_VerifyAndWarnIfMoreThanOneSku_m5C6986FE6B32C5949B98EB4342D21B3542FA10C7 (void);
  95. extern void GooglePurchaseService_PurchaseFailedSkuNotFound_mC534A4118675DF89F47C58C5389FC61BA2F7964C (void);
  96. extern void GooglePurchaseService_ValidateOldProduct_m0A6A2FA026568D45A29B6CD43C8A8A34348ADEA5 (void);
  97. extern void GooglePurchaseService_PurchaseFailedInvalidOldProduct_m49EC674BFCF31EC7B5501C25BEDF56CE7FA48818 (void);
  98. extern void GooglePurchaseService_LaunchGoogleBillingFlow_mAB16BC1F209D8A0C2A3BFB62C644D3051887AABD (void);
  99. extern void GooglePurchaseService_HandleBillingFlowResult_m8C975E77C9D491BAA800B5FB6286DE6D28D35298 (void);
  100. extern void U3CU3Ec__DisplayClass4_0__ctor_mB328CDF512A7B349805ADAE4506C41A0E43D6D81 (void);
  101. extern void U3CU3Ec__DisplayClass4_0_U3CPurchaseU3Eb__0_m3722933ED78BFF71ECF3927C27AA23CAAB6EB9C9 (void);
  102. extern void GoogleQueryPurchasesService__ctor_mE9215AEEA648CF0E1A49ECBF70A117D953AB0FF4 (void);
  103. extern void GoogleQueryPurchasesService_QueryPurchases_m4D27A1950FBB8CDC80E83AAA4B6A06929C153E9E (void);
  104. extern void GoogleQueryPurchasesService_QueryPurchasesWithSkuType_mDB5401461F2D5DF53BDA09F77E0B581A24507B23 (void);
  105. extern void GoogleQueryPurchasesService_IsResultOk_m53AA5016EB83D58BFB76AC0C3967EECA8341D989 (void);
  106. extern void U3CU3Ec__cctor_m77DB5CA22E2FF7F38F8CB47AEB2AA5B869A7B8C5 (void);
  107. extern void U3CU3Ec__ctor_m0DD28869F30A8D9E8D8DF6F7295B845CE3D6E377 (void);
  108. extern void U3CU3Ec_U3CQueryPurchasesU3Eb__3_0_m7CE532DAFFC24E63EEAC730BA53957EB44AEB2A8 (void);
  109. extern void U3CU3Ec__DisplayClass4_0__ctor_m36F184C8B6582054FED0F0A76615A56844D28DC7 (void);
  110. extern void U3CU3Ec__DisplayClass4_0_U3CQueryPurchasesWithSkuTypeU3Eb__0_m7A710091286EF7E7A6CAF40F7BD0C6DF4941F834 (void);
  111. extern void U3CQueryPurchasesU3Ed__3__ctor_m555DFCC3576140717CEC6FB42B7FCB20C201B05C (void);
  112. extern void U3CQueryPurchasesU3Ed__3_MoveNext_mCF5A4482C9C50AC1331906E671ED0EED5BDB09EA (void);
  113. extern void U3CQueryPurchasesU3Ed__3_SetStateMachine_mC7DE7B7783D52CBB7162448664BA0E064D7A35BD (void);
  114. extern void BillingClientStateListener__ctor_m04EE4E48F28E41B5C492F6ADF1B10CF9F849E4A7 (void);
  115. extern void BillingClientStateListener_RegisterOnConnected_m6CDC37825ACA5731EE17EE080626954E0D6BFF78 (void);
  116. extern void BillingClientStateListener_RegisterOnDisconnected_m8542956786353C419D2D6765B530F835E862654B (void);
  117. extern void BillingClientStateListener_onBillingSetupFinished_mA2197D2F0110DD41CC3321341CCD94A099065ABC (void);
  118. extern void BillingClientStateListener_onBillingServiceDisconnected_mD6AEE6476D94E0CC26BAFF9240AAD7E3DFCB7E63 (void);
  119. extern void GoogleAcknowledgePurchaseListener__ctor_mB509911DE8C7BEE8D023360D6E5C1BC970E94FE1 (void);
  120. extern void GoogleAcknowledgePurchaseListener_onAcknowledgePurchaseResponse_mEEA5706C7EAFB649307DF19A56E68205D56E5B5D (void);
  121. extern void GoogleConsumeResponseListener__ctor_m8CE0D56E7F1AA8E7CFDFCFC7050CB47DFFF2C3AB (void);
  122. extern void GoogleConsumeResponseListener_onConsumeResponse_m9D726EC5E5A4DBFE26255ABF504AA79B73F9F6ED (void);
  123. extern void GooglePriceChangeConfirmationListener_onPriceChangeConfirmationResult_m4D30C5EDDF73B290F7CAA4D5FD3567B65614FC0D (void);
  124. extern void GooglePurchasesResponseListener__ctor_m9605CF62666DDFF86C4355AD2A9E1499AF00ACE9 (void);
  125. extern void GooglePurchasesResponseListener_onQueryPurchasesResponse_m150BD48FEB6DB17513835043C5BDA7525C569405 (void);
  126. extern void GooglePurchaseUpdatedListener__ctor_mB1F324E62DFBDD61BB0F1085BA3E3E1AC0D11B83 (void);
  127. extern void GooglePurchaseUpdatedListener_SetGoogleQueryPurchaseService_m62E3B83FFFFC145A6D2EEF3C97D65CA1AA34B72C (void);
  128. extern void GooglePurchaseUpdatedListener_onPurchasesUpdated_m00587E219424F411BAAF2D564CDD393AE215B024 (void);
  129. extern void GooglePurchaseUpdatedListener_OnPurchasesUpdated_m28782E3FBBAAE520D735A011457597B4425AD3C3 (void);
  130. extern void GooglePurchaseUpdatedListener_HandleResultOkCases_m2D503275E3ADAD9DB420417D917B78342EDBA391 (void);
  131. extern void GooglePurchaseUpdatedListener_HandleErrorCases_mCB926C4CD0EB67AFF057F3F5B4DFA4057DC7798D (void);
  132. extern void GooglePurchaseUpdatedListener_HandleErrorGoogleBillingResult_mD4F3BC2C13924F32A233A68B6E460913E6C15B03 (void);
  133. extern void GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m8557C9149A8DB6B11932F0F497528E0DCC4B1D48 (void);
  134. extern void GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m5EA8C5D4048D851795374C64294B7A27CCCC0C32 (void);
  135. extern void GooglePurchaseUpdatedListener_ApplyOnPurchases_m8973C50AEA59347A4EB412C5047719848A7DC422 (void);
  136. extern void GooglePurchaseUpdatedListener_ApplyOnPurchases_mB7A5C06DC865BCAD741D744B4BFD498B58445E87 (void);
  137. extern void GooglePurchaseUpdatedListener_OnPurchaseOk_m765B24AA543C588FECC4770BC9B4D9EA58943103 (void);
  138. extern void GooglePurchaseUpdatedListener_HandlePurchasedProduct_m0F2CF03CC87F3F62BB812B043953590F78D16861 (void);
  139. extern void GooglePurchaseUpdatedListener_IsDeferredSubscriptionChange_mAF913C1C2A696B071BCCED905B47107E14ECD04B (void);
  140. extern void GooglePurchaseUpdatedListener_IsLastProrationModeDeferred_m7413CCD59DB8FAA1335C87B79EFAE8292022D510 (void);
  141. extern void GooglePurchaseUpdatedListener_OnPurchaseCancelled_mC96E9F836BF3E47684CC891D91E8779D7262B44B (void);
  142. extern void GooglePurchaseUpdatedListener_OnPurchaseCancelled_mA7E56DF9D38115A7FC22E16068CD36AE1E6C3277 (void);
  143. extern void GooglePurchaseUpdatedListener_OnPurchaseAlreadyOwned_mF098189CF0AEABD1F6769F208FA4008270812298 (void);
  144. extern void GooglePurchaseUpdatedListener_OnPurchaseFailed_m550EAD20A8DB54BE94B919ADF5CD342D35B9686F (void);
  145. extern void GooglePurchaseUpdatedListener_U3CHandleUserCancelledPurchaseFailureU3Eb__15_0_m912E3EEB5FC04575DF8336C2740E1C6424B969DA (void);
  146. extern void U3CHandleUserCancelledPurchaseFailureU3Ed__14__ctor_mDF92488B1C919E189965F23D76E9370D2F91FCC9 (void);
  147. extern void U3CHandleUserCancelledPurchaseFailureU3Ed__14_MoveNext_mECAC96E020F9E510A16F3CBBD9C4BC7BF0C96B34 (void);
  148. extern void U3CHandleUserCancelledPurchaseFailureU3Ed__14_SetStateMachine_mCC2C014DEEA70CE0027A9906600C36390CF09068 (void);
  149. extern void SkuDetailsResponseListener__ctor_mF86016CDDE155D2BE9F8B17CEFEC0D163EB7A4D2 (void);
  150. extern void SkuDetailsResponseListener_onSkuDetailsResponse_m70EB3CEA914A73E6AED65B5F22E378DBB6A792C6 (void);
  151. extern void U3CU3Ec__DisplayClass5_0__ctor_mB1DE7F50FCFAAF9D420B36AA90309A38D1BD5AEB (void);
  152. extern void U3CU3Ec__DisplayClass5_0_U3ConSkuDetailsResponseU3Eb__0_mBCE7C10C936B50A6D8787CBE5283763495490AD7 (void);
  153. extern void MetricizedGooglePlayStoreService__ctor_m25A3DFC6F9073B144331D071A3E89796B720ABF7 (void);
  154. extern void MetricizedGooglePlayStoreService_DequeueQueryProducts_m68DE6F64D6875355B987511D5EB5DB7323A277AE (void);
  155. extern void MetricizedGooglePlayStoreService_DequeueFetchPurchases_m2AB3DBC0FD1EB62C66D069A461FCF7D88204A14B (void);
  156. extern void MetricizedGooglePlayStoreService_RetrieveProducts_m87FD9314FDE483F227018CB65E2070A83C259891 (void);
  157. extern void MetricizedGooglePlayStoreService_Purchase_m81F49E52788EEC4DD9CC4A2ACD77FCDA7A53C724 (void);
  158. extern void MetricizedGooglePlayStoreService_U3CU3En__0_mC025AB6B08CE7C7D6DE7BB60BCEF3FD3838F8189 (void);
  159. extern void MetricizedGooglePlayStoreService_U3CU3En__1_m15EF2237A94F6779D9B7BA18AC61AF5655AC1F75 (void);
  160. extern void MetricizedGooglePlayStoreService_U3CU3En__2_mDA8D503BFEA537C94C50CECFD2F218FFAA9687C2 (void);
  161. extern void U3CU3Ec__DisplayClass3_0__ctor_mA138C4FAA7ABAD1DB20D4DF002AE7B78799E5209 (void);
  162. extern void U3CU3Ec__DisplayClass3_0_U3CDequeueQueryProductsU3Eb__0_mD9DF83EE9A5035BE7F1483D83D048D29F276AD9A (void);
  163. extern void U3CU3Ec__DisplayClass5_0__ctor_mF985A31F5FCA82DFAA7031769335EC1E43FC3D48 (void);
  164. extern void U3CU3Ec__DisplayClass5_0_U3CRetrieveProductsU3Eb__0_mABD44FFE6CCE382E6AADD9D77BCFD984B5A3AE0B (void);
  165. extern void U3CU3Ec__DisplayClass6_0__ctor_mD1D65405D5DC9A42319AC648B7DAA17942E8F42A (void);
  166. extern void U3CU3Ec__DisplayClass6_0_U3CPurchaseU3Eb__0_m70A8E5D2D89B687E63EB3B6803FCA1EADB8CE31D (void);
  167. extern void QuerySkuDetailsService__ctor_mE8EC2F94C91F0179E1AC333B2503F23F03535857 (void);
  168. extern void QuerySkuDetailsService_QueryAsyncSku_m4EDCD379B5AAC897E3512CC82728BCC9866384FF (void);
  169. extern void QuerySkuDetailsService_QueryAsyncSku_m607784D41BB469A318817EA1F3EA842D9E010BD9 (void);
  170. extern void QuerySkuDetailsService_QueryAsyncSku_m9E4D69E993809756057ACBCAB379F2B37220F3F4 (void);
  171. extern void QuerySkuDetailsService_QueryAsyncSkuWithRetries_m6DA64182E45953396A0264076F5EA60C4A3532BE (void);
  172. extern void QuerySkuDetailsService_TryQueryAsyncSkuWithRetries_m2EAE98C62CD752DA95C0F59AA089AFFF87A4CA31 (void);
  173. extern void QuerySkuDetailsService_ShouldRetryQuery_mDDBAD809BF96FC1B20F5C568B44A49BBDF2D4C7D (void);
  174. extern void QuerySkuDetailsService_AreAllSkuDetailsCached_mD2E47F10D03EBD833630BD0E2686B925B9262D46 (void);
  175. extern void QuerySkuDetailsService_GetCachedSkuDetails_m459625EAD0C244C5B4ECA436A73103D04AFEF3FF (void);
  176. extern void QuerySkuDetailsService_QueryInAppsAsync_m91146381C5101CEB5FE6E29A9E6F3D9BAAE056B1 (void);
  177. extern void QuerySkuDetailsService_QuerySubsAsync_m948A7F991C526C115FFB9B5F9A34615697EF1755 (void);
  178. extern void QuerySkuDetailsService_QuerySkuDetails_mD4D5809EF4F754BE61D2935B667393FA1BBBD30B (void);
  179. extern void U3CU3Ec__cctor_m6759708B42F0D3D7DC3CFBC13C6E60C7843A796D (void);
  180. extern void U3CU3Ec__ctor_mD5A2C95AA1D7177F6916D26256D061CA7DBEE49C (void);
  181. extern void U3CU3Ec_U3CAreAllSkuDetailsCachedU3Eb__14_0_m9E8F5B237A2C6BDAA4ADE1154F4563707B41EDB9 (void);
  182. extern void U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_0_m1A6386563405257CE9A0980CDC6AEBFE29441E5C (void);
  183. extern void U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_1_m17BE8243CB9E7F30831CC8AE2F5F35E6C938EE4C (void);
  184. extern void U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_0_m81501999562AE1D372E32916615C773B5095DB81 (void);
  185. extern void U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_1_m2EFB4A794BDBC59212FF8E4C679FCCBCEC62A3D4 (void);
  186. extern void U3CU3Ec__DisplayClass10_0__ctor_mCB4FBCF8A3507D52182C5FBC151B1F13F96FAC3A (void);
  187. extern void U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eb__0_mD383DC2310068E593EA80ABC43C523E47C5FA99B (void);
  188. extern void U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eg__OnActionRetryU7C1_m085E475AB077952F2846C6136F49A8C22F2BE075 (void);
  189. extern void U3CU3Ec__DisplayClass12_0__ctor_m85FF665E14CE34D34612970F31576AA2BE766687 (void);
  190. extern void U3CU3Ec__DisplayClass12_0_U3CTryQueryAsyncSkuWithRetriesU3Eb__0_m26B993FFAAD1E36665C2A22D4E2F323EBA344E72 (void);
  191. extern void U3CU3Ec__DisplayClass9_0__ctor_m533A1BF989D3A219AEBA6FBDCC2B1490C2FE9E84 (void);
  192. extern void U3CU3Ec__DisplayClass9_0_U3CQueryAsyncSkuU3Eb__0_m75B27CF7DD9F98FE9917225F48ADD73BF54D58DA (void);
  193. extern void SkuDetailsQueryResponse_Finalize_mFE0BA9C7FD572938BE2F3070C72CA1EE2BDDCEB8 (void);
  194. extern void SkuDetailsQueryResponse_AddResponse_mF1B6ABDF620A5AE5C744B0FCFCD760911029AEC4 (void);
  195. extern void SkuDetailsQueryResponse_SkuDetails_mA782974FA78D9BB019C144FC6E68CA867CC2841E (void);
  196. extern void SkuDetailsQueryResponse_IsRecoverable_mA58DC94D88675A7E412CBA0831F12B8674EC6FA2 (void);
  197. extern void SkuDetailsQueryResponse_IsRecoverable_m388B03DD9EEA0B5787322108CFDC8B7463C4F329 (void);
  198. extern void SkuDetailsQueryResponse__ctor_m4654FF8B33D29EFD53B5797CB49DE30E8875CFD4 (void);
  199. extern void U3CU3Ec__cctor_m32F22536A9DEFE113FE9867AD07318A95EBD52EC (void);
  200. extern void U3CU3Ec__ctor_mA6CE767B6444454DB3210EE8A2A372BE7546F6F0 (void);
  201. extern void U3CU3Ec_U3CAddResponseU3Eb__2_0_mEEA2ACE4EF5FFB8B9CDDBF40F3C96DB312A83FA6 (void);
  202. extern void U3CU3Ec_U3CSkuDetailsU3Eb__3_0_m0474D4D31CEAE87A51E00E9E228C60A882797F38 (void);
  203. extern void U3CU3Ec_U3CSkuDetailsU3Eb__3_1_mB71F4AC7405DD610C8C8EDF6F794B0C20AF540CA (void);
  204. extern void U3CU3Ec_U3CIsRecoverableU3Eb__4_0_mBFC82350AB7FE2361717F60CD472508099E9DF91 (void);
  205. extern void SkuDetailsResponseConsolidator__ctor_m9CA3C84075D850B5C635A03FF50725D15BFFEE05 (void);
  206. extern void SkuDetailsResponseConsolidator_Consolidate_m8A8DBF06DA93652A1E881603968B5124A0308A67 (void);
  207. extern void FakeGooglePlayStoreConfiguration__ctor_mED7ABA18497E3166EFB99514D00A239DEF15A2AA (void);
  208. extern void FakeGooglePlayStoreExtensions_IsPurchasedProductDeferred_m3CF9011710F5E0F936E13A300B7AA7DE55365B28 (void);
  209. extern void FakeGooglePlayStoreExtensions__ctor_m7CE5CD272DDABAF44154E2B79578DE525A413891 (void);
  210. extern void GooglePlayConfiguration__ctor_m00E3ABD231224448DD73C870F7577A12879FB299 (void);
  211. extern void GooglePlayConfiguration_NotifyInitializationConnectionFailed_m5E706FABA8A196D40A703E8913617B7F1EA0C5A6 (void);
  212. extern void GooglePlayConfiguration_NotifyQueryProductDetailsFailed_mC8A178690649569AB47D350786D56865827FDE90 (void);
  213. extern void GooglePlayConfiguration_NotifyDeferredProrationUpgradeDowngradeSubscription_mEB8B3D29090CE88539CA3E22576D886C73E83173 (void);
  214. extern void GooglePlayConfiguration_IsFetchPurchasesAtInitializeSkipped_mA957053EED2577592325EB8E80B08FE928839B61 (void);
  215. extern void GooglePlayConfiguration_DoesRetrievePurchasesExcludeDeferred_m03BBF5C4B8A521E67738B816455D9D8F69CDCDA8 (void);
  216. extern void GooglePlayConfiguration_NotifyDeferredPurchase_m9E0F334800FDA40407CB9CECD996DD45940D1036 (void);
  217. extern void GooglePlayProductCallback_SetStoreConfiguration_mADD4C9C243F83D64231BAA554A096C4A41378210 (void);
  218. extern void GooglePlayProductCallback_NotifyQueryProductDetailsFailed_mD1657729F98064FFB9BBCF5635D0FF1C531EB8DC (void);
  219. extern void GooglePlayProductCallback__ctor_m950784739496F64C7A5312A7E75A0F97ADA0B77F (void);
  220. extern void GooglePlayPurchaseCallback__ctor_m68068D41D76338FEB265D46E85289A18AAFE2CF0 (void);
  221. extern void GooglePlayPurchaseCallback_SetStoreCallback_mDBB788DB101437778407F10A8F83AA5770AEE2CF (void);
  222. extern void GooglePlayPurchaseCallback_SetStoreConfiguration_mB3D6E90372854F3750107B578C39E990179FB61E (void);
  223. extern void GooglePlayPurchaseCallback_OnPurchaseSuccessful_m0C42BF32CA2328E8E1ADB1FD7F9057C07E1A0EFD (void);
  224. extern void GooglePlayPurchaseCallback_OnPurchaseFailed_m797EBCB9415B7E1E6136370E0D919D378DA033D9 (void);
  225. extern void GooglePlayPurchaseCallback_NotifyDeferredPurchase_mB6A7AD9A8FA816DCAC78A13562515B670C4E1C76 (void);
  226. extern void GooglePlayPurchaseCallback_NotifyDeferredProrationUpgradeDowngradeSubscription_m2D4199C517F310037AEF29DF92B82D46BEE7AB89 (void);
  227. extern void U3CU3Ec__DisplayClass8_0__ctor_mC688B3C07EF4A3717B3312CAE767EFEFE864CCBB (void);
  228. extern void U3CU3Ec__DisplayClass8_0_U3CNotifyDeferredPurchaseU3Eb__0_m3AD7D105AD95ED1F5C71BADBB86BD3108745CCF9 (void);
  229. extern void U3CU3Ec__DisplayClass9_0__ctor_m30F6B21A8952AEB8839D02CFFEFB1575E5285B31 (void);
  230. extern void U3CU3Ec__DisplayClass9_0_U3CNotifyDeferredProrationUpgradeDowngradeSubscriptionU3Eb__0_mA776A70712EAF9A5E843069C70F780FFCF5F99AD (void);
  231. extern void GooglePlayStore__ctor_m442B660554E4BBDE92208921FD3898BFECADFEDC (void);
  232. extern void GooglePlayStore_Initialize_m7CBB76995E9EC1D9E22D8893BE2A660044A55E08 (void);
  233. extern void GooglePlayStore_RetrieveProducts_mDB89F3EEE4393786FA0AB117AAF6962DDCE72F04 (void);
  234. extern void GooglePlayStore_HasInitiallyRetrievedProducts_mF08671150A96861672F6858F392DAB76A5C24E97 (void);
  235. extern void GooglePlayStore_ShouldFetchPurchasesNext_mCFAC177782D5D8C4A365629CC429BD62C98176B4 (void);
  236. extern void GooglePlayStore_Purchase_m76E314E4992393D3527D664337C437B525C81FB4 (void);
  237. extern void GooglePlayStore_FinishTransaction_mB85BB4EA23B4992038BC80994BF7C98982851187 (void);
  238. extern void GooglePlayStore_OnPause_m31336B413016F6099885044229E4C021A7083BB7 (void);
  239. extern void GooglePlayStoreExtensions__ctor_m3164A3520A06CDD7E2CA70C380D01B4C0CE7C0F0 (void);
  240. extern void GooglePlayStoreExtensions_SetStoreCallback_m78881F7FB0978D53414137B1480395B5B2AA553A (void);
  241. extern void GooglePlayStoreExtensions_IsPurchasedProductDeferred_m4E78DB685E6FBD2DC0A01CE4232B64BB43991FED (void);
  242. extern void GooglePlayStoreExtensions_TryIsPurchasedProductDeferred_mCCAAD920152BC5DFC3F9455B5902FA2157D67CAB (void);
  243. extern void GooglePlayStoreExtensions_GetPurchaseState_mE5AE3E1D748E943BFC07E3CEFA83F6D5807CB1E3 (void);
  244. extern void MetricizedGooglePlayStoreExtensions__ctor_m7730A5D7D03CAEF22B57BA348C6A0F7E6ABB54D0 (void);
  245. extern void GoogleProductMetadata_set_originalJson_m2AA4A01F9FD6D875D3178EA3516A2CA7E0C2F458 (void);
  246. extern void GoogleProductMetadata_set_subscriptionPeriod_mE8B892F4C6E22156A092545EE251E829BD657A4B (void);
  247. extern void GoogleProductMetadata_set_freeTrialPeriod_mAD70EE78EF91C1EC5BC3EDC1BA4C36832F6DB82F (void);
  248. extern void GoogleProductMetadata_set_introductoryPrice_m5A6A7589836E3AAAB78BF64B2EB434D50697FC55 (void);
  249. extern void GoogleProductMetadata_set_introductoryPricePeriod_mF7C017AF4C274A6417A5FF1AFFB94584F3950D53 (void);
  250. extern void GoogleProductMetadata_set_introductoryPriceCycles_m5D7A148FCFC8C13188F970F2AB846033CD30EE64 (void);
  251. extern void GoogleProductMetadata__ctor_m6987658611A6B5BDD48C3C87283ACB6346F28A6B (void);
  252. extern void GoogleFetchPurchases__ctor_m23498B0FC31C93822DF3D731BFF27CE51978420F (void);
  253. extern void GoogleFetchPurchases_SetStoreCallback_mD64337130E5102DA07EB013F73B56EB099865293 (void);
  254. extern void GoogleFetchPurchases_FetchPurchases_m9C4BD1ABE4996D730F7512C11D3CD64F39EB6E6F (void);
  255. extern void GoogleFetchPurchases_FetchPurchases_mB5BB2978060AF58720285D9D82210C49CAEEB404 (void);
  256. extern void GoogleFetchPurchases_FillProductsWithPurchases_m696BAD4693F1BE2B9582C7E98C8D8FC9AEA8984A (void);
  257. extern void GoogleFetchPurchases_BuildProductsFromPurchase_m1F0C4090FBDD9D617F8246E05E24315BAF11850F (void);
  258. extern void GoogleFetchPurchases_CompleteProductInfoWithPurchase_mF21F1D0A88F9D3975E33B32572A6CFD2FE8598B7 (void);
  259. extern void GoogleFetchPurchases_OnFetchedPurchase_mDDEF43EF8FACA9B9267717E8795BCB1FBC2B982A (void);
  260. extern void GoogleFetchPurchases_PurchaseIsPurchased_m1CD163A5827F7638E3F7FFE75F6A8E5A16C13E95 (void);
  261. extern void GoogleFetchPurchases_PurchaseIsPending_mC3D01A896C7C55B6D823BE1D9F25FA404B3AD838 (void);
  262. extern void GoogleFetchPurchases_UpdateDeferredProductsByPurchases_mB2277296696BC368E113BA97ED73A49402F361B0 (void);
  263. extern void GoogleFetchPurchases_UpdateDeferredProductsByPurchase_mC4F57ECF37A0DF6A86093DBF9C3B4108A6646BF9 (void);
  264. extern void GoogleFetchPurchases_UpdateDeferredProduct_mDA34FF5F5BB2D0570E557F1C66EB7D5A122E8460 (void);
  265. extern void U3CU3Ec__cctor_m663611EADD44C5C2716D84BC2FCC720F2412C128 (void);
  266. extern void U3CU3Ec__ctor_mA3D48173D32BD58EE4D8181CCD896F7E83FB7E04 (void);
  267. extern void U3CU3Ec_U3CPurchaseIsPurchasedU3Eb__11_0_mA0F316BEF7E02821ED1013153E9A1489F535A57A (void);
  268. extern void U3CU3Ec_U3CPurchaseIsPendingU3Eb__12_0_m39A95DB2A2EBD4FBA010242D5A8A7C179EC58D7B (void);
  269. extern void U3CU3Ec__DisplayClass10_0__ctor_mAD689312E6C6B761FE8F4CEE69E046A057401D60 (void);
  270. extern void U3CU3Ec__DisplayClass10_0_U3COnFetchedPurchaseU3Eb__0_mBC5858D8DC79E0384937B68E851D50DC254D49C1 (void);
  271. extern void U3CU3Ec__DisplayClass6_0__ctor_mA33E3F3BAC5C6B0FCCD09956DA6BBE52CB990EEA (void);
  272. extern void U3CU3Ec__DisplayClass6_0_U3CFetchPurchasesU3Eb__0_m428B81E2341006BE8162324D3EEEA47F815006A3 (void);
  273. extern void U3CU3Ec__DisplayClass8_0__ctor_mCC52CF9D8B2EC984F52D7A3AE12B24B59F65E7E8 (void);
  274. extern void U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__0_m93F6324836D90AE1CEF6F3E9DA705F9137F43932 (void);
  275. extern void U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__1_mEAC504DF71965A450E4855D8CA3DBD7F4953EF75 (void);
  276. extern void GooglePlayStoreFinishTransactionService__ctor_m73C28E31505A72BADFCB9E2ADB5946D9E1E49069 (void);
  277. extern void GooglePlayStoreFinishTransactionService_SetStoreCallback_mBD8994E6B5551AC9C311B19706F6BA6A5FF323C9 (void);
  278. extern void GooglePlayStoreFinishTransactionService_FinishTransaction_mC226005E6254F6269113CA84612B1A0E343D08CE (void);
  279. extern void GooglePlayStoreFinishTransactionService_HandleFinishTransaction_m6EE0595168E0A036E4302D3D77C1296131CDBCA2 (void);
  280. extern void GooglePlayStoreFinishTransactionService_CallPurchaseSucceededUpdateReceipt_m7A161EB8AB08F82A3998407C37448C5D5AC34AE4 (void);
  281. extern void GooglePlayStoreFinishTransactionService_IsResponseCodeInRecoverableState_mB643EF366A9693C524CEEA23AA96C9D04EFDFDAF (void);
  282. extern void U3CU3Ec__DisplayClass7_0__ctor_mC7615D49B9A621DB691190861BE652EC3A31AE5A (void);
  283. extern void U3CU3Ec__DisplayClass7_0_U3CFinishTransactionU3Eb__0_m04B922FDC75F4891A2B7F6FA7F0E424BA3A38BD2 (void);
  284. extern void GooglePlayStorePurchaseService__ctor_m7848EF4D063099A3CB5A94F10839E86935AB6A11 (void);
  285. extern void GooglePlayStorePurchaseService_Purchase_mEC0DBE8E7088EE6A76470CE09F70A1397D3EC097 (void);
  286. extern void GooglePlayStoreRetrieveProductsService__ctor_m0CA75B6C835F2EC9DBC8E462B6713BE4698324B2 (void);
  287. extern void GooglePlayStoreRetrieveProductsService_SetStoreCallback_mD7565370FECAAC10E486CBE82C6BA3CCEBDDE50A (void);
  288. extern void GooglePlayStoreRetrieveProductsService_RetrieveProducts_m467794DCB494591A9DF168380E057DD2E9CC5BF7 (void);
  289. extern void GooglePlayStoreRetrieveProductsService_OnProductsRetrievedWithPurchaseFetch_mFF9A8E3594336C215CF28CA6BE4ADE7871DB26CA (void);
  290. extern void GooglePlayStoreRetrieveProductsService_OnProductsRetrieved_mBF9EF11DA650BEDD232019B59B813F9D474D2B7F (void);
  291. extern void GooglePlayStoreRetrieveProductsService_OnRetrieveProductsFailed_m45BA9CC0D0A90D81919EA4DE083EC17E6DA4A31F (void);
  292. extern void GooglePlayStoreRetrieveProductsService_ResumeConnection_m90D885D4B2EA84E45DA13DEAB9E4B14E53FA89B2 (void);
  293. extern void GooglePlayStoreRetrieveProductsService_MakePurchasesIntoProducts_m84ED9554C7D4A0C112BB4E971458737766428177 (void);
  294. extern void GooglePlayStoreRetrieveProductsService_IsPurchasedProductDeferred_mD31CFEBACEDE3BF9D682FB55B4647547E85D3552 (void);
  295. extern void GooglePlayStoreRetrieveProductsService_CreateNewProductUnifiedReceipt_m4A828BFF7493EB1E95167CDD381BF4E53CC27747 (void);
  296. extern void GooglePlayStoreRetrieveProductsService_HasInitiallyRetrievedProducts_mBADDD565F7DBF2601D816EE6B59283813FCBEFD7 (void);
  297. extern void U3CU3Ec__DisplayClass10_0__ctor_m7999427F3130F6D577FD8A6BA660E0FDE93D4A32 (void);
  298. extern void U3CU3Ec__DisplayClass10_0_U3COnProductsRetrievedWithPurchaseFetchU3Eb__0_m601CDF5D52DF3A7C33934B2C2C86308DF21D758D (void);
  299. extern void U3CU3Ec__DisplayClass14_0__ctor_mF92CF9E8D4C9E3F5D59BE5FA56AF02EFF7616E6D (void);
  300. extern void U3CU3Ec__DisplayClass14_0_U3CMakePurchasesIntoProductsU3Eb__0_mC86784D0EE46527E6027B975D8790B2A7A2D4812 (void);
  301. extern void StoreCallbackExtensionMethods_FindProductById_m0E4A17BCE49A46D65A1B234C9B87D3C53067B012 (void);
  302. extern void JavaBridge__ctor_mFE1D316608D352A17AF50EC9DF0E5E8B9E7DD08C (void);
  303. extern void SerializationExtensions_TryGetString_m50B16F206A82935DDBDEAA88520270BE788F5B33 (void);
  304. extern void JSONSerializer_SerializeProductDef_m30C22B408C008814C1703550DF65EBD09CA832B7 (void);
  305. extern void JSONSerializer_SerializeProductDefs_m3D0929F515F66A1E0F0E6849454A6985BBFEB616 (void);
  306. extern void JSONSerializer_SerializeProductDescs_m099404FD14B84B48AAE2B30D571EF389E59E21BD (void);
  307. extern void JSONSerializer_DeserializeFailureReason_m914151E8ED821123DB57B56770124D2B34C5EBAB (void);
  308. extern void JSONSerializer_BuildPurchaseFailureDescriptionMessage_m9DEEAF966943E83E129F94F05E2C3930D160A03C (void);
  309. extern void JSONSerializer_EncodeProductDef_mC867EAE9AB70675C075F5932ADCBBAE5BDF9EE19 (void);
  310. extern void JSONSerializer_EncodeProductDesc_mAEB2F175F5BE8DE42353A26D77796BCA37A6B6C3 (void);
  311. extern void JSONSerializer_EncodeProductMeta_mF9DBB19F1A341F90494BCF37645BD866B65F595B (void);
  312. extern void ScriptingStoreCallback__ctor_m6F45754D7A1E6A4ECFA500BC97B89A2D8EC67E9C (void);
  313. extern void ScriptingStoreCallback_get_products_m4520241E9DBDE79A7635311D8A615D5B906211B5 (void);
  314. extern void ScriptingStoreCallback_OnSetupFailed_mAA28ACD581F8726F3D977CED7B8FF3D85A536E90 (void);
  315. extern void ScriptingStoreCallback_OnProductsRetrieved_m53F615DDDBD1474B8DF639236D38806FC43E0AA4 (void);
  316. extern void ScriptingStoreCallback_OnPurchaseSucceeded_mCC7D4C723008049F7AA5D67BDD6D2087A67D24ED (void);
  317. extern void ScriptingStoreCallback_OnAllPurchasesRetrieved_m6C66FC3DD9081BC62B25724E4C1F2B878CC4660E (void);
  318. extern void ScriptingStoreCallback_OnPurchaseFailed_m6900616FF46EBFCA55AC24747B622887167E3700 (void);
  319. extern void U3CU3Ec__DisplayClass10_0__ctor_mE4A4709BD713F62CA3FC17639EC65C23DE3091FE (void);
  320. extern void U3CU3Ec__DisplayClass10_0_U3COnPurchaseFailedU3Eb__0_mB30EAA403CBDE5D183B13BFD075E68D1464CC7EB (void);
  321. extern void U3CU3Ec__DisplayClass6_0__ctor_m0B122E52D7806788868B67D5349501C605B6B976 (void);
  322. extern void U3CU3Ec__DisplayClass6_0_U3COnSetupFailedU3Eb__0_mE99F04FDBC25BF7FE398E60F144A502967837789 (void);
  323. extern void U3CU3Ec__DisplayClass7_0__ctor_m7142B52B5A6D40912C042FD8BD993CB490019DE8 (void);
  324. extern void U3CU3Ec__DisplayClass7_0_U3COnProductsRetrievedU3Eb__0_mAAFBF7E5A56F1688BE5B1CA2C33C7A6DF42A0F02 (void);
  325. extern void U3CU3Ec__DisplayClass8_0__ctor_m451ABE949F36739F659791BA041B83B8E9889C39 (void);
  326. extern void U3CU3Ec__DisplayClass8_0_U3COnPurchaseSucceededU3Eb__0_mCAC7081CD54676C43056EFA6FC1B55E267E464D1 (void);
  327. extern void U3CU3Ec__DisplayClass9_0__ctor_mA89E3CAD6C621FA387FDA175B856300AB4F1515A (void);
  328. extern void U3CU3Ec__DisplayClass9_0_U3COnAllPurchasesRetrievedU3Eb__0_mF701C2366616FF7651766BC228D3E3CC704D9835 (void);
  329. extern void ScriptingUnityCallback__ctor_mE91537431428F2BAE31F74C97511D1801B2B76BA (void);
  330. extern void FakeUDPExtension__ctor_m9909C64791CF0E33D3BC4A9EF5A0CD83731B4779 (void);
  331. extern void UDP_get_Name_m70A3676CB1334C681DD38DA9A3A58D7D854FC52B (void);
  332. extern void UDPBindings__ctor_mCC17D7B8FF9A01CBBDACDB250F92451CAE9DA238 (void);
  333. extern void UDPBindings_Initialize_mB5D70AECF387FD4853B2C8C13441400F76B8C1FD (void);
  334. extern void UDPBindings_Purchase_m6E867ECDA70899A560303597915C4D9AC54402A3 (void);
  335. extern void UDPBindings_RetrieveProducts_m9071FB1685A15AA310CF02CD785091D465E15517 (void);
  336. extern void UDPBindings_FinishTransaction_mCACDE296E30E5E9B9A4ABA3A57C8362CB2979ECB (void);
  337. extern void UDPBindings_OnInventoryQueried_m82D6D36598774DFAF94E85A6D3191584386AFB11 (void);
  338. extern void UDPBindings_RetrieveProducts_mF3C89574016423E1BCDF913DEE85B994B9B8489A (void);
  339. extern void UDPBindings_Purchase_m45DF1F8D92447D7383D01797E59EC4B3F28F83E6 (void);
  340. extern void UDPBindings_FinishTransaction_m4622B1CB1D217ADC06D774AD233114FCA9F52D3C (void);
  341. extern void UDPBindings_StringPropertyToDictionary_m39B952E8FF7D956C5818D9BDAB3E6F095CE6EA10 (void);
  342. extern void UDPImpl_SetNativeStore_mE6BF4249E85915BF98457E2D9ABD26896BA955AD (void);
  343. extern void UDPImpl_Initialize_m856683942B1E72EBBA2C03D2DEF0A4D4A24DDF70 (void);
  344. extern void UDPImpl_RetrieveProducts_mF219F897C8726F2E00D24E37241DF7816801C2D6 (void);
  345. extern void UDPImpl_Purchase_m2FE4F9AA04774FFB1F9FBA449C6E57E61412B1E5 (void);
  346. extern void UDPImpl_OnPurchaseDeferred_mD181FC617E85EB85048FAFB5C190979C2C9F170B (void);
  347. extern void UDPImpl_FinishTransaction_m0926C1E511ECAF82484CDE4430A53BC4665AE803 (void);
  348. extern void UDPImpl_DictionaryToStringProperty_m0C3B83E927934260F67FC7329328496F327A16DB (void);
  349. extern void UDPImpl__ctor_m76DDF676AAEEF16864C212AF4F3067E8494E53BC (void);
  350. extern void U3CU3Ec__DisplayClass10_0__ctor_mF1B0D32B7DC643E0DF4DF4101AD8261CD33A8650 (void);
  351. extern void U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eg__retrieveCallbackU7C0_m089FBA707F15C0733AB9623189408682CEAB6824 (void);
  352. extern void U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__1_mF3763D2E4FF48AEC059193028E14BC784F479278 (void);
  353. extern void U3CU3Ec__DisplayClass11_0__ctor_m892A56A497D981D4387D76978F75F8A8ED72F66F (void);
  354. extern void U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m005372A7A362E83C9FA8C9E826D03CDC750BEB2C (void);
  355. extern void UDPReflectionUtils_GetTypeByName_m26748778D6FA4CCB984BF47429E7F482F353C400 (void);
  356. extern void UDPReflectionUtils_GetAllAssemblies_m61C9FE53E7130D9F2E261538B11666B679399E94 (void);
  357. extern void UDPReflectionUtils_GetTypes_mF549D6ACE95CE2FD623113E943A65BFFC67EFDB7 (void);
  358. extern void UDPReflectionUtils__cctor_mC38EF4E2397351D025D3BE4F017BE5C58E5EE0D4 (void);
  359. extern void U3CU3Ec__DisplayClass6_0__ctor_m904B6C1C4442C69C8F2B22E576F05F2B99A3732E (void);
  360. extern void U3CU3Ec__DisplayClass6_0_U3CGetTypeByNameU3Eb__0_mE562C8B0ECB0EDD67151846249850549E5396DE1 (void);
  361. extern void InventoryInterface_GetClassType_m10737C1664C2EFEF67AEF67987633D8FBA9C00CA (void);
  362. extern void InventoryInterface_GetProductListMethod_m5A7B9400947F108080DB3C0F522C9798E90D0669 (void);
  363. extern void InventoryInterface_GetPurchaseInfoMethod_m6F8F663AEC7F4654C65A6CADDF8176877D6CDF43 (void);
  364. extern void InventoryInterface_HasPurchaseMethod_mDC03C925282E5CB8F59D68590300B80B77691F4E (void);
  365. extern void ProductInfoInterface_GetClassType_m3439925DE53E57C7A4458FD57E713D9F52C1E625 (void);
  366. extern void ProductInfoInterface_GetCurrencyProp_m4E4121C55EBC9BD58E603CD7DE11A3F6BAA0CF4F (void);
  367. extern void ProductInfoInterface_GetDescriptionProp_m059605088C221E9566919514E62A1A72C0F9AE39 (void);
  368. extern void ProductInfoInterface_GetPriceProp_mFA43FA2FD73B1ABA1246C03299A427B14D624D32 (void);
  369. extern void ProductInfoInterface_GetPriceAmountMicrosProp_m164F27C12024DE1DB4791B5BD11D0B85AB2679F8 (void);
  370. extern void ProductInfoInterface_GetProductIdProp_m12571C88A3B8424D85C95D70E6FE05206582F7CB (void);
  371. extern void ProductInfoInterface_GetTitleProp_m56C31D22C70E0EC6E2E261033035B871B8B964A0 (void);
  372. extern void StoreServiceInterface_GetClassType_m2969A5DF58984F95FF6C616A0ADE15C79D412F1C (void);
  373. extern void StoreServiceInterface_GetNameProp_m1CFA6C61AFA7966244BAA572BEAFFE5B6A29CCCC (void);
  374. extern void StoreServiceInterface_GetName_mC41966B0C100102BC137679E7A3B25057D7909D8 (void);
  375. extern void UdpIapBridgeInterface_GetClassType_mC7A8F5D6A4317B6A791F52E046724086A8F1BAEF (void);
  376. extern void UdpIapBridgeInterface_GetInitMethod_mD6DE8995E5662C072A9FC589BF6D809D20E1EAD3 (void);
  377. extern void UdpIapBridgeInterface_GetPurchaseMethod_m9616655B55363E72B85FCDD726FBC1D049309055 (void);
  378. extern void UdpIapBridgeInterface_GetRetrieveProductsMethod_m6EDB2AFF6E367F47217E0BE4D2455F4FDB5BBA6C (void);
  379. extern void UdpIapBridgeInterface_GetFinishTransactionMethod_m40E3E8F5F41A5E88ED74401B7138D15611FD0B1F (void);
  380. extern void UserInfoInterface_GetClassType_m1516981C261FEE915B9C492542E5AA8A34B3240E (void);
  381. extern void AppleJsonProductDescriptionsDeserializer_DeserializeMetadata_m3BB9308C095DC20A6FB93D935AA927B6ADA8B3A9 (void);
  382. extern void AppleJsonProductDescriptionsDeserializer__ctor_m1F845020E3FFCD14A440A2A36BEF4CB11D68ACF4 (void);
  383. extern void AppleProductMetadata__ctor_mD8E3F61B922CCD601F17439714660DCC400A1146 (void);
  384. extern void AppleStoreImpl__ctor_mBD0FC70F117D699AE7E7F1A9AE371A89E09F20E0 (void);
  385. extern void AppleStoreImpl_SetNativeStore_mCAA38D79F89B739BD7E1F4FEA7A363D0F64AF0F0 (void);
  386. extern void AppleStoreImpl_get_appReceipt_mE698AC3E11676A40E6D562556940523347B0D3F0 (void);
  387. extern void AppleStoreImpl_get_appReceiptModificationDate_m3A9E1D89ADD3B8F416AC12F692E4B0AAE976FFCB (void);
  388. extern void AppleStoreImpl_OnProductsRetrieved_m9D235101ACE0033B59D230AC021B17BFA54480D2 (void);
  389. extern void AppleStoreImpl_HasInAppPurchaseReceipts_m4FB82D514565F80413D164C9E6FEC989A5063695 (void);
  390. extern void AppleStoreImpl_EnrichProductDescriptions_mE6813BD5D386C148DFA1DAFBE16DB305B9C2AFA5 (void);
  391. extern void AppleStoreImpl_FindMostRecentReceipt_m12E86A817828E8985BB6BB107EA65AAB15F32B3F (void);
  392. extern void AppleStoreImpl_FirstNonCancelledReceipt_m1EABDCB6CC88E2DA54F76260AEA582E52DB86588 (void);
  393. extern void AppleStoreImpl_OnPurchaseDeferred_m6CE392E89FC84BFAE015141AE7D933875F05948C (void);
  394. extern void AppleStoreImpl_OnPromotionalPurchaseAttempted_m018CC2E31C3E716DF380FBA0C42715420DD4C20B (void);
  395. extern void AppleStoreImpl_OnTransactionsRestoredSuccess_mCF4359ADC99EB4F78ED748EBDF2B94D78C2034F1 (void);
  396. extern void AppleStoreImpl_OnTransactionsRestoredFail_m3973CE52BCA38F157074CE96657F42276547CEBD (void);
  397. extern void AppleStoreImpl_OnAppReceiptRetrieved_m07A1C89BD8A58041B10710852AC0AFBB1391310F (void);
  398. extern void AppleStoreImpl_OnAppReceiptRefreshedFailed_mA3A2B42ACADD43CB7244C05880415BB476FBF37F (void);
  399. extern void AppleStoreImpl_OnEntitlementsRevoked_m7E93E0684D4CC581523F49843E41D49861FEF85D (void);
  400. extern void AppleStoreImpl_RevokeEntitlement_mA67D94B765B300731F3E8DF4ECC6127CCF6E9349 (void);
  401. extern void AppleStoreImpl_RestoreActiveEntitlement_m4888905FC32CE1254A1D2F2A30025D41B55210C3 (void);
  402. extern void AppleStoreImpl_OnFetchStorePromotionOrderSucceeded_m77087CC477DACA11276EAC56DE4642CA0204E94C (void);
  403. extern void AppleStoreImpl_OnFetchStorePromotionOrderFailed_m72F451614574601471846DD036E5F3DC87E40B25 (void);
  404. extern void AppleStoreImpl_OnFetchStorePromotionVisibilitySucceeded_mDE57FA25C43AE60A3CB9E1A57CE04319BE221E31 (void);
  405. extern void AppleStoreImpl_OnFetchStorePromotionVisibilityFailed_m21E497011356CBA519B6C5A706FE613843C02D5F (void);
  406. extern void AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C (void);
  407. extern void AppleStoreImpl_ProcessMessage_mC2157FC76D7DBC1E2FC7BBDB7BBCF2A446DF4E39 (void);
  408. extern void AppleStoreImpl_OnPurchaseSucceeded_mDF3F5F43794A92ED87BC1646383E2CF6EB7CB083 (void);
  409. extern void AppleStoreImpl_GetAppleReceiptFromBase64String_m51D3D664D39BBD5F43C4A94B775F862787861923 (void);
  410. extern void AppleStoreImpl_IsValidPurchaseState_mE2B8D7C431D213BE21C85965912FD361DEAFFFA0 (void);
  411. extern void AppleStoreImpl_IsRestored_m2DBB3F30FC6B9598EA221FD38934C68D80DF6AE2 (void);
  412. extern void AppleStoreImpl_IsSubscriptionRestored_m237B14594268FBB33683A4F955C8A21977BD28CB (void);
  413. extern void AppleStoreImpl_IsNonSubscriptionRestored_m427CCEABFB237DB04CF1162B6BB953E8F40D7F92 (void);
  414. extern void AppleStoreImpl_UpdateAppleProductFields_m0538B8029D6D13B5219133386F86D43AB93B22EA (void);
  415. extern void U3CU3Ec__cctor_m0BA679B3E781098A2AF437EE2FB5A1AEFB539309 (void);
  416. extern void U3CU3Ec__ctor_m774F236990A8E5BEDA0ABD30DFB68A51BD27ECC4 (void);
  417. extern void U3CU3Ec_U3CFindMostRecentReceiptU3Eb__39_1_m0EAF11F86324724479F8DE02108184315C7E402E (void);
  418. extern void U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_0_m3D710E919FC9C1C18A2A353A6AF6DC700DF5C6F5 (void);
  419. extern void U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_1_mEE957FEAECE8D83314CBD242345297AECB3E0BB3 (void);
  420. extern void U3CU3Ec__DisplayClass39_0__ctor_m50A62C51D8680553E30D6D74C3FFB74F236DC1E5 (void);
  421. extern void U3CU3Ec__DisplayClass39_0_U3CFindMostRecentReceiptU3Eb__0_m8E98A28648258BE4A3CB16BC41684CDDC447A989 (void);
  422. extern void U3CU3Ec__DisplayClass64_0__ctor_m3A3126A85E3F8159D79D151B4984A67101EAD4DF (void);
  423. extern void U3CU3Ec__DisplayClass64_0_U3CMessageCallbackU3Eb__0_m707C03C1BB2C18BFE669B84303F966E2E8C4D094 (void);
  424. extern void FakeAppleConfiguration__ctor_m63E4505C8C9B95858C7BBFB42EA2531479B73F50 (void);
  425. extern void FakeAppleExtensions__ctor_m0865C755818A9426107461EE61181EC16A327A95 (void);
  426. extern void MetricizedAppleStoreImpl__ctor_m4EC185ADFE1F5A3D36F1C371F67D3A3D25D04BB7 (void);
  427. extern void MetricizedAppleStoreImpl_RetrieveProducts_mDBAEC2A8871E09E9C10AF8C7EEAD0513F0E105AE (void);
  428. extern void MetricizedAppleStoreImpl_Purchase_mD2556C27AC625ADF5E7D1B4005EC1098C07AECFF (void);
  429. extern void MetricizedAppleStoreImpl_U3CU3En__6_mC8110AE2E5F10AD50CC0DF3BD1E55F6FBCF46DA7 (void);
  430. extern void MetricizedAppleStoreImpl_U3CU3En__7_m8D1390F64D308EE30EA8B398F3D67D99FECD94A8 (void);
  431. extern void U3CU3Ec__DisplayClass10_0__ctor_m5CC80C6E0A40ABEC6DD0A0CA7AE53B3A2ABE93B9 (void);
  432. extern void U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__0_m4BE5D94E20F2B17F3885422DE0B1096C2F759B4C (void);
  433. extern void U3CU3Ec__DisplayClass11_0__ctor_m5F43D94B9055AD615545604BF3A3BC460CE7223F (void);
  434. extern void U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m5EAF03211158EFC32B2ACD04B721FCECB3B39AA3 (void);
  435. extern void JSONStore__ctor_m4DD282A6EF45285AECA5A514FC93EEDF20726A73 (void);
  436. extern void JSONStore_SetNativeStore_mA57807DA54ADEB75FC4CFD90C238E6E0D20095EE (void);
  437. extern void JSONStore_UnityEngine_Purchasing_IStoreInternal_SetModule_m0DD1A798C36C7FC81194DD7088D82BD88F69F219 (void);
  438. extern void JSONStore_Initialize_m6F038EB353B23D8EE7323FF5F7D7C67D150B47B0 (void);
  439. extern void JSONStore_RetrieveProducts_m3A4C2A6A378D100A71E674DE95281779D55692CE (void);
  440. extern void JSONStore_Purchase_m8E6F174FC145C4AE226B6A2981B5152A4D04419E (void);
  441. extern void JSONStore_FinishTransaction_m18575AA2005FB1428C7EFCCEE479FC1296CDF9E3 (void);
  442. extern void JSONStore_OnSetupFailed_mA82E1D0BF98A86C54303784CBD84FFE724564CCA (void);
  443. extern void JSONStore_OnProductsRetrieved_mBDAD438AF037964721F33C0744A5A643E137A1F8 (void);
  444. extern void JSONStore_OnPurchaseSucceeded_m09A0AB98491589C368AA8C977FE51CCC6DD98D13 (void);
  445. extern void JSONStore_OnPurchaseFailed_mB029FDC26201096ED60C8F5EF06072581F07DF6D (void);
  446. extern void JSONStore_OnPurchaseFailed_m5179D59E1A1843867CA5755BEA517D67B08EB698 (void);
  447. extern void JSONStore_ParseStoreSpecificPurchaseErrorCode_m96B6CFD940F442FE03EFB7C504F87DAFDEE1DF4E (void);
  448. extern void MetricizedJsonStore__ctor_m2ADEC3C30AF634B4C5772692B5AAD279FD6F63BC (void);
  449. extern void MetricizedJsonStore_RetrieveProducts_mA95C1B26222726C50A82B9A3E989C7BF73BFEB99 (void);
  450. extern void MetricizedJsonStore_Purchase_m462F91A5D586E569EAD21DB49E874F59DFE76D01 (void);
  451. extern void MetricizedJsonStore_U3CU3En__0_m5EB59AD3CD8FF59D4C2802141AF73171E8B2BA58 (void);
  452. extern void MetricizedJsonStore_U3CU3En__1_mF5C2E20C0BEECCCB6167596CA562B21E660225C2 (void);
  453. extern void U3CU3Ec__DisplayClass2_0__ctor_mB7D17271A19DD8FCA4C84F0284C08F86C710ABAC (void);
  454. extern void U3CU3Ec__DisplayClass2_0_U3CRetrieveProductsU3Eb__0_m4FC8F6782C5D5836A28CE31DAEEF5669FD656978 (void);
  455. extern void U3CU3Ec__DisplayClass3_0__ctor_m2FC9B21CB2383A765C3BC78DBB5A277C20B11037 (void);
  456. extern void U3CU3Ec__DisplayClass3_0_U3CPurchaseU3Eb__0_mB695025A890C2770D2064621F70C70A317D6728B (void);
  457. extern void NativeStoreProvider_GetAndroidStore_m037D7302B0F9C3259D0279BB287E98226C87A9F6 (void);
  458. extern void NativeStoreProvider_GetAndroidStoreHelper_mD5E36DD90BBEC32214E179C8750525C32BBDABF9 (void);
  459. extern void NativeStoreProvider_GetStorekit_m646172E0CBD784F0C22D8692EA371897259C611B (void);
  460. extern void NativeStoreProvider__ctor_m07B2B33D02263814FE48940ADF0A03982B5865DE (void);
  461. extern void DialogRequest__ctor_mC3E10040E1B78AB04AA6D60282493E0E6945BE3A (void);
  462. extern void FakeStore_get_unavailableProductId_m2BC9F52E88C1A7FE386B45F1EB97022FA23D2591 (void);
  463. extern void FakeStore_Initialize_m6E65BC30AF8771CBAEF2CA1C3B96E37C1FE0628E (void);
  464. extern void FakeStore_RetrieveProducts_m303849A4FCAEE4E4E5069E3DF509FB7A93096C17 (void);
  465. extern void FakeStore_StoreRetrieveProducts_mC88F1F4CDF525D65CAC62B0F647CD96160FE7400 (void);
  466. extern void FakeStore_Purchase_m48FB0953249E8DDD1B7ABDB3A42E30F143EC50B3 (void);
  467. extern void FakeStore_FakePurchase_m4B4EA44A636EA24B26B3308FA680E8BA131063F4 (void);
  468. extern void FakeStore_FinishTransaction_mB9B6A7DFC8B82401097DB06E3C811B59E95CF074 (void);
  469. extern void FakeStore_FinishTransaction_m1B0BB74DB65197CCCBC668B8E0B1385837B49486 (void);
  470. extern void FakeStore__ctor_m529FB72CF8BE9F6C28833C8BD8B4C6D5C2948A71 (void);
  471. extern void FakeStore_U3CU3En__0_m8C016780A5CA15C80D4C80FD4E1163BCA7C2DD47 (void);
  472. extern void U3CU3Ec__DisplayClass13_0__ctor_m3A44246DEDB7046A5C81ECA50E9873C799BC5372 (void);
  473. extern void U3CU3Ec__DisplayClass13_0_U3CStoreRetrieveProductsU3Eg__handleAllowInitializeOrRetrieveProductsU7C0_m0C75119A8FFD643058F5831A798B17FD8AB12F03 (void);
  474. extern void U3CU3Ec__DisplayClass15_0__ctor_m986BB38436CE07B57B74D5A928F3D5B1E23E9FA0 (void);
  475. extern void U3CU3Ec__DisplayClass15_0_U3CFakePurchaseU3Eg__handleAllowPurchaseU7C0_mAA346ACDF0ACBA0832423F884022D53020F48D9E (void);
  476. extern void LifecycleNotifier_OnDestroy_m246944B7AEB9D6DE47CB3AF275EE9614B549B0CB (void);
  477. extern void LifecycleNotifier__ctor_m9A95DEEA574F6E2E00912E48621EA6B5A3E6F883 (void);
  478. extern void UIFakeStore__ctor_m64E1D7567F361F1C989B8C4AB16797C59F318A91 (void);
  479. extern void UIFakeStore_StartUI_mAB071EA2DA1BBFE742A2E703B990B9F1F1451236 (void);
  480. extern void UIFakeStore_InstantiateDialog_mD026EE9DD7C69F6C2249396F88E07B176C38AE43 (void);
  481. extern void UIFakeStore_GetOrCreateFakeStoreWindow_m50463EF1F86C75C233FEC5FD8489D0307561E58F (void);
  482. extern void UIFakeStore_AddLifeCycleNotifierAndSetDestroyCallback_mDE17957F5B9147E4CBFEFAF588B87C2A7630396D (void);
  483. extern void UIFakeStore_EnsureEventSystemCreated_mE117DF9CE72DF03351C73E80A6198C6B45F63F7B (void);
  484. extern void UIFakeStore_ConfigureDialogWindow_mED9380970BA858FBAB0CD91F8EDF705F1C0CE81D (void);
  485. extern void UIFakeStore_ConfigureDialogWindowCallbacks_mAC7C799D2855D4FFD5348FBAB1B310BE81EBEBDD (void);
  486. extern void UIFakeStore_CreateEventSystem_m8338D2EE206C65F141FC341A0276BB7B5B246FC7 (void);
  487. extern void UIFakeStore_CreatePurchaseQuestion_mC3B18AD45DE1E6C48EE133B328E03CD36F3A2796 (void);
  488. extern void UIFakeStore_CreateRetrieveProductsQuestion_mA8F54CD710F267A62CA5F7F8A03AE124919B1D3F (void);
  489. extern void UIFakeStore_OkayButtonClicked_m26F1DD23773A273FF8FFFF3CB608C320C5B64DAD (void);
  490. extern void UIFakeStore_CancelButtonClicked_m52437E1F81879351852E31764FA5F23FA1603128 (void);
  491. extern void UIFakeStore_DropdownValueChanged_mF83E1BFE1626BE9022798927E752484177080547 (void);
  492. extern void UIFakeStore_CloseDialog_mE8B51134B192C2621038E48FF09021722AB364F6 (void);
  493. extern void UIFakeStore_IsShowingDialog_mBAC6E95889588F5375EC69840FE8B5E453ECDB36 (void);
  494. extern void UIFakeStore_U3CAddLifeCycleNotifierAndSetDestroyCallbackU3Eb__14_0_m107AE87F0E9C1A0ED41726E9437A7A661F59BB8C (void);
  495. extern void U3CU3Ec__cctor_m8EF9FDCCD5BBBB1967B8D454430BCE9FF77B3B2C (void);
  496. extern void U3CU3Ec__ctor_m56FEB4156B7305825949898B363E9D59A69CB8F4 (void);
  497. extern void U3CU3Ec_U3CCreateRetrieveProductsQuestionU3Eb__20_0_mA8807138FF30C33760DA743C4000952ED76A1083 (void);
  498. extern void UIFakeStoreDropdown_DoPopup_mAF6A20CB635535553421DB5EEC2AF44FC117B30D (void);
  499. extern void UIFakeStoreDropdown_OnOptionSelected_m895D124CFA1CB9C95289167A3E5FE6ECD54C0144 (void);
  500. extern void UIFakeStoreDropdown_SetOptions_m22E267F240163FF762D8A2217F10380D0F5446A3 (void);
  501. extern void UIFakeStoreDropdown_SetSelectionAction_mF781B80685CEF7F7E43A2349CADE6B621C95F8E9 (void);
  502. extern void UIFakeStoreDropdown__ctor_mDEBD1428CA136C9AB9C4458CFC4958C72F3F2BB2 (void);
  503. extern void UIFakeStoreWindow_OnGUI_mD394ECF8E08AEAEC2A5BE6EDEA91D06104E2B6C2 (void);
  504. extern void UIFakeStoreWindow_CreateCenteredWindowRect_m6FB016D6FB7383922ACD9B33A35CCAE56846421B (void);
  505. extern void UIFakeStoreWindow_DoMainGUI_m81A28A95C62E330EC8E8F529153669A57E105FD6 (void);
  506. extern void UIFakeStoreWindow_DoDropDown_m68F2D70DC61584586685E077EC6682C59436F0AE (void);
  507. extern void UIFakeStoreWindow_OnOkClicked_m041427DA6DF343598DF6BAFAF51743F184B4845E (void);
  508. extern void UIFakeStoreWindow_OnCancelClicked_m75F9C08F8DE6EC8409913B90429CA8E134790979 (void);
  509. extern void UIFakeStoreWindow_ConfigureMainDialogText_mD9780645036660994548B1A7B7B54D486502CF18 (void);
  510. extern void UIFakeStoreWindow_ConfigureDropdownOptions_m61A1D64ADA6FDC639FDAFC5E7DF479497ECAFC0A (void);
  511. extern void UIFakeStoreWindow_OnDropdown_m6F51312DC9880528B18A69C39B3EA184B8DDA82A (void);
  512. extern void UIFakeStoreWindow_AssignCallbacks_mFA62C84BEAD1340B9EC4C9AB487595F2237572BC (void);
  513. extern void UIFakeStoreWindow__ctor_m3680D3337EE6228226AFD797A42215306F286D24 (void);
  514. extern void Price_OnBeforeSerialize_mB8D86198F98F2C071F52B3B344F00E6D4E4133FC (void);
  515. extern void Price_OnAfterDeserialize_m4C666E7F3D6C7CD86F74126DC8705A87D7377484 (void);
  516. extern void Price__ctor_m9D2D67B01A6B2596B79CFCD0C90561521FAC7FAF (void);
  517. extern void LocalizedProductDescription_get_Title_m3A50BEABD22AD26AF7CF8DACF44D1ED8C0A5638B (void);
  518. extern void LocalizedProductDescription_get_Description_m79D3AC1D1434F0C52D8A5E7DF2A8A5A34EE40C76 (void);
  519. extern void LocalizedProductDescription_DecodeNonLatinCharacters_m21582AF3504395BE6B466A8C6F0A2D0E17C1A7F1 (void);
  520. extern void LocalizedProductDescription__ctor_m17B962DDB3245C5AB3ECF2C8F4EEDF36192DC248 (void);
  521. extern void U3CU3Ec__cctor_m0AEB720B7AEFA93C8515D942EAB6D6A2EB8D525A (void);
  522. extern void U3CU3Ec__ctor_mA07F2D3B66E2247A501FFB2809F694E3C93D12B7 (void);
  523. extern void U3CU3Ec_U3CDecodeNonLatinCharactersU3Eb__11_0_m49D06E09041CAA0F4BF8AFE59E7CA8BF5C22990A (void);
  524. extern void ProductCatalogPayout__ctor_m88A3A65A1D40D0A24C0F52FE1F102FE442242C4A (void);
  525. extern void ProductCatalogItem__ctor_mF35A56CDC252B7A9FDCC17A8545CA1B327F764FB (void);
  526. extern void ProductCatalog_get_allProducts_m93A191445C8495D516A695D8708996C8790EF1C7 (void);
  527. extern void ProductCatalog_Initialize_mCDB5FD052E314BC8330EEB0A3ECE7449578ED154 (void);
  528. extern void ProductCatalog_Initialize_m4B563581D4C235DD2CA953C3897E025EA71504B4 (void);
  529. extern void ProductCatalog_Deserialize_m93C22260C98E26EF73F5AC00168BBFE1DC073855 (void);
  530. extern void ProductCatalog_FromTextAsset_m570290FA1756DCE9F4A59168A84941AE1AC38FF6 (void);
  531. extern void ProductCatalog_LoadDefaultCatalog_m56712F565AD719D1C8ECF7537CC0E5F8F533C89D (void);
  532. extern void ProductCatalog__ctor_m174D3B7D0C5E9CE1F7C008361FD014516FB0285D (void);
  533. extern void ProductCatalogImpl_LoadDefaultCatalog_m60AE28DEAACE2BEC92C132DA2E3BD1EAE8D16F9A (void);
  534. extern void ProductCatalogImpl__ctor_mDF5D74610CE45F8F90A052D097F80E180B18B1F6 (void);
  535. extern void StandardPurchasingModule_get_util_m8C944C45C8AC751BCC2DB1CE4E8944967FFAE531 (void);
  536. extern void StandardPurchasingModule_set_util_mA38054A46DC22BEC0B431866FCA579E1954A102A (void);
  537. extern void StandardPurchasingModule_get_logger_mD23C1CB19DCF0A64F078A38AEF31D849E10DCFBF (void);
  538. extern void StandardPurchasingModule_set_logger_mF4E6AF66082ABE09AB49EFBEA8255DE33C90ADE0 (void);
  539. extern void StandardPurchasingModule_get_storeInstance_m4DB229ECA4FF6B1D461558C6A88E094A278DB345 (void);
  540. extern void StandardPurchasingModule_set_storeInstance_mC35664D970638EEE0A8EC2404628D5B156E45690 (void);
  541. extern void StandardPurchasingModule_get_telemetryMetricsInstanceWrapper_mF393B4FAA53F486752C053600DC1218679486040 (void);
  542. extern void StandardPurchasingModule_set_telemetryMetricsInstanceWrapper_mAA596C806087E2F27BD0D49136A3B431EB3AA887 (void);
  543. extern void StandardPurchasingModule_get_telemetryDiagnosticsInstanceWrapper_mC8A3736751296DAF9BD4CC9910D1A60EEAD80AC0 (void);
  544. extern void StandardPurchasingModule_set_telemetryDiagnosticsInstanceWrapper_m97A16E0C47FF1CBDB6BB7661AB681BBF6E62B73E (void);
  545. extern void StandardPurchasingModule__ctor_mE2C1F89FB37CE268AC4F203252F97BC67B320C72 (void);
  546. extern void StandardPurchasingModule_get_appStore_m19E96FCA4517781E9166DAA7E3413D7B0D61EE74 (void);
  547. extern void StandardPurchasingModule_set_appStore_m8D0ED9CCFF69A230E54A2F29ACB91EE5DDB84271 (void);
  548. extern void StandardPurchasingModule_get_useFakeStoreUIMode_m6850C310CFF6F89EA69938EA4052002AACC78CEE (void);
  549. extern void StandardPurchasingModule_set_useFakeStoreUIMode_m2221C886EC8FF153B0C2210AF2EF6DED271B826D (void);
  550. extern void StandardPurchasingModule_get_useFakeStoreAlways_mC02952E02CD1C51EAE0E5FCCF807285AF1833974 (void);
  551. extern void StandardPurchasingModule_set_useFakeStoreAlways_mC217142239C37AA088BC50E0BD995F51A0583C23 (void);
  552. extern void StandardPurchasingModule_Instance_mBD397180F4D74807B93E47E71D7320463B1C3A1A (void);
  553. extern void StandardPurchasingModule_Instance_m3744500352443C6EAED3EC8285FED73A4D166ADE (void);
  554. extern void StandardPurchasingModule_Configure_m0C021F0574CB43D28767A83DB6FA0CBCEBC6CC56 (void);
  555. extern void StandardPurchasingModule_InstantiateStore_mFA7F7D395459813876216A55BF1935F93DAAAF9C (void);
  556. extern void StandardPurchasingModule_InstantiateAndroid_m5B285A77AB87D7EEAFF4EFCE781899BC19EC640D (void);
  557. extern void StandardPurchasingModule_InstantiateGoogleStore_m9F54FB1372083BB0A1A28590DB8C26431B58BC51 (void);
  558. extern void StandardPurchasingModule_BindGoogleExtension_mA9738A7408E00968C65ECE13DF4E1BE81028A1F4 (void);
  559. extern void StandardPurchasingModule_BuildGooglePlayStoreConfiguration_m503BDBDB6D9CCC4FB994671A4D53274D57869299 (void);
  560. extern void StandardPurchasingModule_BindGoogleConfiguration_mF804390F086950256584BEF438558E811A399028 (void);
  561. extern void StandardPurchasingModule_BuildAndInitGooglePlayStoreServiceAar_mF1CAEB638956A5A42ECB90161E807AF08CE7F2BF (void);
  562. extern void StandardPurchasingModule_InstantiateUDP_mA6AB14925A7E1C280EC90CDEF0784B81EEAF310A (void);
  563. extern void StandardPurchasingModule_InstantiateAndroidHelper_m0E19818F7CAE1C080316211C8630615116C9AEE6 (void);
  564. extern void StandardPurchasingModule_GetAndroidNativeStore_mD9A06FF2B55E51E17017B265A78DEE0996936956 (void);
  565. extern void StandardPurchasingModule_InstantiateApple_m1C37E2A2103096CB3E2BD67FB7061A5F417FCDF9 (void);
  566. extern void StandardPurchasingModule_instantiateWindowsStore_mCCC8645E458D205255D1B8EB7F9CFED6C00B37F0 (void);
  567. extern void StandardPurchasingModule_InstantiateFakeStore_m75B6DD6C4C9DA71E572438ABA1270E57A58C6DEE (void);
  568. extern void StandardPurchasingModule__cctor_m23284F1558C286CB2E6EC0EB49E00442F37537E5 (void);
  569. extern void StoreInstance_get_storeName_mCABF6348271D6010C0B37F3FCDFD4588B3B4E5F5 (void);
  570. extern void StoreInstance_get_instance_m4F4739A78FFBF202811C0E886F3D8733F660F3DB (void);
  571. extern void StoreInstance__ctor_mEB51377D6F9CB9F344D2717ED0EAA999E888D5D3 (void);
  572. extern void MicrosoftConfiguration__ctor_mD9DFFF7108C127CF3E542D2EAAC9E49E036BB365 (void);
  573. extern void StoreConfiguration_get_androidStore_m375B89A150E3F92E8C9F36F75188637F1FF8A74E (void);
  574. extern void StoreConfiguration_set_androidStore_mC489914742751F34F6602DA872EB2B3BB3939F17 (void);
  575. extern void StoreConfiguration__ctor_mADD6F4BFB5F946DF21CD51CBAAEEBE9C6DFC57EA (void);
  576. extern void StoreConfiguration_Deserialize_m326EDC43F29A0F2B546B9D6B212A8A124BD336A1 (void);
  577. extern void TimeSpanUnits__ctor_m69AF2FA3540250AD07DE4C3CD8E97F64EA8B6EF1 (void);
  578. extern void SubscriptionManager__ctor_m0ECAAC1D1E250FF4913D790B1F9341EEA14C1826 (void);
  579. extern void SubscriptionManager_getSubscriptionInfo_mDA75086D3BBB5F42857356C9B05B3D3C1282B66E (void);
  580. extern void SubscriptionManager_getAmazonAppStoreSubInfo_mC2FBA869F8527BB7F45955A219080EB533445F96 (void);
  581. extern void SubscriptionManager_getAppleAppStoreSubInfo_mE2E2FA57D9CA97BA5BDCFC9AB0B47C84CD73A908 (void);
  582. extern void SubscriptionManager_findMostRecentReceipt_m0FD65E6D239431E638811715970081B4999F2A3D (void);
  583. extern void SubscriptionManager_getGooglePlayStoreSubInfo_m33014BAC48470E67FD8C7DD5A73840AFB836B186 (void);
  584. extern void U3CU3Ec__cctor_m9734FC8CA5E2B48A77EFFE2156421123B8635EB0 (void);
  585. extern void U3CU3Ec__ctor_m199CB830F8629981ADA4F0C991B4F508A2E86750 (void);
  586. extern void U3CU3Ec_U3CfindMostRecentReceiptU3Eb__11_0_m6F59F1652B537921E2705E8DC1D55603C8D4C3E0 (void);
  587. extern void U3CU3Ec_U3CgetGooglePlayStoreSubInfoU3Eb__12_0_m4F386D12BEC0A7E102D3CFE3743E47A4BC8EAE27 (void);
  588. extern void SubscriptionInfo__ctor_mCE7F9D5333417F7A11001D0231307E68BB191E3A (void);
  589. extern void SubscriptionInfo__ctor_mAD14FD7347A1867CD6A67162726A88AD696B9D94 (void);
  590. extern void SubscriptionInfo__ctor_mF959D7594682F5F1B8C3D725BC19352E4A4C289A (void);
  591. extern void SubscriptionInfo_isSubscribed_m9EAA4FD5FA07828BDD765F8243F49B8B2CFC0C62 (void);
  592. extern void SubscriptionInfo_isExpired_m289877A70874E038E09275C90697D3EAA23C4535 (void);
  593. extern void SubscriptionInfo_isCancelled_m561EFAC63331FB328D5F15695B246337FEFF07D8 (void);
  594. extern void SubscriptionInfo_getExpireDate_m2F7EF006E79571EFECD46A91F83181A3F1CA147C (void);
  595. extern void SubscriptionInfo_nextBillingDate_m0FB32D84F4B95E127E6B0C537098AF179831E7BA (void);
  596. extern void SubscriptionInfo_accumulateIntroductoryDuration_m503F206556C2124CF3641CC0952B16718A52B468 (void);
  597. extern void SubscriptionInfo_computePeriodTimeSpan_m999CB3C5CFF7DBB5579A5C196BBFDDC9D034B6ED (void);
  598. extern void SubscriptionInfo_computeExtraTime_m45672397041F6C14857C72C446EB0716CAF0DF08 (void);
  599. extern void SubscriptionInfo_parseTimeSpan_m3222C7A089EC328707F30D57576DAF0E0174AA87 (void);
  600. extern void SubscriptionInfo_parsePeriodTimeSpanUnits_m35F883FE27081A3998B5A723683EC875A365085B (void);
  601. extern void ReceiptParserException__ctor_m602A8964067A5FAF6A0E1D5C59EF5784CD1A2D01 (void);
  602. extern void ReceiptParserException__ctor_mD3C699CB23161C65A8882A879D36066E37E294DF (void);
  603. extern void InvalidProductTypeException__ctor_m79E0FD982F7188E0D74E438205909876F0A5B486 (void);
  604. extern void NullProductIdException__ctor_mEA2182523EBF3FD28F6AAEA328255EC125C5ADED (void);
  605. extern void NullReceiptException__ctor_mBDE195811C11A65AD4BC519D3DF51762A3F7EC41 (void);
  606. extern void StoreSubscriptionInfoNotSupportedException__ctor_m4DBA3E5AB3A76393010CE741CBD009062819D62D (void);
  607. extern void FakeTransactionHistoryExtensions__ctor_mD34E51963B91B68D7129023F958802CFE4962D97 (void);
  608. extern void ExponentialRetryPolicy__ctor_mAC23DF035809BB5B3A13905A479E556F80E10D0D (void);
  609. extern void ExponentialRetryPolicy_Invoke_m897F5C1AE28B88A28112BD36DA204ACBED2515F6 (void);
  610. extern void ExponentialRetryPolicy_AdjustDelay_m5B9A18AE35D79859E9E8364F29557A1A076325BF (void);
  611. extern void U3CU3Ec__DisplayClass4_0__ctor_m4E921B377C6E8A0A6DEDC027FA0EF79EC07C49F1 (void);
  612. extern void U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__RetryU7C0_mFB4D1A3042FBBC528DE0DA514AB8D71E7971FB29 (void);
  613. extern void U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C1_m3F1198382F690803E1CD999797BFA199A3737CBC (void);
  614. extern void U3CU3CInvokeU3Eg__RetryU7C0U3Ed__ctor_mE59EB90B01BF918DABBA240A8EF633FDA2171DF5 (void);
  615. extern void U3CU3CInvokeU3Eg__RetryU7C0U3Ed_MoveNext_m66CDE84F2811E1552B9492E6A10BFB1A9030819B (void);
  616. extern void U3CU3CInvokeU3Eg__RetryU7C0U3Ed_SetStateMachine_mEA9B7E8890D9CD5A5CFC37034FF766F1A3AFF024 (void);
  617. extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed__ctor_m6E9FAD9BFB1C70140EA8B3B0E02741D572721B6C (void);
  618. extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_MoveNext_m92AAD93E2C4B46099F44EA233BE9E7B5DD97006A (void);
  619. extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_SetStateMachine_mAB950EC38EC7F7AD48DC7AEC0F9E4DE1830BFBAD (void);
  620. extern void GoogleConnectionRetryPolicy__ctor_m76204F7739D8093618588949A8A34E5D28EF61DC (void);
  621. extern void GoogleConnectionRetryPolicy_Invoke_m0128FBE97E777BD55195DCB74316FC5344752BCE (void);
  622. extern void GoogleConnectionRetryPolicy_AdjustDelay_m057F0DCA4CDF3153EAD3078E2C58DF47C1FE41F2 (void);
  623. extern void U3CU3Ec__DisplayClass4_0__ctor_mBC098BE7B48A9D407A8146CDA753B2238DAA8CF0 (void);
  624. extern void U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C0_m55D84DFAE6C4400161B3A2C725B0C1CF8EDC4CD2 (void);
  625. extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed__ctor_m139B7829A2AD72F87B71CD1A33B2527B71CF31B8 (void);
  626. extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_MoveNext_mEE765EE7B466758AA988889CD1161EFC3FF440B5 (void);
  627. extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_SetStateMachine_m573388BE4BB7D0DA0302B3B18F323CD9DC82B85C (void);
  628. extern void ProductDefinitionExtensions_DecodeJSON_m7416F243BB95C9C63B91D12D74A3F3A00A4656E6 (void);
  629. extern void FakeMicrosoftExtensions__ctor_m4F9FFC593BF05E4A5FDDEB1ED71D2583B5D66886 (void);
  630. extern void WinRTStore__ctor_mE5C6E24757C62599881D70F2AA1D8A82480FE311 (void);
  631. extern void WinRTStore_Initialize_mDEF3CF5B9F0CAA017C44C1878E5D4CB08AC5EF0B (void);
  632. extern void WinRTStore_RetrieveProducts_m5480E3D22E25D41EDC18B4806BA4154BD2CE7B07 (void);
  633. extern void WinRTStore_FinishTransaction_mC624FB22E6E7C13F50D0E611FCD6EC5B69CE908F (void);
  634. extern void WinRTStore_init_mA94BEFABDB0D1DE85C4F457B468DF2C246EB0FA6 (void);
  635. extern void WinRTStore_Purchase_m467F9F8FD3A79225F610A48004C1A4C4186ADCF7 (void);
  636. extern void WinRTStore_restoreTransactions_m93D2A3C481CA38BAE9DB9099955FE6AB10EB10F4 (void);
  637. extern void U3CU3Ec__cctor_m29C0E94B6690D38BEE3FD1C980E88C9ED8B96E41 (void);
  638. extern void U3CU3Ec__ctor_m38F009CF5EAC3E6F1FB96B45D44C650BAE93619E (void);
  639. extern void U3CU3Ec_U3CRetrieveProductsU3Eb__8_0_mED3B5305EC5CF5F0CA5F97E22DDD29DB1DCD65E2 (void);
  640. extern void U3CU3Ec_U3CRetrieveProductsU3Eb__8_1_m376EA2F5E999011A34EE5C34493E597EACB31340 (void);
  641. extern void UnityUtil_get_currentTime_mE40001425F55E1A90761D51411B81DE0FB9DF1B5 (void);
  642. extern void UnityUtil_get_persistentDataPath_m2AAF48A31B21C5A5ADC134ECB14E58D2D6CB5D46 (void);
  643. extern void UnityUtil_get_deviceUniqueIdentifier_m1AC62056A917557653A37C47461FB4996C2F0337 (void);
  644. extern void UnityUtil_get_unityVersion_mE2949234D9C1C02226C7CC83374FC11075EFB241 (void);
  645. extern void UnityUtil_get_cloudProjectId_m3A658EA17D15C5F63C93B90A3FCC284DB3B8F86F (void);
  646. extern void UnityUtil_get_userId_m0D8EA6251AC88FE0FECA87BEB72AFD2D6FB6644C (void);
  647. extern void UnityUtil_get_gameVersion_m850F0EAB8708FC24BF42A80509CE69DF76405048 (void);
  648. extern void UnityUtil_get_sessionId_m0621F738E17339143ACF624F474680C19C13D0D8 (void);
  649. extern void UnityUtil_get_platform_mF687BB437A671685484C604A86E99863F419302D (void);
  650. extern void UnityUtil_get_isEditor_mDD2E04E6B1CA00D5F06563910E72688974EF418A (void);
  651. extern void UnityUtil_get_deviceModel_m594551957553EBEEB2704901C5FB8EB86F661AD7 (void);
  652. extern void UnityUtil_get_deviceName_m4026083CFFD874134D2918202EA370E1E4B0864E (void);
  653. extern void UnityUtil_get_deviceType_mA5AA09B2292D7A3572DAC584AE95924F9EB2E58E (void);
  654. extern void UnityUtil_get_operatingSystem_mD92A36329BE72E6766CA9E5A2873F48CDE1DA838 (void);
  655. extern void UnityUtil_get_screenWidth_m8A3081DB40110DD42D952ED8DD378DC16571DF71 (void);
  656. extern void UnityUtil_get_screenHeight_m35BCB594BA71E47F19F3A5A08C7BD651E54238DF (void);
  657. extern void UnityUtil_get_screenDpi_mD80E2591FA819A2CACB39F1B2E611AE435A0FDF7 (void);
  658. extern void UnityUtil_get_screenOrientation_mE5D6B673B93171EE6FE392AC040F0E7972E6E5A5 (void);
  659. extern void UnityUtil_Uniject_IUtil_InitiateCoroutine_m8E0514A01EE0D435BA288DA4280089711785F681 (void);
  660. extern void UnityUtil_Uniject_IUtil_InitiateCoroutine_m45F4BEA16B5ACF15D1293E48181C68DFBAFCD803 (void);
  661. extern void UnityUtil_RunOnMainThread_mABF8141C1DCFB4CA8DF24451B65F5435294B27B5 (void);
  662. extern void UnityUtil_GetWaitForSeconds_mB62D3D0EEC46AEB7849CF34DC0AC97962EE0C231 (void);
  663. extern void UnityUtil_Start_m9A05D9A4FADF3C331170E85EFC8F27B922186248 (void);
  664. extern void UnityUtil_PcPlatform_m6C26A9452CDF2A3DED239242E5618999880407C7 (void);
  665. extern void UnityUtil_DelayedCoroutine_m2157CDC5CC835BDE12352016CB82A25C6634B632 (void);
  666. extern void UnityUtil_Update_m5CFB1587D42E5A854FBB56F5985DDAFB30A3D3F4 (void);
  667. extern void UnityUtil_AddPauseListener_mCA2B86FDD744EA10AEFA4A67DEBBFF36CEC45BAF (void);
  668. extern void UnityUtil_OnApplicationPause_m3325D8693C79C8F4D9CE2C9DA39443D55D07D3F7 (void);
  669. extern void UnityUtil_IsClassOrSubclass_mAF60230AC46A684686AD3A7770CB08D3536E973A (void);
  670. extern void UnityUtil__ctor_mEB92A76AB1B9C942211165A08FCA4E9533E06288 (void);
  671. extern void UnityUtil__cctor_mD87D721A40C447597EA6A2E5750381AAC8E8990E (void);
  672. extern void U3CDelayedCoroutineU3Ed__48__ctor_mDE418D0BD65328F25766EB4DA1477DCCE841D88E (void);
  673. extern void U3CDelayedCoroutineU3Ed__48_System_IDisposable_Dispose_m855222B8EDE19C80A1025598E59BC99B6C058540 (void);
  674. extern void U3CDelayedCoroutineU3Ed__48_MoveNext_mB3801F6D60691ED8F0921767A84068E8C3B323F3 (void);
  675. extern void U3CDelayedCoroutineU3Ed__48_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m3B259068ECF9C87736D21DEBDC7465E8B2A90D37 (void);
  676. extern void U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_Reset_mA7A39D9903DC70DA5DB697EFF9D6D207EF4C5BF4 (void);
  677. extern void U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_get_Current_m2A61E2B47B3F5CB1508DEBE50D585441AD6EF7A4 (void);
  678. extern void IapCoreInitializeCallback_Register_m15649B35E0B38B36617AF6B510BBB8CC37BD4B3E (void);
  679. extern void IapCoreInitializeCallback_Initialize_mFA2269B6DE0CD38655A57455457747CFF5EC8D9A (void);
  680. extern void IapCoreInitializeCallback_CacheInitializedEnvironment_m120A82DCA5B60A92819D8CA908E63BE219703417 (void);
  681. extern void IapCoreInitializeCallback_GetCurrentEnvironment_m067A99A22E9AFA796E3A033A347F746BC3177A64 (void);
  682. extern void IapCoreInitializeCallback_InitializeTelemetryComponents_m0FF7204282A99A54A50CC4C691BCDF373ECBF39D (void);
  683. extern void IapCoreInitializeCallback__ctor_m6E44A3E7FFD242CBE0873F9E2C9DA1CB1240CAD5 (void);
  684. extern void U3CU3Ec__DisplayClass2_0__ctor_mD26B7CD05EAC67AEBA106C9BEA1F86810C737123 (void);
  685. extern void U3CU3Ec__DisplayClass2_0_U3CInitializeU3Eb__0_m8EC8D03E9F215419C12C002864E69EEDCF4913E6 (void);
  686. extern void GooglePurchaseBuilder__ctor_m6C1B7226BD1D12FD00A794B018D35E8BD543577D (void);
  687. extern void GooglePurchaseBuilder_BuildPurchases_mCBFBC50607A0B39F0A76BDF565745FABE1D69D0C (void);
  688. extern void GooglePurchaseBuilder_LogWarningForException_mBB4B675CA121EE06A50A6CA1A656E861ED13D5F8 (void);
  689. extern void GooglePurchaseBuilder_BuildPurchase_m77518408286891FC35D2969E1930542E67EAC9A2 (void);
  690. extern void GooglePurchaseBuilder_TryFindAllSkuDetails_m97BACAB34C63D99265895B07F1EAA156A1372066 (void);
  691. extern void U3CU3Ec__DisplayClass6_0__ctor_m81FD27417D227650D3FC61A353728EC311F5AF85 (void);
  692. extern void U3CU3Ec__DisplayClass6_0_U3CTryFindAllSkuDetailsU3Eb__0_m06177FDD20AF3974C5512277CCE8AC3D764DF009 (void);
  693. extern void U3CU3Ec__DisplayClass6_1__ctor_m56696465C1EDEE255F035976B53D68B54593DD18 (void);
  694. extern void U3CU3Ec__DisplayClass6_1_U3CTryFindAllSkuDetailsU3Eb__1_m8B9DF3FDBAF6F898611AB9CCD99B8C7921720C70 (void);
  695. extern void GoogleReceiptEncoder_EncodeReceipt_m17FC37EB777C0CD19B0A1345C320C17F030911D8 (void);
  696. extern void SkuDetailsConverter_ConvertOnQuerySkuDetailsResponse_m5F7D519F81EB07B3B3CDA466DE32AE8D128EEEF8 (void);
  697. extern void SkuDetailsConverter_ToProductDescription_mFEF5C82FAF0E5B727EAAB8E7A8F2C37AF25B6C0A (void);
  698. extern void SkuDetailsConverter_BuildProductDescription_m17409FADBDD74BB66CC527C53CF84AB0D1C34218 (void);
  699. extern void SkuDetailsConverter__ctor_mC285D9E06AD5329C3FE35C3680F97402B974599D (void);
  700. extern void AndroidJavaObjectExtensions_Enumerate_m8F0C46B6B35D61007DDD67D39C5ECD8A955ADA92 (void);
  701. extern void GoogleBillingClient_GetSkuDetailsParamClass_m23B9C69DDF3CE5E6473D8D651D3DDA07151C2185 (void);
  702. extern void GoogleBillingClient_GetBillingFlowParamClass_m58D8DA6228AFAD52D99ECA73F12DCA7F43FD7007 (void);
  703. extern void GoogleBillingClient_GetSubscriptionUpdateParamClass_mA43B88A77C88EFB159589EB987A8336571E789B5 (void);
  704. extern void GoogleBillingClient_GetConsumeParamsClass_m58C66A4B4CA41C79D27E3D1A9B5A1472FDB08E85 (void);
  705. extern void GoogleBillingClient_GetAcknowledgePurchaseParamsClass_m01201653BC18C4E4F35BFD3936E0DB688F734AA9 (void);
  706. extern void GoogleBillingClient_GetBillingClientClass_m1E14F996196BF4138635CAB42D07135D2D830887 (void);
  707. extern void GoogleBillingClient__ctor_m8F30F078CA3B9AAD8D034AFFCF711EED39947B3C (void);
  708. extern void GoogleBillingClient_StartConnection_mA670096A33014C3C4D0F6D9D600000F16B725287 (void);
  709. extern void GoogleBillingClient_GetConnectionState_m83E5EDB00BC624DD2E22E0158341489A6B9E54F9 (void);
  710. extern void GoogleBillingClient_QueryPurchasesAsync_mC3B0E449DD7C822BEC42FAAFF66D4B8EB0796158 (void);
  711. extern void GoogleBillingClient_QuerySkuDetailsAsync_m698A3D0AA846F93955C869F7842F63594DBFCF7F (void);
  712. extern void GoogleBillingClient_LaunchBillingFlow_mC4415F98D2442C74991C040DABF879219F0A0319 (void);
  713. extern void GoogleBillingClient_MakeBillingFlowParams_mB97F07BB18F188942C5FEE9242A8C13F74C28037 (void);
  714. extern void GoogleBillingClient_BuildSubscriptionUpdateParams_m97A7A6F6915CCB261135B1F72679A677CB6F9033 (void);
  715. extern void GoogleBillingClient_SetObfuscatedProfileIdIfNeeded_m4892A481DA1DE9B548ED540F581A95CF0A917E9E (void);
  716. extern void GoogleBillingClient_SetObfuscatedAccountIdIfNeeded_m8F0E529640262D3F00CA1497A7E11933BCE3C2C8 (void);
  717. extern void GoogleBillingClient_ConsumeAsync_m20CCB9AB464691E6DAE77D0C0B6011AC2554FCDD (void);
  718. extern void GoogleBillingClient_AcknowledgePurchase_m019D45043AC9BD3B1FC8B20187AA25A78188F9CD (void);
  719. extern void GoogleBillingResult_get_responseCode_m41C985D833239D91A30D60B5E0F78F63D40FCEDD (void);
  720. extern void GoogleBillingResult_get_debugMessage_mCBC8D3C771085DE43CFBF8A67CC21FDE52684CEA (void);
  721. extern void GoogleBillingResult__ctor_mA4E4F80D1EF645AC6E72981FA7F7E141F6601377 (void);
  722. extern void GoogleBillingStrings_getWarningMessageMoreThanOneSkuFound_m7537B087FDB054238E02B64C5998D2FD4D4C3FD1 (void);
  723. extern void GooglePurchase_get_isAcknowledged_m0C8DDEF734DE02C7F40F0E2818A0E0834FFC2C33 (void);
  724. extern void GooglePurchase_get_purchaseState_m25B05A607B60519FBA52843CAEF8FD8FEE0752A9 (void);
  725. extern void GooglePurchase_get_skus_mFB5A449AA1EE9433CFE668CDE90A55B7FDEB81A4 (void);
  726. extern void GooglePurchase_get_receipt_mB7E801F89576DA092E7A95DC41037E0FDC9E026A (void);
  727. extern void GooglePurchase_get_signature_m72063440F5794869DB8A4DE3F56A73F4444786AC (void);
  728. extern void GooglePurchase_get_originalJson_m6708011BD0AE03F2280CD86A0F07875EA578D5BA (void);
  729. extern void GooglePurchase_get_purchaseToken_mEAE44EFF7955BD8A92147AC6A5B8A70A6541EDE7 (void);
  730. extern void GooglePurchase_get_sku_m58FFD30FBFB7CD671E343E2C61CAE80582C9EB94 (void);
  731. extern void GooglePurchase__ctor_m2EE677158EEE27268D0BABF905F4FC1E56E1063E (void);
  732. extern void GooglePurchase_IsAcknowledged_mE2F920ABCC295EA6F298E0AA74B4C3097C58F889 (void);
  733. extern void GooglePurchase_IsPurchased_m0091EC5B71B28E403588B26FD73EC2C0A19D36D1 (void);
  734. extern void GooglePurchase_IsPending_mB50CFCB4540C15FEEE6853C95CE3155C3D4C9E66 (void);
  735. extern void U3CU3Ec__cctor_m3B5205D71CD68DEE8540207194DC751BCC9794B5 (void);
  736. extern void U3CU3Ec__ctor_m696F4E3E542DD5C7ADEFA41805FB149F796B836A (void);
  737. extern void U3CU3Ec_U3C_ctorU3Eb__26_0_m7EE2EB1174F22732D41A2FB17B869FAAACFE612E (void);
  738. extern void GooglePurchaseStateEnum_GetPurchaseStateJavaObject_mBEFD71488906CB2105D270DACD285AFFE95C89E1 (void);
  739. extern void GooglePurchaseStateEnum_Purchased_m3791A59F7885C918735F78345549C35C39E661F0 (void);
  740. extern void GooglePurchaseStateEnum_Pending_m419C6870D3097EADAF00FF0D6FF5C486BFB13171 (void);
  741. extern void GooglePurchaseStateEnumProvider_Purchased_m367280B3C4A0D25DE27159A38A1F7E8E10835F40 (void);
  742. extern void GooglePurchaseStateEnumProvider_Pending_mDF35C16DB0772027E6013DFBA15969B13E3C0B75 (void);
  743. extern void GooglePurchaseStateEnumProvider__ctor_mBE9E27B95EC11A8AD90B102BF49D0DD6CCA80780 (void);
  744. extern void GoogleSkuTypeEnum_InApp_m3D8DF28E36C52A558A171EBE49300FE42E73C0B9 (void);
  745. extern void GoogleSkuTypeEnum_Sub_m67C8DA9DA489930486A1A308049B9C52C2C071C3 (void);
  746. extern void ProductDescriptionQuery__ctor_m231111ED1963D9EDF6B55DC53F1D32EB695BD3CF (void);
  747. extern void U3CPrivateImplementationDetailsU3E_ComputeStringHash_m88B6F9ABC0B2644814DC58FB9602948572F7E971 (void);
  748. static Il2CppMethodPointer s_methodPointers[845] =
  749. {
  750. EmbeddedAttribute__ctor_mC8404DFC7B590D095F31BED1845D51F204C2E257,
  751. NullableAttribute__ctor_m7655B58768DF65210F3769D19B59EFBF1159F1F3,
  752. NullableAttribute__ctor_mC933B7DB73CF251AECD9C6A62C015A0966EE145E,
  753. NullableContextAttribute__ctor_mA71DE71927AB86CC4FDFFCA1D87C9FFCEDFF0923,
  754. JsonProductDescriptionsDeserializer_DeserializeProductDescriptions_m98605926EA86D48EB99F1D87F32C926B3845D9F3,
  755. JsonProductDescriptionsDeserializer_DeserializeMetadata_mA7E9897C8313254A0A77047BDFC75B1AE33CFD72,
  756. JsonProductDescriptionsDeserializer__ctor_m20F016896A6A95110F9AD437F085398023F9BE05,
  757. AmazonAppStoreStoreExtensions__ctor_m8AEB4063FA2E04197E5E251ED474FDEDA0BC24EF,
  758. FakeAmazonExtensions__ctor_mCC1F531E77DFC8CD8EC07E2DBD077D21F89B226E,
  759. AndroidJavaStore__ctor_m0D38BF4E9163C97152786CA458452DC56EA27788,
  760. AndroidJavaStore_RetrieveProducts_mA29AFD08E019E3ABD7486DA31B64CAF4AA99B3A1,
  761. AndroidJavaStore_Purchase_m6092044FE46158DADF52DD87C42D14CAE0C928F6,
  762. AndroidJavaStore_FinishTransaction_mB87BF5AFF7584110C9559219323EFDC78AFB1403,
  763. ListExtension_ToJava_mE978EBDBB715630BF3EB53D57B0DADE80E36BE44,
  764. ListExtension_ToJavaArray_m0DF86FDF7D43E283838E042CBF99DBD75386714F,
  765. UnityActivity_GetUnityPlayerClass_mAB92F573D73726FCC858D1AD1A71FBB5DCBF0AA3,
  766. UnityActivity_GetCurrentActivity_m4AD23C47CE2C5D5400EC5FE79E910F7E17EE7CB8,
  767. GoogleCachedQuerySkuDetailsService_Finalize_m74694BD9C573DF096648308BF08F9106E38D4F39,
  768. GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m2C5B86190409B0C0CEE7D28211753B4231738C1C,
  769. GoogleCachedQuerySkuDetailsService_GetCachedQueriedSku_m004A5B0121AEE0F898AA2AC6A986345F483F06F5,
  770. GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m5F0490A4825E669B13425DA1D5D78F0359635C07,
  771. GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m882D22766C55E9C6AC9A82C921D8D32D1BAACBD6,
  772. GoogleCachedQuerySkuDetailsService_Contains_mD0BEE84C98B4F8DB1164E0E5C00235154341F9C5,
  773. GoogleCachedQuerySkuDetailsService_Contains_mAF77DEB82415E8FBB8497752BE673B1C5D0396E8,
  774. GoogleCachedQuerySkuDetailsService_AddCachedQueriedSkus_mE543941A26C7B1E9D13DD3D41F43CB1AF038E9C4,
  775. GoogleCachedQuerySkuDetailsService__ctor_m75DE2A2A61BBE9CE416CBE795FCBC1EEB82C1B45,
  776. U3CU3Ec__cctor_m28F1290B83C8238004FB545142A7FC44A30862FC,
  777. U3CU3Ec__ctor_m306976DEC98D7D0A109FD1D782DB2B08A6F1D4EF,
  778. U3CU3Ec_U3CGetCachedQueriedSkusU3Eb__5_0_mA5F3B0343F2F57981038DB98D3ABBCB2727E025A,
  779. GoogleFinishTransactionService__ctor_m00E73732765A281CCE4D7F22A11A486315390ECB,
  780. GoogleFinishTransactionService_FinishTransaction_m6A8FE42847AFB1260304124676891D25F830C01A,
  781. GoogleFinishTransactionService_FindPurchase_mDDB6EF3226D924B27EEB239E19E924B334C3C10D,
  782. GoogleFinishTransactionService_FinishTransactionForPurchase_m6E7C7331B5D6532C1452A172522ADB44F3EF477A,
  783. U3CU3Ec__DisplayClass4_0__ctor_m77DBF651398150A28A503E57B6AA5EFCB3237A54,
  784. U3CU3Ec__DisplayClass4_0_U3CFindPurchaseU3Eb__0_m2EF37032672732A91958420A1AB805BB3E3EB3E9,
  785. U3CU3Ec__DisplayClass5_0__ctor_m8D84B5B026DCE730382FA1156834E58A58958737,
  786. U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__0_mFC4642CDDF4B9BB39649BB62A2564D369FD6FBE0,
  787. U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__1_m2D3ED6A5F77317CE25E72DCAF04B2781F65DF86C,
  788. U3CFindPurchaseU3Ed__4__ctor_m7242B23212529EA564A6016FF0D60742EE44D009,
  789. U3CFindPurchaseU3Ed__4_MoveNext_m248DD760ABDCEA6A9510928C454BC081DB30312B,
  790. U3CFindPurchaseU3Ed__4_SetStateMachine_m4C9A105DC0472A49C9E2C97B89F64286F26F88AB,
  791. U3CFinishTransactionU3Ed__3__ctor_mB816ACFB52C51A71B713B47DEFD8F0EE9417E301,
  792. U3CFinishTransactionU3Ed__3_MoveNext_m1A6530743102DAF8982841D6772DD1141A55557C,
  793. U3CFinishTransactionU3Ed__3_SetStateMachine_mEDCF39F90824A89CE4261C62CAF1CB45708B2E4F,
  794. GoogleLastKnownProductService_get_LastKnownOldProductId_mB0F641FE6161FDB5B7CC65F86EC7517AE6D7ECED,
  795. GoogleLastKnownProductService_set_LastKnownOldProductId_mEA04A6050A252BB362319A792F5B83842FFF70B5,
  796. GoogleLastKnownProductService_get_LastKnownProductId_mF73D95666E4113EA53B7581C6A7FFFC85B7AFE8E,
  797. GoogleLastKnownProductService_set_LastKnownProductId_m691E76B48D409E7913403560ABE6C401B50A718E,
  798. GoogleLastKnownProductService_get_LastKnownProrationMode_m649D8E783EB1BBD6D12BB5CAC63F3B65BA226A6A,
  799. GoogleLastKnownProductService_set_LastKnownProrationMode_mFD652416415B081ACADA523F24C3D2A5C9B482C2,
  800. GoogleLastKnownProductService__ctor_mB2B1381DC77FB51FF1F9904D8823F6BCBC75DE97,
  801. GooglePlayStoreService__ctor_mF5FBF0303B1389E326204AAA532E4EB562950B7A,
  802. GooglePlayStoreService_InitConnectionWithGooglePlay_mCFBB60729D49E6D3AF4144962557E7C790A3DA5A,
  803. GooglePlayStoreService_StartConnection_m598C0DA556160B740ED770343B86F1E9956F4ED5,
  804. GooglePlayStoreService_ResumeConnection_m73468D028C1C28ECD3F6D3D9B7D7CD5880947FB2,
  805. GooglePlayStoreService_AttemptReconnection_m4D1794C468F2267B05F7D14B2D2977BA23362DCF,
  806. GooglePlayStoreService_AreConnectionAttemptsExhausted_m20F49CFC1ABA07C7CF9400824EFBB7F093B32243,
  807. GooglePlayStoreService_RetryConnection_m064A3560B1183863F0850A57D9891F4C899064D4,
  808. GooglePlayStoreService_RetryConnectionAttempt_m48CE112D90916842962C50566950ECF79AEA882C,
  809. GooglePlayStoreService_OnConnected_m8B93C3F30A25C81BD98334DD918DC5A57BA97DEF,
  810. GooglePlayStoreService_DequeueQueryProducts_m42A618BA8A37DA3BB855BAFE7EC53777E2A25656,
  811. GooglePlayStoreService_DequeueFetchPurchases_m3759974224EF80FEDFA8872D7B9715757A0F6619,
  812. GooglePlayStoreService_OnDisconnected_mC6D89E84A79F158AAA952E3334014E626AEF48C7,
  813. GooglePlayStoreService_RetrieveProducts_m87A07E995045F8D2C0296867EF79740701CD9F87,
  814. GooglePlayStoreService_HandleRetrieveProductsNotConnected_mE5E12C093558652FB81EDBEB43ED01B814CEE5A9,
  815. GooglePlayStoreService_Purchase_m78CE45B496A389C9E12B4B6E5000633DB33AE10C,
  816. GooglePlayStoreService_Purchase_m4379D016FB241D27A11DB5F5DBAB09D9CCA0D653,
  817. GooglePlayStoreService_FinishTransaction_m108C541DEDCD0AE5B51B000927E139FFB114AF83,
  818. GooglePlayStoreService_FetchPurchases_m0B9DC023CA06A3265117D7A90BB5ADF14F2E5A4A,
  819. GooglePlayStoreService_TryFetchPurchases_m2AC309397D6FA5E077D73065954079322DDEB4D8,
  820. GooglePlayStoreService_U3CAttemptReconnectionU3Eb__20_0_m0E240F882132309B9D322ECC87EA6B2A581F6808,
  821. U3CU3Ec__DisplayClass22_0__ctor_mA3465CC56277C7366907EB325CCDAB660B519D50,
  822. U3CU3Ec__DisplayClass22_0_U3CRetryConnectionU3Eb__0_mFCF3E2929B22D7BDA76A1CBB9EBA2FD934EEDC34,
  823. U3CFetchPurchasesU3Ed__34__ctor_m7F4647978321C7E91F6080BBB5E1225D3A31F06C,
  824. U3CFetchPurchasesU3Ed__34_MoveNext_m1B677AFF8B1472BFDC0DA16B186C4F0D233E1F00,
  825. U3CFetchPurchasesU3Ed__34_SetStateMachine_m0AA7CBAE3F04281CC113B22100C5E00415D9B5E5,
  826. U3CTryFetchPurchasesU3Ed__35__ctor_m52504C961A008C9AB3874F220BBC1F075C9BFDDF,
  827. U3CTryFetchPurchasesU3Ed__35_MoveNext_m1D67FE3A66CFA1A048808A32D69808E9E9234A8C,
  828. U3CTryFetchPurchasesU3Ed__35_SetStateMachine_m37746C732AACA7AB89ADDCA1104DAAA51201196D,
  829. GooglePriceChangeService__ctor_m4E7EC6CE99DD4F272ACF6AC06D91F08FD0C990C2,
  830. GooglePurchaseService__ctor_m1DE748CB060AD5D8FC3CA43DE0AFC7292D2A1B4D,
  831. GooglePurchaseService_Purchase_m29B1CB96BDA2D15289D51DFDC4232751E1970CF1,
  832. GooglePurchaseService_OnQuerySkuDetailsResponse_m95976F034A14D7F2856EE3542D20B41DF8FEDCF0,
  833. GooglePurchaseService_ValidateQuerySkuDetailsResponseParams_m6CFE33C653C6FAE33542B5885467F5C341DAC4F8,
  834. GooglePurchaseService_ValidateSkus_m640D7D5118648CF810EA4FABC663F2E69C71BB03,
  835. GooglePurchaseService_VerifyAndWarnIfMoreThanOneSku_m5C6986FE6B32C5949B98EB4342D21B3542FA10C7,
  836. GooglePurchaseService_PurchaseFailedSkuNotFound_mC534A4118675DF89F47C58C5389FC61BA2F7964C,
  837. GooglePurchaseService_ValidateOldProduct_m0A6A2FA026568D45A29B6CD43C8A8A34348ADEA5,
  838. GooglePurchaseService_PurchaseFailedInvalidOldProduct_m49EC674BFCF31EC7B5501C25BEDF56CE7FA48818,
  839. GooglePurchaseService_LaunchGoogleBillingFlow_mAB16BC1F209D8A0C2A3BFB62C644D3051887AABD,
  840. GooglePurchaseService_HandleBillingFlowResult_m8C975E77C9D491BAA800B5FB6286DE6D28D35298,
  841. U3CU3Ec__DisplayClass4_0__ctor_mB328CDF512A7B349805ADAE4506C41A0E43D6D81,
  842. U3CU3Ec__DisplayClass4_0_U3CPurchaseU3Eb__0_m3722933ED78BFF71ECF3927C27AA23CAAB6EB9C9,
  843. GoogleQueryPurchasesService__ctor_mE9215AEEA648CF0E1A49ECBF70A117D953AB0FF4,
  844. GoogleQueryPurchasesService_QueryPurchases_m4D27A1950FBB8CDC80E83AAA4B6A06929C153E9E,
  845. GoogleQueryPurchasesService_QueryPurchasesWithSkuType_mDB5401461F2D5DF53BDA09F77E0B581A24507B23,
  846. GoogleQueryPurchasesService_IsResultOk_m53AA5016EB83D58BFB76AC0C3967EECA8341D989,
  847. U3CU3Ec__cctor_m77DB5CA22E2FF7F38F8CB47AEB2AA5B869A7B8C5,
  848. U3CU3Ec__ctor_m0DD28869F30A8D9E8D8DF6F7295B845CE3D6E377,
  849. U3CU3Ec_U3CQueryPurchasesU3Eb__3_0_m7CE532DAFFC24E63EEAC730BA53957EB44AEB2A8,
  850. U3CU3Ec__DisplayClass4_0__ctor_m36F184C8B6582054FED0F0A76615A56844D28DC7,
  851. U3CU3Ec__DisplayClass4_0_U3CQueryPurchasesWithSkuTypeU3Eb__0_m7A710091286EF7E7A6CAF40F7BD0C6DF4941F834,
  852. U3CQueryPurchasesU3Ed__3__ctor_m555DFCC3576140717CEC6FB42B7FCB20C201B05C,
  853. U3CQueryPurchasesU3Ed__3_MoveNext_mCF5A4482C9C50AC1331906E671ED0EED5BDB09EA,
  854. U3CQueryPurchasesU3Ed__3_SetStateMachine_mC7DE7B7783D52CBB7162448664BA0E064D7A35BD,
  855. NULL,
  856. NULL,
  857. NULL,
  858. NULL,
  859. BillingClientStateListener__ctor_m04EE4E48F28E41B5C492F6ADF1B10CF9F849E4A7,
  860. BillingClientStateListener_RegisterOnConnected_m6CDC37825ACA5731EE17EE080626954E0D6BFF78,
  861. BillingClientStateListener_RegisterOnDisconnected_m8542956786353C419D2D6765B530F835E862654B,
  862. BillingClientStateListener_onBillingSetupFinished_mA2197D2F0110DD41CC3321341CCD94A099065ABC,
  863. BillingClientStateListener_onBillingServiceDisconnected_mD6AEE6476D94E0CC26BAFF9240AAD7E3DFCB7E63,
  864. GoogleAcknowledgePurchaseListener__ctor_mB509911DE8C7BEE8D023360D6E5C1BC970E94FE1,
  865. GoogleAcknowledgePurchaseListener_onAcknowledgePurchaseResponse_mEEA5706C7EAFB649307DF19A56E68205D56E5B5D,
  866. GoogleConsumeResponseListener__ctor_m8CE0D56E7F1AA8E7CFDFCFC7050CB47DFFF2C3AB,
  867. GoogleConsumeResponseListener_onConsumeResponse_m9D726EC5E5A4DBFE26255ABF504AA79B73F9F6ED,
  868. GooglePriceChangeConfirmationListener_onPriceChangeConfirmationResult_m4D30C5EDDF73B290F7CAA4D5FD3567B65614FC0D,
  869. GooglePurchasesResponseListener__ctor_m9605CF62666DDFF86C4355AD2A9E1499AF00ACE9,
  870. GooglePurchasesResponseListener_onQueryPurchasesResponse_m150BD48FEB6DB17513835043C5BDA7525C569405,
  871. GooglePurchaseUpdatedListener__ctor_mB1F324E62DFBDD61BB0F1085BA3E3E1AC0D11B83,
  872. GooglePurchaseUpdatedListener_SetGoogleQueryPurchaseService_m62E3B83FFFFC145A6D2EEF3C97D65CA1AA34B72C,
  873. GooglePurchaseUpdatedListener_onPurchasesUpdated_m00587E219424F411BAAF2D564CDD393AE215B024,
  874. GooglePurchaseUpdatedListener_OnPurchasesUpdated_m28782E3FBBAAE520D735A011457597B4425AD3C3,
  875. GooglePurchaseUpdatedListener_HandleResultOkCases_m2D503275E3ADAD9DB420417D917B78342EDBA391,
  876. GooglePurchaseUpdatedListener_HandleErrorCases_mCB926C4CD0EB67AFF057F3F5B4DFA4057DC7798D,
  877. GooglePurchaseUpdatedListener_HandleErrorGoogleBillingResult_mD4F3BC2C13924F32A233A68B6E460913E6C15B03,
  878. GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m8557C9149A8DB6B11932F0F497528E0DCC4B1D48,
  879. GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m5EA8C5D4048D851795374C64294B7A27CCCC0C32,
  880. GooglePurchaseUpdatedListener_ApplyOnPurchases_m8973C50AEA59347A4EB412C5047719848A7DC422,
  881. GooglePurchaseUpdatedListener_ApplyOnPurchases_mB7A5C06DC865BCAD741D744B4BFD498B58445E87,
  882. GooglePurchaseUpdatedListener_OnPurchaseOk_m765B24AA543C588FECC4770BC9B4D9EA58943103,
  883. GooglePurchaseUpdatedListener_HandlePurchasedProduct_m0F2CF03CC87F3F62BB812B043953590F78D16861,
  884. GooglePurchaseUpdatedListener_IsDeferredSubscriptionChange_mAF913C1C2A696B071BCCED905B47107E14ECD04B,
  885. GooglePurchaseUpdatedListener_IsLastProrationModeDeferred_m7413CCD59DB8FAA1335C87B79EFAE8292022D510,
  886. GooglePurchaseUpdatedListener_OnPurchaseCancelled_mC96E9F836BF3E47684CC891D91E8779D7262B44B,
  887. GooglePurchaseUpdatedListener_OnPurchaseCancelled_mA7E56DF9D38115A7FC22E16068CD36AE1E6C3277,
  888. GooglePurchaseUpdatedListener_OnPurchaseAlreadyOwned_mF098189CF0AEABD1F6769F208FA4008270812298,
  889. GooglePurchaseUpdatedListener_OnPurchaseFailed_m550EAD20A8DB54BE94B919ADF5CD342D35B9686F,
  890. GooglePurchaseUpdatedListener_U3CHandleUserCancelledPurchaseFailureU3Eb__15_0_m912E3EEB5FC04575DF8336C2740E1C6424B969DA,
  891. U3CHandleUserCancelledPurchaseFailureU3Ed__14__ctor_mDF92488B1C919E189965F23D76E9370D2F91FCC9,
  892. U3CHandleUserCancelledPurchaseFailureU3Ed__14_MoveNext_mECAC96E020F9E510A16F3CBBD9C4BC7BF0C96B34,
  893. U3CHandleUserCancelledPurchaseFailureU3Ed__14_SetStateMachine_mCC2C014DEEA70CE0027A9906600C36390CF09068,
  894. SkuDetailsResponseListener__ctor_mF86016CDDE155D2BE9F8B17CEFEC0D163EB7A4D2,
  895. SkuDetailsResponseListener_onSkuDetailsResponse_m70EB3CEA914A73E6AED65B5F22E378DBB6A792C6,
  896. U3CU3Ec__DisplayClass5_0__ctor_mB1DE7F50FCFAAF9D420B36AA90309A38D1BD5AEB,
  897. U3CU3Ec__DisplayClass5_0_U3ConSkuDetailsResponseU3Eb__0_mBCE7C10C936B50A6D8787CBE5283763495490AD7,
  898. MetricizedGooglePlayStoreService__ctor_m25A3DFC6F9073B144331D071A3E89796B720ABF7,
  899. MetricizedGooglePlayStoreService_DequeueQueryProducts_m68DE6F64D6875355B987511D5EB5DB7323A277AE,
  900. MetricizedGooglePlayStoreService_DequeueFetchPurchases_m2AB3DBC0FD1EB62C66D069A461FCF7D88204A14B,
  901. MetricizedGooglePlayStoreService_RetrieveProducts_m87FD9314FDE483F227018CB65E2070A83C259891,
  902. MetricizedGooglePlayStoreService_Purchase_m81F49E52788EEC4DD9CC4A2ACD77FCDA7A53C724,
  903. MetricizedGooglePlayStoreService_U3CU3En__0_mC025AB6B08CE7C7D6DE7BB60BCEF3FD3838F8189,
  904. MetricizedGooglePlayStoreService_U3CU3En__1_m15EF2237A94F6779D9B7BA18AC61AF5655AC1F75,
  905. MetricizedGooglePlayStoreService_U3CU3En__2_mDA8D503BFEA537C94C50CECFD2F218FFAA9687C2,
  906. U3CU3Ec__DisplayClass3_0__ctor_mA138C4FAA7ABAD1DB20D4DF002AE7B78799E5209,
  907. U3CU3Ec__DisplayClass3_0_U3CDequeueQueryProductsU3Eb__0_mD9DF83EE9A5035BE7F1483D83D048D29F276AD9A,
  908. U3CU3Ec__DisplayClass5_0__ctor_mF985A31F5FCA82DFAA7031769335EC1E43FC3D48,
  909. U3CU3Ec__DisplayClass5_0_U3CRetrieveProductsU3Eb__0_mABD44FFE6CCE382E6AADD9D77BCFD984B5A3AE0B,
  910. U3CU3Ec__DisplayClass6_0__ctor_mD1D65405D5DC9A42319AC648B7DAA17942E8F42A,
  911. U3CU3Ec__DisplayClass6_0_U3CPurchaseU3Eb__0_m70A8E5D2D89B687E63EB3B6803FCA1EADB8CE31D,
  912. QuerySkuDetailsService__ctor_mE8EC2F94C91F0179E1AC333B2503F23F03535857,
  913. QuerySkuDetailsService_QueryAsyncSku_m4EDCD379B5AAC897E3512CC82728BCC9866384FF,
  914. QuerySkuDetailsService_QueryAsyncSku_m607784D41BB469A318817EA1F3EA842D9E010BD9,
  915. QuerySkuDetailsService_QueryAsyncSku_m9E4D69E993809756057ACBCAB379F2B37220F3F4,
  916. QuerySkuDetailsService_QueryAsyncSkuWithRetries_m6DA64182E45953396A0264076F5EA60C4A3532BE,
  917. QuerySkuDetailsService_TryQueryAsyncSkuWithRetries_m2EAE98C62CD752DA95C0F59AA089AFFF87A4CA31,
  918. QuerySkuDetailsService_ShouldRetryQuery_mDDBAD809BF96FC1B20F5C568B44A49BBDF2D4C7D,
  919. QuerySkuDetailsService_AreAllSkuDetailsCached_mD2E47F10D03EBD833630BD0E2686B925B9262D46,
  920. QuerySkuDetailsService_GetCachedSkuDetails_m459625EAD0C244C5B4ECA436A73103D04AFEF3FF,
  921. QuerySkuDetailsService_QueryInAppsAsync_m91146381C5101CEB5FE6E29A9E6F3D9BAAE056B1,
  922. QuerySkuDetailsService_QuerySubsAsync_m948A7F991C526C115FFB9B5F9A34615697EF1755,
  923. QuerySkuDetailsService_QuerySkuDetails_mD4D5809EF4F754BE61D2935B667393FA1BBBD30B,
  924. U3CU3Ec__cctor_m6759708B42F0D3D7DC3CFBC13C6E60C7843A796D,
  925. U3CU3Ec__ctor_mD5A2C95AA1D7177F6916D26256D061CA7DBEE49C,
  926. U3CU3Ec_U3CAreAllSkuDetailsCachedU3Eb__14_0_m9E8F5B237A2C6BDAA4ADE1154F4563707B41EDB9,
  927. U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_0_m1A6386563405257CE9A0980CDC6AEBFE29441E5C,
  928. U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_1_m17BE8243CB9E7F30831CC8AE2F5F35E6C938EE4C,
  929. U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_0_m81501999562AE1D372E32916615C773B5095DB81,
  930. U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_1_m2EFB4A794BDBC59212FF8E4C679FCCBCEC62A3D4,
  931. U3CU3Ec__DisplayClass10_0__ctor_mCB4FBCF8A3507D52182C5FBC151B1F13F96FAC3A,
  932. U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eb__0_mD383DC2310068E593EA80ABC43C523E47C5FA99B,
  933. U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eg__OnActionRetryU7C1_m085E475AB077952F2846C6136F49A8C22F2BE075,
  934. U3CU3Ec__DisplayClass12_0__ctor_m85FF665E14CE34D34612970F31576AA2BE766687,
  935. U3CU3Ec__DisplayClass12_0_U3CTryQueryAsyncSkuWithRetriesU3Eb__0_m26B993FFAAD1E36665C2A22D4E2F323EBA344E72,
  936. U3CU3Ec__DisplayClass9_0__ctor_m533A1BF989D3A219AEBA6FBDCC2B1490C2FE9E84,
  937. U3CU3Ec__DisplayClass9_0_U3CQueryAsyncSkuU3Eb__0_m75B27CF7DD9F98FE9917225F48ADD73BF54D58DA,
  938. SkuDetailsQueryResponse_Finalize_mFE0BA9C7FD572938BE2F3070C72CA1EE2BDDCEB8,
  939. SkuDetailsQueryResponse_AddResponse_mF1B6ABDF620A5AE5C744B0FCFCD760911029AEC4,
  940. SkuDetailsQueryResponse_SkuDetails_mA782974FA78D9BB019C144FC6E68CA867CC2841E,
  941. SkuDetailsQueryResponse_IsRecoverable_mA58DC94D88675A7E412CBA0831F12B8674EC6FA2,
  942. SkuDetailsQueryResponse_IsRecoverable_m388B03DD9EEA0B5787322108CFDC8B7463C4F329,
  943. SkuDetailsQueryResponse__ctor_m4654FF8B33D29EFD53B5797CB49DE30E8875CFD4,
  944. U3CU3Ec__cctor_m32F22536A9DEFE113FE9867AD07318A95EBD52EC,
  945. U3CU3Ec__ctor_mA6CE767B6444454DB3210EE8A2A372BE7546F6F0,
  946. U3CU3Ec_U3CAddResponseU3Eb__2_0_mEEA2ACE4EF5FFB8B9CDDBF40F3C96DB312A83FA6,
  947. U3CU3Ec_U3CSkuDetailsU3Eb__3_0_m0474D4D31CEAE87A51E00E9E228C60A882797F38,
  948. U3CU3Ec_U3CSkuDetailsU3Eb__3_1_mB71F4AC7405DD610C8C8EDF6F794B0C20AF540CA,
  949. U3CU3Ec_U3CIsRecoverableU3Eb__4_0_mBFC82350AB7FE2361717F60CD472508099E9DF91,
  950. SkuDetailsResponseConsolidator__ctor_m9CA3C84075D850B5C635A03FF50725D15BFFEE05,
  951. SkuDetailsResponseConsolidator_Consolidate_m8A8DBF06DA93652A1E881603968B5124A0308A67,
  952. FakeGooglePlayStoreConfiguration__ctor_mED7ABA18497E3166EFB99514D00A239DEF15A2AA,
  953. FakeGooglePlayStoreExtensions_IsPurchasedProductDeferred_m3CF9011710F5E0F936E13A300B7AA7DE55365B28,
  954. FakeGooglePlayStoreExtensions__ctor_m7CE5CD272DDABAF44154E2B79578DE525A413891,
  955. GooglePlayConfiguration__ctor_m00E3ABD231224448DD73C870F7577A12879FB299,
  956. GooglePlayConfiguration_NotifyInitializationConnectionFailed_m5E706FABA8A196D40A703E8913617B7F1EA0C5A6,
  957. GooglePlayConfiguration_NotifyQueryProductDetailsFailed_mC8A178690649569AB47D350786D56865827FDE90,
  958. GooglePlayConfiguration_NotifyDeferredProrationUpgradeDowngradeSubscription_mEB8B3D29090CE88539CA3E22576D886C73E83173,
  959. GooglePlayConfiguration_IsFetchPurchasesAtInitializeSkipped_mA957053EED2577592325EB8E80B08FE928839B61,
  960. GooglePlayConfiguration_DoesRetrievePurchasesExcludeDeferred_m03BBF5C4B8A521E67738B816455D9D8F69CDCDA8,
  961. GooglePlayConfiguration_NotifyDeferredPurchase_m9E0F334800FDA40407CB9CECD996DD45940D1036,
  962. GooglePlayProductCallback_SetStoreConfiguration_mADD4C9C243F83D64231BAA554A096C4A41378210,
  963. GooglePlayProductCallback_NotifyQueryProductDetailsFailed_mD1657729F98064FFB9BBCF5635D0FF1C531EB8DC,
  964. GooglePlayProductCallback__ctor_m950784739496F64C7A5312A7E75A0F97ADA0B77F,
  965. GooglePlayPurchaseCallback__ctor_m68068D41D76338FEB265D46E85289A18AAFE2CF0,
  966. GooglePlayPurchaseCallback_SetStoreCallback_mDBB788DB101437778407F10A8F83AA5770AEE2CF,
  967. GooglePlayPurchaseCallback_SetStoreConfiguration_mB3D6E90372854F3750107B578C39E990179FB61E,
  968. GooglePlayPurchaseCallback_OnPurchaseSuccessful_m0C42BF32CA2328E8E1ADB1FD7F9057C07E1A0EFD,
  969. GooglePlayPurchaseCallback_OnPurchaseFailed_m797EBCB9415B7E1E6136370E0D919D378DA033D9,
  970. GooglePlayPurchaseCallback_NotifyDeferredPurchase_mB6A7AD9A8FA816DCAC78A13562515B670C4E1C76,
  971. GooglePlayPurchaseCallback_NotifyDeferredProrationUpgradeDowngradeSubscription_m2D4199C517F310037AEF29DF92B82D46BEE7AB89,
  972. U3CU3Ec__DisplayClass8_0__ctor_mC688B3C07EF4A3717B3312CAE767EFEFE864CCBB,
  973. U3CU3Ec__DisplayClass8_0_U3CNotifyDeferredPurchaseU3Eb__0_m3AD7D105AD95ED1F5C71BADBB86BD3108745CCF9,
  974. U3CU3Ec__DisplayClass9_0__ctor_m30F6B21A8952AEB8839D02CFFEFB1575E5285B31,
  975. U3CU3Ec__DisplayClass9_0_U3CNotifyDeferredProrationUpgradeDowngradeSubscriptionU3Eb__0_mA776A70712EAF9A5E843069C70F780FFCF5F99AD,
  976. GooglePlayStore__ctor_m442B660554E4BBDE92208921FD3898BFECADFEDC,
  977. GooglePlayStore_Initialize_m7CBB76995E9EC1D9E22D8893BE2A660044A55E08,
  978. GooglePlayStore_RetrieveProducts_mDB89F3EEE4393786FA0AB117AAF6962DDCE72F04,
  979. GooglePlayStore_HasInitiallyRetrievedProducts_mF08671150A96861672F6858F392DAB76A5C24E97,
  980. GooglePlayStore_ShouldFetchPurchasesNext_mCFAC177782D5D8C4A365629CC429BD62C98176B4,
  981. GooglePlayStore_Purchase_m76E314E4992393D3527D664337C437B525C81FB4,
  982. GooglePlayStore_FinishTransaction_mB85BB4EA23B4992038BC80994BF7C98982851187,
  983. GooglePlayStore_OnPause_m31336B413016F6099885044229E4C021A7083BB7,
  984. GooglePlayStoreExtensions__ctor_m3164A3520A06CDD7E2CA70C380D01B4C0CE7C0F0,
  985. GooglePlayStoreExtensions_SetStoreCallback_m78881F7FB0978D53414137B1480395B5B2AA553A,
  986. GooglePlayStoreExtensions_IsPurchasedProductDeferred_m4E78DB685E6FBD2DC0A01CE4232B64BB43991FED,
  987. GooglePlayStoreExtensions_TryIsPurchasedProductDeferred_mCCAAD920152BC5DFC3F9455B5902FA2157D67CAB,
  988. GooglePlayStoreExtensions_GetPurchaseState_mE5AE3E1D748E943BFC07E3CEFA83F6D5807CB1E3,
  989. NULL,
  990. NULL,
  991. NULL,
  992. NULL,
  993. NULL,
  994. NULL,
  995. NULL,
  996. NULL,
  997. NULL,
  998. NULL,
  999. NULL,
  1000. NULL,
  1001. NULL,
  1002. NULL,
  1003. NULL,
  1004. NULL,
  1005. NULL,
  1006. NULL,
  1007. MetricizedGooglePlayStoreExtensions__ctor_m7730A5D7D03CAEF22B57BA348C6A0F7E6ABB54D0,
  1008. GoogleProductMetadata_set_originalJson_m2AA4A01F9FD6D875D3178EA3516A2CA7E0C2F458,
  1009. GoogleProductMetadata_set_subscriptionPeriod_mE8B892F4C6E22156A092545EE251E829BD657A4B,
  1010. GoogleProductMetadata_set_freeTrialPeriod_mAD70EE78EF91C1EC5BC3EDC1BA4C36832F6DB82F,
  1011. GoogleProductMetadata_set_introductoryPrice_m5A6A7589836E3AAAB78BF64B2EB434D50697FC55,
  1012. GoogleProductMetadata_set_introductoryPricePeriod_mF7C017AF4C274A6417A5FF1AFFB94584F3950D53,
  1013. GoogleProductMetadata_set_introductoryPriceCycles_m5D7A148FCFC8C13188F970F2AB846033CD30EE64,
  1014. GoogleProductMetadata__ctor_m6987658611A6B5BDD48C3C87283ACB6346F28A6B,
  1015. GoogleFetchPurchases__ctor_m23498B0FC31C93822DF3D731BFF27CE51978420F,
  1016. GoogleFetchPurchases_SetStoreCallback_mD64337130E5102DA07EB013F73B56EB099865293,
  1017. GoogleFetchPurchases_FetchPurchases_m9C4BD1ABE4996D730F7512C11D3CD64F39EB6E6F,
  1018. GoogleFetchPurchases_FetchPurchases_mB5BB2978060AF58720285D9D82210C49CAEEB404,
  1019. GoogleFetchPurchases_FillProductsWithPurchases_m696BAD4693F1BE2B9582C7E98C8D8FC9AEA8984A,
  1020. GoogleFetchPurchases_BuildProductsFromPurchase_m1F0C4090FBDD9D617F8246E05E24315BAF11850F,
  1021. GoogleFetchPurchases_CompleteProductInfoWithPurchase_mF21F1D0A88F9D3975E33B32572A6CFD2FE8598B7,
  1022. GoogleFetchPurchases_OnFetchedPurchase_mDDEF43EF8FACA9B9267717E8795BCB1FBC2B982A,
  1023. GoogleFetchPurchases_PurchaseIsPurchased_m1CD163A5827F7638E3F7FFE75F6A8E5A16C13E95,
  1024. GoogleFetchPurchases_PurchaseIsPending_mC3D01A896C7C55B6D823BE1D9F25FA404B3AD838,
  1025. GoogleFetchPurchases_UpdateDeferredProductsByPurchases_mB2277296696BC368E113BA97ED73A49402F361B0,
  1026. GoogleFetchPurchases_UpdateDeferredProductsByPurchase_mC4F57ECF37A0DF6A86093DBF9C3B4108A6646BF9,
  1027. GoogleFetchPurchases_UpdateDeferredProduct_mDA34FF5F5BB2D0570E557F1C66EB7D5A122E8460,
  1028. U3CU3Ec__cctor_m663611EADD44C5C2716D84BC2FCC720F2412C128,
  1029. U3CU3Ec__ctor_mA3D48173D32BD58EE4D8181CCD896F7E83FB7E04,
  1030. U3CU3Ec_U3CPurchaseIsPurchasedU3Eb__11_0_mA0F316BEF7E02821ED1013153E9A1489F535A57A,
  1031. U3CU3Ec_U3CPurchaseIsPendingU3Eb__12_0_m39A95DB2A2EBD4FBA010242D5A8A7C179EC58D7B,
  1032. U3CU3Ec__DisplayClass10_0__ctor_mAD689312E6C6B761FE8F4CEE69E046A057401D60,
  1033. U3CU3Ec__DisplayClass10_0_U3COnFetchedPurchaseU3Eb__0_mBC5858D8DC79E0384937B68E851D50DC254D49C1,
  1034. U3CU3Ec__DisplayClass6_0__ctor_mA33E3F3BAC5C6B0FCCD09956DA6BBE52CB990EEA,
  1035. U3CU3Ec__DisplayClass6_0_U3CFetchPurchasesU3Eb__0_m428B81E2341006BE8162324D3EEEA47F815006A3,
  1036. U3CU3Ec__DisplayClass8_0__ctor_mCC52CF9D8B2EC984F52D7A3AE12B24B59F65E7E8,
  1037. U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__0_m93F6324836D90AE1CEF6F3E9DA705F9137F43932,
  1038. U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__1_mEAC504DF71965A450E4855D8CA3DBD7F4953EF75,
  1039. GooglePlayStoreFinishTransactionService__ctor_m73C28E31505A72BADFCB9E2ADB5946D9E1E49069,
  1040. GooglePlayStoreFinishTransactionService_SetStoreCallback_mBD8994E6B5551AC9C311B19706F6BA6A5FF323C9,
  1041. GooglePlayStoreFinishTransactionService_FinishTransaction_mC226005E6254F6269113CA84612B1A0E343D08CE,
  1042. GooglePlayStoreFinishTransactionService_HandleFinishTransaction_m6EE0595168E0A036E4302D3D77C1296131CDBCA2,
  1043. GooglePlayStoreFinishTransactionService_CallPurchaseSucceededUpdateReceipt_m7A161EB8AB08F82A3998407C37448C5D5AC34AE4,
  1044. GooglePlayStoreFinishTransactionService_IsResponseCodeInRecoverableState_mB643EF366A9693C524CEEA23AA96C9D04EFDFDAF,
  1045. U3CU3Ec__DisplayClass7_0__ctor_mC7615D49B9A621DB691190861BE652EC3A31AE5A,
  1046. U3CU3Ec__DisplayClass7_0_U3CFinishTransactionU3Eb__0_m04B922FDC75F4891A2B7F6FA7F0E424BA3A38BD2,
  1047. GooglePlayStorePurchaseService__ctor_m7848EF4D063099A3CB5A94F10839E86935AB6A11,
  1048. GooglePlayStorePurchaseService_Purchase_mEC0DBE8E7088EE6A76470CE09F70A1397D3EC097,
  1049. GooglePlayStoreRetrieveProductsService__ctor_m0CA75B6C835F2EC9DBC8E462B6713BE4698324B2,
  1050. GooglePlayStoreRetrieveProductsService_SetStoreCallback_mD7565370FECAAC10E486CBE82C6BA3CCEBDDE50A,
  1051. GooglePlayStoreRetrieveProductsService_RetrieveProducts_m467794DCB494591A9DF168380E057DD2E9CC5BF7,
  1052. GooglePlayStoreRetrieveProductsService_OnProductsRetrievedWithPurchaseFetch_mFF9A8E3594336C215CF28CA6BE4ADE7871DB26CA,
  1053. GooglePlayStoreRetrieveProductsService_OnProductsRetrieved_mBF9EF11DA650BEDD232019B59B813F9D474D2B7F,
  1054. GooglePlayStoreRetrieveProductsService_OnRetrieveProductsFailed_m45BA9CC0D0A90D81919EA4DE083EC17E6DA4A31F,
  1055. GooglePlayStoreRetrieveProductsService_ResumeConnection_m90D885D4B2EA84E45DA13DEAB9E4B14E53FA89B2,
  1056. GooglePlayStoreRetrieveProductsService_MakePurchasesIntoProducts_m84ED9554C7D4A0C112BB4E971458737766428177,
  1057. GooglePlayStoreRetrieveProductsService_IsPurchasedProductDeferred_mD31CFEBACEDE3BF9D682FB55B4647547E85D3552,
  1058. GooglePlayStoreRetrieveProductsService_CreateNewProductUnifiedReceipt_m4A828BFF7493EB1E95167CDD381BF4E53CC27747,
  1059. GooglePlayStoreRetrieveProductsService_HasInitiallyRetrievedProducts_mBADDD565F7DBF2601D816EE6B59283813FCBEFD7,
  1060. U3CU3Ec__DisplayClass10_0__ctor_m7999427F3130F6D577FD8A6BA660E0FDE93D4A32,
  1061. U3CU3Ec__DisplayClass10_0_U3COnProductsRetrievedWithPurchaseFetchU3Eb__0_m601CDF5D52DF3A7C33934B2C2C86308DF21D758D,
  1062. U3CU3Ec__DisplayClass14_0__ctor_mF92CF9E8D4C9E3F5D59BE5FA56AF02EFF7616E6D,
  1063. U3CU3Ec__DisplayClass14_0_U3CMakePurchasesIntoProductsU3Eb__0_mC86784D0EE46527E6027B975D8790B2A7A2D4812,
  1064. StoreCallbackExtensionMethods_FindProductById_m0E4A17BCE49A46D65A1B234C9B87D3C53067B012,
  1065. JavaBridge__ctor_mFE1D316608D352A17AF50EC9DF0E5E8B9E7DD08C,
  1066. SerializationExtensions_TryGetString_m50B16F206A82935DDBDEAA88520270BE788F5B33,
  1067. JSONSerializer_SerializeProductDef_m30C22B408C008814C1703550DF65EBD09CA832B7,
  1068. JSONSerializer_SerializeProductDefs_m3D0929F515F66A1E0F0E6849454A6985BBFEB616,
  1069. JSONSerializer_SerializeProductDescs_m099404FD14B84B48AAE2B30D571EF389E59E21BD,
  1070. JSONSerializer_DeserializeFailureReason_m914151E8ED821123DB57B56770124D2B34C5EBAB,
  1071. JSONSerializer_BuildPurchaseFailureDescriptionMessage_m9DEEAF966943E83E129F94F05E2C3930D160A03C,
  1072. JSONSerializer_EncodeProductDef_mC867EAE9AB70675C075F5932ADCBBAE5BDF9EE19,
  1073. JSONSerializer_EncodeProductDesc_mAEB2F175F5BE8DE42353A26D77796BCA37A6B6C3,
  1074. JSONSerializer_EncodeProductMeta_mF9DBB19F1A341F90494BCF37645BD866B65F595B,
  1075. ScriptingStoreCallback__ctor_m6F45754D7A1E6A4ECFA500BC97B89A2D8EC67E9C,
  1076. ScriptingStoreCallback_get_products_m4520241E9DBDE79A7635311D8A615D5B906211B5,
  1077. ScriptingStoreCallback_OnSetupFailed_mAA28ACD581F8726F3D977CED7B8FF3D85A536E90,
  1078. ScriptingStoreCallback_OnProductsRetrieved_m53F615DDDBD1474B8DF639236D38806FC43E0AA4,
  1079. ScriptingStoreCallback_OnPurchaseSucceeded_mCC7D4C723008049F7AA5D67BDD6D2087A67D24ED,
  1080. ScriptingStoreCallback_OnAllPurchasesRetrieved_m6C66FC3DD9081BC62B25724E4C1F2B878CC4660E,
  1081. ScriptingStoreCallback_OnPurchaseFailed_m6900616FF46EBFCA55AC24747B622887167E3700,
  1082. U3CU3Ec__DisplayClass10_0__ctor_mE4A4709BD713F62CA3FC17639EC65C23DE3091FE,
  1083. U3CU3Ec__DisplayClass10_0_U3COnPurchaseFailedU3Eb__0_mB30EAA403CBDE5D183B13BFD075E68D1464CC7EB,
  1084. U3CU3Ec__DisplayClass6_0__ctor_m0B122E52D7806788868B67D5349501C605B6B976,
  1085. U3CU3Ec__DisplayClass6_0_U3COnSetupFailedU3Eb__0_mE99F04FDBC25BF7FE398E60F144A502967837789,
  1086. U3CU3Ec__DisplayClass7_0__ctor_m7142B52B5A6D40912C042FD8BD993CB490019DE8,
  1087. U3CU3Ec__DisplayClass7_0_U3COnProductsRetrievedU3Eb__0_mAAFBF7E5A56F1688BE5B1CA2C33C7A6DF42A0F02,
  1088. U3CU3Ec__DisplayClass8_0__ctor_m451ABE949F36739F659791BA041B83B8E9889C39,
  1089. U3CU3Ec__DisplayClass8_0_U3COnPurchaseSucceededU3Eb__0_mCAC7081CD54676C43056EFA6FC1B55E267E464D1,
  1090. U3CU3Ec__DisplayClass9_0__ctor_mA89E3CAD6C621FA387FDA175B856300AB4F1515A,
  1091. U3CU3Ec__DisplayClass9_0_U3COnAllPurchasesRetrievedU3Eb__0_mF701C2366616FF7651766BC228D3E3CC704D9835,
  1092. ScriptingUnityCallback__ctor_mE91537431428F2BAE31F74C97511D1801B2B76BA,
  1093. FakeUDPExtension__ctor_m9909C64791CF0E33D3BC4A9EF5A0CD83731B4779,
  1094. NULL,
  1095. NULL,
  1096. NULL,
  1097. NULL,
  1098. UDP_get_Name_m70A3676CB1334C681DD38DA9A3A58D7D854FC52B,
  1099. UDPBindings__ctor_mCC17D7B8FF9A01CBBDACDB250F92451CAE9DA238,
  1100. UDPBindings_Initialize_mB5D70AECF387FD4853B2C8C13441400F76B8C1FD,
  1101. UDPBindings_Purchase_m6E867ECDA70899A560303597915C4D9AC54402A3,
  1102. UDPBindings_RetrieveProducts_m9071FB1685A15AA310CF02CD785091D465E15517,
  1103. UDPBindings_FinishTransaction_mCACDE296E30E5E9B9A4ABA3A57C8362CB2979ECB,
  1104. UDPBindings_OnInventoryQueried_m82D6D36598774DFAF94E85A6D3191584386AFB11,
  1105. UDPBindings_RetrieveProducts_mF3C89574016423E1BCDF913DEE85B994B9B8489A,
  1106. UDPBindings_Purchase_m45DF1F8D92447D7383D01797E59EC4B3F28F83E6,
  1107. UDPBindings_FinishTransaction_m4622B1CB1D217ADC06D774AD233114FCA9F52D3C,
  1108. UDPBindings_StringPropertyToDictionary_m39B952E8FF7D956C5818D9BDAB3E6F095CE6EA10,
  1109. UDPImpl_SetNativeStore_mE6BF4249E85915BF98457E2D9ABD26896BA955AD,
  1110. UDPImpl_Initialize_m856683942B1E72EBBA2C03D2DEF0A4D4A24DDF70,
  1111. UDPImpl_RetrieveProducts_mF219F897C8726F2E00D24E37241DF7816801C2D6,
  1112. UDPImpl_Purchase_m2FE4F9AA04774FFB1F9FBA449C6E57E61412B1E5,
  1113. UDPImpl_OnPurchaseDeferred_mD181FC617E85EB85048FAFB5C190979C2C9F170B,
  1114. UDPImpl_FinishTransaction_m0926C1E511ECAF82484CDE4430A53BC4665AE803,
  1115. UDPImpl_DictionaryToStringProperty_m0C3B83E927934260F67FC7329328496F327A16DB,
  1116. UDPImpl__ctor_m76DDF676AAEEF16864C212AF4F3067E8494E53BC,
  1117. U3CU3Ec__DisplayClass10_0__ctor_mF1B0D32B7DC643E0DF4DF4101AD8261CD33A8650,
  1118. U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eg__retrieveCallbackU7C0_m089FBA707F15C0733AB9623189408682CEAB6824,
  1119. U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__1_mF3763D2E4FF48AEC059193028E14BC784F479278,
  1120. U3CU3Ec__DisplayClass11_0__ctor_m892A56A497D981D4387D76978F75F8A8ED72F66F,
  1121. U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m005372A7A362E83C9FA8C9E826D03CDC750BEB2C,
  1122. UDPReflectionUtils_GetTypeByName_m26748778D6FA4CCB984BF47429E7F482F353C400,
  1123. UDPReflectionUtils_GetAllAssemblies_m61C9FE53E7130D9F2E261538B11666B679399E94,
  1124. UDPReflectionUtils_GetTypes_mF549D6ACE95CE2FD623113E943A65BFFC67EFDB7,
  1125. UDPReflectionUtils__cctor_mC38EF4E2397351D025D3BE4F017BE5C58E5EE0D4,
  1126. U3CU3Ec__DisplayClass6_0__ctor_m904B6C1C4442C69C8F2B22E576F05F2B99A3732E,
  1127. U3CU3Ec__DisplayClass6_0_U3CGetTypeByNameU3Eb__0_mE562C8B0ECB0EDD67151846249850549E5396DE1,
  1128. InventoryInterface_GetClassType_m10737C1664C2EFEF67AEF67987633D8FBA9C00CA,
  1129. InventoryInterface_GetProductListMethod_m5A7B9400947F108080DB3C0F522C9798E90D0669,
  1130. InventoryInterface_GetPurchaseInfoMethod_m6F8F663AEC7F4654C65A6CADDF8176877D6CDF43,
  1131. InventoryInterface_HasPurchaseMethod_mDC03C925282E5CB8F59D68590300B80B77691F4E,
  1132. ProductInfoInterface_GetClassType_m3439925DE53E57C7A4458FD57E713D9F52C1E625,
  1133. ProductInfoInterface_GetCurrencyProp_m4E4121C55EBC9BD58E603CD7DE11A3F6BAA0CF4F,
  1134. ProductInfoInterface_GetDescriptionProp_m059605088C221E9566919514E62A1A72C0F9AE39,
  1135. ProductInfoInterface_GetPriceProp_mFA43FA2FD73B1ABA1246C03299A427B14D624D32,
  1136. ProductInfoInterface_GetPriceAmountMicrosProp_m164F27C12024DE1DB4791B5BD11D0B85AB2679F8,
  1137. ProductInfoInterface_GetProductIdProp_m12571C88A3B8424D85C95D70E6FE05206582F7CB,
  1138. ProductInfoInterface_GetTitleProp_m56C31D22C70E0EC6E2E261033035B871B8B964A0,
  1139. StoreServiceInterface_GetClassType_m2969A5DF58984F95FF6C616A0ADE15C79D412F1C,
  1140. StoreServiceInterface_GetNameProp_m1CFA6C61AFA7966244BAA572BEAFFE5B6A29CCCC,
  1141. StoreServiceInterface_GetName_mC41966B0C100102BC137679E7A3B25057D7909D8,
  1142. UdpIapBridgeInterface_GetClassType_mC7A8F5D6A4317B6A791F52E046724086A8F1BAEF,
  1143. UdpIapBridgeInterface_GetInitMethod_mD6DE8995E5662C072A9FC589BF6D809D20E1EAD3,
  1144. UdpIapBridgeInterface_GetPurchaseMethod_m9616655B55363E72B85FCDD726FBC1D049309055,
  1145. UdpIapBridgeInterface_GetRetrieveProductsMethod_m6EDB2AFF6E367F47217E0BE4D2455F4FDB5BBA6C,
  1146. UdpIapBridgeInterface_GetFinishTransactionMethod_m40E3E8F5F41A5E88ED74401B7138D15611FD0B1F,
  1147. UserInfoInterface_GetClassType_m1516981C261FEE915B9C492542E5AA8A34B3240E,
  1148. AppleJsonProductDescriptionsDeserializer_DeserializeMetadata_m3BB9308C095DC20A6FB93D935AA927B6ADA8B3A9,
  1149. AppleJsonProductDescriptionsDeserializer__ctor_m1F845020E3FFCD14A440A2A36BEF4CB11D68ACF4,
  1150. AppleProductMetadata__ctor_mD8E3F61B922CCD601F17439714660DCC400A1146,
  1151. AppleStoreImpl__ctor_mBD0FC70F117D699AE7E7F1A9AE371A89E09F20E0,
  1152. AppleStoreImpl_SetNativeStore_mCAA38D79F89B739BD7E1F4FEA7A363D0F64AF0F0,
  1153. AppleStoreImpl_get_appReceipt_mE698AC3E11676A40E6D562556940523347B0D3F0,
  1154. AppleStoreImpl_get_appReceiptModificationDate_m3A9E1D89ADD3B8F416AC12F692E4B0AAE976FFCB,
  1155. AppleStoreImpl_OnProductsRetrieved_m9D235101ACE0033B59D230AC021B17BFA54480D2,
  1156. AppleStoreImpl_HasInAppPurchaseReceipts_m4FB82D514565F80413D164C9E6FEC989A5063695,
  1157. AppleStoreImpl_EnrichProductDescriptions_mE6813BD5D386C148DFA1DAFBE16DB305B9C2AFA5,
  1158. AppleStoreImpl_FindMostRecentReceipt_m12E86A817828E8985BB6BB107EA65AAB15F32B3F,
  1159. AppleStoreImpl_FirstNonCancelledReceipt_m1EABDCB6CC88E2DA54F76260AEA582E52DB86588,
  1160. AppleStoreImpl_OnPurchaseDeferred_m6CE392E89FC84BFAE015141AE7D933875F05948C,
  1161. AppleStoreImpl_OnPromotionalPurchaseAttempted_m018CC2E31C3E716DF380FBA0C42715420DD4C20B,
  1162. AppleStoreImpl_OnTransactionsRestoredSuccess_mCF4359ADC99EB4F78ED748EBDF2B94D78C2034F1,
  1163. AppleStoreImpl_OnTransactionsRestoredFail_m3973CE52BCA38F157074CE96657F42276547CEBD,
  1164. AppleStoreImpl_OnAppReceiptRetrieved_m07A1C89BD8A58041B10710852AC0AFBB1391310F,
  1165. AppleStoreImpl_OnAppReceiptRefreshedFailed_mA3A2B42ACADD43CB7244C05880415BB476FBF37F,
  1166. AppleStoreImpl_OnEntitlementsRevoked_m7E93E0684D4CC581523F49843E41D49861FEF85D,
  1167. AppleStoreImpl_RevokeEntitlement_mA67D94B765B300731F3E8DF4ECC6127CCF6E9349,
  1168. AppleStoreImpl_RestoreActiveEntitlement_m4888905FC32CE1254A1D2F2A30025D41B55210C3,
  1169. AppleStoreImpl_OnFetchStorePromotionOrderSucceeded_m77087CC477DACA11276EAC56DE4642CA0204E94C,
  1170. AppleStoreImpl_OnFetchStorePromotionOrderFailed_m72F451614574601471846DD036E5F3DC87E40B25,
  1171. AppleStoreImpl_OnFetchStorePromotionVisibilitySucceeded_mDE57FA25C43AE60A3CB9E1A57CE04319BE221E31,
  1172. AppleStoreImpl_OnFetchStorePromotionVisibilityFailed_m21E497011356CBA519B6C5A706FE613843C02D5F,
  1173. AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C,
  1174. AppleStoreImpl_ProcessMessage_mC2157FC76D7DBC1E2FC7BBDB7BBCF2A446DF4E39,
  1175. AppleStoreImpl_OnPurchaseSucceeded_mDF3F5F43794A92ED87BC1646383E2CF6EB7CB083,
  1176. AppleStoreImpl_GetAppleReceiptFromBase64String_m51D3D664D39BBD5F43C4A94B775F862787861923,
  1177. AppleStoreImpl_IsValidPurchaseState_mE2B8D7C431D213BE21C85965912FD361DEAFFFA0,
  1178. AppleStoreImpl_IsRestored_m2DBB3F30FC6B9598EA221FD38934C68D80DF6AE2,
  1179. AppleStoreImpl_IsSubscriptionRestored_m237B14594268FBB33683A4F955C8A21977BD28CB,
  1180. AppleStoreImpl_IsNonSubscriptionRestored_m427CCEABFB237DB04CF1162B6BB953E8F40D7F92,
  1181. AppleStoreImpl_UpdateAppleProductFields_m0538B8029D6D13B5219133386F86D43AB93B22EA,
  1182. U3CU3Ec__cctor_m0BA679B3E781098A2AF437EE2FB5A1AEFB539309,
  1183. U3CU3Ec__ctor_m774F236990A8E5BEDA0ABD30DFB68A51BD27ECC4,
  1184. U3CU3Ec_U3CFindMostRecentReceiptU3Eb__39_1_m0EAF11F86324724479F8DE02108184315C7E402E,
  1185. U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_0_m3D710E919FC9C1C18A2A353A6AF6DC700DF5C6F5,
  1186. U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_1_mEE957FEAECE8D83314CBD242345297AECB3E0BB3,
  1187. U3CU3Ec__DisplayClass39_0__ctor_m50A62C51D8680553E30D6D74C3FFB74F236DC1E5,
  1188. U3CU3Ec__DisplayClass39_0_U3CFindMostRecentReceiptU3Eb__0_m8E98A28648258BE4A3CB16BC41684CDDC447A989,
  1189. U3CU3Ec__DisplayClass64_0__ctor_m3A3126A85E3F8159D79D151B4984A67101EAD4DF,
  1190. U3CU3Ec__DisplayClass64_0_U3CMessageCallbackU3Eb__0_m707C03C1BB2C18BFE669B84303F966E2E8C4D094,
  1191. FakeAppleConfiguration__ctor_m63E4505C8C9B95858C7BBFB42EA2531479B73F50,
  1192. FakeAppleExtensions__ctor_m0865C755818A9426107461EE61181EC16A327A95,
  1193. MetricizedAppleStoreImpl__ctor_m4EC185ADFE1F5A3D36F1C371F67D3A3D25D04BB7,
  1194. MetricizedAppleStoreImpl_RetrieveProducts_mDBAEC2A8871E09E9C10AF8C7EEAD0513F0E105AE,
  1195. MetricizedAppleStoreImpl_Purchase_mD2556C27AC625ADF5E7D1B4005EC1098C07AECFF,
  1196. MetricizedAppleStoreImpl_U3CU3En__6_mC8110AE2E5F10AD50CC0DF3BD1E55F6FBCF46DA7,
  1197. MetricizedAppleStoreImpl_U3CU3En__7_m8D1390F64D308EE30EA8B398F3D67D99FECD94A8,
  1198. U3CU3Ec__DisplayClass10_0__ctor_m5CC80C6E0A40ABEC6DD0A0CA7AE53B3A2ABE93B9,
  1199. U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__0_m4BE5D94E20F2B17F3885422DE0B1096C2F759B4C,
  1200. U3CU3Ec__DisplayClass11_0__ctor_m5F43D94B9055AD615545604BF3A3BC460CE7223F,
  1201. U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m5EAF03211158EFC32B2ACD04B721FCECB3B39AA3,
  1202. NULL,
  1203. NULL,
  1204. NULL,
  1205. JSONStore__ctor_m4DD282A6EF45285AECA5A514FC93EEDF20726A73,
  1206. JSONStore_SetNativeStore_mA57807DA54ADEB75FC4CFD90C238E6E0D20095EE,
  1207. JSONStore_UnityEngine_Purchasing_IStoreInternal_SetModule_m0DD1A798C36C7FC81194DD7088D82BD88F69F219,
  1208. JSONStore_Initialize_m6F038EB353B23D8EE7323FF5F7D7C67D150B47B0,
  1209. JSONStore_RetrieveProducts_m3A4C2A6A378D100A71E674DE95281779D55692CE,
  1210. JSONStore_Purchase_m8E6F174FC145C4AE226B6A2981B5152A4D04419E,
  1211. JSONStore_FinishTransaction_m18575AA2005FB1428C7EFCCEE479FC1296CDF9E3,
  1212. JSONStore_OnSetupFailed_mA82E1D0BF98A86C54303784CBD84FFE724564CCA,
  1213. JSONStore_OnProductsRetrieved_mBDAD438AF037964721F33C0744A5A643E137A1F8,
  1214. JSONStore_OnPurchaseSucceeded_m09A0AB98491589C368AA8C977FE51CCC6DD98D13,
  1215. JSONStore_OnPurchaseFailed_mB029FDC26201096ED60C8F5EF06072581F07DF6D,
  1216. JSONStore_OnPurchaseFailed_m5179D59E1A1843867CA5755BEA517D67B08EB698,
  1217. JSONStore_ParseStoreSpecificPurchaseErrorCode_m96B6CFD940F442FE03EFB7C504F87DAFDEE1DF4E,
  1218. MetricizedJsonStore__ctor_m2ADEC3C30AF634B4C5772692B5AAD279FD6F63BC,
  1219. MetricizedJsonStore_RetrieveProducts_mA95C1B26222726C50A82B9A3E989C7BF73BFEB99,
  1220. MetricizedJsonStore_Purchase_m462F91A5D586E569EAD21DB49E874F59DFE76D01,
  1221. MetricizedJsonStore_U3CU3En__0_m5EB59AD3CD8FF59D4C2802141AF73171E8B2BA58,
  1222. MetricizedJsonStore_U3CU3En__1_mF5C2E20C0BEECCCB6167596CA562B21E660225C2,
  1223. U3CU3Ec__DisplayClass2_0__ctor_mB7D17271A19DD8FCA4C84F0284C08F86C710ABAC,
  1224. U3CU3Ec__DisplayClass2_0_U3CRetrieveProductsU3Eb__0_m4FC8F6782C5D5836A28CE31DAEEF5669FD656978,
  1225. U3CU3Ec__DisplayClass3_0__ctor_m2FC9B21CB2383A765C3BC78DBB5A277C20B11037,
  1226. U3CU3Ec__DisplayClass3_0_U3CPurchaseU3Eb__0_mB695025A890C2770D2064621F70C70A317D6728B,
  1227. NativeStoreProvider_GetAndroidStore_m037D7302B0F9C3259D0279BB287E98226C87A9F6,
  1228. NativeStoreProvider_GetAndroidStoreHelper_mD5E36DD90BBEC32214E179C8750525C32BBDABF9,
  1229. NativeStoreProvider_GetStorekit_m646172E0CBD784F0C22D8692EA371897259C611B,
  1230. NativeStoreProvider__ctor_m07B2B33D02263814FE48940ADF0A03982B5865DE,
  1231. DialogRequest__ctor_mC3E10040E1B78AB04AA6D60282493E0E6945BE3A,
  1232. FakeStore_get_unavailableProductId_m2BC9F52E88C1A7FE386B45F1EB97022FA23D2591,
  1233. FakeStore_Initialize_m6E65BC30AF8771CBAEF2CA1C3B96E37C1FE0628E,
  1234. FakeStore_RetrieveProducts_m303849A4FCAEE4E4E5069E3DF509FB7A93096C17,
  1235. FakeStore_StoreRetrieveProducts_mC88F1F4CDF525D65CAC62B0F647CD96160FE7400,
  1236. FakeStore_Purchase_m48FB0953249E8DDD1B7ABDB3A42E30F143EC50B3,
  1237. FakeStore_FakePurchase_m4B4EA44A636EA24B26B3308FA680E8BA131063F4,
  1238. FakeStore_FinishTransaction_mB9B6A7DFC8B82401097DB06E3C811B59E95CF074,
  1239. FakeStore_FinishTransaction_m1B0BB74DB65197CCCBC668B8E0B1385837B49486,
  1240. NULL,
  1241. FakeStore__ctor_m529FB72CF8BE9F6C28833C8BD8B4C6D5C2948A71,
  1242. FakeStore_U3CU3En__0_m8C016780A5CA15C80D4C80FD4E1163BCA7C2DD47,
  1243. U3CU3Ec__DisplayClass13_0__ctor_m3A44246DEDB7046A5C81ECA50E9873C799BC5372,
  1244. U3CU3Ec__DisplayClass13_0_U3CStoreRetrieveProductsU3Eg__handleAllowInitializeOrRetrieveProductsU7C0_m0C75119A8FFD643058F5831A798B17FD8AB12F03,
  1245. U3CU3Ec__DisplayClass15_0__ctor_m986BB38436CE07B57B74D5A928F3D5B1E23E9FA0,
  1246. U3CU3Ec__DisplayClass15_0_U3CFakePurchaseU3Eg__handleAllowPurchaseU7C0_mAA346ACDF0ACBA0832423F884022D53020F48D9E,
  1247. LifecycleNotifier_OnDestroy_m246944B7AEB9D6DE47CB3AF275EE9614B549B0CB,
  1248. LifecycleNotifier__ctor_m9A95DEEA574F6E2E00912E48621EA6B5A3E6F883,
  1249. UIFakeStore__ctor_m64E1D7567F361F1C989B8C4AB16797C59F318A91,
  1250. NULL,
  1251. UIFakeStore_StartUI_mAB071EA2DA1BBFE742A2E703B990B9F1F1451236,
  1252. UIFakeStore_InstantiateDialog_mD026EE9DD7C69F6C2249396F88E07B176C38AE43,
  1253. UIFakeStore_GetOrCreateFakeStoreWindow_m50463EF1F86C75C233FEC5FD8489D0307561E58F,
  1254. UIFakeStore_AddLifeCycleNotifierAndSetDestroyCallback_mDE17957F5B9147E4CBFEFAF588B87C2A7630396D,
  1255. UIFakeStore_EnsureEventSystemCreated_mE117DF9CE72DF03351C73E80A6198C6B45F63F7B,
  1256. UIFakeStore_ConfigureDialogWindow_mED9380970BA858FBAB0CD91F8EDF705F1C0CE81D,
  1257. UIFakeStore_ConfigureDialogWindowCallbacks_mAC7C799D2855D4FFD5348FBAB1B310BE81EBEBDD,
  1258. UIFakeStore_CreateEventSystem_m8338D2EE206C65F141FC341A0276BB7B5B246FC7,
  1259. UIFakeStore_CreatePurchaseQuestion_mC3B18AD45DE1E6C48EE133B328E03CD36F3A2796,
  1260. UIFakeStore_CreateRetrieveProductsQuestion_mA8F54CD710F267A62CA5F7F8A03AE124919B1D3F,
  1261. UIFakeStore_OkayButtonClicked_m26F1DD23773A273FF8FFFF3CB608C320C5B64DAD,
  1262. UIFakeStore_CancelButtonClicked_m52437E1F81879351852E31764FA5F23FA1603128,
  1263. UIFakeStore_DropdownValueChanged_mF83E1BFE1626BE9022798927E752484177080547,
  1264. UIFakeStore_CloseDialog_mE8B51134B192C2621038E48FF09021722AB364F6,
  1265. UIFakeStore_IsShowingDialog_mBAC6E95889588F5375EC69840FE8B5E453ECDB36,
  1266. UIFakeStore_U3CAddLifeCycleNotifierAndSetDestroyCallbackU3Eb__14_0_m107AE87F0E9C1A0ED41726E9437A7A661F59BB8C,
  1267. U3CU3Ec__cctor_m8EF9FDCCD5BBBB1967B8D454430BCE9FF77B3B2C,
  1268. U3CU3Ec__ctor_m56FEB4156B7305825949898B363E9D59A69CB8F4,
  1269. U3CU3Ec_U3CCreateRetrieveProductsQuestionU3Eb__20_0_mA8807138FF30C33760DA743C4000952ED76A1083,
  1270. NULL,
  1271. NULL,
  1272. UIFakeStoreDropdown_DoPopup_mAF6A20CB635535553421DB5EEC2AF44FC117B30D,
  1273. UIFakeStoreDropdown_OnOptionSelected_m895D124CFA1CB9C95289167A3E5FE6ECD54C0144,
  1274. UIFakeStoreDropdown_SetOptions_m22E267F240163FF762D8A2217F10380D0F5446A3,
  1275. UIFakeStoreDropdown_SetSelectionAction_mF781B80685CEF7F7E43A2349CADE6B621C95F8E9,
  1276. UIFakeStoreDropdown__ctor_mDEBD1428CA136C9AB9C4458CFC4958C72F3F2BB2,
  1277. UIFakeStoreWindow_OnGUI_mD394ECF8E08AEAEC2A5BE6EDEA91D06104E2B6C2,
  1278. UIFakeStoreWindow_CreateCenteredWindowRect_m6FB016D6FB7383922ACD9B33A35CCAE56846421B,
  1279. UIFakeStoreWindow_DoMainGUI_m81A28A95C62E330EC8E8F529153669A57E105FD6,
  1280. UIFakeStoreWindow_DoDropDown_m68F2D70DC61584586685E077EC6682C59436F0AE,
  1281. UIFakeStoreWindow_OnOkClicked_m041427DA6DF343598DF6BAFAF51743F184B4845E,
  1282. UIFakeStoreWindow_OnCancelClicked_m75F9C08F8DE6EC8409913B90429CA8E134790979,
  1283. UIFakeStoreWindow_ConfigureMainDialogText_mD9780645036660994548B1A7B7B54D486502CF18,
  1284. UIFakeStoreWindow_ConfigureDropdownOptions_m61A1D64ADA6FDC639FDAFC5E7DF479497ECAFC0A,
  1285. UIFakeStoreWindow_OnDropdown_m6F51312DC9880528B18A69C39B3EA184B8DDA82A,
  1286. UIFakeStoreWindow_AssignCallbacks_mFA62C84BEAD1340B9EC4C9AB487595F2237572BC,
  1287. UIFakeStoreWindow__ctor_m3680D3337EE6228226AFD797A42215306F286D24,
  1288. Price_OnBeforeSerialize_mB8D86198F98F2C071F52B3B344F00E6D4E4133FC,
  1289. Price_OnAfterDeserialize_m4C666E7F3D6C7CD86F74126DC8705A87D7377484,
  1290. Price__ctor_m9D2D67B01A6B2596B79CFCD0C90561521FAC7FAF,
  1291. LocalizedProductDescription_get_Title_m3A50BEABD22AD26AF7CF8DACF44D1ED8C0A5638B,
  1292. LocalizedProductDescription_get_Description_m79D3AC1D1434F0C52D8A5E7DF2A8A5A34EE40C76,
  1293. LocalizedProductDescription_DecodeNonLatinCharacters_m21582AF3504395BE6B466A8C6F0A2D0E17C1A7F1,
  1294. LocalizedProductDescription__ctor_m17B962DDB3245C5AB3ECF2C8F4EEDF36192DC248,
  1295. U3CU3Ec__cctor_m0AEB720B7AEFA93C8515D942EAB6D6A2EB8D525A,
  1296. U3CU3Ec__ctor_mA07F2D3B66E2247A501FFB2809F694E3C93D12B7,
  1297. U3CU3Ec_U3CDecodeNonLatinCharactersU3Eb__11_0_m49D06E09041CAA0F4BF8AFE59E7CA8BF5C22990A,
  1298. ProductCatalogPayout__ctor_m88A3A65A1D40D0A24C0F52FE1F102FE442242C4A,
  1299. ProductCatalogItem__ctor_mF35A56CDC252B7A9FDCC17A8545CA1B327F764FB,
  1300. ProductCatalog_get_allProducts_m93A191445C8495D516A695D8708996C8790EF1C7,
  1301. ProductCatalog_Initialize_mCDB5FD052E314BC8330EEB0A3ECE7449578ED154,
  1302. ProductCatalog_Initialize_m4B563581D4C235DD2CA953C3897E025EA71504B4,
  1303. ProductCatalog_Deserialize_m93C22260C98E26EF73F5AC00168BBFE1DC073855,
  1304. ProductCatalog_FromTextAsset_m570290FA1756DCE9F4A59168A84941AE1AC38FF6,
  1305. ProductCatalog_LoadDefaultCatalog_m56712F565AD719D1C8ECF7537CC0E5F8F533C89D,
  1306. ProductCatalog__ctor_m174D3B7D0C5E9CE1F7C008361FD014516FB0285D,
  1307. NULL,
  1308. ProductCatalogImpl_LoadDefaultCatalog_m60AE28DEAACE2BEC92C132DA2E3BD1EAE8D16F9A,
  1309. ProductCatalogImpl__ctor_mDF5D74610CE45F8F90A052D097F80E180B18B1F6,
  1310. StandardPurchasingModule_get_util_m8C944C45C8AC751BCC2DB1CE4E8944967FFAE531,
  1311. StandardPurchasingModule_set_util_mA38054A46DC22BEC0B431866FCA579E1954A102A,
  1312. StandardPurchasingModule_get_logger_mD23C1CB19DCF0A64F078A38AEF31D849E10DCFBF,
  1313. StandardPurchasingModule_set_logger_mF4E6AF66082ABE09AB49EFBEA8255DE33C90ADE0,
  1314. StandardPurchasingModule_get_storeInstance_m4DB229ECA4FF6B1D461558C6A88E094A278DB345,
  1315. StandardPurchasingModule_set_storeInstance_mC35664D970638EEE0A8EC2404628D5B156E45690,
  1316. StandardPurchasingModule_get_telemetryMetricsInstanceWrapper_mF393B4FAA53F486752C053600DC1218679486040,
  1317. StandardPurchasingModule_set_telemetryMetricsInstanceWrapper_mAA596C806087E2F27BD0D49136A3B431EB3AA887,
  1318. StandardPurchasingModule_get_telemetryDiagnosticsInstanceWrapper_mC8A3736751296DAF9BD4CC9910D1A60EEAD80AC0,
  1319. StandardPurchasingModule_set_telemetryDiagnosticsInstanceWrapper_m97A16E0C47FF1CBDB6BB7661AB681BBF6E62B73E,
  1320. StandardPurchasingModule__ctor_mE2C1F89FB37CE268AC4F203252F97BC67B320C72,
  1321. StandardPurchasingModule_get_appStore_m19E96FCA4517781E9166DAA7E3413D7B0D61EE74,
  1322. StandardPurchasingModule_set_appStore_m8D0ED9CCFF69A230E54A2F29ACB91EE5DDB84271,
  1323. StandardPurchasingModule_get_useFakeStoreUIMode_m6850C310CFF6F89EA69938EA4052002AACC78CEE,
  1324. StandardPurchasingModule_set_useFakeStoreUIMode_m2221C886EC8FF153B0C2210AF2EF6DED271B826D,
  1325. StandardPurchasingModule_get_useFakeStoreAlways_mC02952E02CD1C51EAE0E5FCCF807285AF1833974,
  1326. StandardPurchasingModule_set_useFakeStoreAlways_mC217142239C37AA088BC50E0BD995F51A0583C23,
  1327. StandardPurchasingModule_Instance_mBD397180F4D74807B93E47E71D7320463B1C3A1A,
  1328. StandardPurchasingModule_Instance_m3744500352443C6EAED3EC8285FED73A4D166ADE,
  1329. StandardPurchasingModule_Configure_m0C021F0574CB43D28767A83DB6FA0CBCEBC6CC56,
  1330. StandardPurchasingModule_InstantiateStore_mFA7F7D395459813876216A55BF1935F93DAAAF9C,
  1331. StandardPurchasingModule_InstantiateAndroid_m5B285A77AB87D7EEAFF4EFCE781899BC19EC640D,
  1332. StandardPurchasingModule_InstantiateGoogleStore_m9F54FB1372083BB0A1A28590DB8C26431B58BC51,
  1333. StandardPurchasingModule_BindGoogleExtension_mA9738A7408E00968C65ECE13DF4E1BE81028A1F4,
  1334. StandardPurchasingModule_BuildGooglePlayStoreConfiguration_m503BDBDB6D9CCC4FB994671A4D53274D57869299,
  1335. StandardPurchasingModule_BindGoogleConfiguration_mF804390F086950256584BEF438558E811A399028,
  1336. StandardPurchasingModule_BuildAndInitGooglePlayStoreServiceAar_mF1CAEB638956A5A42ECB90161E807AF08CE7F2BF,
  1337. StandardPurchasingModule_InstantiateUDP_mA6AB14925A7E1C280EC90CDEF0784B81EEAF310A,
  1338. StandardPurchasingModule_InstantiateAndroidHelper_m0E19818F7CAE1C080316211C8630615116C9AEE6,
  1339. StandardPurchasingModule_GetAndroidNativeStore_mD9A06FF2B55E51E17017B265A78DEE0996936956,
  1340. StandardPurchasingModule_InstantiateApple_m1C37E2A2103096CB3E2BD67FB7061A5F417FCDF9,
  1341. StandardPurchasingModule_instantiateWindowsStore_mCCC8645E458D205255D1B8EB7F9CFED6C00B37F0,
  1342. StandardPurchasingModule_InstantiateFakeStore_m75B6DD6C4C9DA71E572438ABA1270E57A58C6DEE,
  1343. StandardPurchasingModule__cctor_m23284F1558C286CB2E6EC0EB49E00442F37537E5,
  1344. StoreInstance_get_storeName_mCABF6348271D6010C0B37F3FCDFD4588B3B4E5F5,
  1345. StoreInstance_get_instance_m4F4739A78FFBF202811C0E886F3D8733F660F3DB,
  1346. StoreInstance__ctor_mEB51377D6F9CB9F344D2717ED0EAA999E888D5D3,
  1347. MicrosoftConfiguration__ctor_mD9DFFF7108C127CF3E542D2EAAC9E49E036BB365,
  1348. StoreConfiguration_get_androidStore_m375B89A150E3F92E8C9F36F75188637F1FF8A74E,
  1349. StoreConfiguration_set_androidStore_mC489914742751F34F6602DA872EB2B3BB3939F17,
  1350. StoreConfiguration__ctor_mADD6F4BFB5F946DF21CD51CBAAEEBE9C6DFC57EA,
  1351. StoreConfiguration_Deserialize_m326EDC43F29A0F2B546B9D6B212A8A124BD336A1,
  1352. TimeSpanUnits__ctor_m69AF2FA3540250AD07DE4C3CD8E97F64EA8B6EF1,
  1353. SubscriptionManager__ctor_m0ECAAC1D1E250FF4913D790B1F9341EEA14C1826,
  1354. SubscriptionManager_getSubscriptionInfo_mDA75086D3BBB5F42857356C9B05B3D3C1282B66E,
  1355. SubscriptionManager_getAmazonAppStoreSubInfo_mC2FBA869F8527BB7F45955A219080EB533445F96,
  1356. SubscriptionManager_getAppleAppStoreSubInfo_mE2E2FA57D9CA97BA5BDCFC9AB0B47C84CD73A908,
  1357. SubscriptionManager_findMostRecentReceipt_m0FD65E6D239431E638811715970081B4999F2A3D,
  1358. SubscriptionManager_getGooglePlayStoreSubInfo_m33014BAC48470E67FD8C7DD5A73840AFB836B186,
  1359. U3CU3Ec__cctor_m9734FC8CA5E2B48A77EFFE2156421123B8635EB0,
  1360. U3CU3Ec__ctor_m199CB830F8629981ADA4F0C991B4F508A2E86750,
  1361. U3CU3Ec_U3CfindMostRecentReceiptU3Eb__11_0_m6F59F1652B537921E2705E8DC1D55603C8D4C3E0,
  1362. U3CU3Ec_U3CgetGooglePlayStoreSubInfoU3Eb__12_0_m4F386D12BEC0A7E102D3CFE3743E47A4BC8EAE27,
  1363. SubscriptionInfo__ctor_mCE7F9D5333417F7A11001D0231307E68BB191E3A,
  1364. SubscriptionInfo__ctor_mAD14FD7347A1867CD6A67162726A88AD696B9D94,
  1365. SubscriptionInfo__ctor_mF959D7594682F5F1B8C3D725BC19352E4A4C289A,
  1366. SubscriptionInfo_isSubscribed_m9EAA4FD5FA07828BDD765F8243F49B8B2CFC0C62,
  1367. SubscriptionInfo_isExpired_m289877A70874E038E09275C90697D3EAA23C4535,
  1368. SubscriptionInfo_isCancelled_m561EFAC63331FB328D5F15695B246337FEFF07D8,
  1369. SubscriptionInfo_getExpireDate_m2F7EF006E79571EFECD46A91F83181A3F1CA147C,
  1370. SubscriptionInfo_nextBillingDate_m0FB32D84F4B95E127E6B0C537098AF179831E7BA,
  1371. SubscriptionInfo_accumulateIntroductoryDuration_m503F206556C2124CF3641CC0952B16718A52B468,
  1372. SubscriptionInfo_computePeriodTimeSpan_m999CB3C5CFF7DBB5579A5C196BBFDDC9D034B6ED,
  1373. SubscriptionInfo_computeExtraTime_m45672397041F6C14857C72C446EB0716CAF0DF08,
  1374. SubscriptionInfo_parseTimeSpan_m3222C7A089EC328707F30D57576DAF0E0174AA87,
  1375. SubscriptionInfo_parsePeriodTimeSpanUnits_m35F883FE27081A3998B5A723683EC875A365085B,
  1376. ReceiptParserException__ctor_m602A8964067A5FAF6A0E1D5C59EF5784CD1A2D01,
  1377. ReceiptParserException__ctor_mD3C699CB23161C65A8882A879D36066E37E294DF,
  1378. InvalidProductTypeException__ctor_m79E0FD982F7188E0D74E438205909876F0A5B486,
  1379. NullProductIdException__ctor_mEA2182523EBF3FD28F6AAEA328255EC125C5ADED,
  1380. NullReceiptException__ctor_mBDE195811C11A65AD4BC519D3DF51762A3F7EC41,
  1381. StoreSubscriptionInfoNotSupportedException__ctor_m4DBA3E5AB3A76393010CE741CBD009062819D62D,
  1382. FakeTransactionHistoryExtensions__ctor_mD34E51963B91B68D7129023F958802CFE4962D97,
  1383. NULL,
  1384. NULL,
  1385. NULL,
  1386. NULL,
  1387. NULL,
  1388. NULL,
  1389. NULL,
  1390. NULL,
  1391. NULL,
  1392. NULL,
  1393. NULL,
  1394. NULL,
  1395. NULL,
  1396. NULL,
  1397. ExponentialRetryPolicy__ctor_mAC23DF035809BB5B3A13905A479E556F80E10D0D,
  1398. ExponentialRetryPolicy_Invoke_m897F5C1AE28B88A28112BD36DA204ACBED2515F6,
  1399. ExponentialRetryPolicy_AdjustDelay_m5B9A18AE35D79859E9E8364F29557A1A076325BF,
  1400. U3CU3Ec__DisplayClass4_0__ctor_m4E921B377C6E8A0A6DEDC027FA0EF79EC07C49F1,
  1401. U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__RetryU7C0_mFB4D1A3042FBBC528DE0DA514AB8D71E7971FB29,
  1402. U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C1_m3F1198382F690803E1CD999797BFA199A3737CBC,
  1403. U3CU3CInvokeU3Eg__RetryU7C0U3Ed__ctor_mE59EB90B01BF918DABBA240A8EF633FDA2171DF5,
  1404. U3CU3CInvokeU3Eg__RetryU7C0U3Ed_MoveNext_m66CDE84F2811E1552B9492E6A10BFB1A9030819B,
  1405. U3CU3CInvokeU3Eg__RetryU7C0U3Ed_SetStateMachine_mEA9B7E8890D9CD5A5CFC37034FF766F1A3AFF024,
  1406. U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed__ctor_m6E9FAD9BFB1C70140EA8B3B0E02741D572721B6C,
  1407. U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_MoveNext_m92AAD93E2C4B46099F44EA233BE9E7B5DD97006A,
  1408. U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_SetStateMachine_mAB950EC38EC7F7AD48DC7AEC0F9E4DE1830BFBAD,
  1409. GoogleConnectionRetryPolicy__ctor_m76204F7739D8093618588949A8A34E5D28EF61DC,
  1410. GoogleConnectionRetryPolicy_Invoke_m0128FBE97E777BD55195DCB74316FC5344752BCE,
  1411. GoogleConnectionRetryPolicy_AdjustDelay_m057F0DCA4CDF3153EAD3078E2C58DF47C1FE41F2,
  1412. U3CU3Ec__DisplayClass4_0__ctor_mBC098BE7B48A9D407A8146CDA753B2238DAA8CF0,
  1413. U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C0_m55D84DFAE6C4400161B3A2C725B0C1CF8EDC4CD2,
  1414. U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed__ctor_m139B7829A2AD72F87B71CD1A33B2527B71CF31B8,
  1415. U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_MoveNext_mEE765EE7B466758AA988889CD1161EFC3FF440B5,
  1416. U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_SetStateMachine_m573388BE4BB7D0DA0302B3B18F323CD9DC82B85C,
  1417. ProductDefinitionExtensions_DecodeJSON_m7416F243BB95C9C63B91D12D74A3F3A00A4656E6,
  1418. FakeMicrosoftExtensions__ctor_m4F9FFC593BF05E4A5FDDEB1ED71D2583B5D66886,
  1419. WinRTStore__ctor_mE5C6E24757C62599881D70F2AA1D8A82480FE311,
  1420. WinRTStore_Initialize_mDEF3CF5B9F0CAA017C44C1878E5D4CB08AC5EF0B,
  1421. WinRTStore_RetrieveProducts_m5480E3D22E25D41EDC18B4806BA4154BD2CE7B07,
  1422. WinRTStore_FinishTransaction_mC624FB22E6E7C13F50D0E611FCD6EC5B69CE908F,
  1423. WinRTStore_init_mA94BEFABDB0D1DE85C4F457B468DF2C246EB0FA6,
  1424. WinRTStore_Purchase_m467F9F8FD3A79225F610A48004C1A4C4186ADCF7,
  1425. WinRTStore_restoreTransactions_m93D2A3C481CA38BAE9DB9099955FE6AB10EB10F4,
  1426. U3CU3Ec__cctor_m29C0E94B6690D38BEE3FD1C980E88C9ED8B96E41,
  1427. U3CU3Ec__ctor_m38F009CF5EAC3E6F1FB96B45D44C650BAE93619E,
  1428. U3CU3Ec_U3CRetrieveProductsU3Eb__8_0_mED3B5305EC5CF5F0CA5F97E22DDD29DB1DCD65E2,
  1429. U3CU3Ec_U3CRetrieveProductsU3Eb__8_1_m376EA2F5E999011A34EE5C34493E597EACB31340,
  1430. NULL,
  1431. UnityUtil_get_currentTime_mE40001425F55E1A90761D51411B81DE0FB9DF1B5,
  1432. UnityUtil_get_persistentDataPath_m2AAF48A31B21C5A5ADC134ECB14E58D2D6CB5D46,
  1433. UnityUtil_get_deviceUniqueIdentifier_m1AC62056A917557653A37C47461FB4996C2F0337,
  1434. UnityUtil_get_unityVersion_mE2949234D9C1C02226C7CC83374FC11075EFB241,
  1435. UnityUtil_get_cloudProjectId_m3A658EA17D15C5F63C93B90A3FCC284DB3B8F86F,
  1436. UnityUtil_get_userId_m0D8EA6251AC88FE0FECA87BEB72AFD2D6FB6644C,
  1437. UnityUtil_get_gameVersion_m850F0EAB8708FC24BF42A80509CE69DF76405048,
  1438. UnityUtil_get_sessionId_m0621F738E17339143ACF624F474680C19C13D0D8,
  1439. UnityUtil_get_platform_mF687BB437A671685484C604A86E99863F419302D,
  1440. UnityUtil_get_isEditor_mDD2E04E6B1CA00D5F06563910E72688974EF418A,
  1441. UnityUtil_get_deviceModel_m594551957553EBEEB2704901C5FB8EB86F661AD7,
  1442. UnityUtil_get_deviceName_m4026083CFFD874134D2918202EA370E1E4B0864E,
  1443. UnityUtil_get_deviceType_mA5AA09B2292D7A3572DAC584AE95924F9EB2E58E,
  1444. UnityUtil_get_operatingSystem_mD92A36329BE72E6766CA9E5A2873F48CDE1DA838,
  1445. UnityUtil_get_screenWidth_m8A3081DB40110DD42D952ED8DD378DC16571DF71,
  1446. UnityUtil_get_screenHeight_m35BCB594BA71E47F19F3A5A08C7BD651E54238DF,
  1447. UnityUtil_get_screenDpi_mD80E2591FA819A2CACB39F1B2E611AE435A0FDF7,
  1448. UnityUtil_get_screenOrientation_mE5D6B673B93171EE6FE392AC040F0E7972E6E5A5,
  1449. UnityUtil_Uniject_IUtil_InitiateCoroutine_m8E0514A01EE0D435BA288DA4280089711785F681,
  1450. UnityUtil_Uniject_IUtil_InitiateCoroutine_m45F4BEA16B5ACF15D1293E48181C68DFBAFCD803,
  1451. UnityUtil_RunOnMainThread_mABF8141C1DCFB4CA8DF24451B65F5435294B27B5,
  1452. UnityUtil_GetWaitForSeconds_mB62D3D0EEC46AEB7849CF34DC0AC97962EE0C231,
  1453. UnityUtil_Start_m9A05D9A4FADF3C331170E85EFC8F27B922186248,
  1454. NULL,
  1455. NULL,
  1456. UnityUtil_PcPlatform_m6C26A9452CDF2A3DED239242E5618999880407C7,
  1457. UnityUtil_DelayedCoroutine_m2157CDC5CC835BDE12352016CB82A25C6634B632,
  1458. UnityUtil_Update_m5CFB1587D42E5A854FBB56F5985DDAFB30A3D3F4,
  1459. UnityUtil_AddPauseListener_mCA2B86FDD744EA10AEFA4A67DEBBFF36CEC45BAF,
  1460. UnityUtil_OnApplicationPause_m3325D8693C79C8F4D9CE2C9DA39443D55D07D3F7,
  1461. UnityUtil_IsClassOrSubclass_mAF60230AC46A684686AD3A7770CB08D3536E973A,
  1462. UnityUtil__ctor_mEB92A76AB1B9C942211165A08FCA4E9533E06288,
  1463. UnityUtil__cctor_mD87D721A40C447597EA6A2E5750381AAC8E8990E,
  1464. U3CDelayedCoroutineU3Ed__48__ctor_mDE418D0BD65328F25766EB4DA1477DCCE841D88E,
  1465. U3CDelayedCoroutineU3Ed__48_System_IDisposable_Dispose_m855222B8EDE19C80A1025598E59BC99B6C058540,
  1466. U3CDelayedCoroutineU3Ed__48_MoveNext_mB3801F6D60691ED8F0921767A84068E8C3B323F3,
  1467. U3CDelayedCoroutineU3Ed__48_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m3B259068ECF9C87736D21DEBDC7465E8B2A90D37,
  1468. U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_Reset_mA7A39D9903DC70DA5DB697EFF9D6D207EF4C5BF4,
  1469. U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_get_Current_m2A61E2B47B3F5CB1508DEBE50D585441AD6EF7A4,
  1470. NULL,
  1471. IapCoreInitializeCallback_Register_m15649B35E0B38B36617AF6B510BBB8CC37BD4B3E,
  1472. IapCoreInitializeCallback_Initialize_mFA2269B6DE0CD38655A57455457747CFF5EC8D9A,
  1473. IapCoreInitializeCallback_CacheInitializedEnvironment_m120A82DCA5B60A92819D8CA908E63BE219703417,
  1474. IapCoreInitializeCallback_GetCurrentEnvironment_m067A99A22E9AFA796E3A033A347F746BC3177A64,
  1475. IapCoreInitializeCallback_InitializeTelemetryComponents_m0FF7204282A99A54A50CC4C691BCDF373ECBF39D,
  1476. IapCoreInitializeCallback__ctor_m6E44A3E7FFD242CBE0873F9E2C9DA1CB1240CAD5,
  1477. U3CU3Ec__DisplayClass2_0__ctor_mD26B7CD05EAC67AEBA106C9BEA1F86810C737123,
  1478. U3CU3Ec__DisplayClass2_0_U3CInitializeU3Eb__0_m8EC8D03E9F215419C12C002864E69EEDCF4913E6,
  1479. GooglePurchaseBuilder__ctor_m6C1B7226BD1D12FD00A794B018D35E8BD543577D,
  1480. GooglePurchaseBuilder_BuildPurchases_mCBFBC50607A0B39F0A76BDF565745FABE1D69D0C,
  1481. GooglePurchaseBuilder_LogWarningForException_mBB4B675CA121EE06A50A6CA1A656E861ED13D5F8,
  1482. GooglePurchaseBuilder_BuildPurchase_m77518408286891FC35D2969E1930542E67EAC9A2,
  1483. GooglePurchaseBuilder_TryFindAllSkuDetails_m97BACAB34C63D99265895B07F1EAA156A1372066,
  1484. U3CU3Ec__DisplayClass6_0__ctor_m81FD27417D227650D3FC61A353728EC311F5AF85,
  1485. U3CU3Ec__DisplayClass6_0_U3CTryFindAllSkuDetailsU3Eb__0_m06177FDD20AF3974C5512277CCE8AC3D764DF009,
  1486. U3CU3Ec__DisplayClass6_1__ctor_m56696465C1EDEE255F035976B53D68B54593DD18,
  1487. U3CU3Ec__DisplayClass6_1_U3CTryFindAllSkuDetailsU3Eb__1_m8B9DF3FDBAF6F898611AB9CCD99B8C7921720C70,
  1488. GoogleReceiptEncoder_EncodeReceipt_m17FC37EB777C0CD19B0A1345C320C17F030911D8,
  1489. SkuDetailsConverter_ConvertOnQuerySkuDetailsResponse_m5F7D519F81EB07B3B3CDA466DE32AE8D128EEEF8,
  1490. SkuDetailsConverter_ToProductDescription_mFEF5C82FAF0E5B727EAAB8E7A8F2C37AF25B6C0A,
  1491. SkuDetailsConverter_BuildProductDescription_m17409FADBDD74BB66CC527C53CF84AB0D1C34218,
  1492. SkuDetailsConverter__ctor_mC285D9E06AD5329C3FE35C3680F97402B974599D,
  1493. NULL,
  1494. NULL,
  1495. NULL,
  1496. NULL,
  1497. NULL,
  1498. NULL,
  1499. NULL,
  1500. NULL,
  1501. NULL,
  1502. NULL,
  1503. NULL,
  1504. NULL,
  1505. NULL,
  1506. NULL,
  1507. NULL,
  1508. NULL,
  1509. NULL,
  1510. NULL,
  1511. NULL,
  1512. NULL,
  1513. NULL,
  1514. NULL,
  1515. NULL,
  1516. NULL,
  1517. NULL,
  1518. NULL,
  1519. NULL,
  1520. NULL,
  1521. NULL,
  1522. NULL,
  1523. NULL,
  1524. NULL,
  1525. NULL,
  1526. NULL,
  1527. NULL,
  1528. NULL,
  1529. NULL,
  1530. NULL,
  1531. NULL,
  1532. NULL,
  1533. NULL,
  1534. NULL,
  1535. NULL,
  1536. NULL,
  1537. NULL,
  1538. NULL,
  1539. NULL,
  1540. NULL,
  1541. NULL,
  1542. NULL,
  1543. AndroidJavaObjectExtensions_Enumerate_m8F0C46B6B35D61007DDD67D39C5ECD8A955ADA92,
  1544. NULL,
  1545. NULL,
  1546. NULL,
  1547. NULL,
  1548. GoogleBillingClient_GetSkuDetailsParamClass_m23B9C69DDF3CE5E6473D8D651D3DDA07151C2185,
  1549. GoogleBillingClient_GetBillingFlowParamClass_m58D8DA6228AFAD52D99ECA73F12DCA7F43FD7007,
  1550. GoogleBillingClient_GetSubscriptionUpdateParamClass_mA43B88A77C88EFB159589EB987A8336571E789B5,
  1551. GoogleBillingClient_GetConsumeParamsClass_m58C66A4B4CA41C79D27E3D1A9B5A1472FDB08E85,
  1552. GoogleBillingClient_GetAcknowledgePurchaseParamsClass_m01201653BC18C4E4F35BFD3936E0DB688F734AA9,
  1553. GoogleBillingClient_GetBillingClientClass_m1E14F996196BF4138635CAB42D07135D2D830887,
  1554. GoogleBillingClient__ctor_m8F30F078CA3B9AAD8D034AFFCF711EED39947B3C,
  1555. GoogleBillingClient_StartConnection_mA670096A33014C3C4D0F6D9D600000F16B725287,
  1556. GoogleBillingClient_GetConnectionState_m83E5EDB00BC624DD2E22E0158341489A6B9E54F9,
  1557. GoogleBillingClient_QueryPurchasesAsync_mC3B0E449DD7C822BEC42FAAFF66D4B8EB0796158,
  1558. GoogleBillingClient_QuerySkuDetailsAsync_m698A3D0AA846F93955C869F7842F63594DBFCF7F,
  1559. GoogleBillingClient_LaunchBillingFlow_mC4415F98D2442C74991C040DABF879219F0A0319,
  1560. GoogleBillingClient_MakeBillingFlowParams_mB97F07BB18F188942C5FEE9242A8C13F74C28037,
  1561. GoogleBillingClient_BuildSubscriptionUpdateParams_m97A7A6F6915CCB261135B1F72679A677CB6F9033,
  1562. GoogleBillingClient_SetObfuscatedProfileIdIfNeeded_m4892A481DA1DE9B548ED540F581A95CF0A917E9E,
  1563. GoogleBillingClient_SetObfuscatedAccountIdIfNeeded_m8F0E529640262D3F00CA1497A7E11933BCE3C2C8,
  1564. GoogleBillingClient_ConsumeAsync_m20CCB9AB464691E6DAE77D0C0B6011AC2554FCDD,
  1565. GoogleBillingClient_AcknowledgePurchase_m019D45043AC9BD3B1FC8B20187AA25A78188F9CD,
  1566. GoogleBillingResult_get_responseCode_m41C985D833239D91A30D60B5E0F78F63D40FCEDD,
  1567. GoogleBillingResult_get_debugMessage_mCBC8D3C771085DE43CFBF8A67CC21FDE52684CEA,
  1568. GoogleBillingResult__ctor_mA4E4F80D1EF645AC6E72981FA7F7E141F6601377,
  1569. GoogleBillingStrings_getWarningMessageMoreThanOneSkuFound_m7537B087FDB054238E02B64C5998D2FD4D4C3FD1,
  1570. GooglePurchase_get_isAcknowledged_m0C8DDEF734DE02C7F40F0E2818A0E0834FFC2C33,
  1571. GooglePurchase_get_purchaseState_m25B05A607B60519FBA52843CAEF8FD8FEE0752A9,
  1572. GooglePurchase_get_skus_mFB5A449AA1EE9433CFE668CDE90A55B7FDEB81A4,
  1573. GooglePurchase_get_receipt_mB7E801F89576DA092E7A95DC41037E0FDC9E026A,
  1574. GooglePurchase_get_signature_m72063440F5794869DB8A4DE3F56A73F4444786AC,
  1575. GooglePurchase_get_originalJson_m6708011BD0AE03F2280CD86A0F07875EA578D5BA,
  1576. GooglePurchase_get_purchaseToken_mEAE44EFF7955BD8A92147AC6A5B8A70A6541EDE7,
  1577. GooglePurchase_get_sku_m58FFD30FBFB7CD671E343E2C61CAE80582C9EB94,
  1578. GooglePurchase__ctor_m2EE677158EEE27268D0BABF905F4FC1E56E1063E,
  1579. GooglePurchase_IsAcknowledged_mE2F920ABCC295EA6F298E0AA74B4C3097C58F889,
  1580. GooglePurchase_IsPurchased_m0091EC5B71B28E403588B26FD73EC2C0A19D36D1,
  1581. GooglePurchase_IsPending_mB50CFCB4540C15FEEE6853C95CE3155C3D4C9E66,
  1582. U3CU3Ec__cctor_m3B5205D71CD68DEE8540207194DC751BCC9794B5,
  1583. U3CU3Ec__ctor_m696F4E3E542DD5C7ADEFA41805FB149F796B836A,
  1584. U3CU3Ec_U3C_ctorU3Eb__26_0_m7EE2EB1174F22732D41A2FB17B869FAAACFE612E,
  1585. GooglePurchaseStateEnum_GetPurchaseStateJavaObject_mBEFD71488906CB2105D270DACD285AFFE95C89E1,
  1586. GooglePurchaseStateEnum_Purchased_m3791A59F7885C918735F78345549C35C39E661F0,
  1587. GooglePurchaseStateEnum_Pending_m419C6870D3097EADAF00FF0D6FF5C486BFB13171,
  1588. GooglePurchaseStateEnumProvider_Purchased_m367280B3C4A0D25DE27159A38A1F7E8E10835F40,
  1589. GooglePurchaseStateEnumProvider_Pending_mDF35C16DB0772027E6013DFBA15969B13E3C0B75,
  1590. GooglePurchaseStateEnumProvider__ctor_mBE9E27B95EC11A8AD90B102BF49D0DD6CCA80780,
  1591. GoogleSkuTypeEnum_InApp_m3D8DF28E36C52A558A171EBE49300FE42E73C0B9,
  1592. GoogleSkuTypeEnum_Sub_m67C8DA9DA489930486A1A308049B9C52C2C071C3,
  1593. ProductDescriptionQuery__ctor_m231111ED1963D9EDF6B55DC53F1D32EB695BD3CF,
  1594. U3CPrivateImplementationDetailsU3E_ComputeStringHash_m88B6F9ABC0B2644814DC58FB9602948572F7E971,
  1595. };
  1596. static const int32_t s_InvokerIndices[845] =
  1597. {
  1598. 6399,
  1599. 5136,
  1600. 5226,
  1601. 5136,
  1602. 4623,
  1603. 4623,
  1604. 6399,
  1605. 5226,
  1606. 6399,
  1607. 5226,
  1608. 5226,
  1609. 2939,
  1610. 2939,
  1611. 9215,
  1612. 9215,
  1613. 9628,
  1614. 9628,
  1615. 6399,
  1616. 6269,
  1617. 4623,
  1618. 4623,
  1619. 4623,
  1620. 3762,
  1621. 3762,
  1622. 5226,
  1623. 6399,
  1624. 9661,
  1625. 6399,
  1626. 4623,
  1627. 2939,
  1628. 1678,
  1629. 4623,
  1630. 1196,
  1631. 6399,
  1632. 3762,
  1633. 6399,
  1634. 5226,
  1635. 5226,
  1636. 6399,
  1637. 6399,
  1638. 5226,
  1639. 6399,
  1640. 6399,
  1641. 5226,
  1642. 6269,
  1643. 5226,
  1644. 6269,
  1645. 5226,
  1646. 6054,
  1647. 5008,
  1648. 6399,
  1649. 26,
  1650. 6399,
  1651. 6399,
  1652. 6399,
  1653. 6399,
  1654. 6179,
  1655. 5226,
  1656. 5226,
  1657. 6399,
  1658. 5198,
  1659. 6399,
  1660. 5198,
  1661. 1678,
  1662. 1678,
  1663. 5226,
  1664. 1672,
  1665. 1678,
  1666. 5226,
  1667. 4623,
  1668. 5226,
  1669. 6399,
  1670. 6399,
  1671. 6399,
  1672. 6399,
  1673. 5226,
  1674. 6399,
  1675. 6399,
  1676. 5226,
  1677. 2939,
  1678. 1678,
  1679. 1672,
  1680. 1191,
  1681. 1309,
  1682. 3762,
  1683. 9472,
  1684. 5226,
  1685. 3762,
  1686. 2939,
  1687. 1672,
  1688. 2939,
  1689. 6399,
  1690. 5226,
  1691. 2939,
  1692. 6269,
  1693. 4623,
  1694. 9003,
  1695. 9661,
  1696. 6399,
  1697. 4623,
  1698. 6399,
  1699. 2939,
  1700. 6399,
  1701. 6399,
  1702. 5226,
  1703. 0,
  1704. 0,
  1705. 0,
  1706. 0,
  1707. 6399,
  1708. 5226,
  1709. 5226,
  1710. 5226,
  1711. 6399,
  1712. 5226,
  1713. 5226,
  1714. 5226,
  1715. 2939,
  1716. 5226,
  1717. 5226,
  1718. 2939,
  1719. 380,
  1720. 5226,
  1721. 2939,
  1722. 2939,
  1723. 2939,
  1724. 2939,
  1725. 5226,
  1726. 5226,
  1727. 2939,
  1728. 2939,
  1729. 1678,
  1730. 5226,
  1731. 5226,
  1732. 3762,
  1733. 6179,
  1734. 5226,
  1735. 5226,
  1736. 5226,
  1737. 2939,
  1738. 3762,
  1739. 6399,
  1740. 6399,
  1741. 5226,
  1742. 1678,
  1743. 2939,
  1744. 6399,
  1745. 6399,
  1746. 19,
  1747. 5198,
  1748. 6399,
  1749. 1678,
  1750. 1672,
  1751. 5198,
  1752. 1678,
  1753. 1672,
  1754. 6399,
  1755. 6399,
  1756. 6399,
  1757. 6399,
  1758. 6399,
  1759. 6399,
  1760. 243,
  1761. 2939,
  1762. 2939,
  1763. 2939,
  1764. 1678,
  1765. 1678,
  1766. 1894,
  1767. 3762,
  1768. 4623,
  1769. 2939,
  1770. 2939,
  1771. 1678,
  1772. 9661,
  1773. 6399,
  1774. 3679,
  1775. 3762,
  1776. 4623,
  1777. 3762,
  1778. 4623,
  1779. 6399,
  1780. 5226,
  1781. 6399,
  1782. 6399,
  1783. 5226,
  1784. 6399,
  1785. 5226,
  1786. 6399,
  1787. 2939,
  1788. 6269,
  1789. 6179,
  1790. 9003,
  1791. 6399,
  1792. 9661,
  1793. 6399,
  1794. 4623,
  1795. 3632,
  1796. 4605,
  1797. 4605,
  1798. 1678,
  1799. 2939,
  1800. 6399,
  1801. 3762,
  1802. 6399,
  1803. 5226,
  1804. 6399,
  1805. 5198,
  1806. 2939,
  1807. 6179,
  1808. 6179,
  1809. 1196,
  1810. 5226,
  1811. 5198,
  1812. 6399,
  1813. 5226,
  1814. 5226,
  1815. 5226,
  1816. 1678,
  1817. 5226,
  1818. 1678,
  1819. 5226,
  1820. 6399,
  1821. 6399,
  1822. 6399,
  1823. 6399,
  1824. 152,
  1825. 5226,
  1826. 5226,
  1827. 6179,
  1828. 6179,
  1829. 2939,
  1830. 2939,
  1831. 5136,
  1832. 1196,
  1833. 5226,
  1834. 3762,
  1835. 3762,
  1836. 4377,
  1837. 0,
  1838. 0,
  1839. 0,
  1840. 0,
  1841. 0,
  1842. 0,
  1843. 0,
  1844. 0,
  1845. 0,
  1846. 0,
  1847. 0,
  1848. 0,
  1849. 0,
  1850. 0,
  1851. 0,
  1852. 0,
  1853. 0,
  1854. 0,
  1855. 651,
  1856. 5226,
  1857. 5226,
  1858. 5226,
  1859. 5226,
  1860. 5226,
  1861. 5198,
  1862. 649,
  1863. 2939,
  1864. 5226,
  1865. 6399,
  1866. 5226,
  1867. 4623,
  1868. 4623,
  1869. 8517,
  1870. 5226,
  1871. 9628,
  1872. 9628,
  1873. 5226,
  1874. 5226,
  1875. 2939,
  1876. 9661,
  1877. 6399,
  1878. 3762,
  1879. 3762,
  1880. 6399,
  1881. 6399,
  1882. 6399,
  1883. 5226,
  1884. 6399,
  1885. 4623,
  1886. 4623,
  1887. 5226,
  1888. 5226,
  1889. 2939,
  1890. 1678,
  1891. 5226,
  1892. 9003,
  1893. 6399,
  1894. 2939,
  1895. 5226,
  1896. 5226,
  1897. 1196,
  1898. 5226,
  1899. 2927,
  1900. 5226,
  1901. 5226,
  1902. 2701,
  1903. 6399,
  1904. 2315,
  1905. 3762,
  1906. 9215,
  1907. 6179,
  1908. 6399,
  1909. 5226,
  1910. 6399,
  1911. 3762,
  1912. 8517,
  1913. 5226,
  1914. 8517,
  1915. 9215,
  1916. 9215,
  1917. 9215,
  1918. 9215,
  1919. 9215,
  1920. 9215,
  1921. 9215,
  1922. 9215,
  1923. 2939,
  1924. 6269,
  1925. 2727,
  1926. 5226,
  1927. 1678,
  1928. 5226,
  1929. 5226,
  1930. 6399,
  1931. 6399,
  1932. 6399,
  1933. 6399,
  1934. 6399,
  1935. 6399,
  1936. 6399,
  1937. 6399,
  1938. 6399,
  1939. 6399,
  1940. 2939,
  1941. 6399,
  1942. 0,
  1943. 0,
  1944. 0,
  1945. 0,
  1946. 9628,
  1947. 6399,
  1948. 5226,
  1949. 1678,
  1950. 2939,
  1951. 2939,
  1952. 2439,
  1953. 5226,
  1954. 2939,
  1955. 2939,
  1956. 9215,
  1957. 5226,
  1958. 5226,
  1959. 5226,
  1960. 2939,
  1961. 5226,
  1962. 2939,
  1963. 8751,
  1964. 6399,
  1965. 6399,
  1966. 2439,
  1967. 2439,
  1968. 6399,
  1969. 2439,
  1970. 9215,
  1971. 9628,
  1972. 9215,
  1973. 9661,
  1974. 6399,
  1975. 3762,
  1976. 9628,
  1977. 9628,
  1978. 9628,
  1979. 9628,
  1980. 9628,
  1981. 9628,
  1982. 9628,
  1983. 9628,
  1984. 9628,
  1985. 9628,
  1986. 9628,
  1987. 9628,
  1988. 9628,
  1989. 9628,
  1990. 9628,
  1991. 9628,
  1992. 9628,
  1993. 9628,
  1994. 9628,
  1995. 9628,
  1996. 4623,
  1997. 6399,
  1998. 2939,
  1999. 2939,
  2000. 5226,
  2001. 6269,
  2002. 6053,
  2003. 5226,
  2004. 3762,
  2005. 2315,
  2006. 8517,
  2007. 9215,
  2008. 5226,
  2009. 5226,
  2010. 6399,
  2011. 5226,
  2012. 5226,
  2013. 5226,
  2014. 5226,
  2015. 1196,
  2016. 1894,
  2017. 5226,
  2018. 6399,
  2019. 5226,
  2020. 6399,
  2021. 6755,
  2022. 378,
  2023. 648,
  2024. 4623,
  2025. 8267,
  2026. 710,
  2027. 8267,
  2028. 8267,
  2029. 1674,
  2030. 9661,
  2031. 6399,
  2032. 2136,
  2033. 4599,
  2034. 4599,
  2035. 6399,
  2036. 3762,
  2037. 6399,
  2038. 6399,
  2039. 6399,
  2040. 6399,
  2041. 1678,
  2042. 5226,
  2043. 2939,
  2044. 5226,
  2045. 2939,
  2046. 6399,
  2047. 6399,
  2048. 6399,
  2049. 6399,
  2050. 0,
  2051. 0,
  2052. 0,
  2053. 6399,
  2054. 5226,
  2055. 5226,
  2056. 5226,
  2057. 5226,
  2058. 2939,
  2059. 2939,
  2060. 5226,
  2061. 5226,
  2062. 1678,
  2063. 5226,
  2064. 2939,
  2065. 4377,
  2066. 5226,
  2067. 5226,
  2068. 2939,
  2069. 5226,
  2070. 2939,
  2071. 6399,
  2072. 6399,
  2073. 6399,
  2074. 6399,
  2075. 1007,
  2076. 1007,
  2077. 4623,
  2078. 6399,
  2079. 6399,
  2080. 6269,
  2081. 5226,
  2082. 5226,
  2083. 5226,
  2084. 2939,
  2085. 2939,
  2086. 2939,
  2087. 2939,
  2088. 0,
  2089. 6399,
  2090. 1678,
  2091. 6399,
  2092. 2438,
  2093. 6399,
  2094. 2438,
  2095. 6399,
  2096. 6399,
  2097. 6399,
  2098. 0,
  2099. 418,
  2100. 6399,
  2101. 6269,
  2102. 5226,
  2103. 5226,
  2104. 5226,
  2105. 1633,
  2106. 5226,
  2107. 4623,
  2108. 4623,
  2109. 6399,
  2110. 6399,
  2111. 5198,
  2112. 6399,
  2113. 6179,
  2114. 6399,
  2115. 9661,
  2116. 6399,
  2117. 4623,
  2118. 0,
  2119. 0,
  2120. 5198,
  2121. 5198,
  2122. 5226,
  2123. 5226,
  2124. 6399,
  2125. 6399,
  2126. 6294,
  2127. 5198,
  2128. 6399,
  2129. 6399,
  2130. 6399,
  2131. 1678,
  2132. 5226,
  2133. 2727,
  2134. 1678,
  2135. 6399,
  2136. 6399,
  2137. 6399,
  2138. 6399,
  2139. 6269,
  2140. 6269,
  2141. 9215,
  2142. 6399,
  2143. 9661,
  2144. 6399,
  2145. 4623,
  2146. 6399,
  2147. 6399,
  2148. 6269,
  2149. 9661,
  2150. 9472,
  2151. 9215,
  2152. 9215,
  2153. 9628,
  2154. 6399,
  2155. 0,
  2156. 6269,
  2157. 6399,
  2158. 6269,
  2159. 5226,
  2160. 6269,
  2161. 5226,
  2162. 6269,
  2163. 5226,
  2164. 6269,
  2165. 5226,
  2166. 6269,
  2167. 5226,
  2168. 231,
  2169. 6238,
  2170. 5198,
  2171. 6238,
  2172. 5198,
  2173. 6179,
  2174. 5136,
  2175. 9628,
  2176. 9212,
  2177. 6399,
  2178. 6269,
  2179. 6269,
  2180. 6269,
  2181. 5226,
  2182. 7863,
  2183. 5226,
  2184. 2315,
  2185. 6269,
  2186. 4623,
  2187. 4623,
  2188. 6269,
  2189. 6269,
  2190. 6269,
  2191. 9661,
  2192. 6269,
  2193. 6269,
  2194. 2939,
  2195. 5226,
  2196. 6238,
  2197. 5198,
  2198. 5198,
  2199. 9215,
  2200. 1551,
  2201. 2939,
  2202. 6269,
  2203. 4623,
  2204. 2315,
  2205. 4623,
  2206. 4623,
  2207. 9661,
  2208. 6399,
  2209. 2136,
  2210. 4623,
  2211. 2939,
  2212. 217,
  2213. 5226,
  2214. 6238,
  2215. 6238,
  2216. 6238,
  2217. 6197,
  2218. 2028,
  2219. 2355,
  2220. 4759,
  2221. 2034,
  2222. 4759,
  2223. 4623,
  2224. 6399,
  2225. 5226,
  2226. 6399,
  2227. 6399,
  2228. 6399,
  2229. 5226,
  2230. 6399,
  2231. 0,
  2232. 0,
  2233. 0,
  2234. 0,
  2235. 0,
  2236. 0,
  2237. 0,
  2238. 0,
  2239. 0,
  2240. 0,
  2241. 0,
  2242. 0,
  2243. 0,
  2244. 0,
  2245. 1594,
  2246. 2939,
  2247. 4351,
  2248. 6399,
  2249. 6399,
  2250. 6269,
  2251. 6399,
  2252. 6399,
  2253. 5226,
  2254. 6399,
  2255. 6399,
  2256. 5226,
  2257. 1594,
  2258. 2939,
  2259. 4351,
  2260. 6399,
  2261. 6399,
  2262. 6399,
  2263. 6399,
  2264. 5226,
  2265. 8517,
  2266. 6399,
  2267. 1678,
  2268. 5226,
  2269. 5226,
  2270. 2939,
  2271. 5198,
  2272. 2939,
  2273. 5136,
  2274. 9661,
  2275. 6399,
  2276. 3762,
  2277. 4623,
  2278. 0,
  2279. 6197,
  2280. 6269,
  2281. 6269,
  2282. 6269,
  2283. 6269,
  2284. 6269,
  2285. 6269,
  2286. 6385,
  2287. 6238,
  2288. 6179,
  2289. 6269,
  2290. 6269,
  2291. 6238,
  2292. 6269,
  2293. 6238,
  2294. 6238,
  2295. 6318,
  2296. 6269,
  2297. 4623,
  2298. 2935,
  2299. 5226,
  2300. 4620,
  2301. 6399,
  2302. 0,
  2303. 0,
  2304. 9607,
  2305. 2314,
  2306. 6399,
  2307. 5226,
  2308. 5136,
  2309. 1894,
  2310. 6399,
  2311. 9661,
  2312. 5198,
  2313. 6399,
  2314. 6179,
  2315. 6269,
  2316. 6399,
  2317. 6269,
  2318. 0,
  2319. 9661,
  2320. 4623,
  2321. 9472,
  2322. 9215,
  2323. 8751,
  2324. 6399,
  2325. 6399,
  2326. 6399,
  2327. 2939,
  2328. 4623,
  2329. 5226,
  2330. 4623,
  2331. 8517,
  2332. 6399,
  2333. 4623,
  2334. 6399,
  2335. 3762,
  2336. 7863,
  2337. 4623,
  2338. 9215,
  2339. 9215,
  2340. 6399,
  2341. 0,
  2342. 0,
  2343. 0,
  2344. 0,
  2345. 0,
  2346. 0,
  2347. 0,
  2348. 0,
  2349. 0,
  2350. 0,
  2351. 0,
  2352. 0,
  2353. 0,
  2354. 0,
  2355. 0,
  2356. 0,
  2357. 0,
  2358. 0,
  2359. 0,
  2360. 0,
  2361. 0,
  2362. 0,
  2363. 0,
  2364. 0,
  2365. 0,
  2366. 0,
  2367. 0,
  2368. 0,
  2369. 0,
  2370. 0,
  2371. 0,
  2372. 0,
  2373. 0,
  2374. 0,
  2375. 0,
  2376. 0,
  2377. 0,
  2378. 0,
  2379. 0,
  2380. 0,
  2381. 0,
  2382. 0,
  2383. 0,
  2384. 0,
  2385. 0,
  2386. 0,
  2387. 0,
  2388. 0,
  2389. 0,
  2390. 0,
  2391. 9215,
  2392. 0,
  2393. 0,
  2394. 0,
  2395. 0,
  2396. 9628,
  2397. 9628,
  2398. 9628,
  2399. 9628,
  2400. 9628,
  2401. 9628,
  2402. 1678,
  2403. 5226,
  2404. 6238,
  2405. 2939,
  2406. 1678,
  2407. 1425,
  2408. 1425,
  2409. 8513,
  2410. 4623,
  2411. 4623,
  2412. 2939,
  2413. 2939,
  2414. 6238,
  2415. 6269,
  2416. 5226,
  2417. 9215,
  2418. 6179,
  2419. 6238,
  2420. 6269,
  2421. 6269,
  2422. 6269,
  2423. 6269,
  2424. 6269,
  2425. 6269,
  2426. 2939,
  2427. 6179,
  2428. 6179,
  2429. 6179,
  2430. 9661,
  2431. 6399,
  2432. 4623,
  2433. 9628,
  2434. 9621,
  2435. 9621,
  2436. 6238,
  2437. 6238,
  2438. 6399,
  2439. 9628,
  2440. 9628,
  2441. 1678,
  2442. 9404,
  2443. };
  2444. static const Il2CppTokenIndexMethodTuple s_reversePInvokeIndices[1] =
  2445. {
  2446. { 0x060001A8, 25, (void**)&AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C_RuntimeMethod_var, 0 },
  2447. };
  2448. static const Il2CppTokenRangePair s_rgctxIndices[11] =
  2449. {
  2450. { 0x02000092, { 7, 4 } },
  2451. { 0x020000B4, { 22, 4 } },
  2452. { 0x020000B5, { 26, 13 } },
  2453. { 0x020000DF, { 59, 3 } },
  2454. { 0x060001F5, { 0, 7 } },
  2455. { 0x0600027A, { 11, 7 } },
  2456. { 0x0600027B, { 18, 4 } },
  2457. { 0x060002A9, { 39, 6 } },
  2458. { 0x060002C1, { 45, 2 } },
  2459. { 0x060002C2, { 47, 3 } },
  2460. { 0x06000319, { 50, 9 } },
  2461. };
  2462. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1_t6C2D0B1FACE8C4F5F2026455C2D5488B36BBA8BF;
  2463. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1__ctor_mAE5F3E4D8692722804588A0EC466C303E22B5C43;
  2464. extern const uint32_t g_rgctx_Action_2_t6D545D9C2496111A69E57210900DBD6DCA90A81C;
  2465. extern const uint32_t g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329;
  2466. extern const uint32_t g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329;
  2467. extern const Il2CppRGCTXConstrainedData g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329_Object_ToString_mF8AC1EB9D85AB52EC8FD8B8BDD131E855E69673F;
  2468. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1_U3CStartUIU3Eb__0_m0FD20B072C40466DACA233ED65A83EA4FA57D3CA;
  2469. extern const uint32_t g_rgctx_T_tF0E5376556241229C2F209BC9C825474ED22066D;
  2470. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1_tA587FDEC1C7B71F7B9283720906342AF3B0BCEE5;
  2471. extern const uint32_t g_rgctx_Action_2_tC3178EC44B5E10E9F4CAD71673FA9B1D2054CA88;
  2472. extern const uint32_t g_rgctx_Action_2_Invoke_m69CD1C34939F25CDEB17DA512160163BD8AACFBC;
  2473. extern const uint32_t g_rgctx_IEnumerable_1_tA347B71DFA2D2CEC232135A81ED8BE2AFF1F552C;
  2474. extern const uint32_t g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B;
  2475. extern const uint32_t g_rgctx_Func_2_tCAB5F0E217111EFDCD8F327A06E23291D47E05DE;
  2476. extern const uint32_t g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B;
  2477. extern const uint32_t g_rgctx_U3CU3Ec__0_1_U3CNonNullU3Eb__0_0_mFF50EED00C886CDC56E9BAAFF670934CD9B87276;
  2478. extern const uint32_t g_rgctx_Func_2__ctor_m784DE4ABC930E577E3E9CFECE6A43A76DA203D5C;
  2479. extern const uint32_t g_rgctx_Enumerable_Where_TisT_tADFFF9E0DDFEA24EBCEC42C88E87CE11CB17A909_m01ACAA8CCE04C09E6354C67FEBC5595554A962C1;
  2480. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_tB63C9D9A00172227F1C8F023C92E85F1781B1773;
  2481. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m5DD49F0E9F1AE9A720587589F0ECBA862145632C;
  2482. extern const uint32_t g_rgctx_IEnumerable_1_t59C74ED1BEC60719E5181108819E590E85691379;
  2483. extern const uint32_t g_rgctx_Action_1_t62D17DEF5A7425A21547401F1C0584E3D2C6E239;
  2484. extern const uint32_t g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94;
  2485. extern const uint32_t g_rgctx_U3CU3Ec__0_1__ctor_m02FF12BD4C6F0E399DF188125F0E6F3EEBF1FC39;
  2486. extern const uint32_t g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94;
  2487. extern const uint32_t g_rgctx_T_tF096763005B16CEE3E735E19298272E6AAEB2F88;
  2488. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_t56C655A750B42777213D2C952C4D046B989E2E95;
  2489. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_U3CU3Em__Finally1_mD9AE5F961AFDBFFFA0D927BC3FBA5A7C80974F77;
  2490. extern const uint32_t g_rgctx_TException_t857129A1BAD14B1E698AE0FCE7FDECF2E8BEDE2C;
  2491. extern const uint32_t g_rgctx_IEnumerable_1_t2EEE2DBFACB4318A09644B733B86C86FEA0B12C3;
  2492. extern const uint32_t g_rgctx_IEnumerable_1_GetEnumerator_m664D37AC5DC435C88F925B73FE445B5CAD643EBB;
  2493. extern const uint32_t g_rgctx_IEnumerator_1_t1C4C366CABD07C95E46BD0921F22BE27B0BF6C2D;
  2494. extern const uint32_t g_rgctx_Action_1_tA2016F5800BD37C107E94C87B6BBF7055CF765A8;
  2495. extern const uint32_t g_rgctx_Action_1_Invoke_m0E3D4485099E5FDC34849099D27D02BADB97D27E;
  2496. extern const uint32_t g_rgctx_IEnumerator_1_get_Current_m2D5DE08047EA0C7ED7E4AA1183589BDED2B1E0BE;
  2497. extern const uint32_t g_rgctx_T_t7D7CA3DD4B8A48902CFCA231D981426220586D04;
  2498. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_IDisposable_Dispose_m235D4A35554B0800640D229B518F6CDF3FC49E53;
  2499. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m291ABD4C970C5394DE52D9757D019EB57C9DF34E;
  2500. extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m7BFA958E2A675B8ADDFD684B5F0F5F0CEA0D2DFE;
  2501. extern const uint32_t g_rgctx_List_1_t0B07DBB79FEBEA3D44A69AFE65D250A10057CA85;
  2502. extern const uint32_t g_rgctx_List_1__ctor_m5765185F1E21209FAE279255695C17297335C8A0;
  2503. extern const uint32_t g_rgctx_T_t411ADE7935EECD7D5D76D2E2B0C57C526E2A3ED6;
  2504. extern const uint32_t g_rgctx_List_1_Add_mEE8298B5F87422E1C189FF26F3521B1246281227;
  2505. extern const uint32_t g_rgctx_List_1_ToArray_m52644C1CE8E58210348E4F0363128CCFB75E6D6F;
  2506. extern const uint32_t g_rgctx_TU5BU5D_t11E6E5BF38FBEEFEBDA3C721A357D6F9E9BC9A47;
  2507. extern const uint32_t g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023;
  2508. extern const uint32_t g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023;
  2509. extern const uint32_t g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC;
  2510. extern const uint32_t g_rgctx_GameObject_GetComponent_TisT_t3710AEC49D7C30871CD092E5D6BE7955C935DECC_mF35FFB33A85C9552019C25E8A58C2C128EC6BA45;
  2511. extern const uint32_t g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC;
  2512. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1_t965DC45120EA151D97BBFCE779C6610B47675356;
  2513. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1__ctor_mD4F0DE464C1FF345D6DF12CCCC900E92ABCC4DE2;
  2514. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1_U3CEnumerateU3Eb__0_m6573108638E276F815592CF42A5E2414457ACF6C;
  2515. extern const uint32_t g_rgctx_Func_2_t9A3E2F8B603DB3B45DC3B634E534DD1F591FBBAB;
  2516. extern const uint32_t g_rgctx_Func_2__ctor_m530FB3CCC793D0A3E5103D3406C86F3C7EC2A1D7;
  2517. extern const uint32_t g_rgctx_Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_m2A0723A330E491A4E4ACEAB678975FEBBE7F8369;
  2518. extern const uint32_t g_rgctx_IEnumerable_1_t3D4B4ADA12F79FDB626E6773CE03B40CC60DAE22;
  2519. extern const uint32_t g_rgctx_Enumerable_ToList_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_mF93328171AA5CD2DB36D4E30497C71B4187B38B3;
  2520. extern const uint32_t g_rgctx_List_1_tB600084DC3DDAFB4ACADB29D2E11BCBDCF9F62A1;
  2521. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1_t41FFF3955E3A120578FE2852DF71A0F5A447C363;
  2522. extern const uint32_t g_rgctx_AndroidJavaObject_Call_TisT_tD816ADB4922245E2A12AB8E06C4633DBFBA60475_mD8B0D878B493434E8DFB28D3BC73A613FF0D9745;
  2523. extern const uint32_t g_rgctx_T_tD816ADB4922245E2A12AB8E06C4633DBFBA60475;
  2524. static const Il2CppRGCTXDefinition s_rgctxValues[62] =
  2525. {
  2526. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1_t6C2D0B1FACE8C4F5F2026455C2D5488B36BBA8BF },
  2527. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1__ctor_mAE5F3E4D8692722804588A0EC466C303E22B5C43 },
  2528. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_2_t6D545D9C2496111A69E57210900DBD6DCA90A81C },
  2529. { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329 },
  2530. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329 },
  2531. { (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329_Object_ToString_mF8AC1EB9D85AB52EC8FD8B8BDD131E855E69673F },
  2532. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1_U3CStartUIU3Eb__0_m0FD20B072C40466DACA233ED65A83EA4FA57D3CA },
  2533. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF0E5376556241229C2F209BC9C825474ED22066D },
  2534. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1_tA587FDEC1C7B71F7B9283720906342AF3B0BCEE5 },
  2535. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_2_tC3178EC44B5E10E9F4CAD71673FA9B1D2054CA88 },
  2536. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Action_2_Invoke_m69CD1C34939F25CDEB17DA512160163BD8AACFBC },
  2537. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_tA347B71DFA2D2CEC232135A81ED8BE2AFF1F552C },
  2538. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B },
  2539. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Func_2_tCAB5F0E217111EFDCD8F327A06E23291D47E05DE },
  2540. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B },
  2541. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__0_1_U3CNonNullU3Eb__0_0_mFF50EED00C886CDC56E9BAAFF670934CD9B87276 },
  2542. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Func_2__ctor_m784DE4ABC930E577E3E9CFECE6A43A76DA203D5C },
  2543. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerable_Where_TisT_tADFFF9E0DDFEA24EBCEC42C88E87CE11CB17A909_m01ACAA8CCE04C09E6354C67FEBC5595554A962C1 },
  2544. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_tB63C9D9A00172227F1C8F023C92E85F1781B1773 },
  2545. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m5DD49F0E9F1AE9A720587589F0ECBA862145632C },
  2546. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_t59C74ED1BEC60719E5181108819E590E85691379 },
  2547. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_1_t62D17DEF5A7425A21547401F1C0584E3D2C6E239 },
  2548. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94 },
  2549. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__0_1__ctor_m02FF12BD4C6F0E399DF188125F0E6F3EEBF1FC39 },
  2550. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94 },
  2551. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF096763005B16CEE3E735E19298272E6AAEB2F88 },
  2552. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_t56C655A750B42777213D2C952C4D046B989E2E95 },
  2553. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_U3CU3Em__Finally1_mD9AE5F961AFDBFFFA0D927BC3FBA5A7C80974F77 },
  2554. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TException_t857129A1BAD14B1E698AE0FCE7FDECF2E8BEDE2C },
  2555. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_t2EEE2DBFACB4318A09644B733B86C86FEA0B12C3 },
  2556. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_IEnumerable_1_GetEnumerator_m664D37AC5DC435C88F925B73FE445B5CAD643EBB },
  2557. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerator_1_t1C4C366CABD07C95E46BD0921F22BE27B0BF6C2D },
  2558. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_1_tA2016F5800BD37C107E94C87B6BBF7055CF765A8 },
  2559. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Action_1_Invoke_m0E3D4485099E5FDC34849099D27D02BADB97D27E },
  2560. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_IEnumerator_1_get_Current_m2D5DE08047EA0C7ED7E4AA1183589BDED2B1E0BE },
  2561. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t7D7CA3DD4B8A48902CFCA231D981426220586D04 },
  2562. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_IDisposable_Dispose_m235D4A35554B0800640D229B518F6CDF3FC49E53 },
  2563. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m291ABD4C970C5394DE52D9757D019EB57C9DF34E },
  2564. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m7BFA958E2A675B8ADDFD684B5F0F5F0CEA0D2DFE },
  2565. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_t0B07DBB79FEBEA3D44A69AFE65D250A10057CA85 },
  2566. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1__ctor_m5765185F1E21209FAE279255695C17297335C8A0 },
  2567. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t411ADE7935EECD7D5D76D2E2B0C57C526E2A3ED6 },
  2568. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_Add_mEE8298B5F87422E1C189FF26F3521B1246281227 },
  2569. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_ToArray_m52644C1CE8E58210348E4F0363128CCFB75E6D6F },
  2570. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t11E6E5BF38FBEEFEBDA3C721A357D6F9E9BC9A47 },
  2571. { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023 },
  2572. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023 },
  2573. { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC },
  2574. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponent_TisT_t3710AEC49D7C30871CD092E5D6BE7955C935DECC_mF35FFB33A85C9552019C25E8A58C2C128EC6BA45 },
  2575. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC },
  2576. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1_t965DC45120EA151D97BBFCE779C6610B47675356 },
  2577. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1__ctor_mD4F0DE464C1FF345D6DF12CCCC900E92ABCC4DE2 },
  2578. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1_U3CEnumerateU3Eb__0_m6573108638E276F815592CF42A5E2414457ACF6C },
  2579. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Func_2_t9A3E2F8B603DB3B45DC3B634E534DD1F591FBBAB },
  2580. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Func_2__ctor_m530FB3CCC793D0A3E5103D3406C86F3C7EC2A1D7 },
  2581. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_m2A0723A330E491A4E4ACEAB678975FEBBE7F8369 },
  2582. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_t3D4B4ADA12F79FDB626E6773CE03B40CC60DAE22 },
  2583. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerable_ToList_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_mF93328171AA5CD2DB36D4E30497C71B4187B38B3 },
  2584. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_tB600084DC3DDAFB4ACADB29D2E11BCBDCF9F62A1 },
  2585. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1_t41FFF3955E3A120578FE2852DF71A0F5A447C363 },
  2586. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_AndroidJavaObject_Call_TisT_tD816ADB4922245E2A12AB8E06C4633DBFBA60475_mD8B0D878B493434E8DFB28D3BC73A613FF0D9745 },
  2587. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tD816ADB4922245E2A12AB8E06C4633DBFBA60475 },
  2588. };
  2589. IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_Purchasing_Stores_CodeGenModule;
  2590. const Il2CppCodeGenModule g_UnityEngine_Purchasing_Stores_CodeGenModule =
  2591. {
  2592. "UnityEngine.Purchasing.Stores.dll",
  2593. 845,
  2594. s_methodPointers,
  2595. 0,
  2596. NULL,
  2597. s_InvokerIndices,
  2598. 1,
  2599. s_reversePInvokeIndices,
  2600. 11,
  2601. s_rgctxIndices,
  2602. 62,
  2603. s_rgctxValues,
  2604. NULL,
  2605. NULL,
  2606. NULL,
  2607. NULL,
  2608. NULL,
  2609. };