123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616 |
- #include "pch-c.h"
- #ifndef _MSC_VER
- # include <alloca.h>
- #else
- # include <malloc.h>
- #endif
-
-
- #include "codegen/il2cpp-codegen-metadata.h"
-
-
- extern const RuntimeMethod* AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C_RuntimeMethod_var;
-
-
-
- extern void EmbeddedAttribute__ctor_mC8404DFC7B590D095F31BED1845D51F204C2E257 (void);
- extern void NullableAttribute__ctor_m7655B58768DF65210F3769D19B59EFBF1159F1F3 (void);
- extern void NullableAttribute__ctor_mC933B7DB73CF251AECD9C6A62C015A0966EE145E (void);
- extern void NullableContextAttribute__ctor_mA71DE71927AB86CC4FDFFCA1D87C9FFCEDFF0923 (void);
- extern void JsonProductDescriptionsDeserializer_DeserializeProductDescriptions_m98605926EA86D48EB99F1D87F32C926B3845D9F3 (void);
- extern void JsonProductDescriptionsDeserializer_DeserializeMetadata_mA7E9897C8313254A0A77047BDFC75B1AE33CFD72 (void);
- extern void JsonProductDescriptionsDeserializer__ctor_m20F016896A6A95110F9AD437F085398023F9BE05 (void);
- extern void AmazonAppStoreStoreExtensions__ctor_m8AEB4063FA2E04197E5E251ED474FDEDA0BC24EF (void);
- extern void FakeAmazonExtensions__ctor_mCC1F531E77DFC8CD8EC07E2DBD077D21F89B226E (void);
- extern void AndroidJavaStore__ctor_m0D38BF4E9163C97152786CA458452DC56EA27788 (void);
- extern void AndroidJavaStore_RetrieveProducts_mA29AFD08E019E3ABD7486DA31B64CAF4AA99B3A1 (void);
- extern void AndroidJavaStore_Purchase_m6092044FE46158DADF52DD87C42D14CAE0C928F6 (void);
- extern void AndroidJavaStore_FinishTransaction_mB87BF5AFF7584110C9559219323EFDC78AFB1403 (void);
- extern void ListExtension_ToJava_mE978EBDBB715630BF3EB53D57B0DADE80E36BE44 (void);
- extern void ListExtension_ToJavaArray_m0DF86FDF7D43E283838E042CBF99DBD75386714F (void);
- extern void UnityActivity_GetUnityPlayerClass_mAB92F573D73726FCC858D1AD1A71FBB5DCBF0AA3 (void);
- extern void UnityActivity_GetCurrentActivity_m4AD23C47CE2C5D5400EC5FE79E910F7E17EE7CB8 (void);
- extern void GoogleCachedQuerySkuDetailsService_Finalize_m74694BD9C573DF096648308BF08F9106E38D4F39 (void);
- extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m2C5B86190409B0C0CEE7D28211753B4231738C1C (void);
- extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSku_m004A5B0121AEE0F898AA2AC6A986345F483F06F5 (void);
- extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m5F0490A4825E669B13425DA1D5D78F0359635C07 (void);
- extern void GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m882D22766C55E9C6AC9A82C921D8D32D1BAACBD6 (void);
- extern void GoogleCachedQuerySkuDetailsService_Contains_mD0BEE84C98B4F8DB1164E0E5C00235154341F9C5 (void);
- extern void GoogleCachedQuerySkuDetailsService_Contains_mAF77DEB82415E8FBB8497752BE673B1C5D0396E8 (void);
- extern void GoogleCachedQuerySkuDetailsService_AddCachedQueriedSkus_mE543941A26C7B1E9D13DD3D41F43CB1AF038E9C4 (void);
- extern void GoogleCachedQuerySkuDetailsService__ctor_m75DE2A2A61BBE9CE416CBE795FCBC1EEB82C1B45 (void);
- extern void U3CU3Ec__cctor_m28F1290B83C8238004FB545142A7FC44A30862FC (void);
- extern void U3CU3Ec__ctor_m306976DEC98D7D0A109FD1D782DB2B08A6F1D4EF (void);
- extern void U3CU3Ec_U3CGetCachedQueriedSkusU3Eb__5_0_mA5F3B0343F2F57981038DB98D3ABBCB2727E025A (void);
- extern void GoogleFinishTransactionService__ctor_m00E73732765A281CCE4D7F22A11A486315390ECB (void);
- extern void GoogleFinishTransactionService_FinishTransaction_m6A8FE42847AFB1260304124676891D25F830C01A (void);
- extern void GoogleFinishTransactionService_FindPurchase_mDDB6EF3226D924B27EEB239E19E924B334C3C10D (void);
- extern void GoogleFinishTransactionService_FinishTransactionForPurchase_m6E7C7331B5D6532C1452A172522ADB44F3EF477A (void);
- extern void U3CU3Ec__DisplayClass4_0__ctor_m77DBF651398150A28A503E57B6AA5EFCB3237A54 (void);
- extern void U3CU3Ec__DisplayClass4_0_U3CFindPurchaseU3Eb__0_m2EF37032672732A91958420A1AB805BB3E3EB3E9 (void);
- extern void U3CU3Ec__DisplayClass5_0__ctor_m8D84B5B026DCE730382FA1156834E58A58958737 (void);
- extern void U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__0_mFC4642CDDF4B9BB39649BB62A2564D369FD6FBE0 (void);
- extern void U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__1_m2D3ED6A5F77317CE25E72DCAF04B2781F65DF86C (void);
- extern void U3CFindPurchaseU3Ed__4__ctor_m7242B23212529EA564A6016FF0D60742EE44D009 (void);
- extern void U3CFindPurchaseU3Ed__4_MoveNext_m248DD760ABDCEA6A9510928C454BC081DB30312B (void);
- extern void U3CFindPurchaseU3Ed__4_SetStateMachine_m4C9A105DC0472A49C9E2C97B89F64286F26F88AB (void);
- extern void U3CFinishTransactionU3Ed__3__ctor_mB816ACFB52C51A71B713B47DEFD8F0EE9417E301 (void);
- extern void U3CFinishTransactionU3Ed__3_MoveNext_m1A6530743102DAF8982841D6772DD1141A55557C (void);
- extern void U3CFinishTransactionU3Ed__3_SetStateMachine_mEDCF39F90824A89CE4261C62CAF1CB45708B2E4F (void);
- extern void GoogleLastKnownProductService_get_LastKnownOldProductId_mB0F641FE6161FDB5B7CC65F86EC7517AE6D7ECED (void);
- extern void GoogleLastKnownProductService_set_LastKnownOldProductId_mEA04A6050A252BB362319A792F5B83842FFF70B5 (void);
- extern void GoogleLastKnownProductService_get_LastKnownProductId_mF73D95666E4113EA53B7581C6A7FFFC85B7AFE8E (void);
- extern void GoogleLastKnownProductService_set_LastKnownProductId_m691E76B48D409E7913403560ABE6C401B50A718E (void);
- extern void GoogleLastKnownProductService_get_LastKnownProrationMode_m649D8E783EB1BBD6D12BB5CAC63F3B65BA226A6A (void);
- extern void GoogleLastKnownProductService_set_LastKnownProrationMode_mFD652416415B081ACADA523F24C3D2A5C9B482C2 (void);
- extern void GoogleLastKnownProductService__ctor_mB2B1381DC77FB51FF1F9904D8823F6BCBC75DE97 (void);
- extern void GooglePlayStoreService__ctor_mF5FBF0303B1389E326204AAA532E4EB562950B7A (void);
- extern void GooglePlayStoreService_InitConnectionWithGooglePlay_mCFBB60729D49E6D3AF4144962557E7C790A3DA5A (void);
- extern void GooglePlayStoreService_StartConnection_m598C0DA556160B740ED770343B86F1E9956F4ED5 (void);
- extern void GooglePlayStoreService_ResumeConnection_m73468D028C1C28ECD3F6D3D9B7D7CD5880947FB2 (void);
- extern void GooglePlayStoreService_AttemptReconnection_m4D1794C468F2267B05F7D14B2D2977BA23362DCF (void);
- extern void GooglePlayStoreService_AreConnectionAttemptsExhausted_m20F49CFC1ABA07C7CF9400824EFBB7F093B32243 (void);
- extern void GooglePlayStoreService_RetryConnection_m064A3560B1183863F0850A57D9891F4C899064D4 (void);
- extern void GooglePlayStoreService_RetryConnectionAttempt_m48CE112D90916842962C50566950ECF79AEA882C (void);
- extern void GooglePlayStoreService_OnConnected_m8B93C3F30A25C81BD98334DD918DC5A57BA97DEF (void);
- extern void GooglePlayStoreService_DequeueQueryProducts_m42A618BA8A37DA3BB855BAFE7EC53777E2A25656 (void);
- extern void GooglePlayStoreService_DequeueFetchPurchases_m3759974224EF80FEDFA8872D7B9715757A0F6619 (void);
- extern void GooglePlayStoreService_OnDisconnected_mC6D89E84A79F158AAA952E3334014E626AEF48C7 (void);
- extern void GooglePlayStoreService_RetrieveProducts_m87A07E995045F8D2C0296867EF79740701CD9F87 (void);
- extern void GooglePlayStoreService_HandleRetrieveProductsNotConnected_mE5E12C093558652FB81EDBEB43ED01B814CEE5A9 (void);
- extern void GooglePlayStoreService_Purchase_m78CE45B496A389C9E12B4B6E5000633DB33AE10C (void);
- extern void GooglePlayStoreService_Purchase_m4379D016FB241D27A11DB5F5DBAB09D9CCA0D653 (void);
- extern void GooglePlayStoreService_FinishTransaction_m108C541DEDCD0AE5B51B000927E139FFB114AF83 (void);
- extern void GooglePlayStoreService_FetchPurchases_m0B9DC023CA06A3265117D7A90BB5ADF14F2E5A4A (void);
- extern void GooglePlayStoreService_TryFetchPurchases_m2AC309397D6FA5E077D73065954079322DDEB4D8 (void);
- extern void GooglePlayStoreService_U3CAttemptReconnectionU3Eb__20_0_m0E240F882132309B9D322ECC87EA6B2A581F6808 (void);
- extern void U3CU3Ec__DisplayClass22_0__ctor_mA3465CC56277C7366907EB325CCDAB660B519D50 (void);
- extern void U3CU3Ec__DisplayClass22_0_U3CRetryConnectionU3Eb__0_mFCF3E2929B22D7BDA76A1CBB9EBA2FD934EEDC34 (void);
- extern void U3CFetchPurchasesU3Ed__34__ctor_m7F4647978321C7E91F6080BBB5E1225D3A31F06C (void);
- extern void U3CFetchPurchasesU3Ed__34_MoveNext_m1B677AFF8B1472BFDC0DA16B186C4F0D233E1F00 (void);
- extern void U3CFetchPurchasesU3Ed__34_SetStateMachine_m0AA7CBAE3F04281CC113B22100C5E00415D9B5E5 (void);
- extern void U3CTryFetchPurchasesU3Ed__35__ctor_m52504C961A008C9AB3874F220BBC1F075C9BFDDF (void);
- extern void U3CTryFetchPurchasesU3Ed__35_MoveNext_m1D67FE3A66CFA1A048808A32D69808E9E9234A8C (void);
- extern void U3CTryFetchPurchasesU3Ed__35_SetStateMachine_m37746C732AACA7AB89ADDCA1104DAAA51201196D (void);
- extern void GooglePriceChangeService__ctor_m4E7EC6CE99DD4F272ACF6AC06D91F08FD0C990C2 (void);
- extern void GooglePurchaseService__ctor_m1DE748CB060AD5D8FC3CA43DE0AFC7292D2A1B4D (void);
- extern void GooglePurchaseService_Purchase_m29B1CB96BDA2D15289D51DFDC4232751E1970CF1 (void);
- extern void GooglePurchaseService_OnQuerySkuDetailsResponse_m95976F034A14D7F2856EE3542D20B41DF8FEDCF0 (void);
- extern void GooglePurchaseService_ValidateQuerySkuDetailsResponseParams_m6CFE33C653C6FAE33542B5885467F5C341DAC4F8 (void);
- extern void GooglePurchaseService_ValidateSkus_m640D7D5118648CF810EA4FABC663F2E69C71BB03 (void);
- extern void GooglePurchaseService_VerifyAndWarnIfMoreThanOneSku_m5C6986FE6B32C5949B98EB4342D21B3542FA10C7 (void);
- extern void GooglePurchaseService_PurchaseFailedSkuNotFound_mC534A4118675DF89F47C58C5389FC61BA2F7964C (void);
- extern void GooglePurchaseService_ValidateOldProduct_m0A6A2FA026568D45A29B6CD43C8A8A34348ADEA5 (void);
- extern void GooglePurchaseService_PurchaseFailedInvalidOldProduct_m49EC674BFCF31EC7B5501C25BEDF56CE7FA48818 (void);
- extern void GooglePurchaseService_LaunchGoogleBillingFlow_mAB16BC1F209D8A0C2A3BFB62C644D3051887AABD (void);
- extern void GooglePurchaseService_HandleBillingFlowResult_m8C975E77C9D491BAA800B5FB6286DE6D28D35298 (void);
- extern void U3CU3Ec__DisplayClass4_0__ctor_mB328CDF512A7B349805ADAE4506C41A0E43D6D81 (void);
- extern void U3CU3Ec__DisplayClass4_0_U3CPurchaseU3Eb__0_m3722933ED78BFF71ECF3927C27AA23CAAB6EB9C9 (void);
- extern void GoogleQueryPurchasesService__ctor_mE9215AEEA648CF0E1A49ECBF70A117D953AB0FF4 (void);
- extern void GoogleQueryPurchasesService_QueryPurchases_m4D27A1950FBB8CDC80E83AAA4B6A06929C153E9E (void);
- extern void GoogleQueryPurchasesService_QueryPurchasesWithSkuType_mDB5401461F2D5DF53BDA09F77E0B581A24507B23 (void);
- extern void GoogleQueryPurchasesService_IsResultOk_m53AA5016EB83D58BFB76AC0C3967EECA8341D989 (void);
- extern void U3CU3Ec__cctor_m77DB5CA22E2FF7F38F8CB47AEB2AA5B869A7B8C5 (void);
- extern void U3CU3Ec__ctor_m0DD28869F30A8D9E8D8DF6F7295B845CE3D6E377 (void);
- extern void U3CU3Ec_U3CQueryPurchasesU3Eb__3_0_m7CE532DAFFC24E63EEAC730BA53957EB44AEB2A8 (void);
- extern void U3CU3Ec__DisplayClass4_0__ctor_m36F184C8B6582054FED0F0A76615A56844D28DC7 (void);
- extern void U3CU3Ec__DisplayClass4_0_U3CQueryPurchasesWithSkuTypeU3Eb__0_m7A710091286EF7E7A6CAF40F7BD0C6DF4941F834 (void);
- extern void U3CQueryPurchasesU3Ed__3__ctor_m555DFCC3576140717CEC6FB42B7FCB20C201B05C (void);
- extern void U3CQueryPurchasesU3Ed__3_MoveNext_mCF5A4482C9C50AC1331906E671ED0EED5BDB09EA (void);
- extern void U3CQueryPurchasesU3Ed__3_SetStateMachine_mC7DE7B7783D52CBB7162448664BA0E064D7A35BD (void);
- extern void BillingClientStateListener__ctor_m04EE4E48F28E41B5C492F6ADF1B10CF9F849E4A7 (void);
- extern void BillingClientStateListener_RegisterOnConnected_m6CDC37825ACA5731EE17EE080626954E0D6BFF78 (void);
- extern void BillingClientStateListener_RegisterOnDisconnected_m8542956786353C419D2D6765B530F835E862654B (void);
- extern void BillingClientStateListener_onBillingSetupFinished_mA2197D2F0110DD41CC3321341CCD94A099065ABC (void);
- extern void BillingClientStateListener_onBillingServiceDisconnected_mD6AEE6476D94E0CC26BAFF9240AAD7E3DFCB7E63 (void);
- extern void GoogleAcknowledgePurchaseListener__ctor_mB509911DE8C7BEE8D023360D6E5C1BC970E94FE1 (void);
- extern void GoogleAcknowledgePurchaseListener_onAcknowledgePurchaseResponse_mEEA5706C7EAFB649307DF19A56E68205D56E5B5D (void);
- extern void GoogleConsumeResponseListener__ctor_m8CE0D56E7F1AA8E7CFDFCFC7050CB47DFFF2C3AB (void);
- extern void GoogleConsumeResponseListener_onConsumeResponse_m9D726EC5E5A4DBFE26255ABF504AA79B73F9F6ED (void);
- extern void GooglePriceChangeConfirmationListener_onPriceChangeConfirmationResult_m4D30C5EDDF73B290F7CAA4D5FD3567B65614FC0D (void);
- extern void GooglePurchasesResponseListener__ctor_m9605CF62666DDFF86C4355AD2A9E1499AF00ACE9 (void);
- extern void GooglePurchasesResponseListener_onQueryPurchasesResponse_m150BD48FEB6DB17513835043C5BDA7525C569405 (void);
- extern void GooglePurchaseUpdatedListener__ctor_mB1F324E62DFBDD61BB0F1085BA3E3E1AC0D11B83 (void);
- extern void GooglePurchaseUpdatedListener_SetGoogleQueryPurchaseService_m62E3B83FFFFC145A6D2EEF3C97D65CA1AA34B72C (void);
- extern void GooglePurchaseUpdatedListener_onPurchasesUpdated_m00587E219424F411BAAF2D564CDD393AE215B024 (void);
- extern void GooglePurchaseUpdatedListener_OnPurchasesUpdated_m28782E3FBBAAE520D735A011457597B4425AD3C3 (void);
- extern void GooglePurchaseUpdatedListener_HandleResultOkCases_m2D503275E3ADAD9DB420417D917B78342EDBA391 (void);
- extern void GooglePurchaseUpdatedListener_HandleErrorCases_mCB926C4CD0EB67AFF057F3F5B4DFA4057DC7798D (void);
- extern void GooglePurchaseUpdatedListener_HandleErrorGoogleBillingResult_mD4F3BC2C13924F32A233A68B6E460913E6C15B03 (void);
- extern void GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m8557C9149A8DB6B11932F0F497528E0DCC4B1D48 (void);
- extern void GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m5EA8C5D4048D851795374C64294B7A27CCCC0C32 (void);
- extern void GooglePurchaseUpdatedListener_ApplyOnPurchases_m8973C50AEA59347A4EB412C5047719848A7DC422 (void);
- extern void GooglePurchaseUpdatedListener_ApplyOnPurchases_mB7A5C06DC865BCAD741D744B4BFD498B58445E87 (void);
- extern void GooglePurchaseUpdatedListener_OnPurchaseOk_m765B24AA543C588FECC4770BC9B4D9EA58943103 (void);
- extern void GooglePurchaseUpdatedListener_HandlePurchasedProduct_m0F2CF03CC87F3F62BB812B043953590F78D16861 (void);
- extern void GooglePurchaseUpdatedListener_IsDeferredSubscriptionChange_mAF913C1C2A696B071BCCED905B47107E14ECD04B (void);
- extern void GooglePurchaseUpdatedListener_IsLastProrationModeDeferred_m7413CCD59DB8FAA1335C87B79EFAE8292022D510 (void);
- extern void GooglePurchaseUpdatedListener_OnPurchaseCancelled_mC96E9F836BF3E47684CC891D91E8779D7262B44B (void);
- extern void GooglePurchaseUpdatedListener_OnPurchaseCancelled_mA7E56DF9D38115A7FC22E16068CD36AE1E6C3277 (void);
- extern void GooglePurchaseUpdatedListener_OnPurchaseAlreadyOwned_mF098189CF0AEABD1F6769F208FA4008270812298 (void);
- extern void GooglePurchaseUpdatedListener_OnPurchaseFailed_m550EAD20A8DB54BE94B919ADF5CD342D35B9686F (void);
- extern void GooglePurchaseUpdatedListener_U3CHandleUserCancelledPurchaseFailureU3Eb__15_0_m912E3EEB5FC04575DF8336C2740E1C6424B969DA (void);
- extern void U3CHandleUserCancelledPurchaseFailureU3Ed__14__ctor_mDF92488B1C919E189965F23D76E9370D2F91FCC9 (void);
- extern void U3CHandleUserCancelledPurchaseFailureU3Ed__14_MoveNext_mECAC96E020F9E510A16F3CBBD9C4BC7BF0C96B34 (void);
- extern void U3CHandleUserCancelledPurchaseFailureU3Ed__14_SetStateMachine_mCC2C014DEEA70CE0027A9906600C36390CF09068 (void);
- extern void SkuDetailsResponseListener__ctor_mF86016CDDE155D2BE9F8B17CEFEC0D163EB7A4D2 (void);
- extern void SkuDetailsResponseListener_onSkuDetailsResponse_m70EB3CEA914A73E6AED65B5F22E378DBB6A792C6 (void);
- extern void U3CU3Ec__DisplayClass5_0__ctor_mB1DE7F50FCFAAF9D420B36AA90309A38D1BD5AEB (void);
- extern void U3CU3Ec__DisplayClass5_0_U3ConSkuDetailsResponseU3Eb__0_mBCE7C10C936B50A6D8787CBE5283763495490AD7 (void);
- extern void MetricizedGooglePlayStoreService__ctor_m25A3DFC6F9073B144331D071A3E89796B720ABF7 (void);
- extern void MetricizedGooglePlayStoreService_DequeueQueryProducts_m68DE6F64D6875355B987511D5EB5DB7323A277AE (void);
- extern void MetricizedGooglePlayStoreService_DequeueFetchPurchases_m2AB3DBC0FD1EB62C66D069A461FCF7D88204A14B (void);
- extern void MetricizedGooglePlayStoreService_RetrieveProducts_m87FD9314FDE483F227018CB65E2070A83C259891 (void);
- extern void MetricizedGooglePlayStoreService_Purchase_m81F49E52788EEC4DD9CC4A2ACD77FCDA7A53C724 (void);
- extern void MetricizedGooglePlayStoreService_U3CU3En__0_mC025AB6B08CE7C7D6DE7BB60BCEF3FD3838F8189 (void);
- extern void MetricizedGooglePlayStoreService_U3CU3En__1_m15EF2237A94F6779D9B7BA18AC61AF5655AC1F75 (void);
- extern void MetricizedGooglePlayStoreService_U3CU3En__2_mDA8D503BFEA537C94C50CECFD2F218FFAA9687C2 (void);
- extern void U3CU3Ec__DisplayClass3_0__ctor_mA138C4FAA7ABAD1DB20D4DF002AE7B78799E5209 (void);
- extern void U3CU3Ec__DisplayClass3_0_U3CDequeueQueryProductsU3Eb__0_mD9DF83EE9A5035BE7F1483D83D048D29F276AD9A (void);
- extern void U3CU3Ec__DisplayClass5_0__ctor_mF985A31F5FCA82DFAA7031769335EC1E43FC3D48 (void);
- extern void U3CU3Ec__DisplayClass5_0_U3CRetrieveProductsU3Eb__0_mABD44FFE6CCE382E6AADD9D77BCFD984B5A3AE0B (void);
- extern void U3CU3Ec__DisplayClass6_0__ctor_mD1D65405D5DC9A42319AC648B7DAA17942E8F42A (void);
- extern void U3CU3Ec__DisplayClass6_0_U3CPurchaseU3Eb__0_m70A8E5D2D89B687E63EB3B6803FCA1EADB8CE31D (void);
- extern void QuerySkuDetailsService__ctor_mE8EC2F94C91F0179E1AC333B2503F23F03535857 (void);
- extern void QuerySkuDetailsService_QueryAsyncSku_m4EDCD379B5AAC897E3512CC82728BCC9866384FF (void);
- extern void QuerySkuDetailsService_QueryAsyncSku_m607784D41BB469A318817EA1F3EA842D9E010BD9 (void);
- extern void QuerySkuDetailsService_QueryAsyncSku_m9E4D69E993809756057ACBCAB379F2B37220F3F4 (void);
- extern void QuerySkuDetailsService_QueryAsyncSkuWithRetries_m6DA64182E45953396A0264076F5EA60C4A3532BE (void);
- extern void QuerySkuDetailsService_TryQueryAsyncSkuWithRetries_m2EAE98C62CD752DA95C0F59AA089AFFF87A4CA31 (void);
- extern void QuerySkuDetailsService_ShouldRetryQuery_mDDBAD809BF96FC1B20F5C568B44A49BBDF2D4C7D (void);
- extern void QuerySkuDetailsService_AreAllSkuDetailsCached_mD2E47F10D03EBD833630BD0E2686B925B9262D46 (void);
- extern void QuerySkuDetailsService_GetCachedSkuDetails_m459625EAD0C244C5B4ECA436A73103D04AFEF3FF (void);
- extern void QuerySkuDetailsService_QueryInAppsAsync_m91146381C5101CEB5FE6E29A9E6F3D9BAAE056B1 (void);
- extern void QuerySkuDetailsService_QuerySubsAsync_m948A7F991C526C115FFB9B5F9A34615697EF1755 (void);
- extern void QuerySkuDetailsService_QuerySkuDetails_mD4D5809EF4F754BE61D2935B667393FA1BBBD30B (void);
- extern void U3CU3Ec__cctor_m6759708B42F0D3D7DC3CFBC13C6E60C7843A796D (void);
- extern void U3CU3Ec__ctor_mD5A2C95AA1D7177F6916D26256D061CA7DBEE49C (void);
- extern void U3CU3Ec_U3CAreAllSkuDetailsCachedU3Eb__14_0_m9E8F5B237A2C6BDAA4ADE1154F4563707B41EDB9 (void);
- extern void U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_0_m1A6386563405257CE9A0980CDC6AEBFE29441E5C (void);
- extern void U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_1_m17BE8243CB9E7F30831CC8AE2F5F35E6C938EE4C (void);
- extern void U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_0_m81501999562AE1D372E32916615C773B5095DB81 (void);
- extern void U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_1_m2EFB4A794BDBC59212FF8E4C679FCCBCEC62A3D4 (void);
- extern void U3CU3Ec__DisplayClass10_0__ctor_mCB4FBCF8A3507D52182C5FBC151B1F13F96FAC3A (void);
- extern void U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eb__0_mD383DC2310068E593EA80ABC43C523E47C5FA99B (void);
- extern void U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eg__OnActionRetryU7C1_m085E475AB077952F2846C6136F49A8C22F2BE075 (void);
- extern void U3CU3Ec__DisplayClass12_0__ctor_m85FF665E14CE34D34612970F31576AA2BE766687 (void);
- extern void U3CU3Ec__DisplayClass12_0_U3CTryQueryAsyncSkuWithRetriesU3Eb__0_m26B993FFAAD1E36665C2A22D4E2F323EBA344E72 (void);
- extern void U3CU3Ec__DisplayClass9_0__ctor_m533A1BF989D3A219AEBA6FBDCC2B1490C2FE9E84 (void);
- extern void U3CU3Ec__DisplayClass9_0_U3CQueryAsyncSkuU3Eb__0_m75B27CF7DD9F98FE9917225F48ADD73BF54D58DA (void);
- extern void SkuDetailsQueryResponse_Finalize_mFE0BA9C7FD572938BE2F3070C72CA1EE2BDDCEB8 (void);
- extern void SkuDetailsQueryResponse_AddResponse_mF1B6ABDF620A5AE5C744B0FCFCD760911029AEC4 (void);
- extern void SkuDetailsQueryResponse_SkuDetails_mA782974FA78D9BB019C144FC6E68CA867CC2841E (void);
- extern void SkuDetailsQueryResponse_IsRecoverable_mA58DC94D88675A7E412CBA0831F12B8674EC6FA2 (void);
- extern void SkuDetailsQueryResponse_IsRecoverable_m388B03DD9EEA0B5787322108CFDC8B7463C4F329 (void);
- extern void SkuDetailsQueryResponse__ctor_m4654FF8B33D29EFD53B5797CB49DE30E8875CFD4 (void);
- extern void U3CU3Ec__cctor_m32F22536A9DEFE113FE9867AD07318A95EBD52EC (void);
- extern void U3CU3Ec__ctor_mA6CE767B6444454DB3210EE8A2A372BE7546F6F0 (void);
- extern void U3CU3Ec_U3CAddResponseU3Eb__2_0_mEEA2ACE4EF5FFB8B9CDDBF40F3C96DB312A83FA6 (void);
- extern void U3CU3Ec_U3CSkuDetailsU3Eb__3_0_m0474D4D31CEAE87A51E00E9E228C60A882797F38 (void);
- extern void U3CU3Ec_U3CSkuDetailsU3Eb__3_1_mB71F4AC7405DD610C8C8EDF6F794B0C20AF540CA (void);
- extern void U3CU3Ec_U3CIsRecoverableU3Eb__4_0_mBFC82350AB7FE2361717F60CD472508099E9DF91 (void);
- extern void SkuDetailsResponseConsolidator__ctor_m9CA3C84075D850B5C635A03FF50725D15BFFEE05 (void);
- extern void SkuDetailsResponseConsolidator_Consolidate_m8A8DBF06DA93652A1E881603968B5124A0308A67 (void);
- extern void FakeGooglePlayStoreConfiguration__ctor_mED7ABA18497E3166EFB99514D00A239DEF15A2AA (void);
- extern void FakeGooglePlayStoreExtensions_IsPurchasedProductDeferred_m3CF9011710F5E0F936E13A300B7AA7DE55365B28 (void);
- extern void FakeGooglePlayStoreExtensions__ctor_m7CE5CD272DDABAF44154E2B79578DE525A413891 (void);
- extern void GooglePlayConfiguration__ctor_m00E3ABD231224448DD73C870F7577A12879FB299 (void);
- extern void GooglePlayConfiguration_NotifyInitializationConnectionFailed_m5E706FABA8A196D40A703E8913617B7F1EA0C5A6 (void);
- extern void GooglePlayConfiguration_NotifyQueryProductDetailsFailed_mC8A178690649569AB47D350786D56865827FDE90 (void);
- extern void GooglePlayConfiguration_NotifyDeferredProrationUpgradeDowngradeSubscription_mEB8B3D29090CE88539CA3E22576D886C73E83173 (void);
- extern void GooglePlayConfiguration_IsFetchPurchasesAtInitializeSkipped_mA957053EED2577592325EB8E80B08FE928839B61 (void);
- extern void GooglePlayConfiguration_DoesRetrievePurchasesExcludeDeferred_m03BBF5C4B8A521E67738B816455D9D8F69CDCDA8 (void);
- extern void GooglePlayConfiguration_NotifyDeferredPurchase_m9E0F334800FDA40407CB9CECD996DD45940D1036 (void);
- extern void GooglePlayProductCallback_SetStoreConfiguration_mADD4C9C243F83D64231BAA554A096C4A41378210 (void);
- extern void GooglePlayProductCallback_NotifyQueryProductDetailsFailed_mD1657729F98064FFB9BBCF5635D0FF1C531EB8DC (void);
- extern void GooglePlayProductCallback__ctor_m950784739496F64C7A5312A7E75A0F97ADA0B77F (void);
- extern void GooglePlayPurchaseCallback__ctor_m68068D41D76338FEB265D46E85289A18AAFE2CF0 (void);
- extern void GooglePlayPurchaseCallback_SetStoreCallback_mDBB788DB101437778407F10A8F83AA5770AEE2CF (void);
- extern void GooglePlayPurchaseCallback_SetStoreConfiguration_mB3D6E90372854F3750107B578C39E990179FB61E (void);
- extern void GooglePlayPurchaseCallback_OnPurchaseSuccessful_m0C42BF32CA2328E8E1ADB1FD7F9057C07E1A0EFD (void);
- extern void GooglePlayPurchaseCallback_OnPurchaseFailed_m797EBCB9415B7E1E6136370E0D919D378DA033D9 (void);
- extern void GooglePlayPurchaseCallback_NotifyDeferredPurchase_mB6A7AD9A8FA816DCAC78A13562515B670C4E1C76 (void);
- extern void GooglePlayPurchaseCallback_NotifyDeferredProrationUpgradeDowngradeSubscription_m2D4199C517F310037AEF29DF92B82D46BEE7AB89 (void);
- extern void U3CU3Ec__DisplayClass8_0__ctor_mC688B3C07EF4A3717B3312CAE767EFEFE864CCBB (void);
- extern void U3CU3Ec__DisplayClass8_0_U3CNotifyDeferredPurchaseU3Eb__0_m3AD7D105AD95ED1F5C71BADBB86BD3108745CCF9 (void);
- extern void U3CU3Ec__DisplayClass9_0__ctor_m30F6B21A8952AEB8839D02CFFEFB1575E5285B31 (void);
- extern void U3CU3Ec__DisplayClass9_0_U3CNotifyDeferredProrationUpgradeDowngradeSubscriptionU3Eb__0_mA776A70712EAF9A5E843069C70F780FFCF5F99AD (void);
- extern void GooglePlayStore__ctor_m442B660554E4BBDE92208921FD3898BFECADFEDC (void);
- extern void GooglePlayStore_Initialize_m7CBB76995E9EC1D9E22D8893BE2A660044A55E08 (void);
- extern void GooglePlayStore_RetrieveProducts_mDB89F3EEE4393786FA0AB117AAF6962DDCE72F04 (void);
- extern void GooglePlayStore_HasInitiallyRetrievedProducts_mF08671150A96861672F6858F392DAB76A5C24E97 (void);
- extern void GooglePlayStore_ShouldFetchPurchasesNext_mCFAC177782D5D8C4A365629CC429BD62C98176B4 (void);
- extern void GooglePlayStore_Purchase_m76E314E4992393D3527D664337C437B525C81FB4 (void);
- extern void GooglePlayStore_FinishTransaction_mB85BB4EA23B4992038BC80994BF7C98982851187 (void);
- extern void GooglePlayStore_OnPause_m31336B413016F6099885044229E4C021A7083BB7 (void);
- extern void GooglePlayStoreExtensions__ctor_m3164A3520A06CDD7E2CA70C380D01B4C0CE7C0F0 (void);
- extern void GooglePlayStoreExtensions_SetStoreCallback_m78881F7FB0978D53414137B1480395B5B2AA553A (void);
- extern void GooglePlayStoreExtensions_IsPurchasedProductDeferred_m4E78DB685E6FBD2DC0A01CE4232B64BB43991FED (void);
- extern void GooglePlayStoreExtensions_TryIsPurchasedProductDeferred_mCCAAD920152BC5DFC3F9455B5902FA2157D67CAB (void);
- extern void GooglePlayStoreExtensions_GetPurchaseState_mE5AE3E1D748E943BFC07E3CEFA83F6D5807CB1E3 (void);
- extern void MetricizedGooglePlayStoreExtensions__ctor_m7730A5D7D03CAEF22B57BA348C6A0F7E6ABB54D0 (void);
- extern void GoogleProductMetadata_set_originalJson_m2AA4A01F9FD6D875D3178EA3516A2CA7E0C2F458 (void);
- extern void GoogleProductMetadata_set_subscriptionPeriod_mE8B892F4C6E22156A092545EE251E829BD657A4B (void);
- extern void GoogleProductMetadata_set_freeTrialPeriod_mAD70EE78EF91C1EC5BC3EDC1BA4C36832F6DB82F (void);
- extern void GoogleProductMetadata_set_introductoryPrice_m5A6A7589836E3AAAB78BF64B2EB434D50697FC55 (void);
- extern void GoogleProductMetadata_set_introductoryPricePeriod_mF7C017AF4C274A6417A5FF1AFFB94584F3950D53 (void);
- extern void GoogleProductMetadata_set_introductoryPriceCycles_m5D7A148FCFC8C13188F970F2AB846033CD30EE64 (void);
- extern void GoogleProductMetadata__ctor_m6987658611A6B5BDD48C3C87283ACB6346F28A6B (void);
- extern void GoogleFetchPurchases__ctor_m23498B0FC31C93822DF3D731BFF27CE51978420F (void);
- extern void GoogleFetchPurchases_SetStoreCallback_mD64337130E5102DA07EB013F73B56EB099865293 (void);
- extern void GoogleFetchPurchases_FetchPurchases_m9C4BD1ABE4996D730F7512C11D3CD64F39EB6E6F (void);
- extern void GoogleFetchPurchases_FetchPurchases_mB5BB2978060AF58720285D9D82210C49CAEEB404 (void);
- extern void GoogleFetchPurchases_FillProductsWithPurchases_m696BAD4693F1BE2B9582C7E98C8D8FC9AEA8984A (void);
- extern void GoogleFetchPurchases_BuildProductsFromPurchase_m1F0C4090FBDD9D617F8246E05E24315BAF11850F (void);
- extern void GoogleFetchPurchases_CompleteProductInfoWithPurchase_mF21F1D0A88F9D3975E33B32572A6CFD2FE8598B7 (void);
- extern void GoogleFetchPurchases_OnFetchedPurchase_mDDEF43EF8FACA9B9267717E8795BCB1FBC2B982A (void);
- extern void GoogleFetchPurchases_PurchaseIsPurchased_m1CD163A5827F7638E3F7FFE75F6A8E5A16C13E95 (void);
- extern void GoogleFetchPurchases_PurchaseIsPending_mC3D01A896C7C55B6D823BE1D9F25FA404B3AD838 (void);
- extern void GoogleFetchPurchases_UpdateDeferredProductsByPurchases_mB2277296696BC368E113BA97ED73A49402F361B0 (void);
- extern void GoogleFetchPurchases_UpdateDeferredProductsByPurchase_mC4F57ECF37A0DF6A86093DBF9C3B4108A6646BF9 (void);
- extern void GoogleFetchPurchases_UpdateDeferredProduct_mDA34FF5F5BB2D0570E557F1C66EB7D5A122E8460 (void);
- extern void U3CU3Ec__cctor_m663611EADD44C5C2716D84BC2FCC720F2412C128 (void);
- extern void U3CU3Ec__ctor_mA3D48173D32BD58EE4D8181CCD896F7E83FB7E04 (void);
- extern void U3CU3Ec_U3CPurchaseIsPurchasedU3Eb__11_0_mA0F316BEF7E02821ED1013153E9A1489F535A57A (void);
- extern void U3CU3Ec_U3CPurchaseIsPendingU3Eb__12_0_m39A95DB2A2EBD4FBA010242D5A8A7C179EC58D7B (void);
- extern void U3CU3Ec__DisplayClass10_0__ctor_mAD689312E6C6B761FE8F4CEE69E046A057401D60 (void);
- extern void U3CU3Ec__DisplayClass10_0_U3COnFetchedPurchaseU3Eb__0_mBC5858D8DC79E0384937B68E851D50DC254D49C1 (void);
- extern void U3CU3Ec__DisplayClass6_0__ctor_mA33E3F3BAC5C6B0FCCD09956DA6BBE52CB990EEA (void);
- extern void U3CU3Ec__DisplayClass6_0_U3CFetchPurchasesU3Eb__0_m428B81E2341006BE8162324D3EEEA47F815006A3 (void);
- extern void U3CU3Ec__DisplayClass8_0__ctor_mCC52CF9D8B2EC984F52D7A3AE12B24B59F65E7E8 (void);
- extern void U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__0_m93F6324836D90AE1CEF6F3E9DA705F9137F43932 (void);
- extern void U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__1_mEAC504DF71965A450E4855D8CA3DBD7F4953EF75 (void);
- extern void GooglePlayStoreFinishTransactionService__ctor_m73C28E31505A72BADFCB9E2ADB5946D9E1E49069 (void);
- extern void GooglePlayStoreFinishTransactionService_SetStoreCallback_mBD8994E6B5551AC9C311B19706F6BA6A5FF323C9 (void);
- extern void GooglePlayStoreFinishTransactionService_FinishTransaction_mC226005E6254F6269113CA84612B1A0E343D08CE (void);
- extern void GooglePlayStoreFinishTransactionService_HandleFinishTransaction_m6EE0595168E0A036E4302D3D77C1296131CDBCA2 (void);
- extern void GooglePlayStoreFinishTransactionService_CallPurchaseSucceededUpdateReceipt_m7A161EB8AB08F82A3998407C37448C5D5AC34AE4 (void);
- extern void GooglePlayStoreFinishTransactionService_IsResponseCodeInRecoverableState_mB643EF366A9693C524CEEA23AA96C9D04EFDFDAF (void);
- extern void U3CU3Ec__DisplayClass7_0__ctor_mC7615D49B9A621DB691190861BE652EC3A31AE5A (void);
- extern void U3CU3Ec__DisplayClass7_0_U3CFinishTransactionU3Eb__0_m04B922FDC75F4891A2B7F6FA7F0E424BA3A38BD2 (void);
- extern void GooglePlayStorePurchaseService__ctor_m7848EF4D063099A3CB5A94F10839E86935AB6A11 (void);
- extern void GooglePlayStorePurchaseService_Purchase_mEC0DBE8E7088EE6A76470CE09F70A1397D3EC097 (void);
- extern void GooglePlayStoreRetrieveProductsService__ctor_m0CA75B6C835F2EC9DBC8E462B6713BE4698324B2 (void);
- extern void GooglePlayStoreRetrieveProductsService_SetStoreCallback_mD7565370FECAAC10E486CBE82C6BA3CCEBDDE50A (void);
- extern void GooglePlayStoreRetrieveProductsService_RetrieveProducts_m467794DCB494591A9DF168380E057DD2E9CC5BF7 (void);
- extern void GooglePlayStoreRetrieveProductsService_OnProductsRetrievedWithPurchaseFetch_mFF9A8E3594336C215CF28CA6BE4ADE7871DB26CA (void);
- extern void GooglePlayStoreRetrieveProductsService_OnProductsRetrieved_mBF9EF11DA650BEDD232019B59B813F9D474D2B7F (void);
- extern void GooglePlayStoreRetrieveProductsService_OnRetrieveProductsFailed_m45BA9CC0D0A90D81919EA4DE083EC17E6DA4A31F (void);
- extern void GooglePlayStoreRetrieveProductsService_ResumeConnection_m90D885D4B2EA84E45DA13DEAB9E4B14E53FA89B2 (void);
- extern void GooglePlayStoreRetrieveProductsService_MakePurchasesIntoProducts_m84ED9554C7D4A0C112BB4E971458737766428177 (void);
- extern void GooglePlayStoreRetrieveProductsService_IsPurchasedProductDeferred_mD31CFEBACEDE3BF9D682FB55B4647547E85D3552 (void);
- extern void GooglePlayStoreRetrieveProductsService_CreateNewProductUnifiedReceipt_m4A828BFF7493EB1E95167CDD381BF4E53CC27747 (void);
- extern void GooglePlayStoreRetrieveProductsService_HasInitiallyRetrievedProducts_mBADDD565F7DBF2601D816EE6B59283813FCBEFD7 (void);
- extern void U3CU3Ec__DisplayClass10_0__ctor_m7999427F3130F6D577FD8A6BA660E0FDE93D4A32 (void);
- extern void U3CU3Ec__DisplayClass10_0_U3COnProductsRetrievedWithPurchaseFetchU3Eb__0_m601CDF5D52DF3A7C33934B2C2C86308DF21D758D (void);
- extern void U3CU3Ec__DisplayClass14_0__ctor_mF92CF9E8D4C9E3F5D59BE5FA56AF02EFF7616E6D (void);
- extern void U3CU3Ec__DisplayClass14_0_U3CMakePurchasesIntoProductsU3Eb__0_mC86784D0EE46527E6027B975D8790B2A7A2D4812 (void);
- extern void StoreCallbackExtensionMethods_FindProductById_m0E4A17BCE49A46D65A1B234C9B87D3C53067B012 (void);
- extern void JavaBridge__ctor_mFE1D316608D352A17AF50EC9DF0E5E8B9E7DD08C (void);
- extern void SerializationExtensions_TryGetString_m50B16F206A82935DDBDEAA88520270BE788F5B33 (void);
- extern void JSONSerializer_SerializeProductDef_m30C22B408C008814C1703550DF65EBD09CA832B7 (void);
- extern void JSONSerializer_SerializeProductDefs_m3D0929F515F66A1E0F0E6849454A6985BBFEB616 (void);
- extern void JSONSerializer_SerializeProductDescs_m099404FD14B84B48AAE2B30D571EF389E59E21BD (void);
- extern void JSONSerializer_DeserializeFailureReason_m914151E8ED821123DB57B56770124D2B34C5EBAB (void);
- extern void JSONSerializer_BuildPurchaseFailureDescriptionMessage_m9DEEAF966943E83E129F94F05E2C3930D160A03C (void);
- extern void JSONSerializer_EncodeProductDef_mC867EAE9AB70675C075F5932ADCBBAE5BDF9EE19 (void);
- extern void JSONSerializer_EncodeProductDesc_mAEB2F175F5BE8DE42353A26D77796BCA37A6B6C3 (void);
- extern void JSONSerializer_EncodeProductMeta_mF9DBB19F1A341F90494BCF37645BD866B65F595B (void);
- extern void ScriptingStoreCallback__ctor_m6F45754D7A1E6A4ECFA500BC97B89A2D8EC67E9C (void);
- extern void ScriptingStoreCallback_get_products_m4520241E9DBDE79A7635311D8A615D5B906211B5 (void);
- extern void ScriptingStoreCallback_OnSetupFailed_mAA28ACD581F8726F3D977CED7B8FF3D85A536E90 (void);
- extern void ScriptingStoreCallback_OnProductsRetrieved_m53F615DDDBD1474B8DF639236D38806FC43E0AA4 (void);
- extern void ScriptingStoreCallback_OnPurchaseSucceeded_mCC7D4C723008049F7AA5D67BDD6D2087A67D24ED (void);
- extern void ScriptingStoreCallback_OnAllPurchasesRetrieved_m6C66FC3DD9081BC62B25724E4C1F2B878CC4660E (void);
- extern void ScriptingStoreCallback_OnPurchaseFailed_m6900616FF46EBFCA55AC24747B622887167E3700 (void);
- extern void U3CU3Ec__DisplayClass10_0__ctor_mE4A4709BD713F62CA3FC17639EC65C23DE3091FE (void);
- extern void U3CU3Ec__DisplayClass10_0_U3COnPurchaseFailedU3Eb__0_mB30EAA403CBDE5D183B13BFD075E68D1464CC7EB (void);
- extern void U3CU3Ec__DisplayClass6_0__ctor_m0B122E52D7806788868B67D5349501C605B6B976 (void);
- extern void U3CU3Ec__DisplayClass6_0_U3COnSetupFailedU3Eb__0_mE99F04FDBC25BF7FE398E60F144A502967837789 (void);
- extern void U3CU3Ec__DisplayClass7_0__ctor_m7142B52B5A6D40912C042FD8BD993CB490019DE8 (void);
- extern void U3CU3Ec__DisplayClass7_0_U3COnProductsRetrievedU3Eb__0_mAAFBF7E5A56F1688BE5B1CA2C33C7A6DF42A0F02 (void);
- extern void U3CU3Ec__DisplayClass8_0__ctor_m451ABE949F36739F659791BA041B83B8E9889C39 (void);
- extern void U3CU3Ec__DisplayClass8_0_U3COnPurchaseSucceededU3Eb__0_mCAC7081CD54676C43056EFA6FC1B55E267E464D1 (void);
- extern void U3CU3Ec__DisplayClass9_0__ctor_mA89E3CAD6C621FA387FDA175B856300AB4F1515A (void);
- extern void U3CU3Ec__DisplayClass9_0_U3COnAllPurchasesRetrievedU3Eb__0_mF701C2366616FF7651766BC228D3E3CC704D9835 (void);
- extern void ScriptingUnityCallback__ctor_mE91537431428F2BAE31F74C97511D1801B2B76BA (void);
- extern void FakeUDPExtension__ctor_m9909C64791CF0E33D3BC4A9EF5A0CD83731B4779 (void);
- extern void UDP_get_Name_m70A3676CB1334C681DD38DA9A3A58D7D854FC52B (void);
- extern void UDPBindings__ctor_mCC17D7B8FF9A01CBBDACDB250F92451CAE9DA238 (void);
- extern void UDPBindings_Initialize_mB5D70AECF387FD4853B2C8C13441400F76B8C1FD (void);
- extern void UDPBindings_Purchase_m6E867ECDA70899A560303597915C4D9AC54402A3 (void);
- extern void UDPBindings_RetrieveProducts_m9071FB1685A15AA310CF02CD785091D465E15517 (void);
- extern void UDPBindings_FinishTransaction_mCACDE296E30E5E9B9A4ABA3A57C8362CB2979ECB (void);
- extern void UDPBindings_OnInventoryQueried_m82D6D36598774DFAF94E85A6D3191584386AFB11 (void);
- extern void UDPBindings_RetrieveProducts_mF3C89574016423E1BCDF913DEE85B994B9B8489A (void);
- extern void UDPBindings_Purchase_m45DF1F8D92447D7383D01797E59EC4B3F28F83E6 (void);
- extern void UDPBindings_FinishTransaction_m4622B1CB1D217ADC06D774AD233114FCA9F52D3C (void);
- extern void UDPBindings_StringPropertyToDictionary_m39B952E8FF7D956C5818D9BDAB3E6F095CE6EA10 (void);
- extern void UDPImpl_SetNativeStore_mE6BF4249E85915BF98457E2D9ABD26896BA955AD (void);
- extern void UDPImpl_Initialize_m856683942B1E72EBBA2C03D2DEF0A4D4A24DDF70 (void);
- extern void UDPImpl_RetrieveProducts_mF219F897C8726F2E00D24E37241DF7816801C2D6 (void);
- extern void UDPImpl_Purchase_m2FE4F9AA04774FFB1F9FBA449C6E57E61412B1E5 (void);
- extern void UDPImpl_OnPurchaseDeferred_mD181FC617E85EB85048FAFB5C190979C2C9F170B (void);
- extern void UDPImpl_FinishTransaction_m0926C1E511ECAF82484CDE4430A53BC4665AE803 (void);
- extern void UDPImpl_DictionaryToStringProperty_m0C3B83E927934260F67FC7329328496F327A16DB (void);
- extern void UDPImpl__ctor_m76DDF676AAEEF16864C212AF4F3067E8494E53BC (void);
- extern void U3CU3Ec__DisplayClass10_0__ctor_mF1B0D32B7DC643E0DF4DF4101AD8261CD33A8650 (void);
- extern void U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eg__retrieveCallbackU7C0_m089FBA707F15C0733AB9623189408682CEAB6824 (void);
- extern void U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__1_mF3763D2E4FF48AEC059193028E14BC784F479278 (void);
- extern void U3CU3Ec__DisplayClass11_0__ctor_m892A56A497D981D4387D76978F75F8A8ED72F66F (void);
- extern void U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m005372A7A362E83C9FA8C9E826D03CDC750BEB2C (void);
- extern void UDPReflectionUtils_GetTypeByName_m26748778D6FA4CCB984BF47429E7F482F353C400 (void);
- extern void UDPReflectionUtils_GetAllAssemblies_m61C9FE53E7130D9F2E261538B11666B679399E94 (void);
- extern void UDPReflectionUtils_GetTypes_mF549D6ACE95CE2FD623113E943A65BFFC67EFDB7 (void);
- extern void UDPReflectionUtils__cctor_mC38EF4E2397351D025D3BE4F017BE5C58E5EE0D4 (void);
- extern void U3CU3Ec__DisplayClass6_0__ctor_m904B6C1C4442C69C8F2B22E576F05F2B99A3732E (void);
- extern void U3CU3Ec__DisplayClass6_0_U3CGetTypeByNameU3Eb__0_mE562C8B0ECB0EDD67151846249850549E5396DE1 (void);
- extern void InventoryInterface_GetClassType_m10737C1664C2EFEF67AEF67987633D8FBA9C00CA (void);
- extern void InventoryInterface_GetProductListMethod_m5A7B9400947F108080DB3C0F522C9798E90D0669 (void);
- extern void InventoryInterface_GetPurchaseInfoMethod_m6F8F663AEC7F4654C65A6CADDF8176877D6CDF43 (void);
- extern void InventoryInterface_HasPurchaseMethod_mDC03C925282E5CB8F59D68590300B80B77691F4E (void);
- extern void ProductInfoInterface_GetClassType_m3439925DE53E57C7A4458FD57E713D9F52C1E625 (void);
- extern void ProductInfoInterface_GetCurrencyProp_m4E4121C55EBC9BD58E603CD7DE11A3F6BAA0CF4F (void);
- extern void ProductInfoInterface_GetDescriptionProp_m059605088C221E9566919514E62A1A72C0F9AE39 (void);
- extern void ProductInfoInterface_GetPriceProp_mFA43FA2FD73B1ABA1246C03299A427B14D624D32 (void);
- extern void ProductInfoInterface_GetPriceAmountMicrosProp_m164F27C12024DE1DB4791B5BD11D0B85AB2679F8 (void);
- extern void ProductInfoInterface_GetProductIdProp_m12571C88A3B8424D85C95D70E6FE05206582F7CB (void);
- extern void ProductInfoInterface_GetTitleProp_m56C31D22C70E0EC6E2E261033035B871B8B964A0 (void);
- extern void StoreServiceInterface_GetClassType_m2969A5DF58984F95FF6C616A0ADE15C79D412F1C (void);
- extern void StoreServiceInterface_GetNameProp_m1CFA6C61AFA7966244BAA572BEAFFE5B6A29CCCC (void);
- extern void StoreServiceInterface_GetName_mC41966B0C100102BC137679E7A3B25057D7909D8 (void);
- extern void UdpIapBridgeInterface_GetClassType_mC7A8F5D6A4317B6A791F52E046724086A8F1BAEF (void);
- extern void UdpIapBridgeInterface_GetInitMethod_mD6DE8995E5662C072A9FC589BF6D809D20E1EAD3 (void);
- extern void UdpIapBridgeInterface_GetPurchaseMethod_m9616655B55363E72B85FCDD726FBC1D049309055 (void);
- extern void UdpIapBridgeInterface_GetRetrieveProductsMethod_m6EDB2AFF6E367F47217E0BE4D2455F4FDB5BBA6C (void);
- extern void UdpIapBridgeInterface_GetFinishTransactionMethod_m40E3E8F5F41A5E88ED74401B7138D15611FD0B1F (void);
- extern void UserInfoInterface_GetClassType_m1516981C261FEE915B9C492542E5AA8A34B3240E (void);
- extern void AppleJsonProductDescriptionsDeserializer_DeserializeMetadata_m3BB9308C095DC20A6FB93D935AA927B6ADA8B3A9 (void);
- extern void AppleJsonProductDescriptionsDeserializer__ctor_m1F845020E3FFCD14A440A2A36BEF4CB11D68ACF4 (void);
- extern void AppleProductMetadata__ctor_mD8E3F61B922CCD601F17439714660DCC400A1146 (void);
- extern void AppleStoreImpl__ctor_mBD0FC70F117D699AE7E7F1A9AE371A89E09F20E0 (void);
- extern void AppleStoreImpl_SetNativeStore_mCAA38D79F89B739BD7E1F4FEA7A363D0F64AF0F0 (void);
- extern void AppleStoreImpl_get_appReceipt_mE698AC3E11676A40E6D562556940523347B0D3F0 (void);
- extern void AppleStoreImpl_get_appReceiptModificationDate_m3A9E1D89ADD3B8F416AC12F692E4B0AAE976FFCB (void);
- extern void AppleStoreImpl_OnProductsRetrieved_m9D235101ACE0033B59D230AC021B17BFA54480D2 (void);
- extern void AppleStoreImpl_HasInAppPurchaseReceipts_m4FB82D514565F80413D164C9E6FEC989A5063695 (void);
- extern void AppleStoreImpl_EnrichProductDescriptions_mE6813BD5D386C148DFA1DAFBE16DB305B9C2AFA5 (void);
- extern void AppleStoreImpl_FindMostRecentReceipt_m12E86A817828E8985BB6BB107EA65AAB15F32B3F (void);
- extern void AppleStoreImpl_FirstNonCancelledReceipt_m1EABDCB6CC88E2DA54F76260AEA582E52DB86588 (void);
- extern void AppleStoreImpl_OnPurchaseDeferred_m6CE392E89FC84BFAE015141AE7D933875F05948C (void);
- extern void AppleStoreImpl_OnPromotionalPurchaseAttempted_m018CC2E31C3E716DF380FBA0C42715420DD4C20B (void);
- extern void AppleStoreImpl_OnTransactionsRestoredSuccess_mCF4359ADC99EB4F78ED748EBDF2B94D78C2034F1 (void);
- extern void AppleStoreImpl_OnTransactionsRestoredFail_m3973CE52BCA38F157074CE96657F42276547CEBD (void);
- extern void AppleStoreImpl_OnAppReceiptRetrieved_m07A1C89BD8A58041B10710852AC0AFBB1391310F (void);
- extern void AppleStoreImpl_OnAppReceiptRefreshedFailed_mA3A2B42ACADD43CB7244C05880415BB476FBF37F (void);
- extern void AppleStoreImpl_OnEntitlementsRevoked_m7E93E0684D4CC581523F49843E41D49861FEF85D (void);
- extern void AppleStoreImpl_RevokeEntitlement_mA67D94B765B300731F3E8DF4ECC6127CCF6E9349 (void);
- extern void AppleStoreImpl_RestoreActiveEntitlement_m4888905FC32CE1254A1D2F2A30025D41B55210C3 (void);
- extern void AppleStoreImpl_OnFetchStorePromotionOrderSucceeded_m77087CC477DACA11276EAC56DE4642CA0204E94C (void);
- extern void AppleStoreImpl_OnFetchStorePromotionOrderFailed_m72F451614574601471846DD036E5F3DC87E40B25 (void);
- extern void AppleStoreImpl_OnFetchStorePromotionVisibilitySucceeded_mDE57FA25C43AE60A3CB9E1A57CE04319BE221E31 (void);
- extern void AppleStoreImpl_OnFetchStorePromotionVisibilityFailed_m21E497011356CBA519B6C5A706FE613843C02D5F (void);
- extern void AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C (void);
- extern void AppleStoreImpl_ProcessMessage_mC2157FC76D7DBC1E2FC7BBDB7BBCF2A446DF4E39 (void);
- extern void AppleStoreImpl_OnPurchaseSucceeded_mDF3F5F43794A92ED87BC1646383E2CF6EB7CB083 (void);
- extern void AppleStoreImpl_GetAppleReceiptFromBase64String_m51D3D664D39BBD5F43C4A94B775F862787861923 (void);
- extern void AppleStoreImpl_IsValidPurchaseState_mE2B8D7C431D213BE21C85965912FD361DEAFFFA0 (void);
- extern void AppleStoreImpl_IsRestored_m2DBB3F30FC6B9598EA221FD38934C68D80DF6AE2 (void);
- extern void AppleStoreImpl_IsSubscriptionRestored_m237B14594268FBB33683A4F955C8A21977BD28CB (void);
- extern void AppleStoreImpl_IsNonSubscriptionRestored_m427CCEABFB237DB04CF1162B6BB953E8F40D7F92 (void);
- extern void AppleStoreImpl_UpdateAppleProductFields_m0538B8029D6D13B5219133386F86D43AB93B22EA (void);
- extern void U3CU3Ec__cctor_m0BA679B3E781098A2AF437EE2FB5A1AEFB539309 (void);
- extern void U3CU3Ec__ctor_m774F236990A8E5BEDA0ABD30DFB68A51BD27ECC4 (void);
- extern void U3CU3Ec_U3CFindMostRecentReceiptU3Eb__39_1_m0EAF11F86324724479F8DE02108184315C7E402E (void);
- extern void U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_0_m3D710E919FC9C1C18A2A353A6AF6DC700DF5C6F5 (void);
- extern void U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_1_mEE957FEAECE8D83314CBD242345297AECB3E0BB3 (void);
- extern void U3CU3Ec__DisplayClass39_0__ctor_m50A62C51D8680553E30D6D74C3FFB74F236DC1E5 (void);
- extern void U3CU3Ec__DisplayClass39_0_U3CFindMostRecentReceiptU3Eb__0_m8E98A28648258BE4A3CB16BC41684CDDC447A989 (void);
- extern void U3CU3Ec__DisplayClass64_0__ctor_m3A3126A85E3F8159D79D151B4984A67101EAD4DF (void);
- extern void U3CU3Ec__DisplayClass64_0_U3CMessageCallbackU3Eb__0_m707C03C1BB2C18BFE669B84303F966E2E8C4D094 (void);
- extern void FakeAppleConfiguration__ctor_m63E4505C8C9B95858C7BBFB42EA2531479B73F50 (void);
- extern void FakeAppleExtensions__ctor_m0865C755818A9426107461EE61181EC16A327A95 (void);
- extern void MetricizedAppleStoreImpl__ctor_m4EC185ADFE1F5A3D36F1C371F67D3A3D25D04BB7 (void);
- extern void MetricizedAppleStoreImpl_RetrieveProducts_mDBAEC2A8871E09E9C10AF8C7EEAD0513F0E105AE (void);
- extern void MetricizedAppleStoreImpl_Purchase_mD2556C27AC625ADF5E7D1B4005EC1098C07AECFF (void);
- extern void MetricizedAppleStoreImpl_U3CU3En__6_mC8110AE2E5F10AD50CC0DF3BD1E55F6FBCF46DA7 (void);
- extern void MetricizedAppleStoreImpl_U3CU3En__7_m8D1390F64D308EE30EA8B398F3D67D99FECD94A8 (void);
- extern void U3CU3Ec__DisplayClass10_0__ctor_m5CC80C6E0A40ABEC6DD0A0CA7AE53B3A2ABE93B9 (void);
- extern void U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__0_m4BE5D94E20F2B17F3885422DE0B1096C2F759B4C (void);
- extern void U3CU3Ec__DisplayClass11_0__ctor_m5F43D94B9055AD615545604BF3A3BC460CE7223F (void);
- extern void U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m5EAF03211158EFC32B2ACD04B721FCECB3B39AA3 (void);
- extern void JSONStore__ctor_m4DD282A6EF45285AECA5A514FC93EEDF20726A73 (void);
- extern void JSONStore_SetNativeStore_mA57807DA54ADEB75FC4CFD90C238E6E0D20095EE (void);
- extern void JSONStore_UnityEngine_Purchasing_IStoreInternal_SetModule_m0DD1A798C36C7FC81194DD7088D82BD88F69F219 (void);
- extern void JSONStore_Initialize_m6F038EB353B23D8EE7323FF5F7D7C67D150B47B0 (void);
- extern void JSONStore_RetrieveProducts_m3A4C2A6A378D100A71E674DE95281779D55692CE (void);
- extern void JSONStore_Purchase_m8E6F174FC145C4AE226B6A2981B5152A4D04419E (void);
- extern void JSONStore_FinishTransaction_m18575AA2005FB1428C7EFCCEE479FC1296CDF9E3 (void);
- extern void JSONStore_OnSetupFailed_mA82E1D0BF98A86C54303784CBD84FFE724564CCA (void);
- extern void JSONStore_OnProductsRetrieved_mBDAD438AF037964721F33C0744A5A643E137A1F8 (void);
- extern void JSONStore_OnPurchaseSucceeded_m09A0AB98491589C368AA8C977FE51CCC6DD98D13 (void);
- extern void JSONStore_OnPurchaseFailed_mB029FDC26201096ED60C8F5EF06072581F07DF6D (void);
- extern void JSONStore_OnPurchaseFailed_m5179D59E1A1843867CA5755BEA517D67B08EB698 (void);
- extern void JSONStore_ParseStoreSpecificPurchaseErrorCode_m96B6CFD940F442FE03EFB7C504F87DAFDEE1DF4E (void);
- extern void MetricizedJsonStore__ctor_m2ADEC3C30AF634B4C5772692B5AAD279FD6F63BC (void);
- extern void MetricizedJsonStore_RetrieveProducts_mA95C1B26222726C50A82B9A3E989C7BF73BFEB99 (void);
- extern void MetricizedJsonStore_Purchase_m462F91A5D586E569EAD21DB49E874F59DFE76D01 (void);
- extern void MetricizedJsonStore_U3CU3En__0_m5EB59AD3CD8FF59D4C2802141AF73171E8B2BA58 (void);
- extern void MetricizedJsonStore_U3CU3En__1_mF5C2E20C0BEECCCB6167596CA562B21E660225C2 (void);
- extern void U3CU3Ec__DisplayClass2_0__ctor_mB7D17271A19DD8FCA4C84F0284C08F86C710ABAC (void);
- extern void U3CU3Ec__DisplayClass2_0_U3CRetrieveProductsU3Eb__0_m4FC8F6782C5D5836A28CE31DAEEF5669FD656978 (void);
- extern void U3CU3Ec__DisplayClass3_0__ctor_m2FC9B21CB2383A765C3BC78DBB5A277C20B11037 (void);
- extern void U3CU3Ec__DisplayClass3_0_U3CPurchaseU3Eb__0_mB695025A890C2770D2064621F70C70A317D6728B (void);
- extern void NativeStoreProvider_GetAndroidStore_m037D7302B0F9C3259D0279BB287E98226C87A9F6 (void);
- extern void NativeStoreProvider_GetAndroidStoreHelper_mD5E36DD90BBEC32214E179C8750525C32BBDABF9 (void);
- extern void NativeStoreProvider_GetStorekit_m646172E0CBD784F0C22D8692EA371897259C611B (void);
- extern void NativeStoreProvider__ctor_m07B2B33D02263814FE48940ADF0A03982B5865DE (void);
- extern void DialogRequest__ctor_mC3E10040E1B78AB04AA6D60282493E0E6945BE3A (void);
- extern void FakeStore_get_unavailableProductId_m2BC9F52E88C1A7FE386B45F1EB97022FA23D2591 (void);
- extern void FakeStore_Initialize_m6E65BC30AF8771CBAEF2CA1C3B96E37C1FE0628E (void);
- extern void FakeStore_RetrieveProducts_m303849A4FCAEE4E4E5069E3DF509FB7A93096C17 (void);
- extern void FakeStore_StoreRetrieveProducts_mC88F1F4CDF525D65CAC62B0F647CD96160FE7400 (void);
- extern void FakeStore_Purchase_m48FB0953249E8DDD1B7ABDB3A42E30F143EC50B3 (void);
- extern void FakeStore_FakePurchase_m4B4EA44A636EA24B26B3308FA680E8BA131063F4 (void);
- extern void FakeStore_FinishTransaction_mB9B6A7DFC8B82401097DB06E3C811B59E95CF074 (void);
- extern void FakeStore_FinishTransaction_m1B0BB74DB65197CCCBC668B8E0B1385837B49486 (void);
- extern void FakeStore__ctor_m529FB72CF8BE9F6C28833C8BD8B4C6D5C2948A71 (void);
- extern void FakeStore_U3CU3En__0_m8C016780A5CA15C80D4C80FD4E1163BCA7C2DD47 (void);
- extern void U3CU3Ec__DisplayClass13_0__ctor_m3A44246DEDB7046A5C81ECA50E9873C799BC5372 (void);
- extern void U3CU3Ec__DisplayClass13_0_U3CStoreRetrieveProductsU3Eg__handleAllowInitializeOrRetrieveProductsU7C0_m0C75119A8FFD643058F5831A798B17FD8AB12F03 (void);
- extern void U3CU3Ec__DisplayClass15_0__ctor_m986BB38436CE07B57B74D5A928F3D5B1E23E9FA0 (void);
- extern void U3CU3Ec__DisplayClass15_0_U3CFakePurchaseU3Eg__handleAllowPurchaseU7C0_mAA346ACDF0ACBA0832423F884022D53020F48D9E (void);
- extern void LifecycleNotifier_OnDestroy_m246944B7AEB9D6DE47CB3AF275EE9614B549B0CB (void);
- extern void LifecycleNotifier__ctor_m9A95DEEA574F6E2E00912E48621EA6B5A3E6F883 (void);
- extern void UIFakeStore__ctor_m64E1D7567F361F1C989B8C4AB16797C59F318A91 (void);
- extern void UIFakeStore_StartUI_mAB071EA2DA1BBFE742A2E703B990B9F1F1451236 (void);
- extern void UIFakeStore_InstantiateDialog_mD026EE9DD7C69F6C2249396F88E07B176C38AE43 (void);
- extern void UIFakeStore_GetOrCreateFakeStoreWindow_m50463EF1F86C75C233FEC5FD8489D0307561E58F (void);
- extern void UIFakeStore_AddLifeCycleNotifierAndSetDestroyCallback_mDE17957F5B9147E4CBFEFAF588B87C2A7630396D (void);
- extern void UIFakeStore_EnsureEventSystemCreated_mE117DF9CE72DF03351C73E80A6198C6B45F63F7B (void);
- extern void UIFakeStore_ConfigureDialogWindow_mED9380970BA858FBAB0CD91F8EDF705F1C0CE81D (void);
- extern void UIFakeStore_ConfigureDialogWindowCallbacks_mAC7C799D2855D4FFD5348FBAB1B310BE81EBEBDD (void);
- extern void UIFakeStore_CreateEventSystem_m8338D2EE206C65F141FC341A0276BB7B5B246FC7 (void);
- extern void UIFakeStore_CreatePurchaseQuestion_mC3B18AD45DE1E6C48EE133B328E03CD36F3A2796 (void);
- extern void UIFakeStore_CreateRetrieveProductsQuestion_mA8F54CD710F267A62CA5F7F8A03AE124919B1D3F (void);
- extern void UIFakeStore_OkayButtonClicked_m26F1DD23773A273FF8FFFF3CB608C320C5B64DAD (void);
- extern void UIFakeStore_CancelButtonClicked_m52437E1F81879351852E31764FA5F23FA1603128 (void);
- extern void UIFakeStore_DropdownValueChanged_mF83E1BFE1626BE9022798927E752484177080547 (void);
- extern void UIFakeStore_CloseDialog_mE8B51134B192C2621038E48FF09021722AB364F6 (void);
- extern void UIFakeStore_IsShowingDialog_mBAC6E95889588F5375EC69840FE8B5E453ECDB36 (void);
- extern void UIFakeStore_U3CAddLifeCycleNotifierAndSetDestroyCallbackU3Eb__14_0_m107AE87F0E9C1A0ED41726E9437A7A661F59BB8C (void);
- extern void U3CU3Ec__cctor_m8EF9FDCCD5BBBB1967B8D454430BCE9FF77B3B2C (void);
- extern void U3CU3Ec__ctor_m56FEB4156B7305825949898B363E9D59A69CB8F4 (void);
- extern void U3CU3Ec_U3CCreateRetrieveProductsQuestionU3Eb__20_0_mA8807138FF30C33760DA743C4000952ED76A1083 (void);
- extern void UIFakeStoreDropdown_DoPopup_mAF6A20CB635535553421DB5EEC2AF44FC117B30D (void);
- extern void UIFakeStoreDropdown_OnOptionSelected_m895D124CFA1CB9C95289167A3E5FE6ECD54C0144 (void);
- extern void UIFakeStoreDropdown_SetOptions_m22E267F240163FF762D8A2217F10380D0F5446A3 (void);
- extern void UIFakeStoreDropdown_SetSelectionAction_mF781B80685CEF7F7E43A2349CADE6B621C95F8E9 (void);
- extern void UIFakeStoreDropdown__ctor_mDEBD1428CA136C9AB9C4458CFC4958C72F3F2BB2 (void);
- extern void UIFakeStoreWindow_OnGUI_mD394ECF8E08AEAEC2A5BE6EDEA91D06104E2B6C2 (void);
- extern void UIFakeStoreWindow_CreateCenteredWindowRect_m6FB016D6FB7383922ACD9B33A35CCAE56846421B (void);
- extern void UIFakeStoreWindow_DoMainGUI_m81A28A95C62E330EC8E8F529153669A57E105FD6 (void);
- extern void UIFakeStoreWindow_DoDropDown_m68F2D70DC61584586685E077EC6682C59436F0AE (void);
- extern void UIFakeStoreWindow_OnOkClicked_m041427DA6DF343598DF6BAFAF51743F184B4845E (void);
- extern void UIFakeStoreWindow_OnCancelClicked_m75F9C08F8DE6EC8409913B90429CA8E134790979 (void);
- extern void UIFakeStoreWindow_ConfigureMainDialogText_mD9780645036660994548B1A7B7B54D486502CF18 (void);
- extern void UIFakeStoreWindow_ConfigureDropdownOptions_m61A1D64ADA6FDC639FDAFC5E7DF479497ECAFC0A (void);
- extern void UIFakeStoreWindow_OnDropdown_m6F51312DC9880528B18A69C39B3EA184B8DDA82A (void);
- extern void UIFakeStoreWindow_AssignCallbacks_mFA62C84BEAD1340B9EC4C9AB487595F2237572BC (void);
- extern void UIFakeStoreWindow__ctor_m3680D3337EE6228226AFD797A42215306F286D24 (void);
- extern void Price_OnBeforeSerialize_mB8D86198F98F2C071F52B3B344F00E6D4E4133FC (void);
- extern void Price_OnAfterDeserialize_m4C666E7F3D6C7CD86F74126DC8705A87D7377484 (void);
- extern void Price__ctor_m9D2D67B01A6B2596B79CFCD0C90561521FAC7FAF (void);
- extern void LocalizedProductDescription_get_Title_m3A50BEABD22AD26AF7CF8DACF44D1ED8C0A5638B (void);
- extern void LocalizedProductDescription_get_Description_m79D3AC1D1434F0C52D8A5E7DF2A8A5A34EE40C76 (void);
- extern void LocalizedProductDescription_DecodeNonLatinCharacters_m21582AF3504395BE6B466A8C6F0A2D0E17C1A7F1 (void);
- extern void LocalizedProductDescription__ctor_m17B962DDB3245C5AB3ECF2C8F4EEDF36192DC248 (void);
- extern void U3CU3Ec__cctor_m0AEB720B7AEFA93C8515D942EAB6D6A2EB8D525A (void);
- extern void U3CU3Ec__ctor_mA07F2D3B66E2247A501FFB2809F694E3C93D12B7 (void);
- extern void U3CU3Ec_U3CDecodeNonLatinCharactersU3Eb__11_0_m49D06E09041CAA0F4BF8AFE59E7CA8BF5C22990A (void);
- extern void ProductCatalogPayout__ctor_m88A3A65A1D40D0A24C0F52FE1F102FE442242C4A (void);
- extern void ProductCatalogItem__ctor_mF35A56CDC252B7A9FDCC17A8545CA1B327F764FB (void);
- extern void ProductCatalog_get_allProducts_m93A191445C8495D516A695D8708996C8790EF1C7 (void);
- extern void ProductCatalog_Initialize_mCDB5FD052E314BC8330EEB0A3ECE7449578ED154 (void);
- extern void ProductCatalog_Initialize_m4B563581D4C235DD2CA953C3897E025EA71504B4 (void);
- extern void ProductCatalog_Deserialize_m93C22260C98E26EF73F5AC00168BBFE1DC073855 (void);
- extern void ProductCatalog_FromTextAsset_m570290FA1756DCE9F4A59168A84941AE1AC38FF6 (void);
- extern void ProductCatalog_LoadDefaultCatalog_m56712F565AD719D1C8ECF7537CC0E5F8F533C89D (void);
- extern void ProductCatalog__ctor_m174D3B7D0C5E9CE1F7C008361FD014516FB0285D (void);
- extern void ProductCatalogImpl_LoadDefaultCatalog_m60AE28DEAACE2BEC92C132DA2E3BD1EAE8D16F9A (void);
- extern void ProductCatalogImpl__ctor_mDF5D74610CE45F8F90A052D097F80E180B18B1F6 (void);
- extern void StandardPurchasingModule_get_util_m8C944C45C8AC751BCC2DB1CE4E8944967FFAE531 (void);
- extern void StandardPurchasingModule_set_util_mA38054A46DC22BEC0B431866FCA579E1954A102A (void);
- extern void StandardPurchasingModule_get_logger_mD23C1CB19DCF0A64F078A38AEF31D849E10DCFBF (void);
- extern void StandardPurchasingModule_set_logger_mF4E6AF66082ABE09AB49EFBEA8255DE33C90ADE0 (void);
- extern void StandardPurchasingModule_get_storeInstance_m4DB229ECA4FF6B1D461558C6A88E094A278DB345 (void);
- extern void StandardPurchasingModule_set_storeInstance_mC35664D970638EEE0A8EC2404628D5B156E45690 (void);
- extern void StandardPurchasingModule_get_telemetryMetricsInstanceWrapper_mF393B4FAA53F486752C053600DC1218679486040 (void);
- extern void StandardPurchasingModule_set_telemetryMetricsInstanceWrapper_mAA596C806087E2F27BD0D49136A3B431EB3AA887 (void);
- extern void StandardPurchasingModule_get_telemetryDiagnosticsInstanceWrapper_mC8A3736751296DAF9BD4CC9910D1A60EEAD80AC0 (void);
- extern void StandardPurchasingModule_set_telemetryDiagnosticsInstanceWrapper_m97A16E0C47FF1CBDB6BB7661AB681BBF6E62B73E (void);
- extern void StandardPurchasingModule__ctor_mE2C1F89FB37CE268AC4F203252F97BC67B320C72 (void);
- extern void StandardPurchasingModule_get_appStore_m19E96FCA4517781E9166DAA7E3413D7B0D61EE74 (void);
- extern void StandardPurchasingModule_set_appStore_m8D0ED9CCFF69A230E54A2F29ACB91EE5DDB84271 (void);
- extern void StandardPurchasingModule_get_useFakeStoreUIMode_m6850C310CFF6F89EA69938EA4052002AACC78CEE (void);
- extern void StandardPurchasingModule_set_useFakeStoreUIMode_m2221C886EC8FF153B0C2210AF2EF6DED271B826D (void);
- extern void StandardPurchasingModule_get_useFakeStoreAlways_mC02952E02CD1C51EAE0E5FCCF807285AF1833974 (void);
- extern void StandardPurchasingModule_set_useFakeStoreAlways_mC217142239C37AA088BC50E0BD995F51A0583C23 (void);
- extern void StandardPurchasingModule_Instance_mBD397180F4D74807B93E47E71D7320463B1C3A1A (void);
- extern void StandardPurchasingModule_Instance_m3744500352443C6EAED3EC8285FED73A4D166ADE (void);
- extern void StandardPurchasingModule_Configure_m0C021F0574CB43D28767A83DB6FA0CBCEBC6CC56 (void);
- extern void StandardPurchasingModule_InstantiateStore_mFA7F7D395459813876216A55BF1935F93DAAAF9C (void);
- extern void StandardPurchasingModule_InstantiateAndroid_m5B285A77AB87D7EEAFF4EFCE781899BC19EC640D (void);
- extern void StandardPurchasingModule_InstantiateGoogleStore_m9F54FB1372083BB0A1A28590DB8C26431B58BC51 (void);
- extern void StandardPurchasingModule_BindGoogleExtension_mA9738A7408E00968C65ECE13DF4E1BE81028A1F4 (void);
- extern void StandardPurchasingModule_BuildGooglePlayStoreConfiguration_m503BDBDB6D9CCC4FB994671A4D53274D57869299 (void);
- extern void StandardPurchasingModule_BindGoogleConfiguration_mF804390F086950256584BEF438558E811A399028 (void);
- extern void StandardPurchasingModule_BuildAndInitGooglePlayStoreServiceAar_mF1CAEB638956A5A42ECB90161E807AF08CE7F2BF (void);
- extern void StandardPurchasingModule_InstantiateUDP_mA6AB14925A7E1C280EC90CDEF0784B81EEAF310A (void);
- extern void StandardPurchasingModule_InstantiateAndroidHelper_m0E19818F7CAE1C080316211C8630615116C9AEE6 (void);
- extern void StandardPurchasingModule_GetAndroidNativeStore_mD9A06FF2B55E51E17017B265A78DEE0996936956 (void);
- extern void StandardPurchasingModule_InstantiateApple_m1C37E2A2103096CB3E2BD67FB7061A5F417FCDF9 (void);
- extern void StandardPurchasingModule_instantiateWindowsStore_mCCC8645E458D205255D1B8EB7F9CFED6C00B37F0 (void);
- extern void StandardPurchasingModule_InstantiateFakeStore_m75B6DD6C4C9DA71E572438ABA1270E57A58C6DEE (void);
- extern void StandardPurchasingModule__cctor_m23284F1558C286CB2E6EC0EB49E00442F37537E5 (void);
- extern void StoreInstance_get_storeName_mCABF6348271D6010C0B37F3FCDFD4588B3B4E5F5 (void);
- extern void StoreInstance_get_instance_m4F4739A78FFBF202811C0E886F3D8733F660F3DB (void);
- extern void StoreInstance__ctor_mEB51377D6F9CB9F344D2717ED0EAA999E888D5D3 (void);
- extern void MicrosoftConfiguration__ctor_mD9DFFF7108C127CF3E542D2EAAC9E49E036BB365 (void);
- extern void StoreConfiguration_get_androidStore_m375B89A150E3F92E8C9F36F75188637F1FF8A74E (void);
- extern void StoreConfiguration_set_androidStore_mC489914742751F34F6602DA872EB2B3BB3939F17 (void);
- extern void StoreConfiguration__ctor_mADD6F4BFB5F946DF21CD51CBAAEEBE9C6DFC57EA (void);
- extern void StoreConfiguration_Deserialize_m326EDC43F29A0F2B546B9D6B212A8A124BD336A1 (void);
- extern void TimeSpanUnits__ctor_m69AF2FA3540250AD07DE4C3CD8E97F64EA8B6EF1 (void);
- extern void SubscriptionManager__ctor_m0ECAAC1D1E250FF4913D790B1F9341EEA14C1826 (void);
- extern void SubscriptionManager_getSubscriptionInfo_mDA75086D3BBB5F42857356C9B05B3D3C1282B66E (void);
- extern void SubscriptionManager_getAmazonAppStoreSubInfo_mC2FBA869F8527BB7F45955A219080EB533445F96 (void);
- extern void SubscriptionManager_getAppleAppStoreSubInfo_mE2E2FA57D9CA97BA5BDCFC9AB0B47C84CD73A908 (void);
- extern void SubscriptionManager_findMostRecentReceipt_m0FD65E6D239431E638811715970081B4999F2A3D (void);
- extern void SubscriptionManager_getGooglePlayStoreSubInfo_m33014BAC48470E67FD8C7DD5A73840AFB836B186 (void);
- extern void U3CU3Ec__cctor_m9734FC8CA5E2B48A77EFFE2156421123B8635EB0 (void);
- extern void U3CU3Ec__ctor_m199CB830F8629981ADA4F0C991B4F508A2E86750 (void);
- extern void U3CU3Ec_U3CfindMostRecentReceiptU3Eb__11_0_m6F59F1652B537921E2705E8DC1D55603C8D4C3E0 (void);
- extern void U3CU3Ec_U3CgetGooglePlayStoreSubInfoU3Eb__12_0_m4F386D12BEC0A7E102D3CFE3743E47A4BC8EAE27 (void);
- extern void SubscriptionInfo__ctor_mCE7F9D5333417F7A11001D0231307E68BB191E3A (void);
- extern void SubscriptionInfo__ctor_mAD14FD7347A1867CD6A67162726A88AD696B9D94 (void);
- extern void SubscriptionInfo__ctor_mF959D7594682F5F1B8C3D725BC19352E4A4C289A (void);
- extern void SubscriptionInfo_isSubscribed_m9EAA4FD5FA07828BDD765F8243F49B8B2CFC0C62 (void);
- extern void SubscriptionInfo_isExpired_m289877A70874E038E09275C90697D3EAA23C4535 (void);
- extern void SubscriptionInfo_isCancelled_m561EFAC63331FB328D5F15695B246337FEFF07D8 (void);
- extern void SubscriptionInfo_getExpireDate_m2F7EF006E79571EFECD46A91F83181A3F1CA147C (void);
- extern void SubscriptionInfo_nextBillingDate_m0FB32D84F4B95E127E6B0C537098AF179831E7BA (void);
- extern void SubscriptionInfo_accumulateIntroductoryDuration_m503F206556C2124CF3641CC0952B16718A52B468 (void);
- extern void SubscriptionInfo_computePeriodTimeSpan_m999CB3C5CFF7DBB5579A5C196BBFDDC9D034B6ED (void);
- extern void SubscriptionInfo_computeExtraTime_m45672397041F6C14857C72C446EB0716CAF0DF08 (void);
- extern void SubscriptionInfo_parseTimeSpan_m3222C7A089EC328707F30D57576DAF0E0174AA87 (void);
- extern void SubscriptionInfo_parsePeriodTimeSpanUnits_m35F883FE27081A3998B5A723683EC875A365085B (void);
- extern void ReceiptParserException__ctor_m602A8964067A5FAF6A0E1D5C59EF5784CD1A2D01 (void);
- extern void ReceiptParserException__ctor_mD3C699CB23161C65A8882A879D36066E37E294DF (void);
- extern void InvalidProductTypeException__ctor_m79E0FD982F7188E0D74E438205909876F0A5B486 (void);
- extern void NullProductIdException__ctor_mEA2182523EBF3FD28F6AAEA328255EC125C5ADED (void);
- extern void NullReceiptException__ctor_mBDE195811C11A65AD4BC519D3DF51762A3F7EC41 (void);
- extern void StoreSubscriptionInfoNotSupportedException__ctor_m4DBA3E5AB3A76393010CE741CBD009062819D62D (void);
- extern void FakeTransactionHistoryExtensions__ctor_mD34E51963B91B68D7129023F958802CFE4962D97 (void);
- extern void ExponentialRetryPolicy__ctor_mAC23DF035809BB5B3A13905A479E556F80E10D0D (void);
- extern void ExponentialRetryPolicy_Invoke_m897F5C1AE28B88A28112BD36DA204ACBED2515F6 (void);
- extern void ExponentialRetryPolicy_AdjustDelay_m5B9A18AE35D79859E9E8364F29557A1A076325BF (void);
- extern void U3CU3Ec__DisplayClass4_0__ctor_m4E921B377C6E8A0A6DEDC027FA0EF79EC07C49F1 (void);
- extern void U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__RetryU7C0_mFB4D1A3042FBBC528DE0DA514AB8D71E7971FB29 (void);
- extern void U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C1_m3F1198382F690803E1CD999797BFA199A3737CBC (void);
- extern void U3CU3CInvokeU3Eg__RetryU7C0U3Ed__ctor_mE59EB90B01BF918DABBA240A8EF633FDA2171DF5 (void);
- extern void U3CU3CInvokeU3Eg__RetryU7C0U3Ed_MoveNext_m66CDE84F2811E1552B9492E6A10BFB1A9030819B (void);
- extern void U3CU3CInvokeU3Eg__RetryU7C0U3Ed_SetStateMachine_mEA9B7E8890D9CD5A5CFC37034FF766F1A3AFF024 (void);
- extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed__ctor_m6E9FAD9BFB1C70140EA8B3B0E02741D572721B6C (void);
- extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_MoveNext_m92AAD93E2C4B46099F44EA233BE9E7B5DD97006A (void);
- extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_SetStateMachine_mAB950EC38EC7F7AD48DC7AEC0F9E4DE1830BFBAD (void);
- extern void GoogleConnectionRetryPolicy__ctor_m76204F7739D8093618588949A8A34E5D28EF61DC (void);
- extern void GoogleConnectionRetryPolicy_Invoke_m0128FBE97E777BD55195DCB74316FC5344752BCE (void);
- extern void GoogleConnectionRetryPolicy_AdjustDelay_m057F0DCA4CDF3153EAD3078E2C58DF47C1FE41F2 (void);
- extern void U3CU3Ec__DisplayClass4_0__ctor_mBC098BE7B48A9D407A8146CDA753B2238DAA8CF0 (void);
- extern void U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C0_m55D84DFAE6C4400161B3A2C725B0C1CF8EDC4CD2 (void);
- extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed__ctor_m139B7829A2AD72F87B71CD1A33B2527B71CF31B8 (void);
- extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_MoveNext_mEE765EE7B466758AA988889CD1161EFC3FF440B5 (void);
- extern void U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_SetStateMachine_m573388BE4BB7D0DA0302B3B18F323CD9DC82B85C (void);
- extern void ProductDefinitionExtensions_DecodeJSON_m7416F243BB95C9C63B91D12D74A3F3A00A4656E6 (void);
- extern void FakeMicrosoftExtensions__ctor_m4F9FFC593BF05E4A5FDDEB1ED71D2583B5D66886 (void);
- extern void WinRTStore__ctor_mE5C6E24757C62599881D70F2AA1D8A82480FE311 (void);
- extern void WinRTStore_Initialize_mDEF3CF5B9F0CAA017C44C1878E5D4CB08AC5EF0B (void);
- extern void WinRTStore_RetrieveProducts_m5480E3D22E25D41EDC18B4806BA4154BD2CE7B07 (void);
- extern void WinRTStore_FinishTransaction_mC624FB22E6E7C13F50D0E611FCD6EC5B69CE908F (void);
- extern void WinRTStore_init_mA94BEFABDB0D1DE85C4F457B468DF2C246EB0FA6 (void);
- extern void WinRTStore_Purchase_m467F9F8FD3A79225F610A48004C1A4C4186ADCF7 (void);
- extern void WinRTStore_restoreTransactions_m93D2A3C481CA38BAE9DB9099955FE6AB10EB10F4 (void);
- extern void U3CU3Ec__cctor_m29C0E94B6690D38BEE3FD1C980E88C9ED8B96E41 (void);
- extern void U3CU3Ec__ctor_m38F009CF5EAC3E6F1FB96B45D44C650BAE93619E (void);
- extern void U3CU3Ec_U3CRetrieveProductsU3Eb__8_0_mED3B5305EC5CF5F0CA5F97E22DDD29DB1DCD65E2 (void);
- extern void U3CU3Ec_U3CRetrieveProductsU3Eb__8_1_m376EA2F5E999011A34EE5C34493E597EACB31340 (void);
- extern void UnityUtil_get_currentTime_mE40001425F55E1A90761D51411B81DE0FB9DF1B5 (void);
- extern void UnityUtil_get_persistentDataPath_m2AAF48A31B21C5A5ADC134ECB14E58D2D6CB5D46 (void);
- extern void UnityUtil_get_deviceUniqueIdentifier_m1AC62056A917557653A37C47461FB4996C2F0337 (void);
- extern void UnityUtil_get_unityVersion_mE2949234D9C1C02226C7CC83374FC11075EFB241 (void);
- extern void UnityUtil_get_cloudProjectId_m3A658EA17D15C5F63C93B90A3FCC284DB3B8F86F (void);
- extern void UnityUtil_get_userId_m0D8EA6251AC88FE0FECA87BEB72AFD2D6FB6644C (void);
- extern void UnityUtil_get_gameVersion_m850F0EAB8708FC24BF42A80509CE69DF76405048 (void);
- extern void UnityUtil_get_sessionId_m0621F738E17339143ACF624F474680C19C13D0D8 (void);
- extern void UnityUtil_get_platform_mF687BB437A671685484C604A86E99863F419302D (void);
- extern void UnityUtil_get_isEditor_mDD2E04E6B1CA00D5F06563910E72688974EF418A (void);
- extern void UnityUtil_get_deviceModel_m594551957553EBEEB2704901C5FB8EB86F661AD7 (void);
- extern void UnityUtil_get_deviceName_m4026083CFFD874134D2918202EA370E1E4B0864E (void);
- extern void UnityUtil_get_deviceType_mA5AA09B2292D7A3572DAC584AE95924F9EB2E58E (void);
- extern void UnityUtil_get_operatingSystem_mD92A36329BE72E6766CA9E5A2873F48CDE1DA838 (void);
- extern void UnityUtil_get_screenWidth_m8A3081DB40110DD42D952ED8DD378DC16571DF71 (void);
- extern void UnityUtil_get_screenHeight_m35BCB594BA71E47F19F3A5A08C7BD651E54238DF (void);
- extern void UnityUtil_get_screenDpi_mD80E2591FA819A2CACB39F1B2E611AE435A0FDF7 (void);
- extern void UnityUtil_get_screenOrientation_mE5D6B673B93171EE6FE392AC040F0E7972E6E5A5 (void);
- extern void UnityUtil_Uniject_IUtil_InitiateCoroutine_m8E0514A01EE0D435BA288DA4280089711785F681 (void);
- extern void UnityUtil_Uniject_IUtil_InitiateCoroutine_m45F4BEA16B5ACF15D1293E48181C68DFBAFCD803 (void);
- extern void UnityUtil_RunOnMainThread_mABF8141C1DCFB4CA8DF24451B65F5435294B27B5 (void);
- extern void UnityUtil_GetWaitForSeconds_mB62D3D0EEC46AEB7849CF34DC0AC97962EE0C231 (void);
- extern void UnityUtil_Start_m9A05D9A4FADF3C331170E85EFC8F27B922186248 (void);
- extern void UnityUtil_PcPlatform_m6C26A9452CDF2A3DED239242E5618999880407C7 (void);
- extern void UnityUtil_DelayedCoroutine_m2157CDC5CC835BDE12352016CB82A25C6634B632 (void);
- extern void UnityUtil_Update_m5CFB1587D42E5A854FBB56F5985DDAFB30A3D3F4 (void);
- extern void UnityUtil_AddPauseListener_mCA2B86FDD744EA10AEFA4A67DEBBFF36CEC45BAF (void);
- extern void UnityUtil_OnApplicationPause_m3325D8693C79C8F4D9CE2C9DA39443D55D07D3F7 (void);
- extern void UnityUtil_IsClassOrSubclass_mAF60230AC46A684686AD3A7770CB08D3536E973A (void);
- extern void UnityUtil__ctor_mEB92A76AB1B9C942211165A08FCA4E9533E06288 (void);
- extern void UnityUtil__cctor_mD87D721A40C447597EA6A2E5750381AAC8E8990E (void);
- extern void U3CDelayedCoroutineU3Ed__48__ctor_mDE418D0BD65328F25766EB4DA1477DCCE841D88E (void);
- extern void U3CDelayedCoroutineU3Ed__48_System_IDisposable_Dispose_m855222B8EDE19C80A1025598E59BC99B6C058540 (void);
- extern void U3CDelayedCoroutineU3Ed__48_MoveNext_mB3801F6D60691ED8F0921767A84068E8C3B323F3 (void);
- extern void U3CDelayedCoroutineU3Ed__48_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m3B259068ECF9C87736D21DEBDC7465E8B2A90D37 (void);
- extern void U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_Reset_mA7A39D9903DC70DA5DB697EFF9D6D207EF4C5BF4 (void);
- extern void U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_get_Current_m2A61E2B47B3F5CB1508DEBE50D585441AD6EF7A4 (void);
- extern void IapCoreInitializeCallback_Register_m15649B35E0B38B36617AF6B510BBB8CC37BD4B3E (void);
- extern void IapCoreInitializeCallback_Initialize_mFA2269B6DE0CD38655A57455457747CFF5EC8D9A (void);
- extern void IapCoreInitializeCallback_CacheInitializedEnvironment_m120A82DCA5B60A92819D8CA908E63BE219703417 (void);
- extern void IapCoreInitializeCallback_GetCurrentEnvironment_m067A99A22E9AFA796E3A033A347F746BC3177A64 (void);
- extern void IapCoreInitializeCallback_InitializeTelemetryComponents_m0FF7204282A99A54A50CC4C691BCDF373ECBF39D (void);
- extern void IapCoreInitializeCallback__ctor_m6E44A3E7FFD242CBE0873F9E2C9DA1CB1240CAD5 (void);
- extern void U3CU3Ec__DisplayClass2_0__ctor_mD26B7CD05EAC67AEBA106C9BEA1F86810C737123 (void);
- extern void U3CU3Ec__DisplayClass2_0_U3CInitializeU3Eb__0_m8EC8D03E9F215419C12C002864E69EEDCF4913E6 (void);
- extern void GooglePurchaseBuilder__ctor_m6C1B7226BD1D12FD00A794B018D35E8BD543577D (void);
- extern void GooglePurchaseBuilder_BuildPurchases_mCBFBC50607A0B39F0A76BDF565745FABE1D69D0C (void);
- extern void GooglePurchaseBuilder_LogWarningForException_mBB4B675CA121EE06A50A6CA1A656E861ED13D5F8 (void);
- extern void GooglePurchaseBuilder_BuildPurchase_m77518408286891FC35D2969E1930542E67EAC9A2 (void);
- extern void GooglePurchaseBuilder_TryFindAllSkuDetails_m97BACAB34C63D99265895B07F1EAA156A1372066 (void);
- extern void U3CU3Ec__DisplayClass6_0__ctor_m81FD27417D227650D3FC61A353728EC311F5AF85 (void);
- extern void U3CU3Ec__DisplayClass6_0_U3CTryFindAllSkuDetailsU3Eb__0_m06177FDD20AF3974C5512277CCE8AC3D764DF009 (void);
- extern void U3CU3Ec__DisplayClass6_1__ctor_m56696465C1EDEE255F035976B53D68B54593DD18 (void);
- extern void U3CU3Ec__DisplayClass6_1_U3CTryFindAllSkuDetailsU3Eb__1_m8B9DF3FDBAF6F898611AB9CCD99B8C7921720C70 (void);
- extern void GoogleReceiptEncoder_EncodeReceipt_m17FC37EB777C0CD19B0A1345C320C17F030911D8 (void);
- extern void SkuDetailsConverter_ConvertOnQuerySkuDetailsResponse_m5F7D519F81EB07B3B3CDA466DE32AE8D128EEEF8 (void);
- extern void SkuDetailsConverter_ToProductDescription_mFEF5C82FAF0E5B727EAAB8E7A8F2C37AF25B6C0A (void);
- extern void SkuDetailsConverter_BuildProductDescription_m17409FADBDD74BB66CC527C53CF84AB0D1C34218 (void);
- extern void SkuDetailsConverter__ctor_mC285D9E06AD5329C3FE35C3680F97402B974599D (void);
- extern void AndroidJavaObjectExtensions_Enumerate_m8F0C46B6B35D61007DDD67D39C5ECD8A955ADA92 (void);
- extern void GoogleBillingClient_GetSkuDetailsParamClass_m23B9C69DDF3CE5E6473D8D651D3DDA07151C2185 (void);
- extern void GoogleBillingClient_GetBillingFlowParamClass_m58D8DA6228AFAD52D99ECA73F12DCA7F43FD7007 (void);
- extern void GoogleBillingClient_GetSubscriptionUpdateParamClass_mA43B88A77C88EFB159589EB987A8336571E789B5 (void);
- extern void GoogleBillingClient_GetConsumeParamsClass_m58C66A4B4CA41C79D27E3D1A9B5A1472FDB08E85 (void);
- extern void GoogleBillingClient_GetAcknowledgePurchaseParamsClass_m01201653BC18C4E4F35BFD3936E0DB688F734AA9 (void);
- extern void GoogleBillingClient_GetBillingClientClass_m1E14F996196BF4138635CAB42D07135D2D830887 (void);
- extern void GoogleBillingClient__ctor_m8F30F078CA3B9AAD8D034AFFCF711EED39947B3C (void);
- extern void GoogleBillingClient_StartConnection_mA670096A33014C3C4D0F6D9D600000F16B725287 (void);
- extern void GoogleBillingClient_GetConnectionState_m83E5EDB00BC624DD2E22E0158341489A6B9E54F9 (void);
- extern void GoogleBillingClient_QueryPurchasesAsync_mC3B0E449DD7C822BEC42FAAFF66D4B8EB0796158 (void);
- extern void GoogleBillingClient_QuerySkuDetailsAsync_m698A3D0AA846F93955C869F7842F63594DBFCF7F (void);
- extern void GoogleBillingClient_LaunchBillingFlow_mC4415F98D2442C74991C040DABF879219F0A0319 (void);
- extern void GoogleBillingClient_MakeBillingFlowParams_mB97F07BB18F188942C5FEE9242A8C13F74C28037 (void);
- extern void GoogleBillingClient_BuildSubscriptionUpdateParams_m97A7A6F6915CCB261135B1F72679A677CB6F9033 (void);
- extern void GoogleBillingClient_SetObfuscatedProfileIdIfNeeded_m4892A481DA1DE9B548ED540F581A95CF0A917E9E (void);
- extern void GoogleBillingClient_SetObfuscatedAccountIdIfNeeded_m8F0E529640262D3F00CA1497A7E11933BCE3C2C8 (void);
- extern void GoogleBillingClient_ConsumeAsync_m20CCB9AB464691E6DAE77D0C0B6011AC2554FCDD (void);
- extern void GoogleBillingClient_AcknowledgePurchase_m019D45043AC9BD3B1FC8B20187AA25A78188F9CD (void);
- extern void GoogleBillingResult_get_responseCode_m41C985D833239D91A30D60B5E0F78F63D40FCEDD (void);
- extern void GoogleBillingResult_get_debugMessage_mCBC8D3C771085DE43CFBF8A67CC21FDE52684CEA (void);
- extern void GoogleBillingResult__ctor_mA4E4F80D1EF645AC6E72981FA7F7E141F6601377 (void);
- extern void GoogleBillingStrings_getWarningMessageMoreThanOneSkuFound_m7537B087FDB054238E02B64C5998D2FD4D4C3FD1 (void);
- extern void GooglePurchase_get_isAcknowledged_m0C8DDEF734DE02C7F40F0E2818A0E0834FFC2C33 (void);
- extern void GooglePurchase_get_purchaseState_m25B05A607B60519FBA52843CAEF8FD8FEE0752A9 (void);
- extern void GooglePurchase_get_skus_mFB5A449AA1EE9433CFE668CDE90A55B7FDEB81A4 (void);
- extern void GooglePurchase_get_receipt_mB7E801F89576DA092E7A95DC41037E0FDC9E026A (void);
- extern void GooglePurchase_get_signature_m72063440F5794869DB8A4DE3F56A73F4444786AC (void);
- extern void GooglePurchase_get_originalJson_m6708011BD0AE03F2280CD86A0F07875EA578D5BA (void);
- extern void GooglePurchase_get_purchaseToken_mEAE44EFF7955BD8A92147AC6A5B8A70A6541EDE7 (void);
- extern void GooglePurchase_get_sku_m58FFD30FBFB7CD671E343E2C61CAE80582C9EB94 (void);
- extern void GooglePurchase__ctor_m2EE677158EEE27268D0BABF905F4FC1E56E1063E (void);
- extern void GooglePurchase_IsAcknowledged_mE2F920ABCC295EA6F298E0AA74B4C3097C58F889 (void);
- extern void GooglePurchase_IsPurchased_m0091EC5B71B28E403588B26FD73EC2C0A19D36D1 (void);
- extern void GooglePurchase_IsPending_mB50CFCB4540C15FEEE6853C95CE3155C3D4C9E66 (void);
- extern void U3CU3Ec__cctor_m3B5205D71CD68DEE8540207194DC751BCC9794B5 (void);
- extern void U3CU3Ec__ctor_m696F4E3E542DD5C7ADEFA41805FB149F796B836A (void);
- extern void U3CU3Ec_U3C_ctorU3Eb__26_0_m7EE2EB1174F22732D41A2FB17B869FAAACFE612E (void);
- extern void GooglePurchaseStateEnum_GetPurchaseStateJavaObject_mBEFD71488906CB2105D270DACD285AFFE95C89E1 (void);
- extern void GooglePurchaseStateEnum_Purchased_m3791A59F7885C918735F78345549C35C39E661F0 (void);
- extern void GooglePurchaseStateEnum_Pending_m419C6870D3097EADAF00FF0D6FF5C486BFB13171 (void);
- extern void GooglePurchaseStateEnumProvider_Purchased_m367280B3C4A0D25DE27159A38A1F7E8E10835F40 (void);
- extern void GooglePurchaseStateEnumProvider_Pending_mDF35C16DB0772027E6013DFBA15969B13E3C0B75 (void);
- extern void GooglePurchaseStateEnumProvider__ctor_mBE9E27B95EC11A8AD90B102BF49D0DD6CCA80780 (void);
- extern void GoogleSkuTypeEnum_InApp_m3D8DF28E36C52A558A171EBE49300FE42E73C0B9 (void);
- extern void GoogleSkuTypeEnum_Sub_m67C8DA9DA489930486A1A308049B9C52C2C071C3 (void);
- extern void ProductDescriptionQuery__ctor_m231111ED1963D9EDF6B55DC53F1D32EB695BD3CF (void);
- extern void U3CPrivateImplementationDetailsU3E_ComputeStringHash_m88B6F9ABC0B2644814DC58FB9602948572F7E971 (void);
- static Il2CppMethodPointer s_methodPointers[845] =
- {
- EmbeddedAttribute__ctor_mC8404DFC7B590D095F31BED1845D51F204C2E257,
- NullableAttribute__ctor_m7655B58768DF65210F3769D19B59EFBF1159F1F3,
- NullableAttribute__ctor_mC933B7DB73CF251AECD9C6A62C015A0966EE145E,
- NullableContextAttribute__ctor_mA71DE71927AB86CC4FDFFCA1D87C9FFCEDFF0923,
- JsonProductDescriptionsDeserializer_DeserializeProductDescriptions_m98605926EA86D48EB99F1D87F32C926B3845D9F3,
- JsonProductDescriptionsDeserializer_DeserializeMetadata_mA7E9897C8313254A0A77047BDFC75B1AE33CFD72,
- JsonProductDescriptionsDeserializer__ctor_m20F016896A6A95110F9AD437F085398023F9BE05,
- AmazonAppStoreStoreExtensions__ctor_m8AEB4063FA2E04197E5E251ED474FDEDA0BC24EF,
- FakeAmazonExtensions__ctor_mCC1F531E77DFC8CD8EC07E2DBD077D21F89B226E,
- AndroidJavaStore__ctor_m0D38BF4E9163C97152786CA458452DC56EA27788,
- AndroidJavaStore_RetrieveProducts_mA29AFD08E019E3ABD7486DA31B64CAF4AA99B3A1,
- AndroidJavaStore_Purchase_m6092044FE46158DADF52DD87C42D14CAE0C928F6,
- AndroidJavaStore_FinishTransaction_mB87BF5AFF7584110C9559219323EFDC78AFB1403,
- ListExtension_ToJava_mE978EBDBB715630BF3EB53D57B0DADE80E36BE44,
- ListExtension_ToJavaArray_m0DF86FDF7D43E283838E042CBF99DBD75386714F,
- UnityActivity_GetUnityPlayerClass_mAB92F573D73726FCC858D1AD1A71FBB5DCBF0AA3,
- UnityActivity_GetCurrentActivity_m4AD23C47CE2C5D5400EC5FE79E910F7E17EE7CB8,
- GoogleCachedQuerySkuDetailsService_Finalize_m74694BD9C573DF096648308BF08F9106E38D4F39,
- GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m2C5B86190409B0C0CEE7D28211753B4231738C1C,
- GoogleCachedQuerySkuDetailsService_GetCachedQueriedSku_m004A5B0121AEE0F898AA2AC6A986345F483F06F5,
- GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m5F0490A4825E669B13425DA1D5D78F0359635C07,
- GoogleCachedQuerySkuDetailsService_GetCachedQueriedSkus_m882D22766C55E9C6AC9A82C921D8D32D1BAACBD6,
- GoogleCachedQuerySkuDetailsService_Contains_mD0BEE84C98B4F8DB1164E0E5C00235154341F9C5,
- GoogleCachedQuerySkuDetailsService_Contains_mAF77DEB82415E8FBB8497752BE673B1C5D0396E8,
- GoogleCachedQuerySkuDetailsService_AddCachedQueriedSkus_mE543941A26C7B1E9D13DD3D41F43CB1AF038E9C4,
- GoogleCachedQuerySkuDetailsService__ctor_m75DE2A2A61BBE9CE416CBE795FCBC1EEB82C1B45,
- U3CU3Ec__cctor_m28F1290B83C8238004FB545142A7FC44A30862FC,
- U3CU3Ec__ctor_m306976DEC98D7D0A109FD1D782DB2B08A6F1D4EF,
- U3CU3Ec_U3CGetCachedQueriedSkusU3Eb__5_0_mA5F3B0343F2F57981038DB98D3ABBCB2727E025A,
- GoogleFinishTransactionService__ctor_m00E73732765A281CCE4D7F22A11A486315390ECB,
- GoogleFinishTransactionService_FinishTransaction_m6A8FE42847AFB1260304124676891D25F830C01A,
- GoogleFinishTransactionService_FindPurchase_mDDB6EF3226D924B27EEB239E19E924B334C3C10D,
- GoogleFinishTransactionService_FinishTransactionForPurchase_m6E7C7331B5D6532C1452A172522ADB44F3EF477A,
- U3CU3Ec__DisplayClass4_0__ctor_m77DBF651398150A28A503E57B6AA5EFCB3237A54,
- U3CU3Ec__DisplayClass4_0_U3CFindPurchaseU3Eb__0_m2EF37032672732A91958420A1AB805BB3E3EB3E9,
- U3CU3Ec__DisplayClass5_0__ctor_m8D84B5B026DCE730382FA1156834E58A58958737,
- U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__0_mFC4642CDDF4B9BB39649BB62A2564D369FD6FBE0,
- U3CU3Ec__DisplayClass5_0_U3CFinishTransactionForPurchaseU3Eb__1_m2D3ED6A5F77317CE25E72DCAF04B2781F65DF86C,
- U3CFindPurchaseU3Ed__4__ctor_m7242B23212529EA564A6016FF0D60742EE44D009,
- U3CFindPurchaseU3Ed__4_MoveNext_m248DD760ABDCEA6A9510928C454BC081DB30312B,
- U3CFindPurchaseU3Ed__4_SetStateMachine_m4C9A105DC0472A49C9E2C97B89F64286F26F88AB,
- U3CFinishTransactionU3Ed__3__ctor_mB816ACFB52C51A71B713B47DEFD8F0EE9417E301,
- U3CFinishTransactionU3Ed__3_MoveNext_m1A6530743102DAF8982841D6772DD1141A55557C,
- U3CFinishTransactionU3Ed__3_SetStateMachine_mEDCF39F90824A89CE4261C62CAF1CB45708B2E4F,
- GoogleLastKnownProductService_get_LastKnownOldProductId_mB0F641FE6161FDB5B7CC65F86EC7517AE6D7ECED,
- GoogleLastKnownProductService_set_LastKnownOldProductId_mEA04A6050A252BB362319A792F5B83842FFF70B5,
- GoogleLastKnownProductService_get_LastKnownProductId_mF73D95666E4113EA53B7581C6A7FFFC85B7AFE8E,
- GoogleLastKnownProductService_set_LastKnownProductId_m691E76B48D409E7913403560ABE6C401B50A718E,
- GoogleLastKnownProductService_get_LastKnownProrationMode_m649D8E783EB1BBD6D12BB5CAC63F3B65BA226A6A,
- GoogleLastKnownProductService_set_LastKnownProrationMode_mFD652416415B081ACADA523F24C3D2A5C9B482C2,
- GoogleLastKnownProductService__ctor_mB2B1381DC77FB51FF1F9904D8823F6BCBC75DE97,
- GooglePlayStoreService__ctor_mF5FBF0303B1389E326204AAA532E4EB562950B7A,
- GooglePlayStoreService_InitConnectionWithGooglePlay_mCFBB60729D49E6D3AF4144962557E7C790A3DA5A,
- GooglePlayStoreService_StartConnection_m598C0DA556160B740ED770343B86F1E9956F4ED5,
- GooglePlayStoreService_ResumeConnection_m73468D028C1C28ECD3F6D3D9B7D7CD5880947FB2,
- GooglePlayStoreService_AttemptReconnection_m4D1794C468F2267B05F7D14B2D2977BA23362DCF,
- GooglePlayStoreService_AreConnectionAttemptsExhausted_m20F49CFC1ABA07C7CF9400824EFBB7F093B32243,
- GooglePlayStoreService_RetryConnection_m064A3560B1183863F0850A57D9891F4C899064D4,
- GooglePlayStoreService_RetryConnectionAttempt_m48CE112D90916842962C50566950ECF79AEA882C,
- GooglePlayStoreService_OnConnected_m8B93C3F30A25C81BD98334DD918DC5A57BA97DEF,
- GooglePlayStoreService_DequeueQueryProducts_m42A618BA8A37DA3BB855BAFE7EC53777E2A25656,
- GooglePlayStoreService_DequeueFetchPurchases_m3759974224EF80FEDFA8872D7B9715757A0F6619,
- GooglePlayStoreService_OnDisconnected_mC6D89E84A79F158AAA952E3334014E626AEF48C7,
- GooglePlayStoreService_RetrieveProducts_m87A07E995045F8D2C0296867EF79740701CD9F87,
- GooglePlayStoreService_HandleRetrieveProductsNotConnected_mE5E12C093558652FB81EDBEB43ED01B814CEE5A9,
- GooglePlayStoreService_Purchase_m78CE45B496A389C9E12B4B6E5000633DB33AE10C,
- GooglePlayStoreService_Purchase_m4379D016FB241D27A11DB5F5DBAB09D9CCA0D653,
- GooglePlayStoreService_FinishTransaction_m108C541DEDCD0AE5B51B000927E139FFB114AF83,
- GooglePlayStoreService_FetchPurchases_m0B9DC023CA06A3265117D7A90BB5ADF14F2E5A4A,
- GooglePlayStoreService_TryFetchPurchases_m2AC309397D6FA5E077D73065954079322DDEB4D8,
- GooglePlayStoreService_U3CAttemptReconnectionU3Eb__20_0_m0E240F882132309B9D322ECC87EA6B2A581F6808,
- U3CU3Ec__DisplayClass22_0__ctor_mA3465CC56277C7366907EB325CCDAB660B519D50,
- U3CU3Ec__DisplayClass22_0_U3CRetryConnectionU3Eb__0_mFCF3E2929B22D7BDA76A1CBB9EBA2FD934EEDC34,
- U3CFetchPurchasesU3Ed__34__ctor_m7F4647978321C7E91F6080BBB5E1225D3A31F06C,
- U3CFetchPurchasesU3Ed__34_MoveNext_m1B677AFF8B1472BFDC0DA16B186C4F0D233E1F00,
- U3CFetchPurchasesU3Ed__34_SetStateMachine_m0AA7CBAE3F04281CC113B22100C5E00415D9B5E5,
- U3CTryFetchPurchasesU3Ed__35__ctor_m52504C961A008C9AB3874F220BBC1F075C9BFDDF,
- U3CTryFetchPurchasesU3Ed__35_MoveNext_m1D67FE3A66CFA1A048808A32D69808E9E9234A8C,
- U3CTryFetchPurchasesU3Ed__35_SetStateMachine_m37746C732AACA7AB89ADDCA1104DAAA51201196D,
- GooglePriceChangeService__ctor_m4E7EC6CE99DD4F272ACF6AC06D91F08FD0C990C2,
- GooglePurchaseService__ctor_m1DE748CB060AD5D8FC3CA43DE0AFC7292D2A1B4D,
- GooglePurchaseService_Purchase_m29B1CB96BDA2D15289D51DFDC4232751E1970CF1,
- GooglePurchaseService_OnQuerySkuDetailsResponse_m95976F034A14D7F2856EE3542D20B41DF8FEDCF0,
- GooglePurchaseService_ValidateQuerySkuDetailsResponseParams_m6CFE33C653C6FAE33542B5885467F5C341DAC4F8,
- GooglePurchaseService_ValidateSkus_m640D7D5118648CF810EA4FABC663F2E69C71BB03,
- GooglePurchaseService_VerifyAndWarnIfMoreThanOneSku_m5C6986FE6B32C5949B98EB4342D21B3542FA10C7,
- GooglePurchaseService_PurchaseFailedSkuNotFound_mC534A4118675DF89F47C58C5389FC61BA2F7964C,
- GooglePurchaseService_ValidateOldProduct_m0A6A2FA026568D45A29B6CD43C8A8A34348ADEA5,
- GooglePurchaseService_PurchaseFailedInvalidOldProduct_m49EC674BFCF31EC7B5501C25BEDF56CE7FA48818,
- GooglePurchaseService_LaunchGoogleBillingFlow_mAB16BC1F209D8A0C2A3BFB62C644D3051887AABD,
- GooglePurchaseService_HandleBillingFlowResult_m8C975E77C9D491BAA800B5FB6286DE6D28D35298,
- U3CU3Ec__DisplayClass4_0__ctor_mB328CDF512A7B349805ADAE4506C41A0E43D6D81,
- U3CU3Ec__DisplayClass4_0_U3CPurchaseU3Eb__0_m3722933ED78BFF71ECF3927C27AA23CAAB6EB9C9,
- GoogleQueryPurchasesService__ctor_mE9215AEEA648CF0E1A49ECBF70A117D953AB0FF4,
- GoogleQueryPurchasesService_QueryPurchases_m4D27A1950FBB8CDC80E83AAA4B6A06929C153E9E,
- GoogleQueryPurchasesService_QueryPurchasesWithSkuType_mDB5401461F2D5DF53BDA09F77E0B581A24507B23,
- GoogleQueryPurchasesService_IsResultOk_m53AA5016EB83D58BFB76AC0C3967EECA8341D989,
- U3CU3Ec__cctor_m77DB5CA22E2FF7F38F8CB47AEB2AA5B869A7B8C5,
- U3CU3Ec__ctor_m0DD28869F30A8D9E8D8DF6F7295B845CE3D6E377,
- U3CU3Ec_U3CQueryPurchasesU3Eb__3_0_m7CE532DAFFC24E63EEAC730BA53957EB44AEB2A8,
- U3CU3Ec__DisplayClass4_0__ctor_m36F184C8B6582054FED0F0A76615A56844D28DC7,
- U3CU3Ec__DisplayClass4_0_U3CQueryPurchasesWithSkuTypeU3Eb__0_m7A710091286EF7E7A6CAF40F7BD0C6DF4941F834,
- U3CQueryPurchasesU3Ed__3__ctor_m555DFCC3576140717CEC6FB42B7FCB20C201B05C,
- U3CQueryPurchasesU3Ed__3_MoveNext_mCF5A4482C9C50AC1331906E671ED0EED5BDB09EA,
- U3CQueryPurchasesU3Ed__3_SetStateMachine_mC7DE7B7783D52CBB7162448664BA0E064D7A35BD,
- NULL,
- NULL,
- NULL,
- NULL,
- BillingClientStateListener__ctor_m04EE4E48F28E41B5C492F6ADF1B10CF9F849E4A7,
- BillingClientStateListener_RegisterOnConnected_m6CDC37825ACA5731EE17EE080626954E0D6BFF78,
- BillingClientStateListener_RegisterOnDisconnected_m8542956786353C419D2D6765B530F835E862654B,
- BillingClientStateListener_onBillingSetupFinished_mA2197D2F0110DD41CC3321341CCD94A099065ABC,
- BillingClientStateListener_onBillingServiceDisconnected_mD6AEE6476D94E0CC26BAFF9240AAD7E3DFCB7E63,
- GoogleAcknowledgePurchaseListener__ctor_mB509911DE8C7BEE8D023360D6E5C1BC970E94FE1,
- GoogleAcknowledgePurchaseListener_onAcknowledgePurchaseResponse_mEEA5706C7EAFB649307DF19A56E68205D56E5B5D,
- GoogleConsumeResponseListener__ctor_m8CE0D56E7F1AA8E7CFDFCFC7050CB47DFFF2C3AB,
- GoogleConsumeResponseListener_onConsumeResponse_m9D726EC5E5A4DBFE26255ABF504AA79B73F9F6ED,
- GooglePriceChangeConfirmationListener_onPriceChangeConfirmationResult_m4D30C5EDDF73B290F7CAA4D5FD3567B65614FC0D,
- GooglePurchasesResponseListener__ctor_m9605CF62666DDFF86C4355AD2A9E1499AF00ACE9,
- GooglePurchasesResponseListener_onQueryPurchasesResponse_m150BD48FEB6DB17513835043C5BDA7525C569405,
- GooglePurchaseUpdatedListener__ctor_mB1F324E62DFBDD61BB0F1085BA3E3E1AC0D11B83,
- GooglePurchaseUpdatedListener_SetGoogleQueryPurchaseService_m62E3B83FFFFC145A6D2EEF3C97D65CA1AA34B72C,
- GooglePurchaseUpdatedListener_onPurchasesUpdated_m00587E219424F411BAAF2D564CDD393AE215B024,
- GooglePurchaseUpdatedListener_OnPurchasesUpdated_m28782E3FBBAAE520D735A011457597B4425AD3C3,
- GooglePurchaseUpdatedListener_HandleResultOkCases_m2D503275E3ADAD9DB420417D917B78342EDBA391,
- GooglePurchaseUpdatedListener_HandleErrorCases_mCB926C4CD0EB67AFF057F3F5B4DFA4057DC7798D,
- GooglePurchaseUpdatedListener_HandleErrorGoogleBillingResult_mD4F3BC2C13924F32A233A68B6E460913E6C15B03,
- GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m8557C9149A8DB6B11932F0F497528E0DCC4B1D48,
- GooglePurchaseUpdatedListener_HandleUserCancelledPurchaseFailure_m5EA8C5D4048D851795374C64294B7A27CCCC0C32,
- GooglePurchaseUpdatedListener_ApplyOnPurchases_m8973C50AEA59347A4EB412C5047719848A7DC422,
- GooglePurchaseUpdatedListener_ApplyOnPurchases_mB7A5C06DC865BCAD741D744B4BFD498B58445E87,
- GooglePurchaseUpdatedListener_OnPurchaseOk_m765B24AA543C588FECC4770BC9B4D9EA58943103,
- GooglePurchaseUpdatedListener_HandlePurchasedProduct_m0F2CF03CC87F3F62BB812B043953590F78D16861,
- GooglePurchaseUpdatedListener_IsDeferredSubscriptionChange_mAF913C1C2A696B071BCCED905B47107E14ECD04B,
- GooglePurchaseUpdatedListener_IsLastProrationModeDeferred_m7413CCD59DB8FAA1335C87B79EFAE8292022D510,
- GooglePurchaseUpdatedListener_OnPurchaseCancelled_mC96E9F836BF3E47684CC891D91E8779D7262B44B,
- GooglePurchaseUpdatedListener_OnPurchaseCancelled_mA7E56DF9D38115A7FC22E16068CD36AE1E6C3277,
- GooglePurchaseUpdatedListener_OnPurchaseAlreadyOwned_mF098189CF0AEABD1F6769F208FA4008270812298,
- GooglePurchaseUpdatedListener_OnPurchaseFailed_m550EAD20A8DB54BE94B919ADF5CD342D35B9686F,
- GooglePurchaseUpdatedListener_U3CHandleUserCancelledPurchaseFailureU3Eb__15_0_m912E3EEB5FC04575DF8336C2740E1C6424B969DA,
- U3CHandleUserCancelledPurchaseFailureU3Ed__14__ctor_mDF92488B1C919E189965F23D76E9370D2F91FCC9,
- U3CHandleUserCancelledPurchaseFailureU3Ed__14_MoveNext_mECAC96E020F9E510A16F3CBBD9C4BC7BF0C96B34,
- U3CHandleUserCancelledPurchaseFailureU3Ed__14_SetStateMachine_mCC2C014DEEA70CE0027A9906600C36390CF09068,
- SkuDetailsResponseListener__ctor_mF86016CDDE155D2BE9F8B17CEFEC0D163EB7A4D2,
- SkuDetailsResponseListener_onSkuDetailsResponse_m70EB3CEA914A73E6AED65B5F22E378DBB6A792C6,
- U3CU3Ec__DisplayClass5_0__ctor_mB1DE7F50FCFAAF9D420B36AA90309A38D1BD5AEB,
- U3CU3Ec__DisplayClass5_0_U3ConSkuDetailsResponseU3Eb__0_mBCE7C10C936B50A6D8787CBE5283763495490AD7,
- MetricizedGooglePlayStoreService__ctor_m25A3DFC6F9073B144331D071A3E89796B720ABF7,
- MetricizedGooglePlayStoreService_DequeueQueryProducts_m68DE6F64D6875355B987511D5EB5DB7323A277AE,
- MetricizedGooglePlayStoreService_DequeueFetchPurchases_m2AB3DBC0FD1EB62C66D069A461FCF7D88204A14B,
- MetricizedGooglePlayStoreService_RetrieveProducts_m87FD9314FDE483F227018CB65E2070A83C259891,
- MetricizedGooglePlayStoreService_Purchase_m81F49E52788EEC4DD9CC4A2ACD77FCDA7A53C724,
- MetricizedGooglePlayStoreService_U3CU3En__0_mC025AB6B08CE7C7D6DE7BB60BCEF3FD3838F8189,
- MetricizedGooglePlayStoreService_U3CU3En__1_m15EF2237A94F6779D9B7BA18AC61AF5655AC1F75,
- MetricizedGooglePlayStoreService_U3CU3En__2_mDA8D503BFEA537C94C50CECFD2F218FFAA9687C2,
- U3CU3Ec__DisplayClass3_0__ctor_mA138C4FAA7ABAD1DB20D4DF002AE7B78799E5209,
- U3CU3Ec__DisplayClass3_0_U3CDequeueQueryProductsU3Eb__0_mD9DF83EE9A5035BE7F1483D83D048D29F276AD9A,
- U3CU3Ec__DisplayClass5_0__ctor_mF985A31F5FCA82DFAA7031769335EC1E43FC3D48,
- U3CU3Ec__DisplayClass5_0_U3CRetrieveProductsU3Eb__0_mABD44FFE6CCE382E6AADD9D77BCFD984B5A3AE0B,
- U3CU3Ec__DisplayClass6_0__ctor_mD1D65405D5DC9A42319AC648B7DAA17942E8F42A,
- U3CU3Ec__DisplayClass6_0_U3CPurchaseU3Eb__0_m70A8E5D2D89B687E63EB3B6803FCA1EADB8CE31D,
- QuerySkuDetailsService__ctor_mE8EC2F94C91F0179E1AC333B2503F23F03535857,
- QuerySkuDetailsService_QueryAsyncSku_m4EDCD379B5AAC897E3512CC82728BCC9866384FF,
- QuerySkuDetailsService_QueryAsyncSku_m607784D41BB469A318817EA1F3EA842D9E010BD9,
- QuerySkuDetailsService_QueryAsyncSku_m9E4D69E993809756057ACBCAB379F2B37220F3F4,
- QuerySkuDetailsService_QueryAsyncSkuWithRetries_m6DA64182E45953396A0264076F5EA60C4A3532BE,
- QuerySkuDetailsService_TryQueryAsyncSkuWithRetries_m2EAE98C62CD752DA95C0F59AA089AFFF87A4CA31,
- QuerySkuDetailsService_ShouldRetryQuery_mDDBAD809BF96FC1B20F5C568B44A49BBDF2D4C7D,
- QuerySkuDetailsService_AreAllSkuDetailsCached_mD2E47F10D03EBD833630BD0E2686B925B9262D46,
- QuerySkuDetailsService_GetCachedSkuDetails_m459625EAD0C244C5B4ECA436A73103D04AFEF3FF,
- QuerySkuDetailsService_QueryInAppsAsync_m91146381C5101CEB5FE6E29A9E6F3D9BAAE056B1,
- QuerySkuDetailsService_QuerySubsAsync_m948A7F991C526C115FFB9B5F9A34615697EF1755,
- QuerySkuDetailsService_QuerySkuDetails_mD4D5809EF4F754BE61D2935B667393FA1BBBD30B,
- U3CU3Ec__cctor_m6759708B42F0D3D7DC3CFBC13C6E60C7843A796D,
- U3CU3Ec__ctor_mD5A2C95AA1D7177F6916D26256D061CA7DBEE49C,
- U3CU3Ec_U3CAreAllSkuDetailsCachedU3Eb__14_0_m9E8F5B237A2C6BDAA4ADE1154F4563707B41EDB9,
- U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_0_m1A6386563405257CE9A0980CDC6AEBFE29441E5C,
- U3CU3Ec_U3CQueryInAppsAsyncU3Eb__16_1_m17BE8243CB9E7F30831CC8AE2F5F35E6C938EE4C,
- U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_0_m81501999562AE1D372E32916615C773B5095DB81,
- U3CU3Ec_U3CQuerySubsAsyncU3Eb__17_1_m2EFB4A794BDBC59212FF8E4C679FCCBCEC62A3D4,
- U3CU3Ec__DisplayClass10_0__ctor_mCB4FBCF8A3507D52182C5FBC151B1F13F96FAC3A,
- U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eb__0_mD383DC2310068E593EA80ABC43C523E47C5FA99B,
- U3CU3Ec__DisplayClass10_0_U3CQueryAsyncSkuU3Eg__OnActionRetryU7C1_m085E475AB077952F2846C6136F49A8C22F2BE075,
- U3CU3Ec__DisplayClass12_0__ctor_m85FF665E14CE34D34612970F31576AA2BE766687,
- U3CU3Ec__DisplayClass12_0_U3CTryQueryAsyncSkuWithRetriesU3Eb__0_m26B993FFAAD1E36665C2A22D4E2F323EBA344E72,
- U3CU3Ec__DisplayClass9_0__ctor_m533A1BF989D3A219AEBA6FBDCC2B1490C2FE9E84,
- U3CU3Ec__DisplayClass9_0_U3CQueryAsyncSkuU3Eb__0_m75B27CF7DD9F98FE9917225F48ADD73BF54D58DA,
- SkuDetailsQueryResponse_Finalize_mFE0BA9C7FD572938BE2F3070C72CA1EE2BDDCEB8,
- SkuDetailsQueryResponse_AddResponse_mF1B6ABDF620A5AE5C744B0FCFCD760911029AEC4,
- SkuDetailsQueryResponse_SkuDetails_mA782974FA78D9BB019C144FC6E68CA867CC2841E,
- SkuDetailsQueryResponse_IsRecoverable_mA58DC94D88675A7E412CBA0831F12B8674EC6FA2,
- SkuDetailsQueryResponse_IsRecoverable_m388B03DD9EEA0B5787322108CFDC8B7463C4F329,
- SkuDetailsQueryResponse__ctor_m4654FF8B33D29EFD53B5797CB49DE30E8875CFD4,
- U3CU3Ec__cctor_m32F22536A9DEFE113FE9867AD07318A95EBD52EC,
- U3CU3Ec__ctor_mA6CE767B6444454DB3210EE8A2A372BE7546F6F0,
- U3CU3Ec_U3CAddResponseU3Eb__2_0_mEEA2ACE4EF5FFB8B9CDDBF40F3C96DB312A83FA6,
- U3CU3Ec_U3CSkuDetailsU3Eb__3_0_m0474D4D31CEAE87A51E00E9E228C60A882797F38,
- U3CU3Ec_U3CSkuDetailsU3Eb__3_1_mB71F4AC7405DD610C8C8EDF6F794B0C20AF540CA,
- U3CU3Ec_U3CIsRecoverableU3Eb__4_0_mBFC82350AB7FE2361717F60CD472508099E9DF91,
- SkuDetailsResponseConsolidator__ctor_m9CA3C84075D850B5C635A03FF50725D15BFFEE05,
- SkuDetailsResponseConsolidator_Consolidate_m8A8DBF06DA93652A1E881603968B5124A0308A67,
- FakeGooglePlayStoreConfiguration__ctor_mED7ABA18497E3166EFB99514D00A239DEF15A2AA,
- FakeGooglePlayStoreExtensions_IsPurchasedProductDeferred_m3CF9011710F5E0F936E13A300B7AA7DE55365B28,
- FakeGooglePlayStoreExtensions__ctor_m7CE5CD272DDABAF44154E2B79578DE525A413891,
- GooglePlayConfiguration__ctor_m00E3ABD231224448DD73C870F7577A12879FB299,
- GooglePlayConfiguration_NotifyInitializationConnectionFailed_m5E706FABA8A196D40A703E8913617B7F1EA0C5A6,
- GooglePlayConfiguration_NotifyQueryProductDetailsFailed_mC8A178690649569AB47D350786D56865827FDE90,
- GooglePlayConfiguration_NotifyDeferredProrationUpgradeDowngradeSubscription_mEB8B3D29090CE88539CA3E22576D886C73E83173,
- GooglePlayConfiguration_IsFetchPurchasesAtInitializeSkipped_mA957053EED2577592325EB8E80B08FE928839B61,
- GooglePlayConfiguration_DoesRetrievePurchasesExcludeDeferred_m03BBF5C4B8A521E67738B816455D9D8F69CDCDA8,
- GooglePlayConfiguration_NotifyDeferredPurchase_m9E0F334800FDA40407CB9CECD996DD45940D1036,
- GooglePlayProductCallback_SetStoreConfiguration_mADD4C9C243F83D64231BAA554A096C4A41378210,
- GooglePlayProductCallback_NotifyQueryProductDetailsFailed_mD1657729F98064FFB9BBCF5635D0FF1C531EB8DC,
- GooglePlayProductCallback__ctor_m950784739496F64C7A5312A7E75A0F97ADA0B77F,
- GooglePlayPurchaseCallback__ctor_m68068D41D76338FEB265D46E85289A18AAFE2CF0,
- GooglePlayPurchaseCallback_SetStoreCallback_mDBB788DB101437778407F10A8F83AA5770AEE2CF,
- GooglePlayPurchaseCallback_SetStoreConfiguration_mB3D6E90372854F3750107B578C39E990179FB61E,
- GooglePlayPurchaseCallback_OnPurchaseSuccessful_m0C42BF32CA2328E8E1ADB1FD7F9057C07E1A0EFD,
- GooglePlayPurchaseCallback_OnPurchaseFailed_m797EBCB9415B7E1E6136370E0D919D378DA033D9,
- GooglePlayPurchaseCallback_NotifyDeferredPurchase_mB6A7AD9A8FA816DCAC78A13562515B670C4E1C76,
- GooglePlayPurchaseCallback_NotifyDeferredProrationUpgradeDowngradeSubscription_m2D4199C517F310037AEF29DF92B82D46BEE7AB89,
- U3CU3Ec__DisplayClass8_0__ctor_mC688B3C07EF4A3717B3312CAE767EFEFE864CCBB,
- U3CU3Ec__DisplayClass8_0_U3CNotifyDeferredPurchaseU3Eb__0_m3AD7D105AD95ED1F5C71BADBB86BD3108745CCF9,
- U3CU3Ec__DisplayClass9_0__ctor_m30F6B21A8952AEB8839D02CFFEFB1575E5285B31,
- U3CU3Ec__DisplayClass9_0_U3CNotifyDeferredProrationUpgradeDowngradeSubscriptionU3Eb__0_mA776A70712EAF9A5E843069C70F780FFCF5F99AD,
- GooglePlayStore__ctor_m442B660554E4BBDE92208921FD3898BFECADFEDC,
- GooglePlayStore_Initialize_m7CBB76995E9EC1D9E22D8893BE2A660044A55E08,
- GooglePlayStore_RetrieveProducts_mDB89F3EEE4393786FA0AB117AAF6962DDCE72F04,
- GooglePlayStore_HasInitiallyRetrievedProducts_mF08671150A96861672F6858F392DAB76A5C24E97,
- GooglePlayStore_ShouldFetchPurchasesNext_mCFAC177782D5D8C4A365629CC429BD62C98176B4,
- GooglePlayStore_Purchase_m76E314E4992393D3527D664337C437B525C81FB4,
- GooglePlayStore_FinishTransaction_mB85BB4EA23B4992038BC80994BF7C98982851187,
- GooglePlayStore_OnPause_m31336B413016F6099885044229E4C021A7083BB7,
- GooglePlayStoreExtensions__ctor_m3164A3520A06CDD7E2CA70C380D01B4C0CE7C0F0,
- GooglePlayStoreExtensions_SetStoreCallback_m78881F7FB0978D53414137B1480395B5B2AA553A,
- GooglePlayStoreExtensions_IsPurchasedProductDeferred_m4E78DB685E6FBD2DC0A01CE4232B64BB43991FED,
- GooglePlayStoreExtensions_TryIsPurchasedProductDeferred_mCCAAD920152BC5DFC3F9455B5902FA2157D67CAB,
- GooglePlayStoreExtensions_GetPurchaseState_mE5AE3E1D748E943BFC07E3CEFA83F6D5807CB1E3,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- MetricizedGooglePlayStoreExtensions__ctor_m7730A5D7D03CAEF22B57BA348C6A0F7E6ABB54D0,
- GoogleProductMetadata_set_originalJson_m2AA4A01F9FD6D875D3178EA3516A2CA7E0C2F458,
- GoogleProductMetadata_set_subscriptionPeriod_mE8B892F4C6E22156A092545EE251E829BD657A4B,
- GoogleProductMetadata_set_freeTrialPeriod_mAD70EE78EF91C1EC5BC3EDC1BA4C36832F6DB82F,
- GoogleProductMetadata_set_introductoryPrice_m5A6A7589836E3AAAB78BF64B2EB434D50697FC55,
- GoogleProductMetadata_set_introductoryPricePeriod_mF7C017AF4C274A6417A5FF1AFFB94584F3950D53,
- GoogleProductMetadata_set_introductoryPriceCycles_m5D7A148FCFC8C13188F970F2AB846033CD30EE64,
- GoogleProductMetadata__ctor_m6987658611A6B5BDD48C3C87283ACB6346F28A6B,
- GoogleFetchPurchases__ctor_m23498B0FC31C93822DF3D731BFF27CE51978420F,
- GoogleFetchPurchases_SetStoreCallback_mD64337130E5102DA07EB013F73B56EB099865293,
- GoogleFetchPurchases_FetchPurchases_m9C4BD1ABE4996D730F7512C11D3CD64F39EB6E6F,
- GoogleFetchPurchases_FetchPurchases_mB5BB2978060AF58720285D9D82210C49CAEEB404,
- GoogleFetchPurchases_FillProductsWithPurchases_m696BAD4693F1BE2B9582C7E98C8D8FC9AEA8984A,
- GoogleFetchPurchases_BuildProductsFromPurchase_m1F0C4090FBDD9D617F8246E05E24315BAF11850F,
- GoogleFetchPurchases_CompleteProductInfoWithPurchase_mF21F1D0A88F9D3975E33B32572A6CFD2FE8598B7,
- GoogleFetchPurchases_OnFetchedPurchase_mDDEF43EF8FACA9B9267717E8795BCB1FBC2B982A,
- GoogleFetchPurchases_PurchaseIsPurchased_m1CD163A5827F7638E3F7FFE75F6A8E5A16C13E95,
- GoogleFetchPurchases_PurchaseIsPending_mC3D01A896C7C55B6D823BE1D9F25FA404B3AD838,
- GoogleFetchPurchases_UpdateDeferredProductsByPurchases_mB2277296696BC368E113BA97ED73A49402F361B0,
- GoogleFetchPurchases_UpdateDeferredProductsByPurchase_mC4F57ECF37A0DF6A86093DBF9C3B4108A6646BF9,
- GoogleFetchPurchases_UpdateDeferredProduct_mDA34FF5F5BB2D0570E557F1C66EB7D5A122E8460,
- U3CU3Ec__cctor_m663611EADD44C5C2716D84BC2FCC720F2412C128,
- U3CU3Ec__ctor_mA3D48173D32BD58EE4D8181CCD896F7E83FB7E04,
- U3CU3Ec_U3CPurchaseIsPurchasedU3Eb__11_0_mA0F316BEF7E02821ED1013153E9A1489F535A57A,
- U3CU3Ec_U3CPurchaseIsPendingU3Eb__12_0_m39A95DB2A2EBD4FBA010242D5A8A7C179EC58D7B,
- U3CU3Ec__DisplayClass10_0__ctor_mAD689312E6C6B761FE8F4CEE69E046A057401D60,
- U3CU3Ec__DisplayClass10_0_U3COnFetchedPurchaseU3Eb__0_mBC5858D8DC79E0384937B68E851D50DC254D49C1,
- U3CU3Ec__DisplayClass6_0__ctor_mA33E3F3BAC5C6B0FCCD09956DA6BBE52CB990EEA,
- U3CU3Ec__DisplayClass6_0_U3CFetchPurchasesU3Eb__0_m428B81E2341006BE8162324D3EEEA47F815006A3,
- U3CU3Ec__DisplayClass8_0__ctor_mCC52CF9D8B2EC984F52D7A3AE12B24B59F65E7E8,
- U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__0_m93F6324836D90AE1CEF6F3E9DA705F9137F43932,
- U3CU3Ec__DisplayClass8_0_U3CBuildProductsFromPurchaseU3Eb__1_mEAC504DF71965A450E4855D8CA3DBD7F4953EF75,
- GooglePlayStoreFinishTransactionService__ctor_m73C28E31505A72BADFCB9E2ADB5946D9E1E49069,
- GooglePlayStoreFinishTransactionService_SetStoreCallback_mBD8994E6B5551AC9C311B19706F6BA6A5FF323C9,
- GooglePlayStoreFinishTransactionService_FinishTransaction_mC226005E6254F6269113CA84612B1A0E343D08CE,
- GooglePlayStoreFinishTransactionService_HandleFinishTransaction_m6EE0595168E0A036E4302D3D77C1296131CDBCA2,
- GooglePlayStoreFinishTransactionService_CallPurchaseSucceededUpdateReceipt_m7A161EB8AB08F82A3998407C37448C5D5AC34AE4,
- GooglePlayStoreFinishTransactionService_IsResponseCodeInRecoverableState_mB643EF366A9693C524CEEA23AA96C9D04EFDFDAF,
- U3CU3Ec__DisplayClass7_0__ctor_mC7615D49B9A621DB691190861BE652EC3A31AE5A,
- U3CU3Ec__DisplayClass7_0_U3CFinishTransactionU3Eb__0_m04B922FDC75F4891A2B7F6FA7F0E424BA3A38BD2,
- GooglePlayStorePurchaseService__ctor_m7848EF4D063099A3CB5A94F10839E86935AB6A11,
- GooglePlayStorePurchaseService_Purchase_mEC0DBE8E7088EE6A76470CE09F70A1397D3EC097,
- GooglePlayStoreRetrieveProductsService__ctor_m0CA75B6C835F2EC9DBC8E462B6713BE4698324B2,
- GooglePlayStoreRetrieveProductsService_SetStoreCallback_mD7565370FECAAC10E486CBE82C6BA3CCEBDDE50A,
- GooglePlayStoreRetrieveProductsService_RetrieveProducts_m467794DCB494591A9DF168380E057DD2E9CC5BF7,
- GooglePlayStoreRetrieveProductsService_OnProductsRetrievedWithPurchaseFetch_mFF9A8E3594336C215CF28CA6BE4ADE7871DB26CA,
- GooglePlayStoreRetrieveProductsService_OnProductsRetrieved_mBF9EF11DA650BEDD232019B59B813F9D474D2B7F,
- GooglePlayStoreRetrieveProductsService_OnRetrieveProductsFailed_m45BA9CC0D0A90D81919EA4DE083EC17E6DA4A31F,
- GooglePlayStoreRetrieveProductsService_ResumeConnection_m90D885D4B2EA84E45DA13DEAB9E4B14E53FA89B2,
- GooglePlayStoreRetrieveProductsService_MakePurchasesIntoProducts_m84ED9554C7D4A0C112BB4E971458737766428177,
- GooglePlayStoreRetrieveProductsService_IsPurchasedProductDeferred_mD31CFEBACEDE3BF9D682FB55B4647547E85D3552,
- GooglePlayStoreRetrieveProductsService_CreateNewProductUnifiedReceipt_m4A828BFF7493EB1E95167CDD381BF4E53CC27747,
- GooglePlayStoreRetrieveProductsService_HasInitiallyRetrievedProducts_mBADDD565F7DBF2601D816EE6B59283813FCBEFD7,
- U3CU3Ec__DisplayClass10_0__ctor_m7999427F3130F6D577FD8A6BA660E0FDE93D4A32,
- U3CU3Ec__DisplayClass10_0_U3COnProductsRetrievedWithPurchaseFetchU3Eb__0_m601CDF5D52DF3A7C33934B2C2C86308DF21D758D,
- U3CU3Ec__DisplayClass14_0__ctor_mF92CF9E8D4C9E3F5D59BE5FA56AF02EFF7616E6D,
- U3CU3Ec__DisplayClass14_0_U3CMakePurchasesIntoProductsU3Eb__0_mC86784D0EE46527E6027B975D8790B2A7A2D4812,
- StoreCallbackExtensionMethods_FindProductById_m0E4A17BCE49A46D65A1B234C9B87D3C53067B012,
- JavaBridge__ctor_mFE1D316608D352A17AF50EC9DF0E5E8B9E7DD08C,
- SerializationExtensions_TryGetString_m50B16F206A82935DDBDEAA88520270BE788F5B33,
- JSONSerializer_SerializeProductDef_m30C22B408C008814C1703550DF65EBD09CA832B7,
- JSONSerializer_SerializeProductDefs_m3D0929F515F66A1E0F0E6849454A6985BBFEB616,
- JSONSerializer_SerializeProductDescs_m099404FD14B84B48AAE2B30D571EF389E59E21BD,
- JSONSerializer_DeserializeFailureReason_m914151E8ED821123DB57B56770124D2B34C5EBAB,
- JSONSerializer_BuildPurchaseFailureDescriptionMessage_m9DEEAF966943E83E129F94F05E2C3930D160A03C,
- JSONSerializer_EncodeProductDef_mC867EAE9AB70675C075F5932ADCBBAE5BDF9EE19,
- JSONSerializer_EncodeProductDesc_mAEB2F175F5BE8DE42353A26D77796BCA37A6B6C3,
- JSONSerializer_EncodeProductMeta_mF9DBB19F1A341F90494BCF37645BD866B65F595B,
- ScriptingStoreCallback__ctor_m6F45754D7A1E6A4ECFA500BC97B89A2D8EC67E9C,
- ScriptingStoreCallback_get_products_m4520241E9DBDE79A7635311D8A615D5B906211B5,
- ScriptingStoreCallback_OnSetupFailed_mAA28ACD581F8726F3D977CED7B8FF3D85A536E90,
- ScriptingStoreCallback_OnProductsRetrieved_m53F615DDDBD1474B8DF639236D38806FC43E0AA4,
- ScriptingStoreCallback_OnPurchaseSucceeded_mCC7D4C723008049F7AA5D67BDD6D2087A67D24ED,
- ScriptingStoreCallback_OnAllPurchasesRetrieved_m6C66FC3DD9081BC62B25724E4C1F2B878CC4660E,
- ScriptingStoreCallback_OnPurchaseFailed_m6900616FF46EBFCA55AC24747B622887167E3700,
- U3CU3Ec__DisplayClass10_0__ctor_mE4A4709BD713F62CA3FC17639EC65C23DE3091FE,
- U3CU3Ec__DisplayClass10_0_U3COnPurchaseFailedU3Eb__0_mB30EAA403CBDE5D183B13BFD075E68D1464CC7EB,
- U3CU3Ec__DisplayClass6_0__ctor_m0B122E52D7806788868B67D5349501C605B6B976,
- U3CU3Ec__DisplayClass6_0_U3COnSetupFailedU3Eb__0_mE99F04FDBC25BF7FE398E60F144A502967837789,
- U3CU3Ec__DisplayClass7_0__ctor_m7142B52B5A6D40912C042FD8BD993CB490019DE8,
- U3CU3Ec__DisplayClass7_0_U3COnProductsRetrievedU3Eb__0_mAAFBF7E5A56F1688BE5B1CA2C33C7A6DF42A0F02,
- U3CU3Ec__DisplayClass8_0__ctor_m451ABE949F36739F659791BA041B83B8E9889C39,
- U3CU3Ec__DisplayClass8_0_U3COnPurchaseSucceededU3Eb__0_mCAC7081CD54676C43056EFA6FC1B55E267E464D1,
- U3CU3Ec__DisplayClass9_0__ctor_mA89E3CAD6C621FA387FDA175B856300AB4F1515A,
- U3CU3Ec__DisplayClass9_0_U3COnAllPurchasesRetrievedU3Eb__0_mF701C2366616FF7651766BC228D3E3CC704D9835,
- ScriptingUnityCallback__ctor_mE91537431428F2BAE31F74C97511D1801B2B76BA,
- FakeUDPExtension__ctor_m9909C64791CF0E33D3BC4A9EF5A0CD83731B4779,
- NULL,
- NULL,
- NULL,
- NULL,
- UDP_get_Name_m70A3676CB1334C681DD38DA9A3A58D7D854FC52B,
- UDPBindings__ctor_mCC17D7B8FF9A01CBBDACDB250F92451CAE9DA238,
- UDPBindings_Initialize_mB5D70AECF387FD4853B2C8C13441400F76B8C1FD,
- UDPBindings_Purchase_m6E867ECDA70899A560303597915C4D9AC54402A3,
- UDPBindings_RetrieveProducts_m9071FB1685A15AA310CF02CD785091D465E15517,
- UDPBindings_FinishTransaction_mCACDE296E30E5E9B9A4ABA3A57C8362CB2979ECB,
- UDPBindings_OnInventoryQueried_m82D6D36598774DFAF94E85A6D3191584386AFB11,
- UDPBindings_RetrieveProducts_mF3C89574016423E1BCDF913DEE85B994B9B8489A,
- UDPBindings_Purchase_m45DF1F8D92447D7383D01797E59EC4B3F28F83E6,
- UDPBindings_FinishTransaction_m4622B1CB1D217ADC06D774AD233114FCA9F52D3C,
- UDPBindings_StringPropertyToDictionary_m39B952E8FF7D956C5818D9BDAB3E6F095CE6EA10,
- UDPImpl_SetNativeStore_mE6BF4249E85915BF98457E2D9ABD26896BA955AD,
- UDPImpl_Initialize_m856683942B1E72EBBA2C03D2DEF0A4D4A24DDF70,
- UDPImpl_RetrieveProducts_mF219F897C8726F2E00D24E37241DF7816801C2D6,
- UDPImpl_Purchase_m2FE4F9AA04774FFB1F9FBA449C6E57E61412B1E5,
- UDPImpl_OnPurchaseDeferred_mD181FC617E85EB85048FAFB5C190979C2C9F170B,
- UDPImpl_FinishTransaction_m0926C1E511ECAF82484CDE4430A53BC4665AE803,
- UDPImpl_DictionaryToStringProperty_m0C3B83E927934260F67FC7329328496F327A16DB,
- UDPImpl__ctor_m76DDF676AAEEF16864C212AF4F3067E8494E53BC,
- U3CU3Ec__DisplayClass10_0__ctor_mF1B0D32B7DC643E0DF4DF4101AD8261CD33A8650,
- U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eg__retrieveCallbackU7C0_m089FBA707F15C0733AB9623189408682CEAB6824,
- U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__1_mF3763D2E4FF48AEC059193028E14BC784F479278,
- U3CU3Ec__DisplayClass11_0__ctor_m892A56A497D981D4387D76978F75F8A8ED72F66F,
- U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m005372A7A362E83C9FA8C9E826D03CDC750BEB2C,
- UDPReflectionUtils_GetTypeByName_m26748778D6FA4CCB984BF47429E7F482F353C400,
- UDPReflectionUtils_GetAllAssemblies_m61C9FE53E7130D9F2E261538B11666B679399E94,
- UDPReflectionUtils_GetTypes_mF549D6ACE95CE2FD623113E943A65BFFC67EFDB7,
- UDPReflectionUtils__cctor_mC38EF4E2397351D025D3BE4F017BE5C58E5EE0D4,
- U3CU3Ec__DisplayClass6_0__ctor_m904B6C1C4442C69C8F2B22E576F05F2B99A3732E,
- U3CU3Ec__DisplayClass6_0_U3CGetTypeByNameU3Eb__0_mE562C8B0ECB0EDD67151846249850549E5396DE1,
- InventoryInterface_GetClassType_m10737C1664C2EFEF67AEF67987633D8FBA9C00CA,
- InventoryInterface_GetProductListMethod_m5A7B9400947F108080DB3C0F522C9798E90D0669,
- InventoryInterface_GetPurchaseInfoMethod_m6F8F663AEC7F4654C65A6CADDF8176877D6CDF43,
- InventoryInterface_HasPurchaseMethod_mDC03C925282E5CB8F59D68590300B80B77691F4E,
- ProductInfoInterface_GetClassType_m3439925DE53E57C7A4458FD57E713D9F52C1E625,
- ProductInfoInterface_GetCurrencyProp_m4E4121C55EBC9BD58E603CD7DE11A3F6BAA0CF4F,
- ProductInfoInterface_GetDescriptionProp_m059605088C221E9566919514E62A1A72C0F9AE39,
- ProductInfoInterface_GetPriceProp_mFA43FA2FD73B1ABA1246C03299A427B14D624D32,
- ProductInfoInterface_GetPriceAmountMicrosProp_m164F27C12024DE1DB4791B5BD11D0B85AB2679F8,
- ProductInfoInterface_GetProductIdProp_m12571C88A3B8424D85C95D70E6FE05206582F7CB,
- ProductInfoInterface_GetTitleProp_m56C31D22C70E0EC6E2E261033035B871B8B964A0,
- StoreServiceInterface_GetClassType_m2969A5DF58984F95FF6C616A0ADE15C79D412F1C,
- StoreServiceInterface_GetNameProp_m1CFA6C61AFA7966244BAA572BEAFFE5B6A29CCCC,
- StoreServiceInterface_GetName_mC41966B0C100102BC137679E7A3B25057D7909D8,
- UdpIapBridgeInterface_GetClassType_mC7A8F5D6A4317B6A791F52E046724086A8F1BAEF,
- UdpIapBridgeInterface_GetInitMethod_mD6DE8995E5662C072A9FC589BF6D809D20E1EAD3,
- UdpIapBridgeInterface_GetPurchaseMethod_m9616655B55363E72B85FCDD726FBC1D049309055,
- UdpIapBridgeInterface_GetRetrieveProductsMethod_m6EDB2AFF6E367F47217E0BE4D2455F4FDB5BBA6C,
- UdpIapBridgeInterface_GetFinishTransactionMethod_m40E3E8F5F41A5E88ED74401B7138D15611FD0B1F,
- UserInfoInterface_GetClassType_m1516981C261FEE915B9C492542E5AA8A34B3240E,
- AppleJsonProductDescriptionsDeserializer_DeserializeMetadata_m3BB9308C095DC20A6FB93D935AA927B6ADA8B3A9,
- AppleJsonProductDescriptionsDeserializer__ctor_m1F845020E3FFCD14A440A2A36BEF4CB11D68ACF4,
- AppleProductMetadata__ctor_mD8E3F61B922CCD601F17439714660DCC400A1146,
- AppleStoreImpl__ctor_mBD0FC70F117D699AE7E7F1A9AE371A89E09F20E0,
- AppleStoreImpl_SetNativeStore_mCAA38D79F89B739BD7E1F4FEA7A363D0F64AF0F0,
- AppleStoreImpl_get_appReceipt_mE698AC3E11676A40E6D562556940523347B0D3F0,
- AppleStoreImpl_get_appReceiptModificationDate_m3A9E1D89ADD3B8F416AC12F692E4B0AAE976FFCB,
- AppleStoreImpl_OnProductsRetrieved_m9D235101ACE0033B59D230AC021B17BFA54480D2,
- AppleStoreImpl_HasInAppPurchaseReceipts_m4FB82D514565F80413D164C9E6FEC989A5063695,
- AppleStoreImpl_EnrichProductDescriptions_mE6813BD5D386C148DFA1DAFBE16DB305B9C2AFA5,
- AppleStoreImpl_FindMostRecentReceipt_m12E86A817828E8985BB6BB107EA65AAB15F32B3F,
- AppleStoreImpl_FirstNonCancelledReceipt_m1EABDCB6CC88E2DA54F76260AEA582E52DB86588,
- AppleStoreImpl_OnPurchaseDeferred_m6CE392E89FC84BFAE015141AE7D933875F05948C,
- AppleStoreImpl_OnPromotionalPurchaseAttempted_m018CC2E31C3E716DF380FBA0C42715420DD4C20B,
- AppleStoreImpl_OnTransactionsRestoredSuccess_mCF4359ADC99EB4F78ED748EBDF2B94D78C2034F1,
- AppleStoreImpl_OnTransactionsRestoredFail_m3973CE52BCA38F157074CE96657F42276547CEBD,
- AppleStoreImpl_OnAppReceiptRetrieved_m07A1C89BD8A58041B10710852AC0AFBB1391310F,
- AppleStoreImpl_OnAppReceiptRefreshedFailed_mA3A2B42ACADD43CB7244C05880415BB476FBF37F,
- AppleStoreImpl_OnEntitlementsRevoked_m7E93E0684D4CC581523F49843E41D49861FEF85D,
- AppleStoreImpl_RevokeEntitlement_mA67D94B765B300731F3E8DF4ECC6127CCF6E9349,
- AppleStoreImpl_RestoreActiveEntitlement_m4888905FC32CE1254A1D2F2A30025D41B55210C3,
- AppleStoreImpl_OnFetchStorePromotionOrderSucceeded_m77087CC477DACA11276EAC56DE4642CA0204E94C,
- AppleStoreImpl_OnFetchStorePromotionOrderFailed_m72F451614574601471846DD036E5F3DC87E40B25,
- AppleStoreImpl_OnFetchStorePromotionVisibilitySucceeded_mDE57FA25C43AE60A3CB9E1A57CE04319BE221E31,
- AppleStoreImpl_OnFetchStorePromotionVisibilityFailed_m21E497011356CBA519B6C5A706FE613843C02D5F,
- AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C,
- AppleStoreImpl_ProcessMessage_mC2157FC76D7DBC1E2FC7BBDB7BBCF2A446DF4E39,
- AppleStoreImpl_OnPurchaseSucceeded_mDF3F5F43794A92ED87BC1646383E2CF6EB7CB083,
- AppleStoreImpl_GetAppleReceiptFromBase64String_m51D3D664D39BBD5F43C4A94B775F862787861923,
- AppleStoreImpl_IsValidPurchaseState_mE2B8D7C431D213BE21C85965912FD361DEAFFFA0,
- AppleStoreImpl_IsRestored_m2DBB3F30FC6B9598EA221FD38934C68D80DF6AE2,
- AppleStoreImpl_IsSubscriptionRestored_m237B14594268FBB33683A4F955C8A21977BD28CB,
- AppleStoreImpl_IsNonSubscriptionRestored_m427CCEABFB237DB04CF1162B6BB953E8F40D7F92,
- AppleStoreImpl_UpdateAppleProductFields_m0538B8029D6D13B5219133386F86D43AB93B22EA,
- U3CU3Ec__cctor_m0BA679B3E781098A2AF437EE2FB5A1AEFB539309,
- U3CU3Ec__ctor_m774F236990A8E5BEDA0ABD30DFB68A51BD27ECC4,
- U3CU3Ec_U3CFindMostRecentReceiptU3Eb__39_1_m0EAF11F86324724479F8DE02108184315C7E402E,
- U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_0_m3D710E919FC9C1C18A2A353A6AF6DC700DF5C6F5,
- U3CU3Ec_U3COnFetchStorePromotionVisibilitySucceededU3Eb__62_1_mEE957FEAECE8D83314CBD242345297AECB3E0BB3,
- U3CU3Ec__DisplayClass39_0__ctor_m50A62C51D8680553E30D6D74C3FFB74F236DC1E5,
- U3CU3Ec__DisplayClass39_0_U3CFindMostRecentReceiptU3Eb__0_m8E98A28648258BE4A3CB16BC41684CDDC447A989,
- U3CU3Ec__DisplayClass64_0__ctor_m3A3126A85E3F8159D79D151B4984A67101EAD4DF,
- U3CU3Ec__DisplayClass64_0_U3CMessageCallbackU3Eb__0_m707C03C1BB2C18BFE669B84303F966E2E8C4D094,
- FakeAppleConfiguration__ctor_m63E4505C8C9B95858C7BBFB42EA2531479B73F50,
- FakeAppleExtensions__ctor_m0865C755818A9426107461EE61181EC16A327A95,
- MetricizedAppleStoreImpl__ctor_m4EC185ADFE1F5A3D36F1C371F67D3A3D25D04BB7,
- MetricizedAppleStoreImpl_RetrieveProducts_mDBAEC2A8871E09E9C10AF8C7EEAD0513F0E105AE,
- MetricizedAppleStoreImpl_Purchase_mD2556C27AC625ADF5E7D1B4005EC1098C07AECFF,
- MetricizedAppleStoreImpl_U3CU3En__6_mC8110AE2E5F10AD50CC0DF3BD1E55F6FBCF46DA7,
- MetricizedAppleStoreImpl_U3CU3En__7_m8D1390F64D308EE30EA8B398F3D67D99FECD94A8,
- U3CU3Ec__DisplayClass10_0__ctor_m5CC80C6E0A40ABEC6DD0A0CA7AE53B3A2ABE93B9,
- U3CU3Ec__DisplayClass10_0_U3CRetrieveProductsU3Eb__0_m4BE5D94E20F2B17F3885422DE0B1096C2F759B4C,
- U3CU3Ec__DisplayClass11_0__ctor_m5F43D94B9055AD615545604BF3A3BC460CE7223F,
- U3CU3Ec__DisplayClass11_0_U3CPurchaseU3Eb__0_m5EAF03211158EFC32B2ACD04B721FCECB3B39AA3,
- NULL,
- NULL,
- NULL,
- JSONStore__ctor_m4DD282A6EF45285AECA5A514FC93EEDF20726A73,
- JSONStore_SetNativeStore_mA57807DA54ADEB75FC4CFD90C238E6E0D20095EE,
- JSONStore_UnityEngine_Purchasing_IStoreInternal_SetModule_m0DD1A798C36C7FC81194DD7088D82BD88F69F219,
- JSONStore_Initialize_m6F038EB353B23D8EE7323FF5F7D7C67D150B47B0,
- JSONStore_RetrieveProducts_m3A4C2A6A378D100A71E674DE95281779D55692CE,
- JSONStore_Purchase_m8E6F174FC145C4AE226B6A2981B5152A4D04419E,
- JSONStore_FinishTransaction_m18575AA2005FB1428C7EFCCEE479FC1296CDF9E3,
- JSONStore_OnSetupFailed_mA82E1D0BF98A86C54303784CBD84FFE724564CCA,
- JSONStore_OnProductsRetrieved_mBDAD438AF037964721F33C0744A5A643E137A1F8,
- JSONStore_OnPurchaseSucceeded_m09A0AB98491589C368AA8C977FE51CCC6DD98D13,
- JSONStore_OnPurchaseFailed_mB029FDC26201096ED60C8F5EF06072581F07DF6D,
- JSONStore_OnPurchaseFailed_m5179D59E1A1843867CA5755BEA517D67B08EB698,
- JSONStore_ParseStoreSpecificPurchaseErrorCode_m96B6CFD940F442FE03EFB7C504F87DAFDEE1DF4E,
- MetricizedJsonStore__ctor_m2ADEC3C30AF634B4C5772692B5AAD279FD6F63BC,
- MetricizedJsonStore_RetrieveProducts_mA95C1B26222726C50A82B9A3E989C7BF73BFEB99,
- MetricizedJsonStore_Purchase_m462F91A5D586E569EAD21DB49E874F59DFE76D01,
- MetricizedJsonStore_U3CU3En__0_m5EB59AD3CD8FF59D4C2802141AF73171E8B2BA58,
- MetricizedJsonStore_U3CU3En__1_mF5C2E20C0BEECCCB6167596CA562B21E660225C2,
- U3CU3Ec__DisplayClass2_0__ctor_mB7D17271A19DD8FCA4C84F0284C08F86C710ABAC,
- U3CU3Ec__DisplayClass2_0_U3CRetrieveProductsU3Eb__0_m4FC8F6782C5D5836A28CE31DAEEF5669FD656978,
- U3CU3Ec__DisplayClass3_0__ctor_m2FC9B21CB2383A765C3BC78DBB5A277C20B11037,
- U3CU3Ec__DisplayClass3_0_U3CPurchaseU3Eb__0_mB695025A890C2770D2064621F70C70A317D6728B,
- NativeStoreProvider_GetAndroidStore_m037D7302B0F9C3259D0279BB287E98226C87A9F6,
- NativeStoreProvider_GetAndroidStoreHelper_mD5E36DD90BBEC32214E179C8750525C32BBDABF9,
- NativeStoreProvider_GetStorekit_m646172E0CBD784F0C22D8692EA371897259C611B,
- NativeStoreProvider__ctor_m07B2B33D02263814FE48940ADF0A03982B5865DE,
- DialogRequest__ctor_mC3E10040E1B78AB04AA6D60282493E0E6945BE3A,
- FakeStore_get_unavailableProductId_m2BC9F52E88C1A7FE386B45F1EB97022FA23D2591,
- FakeStore_Initialize_m6E65BC30AF8771CBAEF2CA1C3B96E37C1FE0628E,
- FakeStore_RetrieveProducts_m303849A4FCAEE4E4E5069E3DF509FB7A93096C17,
- FakeStore_StoreRetrieveProducts_mC88F1F4CDF525D65CAC62B0F647CD96160FE7400,
- FakeStore_Purchase_m48FB0953249E8DDD1B7ABDB3A42E30F143EC50B3,
- FakeStore_FakePurchase_m4B4EA44A636EA24B26B3308FA680E8BA131063F4,
- FakeStore_FinishTransaction_mB9B6A7DFC8B82401097DB06E3C811B59E95CF074,
- FakeStore_FinishTransaction_m1B0BB74DB65197CCCBC668B8E0B1385837B49486,
- NULL,
- FakeStore__ctor_m529FB72CF8BE9F6C28833C8BD8B4C6D5C2948A71,
- FakeStore_U3CU3En__0_m8C016780A5CA15C80D4C80FD4E1163BCA7C2DD47,
- U3CU3Ec__DisplayClass13_0__ctor_m3A44246DEDB7046A5C81ECA50E9873C799BC5372,
- U3CU3Ec__DisplayClass13_0_U3CStoreRetrieveProductsU3Eg__handleAllowInitializeOrRetrieveProductsU7C0_m0C75119A8FFD643058F5831A798B17FD8AB12F03,
- U3CU3Ec__DisplayClass15_0__ctor_m986BB38436CE07B57B74D5A928F3D5B1E23E9FA0,
- U3CU3Ec__DisplayClass15_0_U3CFakePurchaseU3Eg__handleAllowPurchaseU7C0_mAA346ACDF0ACBA0832423F884022D53020F48D9E,
- LifecycleNotifier_OnDestroy_m246944B7AEB9D6DE47CB3AF275EE9614B549B0CB,
- LifecycleNotifier__ctor_m9A95DEEA574F6E2E00912E48621EA6B5A3E6F883,
- UIFakeStore__ctor_m64E1D7567F361F1C989B8C4AB16797C59F318A91,
- NULL,
- UIFakeStore_StartUI_mAB071EA2DA1BBFE742A2E703B990B9F1F1451236,
- UIFakeStore_InstantiateDialog_mD026EE9DD7C69F6C2249396F88E07B176C38AE43,
- UIFakeStore_GetOrCreateFakeStoreWindow_m50463EF1F86C75C233FEC5FD8489D0307561E58F,
- UIFakeStore_AddLifeCycleNotifierAndSetDestroyCallback_mDE17957F5B9147E4CBFEFAF588B87C2A7630396D,
- UIFakeStore_EnsureEventSystemCreated_mE117DF9CE72DF03351C73E80A6198C6B45F63F7B,
- UIFakeStore_ConfigureDialogWindow_mED9380970BA858FBAB0CD91F8EDF705F1C0CE81D,
- UIFakeStore_ConfigureDialogWindowCallbacks_mAC7C799D2855D4FFD5348FBAB1B310BE81EBEBDD,
- UIFakeStore_CreateEventSystem_m8338D2EE206C65F141FC341A0276BB7B5B246FC7,
- UIFakeStore_CreatePurchaseQuestion_mC3B18AD45DE1E6C48EE133B328E03CD36F3A2796,
- UIFakeStore_CreateRetrieveProductsQuestion_mA8F54CD710F267A62CA5F7F8A03AE124919B1D3F,
- UIFakeStore_OkayButtonClicked_m26F1DD23773A273FF8FFFF3CB608C320C5B64DAD,
- UIFakeStore_CancelButtonClicked_m52437E1F81879351852E31764FA5F23FA1603128,
- UIFakeStore_DropdownValueChanged_mF83E1BFE1626BE9022798927E752484177080547,
- UIFakeStore_CloseDialog_mE8B51134B192C2621038E48FF09021722AB364F6,
- UIFakeStore_IsShowingDialog_mBAC6E95889588F5375EC69840FE8B5E453ECDB36,
- UIFakeStore_U3CAddLifeCycleNotifierAndSetDestroyCallbackU3Eb__14_0_m107AE87F0E9C1A0ED41726E9437A7A661F59BB8C,
- U3CU3Ec__cctor_m8EF9FDCCD5BBBB1967B8D454430BCE9FF77B3B2C,
- U3CU3Ec__ctor_m56FEB4156B7305825949898B363E9D59A69CB8F4,
- U3CU3Ec_U3CCreateRetrieveProductsQuestionU3Eb__20_0_mA8807138FF30C33760DA743C4000952ED76A1083,
- NULL,
- NULL,
- UIFakeStoreDropdown_DoPopup_mAF6A20CB635535553421DB5EEC2AF44FC117B30D,
- UIFakeStoreDropdown_OnOptionSelected_m895D124CFA1CB9C95289167A3E5FE6ECD54C0144,
- UIFakeStoreDropdown_SetOptions_m22E267F240163FF762D8A2217F10380D0F5446A3,
- UIFakeStoreDropdown_SetSelectionAction_mF781B80685CEF7F7E43A2349CADE6B621C95F8E9,
- UIFakeStoreDropdown__ctor_mDEBD1428CA136C9AB9C4458CFC4958C72F3F2BB2,
- UIFakeStoreWindow_OnGUI_mD394ECF8E08AEAEC2A5BE6EDEA91D06104E2B6C2,
- UIFakeStoreWindow_CreateCenteredWindowRect_m6FB016D6FB7383922ACD9B33A35CCAE56846421B,
- UIFakeStoreWindow_DoMainGUI_m81A28A95C62E330EC8E8F529153669A57E105FD6,
- UIFakeStoreWindow_DoDropDown_m68F2D70DC61584586685E077EC6682C59436F0AE,
- UIFakeStoreWindow_OnOkClicked_m041427DA6DF343598DF6BAFAF51743F184B4845E,
- UIFakeStoreWindow_OnCancelClicked_m75F9C08F8DE6EC8409913B90429CA8E134790979,
- UIFakeStoreWindow_ConfigureMainDialogText_mD9780645036660994548B1A7B7B54D486502CF18,
- UIFakeStoreWindow_ConfigureDropdownOptions_m61A1D64ADA6FDC639FDAFC5E7DF479497ECAFC0A,
- UIFakeStoreWindow_OnDropdown_m6F51312DC9880528B18A69C39B3EA184B8DDA82A,
- UIFakeStoreWindow_AssignCallbacks_mFA62C84BEAD1340B9EC4C9AB487595F2237572BC,
- UIFakeStoreWindow__ctor_m3680D3337EE6228226AFD797A42215306F286D24,
- Price_OnBeforeSerialize_mB8D86198F98F2C071F52B3B344F00E6D4E4133FC,
- Price_OnAfterDeserialize_m4C666E7F3D6C7CD86F74126DC8705A87D7377484,
- Price__ctor_m9D2D67B01A6B2596B79CFCD0C90561521FAC7FAF,
- LocalizedProductDescription_get_Title_m3A50BEABD22AD26AF7CF8DACF44D1ED8C0A5638B,
- LocalizedProductDescription_get_Description_m79D3AC1D1434F0C52D8A5E7DF2A8A5A34EE40C76,
- LocalizedProductDescription_DecodeNonLatinCharacters_m21582AF3504395BE6B466A8C6F0A2D0E17C1A7F1,
- LocalizedProductDescription__ctor_m17B962DDB3245C5AB3ECF2C8F4EEDF36192DC248,
- U3CU3Ec__cctor_m0AEB720B7AEFA93C8515D942EAB6D6A2EB8D525A,
- U3CU3Ec__ctor_mA07F2D3B66E2247A501FFB2809F694E3C93D12B7,
- U3CU3Ec_U3CDecodeNonLatinCharactersU3Eb__11_0_m49D06E09041CAA0F4BF8AFE59E7CA8BF5C22990A,
- ProductCatalogPayout__ctor_m88A3A65A1D40D0A24C0F52FE1F102FE442242C4A,
- ProductCatalogItem__ctor_mF35A56CDC252B7A9FDCC17A8545CA1B327F764FB,
- ProductCatalog_get_allProducts_m93A191445C8495D516A695D8708996C8790EF1C7,
- ProductCatalog_Initialize_mCDB5FD052E314BC8330EEB0A3ECE7449578ED154,
- ProductCatalog_Initialize_m4B563581D4C235DD2CA953C3897E025EA71504B4,
- ProductCatalog_Deserialize_m93C22260C98E26EF73F5AC00168BBFE1DC073855,
- ProductCatalog_FromTextAsset_m570290FA1756DCE9F4A59168A84941AE1AC38FF6,
- ProductCatalog_LoadDefaultCatalog_m56712F565AD719D1C8ECF7537CC0E5F8F533C89D,
- ProductCatalog__ctor_m174D3B7D0C5E9CE1F7C008361FD014516FB0285D,
- NULL,
- ProductCatalogImpl_LoadDefaultCatalog_m60AE28DEAACE2BEC92C132DA2E3BD1EAE8D16F9A,
- ProductCatalogImpl__ctor_mDF5D74610CE45F8F90A052D097F80E180B18B1F6,
- StandardPurchasingModule_get_util_m8C944C45C8AC751BCC2DB1CE4E8944967FFAE531,
- StandardPurchasingModule_set_util_mA38054A46DC22BEC0B431866FCA579E1954A102A,
- StandardPurchasingModule_get_logger_mD23C1CB19DCF0A64F078A38AEF31D849E10DCFBF,
- StandardPurchasingModule_set_logger_mF4E6AF66082ABE09AB49EFBEA8255DE33C90ADE0,
- StandardPurchasingModule_get_storeInstance_m4DB229ECA4FF6B1D461558C6A88E094A278DB345,
- StandardPurchasingModule_set_storeInstance_mC35664D970638EEE0A8EC2404628D5B156E45690,
- StandardPurchasingModule_get_telemetryMetricsInstanceWrapper_mF393B4FAA53F486752C053600DC1218679486040,
- StandardPurchasingModule_set_telemetryMetricsInstanceWrapper_mAA596C806087E2F27BD0D49136A3B431EB3AA887,
- StandardPurchasingModule_get_telemetryDiagnosticsInstanceWrapper_mC8A3736751296DAF9BD4CC9910D1A60EEAD80AC0,
- StandardPurchasingModule_set_telemetryDiagnosticsInstanceWrapper_m97A16E0C47FF1CBDB6BB7661AB681BBF6E62B73E,
- StandardPurchasingModule__ctor_mE2C1F89FB37CE268AC4F203252F97BC67B320C72,
- StandardPurchasingModule_get_appStore_m19E96FCA4517781E9166DAA7E3413D7B0D61EE74,
- StandardPurchasingModule_set_appStore_m8D0ED9CCFF69A230E54A2F29ACB91EE5DDB84271,
- StandardPurchasingModule_get_useFakeStoreUIMode_m6850C310CFF6F89EA69938EA4052002AACC78CEE,
- StandardPurchasingModule_set_useFakeStoreUIMode_m2221C886EC8FF153B0C2210AF2EF6DED271B826D,
- StandardPurchasingModule_get_useFakeStoreAlways_mC02952E02CD1C51EAE0E5FCCF807285AF1833974,
- StandardPurchasingModule_set_useFakeStoreAlways_mC217142239C37AA088BC50E0BD995F51A0583C23,
- StandardPurchasingModule_Instance_mBD397180F4D74807B93E47E71D7320463B1C3A1A,
- StandardPurchasingModule_Instance_m3744500352443C6EAED3EC8285FED73A4D166ADE,
- StandardPurchasingModule_Configure_m0C021F0574CB43D28767A83DB6FA0CBCEBC6CC56,
- StandardPurchasingModule_InstantiateStore_mFA7F7D395459813876216A55BF1935F93DAAAF9C,
- StandardPurchasingModule_InstantiateAndroid_m5B285A77AB87D7EEAFF4EFCE781899BC19EC640D,
- StandardPurchasingModule_InstantiateGoogleStore_m9F54FB1372083BB0A1A28590DB8C26431B58BC51,
- StandardPurchasingModule_BindGoogleExtension_mA9738A7408E00968C65ECE13DF4E1BE81028A1F4,
- StandardPurchasingModule_BuildGooglePlayStoreConfiguration_m503BDBDB6D9CCC4FB994671A4D53274D57869299,
- StandardPurchasingModule_BindGoogleConfiguration_mF804390F086950256584BEF438558E811A399028,
- StandardPurchasingModule_BuildAndInitGooglePlayStoreServiceAar_mF1CAEB638956A5A42ECB90161E807AF08CE7F2BF,
- StandardPurchasingModule_InstantiateUDP_mA6AB14925A7E1C280EC90CDEF0784B81EEAF310A,
- StandardPurchasingModule_InstantiateAndroidHelper_m0E19818F7CAE1C080316211C8630615116C9AEE6,
- StandardPurchasingModule_GetAndroidNativeStore_mD9A06FF2B55E51E17017B265A78DEE0996936956,
- StandardPurchasingModule_InstantiateApple_m1C37E2A2103096CB3E2BD67FB7061A5F417FCDF9,
- StandardPurchasingModule_instantiateWindowsStore_mCCC8645E458D205255D1B8EB7F9CFED6C00B37F0,
- StandardPurchasingModule_InstantiateFakeStore_m75B6DD6C4C9DA71E572438ABA1270E57A58C6DEE,
- StandardPurchasingModule__cctor_m23284F1558C286CB2E6EC0EB49E00442F37537E5,
- StoreInstance_get_storeName_mCABF6348271D6010C0B37F3FCDFD4588B3B4E5F5,
- StoreInstance_get_instance_m4F4739A78FFBF202811C0E886F3D8733F660F3DB,
- StoreInstance__ctor_mEB51377D6F9CB9F344D2717ED0EAA999E888D5D3,
- MicrosoftConfiguration__ctor_mD9DFFF7108C127CF3E542D2EAAC9E49E036BB365,
- StoreConfiguration_get_androidStore_m375B89A150E3F92E8C9F36F75188637F1FF8A74E,
- StoreConfiguration_set_androidStore_mC489914742751F34F6602DA872EB2B3BB3939F17,
- StoreConfiguration__ctor_mADD6F4BFB5F946DF21CD51CBAAEEBE9C6DFC57EA,
- StoreConfiguration_Deserialize_m326EDC43F29A0F2B546B9D6B212A8A124BD336A1,
- TimeSpanUnits__ctor_m69AF2FA3540250AD07DE4C3CD8E97F64EA8B6EF1,
- SubscriptionManager__ctor_m0ECAAC1D1E250FF4913D790B1F9341EEA14C1826,
- SubscriptionManager_getSubscriptionInfo_mDA75086D3BBB5F42857356C9B05B3D3C1282B66E,
- SubscriptionManager_getAmazonAppStoreSubInfo_mC2FBA869F8527BB7F45955A219080EB533445F96,
- SubscriptionManager_getAppleAppStoreSubInfo_mE2E2FA57D9CA97BA5BDCFC9AB0B47C84CD73A908,
- SubscriptionManager_findMostRecentReceipt_m0FD65E6D239431E638811715970081B4999F2A3D,
- SubscriptionManager_getGooglePlayStoreSubInfo_m33014BAC48470E67FD8C7DD5A73840AFB836B186,
- U3CU3Ec__cctor_m9734FC8CA5E2B48A77EFFE2156421123B8635EB0,
- U3CU3Ec__ctor_m199CB830F8629981ADA4F0C991B4F508A2E86750,
- U3CU3Ec_U3CfindMostRecentReceiptU3Eb__11_0_m6F59F1652B537921E2705E8DC1D55603C8D4C3E0,
- U3CU3Ec_U3CgetGooglePlayStoreSubInfoU3Eb__12_0_m4F386D12BEC0A7E102D3CFE3743E47A4BC8EAE27,
- SubscriptionInfo__ctor_mCE7F9D5333417F7A11001D0231307E68BB191E3A,
- SubscriptionInfo__ctor_mAD14FD7347A1867CD6A67162726A88AD696B9D94,
- SubscriptionInfo__ctor_mF959D7594682F5F1B8C3D725BC19352E4A4C289A,
- SubscriptionInfo_isSubscribed_m9EAA4FD5FA07828BDD765F8243F49B8B2CFC0C62,
- SubscriptionInfo_isExpired_m289877A70874E038E09275C90697D3EAA23C4535,
- SubscriptionInfo_isCancelled_m561EFAC63331FB328D5F15695B246337FEFF07D8,
- SubscriptionInfo_getExpireDate_m2F7EF006E79571EFECD46A91F83181A3F1CA147C,
- SubscriptionInfo_nextBillingDate_m0FB32D84F4B95E127E6B0C537098AF179831E7BA,
- SubscriptionInfo_accumulateIntroductoryDuration_m503F206556C2124CF3641CC0952B16718A52B468,
- SubscriptionInfo_computePeriodTimeSpan_m999CB3C5CFF7DBB5579A5C196BBFDDC9D034B6ED,
- SubscriptionInfo_computeExtraTime_m45672397041F6C14857C72C446EB0716CAF0DF08,
- SubscriptionInfo_parseTimeSpan_m3222C7A089EC328707F30D57576DAF0E0174AA87,
- SubscriptionInfo_parsePeriodTimeSpanUnits_m35F883FE27081A3998B5A723683EC875A365085B,
- ReceiptParserException__ctor_m602A8964067A5FAF6A0E1D5C59EF5784CD1A2D01,
- ReceiptParserException__ctor_mD3C699CB23161C65A8882A879D36066E37E294DF,
- InvalidProductTypeException__ctor_m79E0FD982F7188E0D74E438205909876F0A5B486,
- NullProductIdException__ctor_mEA2182523EBF3FD28F6AAEA328255EC125C5ADED,
- NullReceiptException__ctor_mBDE195811C11A65AD4BC519D3DF51762A3F7EC41,
- StoreSubscriptionInfoNotSupportedException__ctor_m4DBA3E5AB3A76393010CE741CBD009062819D62D,
- FakeTransactionHistoryExtensions__ctor_mD34E51963B91B68D7129023F958802CFE4962D97,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- ExponentialRetryPolicy__ctor_mAC23DF035809BB5B3A13905A479E556F80E10D0D,
- ExponentialRetryPolicy_Invoke_m897F5C1AE28B88A28112BD36DA204ACBED2515F6,
- ExponentialRetryPolicy_AdjustDelay_m5B9A18AE35D79859E9E8364F29557A1A076325BF,
- U3CU3Ec__DisplayClass4_0__ctor_m4E921B377C6E8A0A6DEDC027FA0EF79EC07C49F1,
- U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__RetryU7C0_mFB4D1A3042FBBC528DE0DA514AB8D71E7971FB29,
- U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C1_m3F1198382F690803E1CD999797BFA199A3737CBC,
- U3CU3CInvokeU3Eg__RetryU7C0U3Ed__ctor_mE59EB90B01BF918DABBA240A8EF633FDA2171DF5,
- U3CU3CInvokeU3Eg__RetryU7C0U3Ed_MoveNext_m66CDE84F2811E1552B9492E6A10BFB1A9030819B,
- U3CU3CInvokeU3Eg__RetryU7C0U3Ed_SetStateMachine_mEA9B7E8890D9CD5A5CFC37034FF766F1A3AFF024,
- U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed__ctor_m6E9FAD9BFB1C70140EA8B3B0E02741D572721B6C,
- U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_MoveNext_m92AAD93E2C4B46099F44EA233BE9E7B5DD97006A,
- U3CU3CInvokeU3Eg__WaitAndRetryU7C1U3Ed_SetStateMachine_mAB950EC38EC7F7AD48DC7AEC0F9E4DE1830BFBAD,
- GoogleConnectionRetryPolicy__ctor_m76204F7739D8093618588949A8A34E5D28EF61DC,
- GoogleConnectionRetryPolicy_Invoke_m0128FBE97E777BD55195DCB74316FC5344752BCE,
- GoogleConnectionRetryPolicy_AdjustDelay_m057F0DCA4CDF3153EAD3078E2C58DF47C1FE41F2,
- U3CU3Ec__DisplayClass4_0__ctor_mBC098BE7B48A9D407A8146CDA753B2238DAA8CF0,
- U3CU3Ec__DisplayClass4_0_U3CInvokeU3Eg__WaitAndRetryU7C0_m55D84DFAE6C4400161B3A2C725B0C1CF8EDC4CD2,
- U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed__ctor_m139B7829A2AD72F87B71CD1A33B2527B71CF31B8,
- U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_MoveNext_mEE765EE7B466758AA988889CD1161EFC3FF440B5,
- U3CU3CInvokeU3Eg__WaitAndRetryU7C0U3Ed_SetStateMachine_m573388BE4BB7D0DA0302B3B18F323CD9DC82B85C,
- ProductDefinitionExtensions_DecodeJSON_m7416F243BB95C9C63B91D12D74A3F3A00A4656E6,
- FakeMicrosoftExtensions__ctor_m4F9FFC593BF05E4A5FDDEB1ED71D2583B5D66886,
- WinRTStore__ctor_mE5C6E24757C62599881D70F2AA1D8A82480FE311,
- WinRTStore_Initialize_mDEF3CF5B9F0CAA017C44C1878E5D4CB08AC5EF0B,
- WinRTStore_RetrieveProducts_m5480E3D22E25D41EDC18B4806BA4154BD2CE7B07,
- WinRTStore_FinishTransaction_mC624FB22E6E7C13F50D0E611FCD6EC5B69CE908F,
- WinRTStore_init_mA94BEFABDB0D1DE85C4F457B468DF2C246EB0FA6,
- WinRTStore_Purchase_m467F9F8FD3A79225F610A48004C1A4C4186ADCF7,
- WinRTStore_restoreTransactions_m93D2A3C481CA38BAE9DB9099955FE6AB10EB10F4,
- U3CU3Ec__cctor_m29C0E94B6690D38BEE3FD1C980E88C9ED8B96E41,
- U3CU3Ec__ctor_m38F009CF5EAC3E6F1FB96B45D44C650BAE93619E,
- U3CU3Ec_U3CRetrieveProductsU3Eb__8_0_mED3B5305EC5CF5F0CA5F97E22DDD29DB1DCD65E2,
- U3CU3Ec_U3CRetrieveProductsU3Eb__8_1_m376EA2F5E999011A34EE5C34493E597EACB31340,
- NULL,
- UnityUtil_get_currentTime_mE40001425F55E1A90761D51411B81DE0FB9DF1B5,
- UnityUtil_get_persistentDataPath_m2AAF48A31B21C5A5ADC134ECB14E58D2D6CB5D46,
- UnityUtil_get_deviceUniqueIdentifier_m1AC62056A917557653A37C47461FB4996C2F0337,
- UnityUtil_get_unityVersion_mE2949234D9C1C02226C7CC83374FC11075EFB241,
- UnityUtil_get_cloudProjectId_m3A658EA17D15C5F63C93B90A3FCC284DB3B8F86F,
- UnityUtil_get_userId_m0D8EA6251AC88FE0FECA87BEB72AFD2D6FB6644C,
- UnityUtil_get_gameVersion_m850F0EAB8708FC24BF42A80509CE69DF76405048,
- UnityUtil_get_sessionId_m0621F738E17339143ACF624F474680C19C13D0D8,
- UnityUtil_get_platform_mF687BB437A671685484C604A86E99863F419302D,
- UnityUtil_get_isEditor_mDD2E04E6B1CA00D5F06563910E72688974EF418A,
- UnityUtil_get_deviceModel_m594551957553EBEEB2704901C5FB8EB86F661AD7,
- UnityUtil_get_deviceName_m4026083CFFD874134D2918202EA370E1E4B0864E,
- UnityUtil_get_deviceType_mA5AA09B2292D7A3572DAC584AE95924F9EB2E58E,
- UnityUtil_get_operatingSystem_mD92A36329BE72E6766CA9E5A2873F48CDE1DA838,
- UnityUtil_get_screenWidth_m8A3081DB40110DD42D952ED8DD378DC16571DF71,
- UnityUtil_get_screenHeight_m35BCB594BA71E47F19F3A5A08C7BD651E54238DF,
- UnityUtil_get_screenDpi_mD80E2591FA819A2CACB39F1B2E611AE435A0FDF7,
- UnityUtil_get_screenOrientation_mE5D6B673B93171EE6FE392AC040F0E7972E6E5A5,
- UnityUtil_Uniject_IUtil_InitiateCoroutine_m8E0514A01EE0D435BA288DA4280089711785F681,
- UnityUtil_Uniject_IUtil_InitiateCoroutine_m45F4BEA16B5ACF15D1293E48181C68DFBAFCD803,
- UnityUtil_RunOnMainThread_mABF8141C1DCFB4CA8DF24451B65F5435294B27B5,
- UnityUtil_GetWaitForSeconds_mB62D3D0EEC46AEB7849CF34DC0AC97962EE0C231,
- UnityUtil_Start_m9A05D9A4FADF3C331170E85EFC8F27B922186248,
- NULL,
- NULL,
- UnityUtil_PcPlatform_m6C26A9452CDF2A3DED239242E5618999880407C7,
- UnityUtil_DelayedCoroutine_m2157CDC5CC835BDE12352016CB82A25C6634B632,
- UnityUtil_Update_m5CFB1587D42E5A854FBB56F5985DDAFB30A3D3F4,
- UnityUtil_AddPauseListener_mCA2B86FDD744EA10AEFA4A67DEBBFF36CEC45BAF,
- UnityUtil_OnApplicationPause_m3325D8693C79C8F4D9CE2C9DA39443D55D07D3F7,
- UnityUtil_IsClassOrSubclass_mAF60230AC46A684686AD3A7770CB08D3536E973A,
- UnityUtil__ctor_mEB92A76AB1B9C942211165A08FCA4E9533E06288,
- UnityUtil__cctor_mD87D721A40C447597EA6A2E5750381AAC8E8990E,
- U3CDelayedCoroutineU3Ed__48__ctor_mDE418D0BD65328F25766EB4DA1477DCCE841D88E,
- U3CDelayedCoroutineU3Ed__48_System_IDisposable_Dispose_m855222B8EDE19C80A1025598E59BC99B6C058540,
- U3CDelayedCoroutineU3Ed__48_MoveNext_mB3801F6D60691ED8F0921767A84068E8C3B323F3,
- U3CDelayedCoroutineU3Ed__48_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m3B259068ECF9C87736D21DEBDC7465E8B2A90D37,
- U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_Reset_mA7A39D9903DC70DA5DB697EFF9D6D207EF4C5BF4,
- U3CDelayedCoroutineU3Ed__48_System_Collections_IEnumerator_get_Current_m2A61E2B47B3F5CB1508DEBE50D585441AD6EF7A4,
- NULL,
- IapCoreInitializeCallback_Register_m15649B35E0B38B36617AF6B510BBB8CC37BD4B3E,
- IapCoreInitializeCallback_Initialize_mFA2269B6DE0CD38655A57455457747CFF5EC8D9A,
- IapCoreInitializeCallback_CacheInitializedEnvironment_m120A82DCA5B60A92819D8CA908E63BE219703417,
- IapCoreInitializeCallback_GetCurrentEnvironment_m067A99A22E9AFA796E3A033A347F746BC3177A64,
- IapCoreInitializeCallback_InitializeTelemetryComponents_m0FF7204282A99A54A50CC4C691BCDF373ECBF39D,
- IapCoreInitializeCallback__ctor_m6E44A3E7FFD242CBE0873F9E2C9DA1CB1240CAD5,
- U3CU3Ec__DisplayClass2_0__ctor_mD26B7CD05EAC67AEBA106C9BEA1F86810C737123,
- U3CU3Ec__DisplayClass2_0_U3CInitializeU3Eb__0_m8EC8D03E9F215419C12C002864E69EEDCF4913E6,
- GooglePurchaseBuilder__ctor_m6C1B7226BD1D12FD00A794B018D35E8BD543577D,
- GooglePurchaseBuilder_BuildPurchases_mCBFBC50607A0B39F0A76BDF565745FABE1D69D0C,
- GooglePurchaseBuilder_LogWarningForException_mBB4B675CA121EE06A50A6CA1A656E861ED13D5F8,
- GooglePurchaseBuilder_BuildPurchase_m77518408286891FC35D2969E1930542E67EAC9A2,
- GooglePurchaseBuilder_TryFindAllSkuDetails_m97BACAB34C63D99265895B07F1EAA156A1372066,
- U3CU3Ec__DisplayClass6_0__ctor_m81FD27417D227650D3FC61A353728EC311F5AF85,
- U3CU3Ec__DisplayClass6_0_U3CTryFindAllSkuDetailsU3Eb__0_m06177FDD20AF3974C5512277CCE8AC3D764DF009,
- U3CU3Ec__DisplayClass6_1__ctor_m56696465C1EDEE255F035976B53D68B54593DD18,
- U3CU3Ec__DisplayClass6_1_U3CTryFindAllSkuDetailsU3Eb__1_m8B9DF3FDBAF6F898611AB9CCD99B8C7921720C70,
- GoogleReceiptEncoder_EncodeReceipt_m17FC37EB777C0CD19B0A1345C320C17F030911D8,
- SkuDetailsConverter_ConvertOnQuerySkuDetailsResponse_m5F7D519F81EB07B3B3CDA466DE32AE8D128EEEF8,
- SkuDetailsConverter_ToProductDescription_mFEF5C82FAF0E5B727EAAB8E7A8F2C37AF25B6C0A,
- SkuDetailsConverter_BuildProductDescription_m17409FADBDD74BB66CC527C53CF84AB0D1C34218,
- SkuDetailsConverter__ctor_mC285D9E06AD5329C3FE35C3680F97402B974599D,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- AndroidJavaObjectExtensions_Enumerate_m8F0C46B6B35D61007DDD67D39C5ECD8A955ADA92,
- NULL,
- NULL,
- NULL,
- NULL,
- GoogleBillingClient_GetSkuDetailsParamClass_m23B9C69DDF3CE5E6473D8D651D3DDA07151C2185,
- GoogleBillingClient_GetBillingFlowParamClass_m58D8DA6228AFAD52D99ECA73F12DCA7F43FD7007,
- GoogleBillingClient_GetSubscriptionUpdateParamClass_mA43B88A77C88EFB159589EB987A8336571E789B5,
- GoogleBillingClient_GetConsumeParamsClass_m58C66A4B4CA41C79D27E3D1A9B5A1472FDB08E85,
- GoogleBillingClient_GetAcknowledgePurchaseParamsClass_m01201653BC18C4E4F35BFD3936E0DB688F734AA9,
- GoogleBillingClient_GetBillingClientClass_m1E14F996196BF4138635CAB42D07135D2D830887,
- GoogleBillingClient__ctor_m8F30F078CA3B9AAD8D034AFFCF711EED39947B3C,
- GoogleBillingClient_StartConnection_mA670096A33014C3C4D0F6D9D600000F16B725287,
- GoogleBillingClient_GetConnectionState_m83E5EDB00BC624DD2E22E0158341489A6B9E54F9,
- GoogleBillingClient_QueryPurchasesAsync_mC3B0E449DD7C822BEC42FAAFF66D4B8EB0796158,
- GoogleBillingClient_QuerySkuDetailsAsync_m698A3D0AA846F93955C869F7842F63594DBFCF7F,
- GoogleBillingClient_LaunchBillingFlow_mC4415F98D2442C74991C040DABF879219F0A0319,
- GoogleBillingClient_MakeBillingFlowParams_mB97F07BB18F188942C5FEE9242A8C13F74C28037,
- GoogleBillingClient_BuildSubscriptionUpdateParams_m97A7A6F6915CCB261135B1F72679A677CB6F9033,
- GoogleBillingClient_SetObfuscatedProfileIdIfNeeded_m4892A481DA1DE9B548ED540F581A95CF0A917E9E,
- GoogleBillingClient_SetObfuscatedAccountIdIfNeeded_m8F0E529640262D3F00CA1497A7E11933BCE3C2C8,
- GoogleBillingClient_ConsumeAsync_m20CCB9AB464691E6DAE77D0C0B6011AC2554FCDD,
- GoogleBillingClient_AcknowledgePurchase_m019D45043AC9BD3B1FC8B20187AA25A78188F9CD,
- GoogleBillingResult_get_responseCode_m41C985D833239D91A30D60B5E0F78F63D40FCEDD,
- GoogleBillingResult_get_debugMessage_mCBC8D3C771085DE43CFBF8A67CC21FDE52684CEA,
- GoogleBillingResult__ctor_mA4E4F80D1EF645AC6E72981FA7F7E141F6601377,
- GoogleBillingStrings_getWarningMessageMoreThanOneSkuFound_m7537B087FDB054238E02B64C5998D2FD4D4C3FD1,
- GooglePurchase_get_isAcknowledged_m0C8DDEF734DE02C7F40F0E2818A0E0834FFC2C33,
- GooglePurchase_get_purchaseState_m25B05A607B60519FBA52843CAEF8FD8FEE0752A9,
- GooglePurchase_get_skus_mFB5A449AA1EE9433CFE668CDE90A55B7FDEB81A4,
- GooglePurchase_get_receipt_mB7E801F89576DA092E7A95DC41037E0FDC9E026A,
- GooglePurchase_get_signature_m72063440F5794869DB8A4DE3F56A73F4444786AC,
- GooglePurchase_get_originalJson_m6708011BD0AE03F2280CD86A0F07875EA578D5BA,
- GooglePurchase_get_purchaseToken_mEAE44EFF7955BD8A92147AC6A5B8A70A6541EDE7,
- GooglePurchase_get_sku_m58FFD30FBFB7CD671E343E2C61CAE80582C9EB94,
- GooglePurchase__ctor_m2EE677158EEE27268D0BABF905F4FC1E56E1063E,
- GooglePurchase_IsAcknowledged_mE2F920ABCC295EA6F298E0AA74B4C3097C58F889,
- GooglePurchase_IsPurchased_m0091EC5B71B28E403588B26FD73EC2C0A19D36D1,
- GooglePurchase_IsPending_mB50CFCB4540C15FEEE6853C95CE3155C3D4C9E66,
- U3CU3Ec__cctor_m3B5205D71CD68DEE8540207194DC751BCC9794B5,
- U3CU3Ec__ctor_m696F4E3E542DD5C7ADEFA41805FB149F796B836A,
- U3CU3Ec_U3C_ctorU3Eb__26_0_m7EE2EB1174F22732D41A2FB17B869FAAACFE612E,
- GooglePurchaseStateEnum_GetPurchaseStateJavaObject_mBEFD71488906CB2105D270DACD285AFFE95C89E1,
- GooglePurchaseStateEnum_Purchased_m3791A59F7885C918735F78345549C35C39E661F0,
- GooglePurchaseStateEnum_Pending_m419C6870D3097EADAF00FF0D6FF5C486BFB13171,
- GooglePurchaseStateEnumProvider_Purchased_m367280B3C4A0D25DE27159A38A1F7E8E10835F40,
- GooglePurchaseStateEnumProvider_Pending_mDF35C16DB0772027E6013DFBA15969B13E3C0B75,
- GooglePurchaseStateEnumProvider__ctor_mBE9E27B95EC11A8AD90B102BF49D0DD6CCA80780,
- GoogleSkuTypeEnum_InApp_m3D8DF28E36C52A558A171EBE49300FE42E73C0B9,
- GoogleSkuTypeEnum_Sub_m67C8DA9DA489930486A1A308049B9C52C2C071C3,
- ProductDescriptionQuery__ctor_m231111ED1963D9EDF6B55DC53F1D32EB695BD3CF,
- U3CPrivateImplementationDetailsU3E_ComputeStringHash_m88B6F9ABC0B2644814DC58FB9602948572F7E971,
- };
- static const int32_t s_InvokerIndices[845] =
- {
- 6399,
- 5136,
- 5226,
- 5136,
- 4623,
- 4623,
- 6399,
- 5226,
- 6399,
- 5226,
- 5226,
- 2939,
- 2939,
- 9215,
- 9215,
- 9628,
- 9628,
- 6399,
- 6269,
- 4623,
- 4623,
- 4623,
- 3762,
- 3762,
- 5226,
- 6399,
- 9661,
- 6399,
- 4623,
- 2939,
- 1678,
- 4623,
- 1196,
- 6399,
- 3762,
- 6399,
- 5226,
- 5226,
- 6399,
- 6399,
- 5226,
- 6399,
- 6399,
- 5226,
- 6269,
- 5226,
- 6269,
- 5226,
- 6054,
- 5008,
- 6399,
- 26,
- 6399,
- 6399,
- 6399,
- 6399,
- 6179,
- 5226,
- 5226,
- 6399,
- 5198,
- 6399,
- 5198,
- 1678,
- 1678,
- 5226,
- 1672,
- 1678,
- 5226,
- 4623,
- 5226,
- 6399,
- 6399,
- 6399,
- 6399,
- 5226,
- 6399,
- 6399,
- 5226,
- 2939,
- 1678,
- 1672,
- 1191,
- 1309,
- 3762,
- 9472,
- 5226,
- 3762,
- 2939,
- 1672,
- 2939,
- 6399,
- 5226,
- 2939,
- 6269,
- 4623,
- 9003,
- 9661,
- 6399,
- 4623,
- 6399,
- 2939,
- 6399,
- 6399,
- 5226,
- 0,
- 0,
- 0,
- 0,
- 6399,
- 5226,
- 5226,
- 5226,
- 6399,
- 5226,
- 5226,
- 5226,
- 2939,
- 5226,
- 5226,
- 2939,
- 380,
- 5226,
- 2939,
- 2939,
- 2939,
- 2939,
- 5226,
- 5226,
- 2939,
- 2939,
- 1678,
- 5226,
- 5226,
- 3762,
- 6179,
- 5226,
- 5226,
- 5226,
- 2939,
- 3762,
- 6399,
- 6399,
- 5226,
- 1678,
- 2939,
- 6399,
- 6399,
- 19,
- 5198,
- 6399,
- 1678,
- 1672,
- 5198,
- 1678,
- 1672,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 243,
- 2939,
- 2939,
- 2939,
- 1678,
- 1678,
- 1894,
- 3762,
- 4623,
- 2939,
- 2939,
- 1678,
- 9661,
- 6399,
- 3679,
- 3762,
- 4623,
- 3762,
- 4623,
- 6399,
- 5226,
- 6399,
- 6399,
- 5226,
- 6399,
- 5226,
- 6399,
- 2939,
- 6269,
- 6179,
- 9003,
- 6399,
- 9661,
- 6399,
- 4623,
- 3632,
- 4605,
- 4605,
- 1678,
- 2939,
- 6399,
- 3762,
- 6399,
- 5226,
- 6399,
- 5198,
- 2939,
- 6179,
- 6179,
- 1196,
- 5226,
- 5198,
- 6399,
- 5226,
- 5226,
- 5226,
- 1678,
- 5226,
- 1678,
- 5226,
- 6399,
- 6399,
- 6399,
- 6399,
- 152,
- 5226,
- 5226,
- 6179,
- 6179,
- 2939,
- 2939,
- 5136,
- 1196,
- 5226,
- 3762,
- 3762,
- 4377,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 651,
- 5226,
- 5226,
- 5226,
- 5226,
- 5226,
- 5198,
- 649,
- 2939,
- 5226,
- 6399,
- 5226,
- 4623,
- 4623,
- 8517,
- 5226,
- 9628,
- 9628,
- 5226,
- 5226,
- 2939,
- 9661,
- 6399,
- 3762,
- 3762,
- 6399,
- 6399,
- 6399,
- 5226,
- 6399,
- 4623,
- 4623,
- 5226,
- 5226,
- 2939,
- 1678,
- 5226,
- 9003,
- 6399,
- 2939,
- 5226,
- 5226,
- 1196,
- 5226,
- 2927,
- 5226,
- 5226,
- 2701,
- 6399,
- 2315,
- 3762,
- 9215,
- 6179,
- 6399,
- 5226,
- 6399,
- 3762,
- 8517,
- 5226,
- 8517,
- 9215,
- 9215,
- 9215,
- 9215,
- 9215,
- 9215,
- 9215,
- 9215,
- 2939,
- 6269,
- 2727,
- 5226,
- 1678,
- 5226,
- 5226,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 6399,
- 2939,
- 6399,
- 0,
- 0,
- 0,
- 0,
- 9628,
- 6399,
- 5226,
- 1678,
- 2939,
- 2939,
- 2439,
- 5226,
- 2939,
- 2939,
- 9215,
- 5226,
- 5226,
- 5226,
- 2939,
- 5226,
- 2939,
- 8751,
- 6399,
- 6399,
- 2439,
- 2439,
- 6399,
- 2439,
- 9215,
- 9628,
- 9215,
- 9661,
- 6399,
- 3762,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 4623,
- 6399,
- 2939,
- 2939,
- 5226,
- 6269,
- 6053,
- 5226,
- 3762,
- 2315,
- 8517,
- 9215,
- 5226,
- 5226,
- 6399,
- 5226,
- 5226,
- 5226,
- 5226,
- 1196,
- 1894,
- 5226,
- 6399,
- 5226,
- 6399,
- 6755,
- 378,
- 648,
- 4623,
- 8267,
- 710,
- 8267,
- 8267,
- 1674,
- 9661,
- 6399,
- 2136,
- 4599,
- 4599,
- 6399,
- 3762,
- 6399,
- 6399,
- 6399,
- 6399,
- 1678,
- 5226,
- 2939,
- 5226,
- 2939,
- 6399,
- 6399,
- 6399,
- 6399,
- 0,
- 0,
- 0,
- 6399,
- 5226,
- 5226,
- 5226,
- 5226,
- 2939,
- 2939,
- 5226,
- 5226,
- 1678,
- 5226,
- 2939,
- 4377,
- 5226,
- 5226,
- 2939,
- 5226,
- 2939,
- 6399,
- 6399,
- 6399,
- 6399,
- 1007,
- 1007,
- 4623,
- 6399,
- 6399,
- 6269,
- 5226,
- 5226,
- 5226,
- 2939,
- 2939,
- 2939,
- 2939,
- 0,
- 6399,
- 1678,
- 6399,
- 2438,
- 6399,
- 2438,
- 6399,
- 6399,
- 6399,
- 0,
- 418,
- 6399,
- 6269,
- 5226,
- 5226,
- 5226,
- 1633,
- 5226,
- 4623,
- 4623,
- 6399,
- 6399,
- 5198,
- 6399,
- 6179,
- 6399,
- 9661,
- 6399,
- 4623,
- 0,
- 0,
- 5198,
- 5198,
- 5226,
- 5226,
- 6399,
- 6399,
- 6294,
- 5198,
- 6399,
- 6399,
- 6399,
- 1678,
- 5226,
- 2727,
- 1678,
- 6399,
- 6399,
- 6399,
- 6399,
- 6269,
- 6269,
- 9215,
- 6399,
- 9661,
- 6399,
- 4623,
- 6399,
- 6399,
- 6269,
- 9661,
- 9472,
- 9215,
- 9215,
- 9628,
- 6399,
- 0,
- 6269,
- 6399,
- 6269,
- 5226,
- 6269,
- 5226,
- 6269,
- 5226,
- 6269,
- 5226,
- 6269,
- 5226,
- 231,
- 6238,
- 5198,
- 6238,
- 5198,
- 6179,
- 5136,
- 9628,
- 9212,
- 6399,
- 6269,
- 6269,
- 6269,
- 5226,
- 7863,
- 5226,
- 2315,
- 6269,
- 4623,
- 4623,
- 6269,
- 6269,
- 6269,
- 9661,
- 6269,
- 6269,
- 2939,
- 5226,
- 6238,
- 5198,
- 5198,
- 9215,
- 1551,
- 2939,
- 6269,
- 4623,
- 2315,
- 4623,
- 4623,
- 9661,
- 6399,
- 2136,
- 4623,
- 2939,
- 217,
- 5226,
- 6238,
- 6238,
- 6238,
- 6197,
- 2028,
- 2355,
- 4759,
- 2034,
- 4759,
- 4623,
- 6399,
- 5226,
- 6399,
- 6399,
- 6399,
- 5226,
- 6399,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1594,
- 2939,
- 4351,
- 6399,
- 6399,
- 6269,
- 6399,
- 6399,
- 5226,
- 6399,
- 6399,
- 5226,
- 1594,
- 2939,
- 4351,
- 6399,
- 6399,
- 6399,
- 6399,
- 5226,
- 8517,
- 6399,
- 1678,
- 5226,
- 5226,
- 2939,
- 5198,
- 2939,
- 5136,
- 9661,
- 6399,
- 3762,
- 4623,
- 0,
- 6197,
- 6269,
- 6269,
- 6269,
- 6269,
- 6269,
- 6269,
- 6385,
- 6238,
- 6179,
- 6269,
- 6269,
- 6238,
- 6269,
- 6238,
- 6238,
- 6318,
- 6269,
- 4623,
- 2935,
- 5226,
- 4620,
- 6399,
- 0,
- 0,
- 9607,
- 2314,
- 6399,
- 5226,
- 5136,
- 1894,
- 6399,
- 9661,
- 5198,
- 6399,
- 6179,
- 6269,
- 6399,
- 6269,
- 0,
- 9661,
- 4623,
- 9472,
- 9215,
- 8751,
- 6399,
- 6399,
- 6399,
- 2939,
- 4623,
- 5226,
- 4623,
- 8517,
- 6399,
- 4623,
- 6399,
- 3762,
- 7863,
- 4623,
- 9215,
- 9215,
- 6399,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 9215,
- 0,
- 0,
- 0,
- 0,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 9628,
- 1678,
- 5226,
- 6238,
- 2939,
- 1678,
- 1425,
- 1425,
- 8513,
- 4623,
- 4623,
- 2939,
- 2939,
- 6238,
- 6269,
- 5226,
- 9215,
- 6179,
- 6238,
- 6269,
- 6269,
- 6269,
- 6269,
- 6269,
- 6269,
- 2939,
- 6179,
- 6179,
- 6179,
- 9661,
- 6399,
- 4623,
- 9628,
- 9621,
- 9621,
- 6238,
- 6238,
- 6399,
- 9628,
- 9628,
- 1678,
- 9404,
- };
- static const Il2CppTokenIndexMethodTuple s_reversePInvokeIndices[1] =
- {
- { 0x060001A8, 25, (void**)&AppleStoreImpl_MessageCallback_m0AD0DB81744B171D2269DC04000AFDF6A2F41F3C_RuntimeMethod_var, 0 },
- };
- static const Il2CppTokenRangePair s_rgctxIndices[11] =
- {
- { 0x02000092, { 7, 4 } },
- { 0x020000B4, { 22, 4 } },
- { 0x020000B5, { 26, 13 } },
- { 0x020000DF, { 59, 3 } },
- { 0x060001F5, { 0, 7 } },
- { 0x0600027A, { 11, 7 } },
- { 0x0600027B, { 18, 4 } },
- { 0x060002A9, { 39, 6 } },
- { 0x060002C1, { 45, 2 } },
- { 0x060002C2, { 47, 3 } },
- { 0x06000319, { 50, 9 } },
- };
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1_t6C2D0B1FACE8C4F5F2026455C2D5488B36BBA8BF;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1__ctor_mAE5F3E4D8692722804588A0EC466C303E22B5C43;
- extern const uint32_t g_rgctx_Action_2_t6D545D9C2496111A69E57210900DBD6DCA90A81C;
- extern const uint32_t g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329;
- extern const uint32_t g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329;
- extern const Il2CppRGCTXConstrainedData g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329_Object_ToString_mF8AC1EB9D85AB52EC8FD8B8BDD131E855E69673F;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1_U3CStartUIU3Eb__0_m0FD20B072C40466DACA233ED65A83EA4FA57D3CA;
- extern const uint32_t g_rgctx_T_tF0E5376556241229C2F209BC9C825474ED22066D;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass10_0_1_tA587FDEC1C7B71F7B9283720906342AF3B0BCEE5;
- extern const uint32_t g_rgctx_Action_2_tC3178EC44B5E10E9F4CAD71673FA9B1D2054CA88;
- extern const uint32_t g_rgctx_Action_2_Invoke_m69CD1C34939F25CDEB17DA512160163BD8AACFBC;
- extern const uint32_t g_rgctx_IEnumerable_1_tA347B71DFA2D2CEC232135A81ED8BE2AFF1F552C;
- extern const uint32_t g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B;
- extern const uint32_t g_rgctx_Func_2_tCAB5F0E217111EFDCD8F327A06E23291D47E05DE;
- extern const uint32_t g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B;
- extern const uint32_t g_rgctx_U3CU3Ec__0_1_U3CNonNullU3Eb__0_0_mFF50EED00C886CDC56E9BAAFF670934CD9B87276;
- extern const uint32_t g_rgctx_Func_2__ctor_m784DE4ABC930E577E3E9CFECE6A43A76DA203D5C;
- extern const uint32_t g_rgctx_Enumerable_Where_TisT_tADFFF9E0DDFEA24EBCEC42C88E87CE11CB17A909_m01ACAA8CCE04C09E6354C67FEBC5595554A962C1;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_tB63C9D9A00172227F1C8F023C92E85F1781B1773;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m5DD49F0E9F1AE9A720587589F0ECBA862145632C;
- extern const uint32_t g_rgctx_IEnumerable_1_t59C74ED1BEC60719E5181108819E590E85691379;
- extern const uint32_t g_rgctx_Action_1_t62D17DEF5A7425A21547401F1C0584E3D2C6E239;
- extern const uint32_t g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94;
- extern const uint32_t g_rgctx_U3CU3Ec__0_1__ctor_m02FF12BD4C6F0E399DF188125F0E6F3EEBF1FC39;
- extern const uint32_t g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94;
- extern const uint32_t g_rgctx_T_tF096763005B16CEE3E735E19298272E6AAEB2F88;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_t56C655A750B42777213D2C952C4D046B989E2E95;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_U3CU3Em__Finally1_mD9AE5F961AFDBFFFA0D927BC3FBA5A7C80974F77;
- extern const uint32_t g_rgctx_TException_t857129A1BAD14B1E698AE0FCE7FDECF2E8BEDE2C;
- extern const uint32_t g_rgctx_IEnumerable_1_t2EEE2DBFACB4318A09644B733B86C86FEA0B12C3;
- extern const uint32_t g_rgctx_IEnumerable_1_GetEnumerator_m664D37AC5DC435C88F925B73FE445B5CAD643EBB;
- extern const uint32_t g_rgctx_IEnumerator_1_t1C4C366CABD07C95E46BD0921F22BE27B0BF6C2D;
- extern const uint32_t g_rgctx_Action_1_tA2016F5800BD37C107E94C87B6BBF7055CF765A8;
- extern const uint32_t g_rgctx_Action_1_Invoke_m0E3D4485099E5FDC34849099D27D02BADB97D27E;
- extern const uint32_t g_rgctx_IEnumerator_1_get_Current_m2D5DE08047EA0C7ED7E4AA1183589BDED2B1E0BE;
- extern const uint32_t g_rgctx_T_t7D7CA3DD4B8A48902CFCA231D981426220586D04;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_IDisposable_Dispose_m235D4A35554B0800640D229B518F6CDF3FC49E53;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m291ABD4C970C5394DE52D9757D019EB57C9DF34E;
- extern const uint32_t g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m7BFA958E2A675B8ADDFD684B5F0F5F0CEA0D2DFE;
- extern const uint32_t g_rgctx_List_1_t0B07DBB79FEBEA3D44A69AFE65D250A10057CA85;
- extern const uint32_t g_rgctx_List_1__ctor_m5765185F1E21209FAE279255695C17297335C8A0;
- extern const uint32_t g_rgctx_T_t411ADE7935EECD7D5D76D2E2B0C57C526E2A3ED6;
- extern const uint32_t g_rgctx_List_1_Add_mEE8298B5F87422E1C189FF26F3521B1246281227;
- extern const uint32_t g_rgctx_List_1_ToArray_m52644C1CE8E58210348E4F0363128CCFB75E6D6F;
- extern const uint32_t g_rgctx_TU5BU5D_t11E6E5BF38FBEEFEBDA3C721A357D6F9E9BC9A47;
- extern const uint32_t g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023;
- extern const uint32_t g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023;
- extern const uint32_t g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC;
- extern const uint32_t g_rgctx_GameObject_GetComponent_TisT_t3710AEC49D7C30871CD092E5D6BE7955C935DECC_mF35FFB33A85C9552019C25E8A58C2C128EC6BA45;
- extern const uint32_t g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1_t965DC45120EA151D97BBFCE779C6610B47675356;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1__ctor_mD4F0DE464C1FF345D6DF12CCCC900E92ABCC4DE2;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1_U3CEnumerateU3Eb__0_m6573108638E276F815592CF42A5E2414457ACF6C;
- extern const uint32_t g_rgctx_Func_2_t9A3E2F8B603DB3B45DC3B634E534DD1F591FBBAB;
- extern const uint32_t g_rgctx_Func_2__ctor_m530FB3CCC793D0A3E5103D3406C86F3C7EC2A1D7;
- extern const uint32_t g_rgctx_Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_m2A0723A330E491A4E4ACEAB678975FEBBE7F8369;
- extern const uint32_t g_rgctx_IEnumerable_1_t3D4B4ADA12F79FDB626E6773CE03B40CC60DAE22;
- extern const uint32_t g_rgctx_Enumerable_ToList_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_mF93328171AA5CD2DB36D4E30497C71B4187B38B3;
- extern const uint32_t g_rgctx_List_1_tB600084DC3DDAFB4ACADB29D2E11BCBDCF9F62A1;
- extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass0_0_1_t41FFF3955E3A120578FE2852DF71A0F5A447C363;
- extern const uint32_t g_rgctx_AndroidJavaObject_Call_TisT_tD816ADB4922245E2A12AB8E06C4633DBFBA60475_mD8B0D878B493434E8DFB28D3BC73A613FF0D9745;
- extern const uint32_t g_rgctx_T_tD816ADB4922245E2A12AB8E06C4633DBFBA60475;
- static const Il2CppRGCTXDefinition s_rgctxValues[62] =
- {
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1_t6C2D0B1FACE8C4F5F2026455C2D5488B36BBA8BF },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1__ctor_mAE5F3E4D8692722804588A0EC466C303E22B5C43 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_2_t6D545D9C2496111A69E57210900DBD6DCA90A81C },
- { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329 },
- { (Il2CppRGCTXDataType)5, (const void *)&g_rgctx_T_t935E4F28E6479CFC144BDA6271B3BDAAC84C8329_Object_ToString_mF8AC1EB9D85AB52EC8FD8B8BDD131E855E69673F },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1_U3CStartUIU3Eb__0_m0FD20B072C40466DACA233ED65A83EA4FA57D3CA },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF0E5376556241229C2F209BC9C825474ED22066D },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass10_0_1_tA587FDEC1C7B71F7B9283720906342AF3B0BCEE5 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_2_tC3178EC44B5E10E9F4CAD71673FA9B1D2054CA88 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Action_2_Invoke_m69CD1C34939F25CDEB17DA512160163BD8AACFBC },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_tA347B71DFA2D2CEC232135A81ED8BE2AFF1F552C },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Func_2_tCAB5F0E217111EFDCD8F327A06E23291D47E05DE },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_t09BE8D46A4CE3194164779A68915AFB0D198305B },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__0_1_U3CNonNullU3Eb__0_0_mFF50EED00C886CDC56E9BAAFF670934CD9B87276 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Func_2__ctor_m784DE4ABC930E577E3E9CFECE6A43A76DA203D5C },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerable_Where_TisT_tADFFF9E0DDFEA24EBCEC42C88E87CE11CB17A909_m01ACAA8CCE04C09E6354C67FEBC5595554A962C1 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_tB63C9D9A00172227F1C8F023C92E85F1781B1773 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m5DD49F0E9F1AE9A720587589F0ECBA862145632C },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_t59C74ED1BEC60719E5181108819E590E85691379 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_1_t62D17DEF5A7425A21547401F1C0584E3D2C6E239 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__0_1__ctor_m02FF12BD4C6F0E399DF188125F0E6F3EEBF1FC39 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__0_1_tD3CC16D982C1516886E9BC4BAE200668A5176E94 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tF096763005B16CEE3E735E19298272E6AAEB2F88 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_t56C655A750B42777213D2C952C4D046B989E2E95 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_U3CU3Em__Finally1_mD9AE5F961AFDBFFFA0D927BC3FBA5A7C80974F77 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TException_t857129A1BAD14B1E698AE0FCE7FDECF2E8BEDE2C },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_t2EEE2DBFACB4318A09644B733B86C86FEA0B12C3 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_IEnumerable_1_GetEnumerator_m664D37AC5DC435C88F925B73FE445B5CAD643EBB },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerator_1_t1C4C366CABD07C95E46BD0921F22BE27B0BF6C2D },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Action_1_tA2016F5800BD37C107E94C87B6BBF7055CF765A8 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Action_1_Invoke_m0E3D4485099E5FDC34849099D27D02BADB97D27E },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_IEnumerator_1_get_Current_m2D5DE08047EA0C7ED7E4AA1183589BDED2B1E0BE },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t7D7CA3DD4B8A48902CFCA231D981426220586D04 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_IDisposable_Dispose_m235D4A35554B0800640D229B518F6CDF3FC49E53 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2__ctor_m291ABD4C970C5394DE52D9757D019EB57C9DF34E },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CIgnoreExceptionsU3Ed__1_2_System_Collections_Generic_IEnumerableU3CTU3E_GetEnumerator_m7BFA958E2A675B8ADDFD684B5F0F5F0CEA0D2DFE },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_t0B07DBB79FEBEA3D44A69AFE65D250A10057CA85 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1__ctor_m5765185F1E21209FAE279255695C17297335C8A0 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t411ADE7935EECD7D5D76D2E2B0C57C526E2A3ED6 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_Add_mEE8298B5F87422E1C189FF26F3521B1246281227 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_List_1_ToArray_m52644C1CE8E58210348E4F0363128CCFB75E6D6F },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_t11E6E5BF38FBEEFEBDA3C721A357D6F9E9BC9A47 },
- { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tABD961BBBF5CD9E9D42E0541A1EB161FC687C023 },
- { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_GameObject_GetComponent_TisT_t3710AEC49D7C30871CD092E5D6BE7955C935DECC_mF35FFB33A85C9552019C25E8A58C2C128EC6BA45 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t3710AEC49D7C30871CD092E5D6BE7955C935DECC },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1_t965DC45120EA151D97BBFCE779C6610B47675356 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1__ctor_mD4F0DE464C1FF345D6DF12CCCC900E92ABCC4DE2 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1_U3CEnumerateU3Eb__0_m6573108638E276F815592CF42A5E2414457ACF6C },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Func_2_t9A3E2F8B603DB3B45DC3B634E534DD1F591FBBAB },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Func_2__ctor_m530FB3CCC793D0A3E5103D3406C86F3C7EC2A1D7 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerable_Select_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_m2A0723A330E491A4E4ACEAB678975FEBBE7F8369 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_IEnumerable_1_t3D4B4ADA12F79FDB626E6773CE03B40CC60DAE22 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerable_ToList_TisT_tD21E99F4879D56C3A9EDE36CCD3AFFD867E62D5E_mF93328171AA5CD2DB36D4E30497C71B4187B38B3 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_List_1_tB600084DC3DDAFB4ACADB29D2E11BCBDCF9F62A1 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_U3CU3Ec__DisplayClass0_0_1_t41FFF3955E3A120578FE2852DF71A0F5A447C363 },
- { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_AndroidJavaObject_Call_TisT_tD816ADB4922245E2A12AB8E06C4633DBFBA60475_mD8B0D878B493434E8DFB28D3BC73A613FF0D9745 },
- { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tD816ADB4922245E2A12AB8E06C4633DBFBA60475 },
- };
- IL2CPP_EXTERN_C const Il2CppCodeGenModule g_UnityEngine_Purchasing_Stores_CodeGenModule;
- const Il2CppCodeGenModule g_UnityEngine_Purchasing_Stores_CodeGenModule =
- {
- "UnityEngine.Purchasing.Stores.dll",
- 845,
- s_methodPointers,
- 0,
- NULL,
- s_InvokerIndices,
- 1,
- s_reversePInvokeIndices,
- 11,
- s_rgctxIndices,
- 62,
- s_rgctxValues,
- NULL,
- NULL,
- NULL,
- NULL,
- NULL,
- };
|