mscorlib__24.cpp 429 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct VirtualActionInvoker0
  9. {
  10. typedef void (*Action)(void*, const RuntimeMethod*);
  11. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  12. {
  13. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  14. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  15. }
  16. };
  17. template <typename T1>
  18. struct VirtualActionInvoker1
  19. {
  20. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  21. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  25. }
  26. };
  27. template <typename T1, typename T2>
  28. struct VirtualActionInvoker2
  29. {
  30. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  31. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  32. {
  33. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  34. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  35. }
  36. };
  37. template <typename T1, typename T2, typename T3, typename T4>
  38. struct VirtualActionInvoker4
  39. {
  40. typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
  41. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
  42. {
  43. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  44. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
  45. }
  46. };
  47. template <typename R>
  48. struct VirtualFuncInvoker0
  49. {
  50. typedef R (*Func)(void*, const RuntimeMethod*);
  51. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  52. {
  53. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  54. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  55. }
  56. };
  57. template <typename R, typename T1>
  58. struct VirtualFuncInvoker1
  59. {
  60. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  61. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  62. {
  63. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  64. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  65. }
  66. };
  67. template <typename R, typename T1, typename T2>
  68. struct VirtualFuncInvoker2
  69. {
  70. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  71. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  72. {
  73. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  74. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  75. }
  76. };
  77. struct InterfaceActionInvoker0
  78. {
  79. typedef void (*Action)(void*, const RuntimeMethod*);
  80. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  81. {
  82. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  83. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  84. }
  85. };
  86. template <typename T1>
  87. struct InterfaceActionInvoker1
  88. {
  89. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  90. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  91. {
  92. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  93. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  94. }
  95. };
  96. template <typename T1, typename T2>
  97. struct InterfaceActionInvoker2
  98. {
  99. typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
  100. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
  101. {
  102. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  103. ((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  104. }
  105. };
  106. template <typename R>
  107. struct InterfaceFuncInvoker0
  108. {
  109. typedef R (*Func)(void*, const RuntimeMethod*);
  110. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  111. {
  112. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  113. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  114. }
  115. };
  116. template <typename R, typename T1>
  117. struct InterfaceFuncInvoker1
  118. {
  119. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  120. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
  121. {
  122. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  123. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  124. }
  125. };
  126. template <typename R, typename T1, typename T2>
  127. struct InterfaceFuncInvoker2
  128. {
  129. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  130. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2)
  131. {
  132. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  133. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  134. }
  135. };
  136. struct ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605;
  137. struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858;
  138. struct Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588;
  139. struct EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8;
  140. struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2;
  141. struct EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A;
  142. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  143. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  144. struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8;
  145. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  146. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  147. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  148. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  149. struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
  150. struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
  151. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  152. struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
  153. struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
  154. struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A;
  155. struct ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888;
  156. struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
  157. struct ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275;
  158. struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999;
  159. struct CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465;
  160. struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25;
  161. struct Exception_t;
  162. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
  163. struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
  164. struct IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD;
  165. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  166. struct IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16;
  167. struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
  168. struct IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1;
  169. struct IFormatterConverter_t726606DAC82C384B08C82471313C340968DDB609;
  170. struct IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139;
  171. struct IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D;
  172. struct IPinnable_tA3989EA495C0118966BAAF8848C0009947BB49C0;
  173. struct InternalStringComparer_t04B2D1768998E940BC4619579B7044102591E38B;
  174. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  175. struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E;
  176. struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
  177. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
  178. struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A;
  179. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  180. struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7;
  181. struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
  182. struct SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540;
  183. struct String_t;
  184. struct StringBuilder_t;
  185. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295;
  186. struct Type_t;
  187. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  188. struct ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA;
  189. struct IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187;
  190. struct ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7;
  191. struct HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061;
  192. struct KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77;
  193. struct SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5;
  194. struct ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F;
  195. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  196. IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
  197. IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var;
  198. IL2CPP_EXTERN_C RuntimeClass* ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var;
  199. IL2CPP_EXTERN_C RuntimeClass* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var;
  200. IL2CPP_EXTERN_C RuntimeClass* ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_il2cpp_TypeInfo_var;
  201. IL2CPP_EXTERN_C RuntimeClass* ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275_il2cpp_TypeInfo_var;
  202. IL2CPP_EXTERN_C RuntimeClass* CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var;
  203. IL2CPP_EXTERN_C RuntimeClass* CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465_il2cpp_TypeInfo_var;
  204. IL2CPP_EXTERN_C RuntimeClass* DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var;
  205. IL2CPP_EXTERN_C RuntimeClass* Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var;
  206. IL2CPP_EXTERN_C RuntimeClass* HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var;
  207. IL2CPP_EXTERN_C RuntimeClass* HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var;
  208. IL2CPP_EXTERN_C RuntimeClass* Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var;
  209. IL2CPP_EXTERN_C RuntimeClass* ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var;
  210. IL2CPP_EXTERN_C RuntimeClass* IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var;
  211. IL2CPP_EXTERN_C RuntimeClass* IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var;
  212. IL2CPP_EXTERN_C RuntimeClass* IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var;
  213. IL2CPP_EXTERN_C RuntimeClass* IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var;
  214. IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
  215. IL2CPP_EXTERN_C RuntimeClass* IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var;
  216. IL2CPP_EXTERN_C RuntimeClass* IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_il2cpp_TypeInfo_var;
  217. IL2CPP_EXTERN_C RuntimeClass* IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187_il2cpp_TypeInfo_var;
  218. IL2CPP_EXTERN_C RuntimeClass* IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var;
  219. IL2CPP_EXTERN_C RuntimeClass* IPinnable_tA3989EA495C0118966BAAF8848C0009947BB49C0_il2cpp_TypeInfo_var;
  220. IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
  221. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  222. IL2CPP_EXTERN_C RuntimeClass* KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77_il2cpp_TypeInfo_var;
  223. IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
  224. IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
  225. IL2CPP_EXTERN_C RuntimeClass* PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var;
  226. IL2CPP_EXTERN_C RuntimeClass* ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7_il2cpp_TypeInfo_var;
  227. IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
  228. IL2CPP_EXTERN_C RuntimeClass* SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var;
  229. IL2CPP_EXTERN_C RuntimeClass* SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var;
  230. IL2CPP_EXTERN_C RuntimeClass* SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5_il2cpp_TypeInfo_var;
  231. IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  232. IL2CPP_EXTERN_C RuntimeClass* ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F_il2cpp_TypeInfo_var;
  233. IL2CPP_EXTERN_C RuntimeClass* bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var;
  234. IL2CPP_EXTERN_C String_t* _stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9;
  235. IL2CPP_EXTERN_C String_t* _stringLiteral07624473F417C06C74D59C64840A1532FCE2C626;
  236. IL2CPP_EXTERN_C String_t* _stringLiteral0FB28D215F1C062EDB535A58AD8714B5A5FE4064;
  237. IL2CPP_EXTERN_C String_t* _stringLiteral11F27A23993F7FC4801D0240B7C41D835B44B745;
  238. IL2CPP_EXTERN_C String_t* _stringLiteral1275D52763CF050C5A4C759818D60119CC35BD69;
  239. IL2CPP_EXTERN_C String_t* _stringLiteral12B3B315E8F60BA82CD3BA50FEE2FE5C0949B763;
  240. IL2CPP_EXTERN_C String_t* _stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633;
  241. IL2CPP_EXTERN_C String_t* _stringLiteral23A1E49ECE323ABF0A2F834678904E1415CBBB18;
  242. IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
  243. IL2CPP_EXTERN_C String_t* _stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE;
  244. IL2CPP_EXTERN_C String_t* _stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B;
  245. IL2CPP_EXTERN_C String_t* _stringLiteral3EE17D366C57CBF012064BEF57DC6B58C6B46A88;
  246. IL2CPP_EXTERN_C String_t* _stringLiteral457BF4072EA28A68960C6F36D3FB2B96D339A700;
  247. IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
  248. IL2CPP_EXTERN_C String_t* _stringLiteral4D1773CA7AF4AE36C001FBC3E1E5DA5574C041FA;
  249. IL2CPP_EXTERN_C String_t* _stringLiteral539E8D7071DA3C24DE80E9DDA3E12DBCDC283FBB;
  250. IL2CPP_EXTERN_C String_t* _stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4;
  251. IL2CPP_EXTERN_C String_t* _stringLiteral5B9FE05484B470B354696B4F06C3B12F71B5BB4A;
  252. IL2CPP_EXTERN_C String_t* _stringLiteral62EDD94B35AE1C598F9C8060E6F26AD1470D672D;
  253. IL2CPP_EXTERN_C String_t* _stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97;
  254. IL2CPP_EXTERN_C String_t* _stringLiteral6A42FCEEAC1D98507D8329C4992B135D890D96AB;
  255. IL2CPP_EXTERN_C String_t* _stringLiteral71943296949CB7F897DB641231533D430DE14FF8;
  256. IL2CPP_EXTERN_C String_t* _stringLiteral7331C93BE0BC11AF8C588D87CB6B2725FC603354;
  257. IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D;
  258. IL2CPP_EXTERN_C String_t* _stringLiteral77048C04058DC1CDDAE5B38B11B56EFD16467A77;
  259. IL2CPP_EXTERN_C String_t* _stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8;
  260. IL2CPP_EXTERN_C String_t* _stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9;
  261. IL2CPP_EXTERN_C String_t* _stringLiteral8AF22EA5A6A5A696D2456E9227B5745A698E05A8;
  262. IL2CPP_EXTERN_C String_t* _stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5;
  263. IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
  264. IL2CPP_EXTERN_C String_t* _stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085;
  265. IL2CPP_EXTERN_C String_t* _stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1;
  266. IL2CPP_EXTERN_C String_t* _stringLiteralAEE8DD47F29A535762B8579D9E3E69D0D84968BB;
  267. IL2CPP_EXTERN_C String_t* _stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49;
  268. IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
  269. IL2CPP_EXTERN_C String_t* _stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4;
  270. IL2CPP_EXTERN_C String_t* _stringLiteralC17BEC107F953CAF2DF4A462E7EB7B28DCAACE62;
  271. IL2CPP_EXTERN_C String_t* _stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7;
  272. IL2CPP_EXTERN_C String_t* _stringLiteralC5ABE84F2ABF009EBC68D2A32EF8C171B074F922;
  273. IL2CPP_EXTERN_C String_t* _stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9;
  274. IL2CPP_EXTERN_C String_t* _stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1;
  275. IL2CPP_EXTERN_C String_t* _stringLiteralCAA2F88999132DA5422C607B25387A98089B3B06;
  276. IL2CPP_EXTERN_C String_t* _stringLiteralD48F64ABB05D3F39046297B361BD8AA53451659A;
  277. IL2CPP_EXTERN_C String_t* _stringLiteralE200AC1425952F4F5CEAAA9C773B6D17B90E47C1;
  278. IL2CPP_EXTERN_C String_t* _stringLiteralE209FAE75837720CC82067C1D76DCD103784C60B;
  279. IL2CPP_EXTERN_C String_t* _stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34;
  280. IL2CPP_EXTERN_C String_t* _stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB;
  281. IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6;
  282. IL2CPP_EXTERN_C String_t* _stringLiteralEB85B9BFFDE3135B37337A7491E104BC8493E6C0;
  283. IL2CPP_EXTERN_C String_t* _stringLiteralED1269E5C23EE33C8DD1238BDFE8303F0D986C1F;
  284. IL2CPP_EXTERN_C String_t* _stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7;
  285. IL2CPP_EXTERN_C String_t* _stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618;
  286. IL2CPP_EXTERN_C const RuntimeMethod* ArrayListEnumeratorSimple_MoveNext_m8138ECAB6271595D2B271AD27DF8BC1242637E66_RuntimeMethod_var;
  287. IL2CPP_EXTERN_C const RuntimeMethod* ArrayListEnumeratorSimple_Reset_mDF974CA5DDF1B8C46C756871711697AE745E3ABD_RuntimeMethod_var;
  288. IL2CPP_EXTERN_C const RuntimeMethod* ArrayListEnumeratorSimple_get_Current_m37B813C38A8EE4BE18A4EC908DCAA02DF3DE4613_RuntimeMethod_var;
  289. IL2CPP_EXTERN_C const RuntimeMethod* ArrayPoolEventSource_BufferAllocated_m8460B99481867223928865EA0076CCF983EE3DB0_RuntimeMethod_var;
  290. IL2CPP_EXTERN_C const RuntimeMethod* ArrayPoolEventSource_BufferRented_m89BFEDA08F56DBCD41247780571D8481C08961E6_RuntimeMethod_var;
  291. IL2CPP_EXTERN_C const RuntimeMethod* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_RuntimeMethod_var;
  292. IL2CPP_EXTERN_C const RuntimeMethod* ByteEqualityComparer_IndexOf_mFFA29BDEAC6472E9942D453FDA4D88C409EFCDA8_RuntimeMethod_var;
  293. IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Add_mF98A2811734A37D856C622E7783FD7502AA7F0B7_RuntimeMethod_var;
  294. IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_Remove_mEA61545EA43662F3718895F4E435A1F3EFB9756E_RuntimeMethod_var;
  295. IL2CPP_EXTERN_C const RuntimeMethod* ConditionalWeakTable_2_TryGetValue_m8AB467BA44D1FF9EBDB9735CED88B0D67AC6403F_RuntimeMethod_var;
  296. IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD_RuntimeMethod_var;
  297. IL2CPP_EXTERN_C const RuntimeMethod* EqualityComparer_1__ctor_m9D692A2446D3F93F9042D7CAC625E36F01658C0C_RuntimeMethod_var;
  298. IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_MoveNext_m211FB14AC78F8E4A68AD090BB1942C18FF069A1E_RuntimeMethod_var;
  299. IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_Reset_m72C56174ABFACD3B9073CA3DB7134083D2803876_RuntimeMethod_var;
  300. IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Current_mE6421EB7F4E1327453DE6D3BE41289DCC8BF8F15_RuntimeMethod_var;
  301. IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Entry_m4DDDE56EB20FCAB680D4D871CF28910E6FFD7C20_RuntimeMethod_var;
  302. IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Key_m0C1262C3A8839D8F5C7814E08A2AF850A544310C_RuntimeMethod_var;
  303. IL2CPP_EXTERN_C const RuntimeMethod* HashtableEnumerator_get_Value_m30BAEC76875DF2C4AF27B87F83FD960BE35503D2_RuntimeMethod_var;
  304. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_ContainsKey_mD7547474EE4492B67247124EAEFCA6A92FE861E0_RuntimeMethod_var;
  305. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_CopyTo_mF64638BD6F1A7003B362A0A410FCFC5B5304A989_RuntimeMethod_var;
  306. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_GetObjectData_m1BD67716932F63BD5EBD6A946564D4C7E2C573D9_RuntimeMethod_var;
  307. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291_RuntimeMethod_var;
  308. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565_RuntimeMethod_var;
  309. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_Remove_mE9F11255E490CB42E8F6D9F659EA5F3B9A3A6D1F_RuntimeMethod_var;
  310. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_Synchronized_m6C533F21D7532A6118974AE7634AB28C76765EF5_RuntimeMethod_var;
  311. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable__ctor_m62E3F257D81442819A12A041FB525FD8A2289195_RuntimeMethod_var;
  312. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A_RuntimeMethod_var;
  313. IL2CPP_EXTERN_C const RuntimeMethod* Hashtable_get_Item_m9E54CED9DB1DB76DD826C235F162BC2109D1D925_RuntimeMethod_var;
  314. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_Clear_m2531723DAB48EDD240AF1684E9DA6EF53E9658C9_RuntimeMethod_var;
  315. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var;
  316. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_InsertRange_m18EE3C843D1FD0B60D92020835CEFF39FF2FC9B3_RuntimeMethod_var;
  317. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_RemoveRange_m7D800CCE2B77A9FDE085CBC7D9CC3A2E4312D621_RuntimeMethod_var;
  318. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_Reverse_mFDA7C23AF51A3E133681A8B82AF4C624569B8B2A_RuntimeMethod_var;
  319. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_Sort_mF4D1C85C0865B0942180074EB047A7AC7FA2299B_RuntimeMethod_var;
  320. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_ToArray_m87E592A6B643C1EE45C876AA4FC178479B1A0F94_RuntimeMethod_var;
  321. IL2CPP_EXTERN_C const RuntimeMethod* IListWrapper_set_Capacity_m77C2A344F6F0AD9A78A9439045B58B473A3BA189_RuntimeMethod_var;
  322. IL2CPP_EXTERN_C const RuntimeMethod* IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_m119232371BEE9732FE70D22EE93B3818E577EFAF_RuntimeMethod_var;
  323. IL2CPP_EXTERN_C const RuntimeMethod* KeyCollection_CopyTo_m5062910D0AF077DE093FA9C67E7E9DF942792AF8_RuntimeMethod_var;
  324. IL2CPP_EXTERN_C const RuntimeMethod* LazyInitializer_EnsureInitialized_TisConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858_m86148F5434156C4EBFE958A775770256FDFA12CF_RuntimeMethod_var;
  325. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_AddRange_mEF6206AF924D609FE389BC245F96E219AEEBC9D1_RuntimeMethod_var;
  326. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_Add_m678A7B66614274CA0000B5A4232F962A7AC78148_RuntimeMethod_var;
  327. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_Clear_mFC78469FBFCCB7BB591799A3EDC73B840C7DEABF_RuntimeMethod_var;
  328. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_InsertRange_m85C6EB9DC3DBC3AEF520F33615042A47E3FFF139_RuntimeMethod_var;
  329. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_Insert_mE0BAE5C31B0C86553B445FD7284587D5A5AA5C51_RuntimeMethod_var;
  330. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_RemoveAt_m63D3189155E548BC750C2B02A017B727AB83409A_RuntimeMethod_var;
  331. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_RemoveRange_m40DD193E8AD2DA912E0A37F780490370E2A0C4B2_RuntimeMethod_var;
  332. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_Remove_mA156265395B4E03784739D03DCC0A08D3CA51FF7_RuntimeMethod_var;
  333. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_Reverse_mE3BAD41CCCC4556BB3F0079F81834DF5E0264FF4_RuntimeMethod_var;
  334. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_Sort_m86AD85F1FC3BD7DED597C723FC0DD72CDCDE6C8B_RuntimeMethod_var;
  335. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_set_Capacity_m9C39F463CE13298AC650079FE6386FE9EEC97F6C_RuntimeMethod_var;
  336. IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlyArrayList_set_Item_m3434044C6507C9826AD8931C8C74C07921A37E11_RuntimeMethod_var;
  337. IL2CPP_EXTERN_C const RuntimeMethod* SyncHashtable_ContainsKey_m29B505232C709E842FDD2398C1B6A75C9708241E_RuntimeMethod_var;
  338. IL2CPP_EXTERN_C const RuntimeMethod* SyncHashtable_GetObjectData_mCBA586B5407FEAEB6B8F5F4C6E62D6EA2EAE40D2_RuntimeMethod_var;
  339. IL2CPP_EXTERN_C const RuntimeMethod* SyncHashtable__ctor_mF1BBFC51ECC24E48FE77B39E9124110ADA45941A_RuntimeMethod_var;
  340. IL2CPP_EXTERN_C const RuntimeMethod* ThrowStub_ThrowNotSupportedException_m02C318CA8F5812C025CBEDEA07A5DE5D0FDBB25F_RuntimeMethod_var;
  341. IL2CPP_EXTERN_C const RuntimeMethod* ValueCollection_CopyTo_mD8B0681E6639A47EF9AFE951316CBA082381787F_RuntimeMethod_var;
  342. IL2CPP_EXTERN_C const RuntimeType* ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_0_0_0_var;
  343. IL2CPP_EXTERN_C const RuntimeType* IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_0_0_0_var;
  344. IL2CPP_EXTERN_C const RuntimeType* IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_0_0_0_var;
  345. IL2CPP_EXTERN_C const RuntimeType* IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_0_0_0_var;
  346. IL2CPP_EXTERN_C const RuntimeType* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var;
  347. struct Exception_t_marshaled_com;
  348. struct Exception_t_marshaled_pinvoke;
  349. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  350. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  351. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  352. struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587;
  353. IL2CPP_EXTERN_C_BEGIN
  354. IL2CPP_EXTERN_C_END
  355. #ifdef __clang__
  356. #pragma clang diagnostic push
  357. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  358. #pragma clang diagnostic ignored "-Wunused-variable"
  359. #endif
  360. struct ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858 : public RuntimeObject
  361. {
  362. EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* ___data;
  363. RuntimeObject* ____lock;
  364. int32_t ___size;
  365. };
  366. struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE : public RuntimeObject
  367. {
  368. };
  369. struct EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8 : public RuntimeObject
  370. {
  371. };
  372. struct EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A : public RuntimeObject
  373. {
  374. };
  375. struct U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50 : public RuntimeObject
  376. {
  377. };
  378. struct ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A : public RuntimeObject
  379. {
  380. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
  381. int32_t ____size;
  382. int32_t ____version;
  383. RuntimeObject* ____syncRoot;
  384. };
  385. struct BinaryPrimitives_tFEA1A3012A2BA5E1F6CD0F63173264A165CB6A7B : public RuntimeObject
  386. {
  387. };
  388. struct CollectionExtensions_t182A00BC503C9791010A3F71F412C76ABDD4D10D : public RuntimeObject
  389. {
  390. };
  391. struct CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465 : public RuntimeObject
  392. {
  393. RuntimeObject* ____hcp;
  394. RuntimeObject* ____comparer;
  395. };
  396. struct EnumerableHelpers_t18A53CA9FA987FA240C4777E90230115D116D29B : public RuntimeObject
  397. {
  398. };
  399. struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25 : public RuntimeObject
  400. {
  401. String_t* ___U3CNameU3Ek__BackingField;
  402. };
  403. struct FormattingHelpers_t06A1B3D3DEEAE9313D177C6D62D99DBF100E151D : public RuntimeObject
  404. {
  405. };
  406. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D : public RuntimeObject
  407. {
  408. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ____buckets;
  409. int32_t ____count;
  410. int32_t ____occupancy;
  411. int32_t ____loadsize;
  412. float ____loadFactor;
  413. int32_t ____version;
  414. bool ____isWriterInProgress;
  415. RuntimeObject* ____keys;
  416. RuntimeObject* ____values;
  417. RuntimeObject* ____keycomparer;
  418. RuntimeObject* ____syncRoot;
  419. };
  420. struct IntrospectiveSortUtilities_tD784154D54CAE81D6BD1F950B40A8C89EF328402 : public RuntimeObject
  421. {
  422. };
  423. struct KeyValuePair_t7874AE3B9245A56073B459BA3A218A817370F597 : public RuntimeObject
  424. {
  425. };
  426. struct MemberInfo_t : public RuntimeObject
  427. {
  428. };
  429. struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37 : public RuntimeObject
  430. {
  431. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_members;
  432. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___m_data;
  433. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___m_types;
  434. Dictionary_2_t5C8F46F5D57502270DD9E1DA8303B23C7FE85588* ___m_nameToIndex;
  435. int32_t ___m_currMember;
  436. RuntimeObject* ___m_converter;
  437. String_t* ___m_fullTypeName;
  438. String_t* ___m_assemName;
  439. Type_t* ___objectType;
  440. bool ___isFullTypeNameSetExplicit;
  441. bool ___isAssemblyNameSetExplicit;
  442. bool ___requireSameTokenInPartialTrust;
  443. };
  444. struct SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540 : public RuntimeObject
  445. {
  446. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____members;
  447. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____data;
  448. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ____types;
  449. int32_t ____numItems;
  450. int32_t ____currItem;
  451. bool ____current;
  452. };
  453. struct String_t : public RuntimeObject
  454. {
  455. int32_t ____stringLength;
  456. Il2CppChar ____firstChar;
  457. };
  458. struct StringBuilder_t : public RuntimeObject
  459. {
  460. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars;
  461. StringBuilder_t* ___m_ChunkPrevious;
  462. int32_t ___m_ChunkLength;
  463. int32_t ___m_ChunkOffset;
  464. int32_t ___m_MaxCapacity;
  465. };
  466. struct Utilities_t47DFEED0E704B42BDB4499194D7C812E763E6186 : public RuntimeObject
  467. {
  468. };
  469. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  470. {
  471. };
  472. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  473. {
  474. };
  475. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  476. {
  477. };
  478. struct ArrayListDebugView_t84F5D056AFE95B118FA2000FA00D0A58706DB6FB : public RuntimeObject
  479. {
  480. };
  481. struct ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA : public RuntimeObject
  482. {
  483. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list;
  484. int32_t ____index;
  485. int32_t ____version;
  486. RuntimeObject* ____currentElement;
  487. bool ____isArrayList;
  488. };
  489. struct HashtableDebugView_t8AC15CFAD73CC79A91528679B7EF33B72612F0AD : public RuntimeObject
  490. {
  491. };
  492. struct HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061 : public RuntimeObject
  493. {
  494. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____hashtable;
  495. int32_t ____bucket;
  496. int32_t ____version;
  497. bool ____current;
  498. int32_t ____getObjectRetType;
  499. RuntimeObject* ____currentKey;
  500. RuntimeObject* ____currentValue;
  501. };
  502. struct KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77 : public RuntimeObject
  503. {
  504. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____hashtable;
  505. };
  506. struct ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F : public RuntimeObject
  507. {
  508. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____hashtable;
  509. };
  510. struct ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888 : public EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25
  511. {
  512. };
  513. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  514. {
  515. bool ___m_value;
  516. };
  517. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  518. {
  519. uint8_t ___m_value;
  520. };
  521. struct ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275 : public EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8
  522. {
  523. };
  524. struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999 : public EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25
  525. {
  526. };
  527. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  528. {
  529. Il2CppChar ___m_value;
  530. };
  531. struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
  532. {
  533. RuntimeObject* ____key;
  534. RuntimeObject* ____value;
  535. };
  536. struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
  537. {
  538. Il2CppIUnknown* ____key;
  539. Il2CppIUnknown* ____value;
  540. };
  541. struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
  542. {
  543. Il2CppIUnknown* ____key;
  544. Il2CppIUnknown* ____value;
  545. };
  546. struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
  547. {
  548. double ___m_value;
  549. };
  550. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
  551. {
  552. };
  553. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
  554. {
  555. };
  556. struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
  557. {
  558. };
  559. struct Guid_t
  560. {
  561. int32_t ____a;
  562. int16_t ____b;
  563. int16_t ____c;
  564. uint8_t ____d;
  565. uint8_t ____e;
  566. uint8_t ____f;
  567. uint8_t ____g;
  568. uint8_t ____h;
  569. uint8_t ____i;
  570. uint8_t ____j;
  571. uint8_t ____k;
  572. };
  573. struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
  574. {
  575. int16_t ___m_value;
  576. };
  577. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  578. {
  579. int32_t ___m_value;
  580. };
  581. struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
  582. {
  583. int64_t ___m_value;
  584. };
  585. struct IntPtr_t
  586. {
  587. void* ___m_value;
  588. };
  589. struct InternalStringComparer_t04B2D1768998E940BC4619579B7044102591E38B : public EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A
  590. {
  591. };
  592. #pragma pack(push, tp, 1)
  593. struct PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8
  594. {
  595. union
  596. {
  597. struct
  598. {
  599. union
  600. {
  601. #pragma pack(push, tp, 1)
  602. struct
  603. {
  604. char ___Head_OffsetPadding[128];
  605. int32_t ___Head;
  606. };
  607. #pragma pack(pop, tp)
  608. struct
  609. {
  610. char ___Head_OffsetPadding_forAlignmentOnly[128];
  611. int32_t ___Head_forAlignmentOnly;
  612. };
  613. #pragma pack(push, tp, 1)
  614. struct
  615. {
  616. char ___Tail_OffsetPadding[256];
  617. int32_t ___Tail;
  618. };
  619. #pragma pack(pop, tp)
  620. struct
  621. {
  622. char ___Tail_OffsetPadding_forAlignmentOnly[256];
  623. int32_t ___Tail_forAlignmentOnly;
  624. };
  625. };
  626. };
  627. uint8_t PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8__padding[384];
  628. };
  629. };
  630. #pragma pack(pop, tp)
  631. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  632. {
  633. float ___m_value;
  634. };
  635. struct SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675
  636. {
  637. int32_t ____count;
  638. };
  639. struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
  640. {
  641. uint16_t ___m_value;
  642. };
  643. struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
  644. {
  645. uint32_t ___m_value;
  646. };
  647. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  648. {
  649. uint64_t ___m_value;
  650. };
  651. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  652. {
  653. union
  654. {
  655. struct
  656. {
  657. };
  658. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  659. };
  660. };
  661. #pragma pack(push, tp, 1)
  662. struct __StaticArrayInitTypeSizeU3D10_t5C0BD3C2F2400B4CC3D119A9A4D6BE6F36BED9B4
  663. {
  664. union
  665. {
  666. struct
  667. {
  668. union
  669. {
  670. };
  671. };
  672. uint8_t __StaticArrayInitTypeSizeU3D10_t5C0BD3C2F2400B4CC3D119A9A4D6BE6F36BED9B4__padding[10];
  673. };
  674. };
  675. #pragma pack(pop, tp)
  676. #pragma pack(push, tp, 1)
  677. struct __StaticArrayInitTypeSizeU3D1018_t16F11201DACFD04E420851027A24F477EDAE5B55
  678. {
  679. union
  680. {
  681. struct
  682. {
  683. union
  684. {
  685. };
  686. };
  687. uint8_t __StaticArrayInitTypeSizeU3D1018_t16F11201DACFD04E420851027A24F477EDAE5B55__padding[1018];
  688. };
  689. };
  690. #pragma pack(pop, tp)
  691. #pragma pack(push, tp, 1)
  692. struct __StaticArrayInitTypeSizeU3D1024_tFAF4058252F4F8B582A57FE003804BDA44C97A07
  693. {
  694. union
  695. {
  696. struct
  697. {
  698. union
  699. {
  700. };
  701. };
  702. uint8_t __StaticArrayInitTypeSizeU3D1024_tFAF4058252F4F8B582A57FE003804BDA44C97A07__padding[1024];
  703. };
  704. };
  705. #pragma pack(pop, tp)
  706. #pragma pack(push, tp, 1)
  707. struct __StaticArrayInitTypeSizeU3D10800_tAF97D91E5007DF1AE1150F5C33EF60959135EBB5
  708. {
  709. union
  710. {
  711. struct
  712. {
  713. union
  714. {
  715. };
  716. };
  717. uint8_t __StaticArrayInitTypeSizeU3D10800_tAF97D91E5007DF1AE1150F5C33EF60959135EBB5__padding[10800];
  718. };
  719. };
  720. #pragma pack(pop, tp)
  721. #pragma pack(push, tp, 1)
  722. struct __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373
  723. {
  724. union
  725. {
  726. struct
  727. {
  728. union
  729. {
  730. };
  731. };
  732. uint8_t __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373__padding[12];
  733. };
  734. };
  735. #pragma pack(pop, tp)
  736. #pragma pack(push, tp, 1)
  737. struct __StaticArrayInitTypeSizeU3D120_tD5C6CE4469120025887663C1D22BD39721D06413
  738. {
  739. union
  740. {
  741. struct
  742. {
  743. union
  744. {
  745. };
  746. };
  747. uint8_t __StaticArrayInitTypeSizeU3D120_tD5C6CE4469120025887663C1D22BD39721D06413__padding[120];
  748. };
  749. };
  750. #pragma pack(pop, tp)
  751. #pragma pack(push, tp, 1)
  752. struct __StaticArrayInitTypeSizeU3D1208_t448FE03E395F60069921A133A51971348403E284
  753. {
  754. union
  755. {
  756. struct
  757. {
  758. union
  759. {
  760. };
  761. };
  762. uint8_t __StaticArrayInitTypeSizeU3D1208_t448FE03E395F60069921A133A51971348403E284__padding[1208];
  763. };
  764. };
  765. #pragma pack(pop, tp)
  766. #pragma pack(push, tp, 1)
  767. struct __StaticArrayInitTypeSizeU3D128_t10A33C7E461046D5ECA4CF4B170F59664B1C43AF
  768. {
  769. union
  770. {
  771. struct
  772. {
  773. union
  774. {
  775. };
  776. };
  777. uint8_t __StaticArrayInitTypeSizeU3D128_t10A33C7E461046D5ECA4CF4B170F59664B1C43AF__padding[128];
  778. };
  779. };
  780. #pragma pack(pop, tp)
  781. #pragma pack(push, tp, 1)
  782. struct __StaticArrayInitTypeSizeU3D130_t3A1579E4920F810DB34F519DA2EA8410C6FF9A3E
  783. {
  784. union
  785. {
  786. struct
  787. {
  788. union
  789. {
  790. };
  791. };
  792. uint8_t __StaticArrayInitTypeSizeU3D130_t3A1579E4920F810DB34F519DA2EA8410C6FF9A3E__padding[130];
  793. };
  794. };
  795. #pragma pack(pop, tp)
  796. #pragma pack(push, tp, 1)
  797. struct __StaticArrayInitTypeSizeU3D1320_t83F802652FA7AD655BD4CE52A23BBD51DF23BDE7
  798. {
  799. union
  800. {
  801. struct
  802. {
  803. union
  804. {
  805. };
  806. };
  807. uint8_t __StaticArrayInitTypeSizeU3D1320_t83F802652FA7AD655BD4CE52A23BBD51DF23BDE7__padding[1320];
  808. };
  809. };
  810. #pragma pack(pop, tp)
  811. #pragma pack(push, tp, 1)
  812. struct __StaticArrayInitTypeSizeU3D1450_t1FAC416BA849625CD3D95A1981F559A2F2DE0E7C
  813. {
  814. union
  815. {
  816. struct
  817. {
  818. union
  819. {
  820. };
  821. };
  822. uint8_t __StaticArrayInitTypeSizeU3D1450_t1FAC416BA849625CD3D95A1981F559A2F2DE0E7C__padding[1450];
  823. };
  824. };
  825. #pragma pack(pop, tp)
  826. #pragma pack(push, tp, 1)
  827. struct __StaticArrayInitTypeSizeU3D1472_tCB6910E7C4264AC68C8166BF9509CA9C07C69070
  828. {
  829. union
  830. {
  831. struct
  832. {
  833. union
  834. {
  835. };
  836. };
  837. uint8_t __StaticArrayInitTypeSizeU3D1472_tCB6910E7C4264AC68C8166BF9509CA9C07C69070__padding[1472];
  838. };
  839. };
  840. #pragma pack(pop, tp)
  841. #pragma pack(push, tp, 1)
  842. struct __StaticArrayInitTypeSizeU3D15_tFF02C3CB329BAAB88B3F50AE2C9AFD21390048D7
  843. {
  844. union
  845. {
  846. struct
  847. {
  848. union
  849. {
  850. };
  851. };
  852. uint8_t __StaticArrayInitTypeSizeU3D15_tFF02C3CB329BAAB88B3F50AE2C9AFD21390048D7__padding[15];
  853. };
  854. };
  855. #pragma pack(pop, tp)
  856. #pragma pack(push, tp, 1)
  857. struct __StaticArrayInitTypeSizeU3D152_t93532A5884A6C4A42D7F939692873D7E88D937B1
  858. {
  859. union
  860. {
  861. struct
  862. {
  863. union
  864. {
  865. };
  866. };
  867. uint8_t __StaticArrayInitTypeSizeU3D152_t93532A5884A6C4A42D7F939692873D7E88D937B1__padding[152];
  868. };
  869. };
  870. #pragma pack(pop, tp)
  871. #pragma pack(push, tp, 1)
  872. struct __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3
  873. {
  874. union
  875. {
  876. struct
  877. {
  878. union
  879. {
  880. };
  881. };
  882. uint8_t __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3__padding[16];
  883. };
  884. };
  885. #pragma pack(pop, tp)
  886. #pragma pack(push, tp, 1)
  887. struct __StaticArrayInitTypeSizeU3D1665_t4CB4CE1056FC98C5BAB53D5F6D5F1F0B8CEBA06D
  888. {
  889. union
  890. {
  891. struct
  892. {
  893. union
  894. {
  895. };
  896. };
  897. uint8_t __StaticArrayInitTypeSizeU3D1665_t4CB4CE1056FC98C5BAB53D5F6D5F1F0B8CEBA06D__padding[1665];
  898. };
  899. };
  900. #pragma pack(pop, tp)
  901. #pragma pack(push, tp, 1)
  902. struct __StaticArrayInitTypeSizeU3D170_tD5DDF5B1A4672BA6F4CB986B6CB5E4C8DA842155
  903. {
  904. union
  905. {
  906. struct
  907. {
  908. union
  909. {
  910. };
  911. };
  912. uint8_t __StaticArrayInitTypeSizeU3D170_tD5DDF5B1A4672BA6F4CB986B6CB5E4C8DA842155__padding[170];
  913. };
  914. };
  915. #pragma pack(pop, tp)
  916. #pragma pack(push, tp, 1)
  917. struct __StaticArrayInitTypeSizeU3D172_t50A59F10FF3AFEB82AF45171BD2A55F079B975D6
  918. {
  919. union
  920. {
  921. struct
  922. {
  923. union
  924. {
  925. };
  926. };
  927. uint8_t __StaticArrayInitTypeSizeU3D172_t50A59F10FF3AFEB82AF45171BD2A55F079B975D6__padding[172];
  928. };
  929. };
  930. #pragma pack(pop, tp)
  931. #pragma pack(push, tp, 1)
  932. struct __StaticArrayInitTypeSizeU3D174_tB1C80F56568C4165B636338385647ABAEF02FDA6
  933. {
  934. union
  935. {
  936. struct
  937. {
  938. union
  939. {
  940. };
  941. };
  942. uint8_t __StaticArrayInitTypeSizeU3D174_tB1C80F56568C4165B636338385647ABAEF02FDA6__padding[174];
  943. };
  944. };
  945. #pragma pack(pop, tp)
  946. #pragma pack(push, tp, 1)
  947. struct __StaticArrayInitTypeSizeU3D1824_tEED832C146866302D5CDAB71CB05AFF5BC34003F
  948. {
  949. union
  950. {
  951. struct
  952. {
  953. union
  954. {
  955. };
  956. };
  957. uint8_t __StaticArrayInitTypeSizeU3D1824_tEED832C146866302D5CDAB71CB05AFF5BC34003F__padding[1824];
  958. };
  959. };
  960. #pragma pack(pop, tp)
  961. #pragma pack(push, tp, 1)
  962. struct __StaticArrayInitTypeSizeU3D20_t548A67B8FAEBE929F5BE1C5FA92A7708E5A34C85
  963. {
  964. union
  965. {
  966. struct
  967. {
  968. union
  969. {
  970. };
  971. };
  972. uint8_t __StaticArrayInitTypeSizeU3D20_t548A67B8FAEBE929F5BE1C5FA92A7708E5A34C85__padding[20];
  973. };
  974. };
  975. #pragma pack(pop, tp)
  976. #pragma pack(push, tp, 1)
  977. struct __StaticArrayInitTypeSizeU3D2048_t629933D99218856BC762A592B03108640E9B0355
  978. {
  979. union
  980. {
  981. struct
  982. {
  983. union
  984. {
  985. };
  986. };
  987. uint8_t __StaticArrayInitTypeSizeU3D2048_t629933D99218856BC762A592B03108640E9B0355__padding[2048];
  988. };
  989. };
  990. #pragma pack(pop, tp)
  991. #pragma pack(push, tp, 1)
  992. struct __StaticArrayInitTypeSizeU3D2100_t88D645A2CDCA331608377780128DA8BFC74942DE
  993. {
  994. union
  995. {
  996. struct
  997. {
  998. union
  999. {
  1000. };
  1001. };
  1002. uint8_t __StaticArrayInitTypeSizeU3D2100_t88D645A2CDCA331608377780128DA8BFC74942DE__padding[2100];
  1003. };
  1004. };
  1005. #pragma pack(pop, tp)
  1006. #pragma pack(push, tp, 1)
  1007. struct __StaticArrayInitTypeSizeU3D212_tFBB5CD331D3374EF82FB51954D58678789BFAB8A
  1008. {
  1009. union
  1010. {
  1011. struct
  1012. {
  1013. union
  1014. {
  1015. };
  1016. };
  1017. uint8_t __StaticArrayInitTypeSizeU3D212_tFBB5CD331D3374EF82FB51954D58678789BFAB8A__padding[212];
  1018. };
  1019. };
  1020. #pragma pack(pop, tp)
  1021. #pragma pack(push, tp, 1)
  1022. struct __StaticArrayInitTypeSizeU3D2176_tA278ED4E477855073B05C8EDF2E0D3BC18DE265A
  1023. {
  1024. union
  1025. {
  1026. struct
  1027. {
  1028. union
  1029. {
  1030. };
  1031. };
  1032. uint8_t __StaticArrayInitTypeSizeU3D2176_tA278ED4E477855073B05C8EDF2E0D3BC18DE265A__padding[2176];
  1033. };
  1034. };
  1035. #pragma pack(pop, tp)
  1036. #pragma pack(push, tp, 1)
  1037. struct __StaticArrayInitTypeSizeU3D2350_t06B3679372D33ED00832516310EE74D35B2DF1CC
  1038. {
  1039. union
  1040. {
  1041. struct
  1042. {
  1043. union
  1044. {
  1045. };
  1046. };
  1047. uint8_t __StaticArrayInitTypeSizeU3D2350_t06B3679372D33ED00832516310EE74D35B2DF1CC__padding[2350];
  1048. };
  1049. };
  1050. #pragma pack(pop, tp)
  1051. #pragma pack(push, tp, 1)
  1052. struct __StaticArrayInitTypeSizeU3D2382_tE85B295E3B513D28493BAAC03ABC97A0349EE630
  1053. {
  1054. union
  1055. {
  1056. struct
  1057. {
  1058. union
  1059. {
  1060. };
  1061. };
  1062. uint8_t __StaticArrayInitTypeSizeU3D2382_tE85B295E3B513D28493BAAC03ABC97A0349EE630__padding[2382];
  1063. };
  1064. };
  1065. #pragma pack(pop, tp)
  1066. #pragma pack(push, tp, 1)
  1067. struct __StaticArrayInitTypeSizeU3D24_tF97F937C40D5FC1B94B735A6E7FDE4ED79B3DD14
  1068. {
  1069. union
  1070. {
  1071. struct
  1072. {
  1073. union
  1074. {
  1075. };
  1076. };
  1077. uint8_t __StaticArrayInitTypeSizeU3D24_tF97F937C40D5FC1B94B735A6E7FDE4ED79B3DD14__padding[24];
  1078. };
  1079. };
  1080. #pragma pack(pop, tp)
  1081. #pragma pack(push, tp, 1)
  1082. struct __StaticArrayInitTypeSizeU3D240_t52E7E202732F47FF85E3F1FA78FE58AB7999C265
  1083. {
  1084. union
  1085. {
  1086. struct
  1087. {
  1088. union
  1089. {
  1090. };
  1091. };
  1092. uint8_t __StaticArrayInitTypeSizeU3D240_t52E7E202732F47FF85E3F1FA78FE58AB7999C265__padding[240];
  1093. };
  1094. };
  1095. #pragma pack(pop, tp)
  1096. #pragma pack(push, tp, 1)
  1097. struct __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143
  1098. {
  1099. union
  1100. {
  1101. struct
  1102. {
  1103. union
  1104. {
  1105. };
  1106. };
  1107. uint8_t __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143__padding[256];
  1108. };
  1109. };
  1110. #pragma pack(pop, tp)
  1111. #pragma pack(push, tp, 1)
  1112. struct __StaticArrayInitTypeSizeU3D262_t451C912E08CF973D9DB4ED4830AA613DDAAE1D37
  1113. {
  1114. union
  1115. {
  1116. struct
  1117. {
  1118. union
  1119. {
  1120. };
  1121. };
  1122. uint8_t __StaticArrayInitTypeSizeU3D262_t451C912E08CF973D9DB4ED4830AA613DDAAE1D37__padding[262];
  1123. };
  1124. };
  1125. #pragma pack(pop, tp)
  1126. #pragma pack(push, tp, 1)
  1127. struct __StaticArrayInitTypeSizeU3D288_t26388A829D91CAEC8CC20855987F596B6D71DB51
  1128. {
  1129. union
  1130. {
  1131. struct
  1132. {
  1133. union
  1134. {
  1135. };
  1136. };
  1137. uint8_t __StaticArrayInitTypeSizeU3D288_t26388A829D91CAEC8CC20855987F596B6D71DB51__padding[288];
  1138. };
  1139. };
  1140. #pragma pack(pop, tp)
  1141. #pragma pack(push, tp, 1)
  1142. struct __StaticArrayInitTypeSizeU3D3_tE200BA77B70F8D0805BDB2C5561AAB11A9B11312
  1143. {
  1144. union
  1145. {
  1146. struct
  1147. {
  1148. union
  1149. {
  1150. };
  1151. };
  1152. uint8_t __StaticArrayInitTypeSizeU3D3_tE200BA77B70F8D0805BDB2C5561AAB11A9B11312__padding[3];
  1153. };
  1154. };
  1155. #pragma pack(pop, tp)
  1156. #pragma pack(push, tp, 1)
  1157. struct __StaticArrayInitTypeSizeU3D3132_tF0F1005A79A2387D724DFD9EE4EDC366B0A4914C
  1158. {
  1159. union
  1160. {
  1161. struct
  1162. {
  1163. union
  1164. {
  1165. };
  1166. };
  1167. uint8_t __StaticArrayInitTypeSizeU3D3132_tF0F1005A79A2387D724DFD9EE4EDC366B0A4914C__padding[3132];
  1168. };
  1169. };
  1170. #pragma pack(pop, tp)
  1171. #pragma pack(push, tp, 1)
  1172. struct __StaticArrayInitTypeSizeU3D32_tEC324F451D326CED5BF4941A609638F08792EAF0
  1173. {
  1174. union
  1175. {
  1176. struct
  1177. {
  1178. union
  1179. {
  1180. };
  1181. };
  1182. uint8_t __StaticArrayInitTypeSizeU3D32_tEC324F451D326CED5BF4941A609638F08792EAF0__padding[32];
  1183. };
  1184. };
  1185. #pragma pack(pop, tp)
  1186. #pragma pack(push, tp, 1)
  1187. struct __StaticArrayInitTypeSizeU3D336_tCE45B5681EF21AE25502E6165F44A12AA857A970
  1188. {
  1189. union
  1190. {
  1191. struct
  1192. {
  1193. union
  1194. {
  1195. };
  1196. };
  1197. uint8_t __StaticArrayInitTypeSizeU3D336_tCE45B5681EF21AE25502E6165F44A12AA857A970__padding[336];
  1198. };
  1199. };
  1200. #pragma pack(pop, tp)
  1201. #pragma pack(push, tp, 1)
  1202. struct __StaticArrayInitTypeSizeU3D36_t5C0EDBE11BB2C6682A10956FD7BD0D97A46E3BA4
  1203. {
  1204. union
  1205. {
  1206. struct
  1207. {
  1208. union
  1209. {
  1210. };
  1211. };
  1212. uint8_t __StaticArrayInitTypeSizeU3D36_t5C0EDBE11BB2C6682A10956FD7BD0D97A46E3BA4__padding[36];
  1213. };
  1214. };
  1215. #pragma pack(pop, tp)
  1216. #pragma pack(push, tp, 1)
  1217. struct __StaticArrayInitTypeSizeU3D360_tD14687B8AE6042547DA97E61DFF1BC57C0AABB00
  1218. {
  1219. union
  1220. {
  1221. struct
  1222. {
  1223. union
  1224. {
  1225. };
  1226. };
  1227. uint8_t __StaticArrayInitTypeSizeU3D360_tD14687B8AE6042547DA97E61DFF1BC57C0AABB00__padding[360];
  1228. };
  1229. };
  1230. #pragma pack(pop, tp)
  1231. #pragma pack(push, tp, 1)
  1232. struct __StaticArrayInitTypeSizeU3D38_t193D2F75A75C37EA34EAEBC8DCA5E21ED4C7382E
  1233. {
  1234. union
  1235. {
  1236. struct
  1237. {
  1238. union
  1239. {
  1240. };
  1241. };
  1242. uint8_t __StaticArrayInitTypeSizeU3D38_t193D2F75A75C37EA34EAEBC8DCA5E21ED4C7382E__padding[38];
  1243. };
  1244. };
  1245. #pragma pack(pop, tp)
  1246. #pragma pack(push, tp, 1)
  1247. struct __StaticArrayInitTypeSizeU3D40_t1829E21A9E581C04E0E6E428BCDF38D218380C08
  1248. {
  1249. union
  1250. {
  1251. struct
  1252. {
  1253. union
  1254. {
  1255. };
  1256. };
  1257. uint8_t __StaticArrayInitTypeSizeU3D40_t1829E21A9E581C04E0E6E428BCDF38D218380C08__padding[40];
  1258. };
  1259. };
  1260. #pragma pack(pop, tp)
  1261. #pragma pack(push, tp, 1)
  1262. struct __StaticArrayInitTypeSizeU3D4096_tBC12C9D01469CC5942ED025E4769CBD57E2A3669
  1263. {
  1264. union
  1265. {
  1266. struct
  1267. {
  1268. union
  1269. {
  1270. };
  1271. };
  1272. uint8_t __StaticArrayInitTypeSizeU3D4096_tBC12C9D01469CC5942ED025E4769CBD57E2A3669__padding[4096];
  1273. };
  1274. };
  1275. #pragma pack(pop, tp)
  1276. #pragma pack(push, tp, 1)
  1277. struct __StaticArrayInitTypeSizeU3D42_t2A4EC2E868CF39CFD190BCF4A4FD68F75532504A
  1278. {
  1279. union
  1280. {
  1281. struct
  1282. {
  1283. union
  1284. {
  1285. };
  1286. };
  1287. uint8_t __StaticArrayInitTypeSizeU3D42_t2A4EC2E868CF39CFD190BCF4A4FD68F75532504A__padding[42];
  1288. };
  1289. };
  1290. #pragma pack(pop, tp)
  1291. #pragma pack(push, tp, 1)
  1292. struct __StaticArrayInitTypeSizeU3D44_t16AF03EDFEC5FF23E410BCDD3A07378E36AB6EFE
  1293. {
  1294. union
  1295. {
  1296. struct
  1297. {
  1298. union
  1299. {
  1300. };
  1301. };
  1302. uint8_t __StaticArrayInitTypeSizeU3D44_t16AF03EDFEC5FF23E410BCDD3A07378E36AB6EFE__padding[44];
  1303. };
  1304. };
  1305. #pragma pack(pop, tp)
  1306. #pragma pack(push, tp, 1)
  1307. struct __StaticArrayInitTypeSizeU3D48_tB7BA0D45E70CDE989C734E0E5B52A7C3038E5116
  1308. {
  1309. union
  1310. {
  1311. struct
  1312. {
  1313. union
  1314. {
  1315. };
  1316. };
  1317. uint8_t __StaticArrayInitTypeSizeU3D48_tB7BA0D45E70CDE989C734E0E5B52A7C3038E5116__padding[48];
  1318. };
  1319. };
  1320. #pragma pack(pop, tp)
  1321. #pragma pack(push, tp, 1)
  1322. struct __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89
  1323. {
  1324. union
  1325. {
  1326. struct
  1327. {
  1328. union
  1329. {
  1330. };
  1331. };
  1332. uint8_t __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89__padding[52];
  1333. };
  1334. };
  1335. #pragma pack(pop, tp)
  1336. #pragma pack(push, tp, 1)
  1337. struct __StaticArrayInitTypeSizeU3D56_tCF60E23359634B97A792A75277ACC2176949BCE7
  1338. {
  1339. union
  1340. {
  1341. struct
  1342. {
  1343. union
  1344. {
  1345. };
  1346. };
  1347. uint8_t __StaticArrayInitTypeSizeU3D56_tCF60E23359634B97A792A75277ACC2176949BCE7__padding[56];
  1348. };
  1349. };
  1350. #pragma pack(pop, tp)
  1351. #pragma pack(push, tp, 1)
  1352. struct __StaticArrayInitTypeSizeU3D5952_tFA61BCE25F463DACAE80095EF7F54BF3C32EC5FD
  1353. {
  1354. union
  1355. {
  1356. struct
  1357. {
  1358. union
  1359. {
  1360. };
  1361. };
  1362. uint8_t __StaticArrayInitTypeSizeU3D5952_tFA61BCE25F463DACAE80095EF7F54BF3C32EC5FD__padding[5952];
  1363. };
  1364. };
  1365. #pragma pack(pop, tp)
  1366. #pragma pack(push, tp, 1)
  1367. struct __StaticArrayInitTypeSizeU3D6_t2D20738447B6F1222D7EE2D5D686783F1457713B
  1368. {
  1369. union
  1370. {
  1371. struct
  1372. {
  1373. union
  1374. {
  1375. };
  1376. };
  1377. uint8_t __StaticArrayInitTypeSizeU3D6_t2D20738447B6F1222D7EE2D5D686783F1457713B__padding[6];
  1378. };
  1379. };
  1380. #pragma pack(pop, tp)
  1381. #pragma pack(push, tp, 1)
  1382. struct __StaticArrayInitTypeSizeU3D64_t902DC2FD85EE7E9E3E2AC6CEB41D6E2EDF8C6BC5
  1383. {
  1384. union
  1385. {
  1386. struct
  1387. {
  1388. union
  1389. {
  1390. };
  1391. };
  1392. uint8_t __StaticArrayInitTypeSizeU3D64_t902DC2FD85EE7E9E3E2AC6CEB41D6E2EDF8C6BC5__padding[64];
  1393. };
  1394. };
  1395. #pragma pack(pop, tp)
  1396. #pragma pack(push, tp, 1)
  1397. struct __StaticArrayInitTypeSizeU3D640_t910C17DFA2BEC9D837C794531BFFFE8A70E81109
  1398. {
  1399. union
  1400. {
  1401. struct
  1402. {
  1403. union
  1404. {
  1405. };
  1406. };
  1407. uint8_t __StaticArrayInitTypeSizeU3D640_t910C17DFA2BEC9D837C794531BFFFE8A70E81109__padding[640];
  1408. };
  1409. };
  1410. #pragma pack(pop, tp)
  1411. #pragma pack(push, tp, 1)
  1412. struct __StaticArrayInitTypeSizeU3D648_tA7C66768813068A9779D5A0CCD24D484326985EE
  1413. {
  1414. union
  1415. {
  1416. struct
  1417. {
  1418. union
  1419. {
  1420. };
  1421. };
  1422. uint8_t __StaticArrayInitTypeSizeU3D648_tA7C66768813068A9779D5A0CCD24D484326985EE__padding[648];
  1423. };
  1424. };
  1425. #pragma pack(pop, tp)
  1426. #pragma pack(push, tp, 1)
  1427. struct __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC
  1428. {
  1429. union
  1430. {
  1431. struct
  1432. {
  1433. union
  1434. {
  1435. };
  1436. };
  1437. uint8_t __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC__padding[72];
  1438. };
  1439. };
  1440. #pragma pack(pop, tp)
  1441. #pragma pack(push, tp, 1)
  1442. struct __StaticArrayInitTypeSizeU3D76_t7FD69A5C941D293CE74920A6345BA98571A64A61
  1443. {
  1444. union
  1445. {
  1446. struct
  1447. {
  1448. union
  1449. {
  1450. };
  1451. };
  1452. uint8_t __StaticArrayInitTypeSizeU3D76_t7FD69A5C941D293CE74920A6345BA98571A64A61__padding[76];
  1453. };
  1454. };
  1455. #pragma pack(pop, tp)
  1456. #pragma pack(push, tp, 1)
  1457. struct __StaticArrayInitTypeSizeU3D761_t64E16179D3D94428B9E5AF52F0529EA60D1FC9BA
  1458. {
  1459. union
  1460. {
  1461. struct
  1462. {
  1463. union
  1464. {
  1465. };
  1466. };
  1467. uint8_t __StaticArrayInitTypeSizeU3D761_t64E16179D3D94428B9E5AF52F0529EA60D1FC9BA__padding[761];
  1468. };
  1469. };
  1470. #pragma pack(pop, tp)
  1471. #pragma pack(push, tp, 1)
  1472. struct __StaticArrayInitTypeSizeU3D82_t61F86168D26CF20B36247C509DC3C871315ED74D
  1473. {
  1474. union
  1475. {
  1476. struct
  1477. {
  1478. union
  1479. {
  1480. };
  1481. };
  1482. uint8_t __StaticArrayInitTypeSizeU3D82_t61F86168D26CF20B36247C509DC3C871315ED74D__padding[82];
  1483. };
  1484. };
  1485. #pragma pack(pop, tp)
  1486. #pragma pack(push, tp, 1)
  1487. struct __StaticArrayInitTypeSizeU3D84_tD7894A8DC44B8037ABDA03237AC9ED587ED067D3
  1488. {
  1489. union
  1490. {
  1491. struct
  1492. {
  1493. union
  1494. {
  1495. };
  1496. };
  1497. uint8_t __StaticArrayInitTypeSizeU3D84_tD7894A8DC44B8037ABDA03237AC9ED587ED067D3__padding[84];
  1498. };
  1499. };
  1500. #pragma pack(pop, tp)
  1501. #pragma pack(push, tp, 1)
  1502. struct __StaticArrayInitTypeSizeU3D94_tB88EB12652D5B06365F5A3B3AA4967DA5E6D724B
  1503. {
  1504. union
  1505. {
  1506. struct
  1507. {
  1508. union
  1509. {
  1510. };
  1511. };
  1512. uint8_t __StaticArrayInitTypeSizeU3D94_tB88EB12652D5B06365F5A3B3AA4967DA5E6D724B__padding[94];
  1513. };
  1514. };
  1515. #pragma pack(pop, tp)
  1516. #pragma pack(push, tp, 1)
  1517. struct __StaticArrayInitTypeSizeU3D998_t3372981B27F1A388EC4F6F6F01BB32C9AB3E6E6E
  1518. {
  1519. union
  1520. {
  1521. struct
  1522. {
  1523. union
  1524. {
  1525. };
  1526. };
  1527. uint8_t __StaticArrayInitTypeSizeU3D998_t3372981B27F1A388EC4F6F6F01BB32C9AB3E6E6E__padding[998];
  1528. };
  1529. };
  1530. #pragma pack(pop, tp)
  1531. struct IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187 : public ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A
  1532. {
  1533. RuntimeObject* ____list;
  1534. };
  1535. struct ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7 : public ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A
  1536. {
  1537. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ____list;
  1538. };
  1539. struct SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5 : public Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D
  1540. {
  1541. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ____table;
  1542. };
  1543. struct bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E
  1544. {
  1545. RuntimeObject* ___key;
  1546. RuntimeObject* ___val;
  1547. int32_t ___hash_coll;
  1548. };
  1549. struct bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_pinvoke
  1550. {
  1551. Il2CppIUnknown* ___key;
  1552. Il2CppIUnknown* ___val;
  1553. int32_t ___hash_coll;
  1554. };
  1555. struct bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_com
  1556. {
  1557. Il2CppIUnknown* ___key;
  1558. Il2CppIUnknown* ___val;
  1559. int32_t ___hash_coll;
  1560. };
  1561. struct EventKeywords_t9448FD3D64FEA0415CFE919FE67B797E3494DA78
  1562. {
  1563. int64_t ___value__;
  1564. };
  1565. struct EventLevel_t499F0D303B280260CB7E2A62E8BB88D1569B680E
  1566. {
  1567. int32_t ___value__;
  1568. };
  1569. struct Exception_t : public RuntimeObject
  1570. {
  1571. String_t* ____className;
  1572. String_t* ____message;
  1573. RuntimeObject* ____data;
  1574. Exception_t* ____innerException;
  1575. String_t* ____helpURL;
  1576. RuntimeObject* ____stackTrace;
  1577. String_t* ____stackTraceString;
  1578. String_t* ____remoteStackTraceString;
  1579. int32_t ____remoteStackIndex;
  1580. RuntimeObject* ____dynamicMethods;
  1581. int32_t ____HResult;
  1582. String_t* ____source;
  1583. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  1584. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  1585. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips;
  1586. int32_t ___caught_in_unmanaged;
  1587. };
  1588. struct Exception_t_marshaled_pinvoke
  1589. {
  1590. char* ____className;
  1591. char* ____message;
  1592. RuntimeObject* ____data;
  1593. Exception_t_marshaled_pinvoke* ____innerException;
  1594. char* ____helpURL;
  1595. Il2CppIUnknown* ____stackTrace;
  1596. char* ____stackTraceString;
  1597. char* ____remoteStackTraceString;
  1598. int32_t ____remoteStackIndex;
  1599. Il2CppIUnknown* ____dynamicMethods;
  1600. int32_t ____HResult;
  1601. char* ____source;
  1602. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  1603. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  1604. Il2CppSafeArray* ___native_trace_ips;
  1605. int32_t ___caught_in_unmanaged;
  1606. };
  1607. struct Exception_t_marshaled_com
  1608. {
  1609. Il2CppChar* ____className;
  1610. Il2CppChar* ____message;
  1611. RuntimeObject* ____data;
  1612. Exception_t_marshaled_com* ____innerException;
  1613. Il2CppChar* ____helpURL;
  1614. Il2CppIUnknown* ____stackTrace;
  1615. Il2CppChar* ____stackTraceString;
  1616. Il2CppChar* ____remoteStackTraceString;
  1617. int32_t ____remoteStackIndex;
  1618. Il2CppIUnknown* ____dynamicMethods;
  1619. int32_t ____HResult;
  1620. Il2CppChar* ____source;
  1621. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager;
  1622. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces;
  1623. Il2CppSafeArray* ___native_trace_ips;
  1624. int32_t ___caught_in_unmanaged;
  1625. };
  1626. struct GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC
  1627. {
  1628. intptr_t ___handle;
  1629. };
  1630. struct InsertionBehavior_tAD0393881947C559238D7041A36917BEE6E2C7B1
  1631. {
  1632. uint8_t ___value__;
  1633. };
  1634. struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
  1635. {
  1636. intptr_t ___value;
  1637. };
  1638. struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
  1639. {
  1640. int32_t ___value__;
  1641. };
  1642. struct BufferAllocatedReason_tC634777F90531E955A9AFAE98241EDB0DFA88FAC
  1643. {
  1644. int32_t ___value__;
  1645. };
  1646. struct EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D
  1647. {
  1648. intptr_t ___U3CDataPointerU3Ek__BackingField;
  1649. int32_t ___U3CSizeU3Ek__BackingField;
  1650. int32_t ___U3CReservedU3Ek__BackingField;
  1651. };
  1652. struct MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD
  1653. {
  1654. void* ____pointer;
  1655. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ____handle;
  1656. RuntimeObject* ____pinnable;
  1657. };
  1658. struct MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_pinvoke
  1659. {
  1660. void* ____pointer;
  1661. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ____handle;
  1662. RuntimeObject* ____pinnable;
  1663. };
  1664. struct MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_com
  1665. {
  1666. void* ____pointer;
  1667. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ____handle;
  1668. RuntimeObject* ____pinnable;
  1669. };
  1670. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
  1671. {
  1672. RuntimeObject* ___m_additionalContext;
  1673. int32_t ___m_state;
  1674. };
  1675. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
  1676. {
  1677. Il2CppIUnknown* ___m_additionalContext;
  1678. int32_t ___m_state;
  1679. };
  1680. struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
  1681. {
  1682. Il2CppIUnknown* ___m_additionalContext;
  1683. int32_t ___m_state;
  1684. };
  1685. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  1686. {
  1687. };
  1688. struct Type_t : public MemberInfo_t
  1689. {
  1690. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
  1691. };
  1692. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1693. {
  1694. String_t* ____paramName;
  1695. };
  1696. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1697. {
  1698. };
  1699. struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1700. {
  1701. };
  1702. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1703. {
  1704. };
  1705. struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1706. {
  1707. };
  1708. struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
  1709. {
  1710. };
  1711. struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
  1712. {
  1713. RuntimeObject* ____actualValue;
  1714. };
  1715. struct ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB : public InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB
  1716. {
  1717. String_t* ____objectName;
  1718. };
  1719. struct PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A : public NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A
  1720. {
  1721. };
  1722. struct ThrowStub_t98574FADF548B70B1F425B46CC940CEC3C38FB5F : public ObjectDisposedException_tC5FB29E8E980E2010A2F6A5B9B791089419F89EB
  1723. {
  1724. };
  1725. struct EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields
  1726. {
  1727. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___Value;
  1728. };
  1729. struct EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8_StaticFields
  1730. {
  1731. EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8* ___defaultComparer;
  1732. };
  1733. struct EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A_StaticFields
  1734. {
  1735. EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A* ___defaultComparer;
  1736. };
  1737. struct U3CPrivateImplementationDetailsU3E_t9FFB0BEB067161CE52A63D5857FEA61F74F17A50_StaticFields
  1738. {
  1739. __StaticArrayInitTypeSizeU3D64_t902DC2FD85EE7E9E3E2AC6CEB41D6E2EDF8C6BC5 ___001D686DB504E20C792EAA07FE09224A45FF328E24A80072D04D16ABC5C2B5D2;
  1740. __StaticArrayInitTypeSizeU3D170_tD5DDF5B1A4672BA6F4CB986B6CB5E4C8DA842155 ___021022D5891F99B3B525763EB77BAEC69B107268F560721F5060FCDBD4D5AAE8;
  1741. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___042957A0DB5FF2D38A343AC5AE5F8635B88F10C32EB87A238B1DFB4756468476;
  1742. __StaticArrayInitTypeSizeU3D56_tCF60E23359634B97A792A75277ACC2176949BCE7 ___07FA6E88C946B2528C09C16C2FB8E9CDA49AFFAFC601774C437FD9F2DF3ECE01;
  1743. __StaticArrayInitTypeSizeU3D84_tD7894A8DC44B8037ABDA03237AC9ED587ED067D3 ___0C496C9AE05419BD25256D0EF4F31AFD291119F14B8BD683BF1774F91E08659D;
  1744. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___0E499E7743BCDFF289B85890E4DFDD635594DB16246DC094C3C19556B6C1262C;
  1745. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___0F9E3C7E66CDEF5C44FA29E65CA676C480F7A2A4A067F70107FDC292C68D38B0;
  1746. __StaticArrayInitTypeSizeU3D76_t7FD69A5C941D293CE74920A6345BA98571A64A61 ___1199C3B39A2FA058EFF5B3829616AE81EE2B59A51D89C107A5FA4B6FEF95DD16;
  1747. __StaticArrayInitTypeSizeU3D640_t910C17DFA2BEC9D837C794531BFFFE8A70E81109 ___125CF2084D7EEC18DC9795BE4BAA221655C0EABAB89E90A74FB0370378A60293;
  1748. __StaticArrayInitTypeSizeU3D2100_t88D645A2CDCA331608377780128DA8BFC74942DE ___12D518BA10F3DD1A331E65FBD4C330930C0A0BD9F50F37BE0BDF596E964B9A78;
  1749. __StaticArrayInitTypeSizeU3D128_t10A33C7E461046D5ECA4CF4B170F59664B1C43AF ___195ABC1ABB69B6BD65F20ACAFA79EED2D330BF513E25C830F24B8A78D8703446;
  1750. __StaticArrayInitTypeSizeU3D10_t5C0BD3C2F2400B4CC3D119A9A4D6BE6F36BED9B4 ___1A07BC77B9912D8D87E9B28E0167F53A9B09BB017B35A35F3913989C9440A60B;
  1751. __StaticArrayInitTypeSizeU3D1450_t1FAC416BA849625CD3D95A1981F559A2F2DE0E7C ___1B9CC34A0CF8DBCC350E200673FAC4124DDAD581F1FC2C16FF9A1C0154691687;
  1752. __StaticArrayInitTypeSizeU3D360_tD14687B8AE6042547DA97E61DFF1BC57C0AABB00 ___1C4B3A80ED7AEC83916479BCE280E1258D5785D07F0EA22A5E27592ACCAE692B;
  1753. __StaticArrayInitTypeSizeU3D42_t2A4EC2E868CF39CFD190BCF4A4FD68F75532504A ___1F38DEB3F70291588D06D3830D0D4241CE0570C9F4EE8B00F606C4753EB016E2;
  1754. __StaticArrayInitTypeSizeU3D10_t5C0BD3C2F2400B4CC3D119A9A4D6BE6F36BED9B4 ___215E3E0B11A214B3198654E87B3D953AC8FB1ABC7045AF841A7C4892624BDE49;
  1755. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___2403FBEA85D0741C5727760E97EF16C9BF23294F21C0F1265A4BAF7F22202A64;
  1756. __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3 ___24CB9F17C8326D8BB8EC908716519DF7F265AE825F0DD13BB04E03A90B07D90E;
  1757. __StaticArrayInitTypeSizeU3D76_t7FD69A5C941D293CE74920A6345BA98571A64A61 ___25308BAB47481701F1E861B1EA4F2409E73ABB14E9579C26DF4ABE440A0DCF0A;
  1758. __StaticArrayInitTypeSizeU3D3132_tF0F1005A79A2387D724DFD9EE4EDC366B0A4914C ___25E3E48132FBDBE9B7C0C6C54D7C10A5DE12A105AA3E5DE2A0DC808BF245B7A5;
  1759. __StaticArrayInitTypeSizeU3D3_tE200BA77B70F8D0805BDB2C5561AAB11A9B11312 ___2AC9A6746ACA543AF8DFF39894CFE8173AFBA21EB01C6FAE33D52947222855EF;
  1760. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___2CCF4119215BDAD102DA7AD5B57E0E6CA19CC8FF5524856FC58907E824213E1F;
  1761. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___3444EB31231B2CCC1B05C7A44EBD1B2A009C1D9977A99B453F52E2F81DD6C32F;
  1762. __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3 ___3D95E4501B1964D7FCE16E3F5682A038752B462357D87343880B1E819F6163FE;
  1763. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___3F62692E2AD5078353EC4471A13421A61EE493294CF59DC66626A6EF9CCCD2C4;
  1764. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___42E1421FC2A5A6A33E964D7EB9603EB101818D858DDA09B2BC9B5A888C1C351C;
  1765. __StaticArrayInitTypeSizeU3D6_t2D20738447B6F1222D7EE2D5D686783F1457713B ___44D066BAE9848B4A4B2C31F1854666526A32D0588635569423BDA1DA303C97DF;
  1766. __StaticArrayInitTypeSizeU3D120_tD5C6CE4469120025887663C1D22BD39721D06413 ___4623CA5867960AA898AA1F65E720CD5ECD3552542E0C6F6FB65B21D14DD1CBC2;
  1767. __StaticArrayInitTypeSizeU3D48_tB7BA0D45E70CDE989C734E0E5B52A7C3038E5116 ___4800FBFC4566EB02D1727A4B1C949CCBC7535C216A0766564C199308631B5DD6;
  1768. __StaticArrayInitTypeSizeU3D4096_tBC12C9D01469CC5942ED025E4769CBD57E2A3669 ___493402F3E4397B2945B16273E795816C0BDF80F76F42FCAA75F3DF2E215ABC1B;
  1769. __StaticArrayInitTypeSizeU3D174_tB1C80F56568C4165B636338385647ABAEF02FDA6 ___494C32E1A18F6E8AD8ED5FAB0A5AF07F801BE7AF3C936942B020918CE2953046;
  1770. __StaticArrayInitTypeSizeU3D2382_tE85B295E3B513D28493BAAC03ABC97A0349EE630 ___4E0B9E024FA510B6F03C92D95BB204E78CDC6E3FD2EC8D35787B7BC76F0655A0;
  1771. __StaticArrayInitTypeSizeU3D44_t16AF03EDFEC5FF23E410BCDD3A07378E36AB6EFE ___508085E0DDEEA9CE48BFAE98CEC779F8D06301AE973555D37680D08190CAFA70;
  1772. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___510FDFA4743E58DD45DCDD7CB4F8509BF6294CC1D1D4958CA30A9E7604973006;
  1773. __StaticArrayInitTypeSizeU3D42_t2A4EC2E868CF39CFD190BCF4A4FD68F75532504A ___5292FD0A8E62FCCBE41F34EFE7575D097990A66FE23B3507971C5BF272A4362E;
  1774. __StaticArrayInitTypeSizeU3D20_t548A67B8FAEBE929F5BE1C5FA92A7708E5A34C85 ___533B8C444F951E83EFF7305E3807B66CE0005DE0A2D0A44873C130895A3BE6AA;
  1775. __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89 ___543172FF9822CE5240DF89FF3AD8C7FD9824F97D0EED9B1432E60345FBBDE9A9;
  1776. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___55D0BF716B334D123E0088CFB3F8E2FEA17AF5025BB527F95EEB09BA978EA329;
  1777. __StaticArrayInitTypeSizeU3D10800_tAF97D91E5007DF1AE1150F5C33EF60959135EBB5 ___56073E3CC3FC817690CC306D0DB7EA63EBCB0801359567CA44CA3D3B9BF63854;
  1778. __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89 ___5857EE4CE98BFABBD62B385C1098507DD0052FF3951043AAD6A1DABD495F18AA;
  1779. __StaticArrayInitTypeSizeU3D32_tEC324F451D326CED5BF4941A609638F08792EAF0 ___5DF6E0E2761359D30A8275058E299FCC0381534545F55CF43E41983F5D4C9456;
  1780. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___5EC4E50DA95A113769D73E5F7F8221A876185CEE6498ABB16FBB9F0563C15BBF;
  1781. __StaticArrayInitTypeSizeU3D94_tB88EB12652D5B06365F5A3B3AA4967DA5E6D724B ___61D639BE11384EE21CDE2B40357F4F9D80A106C97C592D18A9F4CAA442CA5D31;
  1782. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___62E6F13B53D67FDD780E20D89A6E8EE503B197AC16AC3F1D2571C147FDD324C9;
  1783. __StaticArrayInitTypeSizeU3D2048_t629933D99218856BC762A592B03108640E9B0355 ___668BB69E184E0C32DC3BC488001C506C87EE5A95C7E7B6B87D24C3A6DC779956;
  1784. __StaticArrayInitTypeSizeU3D48_tB7BA0D45E70CDE989C734E0E5B52A7C3038E5116 ___6708B572BDBE5D5E79701DBB9744AF74B50FED7608218F2D7BF1B5D87E5A53ED;
  1785. __StaticArrayInitTypeSizeU3D648_tA7C66768813068A9779D5A0CCD24D484326985EE ___67856A16DB0550FDAB4D1A9B208B0C155C4679CA116BF867B74ED2A0AA4D2955;
  1786. __StaticArrayInitTypeSizeU3D1320_t83F802652FA7AD655BD4CE52A23BBD51DF23BDE7 ___692DE452EE427272A5F6154F04360D24165B56693B08F60D93127DEDC12D1DDE;
  1787. __StaticArrayInitTypeSizeU3D82_t61F86168D26CF20B36247C509DC3C871315ED74D ___6DABE7D1BCE5A165B668653474D7F5F3680A7FBC30EA3F3FC3FEB1790BD659B5;
  1788. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___6DC92D3617F0357376502FBA4CDD465B5423818DABE8B2CA1A06E1351F2F1C85;
  1789. __StaticArrayInitTypeSizeU3D212_tFBB5CD331D3374EF82FB51954D58678789BFAB8A ___71F7F6B226CBC11C8B26D506869FAE022928427389882579DB316F36FF34A096;
  1790. __StaticArrayInitTypeSizeU3D2048_t629933D99218856BC762A592B03108640E9B0355 ___73F5D95C401726B2C92EC96A696BA15F0E5A5C6DD9AC6BEB3736A81772A11531;
  1791. __StaticArrayInitTypeSizeU3D288_t26388A829D91CAEC8CC20855987F596B6D71DB51 ___74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B20;
  1792. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___74EF7306E7452D6859B6463CE496B8DF30925F69E1B2969E1F3F34BBC9C6AF04;
  1793. __StaticArrayInitTypeSizeU3D761_t64E16179D3D94428B9E5AF52F0529EA60D1FC9BA ___765BD07ED3CB498A599FFB48B31E077C45B4C2C37CD1547CEA27E60655CF21B6;
  1794. __StaticArrayInitTypeSizeU3D120_tD5C6CE4469120025887663C1D22BD39721D06413 ___78AD7906208AA1E531D0C1100062DE3D252210B1E4214061294A0BB7C94762B8;
  1795. __StaticArrayInitTypeSizeU3D1472_tCB6910E7C4264AC68C8166BF9509CA9C07C69070 ___7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D0696;
  1796. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___7F777906B0704EB248888E491577584D5BEBE71B375BD595A06444390B471915;
  1797. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___801494072CDD59E61F9AA9345A80D045378705DFDCE94902C22EAEAE049BE780;
  1798. int64_t ___819B40F8CF7DC49B4275955A17C10239F1BBBB3BF96E26E25ED844B96B645D7F;
  1799. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___8259E3EBA4D41CA02AE5322BBD280034A9C9860D9CD0D2038139FC9EBE6B6C77;
  1800. int64_t ___82B100804CE219CD73E155C7C6457FCF04EA539DE5B19F4736E800098714EB21;
  1801. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___861FD05B0EAD3D0AA9418B140CC37846BBC5F195214D90CEF42919D1E36EED10;
  1802. __StaticArrayInitTypeSizeU3D998_t3372981B27F1A388EC4F6F6F01BB32C9AB3E6E6E ___86BDA34D2165AC08F2DE4918B302E44205CDEA674FCA7F2C7F56D4F12D8B0C73;
  1803. int64_t ___8BFD94DEAAC0F168DC8B50A00AC120A113B550B68FEF344F807D503D1A6E5DED;
  1804. __StaticArrayInitTypeSizeU3D1665_t4CB4CE1056FC98C5BAB53D5F6D5F1F0B8CEBA06D ___8CCE27079B32C13BB310169A6AD26AE419CDC98B7E2EFD3CC9997257F4BC1DEF;
  1805. __StaticArrayInitTypeSizeU3D5952_tFA61BCE25F463DACAE80095EF7F54BF3C32EC5FD ___9086502742CE7F0595B57A4E5B32901FF4CF97959B92F7E91A435E4765AC1115;
  1806. __StaticArrayInitTypeSizeU3D336_tCE45B5681EF21AE25502E6165F44A12AA857A970 ___93B42898102ACB2421875C45676880B8A07390D8DF0E1EE85C5D1AA26964B0C6;
  1807. __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89 ___93F28AF88A06482BE13F8D0354B6A7676DDAED573EA3938C50F6E53E6D6BB0B6;
  1808. __StaticArrayInitTypeSizeU3D174_tB1C80F56568C4165B636338385647ABAEF02FDA6 ___95BDE712712F10D07813AE3DEEA40D1F38E3FCF1A92CC435F17A326CC22242EB;
  1809. __StaticArrayInitTypeSizeU3D262_t451C912E08CF973D9DB4ED4830AA613DDAAE1D37 ___964889A5283FD0A3DFC8AE256721E6F67B8212FD6841AB1C821DE3134DE79B07;
  1810. __StaticArrayInitTypeSizeU3D15_tFF02C3CB329BAAB88B3F50AE2C9AFD21390048D7 ___96E3FDE919EC36694EFBEC22FEF80F84EE640CC5E46CED07C3E65AC04607C7D6;
  1811. __StaticArrayInitTypeSizeU3D36_t5C0EDBE11BB2C6682A10956FD7BD0D97A46E3BA4 ___9960C7FC60CDD325C8A2A00995BE7064EAC3F6295C6A5C4E797D2281846131E4;
  1812. __StaticArrayInitTypeSizeU3D44_t16AF03EDFEC5FF23E410BCDD3A07378E36AB6EFE ___99E66DACA3EFF94776AF1258E0E5B2F4DF2900E4EA32351B0DF37A87F2426B1F;
  1813. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___A252A93D042C5E2453990C2829A425C6DD749CCDCDF13DB58C11BBC78E8D3CE9;
  1814. __StaticArrayInitTypeSizeU3D120_tD5C6CE4469120025887663C1D22BD39721D06413 ___A2DFDF9C2CED8BB1C0B9B06064345ACC9C22DFE5FEC9976FF061F0994451519B;
  1815. __StaticArrayInitTypeSizeU3D76_t7FD69A5C941D293CE74920A6345BA98571A64A61 ___A2EC7CB9B0FE89F9A9BEA547D773225AFE6E4535DF28325A0D6CD7A5E2D20376;
  1816. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___A30E1152CFB528AE968FAC58E83BBEB3611BFDE2E6CF60B4FA9535A7D0A9B8EA;
  1817. __StaticArrayInitTypeSizeU3D40_t1829E21A9E581C04E0E6E428BCDF38D218380C08 ___A516EECB41051151F0183A8B0B6F6693C43F7D9E1815F85CAAAB18E00A5269A2;
  1818. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___AAF4528994DD7C464F43C131F6CD44DF41ACC18462C95877252FFC7EAC0164EF;
  1819. __StaticArrayInitTypeSizeU3D1824_tEED832C146866302D5CDAB71CB05AFF5BC34003F ___AB0B9733AAEC4A2806711E41E36D3D0923BAF116156F33445DC2AA58DA5DF877;
  1820. __StaticArrayInitTypeSizeU3D4096_tBC12C9D01469CC5942ED025E4769CBD57E2A3669 ___B215DD70A77190680641703C6DF73729B4583E285AF8B51ACF9086655FB2D0F3;
  1821. __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89 ___B21802DE889E5F4F5344C8E0D366F59B68F886F88EFE45EA5CE01534A3F5C0E5;
  1822. __StaticArrayInitTypeSizeU3D2176_tA278ED4E477855073B05C8EDF2E0D3BC18DE265A ___B55F94CD2F415D0279D7A1AF2265C4D9A90CE47F8C900D5D09AD088796210838;
  1823. __StaticArrayInitTypeSizeU3D36_t5C0EDBE11BB2C6682A10956FD7BD0D97A46E3BA4 ___BABD01C34E7E65E57E4C431281E782B4101CE0644A8090AD6E501F1C6CF2C9DF;
  1824. __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3 ___BB425A9B43E10C921902A25D07A4317DEFF9F606A788672E1B21633C143407F0;
  1825. __StaticArrayInitTypeSizeU3D36_t5C0EDBE11BB2C6682A10956FD7BD0D97A46E3BA4 ___C250CAD28060A4EB63B4C4A643DDA196CCD35FD2FC67FB749ADF4BAC6D62E1A0;
  1826. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___C2D8E5EED6CBEBD8625FC18F81486A7733C04F9B0129FFBE974C68B90308B4F2;
  1827. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___C5733A1245383FBF067B4A9BDB41E3FB8E3A6BDEF37B3D5418F389422875783F;
  1828. __StaticArrayInitTypeSizeU3D1024_tFAF4058252F4F8B582A57FE003804BDA44C97A07 ___C8EC70AC5A448C3A45CF1DFCC1375BE4E80DC6793E97D5E89BD97A0DC232B2E3;
  1829. __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3 ___C95D810E738DB5F591EE691CE884EED2F110D9F82B1F7A8BE6ED257FDF4CDBEB;
  1830. __StaticArrayInitTypeSizeU3D130_t3A1579E4920F810DB34F519DA2EA8410C6FF9A3E ___C9830DF6956357ACE51CE1F82298578B36EB45A0CFDB8AEC5B9FDA7DB17E8063;
  1831. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___CAF8A46B3A07E26F84FE849B57A877051A0D06194B1C057985446B64BCC6E016;
  1832. __StaticArrayInitTypeSizeU3D36_t5C0EDBE11BB2C6682A10956FD7BD0D97A46E3BA4 ___CAFFFC9D15E4037EE8FBDB1A45DFE456F0936BDC7310F1882EAF14B706A76658;
  1833. __StaticArrayInitTypeSizeU3D4096_tBC12C9D01469CC5942ED025E4769CBD57E2A3669 ___CE11D6DEAFFC6D6EF6030E30E7444C933E6261F32AA737064EF0446C219ECE22;
  1834. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___D1A99909A2923269BB67E72C1AED693F74961BDA58360FCC133007740CEBF5F1;
  1835. __StaticArrayInitTypeSizeU3D6_t2D20738447B6F1222D7EE2D5D686783F1457713B ___D3B16F8D71CB719B941527D5A1ADA7ED83F4EB967FEE117DDA2FE4021E1D283F;
  1836. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___D503954AE2C3616EA32CEB0D66F5B2E119D03CE722773E5D7E1A8BC8F1803631;
  1837. __StaticArrayInitTypeSizeU3D172_t50A59F10FF3AFEB82AF45171BD2A55F079B975D6 ___D6691EE5A533DE7E0859066942261B24D0C836D7EE016D2251377BFEE40FEA15;
  1838. __StaticArrayInitTypeSizeU3D2048_t629933D99218856BC762A592B03108640E9B0355 ___D870074914025E855AA5985A2D6778F1E277036BF9C9F03DEC61F3C496FEC35C;
  1839. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___D896D464C3726A21162F271ACB711464AD07EA9C9CE78E0297FD0DE934471FA6;
  1840. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___D8A29F3D197FBB54CF9F4B105AFBA6B1257ADF6449F0184F843380AAAA24639C;
  1841. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___DCDCF594464B904F763D4CE53B1DBE08A47E551AE86FD5D61F63FD0C3313FDC3;
  1842. __StaticArrayInitTypeSizeU3D2350_t06B3679372D33ED00832516310EE74D35B2DF1CC ___DCE88EE5233B9D0FD0D7A6222C82BC3AEE83B15E9992F939B17AB40530DB555C;
  1843. __StaticArrayInitTypeSizeU3D152_t93532A5884A6C4A42D7F939692873D7E88D937B1 ___DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D;
  1844. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___DF29A050CD2EBD9DFDC783DB1CC74D3D716DAEC1630A337EE31B9E2E03D34D2D;
  1845. __StaticArrayInitTypeSizeU3D4096_tBC12C9D01469CC5942ED025E4769CBD57E2A3669 ___E148B2057CF0C1595155635E761FB66AAE634C40D8FABC4CE79A2DB8886525D4;
  1846. __StaticArrayInitTypeSizeU3D38_t193D2F75A75C37EA34EAEBC8DCA5E21ED4C7382E ___E2C673A3A737B04369A63F1FB1A30F6E742B066E2CCCD9B1838793CBB5590598;
  1847. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___E32C465157D21F39B3DBF186A98FB02185C63B0260B47247A7A5FDF2B061EAA8;
  1848. __StaticArrayInitTypeSizeU3D24_tF97F937C40D5FC1B94B735A6E7FDE4ED79B3DD14 ___E5F4F6214036DF103321A8A0CE30C2EF935694B4199D52BC538E7EF3F045CB92;
  1849. __StaticArrayInitTypeSizeU3D64_t902DC2FD85EE7E9E3E2AC6CEB41D6E2EDF8C6BC5 ___E768EDCAE10BAB68BB5DF102FDBB8CF4F31B9D60159B44DA3F33ABC36388308B;
  1850. __StaticArrayInitTypeSizeU3D1018_t16F11201DACFD04E420851027A24F477EDAE5B55 ___E8588351183F6F6A7DAD54DC28357628F3C4D4B358AB92A18AE7D08B0D9B0092;
  1851. __StaticArrayInitTypeSizeU3D12_tDFF629F9AABAF6DFF52BD9CFF6BB7164F28D2373 ___EBE07C3718876777F609CD22058F4C3A6CCCC695F5BDE90998DC1E12E0CBE63D;
  1852. __StaticArrayInitTypeSizeU3D32_tEC324F451D326CED5BF4941A609638F08792EAF0 ___EE415D5C3ECC6C8C19F71BCD4E03847F5A15931374A7F5BF88C24B722F04B8FE;
  1853. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___EF39C5A882F9477B2A250BA257247825CEB07FC53C3C984385F2C2E5F8222431;
  1854. __StaticArrayInitTypeSizeU3D16_t78D5A9F654B7A1691F94A57AF19D350AE8F61BC3 ___EF82B163CA8252A793A6E73F57775D843C9A21F65586926EB11893FA8BB603E9;
  1855. __StaticArrayInitTypeSizeU3D240_t52E7E202732F47FF85E3F1FA78FE58AB7999C265 ___F0CF66F9B123DCEBB39C38C5D8E4821D4E94DB593889C506BCA0827036F1B7EB;
  1856. __StaticArrayInitTypeSizeU3D3_tE200BA77B70F8D0805BDB2C5561AAB11A9B11312 ___F1945CD6C19E56B3C1C78943EF5EC18116907A4CA1EFC40A57D48AB1DB7ADFC5;
  1857. __StaticArrayInitTypeSizeU3D256_t776C4326DA3CB895C8BBF29F264C3A9CC48AE143 ___F2830F044682E33B39018B5912634835B641562914E192CA66C654F5E4492FA8;
  1858. __StaticArrayInitTypeSizeU3D72_t384936810508E8786A5A026D6D7412465AC6F3AC ___F4BD8144313C3B67E191C6F3CD8B00540FF1809837C5BCA5C2FDA0D518681563;
  1859. __StaticArrayInitTypeSizeU3D1024_tFAF4058252F4F8B582A57FE003804BDA44C97A07 ___F7D2AD02ED768134B31339AB059D864789E0A60090CC368B3881EB0631BBAF93;
  1860. __StaticArrayInitTypeSizeU3D212_tFBB5CD331D3374EF82FB51954D58678789BFAB8A ___F7D381AF73D85950E0B064CF1AA8F14938A1F38084B46CE36AAEFE81BEF739F3;
  1861. __StaticArrayInitTypeSizeU3D52_t9748BC29170AC89E2D725B2EFAAC4F886C4C4B89 ___FADB218011E7702BB9575D0C32A685DA10B5C72EB809BD9A955DB1C76E4D8315;
  1862. __StaticArrayInitTypeSizeU3D1208_t448FE03E395F60069921A133A51971348403E284 ___FB2089AF82E09593374B65EC2440779FDCF5DD6DA07D26E57AF6790667B937CD;
  1863. __StaticArrayInitTypeSizeU3D240_t52E7E202732F47FF85E3F1FA78FE58AB7999C265 ___FD68700E95459C5E7A49C5830F8BD0A9BA4BD171252663D8066B09E7768C5C5D;
  1864. __StaticArrayInitTypeSizeU3D24_tF97F937C40D5FC1B94B735A6E7FDE4ED79B3DD14 ___FEC387BA57A54BB6066E4CA8A4F9C0FF9C36B9CBD6600C3683F6FB1BDB5077EB;
  1865. };
  1866. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields
  1867. {
  1868. ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* ___s_serializationInfoTable;
  1869. };
  1870. struct String_t_StaticFields
  1871. {
  1872. String_t* ___Empty;
  1873. };
  1874. struct ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields
  1875. {
  1876. RuntimeObject* ___s_dummyObject;
  1877. };
  1878. struct ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_StaticFields
  1879. {
  1880. ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* ___Log;
  1881. };
  1882. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  1883. {
  1884. String_t* ___TrueString;
  1885. String_t* ___FalseString;
  1886. };
  1887. struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields
  1888. {
  1889. CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* ___Log;
  1890. };
  1891. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  1892. {
  1893. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
  1894. };
  1895. struct Guid_t_StaticFields
  1896. {
  1897. Guid_t ___Empty;
  1898. };
  1899. struct IntPtr_t_StaticFields
  1900. {
  1901. intptr_t ___Zero;
  1902. };
  1903. struct SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_StaticFields
  1904. {
  1905. int32_t ___SpinCountforSpinBeforeWait;
  1906. };
  1907. struct Exception_t_StaticFields
  1908. {
  1909. RuntimeObject* ___s_EDILock;
  1910. };
  1911. struct Type_t_StaticFields
  1912. {
  1913. Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
  1914. Il2CppChar ___Delimiter;
  1915. TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
  1916. RuntimeObject* ___Missing;
  1917. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
  1918. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
  1919. MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
  1920. };
  1921. struct SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_StaticFields
  1922. {
  1923. String_t* ___s_nullMessage;
  1924. };
  1925. #ifdef __clang__
  1926. #pragma clang diagnostic pop
  1927. #endif
  1928. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  1929. {
  1930. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  1931. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  1932. {
  1933. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1934. return m_Items[index];
  1935. }
  1936. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  1937. {
  1938. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1939. return m_Items + index;
  1940. }
  1941. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  1942. {
  1943. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1944. m_Items[index] = value;
  1945. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1946. }
  1947. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  1948. {
  1949. return m_Items[index];
  1950. }
  1951. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1952. {
  1953. return m_Items + index;
  1954. }
  1955. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  1956. {
  1957. m_Items[index] = value;
  1958. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1959. }
  1960. };
  1961. struct bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587 : public RuntimeArray
  1962. {
  1963. ALIGN_FIELD (8) bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E m_Items[1];
  1964. inline bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E GetAt(il2cpp_array_size_t index) const
  1965. {
  1966. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1967. return m_Items[index];
  1968. }
  1969. inline bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E* GetAddressAt(il2cpp_array_size_t index)
  1970. {
  1971. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1972. return m_Items + index;
  1973. }
  1974. inline void SetAt(il2cpp_array_size_t index, bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E value)
  1975. {
  1976. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1977. m_Items[index] = value;
  1978. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
  1979. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  1980. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___val), (void*)NULL);
  1981. #endif
  1982. }
  1983. inline bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E GetAtUnchecked(il2cpp_array_size_t index) const
  1984. {
  1985. return m_Items[index];
  1986. }
  1987. inline bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1988. {
  1989. return m_Items + index;
  1990. }
  1991. inline void SetAtUnchecked(il2cpp_array_size_t index, bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E value)
  1992. {
  1993. m_Items[index] = value;
  1994. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
  1995. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  1996. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___val), (void*)NULL);
  1997. #endif
  1998. }
  1999. };
  2000. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  2001. {
  2002. ALIGN_FIELD (8) uint8_t m_Items[1];
  2003. inline uint8_t GetAt(il2cpp_array_size_t index) const
  2004. {
  2005. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2006. return m_Items[index];
  2007. }
  2008. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  2009. {
  2010. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2011. return m_Items + index;
  2012. }
  2013. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  2014. {
  2015. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2016. m_Items[index] = value;
  2017. }
  2018. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  2019. {
  2020. return m_Items[index];
  2021. }
  2022. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  2023. {
  2024. return m_Items + index;
  2025. }
  2026. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  2027. {
  2028. m_Items[index] = value;
  2029. }
  2030. };
  2031. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
  2032. {
  2033. ALIGN_FIELD (8) String_t* m_Items[1];
  2034. inline String_t* GetAt(il2cpp_array_size_t index) const
  2035. {
  2036. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2037. return m_Items[index];
  2038. }
  2039. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  2040. {
  2041. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2042. return m_Items + index;
  2043. }
  2044. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  2045. {
  2046. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  2047. m_Items[index] = value;
  2048. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2049. }
  2050. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  2051. {
  2052. return m_Items[index];
  2053. }
  2054. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  2055. {
  2056. return m_Items + index;
  2057. }
  2058. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  2059. {
  2060. m_Items[index] = value;
  2061. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  2062. }
  2063. };
  2064. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (const RuntimeMethod* method) ;
  2065. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* LazyInitializer_EnsureInitialized_TisRuntimeObject_m153BCA24E1AB65004A192DD74C0506DE22FE5349_gshared (RuntimeObject** ___0_target, const RuntimeMethod* method) ;
  2066. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  2067. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
  2068. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_m51E45FAFE5B1D6E9FDA123477422367F1F215DE6_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
  2069. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD_gshared (EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8* __this, const RuntimeMethod* method) ;
  2070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer_1__ctor_mA0D5DF71A4976E2FD4C77C93A93720BEBCBE0DCE_gshared (EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* __this, const RuntimeMethod* method) ;
  2071. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80 (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* __this, const RuntimeMethod* method) ;
  2072. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
  2073. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  2074. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper__ctor_m85C8036358BC3A4F6B6D102D04A1653989F28D7A (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ;
  2075. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
  2076. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
  2077. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  2078. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F (RuntimeArray* __this, const RuntimeMethod* method) ;
  2079. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ;
  2080. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8 (RuntimeArray* __this, RuntimeObject* ___0_value, int32_t ___1_index, const RuntimeMethod* method) ;
  2081. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
  2082. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Sort_mE8B389D13D4164C9E66801A729CF714EDEB512E6 (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
  2083. inline ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline (const RuntimeMethod* method)
  2084. {
  2085. return (( ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* (*) (const RuntimeMethod*))Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline)(method);
  2086. }
  2087. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
  2088. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983 (Type_t* ___0_elementType, int32_t ___1_length, const RuntimeMethod* method) ;
  2089. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList__ctor_mC08FEC5D3AAA674F15A1E6910385B8387B9A4B70 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___0_l, const RuntimeMethod* method) ;
  2090. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  2091. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
  2092. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57 (RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ___0_handle, const RuntimeMethod* method) ;
  2093. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
  2094. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  2095. inline ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* LazyInitializer_EnsureInitialized_TisConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858_m86148F5434156C4EBFE958A775770256FDFA12CF (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858** ___0_target, const RuntimeMethod* method)
  2096. {
  2097. return (( ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* (*) (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858**, const RuntimeMethod*))LazyInitializer_EnsureInitialized_TisRuntimeObject_m153BCA24E1AB65004A192DD74C0506DE22FE5349_gshared)(___0_target, method);
  2098. }
  2099. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, float ___1_loadFactor, const RuntimeMethod* method) ;
  2100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, RuntimeObject* ___2_p2, const RuntimeMethod* method) ;
  2101. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m5B7AE10D5E76267579296C8F2CB8464AC2DE8472 (int32_t ___0_min, const RuntimeMethod* method) ;
  2102. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mDDBD0273515277E4386A6D3D1E8F8ADB78D0FFDB (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, float ___1_loadFactor, RuntimeObject* ___2_equalityComparer, const RuntimeMethod* method) ;
  2103. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mFB5BC5BC84CF82F56A816BB71F81DF79648DC97E (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_d, float ___1_loadFactor, const RuntimeMethod* method) ;
  2104. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m62E3F257D81442819A12A041FB525FD8A2289195 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_d, float ___1_loadFactor, RuntimeObject* ___2_equalityComparer, const RuntimeMethod* method) ;
  2105. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* Hashtable_get_SerializationInfoTable_m29B0EBA91904F2C579B7F3BE6A791DE9F1F6C8BC (const RuntimeMethod* method) ;
  2106. inline void ConditionalWeakTable_2_Add_mF98A2811734A37D856C622E7783FD7502AA7F0B7 (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* __this, RuntimeObject* ___0_key, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___1_value, const RuntimeMethod* method)
  2107. {
  2108. (( void (*) (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858*, RuntimeObject*, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37*, const RuntimeMethod*))ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44_gshared)(__this, ___0_key, ___1_value, method);
  2109. }
  2110. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_nvalue, bool ___2_add, const RuntimeMethod* method) ;
  2111. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
  2112. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mDE29E5ABF17000F07880AD49D21C42132A5BA7EC (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, RuntimeObject* ___1_equalityComparer, const RuntimeMethod* method) ;
  2113. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Hashtable_InitHash_mE575CF5A0F7C4EE34ACDEB12597E6FE5A3B13587 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, int32_t ___1_hashsize, uint32_t* ___2_seed, uint32_t* ___3_incr, const RuntimeMethod* method) ;
  2114. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  2115. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyEntries_m5AA0C8FC1FE9E5F6DC2AEB98D18C00919783040B (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
  2116. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF (SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675* __this, const RuntimeMethod* method) ;
  2117. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_ExpandPrime_m9A35EC171AA0EA16F7C9F71EE6FAD5A82565ADB9 (int32_t ___0_oldSize, const RuntimeMethod* method) ;
  2118. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_m359C272F11FE496EAD29CD875CE080464AE5C688 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_newsize, const RuntimeMethod* method) ;
  2119. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_putEntry_mAB0F8F0E2148856D87749F9623EFBEF913323C4B (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ___0_newBuckets, RuntimeObject* ___1_key, RuntimeObject* ___2_nvalue, int32_t ___3_hashcode, const RuntimeMethod* method) ;
  2120. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashtableEnumerator__ctor_m39524FF87DAA4FBB78BED54175E69215AE47D2DC (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_hashtable, int32_t ___1_getObjRetType, const RuntimeMethod* method) ;
  2121. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection__ctor_m2F5EB768C82E9BCAA0CAB8823EFE996749ABFDDD (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_hashtable, const RuntimeMethod* method) ;
  2122. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m9EE64DC0395F01EB90DC1A0863F4B41A2501E226 (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_hashtable, const RuntimeMethod* method) ;
  2123. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_expand_m0FF616AD3323989E34824B1AE634759C3BAF8937 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
  2124. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_mF4C7E0C7240002F6E5FDFF32EF77C06EF2729DB5 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method) ;
  2125. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable__ctor_mFFE7535A50219583B15ACC748FE3E7CB6B52EEAA (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_table, const RuntimeMethod* method) ;
  2126. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  2127. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ;
  2128. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m6237DBFE29011A85D27E76E64BD806D7BFC4D46C (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, float ___1_value, const RuntimeMethod* method) ;
  2129. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, int32_t ___1_value, const RuntimeMethod* method) ;
  2130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, RuntimeObject* ___1_value, Type_t* ___2_type, const RuntimeMethod* method) ;
  2131. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_Comparer_m39BC17C080DFDF285593D156478FFECCB1928F36_inline (CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* __this, const RuntimeMethod* method) ;
  2132. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_HashCodeProvider_mE25935574860D4D71106E4BB4F689C4CCB8FF599_inline (CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* __this, const RuntimeMethod* method) ;
  2133. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyKeys_mDD7A5AE7064B9845366D9116BC670A210A1C5AA4 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
  2134. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyValues_mBF30183D730BBFCA6D6313FF616834605B49D8CF (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method) ;
  2135. inline bool ConditionalWeakTable_2_TryGetValue_m8AB467BA44D1FF9EBDB9735CED88B0D67AC6403F (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* __this, RuntimeObject* ___0_key, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37** ___1_value, const RuntimeMethod* method)
  2136. {
  2137. return (( bool (*) (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858*, RuntimeObject*, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37**, const RuntimeMethod*))ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124_gshared)(__this, ___0_key, ___1_value, method);
  2138. }
  2139. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0 (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  2140. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* SerializationInfo_GetEnumerator_m5230A1D4E4B612E90B10E2034C638CD42F667EA6 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, const RuntimeMethod* method) ;
  2141. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SerializationInfoEnumerator_get_Name_m58B6D682B6C829258730C1E952E9099ACDDAE734 (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ;
  2142. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m52370B9D7DEAF095B34C6AE27338067A3A1CF886 (String_t* ___0_s, const RuntimeMethod* method) ;
  2143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  2144. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SerializationInfo_GetSingle_mD3CE2233BB3DE5DC90F2AE4F24C5DBD0C74A4037 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, const RuntimeMethod* method) ;
  2145. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SerializationInfo_GetInt32_m7731402825C7FC8D0673F7610D555615F95E4FB5 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, const RuntimeMethod* method) ;
  2146. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034 (SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* __this, String_t* ___0_name, Type_t* ___1_type, const RuntimeMethod* method) ;
  2147. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SerializationInfoEnumerator_MoveNext_m4F052C960AE85EFED1048CAAAC538AB3714078A6 (SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* __this, const RuntimeMethod* method) ;
  2148. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CompatibleComparer__ctor_mD070CC744D2BA684391418B77E61E24F8E735492 (CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* __this, RuntimeObject* ___0_hashCodeProvider, RuntimeObject* ___1_comparer, const RuntimeMethod* method) ;
  2149. inline bool ConditionalWeakTable_2_Remove_mEA61545EA43662F3718895F4E435A1F3EFB9756E (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  2150. {
  2151. return (( bool (*) (ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858*, RuntimeObject*, const RuntimeMethod*))ConditionalWeakTable_2_Remove_m51E45FAFE5B1D6E9FDA123477422367F1F215DE6_gshared)(__this, ___0_key, method);
  2152. }
  2153. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m53109B9F270C606C6DBA73405F134DA215440A36 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, bool ___0_trash, const RuntimeMethod* method) ;
  2154. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD50422D7B9D147207A33AB5BDC0B7CE963A51056 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
  2155. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1 (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* __this, const RuntimeMethod* method) ;
  2156. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* Hashtable_Synchronized_m6C533F21D7532A6118974AE7634AB28C76765EF5 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_table, const RuntimeMethod* method) ;
  2157. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_mDF751901186604B47C80B7DCC8DCB624FE5664BC (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, const RuntimeMethod* method) ;
  2158. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSource_IsEnabled_m744D6915CB7FFC678DECA5519509ED97D342B0A3 (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, int32_t ___0_level, int64_t ___1_keywords, const RuntimeMethod* method) ;
  2159. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m8609472BD078A398CF4CA9DBF4BBDA1C454096A6 (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, int32_t ___0_eventId, int32_t ___1_arg1, const RuntimeMethod* method) ;
  2160. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__ctor_m0A733DDB35201F79E9DED7B044B5D8484FC5448D (CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* __this, const RuntimeMethod* method) ;
  2161. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  2162. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  2163. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
  2164. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879 (SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method) ;
  2165. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892 (int32_t ___0_capacity, const RuntimeMethod* method) ;
  2166. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  2167. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m3A7D629DAA5E0E36B8A617A911E34F79AF84AE63 (StringBuilder_t* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
  2168. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  2169. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0 (StringBuilder_t* ___0_sb, const RuntimeMethod* method) ;
  2170. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09 (String_t* ___0_resourceFormat, RuntimeObject* ___1_p1, const RuntimeMethod* method) ;
  2171. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678 (uint8_t* __this, const RuntimeMethod* method) ;
  2172. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Environment_GetResourceString_mA14837A574D24E2F2D120D7B5514E849E9986058 (String_t* ___0_key, const RuntimeMethod* method) ;
  2173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Buffer_IndexOfByte_mF43902211DC955885C828233F0D46BAC239B0ECC (uint8_t* ___0_src, uint8_t ___1_value, int32_t ___2_index, int32_t ___3_count, const RuntimeMethod* method) ;
  2174. inline void EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD (EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8* __this, const RuntimeMethod* method)
  2175. {
  2176. (( void (*) (EqualityComparer_1_t209913D8BB9C5DF2E3F26BA94AD53F39604FBFB8*, const RuntimeMethod*))EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD_gshared)(__this, method);
  2177. }
  2178. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  2179. inline void EqualityComparer_1__ctor_m9D692A2446D3F93F9042D7CAC625E36F01658C0C (EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A* __this, const RuntimeMethod* method)
  2180. {
  2181. (( void (*) (EqualityComparer_1_t7DB7FC11B7957026D1FB280BF9E0D8D8DBEE039A*, const RuntimeMethod*))EqualityComparer_1__ctor_mA0D5DF71A4976E2FD4C77C93A93720BEBCBE0DCE_gshared)(__this, method);
  2182. }
  2183. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Guid__ctor_mC52E0191E06C110F9F6E0A417BCA4437D79CC130 (Guid_t* __this, int32_t ___0_a, int16_t ___1_b, int16_t ___2_c, uint8_t ___3_d, uint8_t ___4_e, uint8_t ___5_f, uint8_t ___6_g, uint8_t ___7_h, uint8_t ___8_i, uint8_t ___9_j, uint8_t ___10_k, const RuntimeMethod* method) ;
  2184. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource__ctor_mA6FB74138AB52C540333000C0CEAD367D5072083 (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, Guid_t ___0_eventSourceGuid, String_t* ___1_eventSourceName, const RuntimeMethod* method) ;
  2185. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  2186. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D (void* ___0_value, const RuntimeMethod* method) ;
  2187. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* __this, intptr_t ___0_value, const RuntimeMethod* method) ;
  2188. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* __this, int32_t ___0_value, const RuntimeMethod* method) ;
  2189. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEventCore_m168D78A12127FCD1AF49F42E7E3DB2303035B631 (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, int32_t ___0_eventId, int32_t ___1_eventDataCount, EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* ___2_data, const RuntimeMethod* method) ;
  2190. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_m29A840C8BA6AEBC203406BC9BBED63067788805F (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, int32_t ___0_eventId, int32_t ___1_arg1, int32_t ___2_arg2, int32_t ___3_arg3, const RuntimeMethod* method) ;
  2191. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventSource_WriteEvent_mF3DADFC0459BB9C89B17BCECE51A57C3F4ED7D88 (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, int32_t ___0_eventId, int32_t ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method) ;
  2192. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__ctor_m630817B899F980174697248E423104D06EC63F2E (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, const RuntimeMethod* method) ;
  2193. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHandle__ctor_mBC4C2B7E7F10F5F93EFCF6A3A24D41CE79916C91 (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, void* ___0_pointer, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___1_handle, RuntimeObject* ___2_pinnable, const RuntimeMethod* method) ;
  2194. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* MemoryHandle_get_Pointer_mB37B69B8014746F855683C47FF2E6EC46D656CA8_inline (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, const RuntimeMethod* method) ;
  2195. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843 (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
  2196. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3 (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* __this, const RuntimeMethod* method) ;
  2197. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHandle_Dispose_m1F3EAA54B49EACFC7E489AEF1FF630553FEBE229 (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, const RuntimeMethod* method) ;
  2198. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline (uint32_t ___0_value, const RuntimeMethod* method) ;
  2199. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t BinaryPrimitives_ReverseEndianness_mA698702D91EF4E47FF6F682E4B48F173FF376BDF_inline (uint64_t ___0_value, const RuntimeMethod* method) ;
  2200. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  2201. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
  2202. #ifdef __clang__
  2203. #pragma clang diagnostic push
  2204. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2205. #pragma clang diagnostic ignored "-Wunused-variable"
  2206. #endif
  2207. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper__ctor_m85C8036358BC3A4F6B6D102D04A1653989F28D7A (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_list, const RuntimeMethod* method)
  2208. {
  2209. {
  2210. ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(__this, NULL);
  2211. RuntimeObject* L_0 = ___0_list;
  2212. __this->____list = L_0;
  2213. Il2CppCodeGenWriteBarrier((void**)(&__this->____list), (void*)L_0);
  2214. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = 0;
  2215. return;
  2216. }
  2217. }
  2218. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_set_Capacity_m77C2A344F6F0AD9A78A9439045B58B473A3BA189 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_value, const RuntimeMethod* method)
  2219. {
  2220. {
  2221. int32_t L_0 = ___0_value;
  2222. int32_t L_1;
  2223. L_1 = VirtualFuncInvoker0< int32_t >::Invoke(22, __this);
  2224. if ((((int32_t)L_0) >= ((int32_t)L_1)))
  2225. {
  2226. goto IL_0019;
  2227. }
  2228. }
  2229. {
  2230. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_2 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  2231. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4D1773CA7AF4AE36C001FBC3E1E5DA5574C041FA)), NULL);
  2232. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_set_Capacity_m77C2A344F6F0AD9A78A9439045B58B473A3BA189_RuntimeMethod_var)));
  2233. }
  2234. IL_0019:
  2235. {
  2236. return;
  2237. }
  2238. }
  2239. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IListWrapper_get_Count_mFCCC29BCEE90AA93AF1DE1A6148260DAE2C999F4 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2240. {
  2241. static bool s_Il2CppMethodInitialized;
  2242. if (!s_Il2CppMethodInitialized)
  2243. {
  2244. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2245. s_Il2CppMethodInitialized = true;
  2246. }
  2247. {
  2248. RuntimeObject* L_0 = __this->____list;
  2249. NullCheck(L_0);
  2250. int32_t L_1;
  2251. L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
  2252. return L_1;
  2253. }
  2254. }
  2255. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IListWrapper_get_IsReadOnly_m15F57CFB6FFDC8408E5461F7E95B2645D0F249C7 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2256. {
  2257. static bool s_Il2CppMethodInitialized;
  2258. if (!s_Il2CppMethodInitialized)
  2259. {
  2260. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2261. s_Il2CppMethodInitialized = true;
  2262. }
  2263. {
  2264. RuntimeObject* L_0 = __this->____list;
  2265. NullCheck(L_0);
  2266. bool L_1;
  2267. L_1 = InterfaceFuncInvoker0< bool >::Invoke(5, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
  2268. return L_1;
  2269. }
  2270. }
  2271. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IListWrapper_get_IsFixedSize_mE73C7E3CC37F0041D3F09F594A15630FF6CFF87F (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2272. {
  2273. static bool s_Il2CppMethodInitialized;
  2274. if (!s_Il2CppMethodInitialized)
  2275. {
  2276. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2277. s_Il2CppMethodInitialized = true;
  2278. }
  2279. {
  2280. RuntimeObject* L_0 = __this->____list;
  2281. NullCheck(L_0);
  2282. bool L_1;
  2283. L_1 = InterfaceFuncInvoker0< bool >::Invoke(6, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
  2284. return L_1;
  2285. }
  2286. }
  2287. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IListWrapper_get_IsSynchronized_m7BC7435B64A5D7D2DE3ED72E9BD763847252D8A0 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2288. {
  2289. static bool s_Il2CppMethodInitialized;
  2290. if (!s_Il2CppMethodInitialized)
  2291. {
  2292. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2293. s_Il2CppMethodInitialized = true;
  2294. }
  2295. {
  2296. RuntimeObject* L_0 = __this->____list;
  2297. NullCheck(L_0);
  2298. bool L_1;
  2299. L_1 = InterfaceFuncInvoker0< bool >::Invoke(3, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
  2300. return L_1;
  2301. }
  2302. }
  2303. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IListWrapper_get_Item_mB153A71228139538945E112C2C99C674B9380233 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, const RuntimeMethod* method)
  2304. {
  2305. static bool s_Il2CppMethodInitialized;
  2306. if (!s_Il2CppMethodInitialized)
  2307. {
  2308. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2309. s_Il2CppMethodInitialized = true;
  2310. }
  2311. {
  2312. RuntimeObject* L_0 = __this->____list;
  2313. int32_t L_1 = ___0_index;
  2314. NullCheck(L_0);
  2315. RuntimeObject* L_2;
  2316. L_2 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
  2317. return L_2;
  2318. }
  2319. }
  2320. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_set_Item_m9C4ABF73B67E35BBBCE49634A308F3805ED50991 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method)
  2321. {
  2322. static bool s_Il2CppMethodInitialized;
  2323. if (!s_Il2CppMethodInitialized)
  2324. {
  2325. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2326. s_Il2CppMethodInitialized = true;
  2327. }
  2328. {
  2329. RuntimeObject* L_0 = __this->____list;
  2330. int32_t L_1 = ___0_index;
  2331. RuntimeObject* L_2 = ___1_value;
  2332. NullCheck(L_0);
  2333. InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1, L_2);
  2334. int32_t L_3 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2335. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_3, 1));
  2336. return;
  2337. }
  2338. }
  2339. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IListWrapper_get_SyncRoot_mC47CBC4027BE6B0A793FB2CC742FCAB525605140 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2340. {
  2341. static bool s_Il2CppMethodInitialized;
  2342. if (!s_Il2CppMethodInitialized)
  2343. {
  2344. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2345. s_Il2CppMethodInitialized = true;
  2346. }
  2347. {
  2348. RuntimeObject* L_0 = __this->____list;
  2349. NullCheck(L_0);
  2350. RuntimeObject* L_1;
  2351. L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(2, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0);
  2352. return L_1;
  2353. }
  2354. }
  2355. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IListWrapper_Add_m72AF88B00BB20A50AE19A8CA7E8F40BAFC0B289E (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2356. {
  2357. static bool s_Il2CppMethodInitialized;
  2358. if (!s_Il2CppMethodInitialized)
  2359. {
  2360. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2361. s_Il2CppMethodInitialized = true;
  2362. }
  2363. {
  2364. RuntimeObject* L_0 = __this->____list;
  2365. RuntimeObject* L_1 = ___0_obj;
  2366. NullCheck(L_0);
  2367. int32_t L_2;
  2368. L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(2, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
  2369. int32_t L_3 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2370. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_3, 1));
  2371. return L_2;
  2372. }
  2373. }
  2374. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_AddRange_m2B43E92D24705A4A24E528BF3EB006EEAFDD138F (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_c, const RuntimeMethod* method)
  2375. {
  2376. {
  2377. int32_t L_0;
  2378. L_0 = VirtualFuncInvoker0< int32_t >::Invoke(22, __this);
  2379. RuntimeObject* L_1 = ___0_c;
  2380. VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(40, __this, L_0, L_1);
  2381. return;
  2382. }
  2383. }
  2384. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_Clear_m2531723DAB48EDD240AF1684E9DA6EF53E9658C9 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2385. {
  2386. static bool s_Il2CppMethodInitialized;
  2387. if (!s_Il2CppMethodInitialized)
  2388. {
  2389. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2390. s_Il2CppMethodInitialized = true;
  2391. }
  2392. {
  2393. RuntimeObject* L_0 = __this->____list;
  2394. NullCheck(L_0);
  2395. bool L_1;
  2396. L_1 = InterfaceFuncInvoker0< bool >::Invoke(6, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0);
  2397. if (!L_1)
  2398. {
  2399. goto IL_0018;
  2400. }
  2401. }
  2402. {
  2403. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_2 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  2404. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7331C93BE0BC11AF8C588D87CB6B2725FC603354)), NULL);
  2405. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_Clear_m2531723DAB48EDD240AF1684E9DA6EF53E9658C9_RuntimeMethod_var)));
  2406. }
  2407. IL_0018:
  2408. {
  2409. RuntimeObject* L_3 = __this->____list;
  2410. NullCheck(L_3);
  2411. InterfaceActionInvoker0::Invoke(4, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_3);
  2412. int32_t L_4 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2413. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_4, 1));
  2414. return;
  2415. }
  2416. }
  2417. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IListWrapper_Clone_m8055F167E5C2193884DBBDDF24FF57D39CA59308 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2418. {
  2419. static bool s_Il2CppMethodInitialized;
  2420. if (!s_Il2CppMethodInitialized)
  2421. {
  2422. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187_il2cpp_TypeInfo_var);
  2423. s_Il2CppMethodInitialized = true;
  2424. }
  2425. {
  2426. RuntimeObject* L_0 = __this->____list;
  2427. IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* L_1 = (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187*)il2cpp_codegen_object_new(IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187_il2cpp_TypeInfo_var);
  2428. IListWrapper__ctor_m85C8036358BC3A4F6B6D102D04A1653989F28D7A(L_1, L_0, NULL);
  2429. return L_1;
  2430. }
  2431. }
  2432. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IListWrapper_Contains_mE431DF2A9209002984370403DFBC4F03D0370784 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  2433. {
  2434. static bool s_Il2CppMethodInitialized;
  2435. if (!s_Il2CppMethodInitialized)
  2436. {
  2437. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2438. s_Il2CppMethodInitialized = true;
  2439. }
  2440. {
  2441. RuntimeObject* L_0 = __this->____list;
  2442. RuntimeObject* L_1 = ___0_obj;
  2443. NullCheck(L_0);
  2444. bool L_2;
  2445. L_2 = InterfaceFuncInvoker1< bool, RuntimeObject* >::Invoke(3, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
  2446. return L_2;
  2447. }
  2448. }
  2449. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_CopyTo_m6767F246F664661B5082B1BCDF5551B2A2305FEA (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
  2450. {
  2451. static bool s_Il2CppMethodInitialized;
  2452. if (!s_Il2CppMethodInitialized)
  2453. {
  2454. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2455. s_Il2CppMethodInitialized = true;
  2456. }
  2457. {
  2458. RuntimeObject* L_0 = __this->____list;
  2459. RuntimeArray* L_1 = ___0_array;
  2460. int32_t L_2 = ___1_index;
  2461. NullCheck(L_0);
  2462. InterfaceActionInvoker2< RuntimeArray*, int32_t >::Invoke(0, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_0, L_1, L_2);
  2463. return;
  2464. }
  2465. }
  2466. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, RuntimeArray* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
  2467. {
  2468. static bool s_Il2CppMethodInitialized;
  2469. if (!s_Il2CppMethodInitialized)
  2470. {
  2471. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2472. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2473. s_Il2CppMethodInitialized = true;
  2474. }
  2475. int32_t V_0 = 0;
  2476. String_t* G_B7_0 = NULL;
  2477. {
  2478. RuntimeArray* L_0 = ___1_array;
  2479. if (L_0)
  2480. {
  2481. goto IL_000e;
  2482. }
  2483. }
  2484. {
  2485. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  2486. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  2487. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var)));
  2488. }
  2489. IL_000e:
  2490. {
  2491. int32_t L_2 = ___0_index;
  2492. if ((((int32_t)L_2) < ((int32_t)0)))
  2493. {
  2494. goto IL_0016;
  2495. }
  2496. }
  2497. {
  2498. int32_t L_3 = ___2_arrayIndex;
  2499. if ((((int32_t)L_3) >= ((int32_t)0)))
  2500. {
  2501. goto IL_0031;
  2502. }
  2503. }
  2504. IL_0016:
  2505. {
  2506. int32_t L_4 = ___0_index;
  2507. if ((((int32_t)L_4) < ((int32_t)0)))
  2508. {
  2509. goto IL_0021;
  2510. }
  2511. }
  2512. {
  2513. G_B7_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4));
  2514. goto IL_0026;
  2515. }
  2516. IL_0021:
  2517. {
  2518. G_B7_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1));
  2519. }
  2520. IL_0026:
  2521. {
  2522. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  2523. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, G_B7_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  2524. IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var)));
  2525. }
  2526. IL_0031:
  2527. {
  2528. int32_t L_6 = ___3_count;
  2529. if ((((int32_t)L_6) >= ((int32_t)0)))
  2530. {
  2531. goto IL_0046;
  2532. }
  2533. }
  2534. {
  2535. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  2536. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  2537. IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var)));
  2538. }
  2539. IL_0046:
  2540. {
  2541. RuntimeArray* L_8 = ___1_array;
  2542. NullCheck(L_8);
  2543. int32_t L_9;
  2544. L_9 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_8, NULL);
  2545. int32_t L_10 = ___2_arrayIndex;
  2546. int32_t L_11 = ___3_count;
  2547. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))) >= ((int32_t)L_11)))
  2548. {
  2549. goto IL_005d;
  2550. }
  2551. }
  2552. {
  2553. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  2554. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
  2555. IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var)));
  2556. }
  2557. IL_005d:
  2558. {
  2559. RuntimeArray* L_13 = ___1_array;
  2560. NullCheck(L_13);
  2561. int32_t L_14;
  2562. L_14 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_13, NULL);
  2563. if ((((int32_t)L_14) == ((int32_t)1)))
  2564. {
  2565. goto IL_0076;
  2566. }
  2567. }
  2568. {
  2569. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_15 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  2570. ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  2571. IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var)));
  2572. }
  2573. IL_0076:
  2574. {
  2575. RuntimeObject* L_16 = __this->____list;
  2576. NullCheck(L_16);
  2577. int32_t L_17;
  2578. L_17 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_16);
  2579. int32_t L_18 = ___0_index;
  2580. int32_t L_19 = ___3_count;
  2581. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_17, L_18))) >= ((int32_t)L_19)))
  2582. {
  2583. goto IL_0092;
  2584. }
  2585. }
  2586. {
  2587. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  2588. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
  2589. IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_CopyTo_m79B3F6EB20E2BD8734CA1ABE99043B88D7A01FB1_RuntimeMethod_var)));
  2590. }
  2591. IL_0092:
  2592. {
  2593. int32_t L_21 = ___0_index;
  2594. V_0 = L_21;
  2595. goto IL_00b2;
  2596. }
  2597. IL_0096:
  2598. {
  2599. RuntimeArray* L_22 = ___1_array;
  2600. RuntimeObject* L_23 = __this->____list;
  2601. int32_t L_24 = V_0;
  2602. NullCheck(L_23);
  2603. RuntimeObject* L_25;
  2604. L_25 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_23, L_24);
  2605. int32_t L_26 = ___2_arrayIndex;
  2606. int32_t L_27 = L_26;
  2607. ___2_arrayIndex = ((int32_t)il2cpp_codegen_add(L_27, 1));
  2608. NullCheck(L_22);
  2609. Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_22, L_25, L_27, NULL);
  2610. int32_t L_28 = V_0;
  2611. V_0 = ((int32_t)il2cpp_codegen_add(L_28, 1));
  2612. }
  2613. IL_00b2:
  2614. {
  2615. int32_t L_29 = V_0;
  2616. int32_t L_30 = ___0_index;
  2617. int32_t L_31 = ___3_count;
  2618. if ((((int32_t)L_29) < ((int32_t)((int32_t)il2cpp_codegen_add(L_30, L_31)))))
  2619. {
  2620. goto IL_0096;
  2621. }
  2622. }
  2623. {
  2624. return;
  2625. }
  2626. }
  2627. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* IListWrapper_GetEnumerator_m0D70BD979236635C664E012A17646FC9A68A8EE9 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  2628. {
  2629. static bool s_Il2CppMethodInitialized;
  2630. if (!s_Il2CppMethodInitialized)
  2631. {
  2632. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
  2633. s_Il2CppMethodInitialized = true;
  2634. }
  2635. {
  2636. RuntimeObject* L_0 = __this->____list;
  2637. NullCheck(L_0);
  2638. RuntimeObject* L_1;
  2639. L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_0);
  2640. return L_1;
  2641. }
  2642. }
  2643. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IListWrapper_IndexOf_m7798FBC7BD2A6248FB42A347C37D83A067408229 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  2644. {
  2645. static bool s_Il2CppMethodInitialized;
  2646. if (!s_Il2CppMethodInitialized)
  2647. {
  2648. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2649. s_Il2CppMethodInitialized = true;
  2650. }
  2651. {
  2652. RuntimeObject* L_0 = __this->____list;
  2653. RuntimeObject* L_1 = ___0_value;
  2654. NullCheck(L_0);
  2655. int32_t L_2;
  2656. L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(7, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
  2657. return L_2;
  2658. }
  2659. }
  2660. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_Insert_m6CD0164FBB8E4B11E1FBA712456682908CC15A2A (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, RuntimeObject* ___1_obj, const RuntimeMethod* method)
  2661. {
  2662. static bool s_Il2CppMethodInitialized;
  2663. if (!s_Il2CppMethodInitialized)
  2664. {
  2665. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2666. s_Il2CppMethodInitialized = true;
  2667. }
  2668. {
  2669. RuntimeObject* L_0 = __this->____list;
  2670. int32_t L_1 = ___0_index;
  2671. RuntimeObject* L_2 = ___1_obj;
  2672. NullCheck(L_0);
  2673. InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(8, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1, L_2);
  2674. int32_t L_3 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2675. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_3, 1));
  2676. return;
  2677. }
  2678. }
  2679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_InsertRange_m18EE3C843D1FD0B60D92020835CEFF39FF2FC9B3 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, RuntimeObject* ___1_c, const RuntimeMethod* method)
  2680. {
  2681. static bool s_Il2CppMethodInitialized;
  2682. if (!s_Il2CppMethodInitialized)
  2683. {
  2684. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
  2685. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2686. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var);
  2687. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  2688. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2689. s_Il2CppMethodInitialized = true;
  2690. }
  2691. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* V_0 = NULL;
  2692. RuntimeObject* V_1 = NULL;
  2693. {
  2694. RuntimeObject* L_0 = ___1_c;
  2695. if (L_0)
  2696. {
  2697. goto IL_0013;
  2698. }
  2699. }
  2700. {
  2701. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  2702. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B9FE05484B470B354696B4F06C3B12F71B5BB4A)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral23A1E49ECE323ABF0A2F834678904E1415CBBB18)), NULL);
  2703. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_InsertRange_m18EE3C843D1FD0B60D92020835CEFF39FF2FC9B3_RuntimeMethod_var)));
  2704. }
  2705. IL_0013:
  2706. {
  2707. int32_t L_2 = ___0_index;
  2708. if ((((int32_t)L_2) < ((int32_t)0)))
  2709. {
  2710. goto IL_0020;
  2711. }
  2712. }
  2713. {
  2714. int32_t L_3 = ___0_index;
  2715. int32_t L_4;
  2716. L_4 = VirtualFuncInvoker0< int32_t >::Invoke(22, __this);
  2717. if ((((int32_t)L_3) <= ((int32_t)L_4)))
  2718. {
  2719. goto IL_0030;
  2720. }
  2721. }
  2722. IL_0020:
  2723. {
  2724. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_5 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  2725. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
  2726. IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_InsertRange_m18EE3C843D1FD0B60D92020835CEFF39FF2FC9B3_RuntimeMethod_var)));
  2727. }
  2728. IL_0030:
  2729. {
  2730. RuntimeObject* L_6 = ___1_c;
  2731. NullCheck(L_6);
  2732. int32_t L_7;
  2733. L_7 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_6);
  2734. if ((((int32_t)L_7) <= ((int32_t)0)))
  2735. {
  2736. goto IL_0088;
  2737. }
  2738. }
  2739. {
  2740. RuntimeObject* L_8 = __this->____list;
  2741. V_0 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)IsInstClass((RuntimeObject*)L_8, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var));
  2742. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_9 = V_0;
  2743. if (!L_9)
  2744. {
  2745. goto IL_0052;
  2746. }
  2747. }
  2748. {
  2749. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_10 = V_0;
  2750. int32_t L_11 = ___0_index;
  2751. RuntimeObject* L_12 = ___1_c;
  2752. NullCheck(L_10);
  2753. VirtualActionInvoker2< int32_t, RuntimeObject* >::Invoke(40, L_10, L_11, L_12);
  2754. goto IL_007a;
  2755. }
  2756. IL_0052:
  2757. {
  2758. RuntimeObject* L_13 = ___1_c;
  2759. NullCheck(L_13);
  2760. RuntimeObject* L_14;
  2761. L_14 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IEnumerable_t6331596D5DD37C462B1B8D49CF6B319B00AB7131_il2cpp_TypeInfo_var, L_13);
  2762. V_1 = L_14;
  2763. goto IL_0072;
  2764. }
  2765. IL_005b:
  2766. {
  2767. RuntimeObject* L_15 = __this->____list;
  2768. int32_t L_16 = ___0_index;
  2769. int32_t L_17 = L_16;
  2770. ___0_index = ((int32_t)il2cpp_codegen_add(L_17, 1));
  2771. RuntimeObject* L_18 = V_1;
  2772. NullCheck(L_18);
  2773. RuntimeObject* L_19;
  2774. L_19 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_18);
  2775. NullCheck(L_15);
  2776. InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(8, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_15, L_17, L_19);
  2777. }
  2778. IL_0072:
  2779. {
  2780. RuntimeObject* L_20 = V_1;
  2781. NullCheck(L_20);
  2782. bool L_21;
  2783. L_21 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_20);
  2784. if (L_21)
  2785. {
  2786. goto IL_005b;
  2787. }
  2788. }
  2789. IL_007a:
  2790. {
  2791. int32_t L_22 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2792. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_22, 1));
  2793. }
  2794. IL_0088:
  2795. {
  2796. return;
  2797. }
  2798. }
  2799. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_Remove_mC50253ABEF7C2C8310FED62081F6564AA263E480 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  2800. {
  2801. int32_t V_0 = 0;
  2802. {
  2803. RuntimeObject* L_0 = ___0_value;
  2804. int32_t L_1;
  2805. L_1 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(38, __this, L_0);
  2806. V_0 = L_1;
  2807. int32_t L_2 = V_0;
  2808. if ((((int32_t)L_2) < ((int32_t)0)))
  2809. {
  2810. goto IL_0013;
  2811. }
  2812. }
  2813. {
  2814. int32_t L_3 = V_0;
  2815. VirtualActionInvoker1< int32_t >::Invoke(42, __this, L_3);
  2816. }
  2817. IL_0013:
  2818. {
  2819. return;
  2820. }
  2821. }
  2822. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_RemoveAt_mBA4AC5A8BD5984AF21B69B4724CA789E17B0C6BD (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, const RuntimeMethod* method)
  2823. {
  2824. static bool s_Il2CppMethodInitialized;
  2825. if (!s_Il2CppMethodInitialized)
  2826. {
  2827. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2828. s_Il2CppMethodInitialized = true;
  2829. }
  2830. {
  2831. RuntimeObject* L_0 = __this->____list;
  2832. int32_t L_1 = ___0_index;
  2833. NullCheck(L_0);
  2834. InterfaceActionInvoker1< int32_t >::Invoke(10, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_0, L_1);
  2835. int32_t L_2 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2836. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_2, 1));
  2837. return;
  2838. }
  2839. }
  2840. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_RemoveRange_m7D800CCE2B77A9FDE085CBC7D9CC3A2E4312D621 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
  2841. {
  2842. static bool s_Il2CppMethodInitialized;
  2843. if (!s_Il2CppMethodInitialized)
  2844. {
  2845. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2846. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2847. s_Il2CppMethodInitialized = true;
  2848. }
  2849. String_t* G_B5_0 = NULL;
  2850. {
  2851. int32_t L_0 = ___0_index;
  2852. if ((((int32_t)L_0) < ((int32_t)0)))
  2853. {
  2854. goto IL_0008;
  2855. }
  2856. }
  2857. {
  2858. int32_t L_1 = ___1_count;
  2859. if ((((int32_t)L_1) >= ((int32_t)0)))
  2860. {
  2861. goto IL_0023;
  2862. }
  2863. }
  2864. IL_0008:
  2865. {
  2866. int32_t L_2 = ___0_index;
  2867. if ((((int32_t)L_2) < ((int32_t)0)))
  2868. {
  2869. goto IL_0013;
  2870. }
  2871. }
  2872. {
  2873. G_B5_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626));
  2874. goto IL_0018;
  2875. }
  2876. IL_0013:
  2877. {
  2878. G_B5_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1));
  2879. }
  2880. IL_0018:
  2881. {
  2882. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  2883. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, G_B5_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  2884. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_RemoveRange_m7D800CCE2B77A9FDE085CBC7D9CC3A2E4312D621_RuntimeMethod_var)));
  2885. }
  2886. IL_0023:
  2887. {
  2888. RuntimeObject* L_4 = __this->____list;
  2889. NullCheck(L_4);
  2890. int32_t L_5;
  2891. L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_4);
  2892. int32_t L_6 = ___0_index;
  2893. int32_t L_7 = ___1_count;
  2894. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_5, L_6))) >= ((int32_t)L_7)))
  2895. {
  2896. goto IL_003e;
  2897. }
  2898. }
  2899. {
  2900. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  2901. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
  2902. IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_RemoveRange_m7D800CCE2B77A9FDE085CBC7D9CC3A2E4312D621_RuntimeMethod_var)));
  2903. }
  2904. IL_003e:
  2905. {
  2906. int32_t L_9 = ___1_count;
  2907. if ((((int32_t)L_9) <= ((int32_t)0)))
  2908. {
  2909. goto IL_0063;
  2910. }
  2911. }
  2912. {
  2913. int32_t L_10 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  2914. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_10, 1));
  2915. goto IL_0063;
  2916. }
  2917. IL_0052:
  2918. {
  2919. RuntimeObject* L_11 = __this->____list;
  2920. int32_t L_12 = ___0_index;
  2921. NullCheck(L_11);
  2922. InterfaceActionInvoker1< int32_t >::Invoke(10, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_11, L_12);
  2923. int32_t L_13 = ___1_count;
  2924. ___1_count = ((int32_t)il2cpp_codegen_subtract(L_13, 1));
  2925. }
  2926. IL_0063:
  2927. {
  2928. int32_t L_14 = ___1_count;
  2929. if ((((int32_t)L_14) > ((int32_t)0)))
  2930. {
  2931. goto IL_0052;
  2932. }
  2933. }
  2934. {
  2935. return;
  2936. }
  2937. }
  2938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_Reverse_mFDA7C23AF51A3E133681A8B82AF4C624569B8B2A (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
  2939. {
  2940. static bool s_Il2CppMethodInitialized;
  2941. if (!s_Il2CppMethodInitialized)
  2942. {
  2943. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  2944. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  2945. s_Il2CppMethodInitialized = true;
  2946. }
  2947. int32_t V_0 = 0;
  2948. int32_t V_1 = 0;
  2949. RuntimeObject* V_2 = NULL;
  2950. String_t* G_B5_0 = NULL;
  2951. {
  2952. int32_t L_0 = ___0_index;
  2953. if ((((int32_t)L_0) < ((int32_t)0)))
  2954. {
  2955. goto IL_0008;
  2956. }
  2957. }
  2958. {
  2959. int32_t L_1 = ___1_count;
  2960. if ((((int32_t)L_1) >= ((int32_t)0)))
  2961. {
  2962. goto IL_0023;
  2963. }
  2964. }
  2965. IL_0008:
  2966. {
  2967. int32_t L_2 = ___0_index;
  2968. if ((((int32_t)L_2) < ((int32_t)0)))
  2969. {
  2970. goto IL_0013;
  2971. }
  2972. }
  2973. {
  2974. G_B5_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626));
  2975. goto IL_0018;
  2976. }
  2977. IL_0013:
  2978. {
  2979. G_B5_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1));
  2980. }
  2981. IL_0018:
  2982. {
  2983. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  2984. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, G_B5_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  2985. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_Reverse_mFDA7C23AF51A3E133681A8B82AF4C624569B8B2A_RuntimeMethod_var)));
  2986. }
  2987. IL_0023:
  2988. {
  2989. RuntimeObject* L_4 = __this->____list;
  2990. NullCheck(L_4);
  2991. int32_t L_5;
  2992. L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_4);
  2993. int32_t L_6 = ___0_index;
  2994. int32_t L_7 = ___1_count;
  2995. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_5, L_6))) >= ((int32_t)L_7)))
  2996. {
  2997. goto IL_003e;
  2998. }
  2999. }
  3000. {
  3001. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  3002. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
  3003. IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_Reverse_mFDA7C23AF51A3E133681A8B82AF4C624569B8B2A_RuntimeMethod_var)));
  3004. }
  3005. IL_003e:
  3006. {
  3007. int32_t L_9 = ___0_index;
  3008. V_0 = L_9;
  3009. int32_t L_10 = ___0_index;
  3010. int32_t L_11 = ___1_count;
  3011. V_1 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(L_10, L_11)), 1));
  3012. goto IL_0082;
  3013. }
  3014. IL_0048:
  3015. {
  3016. RuntimeObject* L_12 = __this->____list;
  3017. int32_t L_13 = V_0;
  3018. NullCheck(L_12);
  3019. RuntimeObject* L_14;
  3020. L_14 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_12, L_13);
  3021. V_2 = L_14;
  3022. RuntimeObject* L_15 = __this->____list;
  3023. int32_t L_16 = V_0;
  3024. int32_t L_17 = L_16;
  3025. V_0 = ((int32_t)il2cpp_codegen_add(L_17, 1));
  3026. RuntimeObject* L_18 = __this->____list;
  3027. int32_t L_19 = V_1;
  3028. NullCheck(L_18);
  3029. RuntimeObject* L_20;
  3030. L_20 = InterfaceFuncInvoker1< RuntimeObject*, int32_t >::Invoke(0, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_18, L_19);
  3031. NullCheck(L_15);
  3032. InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_15, L_17, L_20);
  3033. RuntimeObject* L_21 = __this->____list;
  3034. int32_t L_22 = V_1;
  3035. int32_t L_23 = L_22;
  3036. V_1 = ((int32_t)il2cpp_codegen_subtract(L_23, 1));
  3037. RuntimeObject* L_24 = V_2;
  3038. NullCheck(L_21);
  3039. InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_21, L_23, L_24);
  3040. }
  3041. IL_0082:
  3042. {
  3043. int32_t L_25 = V_0;
  3044. int32_t L_26 = V_1;
  3045. if ((((int32_t)L_25) < ((int32_t)L_26)))
  3046. {
  3047. goto IL_0048;
  3048. }
  3049. }
  3050. {
  3051. int32_t L_27 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  3052. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_27, 1));
  3053. return;
  3054. }
  3055. }
  3056. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IListWrapper_Sort_mF4D1C85C0865B0942180074EB047A7AC7FA2299B (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
  3057. {
  3058. static bool s_Il2CppMethodInitialized;
  3059. if (!s_Il2CppMethodInitialized)
  3060. {
  3061. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  3062. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var);
  3063. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  3064. s_Il2CppMethodInitialized = true;
  3065. }
  3066. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
  3067. int32_t V_1 = 0;
  3068. String_t* G_B5_0 = NULL;
  3069. {
  3070. int32_t L_0 = ___0_index;
  3071. if ((((int32_t)L_0) < ((int32_t)0)))
  3072. {
  3073. goto IL_0008;
  3074. }
  3075. }
  3076. {
  3077. int32_t L_1 = ___1_count;
  3078. if ((((int32_t)L_1) >= ((int32_t)0)))
  3079. {
  3080. goto IL_0023;
  3081. }
  3082. }
  3083. IL_0008:
  3084. {
  3085. int32_t L_2 = ___0_index;
  3086. if ((((int32_t)L_2) < ((int32_t)0)))
  3087. {
  3088. goto IL_0013;
  3089. }
  3090. }
  3091. {
  3092. G_B5_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626));
  3093. goto IL_0018;
  3094. }
  3095. IL_0013:
  3096. {
  3097. G_B5_0 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1));
  3098. }
  3099. IL_0018:
  3100. {
  3101. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_3 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  3102. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, G_B5_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  3103. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_Sort_mF4D1C85C0865B0942180074EB047A7AC7FA2299B_RuntimeMethod_var)));
  3104. }
  3105. IL_0023:
  3106. {
  3107. RuntimeObject* L_4 = __this->____list;
  3108. NullCheck(L_4);
  3109. int32_t L_5;
  3110. L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_4);
  3111. int32_t L_6 = ___0_index;
  3112. int32_t L_7 = ___1_count;
  3113. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_5, L_6))) >= ((int32_t)L_7)))
  3114. {
  3115. goto IL_003e;
  3116. }
  3117. }
  3118. {
  3119. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_8 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  3120. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_8, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
  3121. IL2CPP_RAISE_MANAGED_EXCEPTION(L_8, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_Sort_mF4D1C85C0865B0942180074EB047A7AC7FA2299B_RuntimeMethod_var)));
  3122. }
  3123. IL_003e:
  3124. {
  3125. int32_t L_9 = ___1_count;
  3126. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_9);
  3127. V_0 = L_10;
  3128. int32_t L_11 = ___0_index;
  3129. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = V_0;
  3130. int32_t L_13 = ___1_count;
  3131. VirtualActionInvoker4< int32_t, RuntimeArray*, int32_t, int32_t >::Invoke(36, __this, L_11, (RuntimeArray*)L_12, 0, L_13);
  3132. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_0;
  3133. int32_t L_15 = ___1_count;
  3134. RuntimeObject* L_16 = ___2_comparer;
  3135. Array_Sort_mE8B389D13D4164C9E66801A729CF714EDEB512E6((RuntimeArray*)L_14, 0, L_15, L_16, NULL);
  3136. V_1 = 0;
  3137. goto IL_0071;
  3138. }
  3139. IL_005c:
  3140. {
  3141. RuntimeObject* L_17 = __this->____list;
  3142. int32_t L_18 = V_1;
  3143. int32_t L_19 = ___0_index;
  3144. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_0;
  3145. int32_t L_21 = V_1;
  3146. NullCheck(L_20);
  3147. int32_t L_22 = L_21;
  3148. RuntimeObject* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
  3149. NullCheck(L_17);
  3150. InterfaceActionInvoker2< int32_t, RuntimeObject* >::Invoke(1, IList_t1C522956D79B7DC92B5B01053DF1AC058C8B598D_il2cpp_TypeInfo_var, L_17, ((int32_t)il2cpp_codegen_add(L_18, L_19)), L_23);
  3151. int32_t L_24 = V_1;
  3152. V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
  3153. }
  3154. IL_0071:
  3155. {
  3156. int32_t L_25 = V_1;
  3157. int32_t L_26 = ___1_count;
  3158. if ((((int32_t)L_25) < ((int32_t)L_26)))
  3159. {
  3160. goto IL_005c;
  3161. }
  3162. }
  3163. {
  3164. int32_t L_27 = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version;
  3165. ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)__this)->____version = ((int32_t)il2cpp_codegen_add(L_27, 1));
  3166. return;
  3167. }
  3168. }
  3169. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* IListWrapper_ToArray_m74851542FB182B1396E95ADE31C13E49BDE06182 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, const RuntimeMethod* method)
  3170. {
  3171. static bool s_Il2CppMethodInitialized;
  3172. if (!s_Il2CppMethodInitialized)
  3173. {
  3174. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_RuntimeMethod_var);
  3175. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  3176. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  3177. s_Il2CppMethodInitialized = true;
  3178. }
  3179. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
  3180. {
  3181. int32_t L_0;
  3182. L_0 = VirtualFuncInvoker0< int32_t >::Invoke(22, __this);
  3183. if (L_0)
  3184. {
  3185. goto IL_000e;
  3186. }
  3187. }
  3188. {
  3189. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1;
  3190. L_1 = Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_inline(Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_RuntimeMethod_var);
  3191. return L_1;
  3192. }
  3193. IL_000e:
  3194. {
  3195. int32_t L_2;
  3196. L_2 = VirtualFuncInvoker0< int32_t >::Invoke(22, __this);
  3197. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_2);
  3198. V_0 = L_3;
  3199. RuntimeObject* L_4 = __this->____list;
  3200. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = V_0;
  3201. NullCheck(L_4);
  3202. InterfaceActionInvoker2< RuntimeArray*, int32_t >::Invoke(0, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_4, (RuntimeArray*)L_5, 0);
  3203. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
  3204. return L_6;
  3205. }
  3206. }
  3207. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* IListWrapper_ToArray_m87E592A6B643C1EE45C876AA4FC178479B1A0F94 (IListWrapper_t1FD5B0D395FB706E97477DB0619F9656DED13187* __this, Type_t* ___0_type, const RuntimeMethod* method)
  3208. {
  3209. static bool s_Il2CppMethodInitialized;
  3210. if (!s_Il2CppMethodInitialized)
  3211. {
  3212. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  3213. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  3214. s_Il2CppMethodInitialized = true;
  3215. }
  3216. RuntimeArray* V_0 = NULL;
  3217. {
  3218. Type_t* L_0 = ___0_type;
  3219. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  3220. bool L_1;
  3221. L_1 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_0, (Type_t*)NULL, NULL);
  3222. if (!L_1)
  3223. {
  3224. goto IL_0014;
  3225. }
  3226. }
  3227. {
  3228. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  3229. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF3C6C902DBF80139640F6554F0C3392016A8ADF7)), NULL);
  3230. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IListWrapper_ToArray_m87E592A6B643C1EE45C876AA4FC178479B1A0F94_RuntimeMethod_var)));
  3231. }
  3232. IL_0014:
  3233. {
  3234. Type_t* L_3 = ___0_type;
  3235. RuntimeObject* L_4 = __this->____list;
  3236. NullCheck(L_4);
  3237. int32_t L_5;
  3238. L_5 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_4);
  3239. RuntimeArray* L_6;
  3240. L_6 = Array_CreateInstance_m13B202130951A03AF5F52470A19E17D3AD2A8983(L_3, L_5, NULL);
  3241. V_0 = L_6;
  3242. RuntimeObject* L_7 = __this->____list;
  3243. RuntimeArray* L_8 = V_0;
  3244. NullCheck(L_7);
  3245. InterfaceActionInvoker2< RuntimeArray*, int32_t >::Invoke(0, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_7, L_8, 0);
  3246. RuntimeArray* L_9 = V_0;
  3247. return L_9;
  3248. }
  3249. }
  3250. #ifdef __clang__
  3251. #pragma clang diagnostic pop
  3252. #endif
  3253. #ifdef __clang__
  3254. #pragma clang diagnostic push
  3255. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3256. #pragma clang diagnostic ignored "-Wunused-variable"
  3257. #endif
  3258. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList__ctor_mC08FEC5D3AAA674F15A1E6910385B8387B9A4B70 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___0_l, const RuntimeMethod* method)
  3259. {
  3260. {
  3261. ArrayList__ctor_m07DC369002304B483B9FC41DBDAF4A25AC3C9F80(__this, NULL);
  3262. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ___0_l;
  3263. __this->____list = L_0;
  3264. Il2CppCodeGenWriteBarrier((void**)(&__this->____list), (void*)L_0);
  3265. return;
  3266. }
  3267. }
  3268. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyArrayList_get_Count_mAAB6ACA6F36C6A682DCCE909A4BC14DE364D9B8C (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3269. {
  3270. {
  3271. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3272. NullCheck(L_0);
  3273. int32_t L_1;
  3274. L_1 = VirtualFuncInvoker0< int32_t >::Invoke(22, L_0);
  3275. return L_1;
  3276. }
  3277. }
  3278. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyArrayList_get_IsReadOnly_m56AB99FCF0C386900918DEB163312CBBB25CE599 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3279. {
  3280. {
  3281. return (bool)1;
  3282. }
  3283. }
  3284. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyArrayList_get_IsFixedSize_m74595184E6C3CD538500C7D61559CB6E7D6A31EA (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3285. {
  3286. {
  3287. return (bool)1;
  3288. }
  3289. }
  3290. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyArrayList_get_IsSynchronized_mFA3B3FF3B171907564038AF4381309C110A27FF6 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3291. {
  3292. {
  3293. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3294. NullCheck(L_0);
  3295. bool L_1;
  3296. L_1 = VirtualFuncInvoker0< bool >::Invoke(25, L_0);
  3297. return L_1;
  3298. }
  3299. }
  3300. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyArrayList_get_Item_mE86D105FB5617FBA89C88A684329161158BAAE46 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, const RuntimeMethod* method)
  3301. {
  3302. {
  3303. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3304. int32_t L_1 = ___0_index;
  3305. NullCheck(L_0);
  3306. RuntimeObject* L_2;
  3307. L_2 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27, L_0, L_1);
  3308. return L_2;
  3309. }
  3310. }
  3311. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_set_Item_m3434044C6507C9826AD8931C8C74C07921A37E11 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, RuntimeObject* ___1_value, const RuntimeMethod* method)
  3312. {
  3313. {
  3314. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3315. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3316. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_set_Item_m3434044C6507C9826AD8931C8C74C07921A37E11_RuntimeMethod_var)));
  3317. }
  3318. }
  3319. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyArrayList_get_SyncRoot_m354B4618B3B71AE2A81DEF8BDCA9F3BEFEF46CF7 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3320. {
  3321. {
  3322. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3323. NullCheck(L_0);
  3324. RuntimeObject* L_1;
  3325. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(26, L_0);
  3326. return L_1;
  3327. }
  3328. }
  3329. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyArrayList_Add_m678A7B66614274CA0000B5A4232F962A7AC78148 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  3330. {
  3331. {
  3332. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3333. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3334. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_Add_m678A7B66614274CA0000B5A4232F962A7AC78148_RuntimeMethod_var)));
  3335. }
  3336. }
  3337. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_AddRange_mEF6206AF924D609FE389BC245F96E219AEEBC9D1 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, RuntimeObject* ___0_c, const RuntimeMethod* method)
  3338. {
  3339. {
  3340. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3341. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3342. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_AddRange_mEF6206AF924D609FE389BC245F96E219AEEBC9D1_RuntimeMethod_var)));
  3343. }
  3344. }
  3345. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_set_Capacity_m9C39F463CE13298AC650079FE6386FE9EEC97F6C (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_value, const RuntimeMethod* method)
  3346. {
  3347. {
  3348. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3349. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3350. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_set_Capacity_m9C39F463CE13298AC650079FE6386FE9EEC97F6C_RuntimeMethod_var)));
  3351. }
  3352. }
  3353. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_Clear_mFC78469FBFCCB7BB591799A3EDC73B840C7DEABF (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3354. {
  3355. {
  3356. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3357. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3358. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_Clear_mFC78469FBFCCB7BB591799A3EDC73B840C7DEABF_RuntimeMethod_var)));
  3359. }
  3360. }
  3361. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyArrayList_Clone_m9360D48F2A6B9335D55AEFB550A969E8649B932F (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3362. {
  3363. static bool s_Il2CppMethodInitialized;
  3364. if (!s_Il2CppMethodInitialized)
  3365. {
  3366. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var);
  3367. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7_il2cpp_TypeInfo_var);
  3368. s_Il2CppMethodInitialized = true;
  3369. }
  3370. {
  3371. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3372. ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* L_1 = (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7*)il2cpp_codegen_object_new(ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7_il2cpp_TypeInfo_var);
  3373. ReadOnlyArrayList__ctor_mC08FEC5D3AAA674F15A1E6910385B8387B9A4B70(L_1, L_0, NULL);
  3374. ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* L_2 = L_1;
  3375. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = __this->____list;
  3376. NullCheck(L_3);
  3377. RuntimeObject* L_4;
  3378. L_4 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(32, L_3);
  3379. NullCheck(L_2);
  3380. L_2->____list = ((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_4, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var));
  3381. Il2CppCodeGenWriteBarrier((void**)(&L_2->____list), (void*)((ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A*)CastclassClass((RuntimeObject*)L_4, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_il2cpp_TypeInfo_var)));
  3382. return L_2;
  3383. }
  3384. }
  3385. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ReadOnlyArrayList_Contains_m12EA4F37224B608753964536173E82DB509D6C31 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  3386. {
  3387. {
  3388. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3389. RuntimeObject* L_1 = ___0_obj;
  3390. NullCheck(L_0);
  3391. bool L_2;
  3392. L_2 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(33, L_0, L_1);
  3393. return L_2;
  3394. }
  3395. }
  3396. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_CopyTo_m3F7E370006657A10D3529AFEEA462AA00F7ADA12 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
  3397. {
  3398. {
  3399. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3400. RuntimeArray* L_1 = ___0_array;
  3401. int32_t L_2 = ___1_index;
  3402. NullCheck(L_0);
  3403. VirtualActionInvoker2< RuntimeArray*, int32_t >::Invoke(35, L_0, L_1, L_2);
  3404. return;
  3405. }
  3406. }
  3407. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_CopyTo_m3E296546EC07D25187674425904946DA47AD1EA1 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, RuntimeArray* ___1_array, int32_t ___2_arrayIndex, int32_t ___3_count, const RuntimeMethod* method)
  3408. {
  3409. {
  3410. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3411. int32_t L_1 = ___0_index;
  3412. RuntimeArray* L_2 = ___1_array;
  3413. int32_t L_3 = ___2_arrayIndex;
  3414. int32_t L_4 = ___3_count;
  3415. NullCheck(L_0);
  3416. VirtualActionInvoker4< int32_t, RuntimeArray*, int32_t, int32_t >::Invoke(36, L_0, L_1, L_2, L_3, L_4);
  3417. return;
  3418. }
  3419. }
  3420. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ReadOnlyArrayList_GetEnumerator_m9809EEA24859AB0C5C6507EEAACDCA2EE54DA7F3 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3421. {
  3422. {
  3423. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3424. NullCheck(L_0);
  3425. RuntimeObject* L_1;
  3426. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37, L_0);
  3427. return L_1;
  3428. }
  3429. }
  3430. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ReadOnlyArrayList_IndexOf_m06AA8E5BA9187096542025D7F0DC1949FF0D484A (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  3431. {
  3432. {
  3433. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3434. RuntimeObject* L_1 = ___0_value;
  3435. NullCheck(L_0);
  3436. int32_t L_2;
  3437. L_2 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(38, L_0, L_1);
  3438. return L_2;
  3439. }
  3440. }
  3441. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_Insert_mE0BAE5C31B0C86553B445FD7284587D5A5AA5C51 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, RuntimeObject* ___1_obj, const RuntimeMethod* method)
  3442. {
  3443. {
  3444. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3445. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3446. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_Insert_mE0BAE5C31B0C86553B445FD7284587D5A5AA5C51_RuntimeMethod_var)));
  3447. }
  3448. }
  3449. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_InsertRange_m85C6EB9DC3DBC3AEF520F33615042A47E3FFF139 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, RuntimeObject* ___1_c, const RuntimeMethod* method)
  3450. {
  3451. {
  3452. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3453. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3454. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_InsertRange_m85C6EB9DC3DBC3AEF520F33615042A47E3FFF139_RuntimeMethod_var)));
  3455. }
  3456. }
  3457. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_Remove_mA156265395B4E03784739D03DCC0A08D3CA51FF7 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
  3458. {
  3459. {
  3460. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3461. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3462. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_Remove_mA156265395B4E03784739D03DCC0A08D3CA51FF7_RuntimeMethod_var)));
  3463. }
  3464. }
  3465. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_RemoveAt_m63D3189155E548BC750C2B02A017B727AB83409A (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, const RuntimeMethod* method)
  3466. {
  3467. {
  3468. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3469. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3470. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_RemoveAt_m63D3189155E548BC750C2B02A017B727AB83409A_RuntimeMethod_var)));
  3471. }
  3472. }
  3473. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_RemoveRange_m40DD193E8AD2DA912E0A37F780490370E2A0C4B2 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
  3474. {
  3475. {
  3476. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3477. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3478. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_RemoveRange_m40DD193E8AD2DA912E0A37F780490370E2A0C4B2_RuntimeMethod_var)));
  3479. }
  3480. }
  3481. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_Reverse_mE3BAD41CCCC4556BB3F0079F81834DF5E0264FF4 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, int32_t ___1_count, const RuntimeMethod* method)
  3482. {
  3483. {
  3484. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3485. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3486. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_Reverse_mE3BAD41CCCC4556BB3F0079F81834DF5E0264FF4_RuntimeMethod_var)));
  3487. }
  3488. }
  3489. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyArrayList_Sort_m86AD85F1FC3BD7DED597C723FC0DD72CDCDE6C8B (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, int32_t ___0_index, int32_t ___1_count, RuntimeObject* ___2_comparer, const RuntimeMethod* method)
  3490. {
  3491. {
  3492. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
  3493. NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7AF8BCE7F42000322C784E007AAB43CA3E3D9AB)), NULL);
  3494. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ReadOnlyArrayList_Sort_m86AD85F1FC3BD7DED597C723FC0DD72CDCDE6C8B_RuntimeMethod_var)));
  3495. }
  3496. }
  3497. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ReadOnlyArrayList_ToArray_m9E212B7E9388D4A0F21CEBC9C47CB3FF1C4F2BC3 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, const RuntimeMethod* method)
  3498. {
  3499. {
  3500. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3501. NullCheck(L_0);
  3502. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1;
  3503. L_1 = VirtualFuncInvoker0< ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* >::Invoke(48, L_0);
  3504. return L_1;
  3505. }
  3506. }
  3507. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeArray* ReadOnlyArrayList_ToArray_m8F6338C760B9E293DC38E76A456CC0207B042230 (ReadOnlyArrayList_t8BE44A98B45F512DBD83604A0D468C79822107E7* __this, Type_t* ___0_type, const RuntimeMethod* method)
  3508. {
  3509. {
  3510. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = __this->____list;
  3511. Type_t* L_1 = ___0_type;
  3512. NullCheck(L_0);
  3513. RuntimeArray* L_2;
  3514. L_2 = VirtualFuncInvoker1< RuntimeArray*, Type_t* >::Invoke(49, L_0, L_1);
  3515. return L_2;
  3516. }
  3517. }
  3518. #ifdef __clang__
  3519. #pragma clang diagnostic pop
  3520. #endif
  3521. #ifdef __clang__
  3522. #pragma clang diagnostic push
  3523. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3524. #pragma clang diagnostic ignored "-Wunused-variable"
  3525. #endif
  3526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple__ctor_mD171473379C7B7D2632F9FB1156983000FC83F22 (ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA* __this, ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* ___0_list, const RuntimeMethod* method)
  3527. {
  3528. static bool s_Il2CppMethodInitialized;
  3529. if (!s_Il2CppMethodInitialized)
  3530. {
  3531. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3532. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_0_0_0_var);
  3533. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  3534. s_Il2CppMethodInitialized = true;
  3535. }
  3536. {
  3537. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  3538. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_0 = ___0_list;
  3539. __this->____list = L_0;
  3540. Il2CppCodeGenWriteBarrier((void**)(&__this->____list), (void*)L_0);
  3541. __this->____index = (-1);
  3542. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = ___0_list;
  3543. NullCheck(L_1);
  3544. int32_t L_2 = L_1->____version;
  3545. __this->____version = L_2;
  3546. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_3 = ___0_list;
  3547. NullCheck(L_3);
  3548. Type_t* L_4;
  3549. L_4 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_3, NULL);
  3550. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_5 = { reinterpret_cast<intptr_t> (ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A_0_0_0_var) };
  3551. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  3552. Type_t* L_6;
  3553. L_6 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_5, NULL);
  3554. bool L_7;
  3555. L_7 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_4, L_6, NULL);
  3556. __this->____isArrayList = L_7;
  3557. il2cpp_codegen_runtime_class_init_inline(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3558. RuntimeObject* L_8 = ((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject;
  3559. __this->____currentElement = L_8;
  3560. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentElement), (void*)L_8);
  3561. return;
  3562. }
  3563. }
  3564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ArrayListEnumeratorSimple_Clone_mB8CAE8F92F790B72257148726FF453F8833228AB (ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA* __this, const RuntimeMethod* method)
  3565. {
  3566. {
  3567. RuntimeObject* L_0;
  3568. L_0 = Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(__this, NULL);
  3569. return L_0;
  3570. }
  3571. }
  3572. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ArrayListEnumeratorSimple_MoveNext_m8138ECAB6271595D2B271AD27DF8BC1242637E66 (ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA* __this, const RuntimeMethod* method)
  3573. {
  3574. static bool s_Il2CppMethodInitialized;
  3575. if (!s_Il2CppMethodInitialized)
  3576. {
  3577. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3578. s_Il2CppMethodInitialized = true;
  3579. }
  3580. int32_t V_0 = 0;
  3581. {
  3582. int32_t L_0 = __this->____version;
  3583. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = __this->____list;
  3584. NullCheck(L_1);
  3585. int32_t L_2 = L_1->____version;
  3586. if ((((int32_t)L_0) == ((int32_t)L_2)))
  3587. {
  3588. goto IL_001e;
  3589. }
  3590. }
  3591. {
  3592. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  3593. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
  3594. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayListEnumeratorSimple_MoveNext_m8138ECAB6271595D2B271AD27DF8BC1242637E66_RuntimeMethod_var)));
  3595. }
  3596. IL_001e:
  3597. {
  3598. bool L_4 = __this->____isArrayList;
  3599. if (!L_4)
  3600. {
  3601. goto IL_007e;
  3602. }
  3603. }
  3604. {
  3605. int32_t L_5 = __this->____index;
  3606. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_6 = __this->____list;
  3607. NullCheck(L_6);
  3608. int32_t L_7 = L_6->____size;
  3609. if ((((int32_t)L_5) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_7, 1)))))
  3610. {
  3611. goto IL_0060;
  3612. }
  3613. }
  3614. {
  3615. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_8 = __this->____list;
  3616. NullCheck(L_8);
  3617. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = L_8->____items;
  3618. int32_t L_10 = __this->____index;
  3619. V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
  3620. int32_t L_11 = V_0;
  3621. __this->____index = L_11;
  3622. int32_t L_12 = V_0;
  3623. NullCheck(L_9);
  3624. int32_t L_13 = L_12;
  3625. RuntimeObject* L_14 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_13));
  3626. __this->____currentElement = L_14;
  3627. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentElement), (void*)L_14);
  3628. return (bool)1;
  3629. }
  3630. IL_0060:
  3631. {
  3632. il2cpp_codegen_runtime_class_init_inline(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3633. RuntimeObject* L_15 = ((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject;
  3634. __this->____currentElement = L_15;
  3635. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentElement), (void*)L_15);
  3636. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_16 = __this->____list;
  3637. NullCheck(L_16);
  3638. int32_t L_17 = L_16->____size;
  3639. __this->____index = L_17;
  3640. return (bool)0;
  3641. }
  3642. IL_007e:
  3643. {
  3644. int32_t L_18 = __this->____index;
  3645. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_19 = __this->____list;
  3646. NullCheck(L_19);
  3647. int32_t L_20;
  3648. L_20 = VirtualFuncInvoker0< int32_t >::Invoke(22, L_19);
  3649. if ((((int32_t)L_18) >= ((int32_t)((int32_t)il2cpp_codegen_subtract(L_20, 1)))))
  3650. {
  3651. goto IL_00b7;
  3652. }
  3653. }
  3654. {
  3655. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_21 = __this->____list;
  3656. int32_t L_22 = __this->____index;
  3657. V_0 = ((int32_t)il2cpp_codegen_add(L_22, 1));
  3658. int32_t L_23 = V_0;
  3659. __this->____index = L_23;
  3660. int32_t L_24 = V_0;
  3661. NullCheck(L_21);
  3662. RuntimeObject* L_25;
  3663. L_25 = VirtualFuncInvoker1< RuntimeObject*, int32_t >::Invoke(27, L_21, L_24);
  3664. __this->____currentElement = L_25;
  3665. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentElement), (void*)L_25);
  3666. return (bool)1;
  3667. }
  3668. IL_00b7:
  3669. {
  3670. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_26 = __this->____list;
  3671. NullCheck(L_26);
  3672. int32_t L_27;
  3673. L_27 = VirtualFuncInvoker0< int32_t >::Invoke(22, L_26);
  3674. __this->____index = L_27;
  3675. il2cpp_codegen_runtime_class_init_inline(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3676. RuntimeObject* L_28 = ((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject;
  3677. __this->____currentElement = L_28;
  3678. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentElement), (void*)L_28);
  3679. return (bool)0;
  3680. }
  3681. }
  3682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ArrayListEnumeratorSimple_get_Current_m37B813C38A8EE4BE18A4EC908DCAA02DF3DE4613 (ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA* __this, const RuntimeMethod* method)
  3683. {
  3684. static bool s_Il2CppMethodInitialized;
  3685. if (!s_Il2CppMethodInitialized)
  3686. {
  3687. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3688. s_Il2CppMethodInitialized = true;
  3689. }
  3690. RuntimeObject* V_0 = NULL;
  3691. {
  3692. RuntimeObject* L_0 = __this->____currentElement;
  3693. V_0 = L_0;
  3694. il2cpp_codegen_runtime_class_init_inline(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3695. RuntimeObject* L_1 = ((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject;
  3696. RuntimeObject* L_2 = V_0;
  3697. if ((!(((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)L_2))))
  3698. {
  3699. goto IL_002e;
  3700. }
  3701. }
  3702. {
  3703. int32_t L_3 = __this->____index;
  3704. if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
  3705. {
  3706. goto IL_0023;
  3707. }
  3708. }
  3709. {
  3710. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_4 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  3711. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633)), NULL);
  3712. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayListEnumeratorSimple_get_Current_m37B813C38A8EE4BE18A4EC908DCAA02DF3DE4613_RuntimeMethod_var)));
  3713. }
  3714. IL_0023:
  3715. {
  3716. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_5 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  3717. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral834F4B6837B71847C4048C946DF8754B323D6BF9)), NULL);
  3718. IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayListEnumeratorSimple_get_Current_m37B813C38A8EE4BE18A4EC908DCAA02DF3DE4613_RuntimeMethod_var)));
  3719. }
  3720. IL_002e:
  3721. {
  3722. RuntimeObject* L_6 = V_0;
  3723. return L_6;
  3724. }
  3725. }
  3726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple_Reset_mDF974CA5DDF1B8C46C756871711697AE745E3ABD (ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA* __this, const RuntimeMethod* method)
  3727. {
  3728. static bool s_Il2CppMethodInitialized;
  3729. if (!s_Il2CppMethodInitialized)
  3730. {
  3731. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3732. s_Il2CppMethodInitialized = true;
  3733. }
  3734. {
  3735. int32_t L_0 = __this->____version;
  3736. ArrayList_t7A8E5AF0C4378015B5731ABE2BED8F2782FEEF8A* L_1 = __this->____list;
  3737. NullCheck(L_1);
  3738. int32_t L_2 = L_1->____version;
  3739. if ((((int32_t)L_0) == ((int32_t)L_2)))
  3740. {
  3741. goto IL_001e;
  3742. }
  3743. }
  3744. {
  3745. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  3746. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
  3747. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArrayListEnumeratorSimple_Reset_mDF974CA5DDF1B8C46C756871711697AE745E3ABD_RuntimeMethod_var)));
  3748. }
  3749. IL_001e:
  3750. {
  3751. il2cpp_codegen_runtime_class_init_inline(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3752. RuntimeObject* L_4 = ((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject;
  3753. __this->____currentElement = L_4;
  3754. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentElement), (void*)L_4);
  3755. __this->____index = (-1);
  3756. return;
  3757. }
  3758. }
  3759. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayListEnumeratorSimple__cctor_mBEC9A7DC7A482D2F74844D36DB12A98BF18B5CEA (const RuntimeMethod* method)
  3760. {
  3761. static bool s_Il2CppMethodInitialized;
  3762. if (!s_Il2CppMethodInitialized)
  3763. {
  3764. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var);
  3765. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
  3766. s_Il2CppMethodInitialized = true;
  3767. }
  3768. {
  3769. RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
  3770. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
  3771. ((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject = L_0;
  3772. Il2CppCodeGenWriteBarrier((void**)(&((ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_StaticFields*)il2cpp_codegen_static_fields_for(ArrayListEnumeratorSimple_tB829A175318C37ED5427A14633AC85D5816CF2DA_il2cpp_TypeInfo_var))->___s_dummyObject), (void*)L_0);
  3773. return;
  3774. }
  3775. }
  3776. #ifdef __clang__
  3777. #pragma clang diagnostic pop
  3778. #endif
  3779. #ifdef __clang__
  3780. #pragma clang diagnostic push
  3781. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3782. #pragma clang diagnostic ignored "-Wunused-variable"
  3783. #endif
  3784. #ifdef __clang__
  3785. #pragma clang diagnostic pop
  3786. #endif
  3787. #ifdef __clang__
  3788. #pragma clang diagnostic push
  3789. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3790. #pragma clang diagnostic ignored "-Wunused-variable"
  3791. #endif
  3792. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* Hashtable_get_SerializationInfoTable_m29B0EBA91904F2C579B7F3BE6A791DE9F1F6C8BC (const RuntimeMethod* method)
  3793. {
  3794. static bool s_Il2CppMethodInitialized;
  3795. if (!s_Il2CppMethodInitialized)
  3796. {
  3797. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
  3798. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LazyInitializer_EnsureInitialized_TisConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858_m86148F5434156C4EBFE958A775770256FDFA12CF_RuntimeMethod_var);
  3799. s_Il2CppMethodInitialized = true;
  3800. }
  3801. {
  3802. ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* L_0;
  3803. L_0 = LazyInitializer_EnsureInitialized_TisConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858_m86148F5434156C4EBFE958A775770256FDFA12CF((&((Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_StaticFields*)il2cpp_codegen_static_fields_for(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var))->___s_serializationInfoTable), LazyInitializer_EnsureInitialized_TisConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858_m86148F5434156C4EBFE958A775770256FDFA12CF_RuntimeMethod_var);
  3804. return L_0;
  3805. }
  3806. }
  3807. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m53109B9F270C606C6DBA73405F134DA215440A36 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, bool ___0_trash, const RuntimeMethod* method)
  3808. {
  3809. {
  3810. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  3811. return;
  3812. }
  3813. }
  3814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD7E2F1EB1BFD683186ECD6EDBE1708AF35C3A87D (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  3815. {
  3816. {
  3817. Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A(__this, 0, (1.0f), NULL);
  3818. return;
  3819. }
  3820. }
  3821. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m9E0D56D6ADE284D20176076FACBFA1628DD8EE80 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, const RuntimeMethod* method)
  3822. {
  3823. {
  3824. int32_t L_0 = ___0_capacity;
  3825. Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A(__this, L_0, (1.0f), NULL);
  3826. return;
  3827. }
  3828. }
  3829. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, float ___1_loadFactor, const RuntimeMethod* method)
  3830. {
  3831. static bool s_Il2CppMethodInitialized;
  3832. if (!s_Il2CppMethodInitialized)
  3833. {
  3834. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var);
  3835. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var);
  3836. s_Il2CppMethodInitialized = true;
  3837. }
  3838. double V_0 = 0.0;
  3839. int32_t V_1 = 0;
  3840. int32_t G_B10_0 = 0;
  3841. {
  3842. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  3843. int32_t L_0 = ___0_capacity;
  3844. if ((((int32_t)L_0) >= ((int32_t)0)))
  3845. {
  3846. goto IL_001a;
  3847. }
  3848. }
  3849. {
  3850. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  3851. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  3852. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A_RuntimeMethod_var)));
  3853. }
  3854. IL_001a:
  3855. {
  3856. float L_2 = ___1_loadFactor;
  3857. if ((!(((float)L_2) >= ((float)(0.100000001f)))))
  3858. {
  3859. goto IL_002a;
  3860. }
  3861. }
  3862. {
  3863. float L_3 = ___1_loadFactor;
  3864. if ((((float)L_3) <= ((float)(1.0f))))
  3865. {
  3866. goto IL_005b;
  3867. }
  3868. }
  3869. IL_002a:
  3870. {
  3871. double L_4 = (0.10000000000000001);
  3872. RuntimeObject* L_5 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)), &L_4);
  3873. double L_6 = (1.0);
  3874. RuntimeObject* L_7 = Box(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_il2cpp_TypeInfo_var)), &L_6);
  3875. String_t* L_8;
  3876. L_8 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE209FAE75837720CC82067C1D76DCD103784C60B)), L_5, L_7, NULL);
  3877. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_9 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  3878. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralED1269E5C23EE33C8DD1238BDFE8303F0D986C1F)), L_8, NULL);
  3879. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A_RuntimeMethod_var)));
  3880. }
  3881. IL_005b:
  3882. {
  3883. float L_10 = ___1_loadFactor;
  3884. __this->____loadFactor = ((float)il2cpp_codegen_multiply((0.720000029f), L_10));
  3885. int32_t L_11 = ___0_capacity;
  3886. float L_12 = __this->____loadFactor;
  3887. V_0 = ((double)((float)(((float)L_11)/L_12)));
  3888. double L_13 = V_0;
  3889. if ((!(((double)L_13) > ((double)(2147483647.0)))))
  3890. {
  3891. goto IL_008f;
  3892. }
  3893. }
  3894. {
  3895. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  3896. ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral77048C04058DC1CDDAE5B38B11B56EFD16467A77)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), NULL);
  3897. IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A_RuntimeMethod_var)));
  3898. }
  3899. IL_008f:
  3900. {
  3901. double L_15 = V_0;
  3902. if ((((double)L_15) > ((double)(3.0))))
  3903. {
  3904. goto IL_009e;
  3905. }
  3906. }
  3907. {
  3908. G_B10_0 = 3;
  3909. goto IL_00a5;
  3910. }
  3911. IL_009e:
  3912. {
  3913. double L_16 = V_0;
  3914. il2cpp_codegen_runtime_class_init_inline(HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var);
  3915. int32_t L_17;
  3916. L_17 = HashHelpers_GetPrime_m5B7AE10D5E76267579296C8F2CB8464AC2DE8472(il2cpp_codegen_cast_double_to_int<int32_t>(L_16), NULL);
  3917. G_B10_0 = L_17;
  3918. }
  3919. IL_00a5:
  3920. {
  3921. V_1 = G_B10_0;
  3922. int32_t L_18 = V_1;
  3923. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_19 = (bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)SZArrayNew(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var, (uint32_t)L_18);
  3924. __this->____buckets = L_19;
  3925. Il2CppCodeGenWriteBarrier((void**)(&__this->____buckets), (void*)L_19);
  3926. float L_20 = __this->____loadFactor;
  3927. int32_t L_21 = V_1;
  3928. __this->____loadsize = il2cpp_codegen_cast_double_to_int<int32_t>(((float)il2cpp_codegen_multiply(L_20, ((float)L_21))));
  3929. il2cpp_codegen_memory_barrier();
  3930. __this->____isWriterInProgress = (bool)0;
  3931. return;
  3932. }
  3933. }
  3934. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mDDBD0273515277E4386A6D3D1E8F8ADB78D0FFDB (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, float ___1_loadFactor, RuntimeObject* ___2_equalityComparer, const RuntimeMethod* method)
  3935. {
  3936. {
  3937. int32_t L_0 = ___0_capacity;
  3938. float L_1 = ___1_loadFactor;
  3939. Hashtable__ctor_mF77B5A58D1E293CE5F40A06146D9C24D7C7F638A(__this, L_0, L_1, NULL);
  3940. RuntimeObject* L_2 = ___2_equalityComparer;
  3941. __this->____keycomparer = L_2;
  3942. Il2CppCodeGenWriteBarrier((void**)(&__this->____keycomparer), (void*)L_2);
  3943. return;
  3944. }
  3945. }
  3946. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m1F7298B21166D6C35BD6C6EC9F71BAC05981B164 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_equalityComparer, const RuntimeMethod* method)
  3947. {
  3948. {
  3949. RuntimeObject* L_0 = ___0_equalityComparer;
  3950. Hashtable__ctor_mDDBD0273515277E4386A6D3D1E8F8ADB78D0FFDB(__this, 0, (1.0f), L_0, NULL);
  3951. return;
  3952. }
  3953. }
  3954. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mDE29E5ABF17000F07880AD49D21C42132A5BA7EC (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_capacity, RuntimeObject* ___1_equalityComparer, const RuntimeMethod* method)
  3955. {
  3956. {
  3957. int32_t L_0 = ___0_capacity;
  3958. RuntimeObject* L_1 = ___1_equalityComparer;
  3959. Hashtable__ctor_mDDBD0273515277E4386A6D3D1E8F8ADB78D0FFDB(__this, L_0, (1.0f), L_1, NULL);
  3960. return;
  3961. }
  3962. }
  3963. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mC900B057C1E0D012E89457D94D5E2ADAEDE859D1 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_d, const RuntimeMethod* method)
  3964. {
  3965. {
  3966. RuntimeObject* L_0 = ___0_d;
  3967. Hashtable__ctor_mFB5BC5BC84CF82F56A816BB71F81DF79648DC97E(__this, L_0, (1.0f), NULL);
  3968. return;
  3969. }
  3970. }
  3971. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mFB5BC5BC84CF82F56A816BB71F81DF79648DC97E (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_d, float ___1_loadFactor, const RuntimeMethod* method)
  3972. {
  3973. {
  3974. RuntimeObject* L_0 = ___0_d;
  3975. float L_1 = ___1_loadFactor;
  3976. Hashtable__ctor_m62E3F257D81442819A12A041FB525FD8A2289195(__this, L_0, L_1, (RuntimeObject*)NULL, NULL);
  3977. return;
  3978. }
  3979. }
  3980. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_m62E3F257D81442819A12A041FB525FD8A2289195 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_d, float ___1_loadFactor, RuntimeObject* ___2_equalityComparer, const RuntimeMethod* method)
  3981. {
  3982. static bool s_Il2CppMethodInitialized;
  3983. if (!s_Il2CppMethodInitialized)
  3984. {
  3985. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var);
  3986. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var);
  3987. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var);
  3988. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
  3989. s_Il2CppMethodInitialized = true;
  3990. }
  3991. RuntimeObject* V_0 = NULL;
  3992. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* G_B2_0 = NULL;
  3993. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* G_B1_0 = NULL;
  3994. int32_t G_B3_0 = 0;
  3995. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* G_B3_1 = NULL;
  3996. {
  3997. RuntimeObject* L_0 = ___0_d;
  3998. if (L_0)
  3999. {
  4000. G_B2_0 = __this;
  4001. goto IL_0007;
  4002. }
  4003. G_B1_0 = __this;
  4004. }
  4005. {
  4006. G_B3_0 = 0;
  4007. G_B3_1 = G_B1_0;
  4008. goto IL_000d;
  4009. }
  4010. IL_0007:
  4011. {
  4012. RuntimeObject* L_1 = ___0_d;
  4013. NullCheck(L_1);
  4014. int32_t L_2;
  4015. L_2 = InterfaceFuncInvoker0< int32_t >::Invoke(1, ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E_il2cpp_TypeInfo_var, L_1);
  4016. G_B3_0 = L_2;
  4017. G_B3_1 = G_B2_0;
  4018. }
  4019. IL_000d:
  4020. {
  4021. float L_3 = ___1_loadFactor;
  4022. RuntimeObject* L_4 = ___2_equalityComparer;
  4023. Hashtable__ctor_mDDBD0273515277E4386A6D3D1E8F8ADB78D0FFDB(G_B3_1, G_B3_0, L_3, L_4, NULL);
  4024. RuntimeObject* L_5 = ___0_d;
  4025. if (L_5)
  4026. {
  4027. goto IL_0027;
  4028. }
  4029. }
  4030. {
  4031. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_6 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  4032. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC17BEC107F953CAF2DF4A462E7EB7B28DCAACE62)), NULL);
  4033. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable__ctor_m62E3F257D81442819A12A041FB525FD8A2289195_RuntimeMethod_var)));
  4034. }
  4035. IL_0027:
  4036. {
  4037. RuntimeObject* L_7 = ___0_d;
  4038. NullCheck(L_7);
  4039. RuntimeObject* L_8;
  4040. L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(9, IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220_il2cpp_TypeInfo_var, L_7);
  4041. V_0 = L_8;
  4042. goto IL_0042;
  4043. }
  4044. IL_0030:
  4045. {
  4046. RuntimeObject* L_9 = V_0;
  4047. NullCheck(L_9);
  4048. RuntimeObject* L_10;
  4049. L_10 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_9);
  4050. RuntimeObject* L_11 = V_0;
  4051. NullCheck(L_11);
  4052. RuntimeObject* L_12;
  4053. L_12 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1, IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16_il2cpp_TypeInfo_var, L_11);
  4054. VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23, __this, L_10, L_12);
  4055. }
  4056. IL_0042:
  4057. {
  4058. RuntimeObject* L_13 = V_0;
  4059. NullCheck(L_13);
  4060. bool L_14;
  4061. L_14 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, L_13);
  4062. if (L_14)
  4063. {
  4064. goto IL_0030;
  4065. }
  4066. }
  4067. {
  4068. return;
  4069. }
  4070. }
  4071. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable__ctor_mD50422D7B9D147207A33AB5BDC0B7CE963A51056 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  4072. {
  4073. static bool s_Il2CppMethodInitialized;
  4074. if (!s_Il2CppMethodInitialized)
  4075. {
  4076. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConditionalWeakTable_2_Add_mF98A2811734A37D856C622E7783FD7502AA7F0B7_RuntimeMethod_var);
  4077. s_Il2CppMethodInitialized = true;
  4078. }
  4079. {
  4080. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4081. ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* L_0;
  4082. L_0 = Hashtable_get_SerializationInfoTable_m29B0EBA91904F2C579B7F3BE6A791DE9F1F6C8BC(NULL);
  4083. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_1 = ___0_info;
  4084. NullCheck(L_0);
  4085. ConditionalWeakTable_2_Add_mF98A2811734A37D856C622E7783FD7502AA7F0B7(L_0, __this, L_1, ConditionalWeakTable_2_Add_mF98A2811734A37D856C622E7783FD7502AA7F0B7_RuntimeMethod_var);
  4086. return;
  4087. }
  4088. }
  4089. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Hashtable_InitHash_mE575CF5A0F7C4EE34ACDEB12597E6FE5A3B13587 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, int32_t ___1_hashsize, uint32_t* ___2_seed, uint32_t* ___3_incr, const RuntimeMethod* method)
  4090. {
  4091. uint32_t V_0 = 0;
  4092. {
  4093. RuntimeObject* L_0 = ___0_key;
  4094. int32_t L_1;
  4095. L_1 = VirtualFuncInvoker1< int32_t, RuntimeObject* >::Invoke(32, __this, L_0);
  4096. V_0 = ((int32_t)(L_1&((int32_t)2147483647LL)));
  4097. uint32_t* L_2 = ___2_seed;
  4098. uint32_t L_3 = V_0;
  4099. *((int32_t*)L_2) = (int32_t)L_3;
  4100. uint32_t* L_4 = ___3_incr;
  4101. uint32_t* L_5 = ___2_seed;
  4102. int32_t L_6 = *((uint32_t*)L_5);
  4103. int32_t L_7 = ___1_hashsize;
  4104. *((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add(1, ((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_multiply(L_6, ((int32_t)101)))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract(L_7, 1))))));
  4105. uint32_t L_8 = V_0;
  4106. return L_8;
  4107. }
  4108. }
  4109. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Add_mF9DD33B30614D8CCA5392AE6D00A040A7F0F19D5 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
  4110. {
  4111. {
  4112. RuntimeObject* L_0 = ___0_key;
  4113. RuntimeObject* L_1 = ___1_value;
  4114. Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291(__this, L_0, L_1, (bool)1, NULL);
  4115. return;
  4116. }
  4117. }
  4118. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Clear_m189F8A2E5FE36FEC069049240660F447B22F58A1 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4119. {
  4120. int32_t V_0 = 0;
  4121. {
  4122. int32_t L_0 = __this->____count;
  4123. if (L_0)
  4124. {
  4125. goto IL_0011;
  4126. }
  4127. }
  4128. {
  4129. int32_t L_1 = __this->____occupancy;
  4130. if (L_1)
  4131. {
  4132. goto IL_0011;
  4133. }
  4134. }
  4135. {
  4136. return;
  4137. }
  4138. IL_0011:
  4139. {
  4140. il2cpp_codegen_memory_barrier();
  4141. __this->____isWriterInProgress = (bool)1;
  4142. V_0 = 0;
  4143. goto IL_0058;
  4144. }
  4145. IL_001e:
  4146. {
  4147. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = __this->____buckets;
  4148. int32_t L_3 = V_0;
  4149. NullCheck(L_2);
  4150. ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___hash_coll = 0;
  4151. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_4 = __this->____buckets;
  4152. int32_t L_5 = V_0;
  4153. NullCheck(L_4);
  4154. ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___key = NULL;
  4155. Il2CppCodeGenWriteBarrier((void**)(&((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___key), (void*)NULL);
  4156. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_6 = __this->____buckets;
  4157. int32_t L_7 = V_0;
  4158. NullCheck(L_6);
  4159. ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___val = NULL;
  4160. Il2CppCodeGenWriteBarrier((void**)(&((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___val), (void*)NULL);
  4161. int32_t L_8 = V_0;
  4162. V_0 = ((int32_t)il2cpp_codegen_add(L_8, 1));
  4163. }
  4164. IL_0058:
  4165. {
  4166. int32_t L_9 = V_0;
  4167. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_10 = __this->____buckets;
  4168. NullCheck(L_10);
  4169. if ((((int32_t)L_9) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
  4170. {
  4171. goto IL_001e;
  4172. }
  4173. }
  4174. {
  4175. __this->____count = 0;
  4176. __this->____occupancy = 0;
  4177. Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A(__this, NULL);
  4178. il2cpp_codegen_memory_barrier();
  4179. __this->____isWriterInProgress = (bool)0;
  4180. return;
  4181. }
  4182. }
  4183. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_Clone_mB2563D44229924F89AE7F351E657CDF87CD7BF7B (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4184. {
  4185. static bool s_Il2CppMethodInitialized;
  4186. if (!s_Il2CppMethodInitialized)
  4187. {
  4188. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
  4189. s_Il2CppMethodInitialized = true;
  4190. }
  4191. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_0 = NULL;
  4192. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* V_1 = NULL;
  4193. int32_t V_2 = 0;
  4194. RuntimeObject* V_3 = NULL;
  4195. {
  4196. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  4197. V_0 = L_0;
  4198. int32_t L_1 = __this->____count;
  4199. RuntimeObject* L_2 = __this->____keycomparer;
  4200. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_3 = (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)il2cpp_codegen_object_new(Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
  4201. Hashtable__ctor_mDE29E5ABF17000F07880AD49D21C42132A5BA7EC(L_3, L_1, L_2, NULL);
  4202. V_1 = L_3;
  4203. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = V_1;
  4204. int32_t L_5 = __this->____version;
  4205. il2cpp_codegen_memory_barrier();
  4206. NullCheck(L_4);
  4207. il2cpp_codegen_memory_barrier();
  4208. L_4->____version = L_5;
  4209. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_6 = V_1;
  4210. float L_7 = __this->____loadFactor;
  4211. NullCheck(L_6);
  4212. L_6->____loadFactor = L_7;
  4213. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_8 = V_1;
  4214. NullCheck(L_8);
  4215. L_8->____count = 0;
  4216. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_9 = V_0;
  4217. NullCheck(L_9);
  4218. V_2 = ((int32_t)(((RuntimeArray*)L_9)->max_length));
  4219. goto IL_006d;
  4220. }
  4221. IL_0042:
  4222. {
  4223. int32_t L_10 = V_2;
  4224. V_2 = ((int32_t)il2cpp_codegen_subtract(L_10, 1));
  4225. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_11 = V_0;
  4226. int32_t L_12 = V_2;
  4227. NullCheck(L_11);
  4228. RuntimeObject* L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___key;
  4229. V_3 = L_13;
  4230. RuntimeObject* L_14 = V_3;
  4231. if (!L_14)
  4232. {
  4233. goto IL_006d;
  4234. }
  4235. }
  4236. {
  4237. RuntimeObject* L_15 = V_3;
  4238. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_16 = V_0;
  4239. if ((((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_16)))
  4240. {
  4241. goto IL_006d;
  4242. }
  4243. }
  4244. {
  4245. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_17 = V_1;
  4246. RuntimeObject* L_18 = V_3;
  4247. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_19 = V_0;
  4248. int32_t L_20 = V_2;
  4249. NullCheck(L_19);
  4250. RuntimeObject* L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___val;
  4251. NullCheck(L_17);
  4252. VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(30, L_17, L_18, L_21);
  4253. }
  4254. IL_006d:
  4255. {
  4256. int32_t L_22 = V_2;
  4257. if ((((int32_t)L_22) > ((int32_t)0)))
  4258. {
  4259. goto IL_0042;
  4260. }
  4261. }
  4262. {
  4263. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_23 = V_1;
  4264. return L_23;
  4265. }
  4266. }
  4267. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_Contains_m096438B2D1B051BAF09EEA1BB6A590A12DC1CA12 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  4268. {
  4269. {
  4270. RuntimeObject* L_0 = ___0_key;
  4271. bool L_1;
  4272. L_1 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27, __this, L_0);
  4273. return L_1;
  4274. }
  4275. }
  4276. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_ContainsKey_mD7547474EE4492B67247124EAEFCA6A92FE861E0 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  4277. {
  4278. uint32_t V_0 = 0;
  4279. uint32_t V_1 = 0;
  4280. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_2 = NULL;
  4281. uint32_t V_3 = 0;
  4282. int32_t V_4 = 0;
  4283. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E V_5;
  4284. memset((&V_5), 0, sizeof(V_5));
  4285. int32_t V_6 = 0;
  4286. {
  4287. RuntimeObject* L_0 = ___0_key;
  4288. if (L_0)
  4289. {
  4290. goto IL_0013;
  4291. }
  4292. }
  4293. {
  4294. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  4295. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), NULL);
  4296. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_ContainsKey_mD7547474EE4492B67247124EAEFCA6A92FE861E0_RuntimeMethod_var)));
  4297. }
  4298. IL_0013:
  4299. {
  4300. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = __this->____buckets;
  4301. V_2 = L_2;
  4302. RuntimeObject* L_3 = ___0_key;
  4303. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_4 = V_2;
  4304. NullCheck(L_4);
  4305. uint32_t L_5;
  4306. L_5 = Hashtable_InitHash_mE575CF5A0F7C4EE34ACDEB12597E6FE5A3B13587(__this, L_3, ((int32_t)(((RuntimeArray*)L_4)->max_length)), (&V_0), (&V_1), NULL);
  4307. V_3 = L_5;
  4308. V_4 = 0;
  4309. uint32_t L_6 = V_0;
  4310. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_7 = V_2;
  4311. NullCheck(L_7);
  4312. V_6 = ((int32_t)((uint32_t)(int32_t)L_6%(uint32_t)(int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))));
  4313. }
  4314. IL_0033:
  4315. {
  4316. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_8 = V_2;
  4317. int32_t L_9 = V_6;
  4318. NullCheck(L_8);
  4319. int32_t L_10 = L_9;
  4320. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
  4321. V_5 = L_11;
  4322. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_12 = V_5;
  4323. RuntimeObject* L_13 = L_12.___key;
  4324. if (L_13)
  4325. {
  4326. goto IL_0048;
  4327. }
  4328. }
  4329. {
  4330. return (bool)0;
  4331. }
  4332. IL_0048:
  4333. {
  4334. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_14 = V_5;
  4335. int32_t L_15 = L_14.___hash_coll;
  4336. uint32_t L_16 = V_3;
  4337. if ((!(((uint64_t)((int64_t)((int32_t)(L_15&((int32_t)2147483647LL))))) == ((uint64_t)((int64_t)(uint64_t)L_16)))))
  4338. {
  4339. goto IL_006c;
  4340. }
  4341. }
  4342. {
  4343. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_17 = V_5;
  4344. RuntimeObject* L_18 = L_17.___key;
  4345. RuntimeObject* L_19 = ___0_key;
  4346. bool L_20;
  4347. L_20 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(36, __this, L_18, L_19);
  4348. if (!L_20)
  4349. {
  4350. goto IL_006c;
  4351. }
  4352. }
  4353. {
  4354. return (bool)1;
  4355. }
  4356. IL_006c:
  4357. {
  4358. int32_t L_21 = V_6;
  4359. uint32_t L_22 = V_1;
  4360. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_23 = V_2;
  4361. NullCheck(L_23);
  4362. V_6 = ((int32_t)((int64_t)(((int64_t)il2cpp_codegen_add(((int64_t)L_21), ((int64_t)(uint64_t)L_22)))%((int64_t)(uint64_t)((uint32_t)((int32_t)(((RuntimeArray*)L_23)->max_length)))))));
  4363. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_24 = V_5;
  4364. int32_t L_25 = L_24.___hash_coll;
  4365. if ((((int32_t)L_25) >= ((int32_t)0)))
  4366. {
  4367. goto IL_0090;
  4368. }
  4369. }
  4370. {
  4371. int32_t L_26 = V_4;
  4372. int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 1));
  4373. V_4 = L_27;
  4374. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_28 = V_2;
  4375. NullCheck(L_28);
  4376. if ((((int32_t)L_27) < ((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length)))))
  4377. {
  4378. goto IL_0033;
  4379. }
  4380. }
  4381. IL_0090:
  4382. {
  4383. return (bool)0;
  4384. }
  4385. }
  4386. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyKeys_mDD7A5AE7064B9845366D9116BC670A210A1C5AA4 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  4387. {
  4388. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_0 = NULL;
  4389. int32_t V_1 = 0;
  4390. RuntimeObject* V_2 = NULL;
  4391. {
  4392. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  4393. V_0 = L_0;
  4394. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_1 = V_0;
  4395. NullCheck(L_1);
  4396. V_1 = ((int32_t)(((RuntimeArray*)L_1)->max_length));
  4397. goto IL_0033;
  4398. }
  4399. IL_000d:
  4400. {
  4401. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = V_0;
  4402. int32_t L_3 = V_1;
  4403. NullCheck(L_2);
  4404. RuntimeObject* L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___key;
  4405. V_2 = L_4;
  4406. RuntimeObject* L_5 = V_2;
  4407. if (!L_5)
  4408. {
  4409. goto IL_0033;
  4410. }
  4411. }
  4412. {
  4413. RuntimeObject* L_6 = V_2;
  4414. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_7 = __this->____buckets;
  4415. if ((((RuntimeObject*)(RuntimeObject*)L_6) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_7)))
  4416. {
  4417. goto IL_0033;
  4418. }
  4419. }
  4420. {
  4421. RuntimeArray* L_8 = ___0_array;
  4422. RuntimeObject* L_9 = V_2;
  4423. int32_t L_10 = ___1_arrayIndex;
  4424. int32_t L_11 = L_10;
  4425. ___1_arrayIndex = ((int32_t)il2cpp_codegen_add(L_11, 1));
  4426. NullCheck(L_8);
  4427. Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_8, L_9, L_11, NULL);
  4428. }
  4429. IL_0033:
  4430. {
  4431. int32_t L_12 = V_1;
  4432. int32_t L_13 = ((int32_t)il2cpp_codegen_subtract(L_12, 1));
  4433. V_1 = L_13;
  4434. if ((((int32_t)L_13) >= ((int32_t)0)))
  4435. {
  4436. goto IL_000d;
  4437. }
  4438. }
  4439. {
  4440. return;
  4441. }
  4442. }
  4443. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyEntries_m5AA0C8FC1FE9E5F6DC2AEB98D18C00919783040B (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  4444. {
  4445. static bool s_Il2CppMethodInitialized;
  4446. if (!s_Il2CppMethodInitialized)
  4447. {
  4448. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
  4449. s_Il2CppMethodInitialized = true;
  4450. }
  4451. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_0 = NULL;
  4452. int32_t V_1 = 0;
  4453. RuntimeObject* V_2 = NULL;
  4454. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB V_3;
  4455. memset((&V_3), 0, sizeof(V_3));
  4456. {
  4457. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  4458. V_0 = L_0;
  4459. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_1 = V_0;
  4460. NullCheck(L_1);
  4461. V_1 = ((int32_t)(((RuntimeArray*)L_1)->max_length));
  4462. goto IL_004c;
  4463. }
  4464. IL_000d:
  4465. {
  4466. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = V_0;
  4467. int32_t L_3 = V_1;
  4468. NullCheck(L_2);
  4469. RuntimeObject* L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___key;
  4470. V_2 = L_4;
  4471. RuntimeObject* L_5 = V_2;
  4472. if (!L_5)
  4473. {
  4474. goto IL_004c;
  4475. }
  4476. }
  4477. {
  4478. RuntimeObject* L_6 = V_2;
  4479. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_7 = __this->____buckets;
  4480. if ((((RuntimeObject*)(RuntimeObject*)L_6) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_7)))
  4481. {
  4482. goto IL_004c;
  4483. }
  4484. }
  4485. {
  4486. RuntimeObject* L_8 = V_2;
  4487. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_9 = V_0;
  4488. int32_t L_10 = V_1;
  4489. NullCheck(L_9);
  4490. RuntimeObject* L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___val;
  4491. DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&V_3), L_8, L_11, NULL);
  4492. RuntimeArray* L_12 = ___0_array;
  4493. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_13 = V_3;
  4494. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_14 = L_13;
  4495. RuntimeObject* L_15 = Box(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var, &L_14);
  4496. int32_t L_16 = ___1_arrayIndex;
  4497. int32_t L_17 = L_16;
  4498. ___1_arrayIndex = ((int32_t)il2cpp_codegen_add(L_17, 1));
  4499. NullCheck(L_12);
  4500. Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_12, L_15, L_17, NULL);
  4501. }
  4502. IL_004c:
  4503. {
  4504. int32_t L_18 = V_1;
  4505. int32_t L_19 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
  4506. V_1 = L_19;
  4507. if ((((int32_t)L_19) >= ((int32_t)0)))
  4508. {
  4509. goto IL_000d;
  4510. }
  4511. }
  4512. {
  4513. return;
  4514. }
  4515. }
  4516. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyTo_mF64638BD6F1A7003B362A0A410FCFC5B5304A989 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  4517. {
  4518. {
  4519. RuntimeArray* L_0 = ___0_array;
  4520. if (L_0)
  4521. {
  4522. goto IL_0013;
  4523. }
  4524. }
  4525. {
  4526. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  4527. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCAA2F88999132DA5422C607B25387A98089B3B06)), NULL);
  4528. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_CopyTo_mF64638BD6F1A7003B362A0A410FCFC5B5304A989_RuntimeMethod_var)));
  4529. }
  4530. IL_0013:
  4531. {
  4532. RuntimeArray* L_2 = ___0_array;
  4533. NullCheck(L_2);
  4534. int32_t L_3;
  4535. L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
  4536. if ((((int32_t)L_3) == ((int32_t)1)))
  4537. {
  4538. goto IL_002c;
  4539. }
  4540. }
  4541. {
  4542. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  4543. ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  4544. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_CopyTo_mF64638BD6F1A7003B362A0A410FCFC5B5304A989_RuntimeMethod_var)));
  4545. }
  4546. IL_002c:
  4547. {
  4548. int32_t L_5 = ___1_arrayIndex;
  4549. if ((((int32_t)L_5) >= ((int32_t)0)))
  4550. {
  4551. goto IL_0040;
  4552. }
  4553. }
  4554. {
  4555. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  4556. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  4557. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_CopyTo_mF64638BD6F1A7003B362A0A410FCFC5B5304A989_RuntimeMethod_var)));
  4558. }
  4559. IL_0040:
  4560. {
  4561. RuntimeArray* L_7 = ___0_array;
  4562. NullCheck(L_7);
  4563. int32_t L_8;
  4564. L_8 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_7, NULL);
  4565. int32_t L_9 = ___1_arrayIndex;
  4566. int32_t L_10;
  4567. L_10 = VirtualFuncInvoker0< int32_t >::Invoke(41, __this);
  4568. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9))) >= ((int32_t)L_10)))
  4569. {
  4570. goto IL_005b;
  4571. }
  4572. }
  4573. {
  4574. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_11 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  4575. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_11, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), NULL);
  4576. IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_CopyTo_mF64638BD6F1A7003B362A0A410FCFC5B5304A989_RuntimeMethod_var)));
  4577. }
  4578. IL_005b:
  4579. {
  4580. RuntimeArray* L_12 = ___0_array;
  4581. int32_t L_13 = ___1_arrayIndex;
  4582. Hashtable_CopyEntries_m5AA0C8FC1FE9E5F6DC2AEB98D18C00919783040B(__this, L_12, L_13, NULL);
  4583. return;
  4584. }
  4585. }
  4586. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_CopyValues_mBF30183D730BBFCA6D6313FF616834605B49D8CF (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  4587. {
  4588. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_0 = NULL;
  4589. int32_t V_1 = 0;
  4590. RuntimeObject* V_2 = NULL;
  4591. {
  4592. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  4593. V_0 = L_0;
  4594. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_1 = V_0;
  4595. NullCheck(L_1);
  4596. V_1 = ((int32_t)(((RuntimeArray*)L_1)->max_length));
  4597. goto IL_003e;
  4598. }
  4599. IL_000d:
  4600. {
  4601. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = V_0;
  4602. int32_t L_3 = V_1;
  4603. NullCheck(L_2);
  4604. RuntimeObject* L_4 = ((L_2)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_3)))->___key;
  4605. V_2 = L_4;
  4606. RuntimeObject* L_5 = V_2;
  4607. if (!L_5)
  4608. {
  4609. goto IL_003e;
  4610. }
  4611. }
  4612. {
  4613. RuntimeObject* L_6 = V_2;
  4614. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_7 = __this->____buckets;
  4615. if ((((RuntimeObject*)(RuntimeObject*)L_6) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_7)))
  4616. {
  4617. goto IL_003e;
  4618. }
  4619. }
  4620. {
  4621. RuntimeArray* L_8 = ___0_array;
  4622. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_9 = V_0;
  4623. int32_t L_10 = V_1;
  4624. NullCheck(L_9);
  4625. RuntimeObject* L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___val;
  4626. int32_t L_12 = ___1_arrayIndex;
  4627. int32_t L_13 = L_12;
  4628. ___1_arrayIndex = ((int32_t)il2cpp_codegen_add(L_13, 1));
  4629. NullCheck(L_8);
  4630. Array_SetValue_mE9507B366ED84E91E92BF32649D36916F96C67B8(L_8, L_11, L_13, NULL);
  4631. }
  4632. IL_003e:
  4633. {
  4634. int32_t L_14 = V_1;
  4635. int32_t L_15 = ((int32_t)il2cpp_codegen_subtract(L_14, 1));
  4636. V_1 = L_15;
  4637. if ((((int32_t)L_15) >= ((int32_t)0)))
  4638. {
  4639. goto IL_000d;
  4640. }
  4641. }
  4642. {
  4643. return;
  4644. }
  4645. }
  4646. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_get_Item_m9E54CED9DB1DB76DD826C235F162BC2109D1D925 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  4647. {
  4648. static bool s_Il2CppMethodInitialized;
  4649. if (!s_Il2CppMethodInitialized)
  4650. {
  4651. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
  4652. s_Il2CppMethodInitialized = true;
  4653. }
  4654. uint32_t V_0 = 0;
  4655. uint32_t V_1 = 0;
  4656. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_2 = NULL;
  4657. uint32_t V_3 = 0;
  4658. int32_t V_4 = 0;
  4659. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E V_5;
  4660. memset((&V_5), 0, sizeof(V_5));
  4661. int32_t V_6 = 0;
  4662. int32_t V_7 = 0;
  4663. SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_8;
  4664. memset((&V_8), 0, sizeof(V_8));
  4665. {
  4666. RuntimeObject* L_0 = ___0_key;
  4667. if (L_0)
  4668. {
  4669. goto IL_0013;
  4670. }
  4671. }
  4672. {
  4673. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  4674. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), NULL);
  4675. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_get_Item_m9E54CED9DB1DB76DD826C235F162BC2109D1D925_RuntimeMethod_var)));
  4676. }
  4677. IL_0013:
  4678. {
  4679. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = __this->____buckets;
  4680. V_2 = L_2;
  4681. RuntimeObject* L_3 = ___0_key;
  4682. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_4 = V_2;
  4683. NullCheck(L_4);
  4684. uint32_t L_5;
  4685. L_5 = Hashtable_InitHash_mE575CF5A0F7C4EE34ACDEB12597E6FE5A3B13587(__this, L_3, ((int32_t)(((RuntimeArray*)L_4)->max_length)), (&V_0), (&V_1), NULL);
  4686. V_3 = L_5;
  4687. V_4 = 0;
  4688. uint32_t L_6 = V_0;
  4689. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_7 = V_2;
  4690. NullCheck(L_7);
  4691. V_6 = ((int32_t)((uint32_t)(int32_t)L_6%(uint32_t)(int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length))));
  4692. }
  4693. IL_0033:
  4694. {
  4695. il2cpp_codegen_initobj((&V_8), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
  4696. }
  4697. IL_003b:
  4698. {
  4699. int32_t L_8 = __this->____version;
  4700. il2cpp_codegen_memory_barrier();
  4701. V_7 = L_8;
  4702. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_9 = V_2;
  4703. int32_t L_10 = V_6;
  4704. NullCheck(L_9);
  4705. int32_t L_11 = L_10;
  4706. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  4707. V_5 = L_12;
  4708. bool L_13 = __this->____isWriterInProgress;
  4709. il2cpp_codegen_memory_barrier();
  4710. if (L_13)
  4711. {
  4712. goto IL_0065;
  4713. }
  4714. }
  4715. {
  4716. int32_t L_14 = V_7;
  4717. int32_t L_15 = __this->____version;
  4718. il2cpp_codegen_memory_barrier();
  4719. if ((((int32_t)L_14) == ((int32_t)L_15)))
  4720. {
  4721. goto IL_006e;
  4722. }
  4723. }
  4724. IL_0065:
  4725. {
  4726. il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
  4727. SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_8), NULL);
  4728. goto IL_003b;
  4729. }
  4730. IL_006e:
  4731. {
  4732. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_16 = V_5;
  4733. RuntimeObject* L_17 = L_16.___key;
  4734. if (L_17)
  4735. {
  4736. goto IL_0079;
  4737. }
  4738. }
  4739. {
  4740. return NULL;
  4741. }
  4742. IL_0079:
  4743. {
  4744. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_18 = V_5;
  4745. int32_t L_19 = L_18.___hash_coll;
  4746. uint32_t L_20 = V_3;
  4747. if ((!(((uint64_t)((int64_t)((int32_t)(L_19&((int32_t)2147483647LL))))) == ((uint64_t)((int64_t)(uint64_t)L_20)))))
  4748. {
  4749. goto IL_00a3;
  4750. }
  4751. }
  4752. {
  4753. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_21 = V_5;
  4754. RuntimeObject* L_22 = L_21.___key;
  4755. RuntimeObject* L_23 = ___0_key;
  4756. bool L_24;
  4757. L_24 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(36, __this, L_22, L_23);
  4758. if (!L_24)
  4759. {
  4760. goto IL_00a3;
  4761. }
  4762. }
  4763. {
  4764. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_25 = V_5;
  4765. RuntimeObject* L_26 = L_25.___val;
  4766. return L_26;
  4767. }
  4768. IL_00a3:
  4769. {
  4770. int32_t L_27 = V_6;
  4771. uint32_t L_28 = V_1;
  4772. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_29 = V_2;
  4773. NullCheck(L_29);
  4774. V_6 = ((int32_t)((int64_t)(((int64_t)il2cpp_codegen_add(((int64_t)L_27), ((int64_t)(uint64_t)L_28)))%((int64_t)(uint64_t)((uint32_t)((int32_t)(((RuntimeArray*)L_29)->max_length)))))));
  4775. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_30 = V_5;
  4776. int32_t L_31 = L_30.___hash_coll;
  4777. if ((((int32_t)L_31) >= ((int32_t)0)))
  4778. {
  4779. goto IL_00ca;
  4780. }
  4781. }
  4782. {
  4783. int32_t L_32 = V_4;
  4784. int32_t L_33 = ((int32_t)il2cpp_codegen_add(L_32, 1));
  4785. V_4 = L_33;
  4786. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_34 = V_2;
  4787. NullCheck(L_34);
  4788. if ((((int32_t)L_33) < ((int32_t)((int32_t)(((RuntimeArray*)L_34)->max_length)))))
  4789. {
  4790. goto IL_0033;
  4791. }
  4792. }
  4793. IL_00ca:
  4794. {
  4795. return NULL;
  4796. }
  4797. }
  4798. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_set_Item_mDF3D54BA5F202F104D31EFAE9065380FEF8859EC (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
  4799. {
  4800. {
  4801. RuntimeObject* L_0 = ___0_key;
  4802. RuntimeObject* L_1 = ___1_value;
  4803. Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291(__this, L_0, L_1, (bool)0, NULL);
  4804. return;
  4805. }
  4806. }
  4807. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_expand_m0FF616AD3323989E34824B1AE634759C3BAF8937 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4808. {
  4809. static bool s_Il2CppMethodInitialized;
  4810. if (!s_Il2CppMethodInitialized)
  4811. {
  4812. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var);
  4813. s_Il2CppMethodInitialized = true;
  4814. }
  4815. int32_t V_0 = 0;
  4816. {
  4817. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  4818. NullCheck(L_0);
  4819. il2cpp_codegen_runtime_class_init_inline(HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var);
  4820. int32_t L_1;
  4821. L_1 = HashHelpers_ExpandPrime_m9A35EC171AA0EA16F7C9F71EE6FAD5A82565ADB9(((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
  4822. V_0 = L_1;
  4823. int32_t L_2 = V_0;
  4824. Hashtable_rehash_m359C272F11FE496EAD29CD875CE080464AE5C688(__this, L_2, NULL);
  4825. return;
  4826. }
  4827. }
  4828. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_mF4C7E0C7240002F6E5FDFF32EF77C06EF2729DB5 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4829. {
  4830. {
  4831. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  4832. NullCheck(L_0);
  4833. Hashtable_rehash_m359C272F11FE496EAD29CD875CE080464AE5C688(__this, ((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
  4834. return;
  4835. }
  4836. }
  4837. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4838. {
  4839. {
  4840. int32_t L_0 = __this->____version;
  4841. il2cpp_codegen_memory_barrier();
  4842. il2cpp_codegen_memory_barrier();
  4843. __this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
  4844. return;
  4845. }
  4846. }
  4847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_rehash_m359C272F11FE496EAD29CD875CE080464AE5C688 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, int32_t ___0_newsize, const RuntimeMethod* method)
  4848. {
  4849. static bool s_Il2CppMethodInitialized;
  4850. if (!s_Il2CppMethodInitialized)
  4851. {
  4852. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var);
  4853. s_Il2CppMethodInitialized = true;
  4854. }
  4855. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* V_0 = NULL;
  4856. int32_t V_1 = 0;
  4857. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E V_2;
  4858. memset((&V_2), 0, sizeof(V_2));
  4859. int32_t V_3 = 0;
  4860. {
  4861. __this->____occupancy = 0;
  4862. int32_t L_0 = ___0_newsize;
  4863. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_1 = (bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)SZArrayNew(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var, (uint32_t)L_0);
  4864. V_0 = L_1;
  4865. V_1 = 0;
  4866. goto IL_005a;
  4867. }
  4868. IL_0012:
  4869. {
  4870. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = __this->____buckets;
  4871. int32_t L_3 = V_1;
  4872. NullCheck(L_2);
  4873. int32_t L_4 = L_3;
  4874. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  4875. V_2 = L_5;
  4876. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_6 = V_2;
  4877. RuntimeObject* L_7 = L_6.___key;
  4878. if (!L_7)
  4879. {
  4880. goto IL_0056;
  4881. }
  4882. }
  4883. {
  4884. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_8 = V_2;
  4885. RuntimeObject* L_9 = L_8.___key;
  4886. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_10 = __this->____buckets;
  4887. if ((((RuntimeObject*)(RuntimeObject*)L_9) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_10)))
  4888. {
  4889. goto IL_0056;
  4890. }
  4891. }
  4892. {
  4893. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_11 = V_2;
  4894. int32_t L_12 = L_11.___hash_coll;
  4895. V_3 = ((int32_t)(L_12&((int32_t)2147483647LL)));
  4896. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_13 = V_0;
  4897. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_14 = V_2;
  4898. RuntimeObject* L_15 = L_14.___key;
  4899. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_16 = V_2;
  4900. RuntimeObject* L_17 = L_16.___val;
  4901. int32_t L_18 = V_3;
  4902. Hashtable_putEntry_mAB0F8F0E2148856D87749F9623EFBEF913323C4B(__this, L_13, L_15, L_17, L_18, NULL);
  4903. }
  4904. IL_0056:
  4905. {
  4906. int32_t L_19 = V_1;
  4907. V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
  4908. }
  4909. IL_005a:
  4910. {
  4911. int32_t L_20 = V_1;
  4912. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_21 = __this->____buckets;
  4913. NullCheck(L_21);
  4914. if ((((int32_t)L_20) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))
  4915. {
  4916. goto IL_0012;
  4917. }
  4918. }
  4919. {
  4920. il2cpp_codegen_memory_barrier();
  4921. __this->____isWriterInProgress = (bool)1;
  4922. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_22 = V_0;
  4923. __this->____buckets = L_22;
  4924. Il2CppCodeGenWriteBarrier((void**)(&__this->____buckets), (void*)L_22);
  4925. float L_23 = __this->____loadFactor;
  4926. int32_t L_24 = ___0_newsize;
  4927. __this->____loadsize = il2cpp_codegen_cast_double_to_int<int32_t>(((float)il2cpp_codegen_multiply(L_23, ((float)L_24))));
  4928. Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A(__this, NULL);
  4929. il2cpp_codegen_memory_barrier();
  4930. __this->____isWriterInProgress = (bool)0;
  4931. return;
  4932. }
  4933. }
  4934. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_System_Collections_IEnumerable_GetEnumerator_m1E7D435C0370CE614C891A645773762D0D04EC86 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4935. {
  4936. static bool s_Il2CppMethodInitialized;
  4937. if (!s_Il2CppMethodInitialized)
  4938. {
  4939. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  4940. s_Il2CppMethodInitialized = true;
  4941. }
  4942. {
  4943. HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* L_0 = (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061*)il2cpp_codegen_object_new(HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  4944. HashtableEnumerator__ctor_m39524FF87DAA4FBB78BED54175E69215AE47D2DC(L_0, __this, 3, NULL);
  4945. return L_0;
  4946. }
  4947. }
  4948. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_GetEnumerator_mFDC4AC74F7AB0A9DBDFC66B6A4A4EFFC8E33A453 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4949. {
  4950. static bool s_Il2CppMethodInitialized;
  4951. if (!s_Il2CppMethodInitialized)
  4952. {
  4953. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  4954. s_Il2CppMethodInitialized = true;
  4955. }
  4956. {
  4957. HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* L_0 = (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061*)il2cpp_codegen_object_new(HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  4958. HashtableEnumerator__ctor_m39524FF87DAA4FBB78BED54175E69215AE47D2DC(L_0, __this, 3, NULL);
  4959. return L_0;
  4960. }
  4961. }
  4962. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hashtable_GetHash_m459113F6E61C0DB4A4C015283CD15653D518E05A (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  4963. {
  4964. static bool s_Il2CppMethodInitialized;
  4965. if (!s_Il2CppMethodInitialized)
  4966. {
  4967. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var);
  4968. s_Il2CppMethodInitialized = true;
  4969. }
  4970. {
  4971. RuntimeObject* L_0 = __this->____keycomparer;
  4972. if (!L_0)
  4973. {
  4974. goto IL_0015;
  4975. }
  4976. }
  4977. {
  4978. RuntimeObject* L_1 = __this->____keycomparer;
  4979. RuntimeObject* L_2 = ___0_key;
  4980. NullCheck(L_1);
  4981. int32_t L_3;
  4982. L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var, L_1, L_2);
  4983. return L_3;
  4984. }
  4985. IL_0015:
  4986. {
  4987. RuntimeObject* L_4 = ___0_key;
  4988. NullCheck(L_4);
  4989. int32_t L_5;
  4990. L_5 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_4);
  4991. return L_5;
  4992. }
  4993. }
  4994. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_get_IsReadOnly_m9355FDC2EFDC7DC7B450B08D1B7E701325CBAD3A (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  4995. {
  4996. {
  4997. return (bool)0;
  4998. }
  4999. }
  5000. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_get_IsFixedSize_m0907A4D0CBA4817F22E1081870BCA5A5DA6515BB (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  5001. {
  5002. {
  5003. return (bool)0;
  5004. }
  5005. }
  5006. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_get_IsSynchronized_m21992E264BFB1D7F0B7A12BA9AA847136DDEA849 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  5007. {
  5008. {
  5009. return (bool)0;
  5010. }
  5011. }
  5012. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Hashtable_KeyEquals_m95D23B7F952AA10E9127A936B01A64995ACE54F6 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_item, RuntimeObject* ___1_key, const RuntimeMethod* method)
  5013. {
  5014. static bool s_Il2CppMethodInitialized;
  5015. if (!s_Il2CppMethodInitialized)
  5016. {
  5017. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var);
  5018. s_Il2CppMethodInitialized = true;
  5019. }
  5020. {
  5021. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  5022. RuntimeObject* L_1 = ___0_item;
  5023. if ((!(((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_0) == ((RuntimeObject*)(RuntimeObject*)L_1))))
  5024. {
  5025. goto IL_000b;
  5026. }
  5027. }
  5028. {
  5029. return (bool)0;
  5030. }
  5031. IL_000b:
  5032. {
  5033. RuntimeObject* L_2 = ___0_item;
  5034. RuntimeObject* L_3 = ___1_key;
  5035. if ((!(((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(RuntimeObject*)L_3))))
  5036. {
  5037. goto IL_0011;
  5038. }
  5039. }
  5040. {
  5041. return (bool)1;
  5042. }
  5043. IL_0011:
  5044. {
  5045. RuntimeObject* L_4 = __this->____keycomparer;
  5046. if (!L_4)
  5047. {
  5048. goto IL_0027;
  5049. }
  5050. }
  5051. {
  5052. RuntimeObject* L_5 = __this->____keycomparer;
  5053. RuntimeObject* L_6 = ___0_item;
  5054. RuntimeObject* L_7 = ___1_key;
  5055. NullCheck(L_5);
  5056. bool L_8;
  5057. L_8 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var, L_5, L_6, L_7);
  5058. return L_8;
  5059. }
  5060. IL_0027:
  5061. {
  5062. RuntimeObject* L_9 = ___0_item;
  5063. if (!L_9)
  5064. {
  5065. goto IL_0032;
  5066. }
  5067. }
  5068. {
  5069. RuntimeObject* L_10 = ___0_item;
  5070. RuntimeObject* L_11 = ___1_key;
  5071. NullCheck(L_10);
  5072. bool L_12;
  5073. L_12 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(0, L_10, L_11);
  5074. return L_12;
  5075. }
  5076. IL_0032:
  5077. {
  5078. return (bool)0;
  5079. }
  5080. }
  5081. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_get_Keys_mA9014B9C2DC73105DF8D383EDD50438A82E67D10 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  5082. {
  5083. static bool s_Il2CppMethodInitialized;
  5084. if (!s_Il2CppMethodInitialized)
  5085. {
  5086. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77_il2cpp_TypeInfo_var);
  5087. s_Il2CppMethodInitialized = true;
  5088. }
  5089. {
  5090. RuntimeObject* L_0 = __this->____keys;
  5091. if (L_0)
  5092. {
  5093. goto IL_0014;
  5094. }
  5095. }
  5096. {
  5097. KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* L_1 = (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77*)il2cpp_codegen_object_new(KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77_il2cpp_TypeInfo_var);
  5098. KeyCollection__ctor_m2F5EB768C82E9BCAA0CAB8823EFE996749ABFDDD(L_1, __this, NULL);
  5099. __this->____keys = L_1;
  5100. Il2CppCodeGenWriteBarrier((void**)(&__this->____keys), (void*)L_1);
  5101. }
  5102. IL_0014:
  5103. {
  5104. RuntimeObject* L_2 = __this->____keys;
  5105. return L_2;
  5106. }
  5107. }
  5108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_get_Values_m7ABC6924A8E924B2CE1EBEBBB90D2EE393B2A88E (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  5109. {
  5110. static bool s_Il2CppMethodInitialized;
  5111. if (!s_Il2CppMethodInitialized)
  5112. {
  5113. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F_il2cpp_TypeInfo_var);
  5114. s_Il2CppMethodInitialized = true;
  5115. }
  5116. {
  5117. RuntimeObject* L_0 = __this->____values;
  5118. if (L_0)
  5119. {
  5120. goto IL_0014;
  5121. }
  5122. }
  5123. {
  5124. ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* L_1 = (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F*)il2cpp_codegen_object_new(ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F_il2cpp_TypeInfo_var);
  5125. ValueCollection__ctor_m9EE64DC0395F01EB90DC1A0863F4B41A2501E226(L_1, __this, NULL);
  5126. __this->____values = L_1;
  5127. Il2CppCodeGenWriteBarrier((void**)(&__this->____values), (void*)L_1);
  5128. }
  5129. IL_0014:
  5130. {
  5131. RuntimeObject* L_2 = __this->____values;
  5132. return L_2;
  5133. }
  5134. }
  5135. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_nvalue, bool ___2_add, const RuntimeMethod* method)
  5136. {
  5137. uint32_t V_0 = 0;
  5138. uint32_t V_1 = 0;
  5139. uint32_t V_2 = 0;
  5140. int32_t V_3 = 0;
  5141. int32_t V_4 = 0;
  5142. int32_t V_5 = 0;
  5143. {
  5144. RuntimeObject* L_0 = ___0_key;
  5145. if (L_0)
  5146. {
  5147. goto IL_0013;
  5148. }
  5149. }
  5150. {
  5151. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  5152. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), NULL);
  5153. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291_RuntimeMethod_var)));
  5154. }
  5155. IL_0013:
  5156. {
  5157. int32_t L_2 = __this->____count;
  5158. int32_t L_3 = __this->____loadsize;
  5159. if ((((int32_t)L_2) < ((int32_t)L_3)))
  5160. {
  5161. goto IL_0029;
  5162. }
  5163. }
  5164. {
  5165. Hashtable_expand_m0FF616AD3323989E34824B1AE634759C3BAF8937(__this, NULL);
  5166. goto IL_0047;
  5167. }
  5168. IL_0029:
  5169. {
  5170. int32_t L_4 = __this->____occupancy;
  5171. int32_t L_5 = __this->____loadsize;
  5172. if ((((int32_t)L_4) <= ((int32_t)L_5)))
  5173. {
  5174. goto IL_0047;
  5175. }
  5176. }
  5177. {
  5178. int32_t L_6 = __this->____count;
  5179. if ((((int32_t)L_6) <= ((int32_t)((int32_t)100))))
  5180. {
  5181. goto IL_0047;
  5182. }
  5183. }
  5184. {
  5185. Hashtable_rehash_mF4C7E0C7240002F6E5FDFF32EF77C06EF2729DB5(__this, NULL);
  5186. }
  5187. IL_0047:
  5188. {
  5189. RuntimeObject* L_7 = ___0_key;
  5190. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_8 = __this->____buckets;
  5191. NullCheck(L_8);
  5192. uint32_t L_9;
  5193. L_9 = Hashtable_InitHash_mE575CF5A0F7C4EE34ACDEB12597E6FE5A3B13587(__this, L_7, ((int32_t)(((RuntimeArray*)L_8)->max_length)), (&V_0), (&V_1), NULL);
  5194. V_2 = L_9;
  5195. V_3 = 0;
  5196. V_4 = (-1);
  5197. uint32_t L_10 = V_0;
  5198. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_11 = __this->____buckets;
  5199. NullCheck(L_11);
  5200. V_5 = ((int32_t)((uint32_t)(int32_t)L_10%(uint32_t)(int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))));
  5201. }
  5202. IL_006c:
  5203. {
  5204. int32_t L_12 = V_4;
  5205. if ((!(((uint32_t)L_12) == ((uint32_t)(-1)))))
  5206. {
  5207. goto IL_00a4;
  5208. }
  5209. }
  5210. {
  5211. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_13 = __this->____buckets;
  5212. int32_t L_14 = V_5;
  5213. NullCheck(L_13);
  5214. RuntimeObject* L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->___key;
  5215. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_16 = __this->____buckets;
  5216. if ((!(((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_16))))
  5217. {
  5218. goto IL_00a4;
  5219. }
  5220. }
  5221. {
  5222. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_17 = __this->____buckets;
  5223. int32_t L_18 = V_5;
  5224. NullCheck(L_17);
  5225. int32_t L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___hash_coll;
  5226. if ((((int32_t)L_19) >= ((int32_t)0)))
  5227. {
  5228. goto IL_00a4;
  5229. }
  5230. }
  5231. {
  5232. int32_t L_20 = V_5;
  5233. V_4 = L_20;
  5234. }
  5235. IL_00a4:
  5236. {
  5237. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_21 = __this->____buckets;
  5238. int32_t L_22 = V_5;
  5239. NullCheck(L_21);
  5240. RuntimeObject* L_23 = ((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_22)))->___key;
  5241. if (!L_23)
  5242. {
  5243. goto IL_00f1;
  5244. }
  5245. }
  5246. {
  5247. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_24 = __this->____buckets;
  5248. int32_t L_25 = V_5;
  5249. NullCheck(L_24);
  5250. RuntimeObject* L_26 = ((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->___key;
  5251. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_27 = __this->____buckets;
  5252. if ((!(((RuntimeObject*)(RuntimeObject*)L_26) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_27))))
  5253. {
  5254. goto IL_015e;
  5255. }
  5256. }
  5257. {
  5258. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_28 = __this->____buckets;
  5259. int32_t L_29 = V_5;
  5260. NullCheck(L_28);
  5261. int32_t L_30 = ((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->___hash_coll;
  5262. if (((int64_t)(((int64_t)L_30)&((int64_t)(uint64_t)((uint32_t)((int32_t)-2147483648LL))))))
  5263. {
  5264. goto IL_015e;
  5265. }
  5266. }
  5267. IL_00f1:
  5268. {
  5269. int32_t L_31 = V_4;
  5270. if ((((int32_t)L_31) == ((int32_t)(-1))))
  5271. {
  5272. goto IL_00fa;
  5273. }
  5274. }
  5275. {
  5276. int32_t L_32 = V_4;
  5277. V_5 = L_32;
  5278. }
  5279. IL_00fa:
  5280. {
  5281. il2cpp_codegen_memory_barrier();
  5282. __this->____isWriterInProgress = (bool)1;
  5283. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_33 = __this->____buckets;
  5284. int32_t L_34 = V_5;
  5285. NullCheck(L_33);
  5286. RuntimeObject* L_35 = ___1_nvalue;
  5287. ((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->___val = L_35;
  5288. Il2CppCodeGenWriteBarrier((void**)(&((L_33)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_34)))->___val), (void*)L_35);
  5289. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_36 = __this->____buckets;
  5290. int32_t L_37 = V_5;
  5291. NullCheck(L_36);
  5292. RuntimeObject* L_38 = ___0_key;
  5293. ((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)))->___key = L_38;
  5294. Il2CppCodeGenWriteBarrier((void**)(&((L_36)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_37)))->___key), (void*)L_38);
  5295. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_39 = __this->____buckets;
  5296. int32_t L_40 = V_5;
  5297. NullCheck(L_39);
  5298. int32_t* L_41 = (int32_t*)(&((L_39)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_40)))->___hash_coll);
  5299. int32_t* L_42 = L_41;
  5300. int32_t L_43 = *((int32_t*)L_42);
  5301. uint32_t L_44 = V_2;
  5302. *((int32_t*)L_42) = (int32_t)((int32_t)(L_43|(int32_t)L_44));
  5303. int32_t L_45 = __this->____count;
  5304. __this->____count = ((int32_t)il2cpp_codegen_add(L_45, 1));
  5305. Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A(__this, NULL);
  5306. il2cpp_codegen_memory_barrier();
  5307. __this->____isWriterInProgress = (bool)0;
  5308. return;
  5309. }
  5310. IL_015e:
  5311. {
  5312. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_46 = __this->____buckets;
  5313. int32_t L_47 = V_5;
  5314. NullCheck(L_46);
  5315. int32_t L_48 = ((L_46)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_47)))->___hash_coll;
  5316. uint32_t L_49 = V_2;
  5317. if ((!(((uint64_t)((int64_t)((int32_t)(L_48&((int32_t)2147483647LL))))) == ((uint64_t)((int64_t)(uint64_t)L_49)))))
  5318. {
  5319. goto IL_01e8;
  5320. }
  5321. }
  5322. {
  5323. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_50 = __this->____buckets;
  5324. int32_t L_51 = V_5;
  5325. NullCheck(L_50);
  5326. RuntimeObject* L_52 = ((L_50)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_51)))->___key;
  5327. RuntimeObject* L_53 = ___0_key;
  5328. bool L_54;
  5329. L_54 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(36, __this, L_52, L_53);
  5330. if (!L_54)
  5331. {
  5332. goto IL_01e8;
  5333. }
  5334. }
  5335. {
  5336. bool L_55 = ___2_add;
  5337. if (!L_55)
  5338. {
  5339. goto IL_01bc;
  5340. }
  5341. }
  5342. {
  5343. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_56 = __this->____buckets;
  5344. int32_t L_57 = V_5;
  5345. NullCheck(L_56);
  5346. RuntimeObject* L_58 = ((L_56)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_57)))->___key;
  5347. RuntimeObject* L_59 = ___0_key;
  5348. String_t* L_60;
  5349. L_60 = SR_Format_m27BC634145CE1B8E25594A82CDBBF04AD501CA02(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral62EDD94B35AE1C598F9C8060E6F26AD1470D672D)), L_58, L_59, NULL);
  5350. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_61 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5351. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_61, L_60, NULL);
  5352. IL2CPP_RAISE_MANAGED_EXCEPTION(L_61, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291_RuntimeMethod_var)));
  5353. }
  5354. IL_01bc:
  5355. {
  5356. il2cpp_codegen_memory_barrier();
  5357. __this->____isWriterInProgress = (bool)1;
  5358. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_62 = __this->____buckets;
  5359. int32_t L_63 = V_5;
  5360. NullCheck(L_62);
  5361. RuntimeObject* L_64 = ___1_nvalue;
  5362. ((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->___val = L_64;
  5363. Il2CppCodeGenWriteBarrier((void**)(&((L_62)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_63)))->___val), (void*)L_64);
  5364. Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A(__this, NULL);
  5365. il2cpp_codegen_memory_barrier();
  5366. __this->____isWriterInProgress = (bool)0;
  5367. return;
  5368. }
  5369. IL_01e8:
  5370. {
  5371. int32_t L_65 = V_4;
  5372. if ((!(((uint32_t)L_65) == ((uint32_t)(-1)))))
  5373. {
  5374. goto IL_022b;
  5375. }
  5376. }
  5377. {
  5378. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_66 = __this->____buckets;
  5379. int32_t L_67 = V_5;
  5380. NullCheck(L_66);
  5381. int32_t L_68 = ((L_66)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_67)))->___hash_coll;
  5382. if ((((int32_t)L_68) < ((int32_t)0)))
  5383. {
  5384. goto IL_022b;
  5385. }
  5386. }
  5387. {
  5388. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_69 = __this->____buckets;
  5389. int32_t L_70 = V_5;
  5390. NullCheck(L_69);
  5391. int32_t* L_71 = (int32_t*)(&((L_69)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_70)))->___hash_coll);
  5392. int32_t* L_72 = L_71;
  5393. int32_t L_73 = *((int32_t*)L_72);
  5394. *((int32_t*)L_72) = (int32_t)((int32_t)(L_73|((int32_t)-2147483648LL)));
  5395. int32_t L_74 = __this->____occupancy;
  5396. __this->____occupancy = ((int32_t)il2cpp_codegen_add(L_74, 1));
  5397. }
  5398. IL_022b:
  5399. {
  5400. int32_t L_75 = V_5;
  5401. uint32_t L_76 = V_1;
  5402. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_77 = __this->____buckets;
  5403. NullCheck(L_77);
  5404. V_5 = ((int32_t)((int64_t)(((int64_t)il2cpp_codegen_add(((int64_t)L_75), ((int64_t)(uint64_t)L_76)))%((int64_t)(uint64_t)((uint32_t)((int32_t)(((RuntimeArray*)L_77)->max_length)))))));
  5405. int32_t L_78 = V_3;
  5406. int32_t L_79 = ((int32_t)il2cpp_codegen_add(L_78, 1));
  5407. V_3 = L_79;
  5408. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_80 = __this->____buckets;
  5409. NullCheck(L_80);
  5410. if ((((int32_t)L_79) < ((int32_t)((int32_t)(((RuntimeArray*)L_80)->max_length)))))
  5411. {
  5412. goto IL_006c;
  5413. }
  5414. }
  5415. {
  5416. int32_t L_81 = V_4;
  5417. if ((((int32_t)L_81) == ((int32_t)(-1))))
  5418. {
  5419. goto IL_02b9;
  5420. }
  5421. }
  5422. {
  5423. il2cpp_codegen_memory_barrier();
  5424. __this->____isWriterInProgress = (bool)1;
  5425. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_82 = __this->____buckets;
  5426. int32_t L_83 = V_4;
  5427. NullCheck(L_82);
  5428. RuntimeObject* L_84 = ___1_nvalue;
  5429. ((L_82)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_83)))->___val = L_84;
  5430. Il2CppCodeGenWriteBarrier((void**)(&((L_82)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_83)))->___val), (void*)L_84);
  5431. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_85 = __this->____buckets;
  5432. int32_t L_86 = V_4;
  5433. NullCheck(L_85);
  5434. RuntimeObject* L_87 = ___0_key;
  5435. ((L_85)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_86)))->___key = L_87;
  5436. Il2CppCodeGenWriteBarrier((void**)(&((L_85)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_86)))->___key), (void*)L_87);
  5437. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_88 = __this->____buckets;
  5438. int32_t L_89 = V_4;
  5439. NullCheck(L_88);
  5440. int32_t* L_90 = (int32_t*)(&((L_88)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_89)))->___hash_coll);
  5441. int32_t* L_91 = L_90;
  5442. int32_t L_92 = *((int32_t*)L_91);
  5443. uint32_t L_93 = V_2;
  5444. *((int32_t*)L_91) = (int32_t)((int32_t)(L_92|(int32_t)L_93));
  5445. int32_t L_94 = __this->____count;
  5446. __this->____count = ((int32_t)il2cpp_codegen_add(L_94, 1));
  5447. Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A(__this, NULL);
  5448. il2cpp_codegen_memory_barrier();
  5449. __this->____isWriterInProgress = (bool)0;
  5450. return;
  5451. }
  5452. IL_02b9:
  5453. {
  5454. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_95 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5455. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_95, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD48F64ABB05D3F39046297B361BD8AA53451659A)), NULL);
  5456. IL2CPP_RAISE_MANAGED_EXCEPTION(L_95, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291_RuntimeMethod_var)));
  5457. }
  5458. }
  5459. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_putEntry_mAB0F8F0E2148856D87749F9623EFBEF913323C4B (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* ___0_newBuckets, RuntimeObject* ___1_key, RuntimeObject* ___2_nvalue, int32_t ___3_hashcode, const RuntimeMethod* method)
  5460. {
  5461. uint32_t V_0 = 0;
  5462. uint32_t V_1 = 0;
  5463. int32_t V_2 = 0;
  5464. {
  5465. int32_t L_0 = ___3_hashcode;
  5466. V_0 = L_0;
  5467. uint32_t L_1 = V_0;
  5468. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = ___0_newBuckets;
  5469. NullCheck(L_2);
  5470. V_1 = ((int32_t)il2cpp_codegen_add(1, ((int32_t)((uint32_t)(int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, ((int32_t)101)))%(uint32_t)(int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_2)->max_length)), 1))))));
  5471. uint32_t L_3 = V_0;
  5472. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_4 = ___0_newBuckets;
  5473. NullCheck(L_4);
  5474. V_2 = ((int32_t)((uint32_t)(int32_t)L_3%(uint32_t)(int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))));
  5475. }
  5476. IL_0016:
  5477. {
  5478. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_5 = ___0_newBuckets;
  5479. int32_t L_6 = V_2;
  5480. NullCheck(L_5);
  5481. RuntimeObject* L_7 = ((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___key;
  5482. if (!L_7)
  5483. {
  5484. goto IL_0038;
  5485. }
  5486. }
  5487. {
  5488. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_8 = ___0_newBuckets;
  5489. int32_t L_9 = V_2;
  5490. NullCheck(L_8);
  5491. RuntimeObject* L_10 = ((L_8)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_9)))->___key;
  5492. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_11 = __this->____buckets;
  5493. if ((!(((RuntimeObject*)(RuntimeObject*)L_10) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_11))))
  5494. {
  5495. goto IL_0065;
  5496. }
  5497. }
  5498. IL_0038:
  5499. {
  5500. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_12 = ___0_newBuckets;
  5501. int32_t L_13 = V_2;
  5502. NullCheck(L_12);
  5503. RuntimeObject* L_14 = ___2_nvalue;
  5504. ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->___val = L_14;
  5505. Il2CppCodeGenWriteBarrier((void**)(&((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->___val), (void*)L_14);
  5506. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_15 = ___0_newBuckets;
  5507. int32_t L_16 = V_2;
  5508. NullCheck(L_15);
  5509. RuntimeObject* L_17 = ___1_key;
  5510. ((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->___key = L_17;
  5511. Il2CppCodeGenWriteBarrier((void**)(&((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->___key), (void*)L_17);
  5512. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_18 = ___0_newBuckets;
  5513. int32_t L_19 = V_2;
  5514. NullCheck(L_18);
  5515. int32_t* L_20 = (int32_t*)(&((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->___hash_coll);
  5516. int32_t* L_21 = L_20;
  5517. int32_t L_22 = *((int32_t*)L_21);
  5518. int32_t L_23 = ___3_hashcode;
  5519. *((int32_t*)L_21) = (int32_t)((int32_t)(L_22|L_23));
  5520. return;
  5521. }
  5522. IL_0065:
  5523. {
  5524. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_24 = ___0_newBuckets;
  5525. int32_t L_25 = V_2;
  5526. NullCheck(L_24);
  5527. int32_t L_26 = ((L_24)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_25)))->___hash_coll;
  5528. if ((((int32_t)L_26) < ((int32_t)0)))
  5529. {
  5530. goto IL_0097;
  5531. }
  5532. }
  5533. {
  5534. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_27 = ___0_newBuckets;
  5535. int32_t L_28 = V_2;
  5536. NullCheck(L_27);
  5537. int32_t* L_29 = (int32_t*)(&((L_27)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_28)))->___hash_coll);
  5538. int32_t* L_30 = L_29;
  5539. int32_t L_31 = *((int32_t*)L_30);
  5540. *((int32_t*)L_30) = (int32_t)((int32_t)(L_31|((int32_t)-2147483648LL)));
  5541. int32_t L_32 = __this->____occupancy;
  5542. __this->____occupancy = ((int32_t)il2cpp_codegen_add(L_32, 1));
  5543. }
  5544. IL_0097:
  5545. {
  5546. int32_t L_33 = V_2;
  5547. uint32_t L_34 = V_1;
  5548. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_35 = ___0_newBuckets;
  5549. NullCheck(L_35);
  5550. V_2 = ((int32_t)((int64_t)(((int64_t)il2cpp_codegen_add(((int64_t)L_33), ((int64_t)(uint64_t)L_34)))%((int64_t)(uint64_t)((uint32_t)((int32_t)(((RuntimeArray*)L_35)->max_length)))))));
  5551. goto IL_0016;
  5552. }
  5553. }
  5554. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_Remove_mE9F11255E490CB42E8F6D9F659EA5F3B9A3A6D1F (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  5555. {
  5556. uint32_t V_0 = 0;
  5557. uint32_t V_1 = 0;
  5558. uint32_t V_2 = 0;
  5559. int32_t V_3 = 0;
  5560. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E V_4;
  5561. memset((&V_4), 0, sizeof(V_4));
  5562. int32_t V_5 = 0;
  5563. {
  5564. RuntimeObject* L_0 = ___0_key;
  5565. if (L_0)
  5566. {
  5567. goto IL_0013;
  5568. }
  5569. }
  5570. {
  5571. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  5572. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), NULL);
  5573. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_Remove_mE9F11255E490CB42E8F6D9F659EA5F3B9A3A6D1F_RuntimeMethod_var)));
  5574. }
  5575. IL_0013:
  5576. {
  5577. RuntimeObject* L_2 = ___0_key;
  5578. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_3 = __this->____buckets;
  5579. NullCheck(L_3);
  5580. uint32_t L_4;
  5581. L_4 = Hashtable_InitHash_mE575CF5A0F7C4EE34ACDEB12597E6FE5A3B13587(__this, L_2, ((int32_t)(((RuntimeArray*)L_3)->max_length)), (&V_0), (&V_1), NULL);
  5582. V_2 = L_4;
  5583. V_3 = 0;
  5584. uint32_t L_5 = V_0;
  5585. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_6 = __this->____buckets;
  5586. NullCheck(L_6);
  5587. V_5 = ((int32_t)((uint32_t)(int32_t)L_5%(uint32_t)(int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))));
  5588. }
  5589. IL_0035:
  5590. {
  5591. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_7 = __this->____buckets;
  5592. int32_t L_8 = V_5;
  5593. NullCheck(L_7);
  5594. int32_t L_9 = L_8;
  5595. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
  5596. V_4 = L_10;
  5597. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_11 = V_4;
  5598. int32_t L_12 = L_11.___hash_coll;
  5599. uint32_t L_13 = V_2;
  5600. if ((!(((uint64_t)((int64_t)((int32_t)(L_12&((int32_t)2147483647LL))))) == ((uint64_t)((int64_t)(uint64_t)L_13)))))
  5601. {
  5602. goto IL_0102;
  5603. }
  5604. }
  5605. {
  5606. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_14 = V_4;
  5607. RuntimeObject* L_15 = L_14.___key;
  5608. RuntimeObject* L_16 = ___0_key;
  5609. bool L_17;
  5610. L_17 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(36, __this, L_15, L_16);
  5611. if (!L_17)
  5612. {
  5613. goto IL_0102;
  5614. }
  5615. }
  5616. {
  5617. il2cpp_codegen_memory_barrier();
  5618. __this->____isWriterInProgress = (bool)1;
  5619. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_18 = __this->____buckets;
  5620. int32_t L_19 = V_5;
  5621. NullCheck(L_18);
  5622. int32_t* L_20 = (int32_t*)(&((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->___hash_coll);
  5623. int32_t* L_21 = L_20;
  5624. int32_t L_22 = *((int32_t*)L_21);
  5625. *((int32_t*)L_21) = (int32_t)((int32_t)(L_22&((int32_t)-2147483648LL)));
  5626. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_23 = __this->____buckets;
  5627. int32_t L_24 = V_5;
  5628. NullCheck(L_23);
  5629. int32_t L_25 = ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->___hash_coll;
  5630. if (!L_25)
  5631. {
  5632. goto IL_00be;
  5633. }
  5634. }
  5635. {
  5636. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_26 = __this->____buckets;
  5637. int32_t L_27 = V_5;
  5638. NullCheck(L_26);
  5639. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_28 = __this->____buckets;
  5640. ((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->___key = (RuntimeObject*)L_28;
  5641. Il2CppCodeGenWriteBarrier((void**)(&((L_26)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_27)))->___key), (void*)(RuntimeObject*)L_28);
  5642. goto IL_00d1;
  5643. }
  5644. IL_00be:
  5645. {
  5646. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_29 = __this->____buckets;
  5647. int32_t L_30 = V_5;
  5648. NullCheck(L_29);
  5649. ((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->___key = NULL;
  5650. Il2CppCodeGenWriteBarrier((void**)(&((L_29)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_30)))->___key), (void*)NULL);
  5651. }
  5652. IL_00d1:
  5653. {
  5654. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_31 = __this->____buckets;
  5655. int32_t L_32 = V_5;
  5656. NullCheck(L_31);
  5657. ((L_31)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_32)))->___val = NULL;
  5658. Il2CppCodeGenWriteBarrier((void**)(&((L_31)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_32)))->___val), (void*)NULL);
  5659. int32_t L_33 = __this->____count;
  5660. __this->____count = ((int32_t)il2cpp_codegen_subtract(L_33, 1));
  5661. Hashtable_UpdateVersion_m1D0B844B95441A5B4328F413C245FBECF1D3538A(__this, NULL);
  5662. il2cpp_codegen_memory_barrier();
  5663. __this->____isWriterInProgress = (bool)0;
  5664. return;
  5665. }
  5666. IL_0102:
  5667. {
  5668. int32_t L_34 = V_5;
  5669. uint32_t L_35 = V_1;
  5670. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_36 = __this->____buckets;
  5671. NullCheck(L_36);
  5672. V_5 = ((int32_t)((int64_t)(((int64_t)il2cpp_codegen_add(((int64_t)L_34), ((int64_t)(uint64_t)L_35)))%((int64_t)(uint64_t)((uint32_t)((int32_t)(((RuntimeArray*)L_36)->max_length)))))));
  5673. bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E L_37 = V_4;
  5674. int32_t L_38 = L_37.___hash_coll;
  5675. if ((((int32_t)L_38) >= ((int32_t)0)))
  5676. {
  5677. goto IL_0131;
  5678. }
  5679. }
  5680. {
  5681. int32_t L_39 = V_3;
  5682. int32_t L_40 = ((int32_t)il2cpp_codegen_add(L_39, 1));
  5683. V_3 = L_40;
  5684. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_41 = __this->____buckets;
  5685. NullCheck(L_41);
  5686. if ((((int32_t)L_40) < ((int32_t)((int32_t)(((RuntimeArray*)L_41)->max_length)))))
  5687. {
  5688. goto IL_0035;
  5689. }
  5690. }
  5691. IL_0131:
  5692. {
  5693. return;
  5694. }
  5695. }
  5696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Hashtable_get_SyncRoot_mED003D6ED8C083913A6EC414AB950AE4EE42ED4F (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  5697. {
  5698. static bool s_Il2CppMethodInitialized;
  5699. if (!s_Il2CppMethodInitialized)
  5700. {
  5701. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
  5702. s_Il2CppMethodInitialized = true;
  5703. }
  5704. {
  5705. RuntimeObject* L_0 = __this->____syncRoot;
  5706. if (L_0)
  5707. {
  5708. goto IL_001a;
  5709. }
  5710. }
  5711. {
  5712. RuntimeObject** L_1 = (RuntimeObject**)(&__this->____syncRoot);
  5713. RuntimeObject* L_2 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
  5714. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_2, NULL);
  5715. RuntimeObject* L_3;
  5716. L_3 = InterlockedCompareExchangeImpl<RuntimeObject*>(L_1, L_2, NULL);
  5717. }
  5718. IL_001a:
  5719. {
  5720. RuntimeObject* L_4 = __this->____syncRoot;
  5721. return L_4;
  5722. }
  5723. }
  5724. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Hashtable_get_Count_mA7BE8DF97C45F9046C93AC8F0C57EA31F1257999 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, const RuntimeMethod* method)
  5725. {
  5726. {
  5727. int32_t L_0 = __this->____count;
  5728. return L_0;
  5729. }
  5730. }
  5731. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* Hashtable_Synchronized_m6C533F21D7532A6118974AE7634AB28C76765EF5 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_table, const RuntimeMethod* method)
  5732. {
  5733. static bool s_Il2CppMethodInitialized;
  5734. if (!s_Il2CppMethodInitialized)
  5735. {
  5736. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5_il2cpp_TypeInfo_var);
  5737. s_Il2CppMethodInitialized = true;
  5738. }
  5739. {
  5740. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___0_table;
  5741. if (L_0)
  5742. {
  5743. goto IL_000e;
  5744. }
  5745. }
  5746. {
  5747. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  5748. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB4054C6E4E11B87959DDCCED1FDA757609E47F49)), NULL);
  5749. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_Synchronized_m6C533F21D7532A6118974AE7634AB28C76765EF5_RuntimeMethod_var)));
  5750. }
  5751. IL_000e:
  5752. {
  5753. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = ___0_table;
  5754. SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* L_3 = (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5*)il2cpp_codegen_object_new(SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5_il2cpp_TypeInfo_var);
  5755. SyncHashtable__ctor_mFFE7535A50219583B15ACC748FE3E7CB6B52EEAA(L_3, L_2, NULL);
  5756. return L_3;
  5757. }
  5758. }
  5759. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_GetObjectData_m1BD67716932F63BD5EBD6A946564D4C7E2C573D9 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  5760. {
  5761. static bool s_Il2CppMethodInitialized;
  5762. if (!s_Il2CppMethodInitialized)
  5763. {
  5764. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465_il2cpp_TypeInfo_var);
  5765. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_0_0_0_var);
  5766. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_0_0_0_var);
  5767. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_0_0_0_var);
  5768. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var);
  5769. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  5770. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  5771. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11F27A23993F7FC4801D0240B7C41D835B44B745);
  5772. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1275D52763CF050C5A4C759818D60119CC35BD69);
  5773. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12B3B315E8F60BA82CD3BA50FEE2FE5C0949B763);
  5774. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE17D366C57CBF012064BEF57DC6B58C6B46A88);
  5775. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral539E8D7071DA3C24DE80E9DDA3E12DBCDC283FBB);
  5776. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1);
  5777. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9);
  5778. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE200AC1425952F4F5CEAAA9C773B6D17B90E47C1);
  5779. s_Il2CppMethodInitialized = true;
  5780. }
  5781. RuntimeObject* V_0 = NULL;
  5782. bool V_1 = false;
  5783. int32_t V_2 = 0;
  5784. RuntimeObject* V_3 = NULL;
  5785. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
  5786. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_5 = NULL;
  5787. CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* V_6 = NULL;
  5788. {
  5789. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
  5790. if (L_0)
  5791. {
  5792. goto IL_000e;
  5793. }
  5794. }
  5795. {
  5796. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  5797. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA7B00F7F25C375B2501A6ADBC86D092B23977085)), NULL);
  5798. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_GetObjectData_m1BD67716932F63BD5EBD6A946564D4C7E2C573D9_RuntimeMethod_var)));
  5799. }
  5800. IL_000e:
  5801. {
  5802. RuntimeObject* L_2;
  5803. L_2 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, __this);
  5804. V_0 = L_2;
  5805. V_1 = (bool)0;
  5806. }
  5807. {
  5808. auto __finallyBlock = il2cpp::utils::Finally([&]
  5809. {
  5810. FINALLY_0169:
  5811. {
  5812. {
  5813. bool L_3 = V_1;
  5814. if (!L_3)
  5815. {
  5816. goto IL_0172;
  5817. }
  5818. }
  5819. {
  5820. RuntimeObject* L_4 = V_0;
  5821. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL);
  5822. }
  5823. IL_0172:
  5824. {
  5825. return;
  5826. }
  5827. }
  5828. });
  5829. try
  5830. {
  5831. {
  5832. RuntimeObject* L_5 = V_0;
  5833. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_1), NULL);
  5834. int32_t L_6 = __this->____version;
  5835. il2cpp_codegen_memory_barrier();
  5836. V_2 = L_6;
  5837. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_7 = ___0_info;
  5838. float L_8 = __this->____loadFactor;
  5839. NullCheck(L_7);
  5840. SerializationInfo_AddValue_m6237DBFE29011A85D27E76E64BD806D7BFC4D46C(L_7, _stringLiteral539E8D7071DA3C24DE80E9DDA3E12DBCDC283FBB, L_8, NULL);
  5841. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_9 = ___0_info;
  5842. int32_t L_10 = __this->____version;
  5843. il2cpp_codegen_memory_barrier();
  5844. NullCheck(L_9);
  5845. SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4(L_9, _stringLiteralE200AC1425952F4F5CEAAA9C773B6D17B90E47C1, L_10, NULL);
  5846. RuntimeObject* L_11 = __this->____keycomparer;
  5847. V_3 = L_11;
  5848. RuntimeObject* L_12 = V_3;
  5849. if (L_12)
  5850. {
  5851. goto IL_0084_1;
  5852. }
  5853. }
  5854. {
  5855. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_13 = ___0_info;
  5856. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_0_0_0_var) };
  5857. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  5858. Type_t* L_15;
  5859. L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
  5860. NullCheck(L_13);
  5861. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_13, _stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9, NULL, L_15, NULL);
  5862. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_16 = ___0_info;
  5863. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_0_0_0_var) };
  5864. Type_t* L_18;
  5865. L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
  5866. NullCheck(L_16);
  5867. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_16, _stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1, NULL, L_18, NULL);
  5868. goto IL_00e4_1;
  5869. }
  5870. IL_0084_1:
  5871. {
  5872. RuntimeObject* L_19 = V_3;
  5873. if (!((CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465*)IsInstSealed((RuntimeObject*)L_19, CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465_il2cpp_TypeInfo_var)))
  5874. {
  5875. goto IL_00ce_1;
  5876. }
  5877. }
  5878. {
  5879. RuntimeObject* L_20 = V_3;
  5880. V_6 = ((CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465*)IsInstSealed((RuntimeObject*)L_20, CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465_il2cpp_TypeInfo_var));
  5881. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_21 = ___0_info;
  5882. CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* L_22 = V_6;
  5883. NullCheck(L_22);
  5884. RuntimeObject* L_23;
  5885. L_23 = CompatibleComparer_get_Comparer_m39BC17C080DFDF285593D156478FFECCB1928F36_inline(L_22, NULL);
  5886. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_24 = { reinterpret_cast<intptr_t> (IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_0_0_0_var) };
  5887. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  5888. Type_t* L_25;
  5889. L_25 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_24, NULL);
  5890. NullCheck(L_21);
  5891. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_21, _stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9, L_23, L_25, NULL);
  5892. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_26 = ___0_info;
  5893. CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* L_27 = V_6;
  5894. NullCheck(L_27);
  5895. RuntimeObject* L_28;
  5896. L_28 = CompatibleComparer_get_HashCodeProvider_mE25935574860D4D71106E4BB4F689C4CCB8FF599_inline(L_27, NULL);
  5897. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_29 = { reinterpret_cast<intptr_t> (IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_0_0_0_var) };
  5898. Type_t* L_30;
  5899. L_30 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_29, NULL);
  5900. NullCheck(L_26);
  5901. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_26, _stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1, L_28, L_30, NULL);
  5902. goto IL_00e4_1;
  5903. }
  5904. IL_00ce_1:
  5905. {
  5906. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_31 = ___0_info;
  5907. RuntimeObject* L_32 = V_3;
  5908. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_33 = { reinterpret_cast<intptr_t> (IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_0_0_0_var) };
  5909. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  5910. Type_t* L_34;
  5911. L_34 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_33, NULL);
  5912. NullCheck(L_31);
  5913. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_31, _stringLiteral3EE17D366C57CBF012064BEF57DC6B58C6B46A88, L_32, L_34, NULL);
  5914. }
  5915. IL_00e4_1:
  5916. {
  5917. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_35 = ___0_info;
  5918. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_36 = __this->____buckets;
  5919. NullCheck(L_36);
  5920. NullCheck(L_35);
  5921. SerializationInfo_AddValue_m9D6ADD10966D1FE8D19050F3A269747C23FE9FC4(L_35, _stringLiteral1275D52763CF050C5A4C759818D60119CC35BD69, ((int32_t)(((RuntimeArray*)L_36)->max_length)), NULL);
  5922. int32_t L_37 = __this->____count;
  5923. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_37);
  5924. V_4 = L_38;
  5925. int32_t L_39 = __this->____count;
  5926. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_40 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_39);
  5927. V_5 = L_40;
  5928. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = V_4;
  5929. Hashtable_CopyKeys_mDD7A5AE7064B9845366D9116BC670A210A1C5AA4(__this, (RuntimeArray*)L_41, 0, NULL);
  5930. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_42 = V_5;
  5931. Hashtable_CopyValues_mBF30183D730BBFCA6D6313FF616834605B49D8CF(__this, (RuntimeArray*)L_42, 0, NULL);
  5932. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_43 = ___0_info;
  5933. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = V_4;
  5934. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
  5935. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  5936. Type_t* L_46;
  5937. L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
  5938. NullCheck(L_43);
  5939. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_43, _stringLiteral11F27A23993F7FC4801D0240B7C41D835B44B745, (RuntimeObject*)L_44, L_46, NULL);
  5940. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_47 = ___0_info;
  5941. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_48 = V_5;
  5942. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
  5943. Type_t* L_50;
  5944. L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
  5945. NullCheck(L_47);
  5946. SerializationInfo_AddValue_m1AD59BBF8C3129142943D3F298ADF09FF123C199(L_47, _stringLiteral12B3B315E8F60BA82CD3BA50FEE2FE5C0949B763, (RuntimeObject*)L_48, L_50, NULL);
  5947. int32_t L_51 = __this->____version;
  5948. il2cpp_codegen_memory_barrier();
  5949. int32_t L_52 = V_2;
  5950. if ((((int32_t)L_51) == ((int32_t)L_52)))
  5951. {
  5952. goto IL_0167_1;
  5953. }
  5954. }
  5955. {
  5956. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_53 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5957. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_53, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
  5958. IL2CPP_RAISE_MANAGED_EXCEPTION(L_53, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_GetObjectData_m1BD67716932F63BD5EBD6A946564D4C7E2C573D9_RuntimeMethod_var)));
  5959. }
  5960. IL_0167_1:
  5961. {
  5962. goto IL_0173;
  5963. }
  5964. }
  5965. catch(Il2CppExceptionWrapper& e)
  5966. {
  5967. __finallyBlock.StoreException(e.ex);
  5968. }
  5969. }
  5970. IL_0173:
  5971. {
  5972. return;
  5973. }
  5974. }
  5975. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565 (Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method)
  5976. {
  5977. static bool s_Il2CppMethodInitialized;
  5978. if (!s_Il2CppMethodInitialized)
  5979. {
  5980. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465_il2cpp_TypeInfo_var);
  5981. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConditionalWeakTable_2_Remove_mEA61545EA43662F3718895F4E435A1F3EFB9756E_RuntimeMethod_var);
  5982. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConditionalWeakTable_2_TryGetValue_m8AB467BA44D1FF9EBDB9735CED88B0D67AC6403F_RuntimeMethod_var);
  5983. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_0_0_0_var);
  5984. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var);
  5985. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_0_0_0_var);
  5986. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var);
  5987. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_0_0_0_var);
  5988. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_il2cpp_TypeInfo_var);
  5989. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var);
  5990. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
  5991. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  5992. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral11F27A23993F7FC4801D0240B7C41D835B44B745);
  5993. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1275D52763CF050C5A4C759818D60119CC35BD69);
  5994. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral12B3B315E8F60BA82CD3BA50FEE2FE5C0949B763);
  5995. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3EE17D366C57CBF012064BEF57DC6B58C6B46A88);
  5996. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral539E8D7071DA3C24DE80E9DDA3E12DBCDC283FBB);
  5997. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1);
  5998. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9);
  5999. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE200AC1425952F4F5CEAAA9C773B6D17B90E47C1);
  6000. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var);
  6001. s_Il2CppMethodInitialized = true;
  6002. }
  6003. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* V_0 = NULL;
  6004. int32_t V_1 = 0;
  6005. RuntimeObject* V_2 = NULL;
  6006. RuntimeObject* V_3 = NULL;
  6007. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
  6008. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_5 = NULL;
  6009. SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* V_6 = NULL;
  6010. String_t* V_7 = NULL;
  6011. uint32_t V_8 = 0;
  6012. int32_t V_9 = 0;
  6013. {
  6014. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_0 = __this->____buckets;
  6015. if (!L_0)
  6016. {
  6017. goto IL_0009;
  6018. }
  6019. }
  6020. {
  6021. return;
  6022. }
  6023. IL_0009:
  6024. {
  6025. ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* L_1;
  6026. L_1 = Hashtable_get_SerializationInfoTable_m29B0EBA91904F2C579B7F3BE6A791DE9F1F6C8BC(NULL);
  6027. NullCheck(L_1);
  6028. bool L_2;
  6029. L_2 = ConditionalWeakTable_2_TryGetValue_m8AB467BA44D1FF9EBDB9735CED88B0D67AC6403F(L_1, __this, (&V_0), ConditionalWeakTable_2_TryGetValue_m8AB467BA44D1FF9EBDB9735CED88B0D67AC6403F_RuntimeMethod_var);
  6030. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_3 = V_0;
  6031. if (L_3)
  6032. {
  6033. goto IL_0025;
  6034. }
  6035. }
  6036. {
  6037. SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_4 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)));
  6038. SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAEE8DD47F29A535762B8579D9E3E69D0D84968BB)), NULL);
  6039. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565_RuntimeMethod_var)));
  6040. }
  6041. IL_0025:
  6042. {
  6043. V_1 = 0;
  6044. V_2 = (RuntimeObject*)NULL;
  6045. V_3 = (RuntimeObject*)NULL;
  6046. V_4 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL;
  6047. V_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)NULL;
  6048. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_5 = V_0;
  6049. NullCheck(L_5);
  6050. SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_6;
  6051. L_6 = SerializationInfo_GetEnumerator_m5230A1D4E4B612E90B10E2034C638CD42F667EA6(L_5, NULL);
  6052. V_6 = L_6;
  6053. goto IL_020e;
  6054. }
  6055. IL_003e:
  6056. {
  6057. SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_7 = V_6;
  6058. NullCheck(L_7);
  6059. String_t* L_8;
  6060. L_8 = SerializationInfoEnumerator_get_Name_m58B6D682B6C829258730C1E952E9099ACDDAE734(L_7, NULL);
  6061. V_7 = L_8;
  6062. String_t* L_9 = V_7;
  6063. uint32_t L_10;
  6064. L_10 = U3CPrivateImplementationDetailsU3E_ComputeStringHash_m52370B9D7DEAF095B34C6AE27338067A3A1CF886(L_9, NULL);
  6065. V_8 = L_10;
  6066. uint32_t L_11 = V_8;
  6067. if ((!(((uint32_t)L_11) <= ((uint32_t)((int32_t)1613443821)))))
  6068. {
  6069. goto IL_007f;
  6070. }
  6071. }
  6072. {
  6073. uint32_t L_12 = V_8;
  6074. if ((((int32_t)L_12) == ((int32_t)((int32_t)891156946))))
  6075. {
  6076. goto IL_00f9;
  6077. }
  6078. }
  6079. {
  6080. uint32_t L_13 = V_8;
  6081. if ((((int32_t)L_13) == ((int32_t)((int32_t)1228509323))))
  6082. {
  6083. goto IL_00e3;
  6084. }
  6085. }
  6086. {
  6087. uint32_t L_14 = V_8;
  6088. if ((((int32_t)L_14) == ((int32_t)((int32_t)1613443821))))
  6089. {
  6090. goto IL_0125;
  6091. }
  6092. }
  6093. {
  6094. goto IL_020e;
  6095. }
  6096. IL_007f:
  6097. {
  6098. uint32_t L_15 = V_8;
  6099. if ((!(((uint32_t)L_15) <= ((uint32_t)((int32_t)-1810657867)))))
  6100. {
  6101. goto IL_00a2;
  6102. }
  6103. }
  6104. {
  6105. uint32_t L_16 = V_8;
  6106. if ((((int32_t)L_16) == ((int32_t)((int32_t)-1924324773))))
  6107. {
  6108. goto IL_013b;
  6109. }
  6110. }
  6111. {
  6112. uint32_t L_17 = V_8;
  6113. if ((((int32_t)L_17) == ((int32_t)((int32_t)-1810657867))))
  6114. {
  6115. goto IL_010f;
  6116. }
  6117. }
  6118. {
  6119. goto IL_020e;
  6120. }
  6121. IL_00a2:
  6122. {
  6123. uint32_t L_18 = V_8;
  6124. if ((((int32_t)L_18) == ((int32_t)((int32_t)-938822048))))
  6125. {
  6126. goto IL_00cd;
  6127. }
  6128. }
  6129. {
  6130. uint32_t L_19 = V_8;
  6131. if ((!(((uint32_t)L_19) == ((uint32_t)((int32_t)-811751054)))))
  6132. {
  6133. goto IL_020e;
  6134. }
  6135. }
  6136. {
  6137. String_t* L_20 = V_7;
  6138. bool L_21;
  6139. L_21 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_20, _stringLiteral539E8D7071DA3C24DE80E9DDA3E12DBCDC283FBB, NULL);
  6140. if (L_21)
  6141. {
  6142. goto IL_0151;
  6143. }
  6144. }
  6145. {
  6146. goto IL_020e;
  6147. }
  6148. IL_00cd:
  6149. {
  6150. String_t* L_22 = V_7;
  6151. bool L_23;
  6152. L_23 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_22, _stringLiteral1275D52763CF050C5A4C759818D60119CC35BD69, NULL);
  6153. if (L_23)
  6154. {
  6155. goto IL_0167;
  6156. }
  6157. }
  6158. {
  6159. goto IL_020e;
  6160. }
  6161. IL_00e3:
  6162. {
  6163. String_t* L_24 = V_7;
  6164. bool L_25;
  6165. L_25 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_24, _stringLiteral3EE17D366C57CBF012064BEF57DC6B58C6B46A88, NULL);
  6166. if (L_25)
  6167. {
  6168. goto IL_0178;
  6169. }
  6170. }
  6171. {
  6172. goto IL_020e;
  6173. }
  6174. IL_00f9:
  6175. {
  6176. String_t* L_26 = V_7;
  6177. bool L_27;
  6178. L_27 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_26, _stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9, NULL);
  6179. if (L_27)
  6180. {
  6181. goto IL_019a;
  6182. }
  6183. }
  6184. {
  6185. goto IL_020e;
  6186. }
  6187. IL_010f:
  6188. {
  6189. String_t* L_28 = V_7;
  6190. bool L_29;
  6191. L_29 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_28, _stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1, NULL);
  6192. if (L_29)
  6193. {
  6194. goto IL_01b7;
  6195. }
  6196. }
  6197. {
  6198. goto IL_020e;
  6199. }
  6200. IL_0125:
  6201. {
  6202. String_t* L_30 = V_7;
  6203. bool L_31;
  6204. L_31 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_30, _stringLiteral11F27A23993F7FC4801D0240B7C41D835B44B745, NULL);
  6205. if (L_31)
  6206. {
  6207. goto IL_01d4;
  6208. }
  6209. }
  6210. {
  6211. goto IL_020e;
  6212. }
  6213. IL_013b:
  6214. {
  6215. String_t* L_32 = V_7;
  6216. bool L_33;
  6217. L_33 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_32, _stringLiteral12B3B315E8F60BA82CD3BA50FEE2FE5C0949B763, NULL);
  6218. if (L_33)
  6219. {
  6220. goto IL_01f2;
  6221. }
  6222. }
  6223. {
  6224. goto IL_020e;
  6225. }
  6226. IL_0151:
  6227. {
  6228. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_34 = V_0;
  6229. NullCheck(L_34);
  6230. float L_35;
  6231. L_35 = SerializationInfo_GetSingle_mD3CE2233BB3DE5DC90F2AE4F24C5DBD0C74A4037(L_34, _stringLiteral539E8D7071DA3C24DE80E9DDA3E12DBCDC283FBB, NULL);
  6232. __this->____loadFactor = L_35;
  6233. goto IL_020e;
  6234. }
  6235. IL_0167:
  6236. {
  6237. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_36 = V_0;
  6238. NullCheck(L_36);
  6239. int32_t L_37;
  6240. L_37 = SerializationInfo_GetInt32_m7731402825C7FC8D0673F7610D555615F95E4FB5(L_36, _stringLiteral1275D52763CF050C5A4C759818D60119CC35BD69, NULL);
  6241. V_1 = L_37;
  6242. goto IL_020e;
  6243. }
  6244. IL_0178:
  6245. {
  6246. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_38 = V_0;
  6247. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_39 = { reinterpret_cast<intptr_t> (IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_0_0_0_var) };
  6248. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  6249. Type_t* L_40;
  6250. L_40 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_39, NULL);
  6251. NullCheck(L_38);
  6252. RuntimeObject* L_41;
  6253. L_41 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_38, _stringLiteral3EE17D366C57CBF012064BEF57DC6B58C6B46A88, L_40, NULL);
  6254. __this->____keycomparer = ((RuntimeObject*)Castclass((RuntimeObject*)L_41, IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var));
  6255. Il2CppCodeGenWriteBarrier((void**)(&__this->____keycomparer), (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_41, IEqualityComparer_tEF8F1EC76B9C8E76695BE848D41E6B147928D1C1_il2cpp_TypeInfo_var)));
  6256. goto IL_020e;
  6257. }
  6258. IL_019a:
  6259. {
  6260. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_42 = V_0;
  6261. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_43 = { reinterpret_cast<intptr_t> (IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_0_0_0_var) };
  6262. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  6263. Type_t* L_44;
  6264. L_44 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_43, NULL);
  6265. NullCheck(L_42);
  6266. RuntimeObject* L_45;
  6267. L_45 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_42, _stringLiteralC5F173ABE7214E8ED04EE91D0D5626EEDF0007E9, L_44, NULL);
  6268. V_2 = ((RuntimeObject*)Castclass((RuntimeObject*)L_45, IComparer_tE7497C3BE3F68A5A2DCEBF0DAD7D13D738FE7BAD_il2cpp_TypeInfo_var));
  6269. goto IL_020e;
  6270. }
  6271. IL_01b7:
  6272. {
  6273. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_46 = V_0;
  6274. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_47 = { reinterpret_cast<intptr_t> (IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_0_0_0_var) };
  6275. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  6276. Type_t* L_48;
  6277. L_48 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_47, NULL);
  6278. NullCheck(L_46);
  6279. RuntimeObject* L_49;
  6280. L_49 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_46, _stringLiteralA87F2ACE872ABEBEB39F138C43E3F9DFA255BDB1, L_48, NULL);
  6281. V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_49, IHashCodeProvider_t666BBC3F1EA6821F808B7D2D7B98808A5863D139_il2cpp_TypeInfo_var));
  6282. goto IL_020e;
  6283. }
  6284. IL_01d4:
  6285. {
  6286. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_50 = V_0;
  6287. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
  6288. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  6289. Type_t* L_52;
  6290. L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
  6291. NullCheck(L_50);
  6292. RuntimeObject* L_53;
  6293. L_53 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_50, _stringLiteral11F27A23993F7FC4801D0240B7C41D835B44B745, L_52, NULL);
  6294. V_4 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_53, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
  6295. goto IL_020e;
  6296. }
  6297. IL_01f2:
  6298. {
  6299. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_54 = V_0;
  6300. RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_55 = { reinterpret_cast<intptr_t> (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_0_0_0_var) };
  6301. il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
  6302. Type_t* L_56;
  6303. L_56 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_55, NULL);
  6304. NullCheck(L_54);
  6305. RuntimeObject* L_57;
  6306. L_57 = SerializationInfo_GetValue_mE6091C2E906E113455D05E734C86F43B8E1D1034(L_54, _stringLiteral12B3B315E8F60BA82CD3BA50FEE2FE5C0949B763, L_56, NULL);
  6307. V_5 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)Castclass((RuntimeObject*)L_57, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
  6308. }
  6309. IL_020e:
  6310. {
  6311. SerializationInfoEnumerator_t810DE600E5F6AA4F2B66A7F56074277CCD8F1540* L_58 = V_6;
  6312. NullCheck(L_58);
  6313. bool L_59;
  6314. L_59 = SerializationInfoEnumerator_MoveNext_m4F052C960AE85EFED1048CAAAC538AB3714078A6(L_58, NULL);
  6315. if (L_59)
  6316. {
  6317. goto IL_003e;
  6318. }
  6319. }
  6320. {
  6321. float L_60 = __this->____loadFactor;
  6322. int32_t L_61 = V_1;
  6323. __this->____loadsize = il2cpp_codegen_cast_double_to_int<int32_t>(((float)il2cpp_codegen_multiply(L_60, ((float)L_61))));
  6324. RuntimeObject* L_62 = __this->____keycomparer;
  6325. if (L_62)
  6326. {
  6327. goto IL_0245;
  6328. }
  6329. }
  6330. {
  6331. RuntimeObject* L_63 = V_2;
  6332. if (L_63)
  6333. {
  6334. goto IL_0238;
  6335. }
  6336. }
  6337. {
  6338. RuntimeObject* L_64 = V_3;
  6339. if (!L_64)
  6340. {
  6341. goto IL_0245;
  6342. }
  6343. }
  6344. IL_0238:
  6345. {
  6346. RuntimeObject* L_65 = V_3;
  6347. RuntimeObject* L_66 = V_2;
  6348. CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* L_67 = (CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465*)il2cpp_codegen_object_new(CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465_il2cpp_TypeInfo_var);
  6349. CompatibleComparer__ctor_mD070CC744D2BA684391418B77E61E24F8E735492(L_67, L_65, L_66, NULL);
  6350. __this->____keycomparer = L_67;
  6351. Il2CppCodeGenWriteBarrier((void**)(&__this->____keycomparer), (void*)L_67);
  6352. }
  6353. IL_0245:
  6354. {
  6355. int32_t L_68 = V_1;
  6356. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_69 = (bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)SZArrayNew(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587_il2cpp_TypeInfo_var, (uint32_t)L_68);
  6357. __this->____buckets = L_69;
  6358. Il2CppCodeGenWriteBarrier((void**)(&__this->____buckets), (void*)L_69);
  6359. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_70 = V_4;
  6360. if (L_70)
  6361. {
  6362. goto IL_0260;
  6363. }
  6364. }
  6365. {
  6366. SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_71 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)));
  6367. SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_71, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC5ABE84F2ABF009EBC68D2A32EF8C171B074F922)), NULL);
  6368. IL2CPP_RAISE_MANAGED_EXCEPTION(L_71, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565_RuntimeMethod_var)));
  6369. }
  6370. IL_0260:
  6371. {
  6372. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_72 = V_5;
  6373. if (L_72)
  6374. {
  6375. goto IL_026f;
  6376. }
  6377. }
  6378. {
  6379. SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_73 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)));
  6380. SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_73, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEB85B9BFFDE3135B37337A7491E104BC8493E6C0)), NULL);
  6381. IL2CPP_RAISE_MANAGED_EXCEPTION(L_73, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565_RuntimeMethod_var)));
  6382. }
  6383. IL_026f:
  6384. {
  6385. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_74 = V_4;
  6386. NullCheck(L_74);
  6387. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_75 = V_5;
  6388. NullCheck(L_75);
  6389. if ((((int32_t)((int32_t)(((RuntimeArray*)L_74)->max_length))) == ((int32_t)((int32_t)(((RuntimeArray*)L_75)->max_length)))))
  6390. {
  6391. goto IL_0284;
  6392. }
  6393. }
  6394. {
  6395. SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_76 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)));
  6396. SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_76, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8AF22EA5A6A5A696D2456E9227B5745A698E05A8)), NULL);
  6397. IL2CPP_RAISE_MANAGED_EXCEPTION(L_76, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565_RuntimeMethod_var)));
  6398. }
  6399. IL_0284:
  6400. {
  6401. V_9 = 0;
  6402. goto IL_02b2;
  6403. }
  6404. IL_0289:
  6405. {
  6406. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_77 = V_4;
  6407. int32_t L_78 = V_9;
  6408. NullCheck(L_77);
  6409. int32_t L_79 = L_78;
  6410. RuntimeObject* L_80 = (L_77)->GetAt(static_cast<il2cpp_array_size_t>(L_79));
  6411. if (L_80)
  6412. {
  6413. goto IL_029b;
  6414. }
  6415. }
  6416. {
  6417. SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7* L_81 = (SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SerializationException_t09D5CC39CEF9CC37AC9D2E0C6DBE050B4E3F8CA7_il2cpp_TypeInfo_var)));
  6418. SerializationException__ctor_m0AAFE2ABD0A74F3E783AD5B5FE842DE460168DB0(L_81, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6A42FCEEAC1D98507D8329C4992B135D890D96AB)), NULL);
  6419. IL2CPP_RAISE_MANAGED_EXCEPTION(L_81, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Hashtable_OnDeserialization_mF74C1F7E5BC49CB2FDD0955B7B82D1B663344565_RuntimeMethod_var)));
  6420. }
  6421. IL_029b:
  6422. {
  6423. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_82 = V_4;
  6424. int32_t L_83 = V_9;
  6425. NullCheck(L_82);
  6426. int32_t L_84 = L_83;
  6427. RuntimeObject* L_85 = (L_82)->GetAt(static_cast<il2cpp_array_size_t>(L_84));
  6428. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_86 = V_5;
  6429. int32_t L_87 = V_9;
  6430. NullCheck(L_86);
  6431. int32_t L_88 = L_87;
  6432. RuntimeObject* L_89 = (L_86)->GetAt(static_cast<il2cpp_array_size_t>(L_88));
  6433. Hashtable_Insert_mCE383FCEDF95EF53D7A5FAA83454F65C20552291(__this, L_85, L_89, (bool)1, NULL);
  6434. int32_t L_90 = V_9;
  6435. V_9 = ((int32_t)il2cpp_codegen_add(L_90, 1));
  6436. }
  6437. IL_02b2:
  6438. {
  6439. int32_t L_91 = V_9;
  6440. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_92 = V_4;
  6441. NullCheck(L_92);
  6442. if ((((int32_t)L_91) < ((int32_t)((int32_t)(((RuntimeArray*)L_92)->max_length)))))
  6443. {
  6444. goto IL_0289;
  6445. }
  6446. }
  6447. {
  6448. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_93 = V_0;
  6449. NullCheck(L_93);
  6450. int32_t L_94;
  6451. L_94 = SerializationInfo_GetInt32_m7731402825C7FC8D0673F7610D555615F95E4FB5(L_93, _stringLiteralE200AC1425952F4F5CEAAA9C773B6D17B90E47C1, NULL);
  6452. il2cpp_codegen_memory_barrier();
  6453. __this->____version = L_94;
  6454. ConditionalWeakTable_2_t381B9D0186C0FCC3F83C0696C28C5001468A7858* L_95;
  6455. L_95 = Hashtable_get_SerializationInfoTable_m29B0EBA91904F2C579B7F3BE6A791DE9F1F6C8BC(NULL);
  6456. NullCheck(L_95);
  6457. bool L_96;
  6458. L_96 = ConditionalWeakTable_2_Remove_mEA61545EA43662F3718895F4E435A1F3EFB9756E(L_95, __this, ConditionalWeakTable_2_Remove_mEA61545EA43662F3718895F4E435A1F3EFB9756E_RuntimeMethod_var);
  6459. return;
  6460. }
  6461. }
  6462. #ifdef __clang__
  6463. #pragma clang diagnostic pop
  6464. #endif
  6465. #ifdef __clang__
  6466. #pragma clang diagnostic push
  6467. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6468. #pragma clang diagnostic ignored "-Wunused-variable"
  6469. #endif
  6470. IL2CPP_EXTERN_C void bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshal_pinvoke(const bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E& unmarshaled, bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_pinvoke& marshaled)
  6471. {
  6472. if (unmarshaled.___key != NULL)
  6473. {
  6474. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___key))
  6475. {
  6476. marshaled.___key = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.___key));
  6477. (marshaled.___key)->AddRef();
  6478. }
  6479. else
  6480. {
  6481. marshaled.___key = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.___key);
  6482. }
  6483. }
  6484. else
  6485. {
  6486. marshaled.___key = NULL;
  6487. }
  6488. if (unmarshaled.___val != NULL)
  6489. {
  6490. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___val))
  6491. {
  6492. marshaled.___val = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.___val));
  6493. (marshaled.___val)->AddRef();
  6494. }
  6495. else
  6496. {
  6497. marshaled.___val = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.___val);
  6498. }
  6499. }
  6500. else
  6501. {
  6502. marshaled.___val = NULL;
  6503. }
  6504. marshaled.___hash_coll = unmarshaled.___hash_coll;
  6505. }
  6506. IL2CPP_EXTERN_C void bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshal_pinvoke_back(const bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_pinvoke& marshaled, bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E& unmarshaled)
  6507. {
  6508. static bool s_Il2CppMethodInitialized;
  6509. if (!s_Il2CppMethodInitialized)
  6510. {
  6511. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var);
  6512. s_Il2CppMethodInitialized = true;
  6513. }
  6514. if (marshaled.___key != NULL)
  6515. {
  6516. unmarshaled.___key = il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key, Il2CppComObject_il2cpp_TypeInfo_var);
  6517. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___key), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key, Il2CppComObject_il2cpp_TypeInfo_var));
  6518. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___key))
  6519. {
  6520. il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.___key), Il2CppIUnknown::IID, marshaled.___key);
  6521. }
  6522. }
  6523. else
  6524. {
  6525. unmarshaled.___key = NULL;
  6526. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___key), (void*)NULL);
  6527. }
  6528. if (marshaled.___val != NULL)
  6529. {
  6530. unmarshaled.___val = il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___val, Il2CppComObject_il2cpp_TypeInfo_var);
  6531. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___val), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___val, Il2CppComObject_il2cpp_TypeInfo_var));
  6532. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___val))
  6533. {
  6534. il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.___val), Il2CppIUnknown::IID, marshaled.___val);
  6535. }
  6536. }
  6537. else
  6538. {
  6539. unmarshaled.___val = NULL;
  6540. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___val), (void*)NULL);
  6541. }
  6542. int32_t unmarshaledhash_coll_temp_2 = 0;
  6543. unmarshaledhash_coll_temp_2 = marshaled.___hash_coll;
  6544. unmarshaled.___hash_coll = unmarshaledhash_coll_temp_2;
  6545. }
  6546. IL2CPP_EXTERN_C void bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshal_pinvoke_cleanup(bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_pinvoke& marshaled)
  6547. {
  6548. if (marshaled.___key != NULL)
  6549. {
  6550. (marshaled.___key)->Release();
  6551. marshaled.___key = NULL;
  6552. }
  6553. if (marshaled.___val != NULL)
  6554. {
  6555. (marshaled.___val)->Release();
  6556. marshaled.___val = NULL;
  6557. }
  6558. }
  6559. IL2CPP_EXTERN_C void bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshal_com(const bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E& unmarshaled, bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_com& marshaled)
  6560. {
  6561. if (unmarshaled.___key != NULL)
  6562. {
  6563. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___key))
  6564. {
  6565. marshaled.___key = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.___key));
  6566. (marshaled.___key)->AddRef();
  6567. }
  6568. else
  6569. {
  6570. marshaled.___key = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.___key);
  6571. }
  6572. }
  6573. else
  6574. {
  6575. marshaled.___key = NULL;
  6576. }
  6577. if (unmarshaled.___val != NULL)
  6578. {
  6579. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___val))
  6580. {
  6581. marshaled.___val = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.___val));
  6582. (marshaled.___val)->AddRef();
  6583. }
  6584. else
  6585. {
  6586. marshaled.___val = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.___val);
  6587. }
  6588. }
  6589. else
  6590. {
  6591. marshaled.___val = NULL;
  6592. }
  6593. marshaled.___hash_coll = unmarshaled.___hash_coll;
  6594. }
  6595. IL2CPP_EXTERN_C void bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshal_com_back(const bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_com& marshaled, bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E& unmarshaled)
  6596. {
  6597. static bool s_Il2CppMethodInitialized;
  6598. if (!s_Il2CppMethodInitialized)
  6599. {
  6600. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var);
  6601. s_Il2CppMethodInitialized = true;
  6602. }
  6603. if (marshaled.___key != NULL)
  6604. {
  6605. unmarshaled.___key = il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key, Il2CppComObject_il2cpp_TypeInfo_var);
  6606. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___key), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___key, Il2CppComObject_il2cpp_TypeInfo_var));
  6607. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___key))
  6608. {
  6609. il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.___key), Il2CppIUnknown::IID, marshaled.___key);
  6610. }
  6611. }
  6612. else
  6613. {
  6614. unmarshaled.___key = NULL;
  6615. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___key), (void*)NULL);
  6616. }
  6617. if (marshaled.___val != NULL)
  6618. {
  6619. unmarshaled.___val = il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___val, Il2CppComObject_il2cpp_TypeInfo_var);
  6620. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___val), (void*)il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___val, Il2CppComObject_il2cpp_TypeInfo_var));
  6621. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.___val))
  6622. {
  6623. il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.___val), Il2CppIUnknown::IID, marshaled.___val);
  6624. }
  6625. }
  6626. else
  6627. {
  6628. unmarshaled.___val = NULL;
  6629. Il2CppCodeGenWriteBarrier((void**)(&unmarshaled.___val), (void*)NULL);
  6630. }
  6631. int32_t unmarshaledhash_coll_temp_2 = 0;
  6632. unmarshaledhash_coll_temp_2 = marshaled.___hash_coll;
  6633. unmarshaled.___hash_coll = unmarshaledhash_coll_temp_2;
  6634. }
  6635. IL2CPP_EXTERN_C void bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshal_com_cleanup(bucket_t3217998B0CD54EA2DEDD93DEF8556E72602C7D4E_marshaled_com& marshaled)
  6636. {
  6637. if (marshaled.___key != NULL)
  6638. {
  6639. (marshaled.___key)->Release();
  6640. marshaled.___key = NULL;
  6641. }
  6642. if (marshaled.___val != NULL)
  6643. {
  6644. (marshaled.___val)->Release();
  6645. marshaled.___val = NULL;
  6646. }
  6647. }
  6648. #ifdef __clang__
  6649. #pragma clang diagnostic pop
  6650. #endif
  6651. #ifdef __clang__
  6652. #pragma clang diagnostic push
  6653. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6654. #pragma clang diagnostic ignored "-Wunused-variable"
  6655. #endif
  6656. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection__ctor_m2F5EB768C82E9BCAA0CAB8823EFE996749ABFDDD (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_hashtable, const RuntimeMethod* method)
  6657. {
  6658. {
  6659. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  6660. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___0_hashtable;
  6661. __this->____hashtable = L_0;
  6662. Il2CppCodeGenWriteBarrier((void**)(&__this->____hashtable), (void*)L_0);
  6663. return;
  6664. }
  6665. }
  6666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyCollection_CopyTo_m5062910D0AF077DE093FA9C67E7E9DF942792AF8 (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  6667. {
  6668. {
  6669. RuntimeArray* L_0 = ___0_array;
  6670. if (L_0)
  6671. {
  6672. goto IL_000e;
  6673. }
  6674. }
  6675. {
  6676. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  6677. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  6678. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyCollection_CopyTo_m5062910D0AF077DE093FA9C67E7E9DF942792AF8_RuntimeMethod_var)));
  6679. }
  6680. IL_000e:
  6681. {
  6682. RuntimeArray* L_2 = ___0_array;
  6683. NullCheck(L_2);
  6684. int32_t L_3;
  6685. L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
  6686. if ((((int32_t)L_3) == ((int32_t)1)))
  6687. {
  6688. goto IL_0027;
  6689. }
  6690. }
  6691. {
  6692. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  6693. ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  6694. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyCollection_CopyTo_m5062910D0AF077DE093FA9C67E7E9DF942792AF8_RuntimeMethod_var)));
  6695. }
  6696. IL_0027:
  6697. {
  6698. int32_t L_5 = ___1_arrayIndex;
  6699. if ((((int32_t)L_5) >= ((int32_t)0)))
  6700. {
  6701. goto IL_003b;
  6702. }
  6703. }
  6704. {
  6705. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  6706. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  6707. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyCollection_CopyTo_m5062910D0AF077DE093FA9C67E7E9DF942792AF8_RuntimeMethod_var)));
  6708. }
  6709. IL_003b:
  6710. {
  6711. RuntimeArray* L_7 = ___0_array;
  6712. NullCheck(L_7);
  6713. int32_t L_8;
  6714. L_8 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_7, NULL);
  6715. int32_t L_9 = ___1_arrayIndex;
  6716. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = __this->____hashtable;
  6717. NullCheck(L_10);
  6718. int32_t L_11 = L_10->____count;
  6719. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9))) >= ((int32_t)L_11)))
  6720. {
  6721. goto IL_005b;
  6722. }
  6723. }
  6724. {
  6725. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  6726. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), NULL);
  6727. IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyCollection_CopyTo_m5062910D0AF077DE093FA9C67E7E9DF942792AF8_RuntimeMethod_var)));
  6728. }
  6729. IL_005b:
  6730. {
  6731. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_13 = __this->____hashtable;
  6732. RuntimeArray* L_14 = ___0_array;
  6733. int32_t L_15 = ___1_arrayIndex;
  6734. NullCheck(L_13);
  6735. Hashtable_CopyKeys_mDD7A5AE7064B9845366D9116BC670A210A1C5AA4(L_13, L_14, L_15, NULL);
  6736. return;
  6737. }
  6738. }
  6739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KeyCollection_GetEnumerator_mB5D64FA7602FCDC338B3B14FAB7728BC7BFF1B66 (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, const RuntimeMethod* method)
  6740. {
  6741. static bool s_Il2CppMethodInitialized;
  6742. if (!s_Il2CppMethodInitialized)
  6743. {
  6744. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  6745. s_Il2CppMethodInitialized = true;
  6746. }
  6747. {
  6748. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6749. HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* L_1 = (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061*)il2cpp_codegen_object_new(HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  6750. HashtableEnumerator__ctor_m39524FF87DAA4FBB78BED54175E69215AE47D2DC(L_1, L_0, 1, NULL);
  6751. return L_1;
  6752. }
  6753. }
  6754. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool KeyCollection_get_IsSynchronized_m95B7B4A1A0DAA534532D2EAEDC6EF0C0CA37B27A (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, const RuntimeMethod* method)
  6755. {
  6756. {
  6757. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6758. NullCheck(L_0);
  6759. bool L_1;
  6760. L_1 = VirtualFuncInvoker0< bool >::Invoke(35, L_0);
  6761. return L_1;
  6762. }
  6763. }
  6764. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KeyCollection_get_SyncRoot_m6F13C08AEF47BF3A079CE95E1E0CC3B8E205C30E (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, const RuntimeMethod* method)
  6765. {
  6766. {
  6767. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6768. NullCheck(L_0);
  6769. RuntimeObject* L_1;
  6770. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  6771. return L_1;
  6772. }
  6773. }
  6774. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t KeyCollection_get_Count_mE0D7DA771777A99DBC8D6C477465529BCB0DBC4B (KeyCollection_tBB3F4721A1C8F423C471AC11D255D44189022E77* __this, const RuntimeMethod* method)
  6775. {
  6776. {
  6777. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6778. NullCheck(L_0);
  6779. int32_t L_1 = L_0->____count;
  6780. return L_1;
  6781. }
  6782. }
  6783. #ifdef __clang__
  6784. #pragma clang diagnostic pop
  6785. #endif
  6786. #ifdef __clang__
  6787. #pragma clang diagnostic push
  6788. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6789. #pragma clang diagnostic ignored "-Wunused-variable"
  6790. #endif
  6791. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection__ctor_m9EE64DC0395F01EB90DC1A0863F4B41A2501E226 (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_hashtable, const RuntimeMethod* method)
  6792. {
  6793. {
  6794. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  6795. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___0_hashtable;
  6796. __this->____hashtable = L_0;
  6797. Il2CppCodeGenWriteBarrier((void**)(&__this->____hashtable), (void*)L_0);
  6798. return;
  6799. }
  6800. }
  6801. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueCollection_CopyTo_mD8B0681E6639A47EF9AFE951316CBA082381787F (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  6802. {
  6803. {
  6804. RuntimeArray* L_0 = ___0_array;
  6805. if (L_0)
  6806. {
  6807. goto IL_000e;
  6808. }
  6809. }
  6810. {
  6811. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  6812. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  6813. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_mD8B0681E6639A47EF9AFE951316CBA082381787F_RuntimeMethod_var)));
  6814. }
  6815. IL_000e:
  6816. {
  6817. RuntimeArray* L_2 = ___0_array;
  6818. NullCheck(L_2);
  6819. int32_t L_3;
  6820. L_3 = Array_get_Rank_m9383A200A2ECC89ECA44FE5F812ECFB874449C5F(L_2, NULL);
  6821. if ((((int32_t)L_3) == ((int32_t)1)))
  6822. {
  6823. goto IL_0027;
  6824. }
  6825. }
  6826. {
  6827. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  6828. ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral967D403A541A1026A83D548E5AD5CA800AD4EFB5)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  6829. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_mD8B0681E6639A47EF9AFE951316CBA082381787F_RuntimeMethod_var)));
  6830. }
  6831. IL_0027:
  6832. {
  6833. int32_t L_5 = ___1_arrayIndex;
  6834. if ((((int32_t)L_5) >= ((int32_t)0)))
  6835. {
  6836. goto IL_003b;
  6837. }
  6838. }
  6839. {
  6840. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_6 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  6841. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC00660333703C551EA80371B54D0ADCEB74C33B4)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38E3DBC7FC353425EF3A98DC8DAC6689AF5FD1BE)), NULL);
  6842. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_mD8B0681E6639A47EF9AFE951316CBA082381787F_RuntimeMethod_var)));
  6843. }
  6844. IL_003b:
  6845. {
  6846. RuntimeArray* L_7 = ___0_array;
  6847. NullCheck(L_7);
  6848. int32_t L_8;
  6849. L_8 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_7, NULL);
  6850. int32_t L_9 = ___1_arrayIndex;
  6851. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_10 = __this->____hashtable;
  6852. NullCheck(L_10);
  6853. int32_t L_11 = L_10->____count;
  6854. if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_8, L_9))) >= ((int32_t)L_11)))
  6855. {
  6856. goto IL_005b;
  6857. }
  6858. }
  6859. {
  6860. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  6861. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3ECE023333DCF45DE7B1FEAFFE30E295210DDD9B)), NULL);
  6862. IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ValueCollection_CopyTo_mD8B0681E6639A47EF9AFE951316CBA082381787F_RuntimeMethod_var)));
  6863. }
  6864. IL_005b:
  6865. {
  6866. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_13 = __this->____hashtable;
  6867. RuntimeArray* L_14 = ___0_array;
  6868. int32_t L_15 = ___1_arrayIndex;
  6869. NullCheck(L_13);
  6870. Hashtable_CopyValues_mBF30183D730BBFCA6D6313FF616834605B49D8CF(L_13, L_14, L_15, NULL);
  6871. return;
  6872. }
  6873. }
  6874. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_GetEnumerator_mBDFC1F0690282E5BCE3FF63FB3909DEBEE1524E2 (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, const RuntimeMethod* method)
  6875. {
  6876. static bool s_Il2CppMethodInitialized;
  6877. if (!s_Il2CppMethodInitialized)
  6878. {
  6879. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  6880. s_Il2CppMethodInitialized = true;
  6881. }
  6882. {
  6883. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6884. HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* L_1 = (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061*)il2cpp_codegen_object_new(HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061_il2cpp_TypeInfo_var);
  6885. HashtableEnumerator__ctor_m39524FF87DAA4FBB78BED54175E69215AE47D2DC(L_1, L_0, 2, NULL);
  6886. return L_1;
  6887. }
  6888. }
  6889. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValueCollection_get_IsSynchronized_mBC63B8B1C2CDC6E49AEE47B0D33FB90DB436159A (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, const RuntimeMethod* method)
  6890. {
  6891. {
  6892. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6893. NullCheck(L_0);
  6894. bool L_1;
  6895. L_1 = VirtualFuncInvoker0< bool >::Invoke(35, L_0);
  6896. return L_1;
  6897. }
  6898. }
  6899. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ValueCollection_get_SyncRoot_m2D031ED71B7959EDCB633851C895BA5E0FE03D38 (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, const RuntimeMethod* method)
  6900. {
  6901. {
  6902. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6903. NullCheck(L_0);
  6904. RuntimeObject* L_1;
  6905. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  6906. return L_1;
  6907. }
  6908. }
  6909. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValueCollection_get_Count_m4CB5B72CAB617E0835BCAD9AAD8FEE3F4F51684B (ValueCollection_tC43990EDD17B7EDE8FCE3674B9537163DCDA557F* __this, const RuntimeMethod* method)
  6910. {
  6911. {
  6912. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____hashtable;
  6913. NullCheck(L_0);
  6914. int32_t L_1 = L_0->____count;
  6915. return L_1;
  6916. }
  6917. }
  6918. #ifdef __clang__
  6919. #pragma clang diagnostic pop
  6920. #endif
  6921. #ifdef __clang__
  6922. #pragma clang diagnostic push
  6923. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6924. #pragma clang diagnostic ignored "-Wunused-variable"
  6925. #endif
  6926. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable__ctor_mFFE7535A50219583B15ACC748FE3E7CB6B52EEAA (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_table, const RuntimeMethod* method)
  6927. {
  6928. {
  6929. Hashtable__ctor_m53109B9F270C606C6DBA73405F134DA215440A36(__this, (bool)0, NULL);
  6930. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___0_table;
  6931. __this->____table = L_0;
  6932. Il2CppCodeGenWriteBarrier((void**)(&__this->____table), (void*)L_0);
  6933. return;
  6934. }
  6935. }
  6936. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable__ctor_mF1BBFC51ECC24E48FE77B39E9124110ADA45941A (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  6937. {
  6938. {
  6939. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
  6940. StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
  6941. Hashtable__ctor_mD50422D7B9D147207A33AB5BDC0B7CE963A51056(__this, L_0, L_1, NULL);
  6942. PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_2 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
  6943. PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_2, NULL);
  6944. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SyncHashtable__ctor_mF1BBFC51ECC24E48FE77B39E9124110ADA45941A_RuntimeMethod_var)));
  6945. }
  6946. }
  6947. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_GetObjectData_mCBA586B5407FEAEB6B8F5F4C6E62D6EA2EAE40D2 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  6948. {
  6949. {
  6950. PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_0 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
  6951. PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_0, NULL);
  6952. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SyncHashtable_GetObjectData_mCBA586B5407FEAEB6B8F5F4C6E62D6EA2EAE40D2_RuntimeMethod_var)));
  6953. }
  6954. }
  6955. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SyncHashtable_get_Count_m5124D18EEE5DF7E5187361FD0C897E8E13A3C7D3 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  6956. {
  6957. {
  6958. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  6959. NullCheck(L_0);
  6960. int32_t L_1;
  6961. L_1 = VirtualFuncInvoker0< int32_t >::Invoke(41, L_0);
  6962. return L_1;
  6963. }
  6964. }
  6965. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_get_IsReadOnly_mA4AF243CE8CABC312F7477D40105F4786CF3CE3E (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  6966. {
  6967. {
  6968. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  6969. NullCheck(L_0);
  6970. bool L_1;
  6971. L_1 = VirtualFuncInvoker0< bool >::Invoke(33, L_0);
  6972. return L_1;
  6973. }
  6974. }
  6975. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_get_IsFixedSize_m1FC57C41F0352C74C207CB0BA3836E7CCC77BDF6 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  6976. {
  6977. {
  6978. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  6979. NullCheck(L_0);
  6980. bool L_1;
  6981. L_1 = VirtualFuncInvoker0< bool >::Invoke(34, L_0);
  6982. return L_1;
  6983. }
  6984. }
  6985. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_get_IsSynchronized_m08DD70FD0CCD633593D5F8BA7F330A0984E2B0A0 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  6986. {
  6987. {
  6988. return (bool)1;
  6989. }
  6990. }
  6991. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_get_Item_m3FD7FADA73BF581BE038A6EB7E9C0FD6E4183DDB (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  6992. {
  6993. {
  6994. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  6995. RuntimeObject* L_1 = ___0_key;
  6996. NullCheck(L_0);
  6997. RuntimeObject* L_2;
  6998. L_2 = VirtualFuncInvoker1< RuntimeObject*, RuntimeObject* >::Invoke(29, L_0, L_1);
  6999. return L_2;
  7000. }
  7001. }
  7002. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_set_Item_mD2CE57C5A07260D04739928629F028426874396E (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
  7003. {
  7004. RuntimeObject* V_0 = NULL;
  7005. bool V_1 = false;
  7006. {
  7007. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7008. NullCheck(L_0);
  7009. RuntimeObject* L_1;
  7010. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7011. V_0 = L_1;
  7012. V_1 = (bool)0;
  7013. }
  7014. {
  7015. auto __finallyBlock = il2cpp::utils::Finally([&]
  7016. {
  7017. FINALLY_0025:
  7018. {
  7019. {
  7020. bool L_2 = V_1;
  7021. if (!L_2)
  7022. {
  7023. goto IL_002e;
  7024. }
  7025. }
  7026. {
  7027. RuntimeObject* L_3 = V_0;
  7028. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7029. }
  7030. IL_002e:
  7031. {
  7032. return;
  7033. }
  7034. }
  7035. });
  7036. try
  7037. {
  7038. RuntimeObject* L_4 = V_0;
  7039. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7040. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7041. RuntimeObject* L_6 = ___0_key;
  7042. RuntimeObject* L_7 = ___1_value;
  7043. NullCheck(L_5);
  7044. VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(30, L_5, L_6, L_7);
  7045. goto IL_002f;
  7046. }
  7047. catch(Il2CppExceptionWrapper& e)
  7048. {
  7049. __finallyBlock.StoreException(e.ex);
  7050. }
  7051. }
  7052. IL_002f:
  7053. {
  7054. return;
  7055. }
  7056. }
  7057. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_get_SyncRoot_mBB85DA844F4D144DFB2EC51719A992317A523332 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7058. {
  7059. {
  7060. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7061. NullCheck(L_0);
  7062. RuntimeObject* L_1;
  7063. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7064. return L_1;
  7065. }
  7066. }
  7067. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_Add_m7DAEAA3D6D859C82AB6ABF0D2E1345A817E155F0 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
  7068. {
  7069. RuntimeObject* V_0 = NULL;
  7070. bool V_1 = false;
  7071. {
  7072. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7073. NullCheck(L_0);
  7074. RuntimeObject* L_1;
  7075. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7076. V_0 = L_1;
  7077. V_1 = (bool)0;
  7078. }
  7079. {
  7080. auto __finallyBlock = il2cpp::utils::Finally([&]
  7081. {
  7082. FINALLY_0025:
  7083. {
  7084. {
  7085. bool L_2 = V_1;
  7086. if (!L_2)
  7087. {
  7088. goto IL_002e;
  7089. }
  7090. }
  7091. {
  7092. RuntimeObject* L_3 = V_0;
  7093. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7094. }
  7095. IL_002e:
  7096. {
  7097. return;
  7098. }
  7099. }
  7100. });
  7101. try
  7102. {
  7103. RuntimeObject* L_4 = V_0;
  7104. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7105. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7106. RuntimeObject* L_6 = ___0_key;
  7107. RuntimeObject* L_7 = ___1_value;
  7108. NullCheck(L_5);
  7109. VirtualActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(23, L_5, L_6, L_7);
  7110. goto IL_002f;
  7111. }
  7112. catch(Il2CppExceptionWrapper& e)
  7113. {
  7114. __finallyBlock.StoreException(e.ex);
  7115. }
  7116. }
  7117. IL_002f:
  7118. {
  7119. return;
  7120. }
  7121. }
  7122. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_Clear_m4FE30F7F4DCD01B8DD8B81B9D8E764386EB42A3A (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7123. {
  7124. RuntimeObject* V_0 = NULL;
  7125. bool V_1 = false;
  7126. {
  7127. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7128. NullCheck(L_0);
  7129. RuntimeObject* L_1;
  7130. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7131. V_0 = L_1;
  7132. V_1 = (bool)0;
  7133. }
  7134. {
  7135. auto __finallyBlock = il2cpp::utils::Finally([&]
  7136. {
  7137. FINALLY_0023:
  7138. {
  7139. {
  7140. bool L_2 = V_1;
  7141. if (!L_2)
  7142. {
  7143. goto IL_002c;
  7144. }
  7145. }
  7146. {
  7147. RuntimeObject* L_3 = V_0;
  7148. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7149. }
  7150. IL_002c:
  7151. {
  7152. return;
  7153. }
  7154. }
  7155. });
  7156. try
  7157. {
  7158. RuntimeObject* L_4 = V_0;
  7159. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7160. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7161. NullCheck(L_5);
  7162. VirtualActionInvoker0::Invoke(24, L_5);
  7163. goto IL_002d;
  7164. }
  7165. catch(Il2CppExceptionWrapper& e)
  7166. {
  7167. __finallyBlock.StoreException(e.ex);
  7168. }
  7169. }
  7170. IL_002d:
  7171. {
  7172. return;
  7173. }
  7174. }
  7175. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_Contains_m2D6FBF36B8C645D0BA6D66E3C69B82C47CB071FA (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  7176. {
  7177. {
  7178. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7179. RuntimeObject* L_1 = ___0_key;
  7180. NullCheck(L_0);
  7181. bool L_2;
  7182. L_2 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(26, L_0, L_1);
  7183. return L_2;
  7184. }
  7185. }
  7186. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SyncHashtable_ContainsKey_m29B505232C709E842FDD2398C1B6A75C9708241E (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  7187. {
  7188. {
  7189. RuntimeObject* L_0 = ___0_key;
  7190. if (L_0)
  7191. {
  7192. goto IL_0013;
  7193. }
  7194. }
  7195. {
  7196. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  7197. ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC94F5AC0843483C42F57211A309E77D97ADE18B1)), NULL);
  7198. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SyncHashtable_ContainsKey_m29B505232C709E842FDD2398C1B6A75C9708241E_RuntimeMethod_var)));
  7199. }
  7200. IL_0013:
  7201. {
  7202. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_2 = __this->____table;
  7203. RuntimeObject* L_3 = ___0_key;
  7204. NullCheck(L_2);
  7205. bool L_4;
  7206. L_4 = VirtualFuncInvoker1< bool, RuntimeObject* >::Invoke(27, L_2, L_3);
  7207. return L_4;
  7208. }
  7209. }
  7210. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_CopyTo_mB6352034856CABEA5D821354EBCFA238E697C4D6 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeArray* ___0_array, int32_t ___1_arrayIndex, const RuntimeMethod* method)
  7211. {
  7212. RuntimeObject* V_0 = NULL;
  7213. bool V_1 = false;
  7214. {
  7215. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7216. NullCheck(L_0);
  7217. RuntimeObject* L_1;
  7218. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7219. V_0 = L_1;
  7220. V_1 = (bool)0;
  7221. }
  7222. {
  7223. auto __finallyBlock = il2cpp::utils::Finally([&]
  7224. {
  7225. FINALLY_0025:
  7226. {
  7227. {
  7228. bool L_2 = V_1;
  7229. if (!L_2)
  7230. {
  7231. goto IL_002e;
  7232. }
  7233. }
  7234. {
  7235. RuntimeObject* L_3 = V_0;
  7236. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7237. }
  7238. IL_002e:
  7239. {
  7240. return;
  7241. }
  7242. }
  7243. });
  7244. try
  7245. {
  7246. RuntimeObject* L_4 = V_0;
  7247. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7248. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7249. RuntimeArray* L_6 = ___0_array;
  7250. int32_t L_7 = ___1_arrayIndex;
  7251. NullCheck(L_5);
  7252. VirtualActionInvoker2< RuntimeArray*, int32_t >::Invoke(28, L_5, L_6, L_7);
  7253. goto IL_002f;
  7254. }
  7255. catch(Il2CppExceptionWrapper& e)
  7256. {
  7257. __finallyBlock.StoreException(e.ex);
  7258. }
  7259. }
  7260. IL_002f:
  7261. {
  7262. return;
  7263. }
  7264. }
  7265. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_Clone_mB1FECA47604E8960DC3BE39E5226FAFEA0F05493 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7266. {
  7267. static bool s_Il2CppMethodInitialized;
  7268. if (!s_Il2CppMethodInitialized)
  7269. {
  7270. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var);
  7271. s_Il2CppMethodInitialized = true;
  7272. }
  7273. RuntimeObject* V_0 = NULL;
  7274. bool V_1 = false;
  7275. RuntimeObject* V_2 = NULL;
  7276. {
  7277. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7278. NullCheck(L_0);
  7279. RuntimeObject* L_1;
  7280. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7281. V_0 = L_1;
  7282. V_1 = (bool)0;
  7283. }
  7284. {
  7285. auto __finallyBlock = il2cpp::utils::Finally([&]
  7286. {
  7287. FINALLY_002e:
  7288. {
  7289. {
  7290. bool L_2 = V_1;
  7291. if (!L_2)
  7292. {
  7293. goto IL_0037;
  7294. }
  7295. }
  7296. {
  7297. RuntimeObject* L_3 = V_0;
  7298. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7299. }
  7300. IL_0037:
  7301. {
  7302. return;
  7303. }
  7304. }
  7305. });
  7306. try
  7307. {
  7308. RuntimeObject* L_4 = V_0;
  7309. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7310. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7311. NullCheck(L_5);
  7312. RuntimeObject* L_6;
  7313. L_6 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(25, L_5);
  7314. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_7;
  7315. L_7 = Hashtable_Synchronized_m6C533F21D7532A6118974AE7634AB28C76765EF5(((Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D*)CastclassClass((RuntimeObject*)L_6, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D_il2cpp_TypeInfo_var)), NULL);
  7316. V_2 = L_7;
  7317. goto IL_0038;
  7318. }
  7319. catch(Il2CppExceptionWrapper& e)
  7320. {
  7321. __finallyBlock.StoreException(e.ex);
  7322. }
  7323. }
  7324. IL_0038:
  7325. {
  7326. RuntimeObject* L_8 = V_2;
  7327. return L_8;
  7328. }
  7329. }
  7330. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_System_Collections_IEnumerable_GetEnumerator_m437B1ABADE6A89720D9CAD530D4C958D59A32CCE (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7331. {
  7332. {
  7333. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7334. NullCheck(L_0);
  7335. RuntimeObject* L_1;
  7336. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31, L_0);
  7337. return L_1;
  7338. }
  7339. }
  7340. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_GetEnumerator_m4CD05DF6E29AE4225A00E174E1FA03FEB3CB661C (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7341. {
  7342. {
  7343. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7344. NullCheck(L_0);
  7345. RuntimeObject* L_1;
  7346. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(31, L_0);
  7347. return L_1;
  7348. }
  7349. }
  7350. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_get_Keys_mC2B5F864E0D347330FB1B4274BD9860D51D455B8 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7351. {
  7352. RuntimeObject* V_0 = NULL;
  7353. bool V_1 = false;
  7354. RuntimeObject* V_2 = NULL;
  7355. {
  7356. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7357. NullCheck(L_0);
  7358. RuntimeObject* L_1;
  7359. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7360. V_0 = L_1;
  7361. V_1 = (bool)0;
  7362. }
  7363. {
  7364. auto __finallyBlock = il2cpp::utils::Finally([&]
  7365. {
  7366. FINALLY_0024:
  7367. {
  7368. {
  7369. bool L_2 = V_1;
  7370. if (!L_2)
  7371. {
  7372. goto IL_002d;
  7373. }
  7374. }
  7375. {
  7376. RuntimeObject* L_3 = V_0;
  7377. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7378. }
  7379. IL_002d:
  7380. {
  7381. return;
  7382. }
  7383. }
  7384. });
  7385. try
  7386. {
  7387. RuntimeObject* L_4 = V_0;
  7388. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7389. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7390. NullCheck(L_5);
  7391. RuntimeObject* L_6;
  7392. L_6 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(37, L_5);
  7393. V_2 = L_6;
  7394. goto IL_002e;
  7395. }
  7396. catch(Il2CppExceptionWrapper& e)
  7397. {
  7398. __finallyBlock.StoreException(e.ex);
  7399. }
  7400. }
  7401. IL_002e:
  7402. {
  7403. RuntimeObject* L_7 = V_2;
  7404. return L_7;
  7405. }
  7406. }
  7407. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* SyncHashtable_get_Values_m8483FBC80E7974D6874DBEC7487A9985D8AD2214 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, const RuntimeMethod* method)
  7408. {
  7409. RuntimeObject* V_0 = NULL;
  7410. bool V_1 = false;
  7411. RuntimeObject* V_2 = NULL;
  7412. {
  7413. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7414. NullCheck(L_0);
  7415. RuntimeObject* L_1;
  7416. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7417. V_0 = L_1;
  7418. V_1 = (bool)0;
  7419. }
  7420. {
  7421. auto __finallyBlock = il2cpp::utils::Finally([&]
  7422. {
  7423. FINALLY_0024:
  7424. {
  7425. {
  7426. bool L_2 = V_1;
  7427. if (!L_2)
  7428. {
  7429. goto IL_002d;
  7430. }
  7431. }
  7432. {
  7433. RuntimeObject* L_3 = V_0;
  7434. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7435. }
  7436. IL_002d:
  7437. {
  7438. return;
  7439. }
  7440. }
  7441. });
  7442. try
  7443. {
  7444. RuntimeObject* L_4 = V_0;
  7445. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7446. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7447. NullCheck(L_5);
  7448. RuntimeObject* L_6;
  7449. L_6 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(38, L_5);
  7450. V_2 = L_6;
  7451. goto IL_002e;
  7452. }
  7453. catch(Il2CppExceptionWrapper& e)
  7454. {
  7455. __finallyBlock.StoreException(e.ex);
  7456. }
  7457. }
  7458. IL_002e:
  7459. {
  7460. RuntimeObject* L_7 = V_2;
  7461. return L_7;
  7462. }
  7463. }
  7464. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_Remove_m6D4F19F6DF865171755FBAAA9924682233135417 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
  7465. {
  7466. RuntimeObject* V_0 = NULL;
  7467. bool V_1 = false;
  7468. {
  7469. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = __this->____table;
  7470. NullCheck(L_0);
  7471. RuntimeObject* L_1;
  7472. L_1 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(40, L_0);
  7473. V_0 = L_1;
  7474. V_1 = (bool)0;
  7475. }
  7476. {
  7477. auto __finallyBlock = il2cpp::utils::Finally([&]
  7478. {
  7479. FINALLY_0024:
  7480. {
  7481. {
  7482. bool L_2 = V_1;
  7483. if (!L_2)
  7484. {
  7485. goto IL_002d;
  7486. }
  7487. }
  7488. {
  7489. RuntimeObject* L_3 = V_0;
  7490. Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_3, NULL);
  7491. }
  7492. IL_002d:
  7493. {
  7494. return;
  7495. }
  7496. }
  7497. });
  7498. try
  7499. {
  7500. RuntimeObject* L_4 = V_0;
  7501. Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_4, (&V_1), NULL);
  7502. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____table;
  7503. RuntimeObject* L_6 = ___0_key;
  7504. NullCheck(L_5);
  7505. VirtualActionInvoker1< RuntimeObject* >::Invoke(39, L_5, L_6);
  7506. goto IL_002e;
  7507. }
  7508. catch(Il2CppExceptionWrapper& e)
  7509. {
  7510. __finallyBlock.StoreException(e.ex);
  7511. }
  7512. }
  7513. IL_002e:
  7514. {
  7515. return;
  7516. }
  7517. }
  7518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SyncHashtable_OnDeserialization_m7F281A09A414E5E887F89170F9915CF2E11D11F1 (SyncHashtable_tCFD5BEE5835423F86036D747FB092CC4AD3EB7B5* __this, RuntimeObject* ___0_sender, const RuntimeMethod* method)
  7519. {
  7520. {
  7521. return;
  7522. }
  7523. }
  7524. #ifdef __clang__
  7525. #pragma clang diagnostic pop
  7526. #endif
  7527. #ifdef __clang__
  7528. #pragma clang diagnostic push
  7529. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7530. #pragma clang diagnostic ignored "-Wunused-variable"
  7531. #endif
  7532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashtableEnumerator__ctor_m39524FF87DAA4FBB78BED54175E69215AE47D2DC (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___0_hashtable, int32_t ___1_getObjRetType, const RuntimeMethod* method)
  7533. {
  7534. {
  7535. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  7536. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_0 = ___0_hashtable;
  7537. __this->____hashtable = L_0;
  7538. Il2CppCodeGenWriteBarrier((void**)(&__this->____hashtable), (void*)L_0);
  7539. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = ___0_hashtable;
  7540. NullCheck(L_1);
  7541. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_2 = L_1->____buckets;
  7542. NullCheck(L_2);
  7543. __this->____bucket = ((int32_t)(((RuntimeArray*)L_2)->max_length));
  7544. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_3 = ___0_hashtable;
  7545. NullCheck(L_3);
  7546. int32_t L_4 = L_3->____version;
  7547. il2cpp_codegen_memory_barrier();
  7548. __this->____version = L_4;
  7549. __this->____current = (bool)0;
  7550. int32_t L_5 = ___1_getObjRetType;
  7551. __this->____getObjectRetType = L_5;
  7552. return;
  7553. }
  7554. }
  7555. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HashtableEnumerator_Clone_m85F090BFD61509B1F8B16A10E0DFB78606C96873 (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7556. {
  7557. {
  7558. RuntimeObject* L_0;
  7559. L_0 = Object_MemberwiseClone_m0676AEE25C3CF7C09F15ECF9EC5CC407863617B3(__this, NULL);
  7560. return L_0;
  7561. }
  7562. }
  7563. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HashtableEnumerator_get_Key_m0C1262C3A8839D8F5C7814E08A2AF850A544310C (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7564. {
  7565. {
  7566. bool L_0 = __this->____current;
  7567. if (L_0)
  7568. {
  7569. goto IL_0013;
  7570. }
  7571. }
  7572. {
  7573. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  7574. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2390D6884F59E2E4EA04837AD7D6268548597633)), NULL);
  7575. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HashtableEnumerator_get_Key_m0C1262C3A8839D8F5C7814E08A2AF850A544310C_RuntimeMethod_var)));
  7576. }
  7577. IL_0013:
  7578. {
  7579. RuntimeObject* L_2 = __this->____currentKey;
  7580. return L_2;
  7581. }
  7582. }
  7583. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashtableEnumerator_MoveNext_m211FB14AC78F8E4A68AD090BB1942C18FF069A1E (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7584. {
  7585. RuntimeObject* V_0 = NULL;
  7586. {
  7587. int32_t L_0 = __this->____version;
  7588. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____hashtable;
  7589. NullCheck(L_1);
  7590. int32_t L_2 = L_1->____version;
  7591. il2cpp_codegen_memory_barrier();
  7592. if ((((int32_t)L_0) == ((int32_t)L_2)))
  7593. {
  7594. goto IL_008c;
  7595. }
  7596. }
  7597. {
  7598. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  7599. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
  7600. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HashtableEnumerator_MoveNext_m211FB14AC78F8E4A68AD090BB1942C18FF069A1E_RuntimeMethod_var)));
  7601. }
  7602. IL_0020:
  7603. {
  7604. int32_t L_4 = __this->____bucket;
  7605. __this->____bucket = ((int32_t)il2cpp_codegen_subtract(L_4, 1));
  7606. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_5 = __this->____hashtable;
  7607. NullCheck(L_5);
  7608. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_6 = L_5->____buckets;
  7609. int32_t L_7 = __this->____bucket;
  7610. NullCheck(L_6);
  7611. RuntimeObject* L_8 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)))->___key;
  7612. V_0 = L_8;
  7613. RuntimeObject* L_9 = V_0;
  7614. if (!L_9)
  7615. {
  7616. goto IL_008c;
  7617. }
  7618. }
  7619. {
  7620. RuntimeObject* L_10 = V_0;
  7621. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_11 = __this->____hashtable;
  7622. NullCheck(L_11);
  7623. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_12 = L_11->____buckets;
  7624. if ((((RuntimeObject*)(RuntimeObject*)L_10) == ((RuntimeObject*)(bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587*)L_12)))
  7625. {
  7626. goto IL_008c;
  7627. }
  7628. }
  7629. {
  7630. RuntimeObject* L_13 = V_0;
  7631. __this->____currentKey = L_13;
  7632. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentKey), (void*)L_13);
  7633. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_14 = __this->____hashtable;
  7634. NullCheck(L_14);
  7635. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_15 = L_14->____buckets;
  7636. int32_t L_16 = __this->____bucket;
  7637. NullCheck(L_15);
  7638. RuntimeObject* L_17 = ((L_15)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_16)))->___val;
  7639. __this->____currentValue = L_17;
  7640. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentValue), (void*)L_17);
  7641. __this->____current = (bool)1;
  7642. return (bool)1;
  7643. }
  7644. IL_008c:
  7645. {
  7646. int32_t L_18 = __this->____bucket;
  7647. if ((((int32_t)L_18) > ((int32_t)0)))
  7648. {
  7649. goto IL_0020;
  7650. }
  7651. }
  7652. {
  7653. __this->____current = (bool)0;
  7654. return (bool)0;
  7655. }
  7656. }
  7657. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB HashtableEnumerator_get_Entry_m4DDDE56EB20FCAB680D4D871CF28910E6FFD7C20 (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7658. {
  7659. {
  7660. bool L_0 = __this->____current;
  7661. if (L_0)
  7662. {
  7663. goto IL_0013;
  7664. }
  7665. }
  7666. {
  7667. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  7668. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), NULL);
  7669. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HashtableEnumerator_get_Entry_m4DDDE56EB20FCAB680D4D871CF28910E6FFD7C20_RuntimeMethod_var)));
  7670. }
  7671. IL_0013:
  7672. {
  7673. RuntimeObject* L_2 = __this->____currentKey;
  7674. RuntimeObject* L_3 = __this->____currentValue;
  7675. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_4;
  7676. memset((&L_4), 0, sizeof(L_4));
  7677. DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&L_4), L_2, L_3, NULL);
  7678. return L_4;
  7679. }
  7680. }
  7681. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HashtableEnumerator_get_Current_mE6421EB7F4E1327453DE6D3BE41289DCC8BF8F15 (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7682. {
  7683. static bool s_Il2CppMethodInitialized;
  7684. if (!s_Il2CppMethodInitialized)
  7685. {
  7686. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var);
  7687. s_Il2CppMethodInitialized = true;
  7688. }
  7689. {
  7690. bool L_0 = __this->____current;
  7691. if (L_0)
  7692. {
  7693. goto IL_0013;
  7694. }
  7695. }
  7696. {
  7697. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  7698. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), NULL);
  7699. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HashtableEnumerator_get_Current_mE6421EB7F4E1327453DE6D3BE41289DCC8BF8F15_RuntimeMethod_var)));
  7700. }
  7701. IL_0013:
  7702. {
  7703. int32_t L_2 = __this->____getObjectRetType;
  7704. if ((!(((uint32_t)L_2) == ((uint32_t)1))))
  7705. {
  7706. goto IL_0023;
  7707. }
  7708. }
  7709. {
  7710. RuntimeObject* L_3 = __this->____currentKey;
  7711. return L_3;
  7712. }
  7713. IL_0023:
  7714. {
  7715. int32_t L_4 = __this->____getObjectRetType;
  7716. if ((!(((uint32_t)L_4) == ((uint32_t)2))))
  7717. {
  7718. goto IL_0033;
  7719. }
  7720. }
  7721. {
  7722. RuntimeObject* L_5 = __this->____currentValue;
  7723. return L_5;
  7724. }
  7725. IL_0033:
  7726. {
  7727. RuntimeObject* L_6 = __this->____currentKey;
  7728. RuntimeObject* L_7 = __this->____currentValue;
  7729. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_8;
  7730. memset((&L_8), 0, sizeof(L_8));
  7731. DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&L_8), L_6, L_7, NULL);
  7732. DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_9 = L_8;
  7733. RuntimeObject* L_10 = Box(DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_il2cpp_TypeInfo_var, &L_9);
  7734. return L_10;
  7735. }
  7736. }
  7737. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* HashtableEnumerator_get_Value_m30BAEC76875DF2C4AF27B87F83FD960BE35503D2 (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7738. {
  7739. {
  7740. bool L_0 = __this->____current;
  7741. if (L_0)
  7742. {
  7743. goto IL_0013;
  7744. }
  7745. }
  7746. {
  7747. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_1 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  7748. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral63FC874122847D14784CB3ADBE59A08B9558FA97)), NULL);
  7749. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HashtableEnumerator_get_Value_m30BAEC76875DF2C4AF27B87F83FD960BE35503D2_RuntimeMethod_var)));
  7750. }
  7751. IL_0013:
  7752. {
  7753. RuntimeObject* L_2 = __this->____currentValue;
  7754. return L_2;
  7755. }
  7756. }
  7757. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashtableEnumerator_Reset_m72C56174ABFACD3B9073CA3DB7134083D2803876 (HashtableEnumerator_t93BDDC1436F6FD60768440A50B96759CD0E01061* __this, const RuntimeMethod* method)
  7758. {
  7759. {
  7760. int32_t L_0 = __this->____version;
  7761. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_1 = __this->____hashtable;
  7762. NullCheck(L_1);
  7763. int32_t L_2 = L_1->____version;
  7764. il2cpp_codegen_memory_barrier();
  7765. if ((((int32_t)L_0) == ((int32_t)L_2)))
  7766. {
  7767. goto IL_0020;
  7768. }
  7769. }
  7770. {
  7771. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_3 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  7772. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF8D08FCF1537043BF0289FA98C51BF5A3AC7C618)), NULL);
  7773. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&HashtableEnumerator_Reset_m72C56174ABFACD3B9073CA3DB7134083D2803876_RuntimeMethod_var)));
  7774. }
  7775. IL_0020:
  7776. {
  7777. __this->____current = (bool)0;
  7778. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* L_4 = __this->____hashtable;
  7779. NullCheck(L_4);
  7780. bucketU5BU5D_t59F1C7BC4EBFE874CA0B3F391EA65717E3C8D587* L_5 = L_4->____buckets;
  7781. NullCheck(L_5);
  7782. __this->____bucket = ((int32_t)(((RuntimeArray*)L_5)->max_length));
  7783. __this->____currentKey = NULL;
  7784. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentKey), (void*)NULL);
  7785. __this->____currentValue = NULL;
  7786. Il2CppCodeGenWriteBarrier((void**)(&__this->____currentValue), (void*)NULL);
  7787. return;
  7788. }
  7789. }
  7790. #ifdef __clang__
  7791. #pragma clang diagnostic pop
  7792. #endif
  7793. #ifdef __clang__
  7794. #pragma clang diagnostic push
  7795. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7796. #pragma clang diagnostic ignored "-Wunused-variable"
  7797. #endif
  7798. #ifdef __clang__
  7799. #pragma clang diagnostic pop
  7800. #endif
  7801. #ifdef __clang__
  7802. #pragma clang diagnostic push
  7803. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7804. #pragma clang diagnostic ignored "-Wunused-variable"
  7805. #endif
  7806. #ifdef __clang__
  7807. #pragma clang diagnostic pop
  7808. #endif
  7809. #ifdef __clang__
  7810. #pragma clang diagnostic push
  7811. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7812. #pragma clang diagnostic ignored "-Wunused-variable"
  7813. #endif
  7814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__ctor_m0A733DDB35201F79E9DED7B044B5D8484FC5448D (CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* __this, const RuntimeMethod* method)
  7815. {
  7816. {
  7817. EventSource__ctor_mDF751901186604B47C80B7DCC8DCB624FE5664BC(__this, NULL);
  7818. return;
  7819. }
  7820. }
  7821. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_mF33BBE9D19970C7F3C3DB3C0F6BCF16BEEC26EFA (CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* __this, int32_t ___0_numOfBuckets, const RuntimeMethod* method)
  7822. {
  7823. {
  7824. bool L_0;
  7825. L_0 = EventSource_IsEnabled_m744D6915CB7FFC678DECA5519509ED97D342B0A3(__this, 3, ((int64_t)(-1)), NULL);
  7826. if (!L_0)
  7827. {
  7828. goto IL_0013;
  7829. }
  7830. }
  7831. {
  7832. int32_t L_1 = ___0_numOfBuckets;
  7833. EventSource_WriteEvent_m8609472BD078A398CF4CA9DBF4BBDA1C454096A6(__this, 3, L_1, NULL);
  7834. }
  7835. IL_0013:
  7836. {
  7837. return;
  7838. }
  7839. }
  7840. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider__cctor_mD453FA4DF10AC2B540573340C4BA29CC5995643A (const RuntimeMethod* method)
  7841. {
  7842. static bool s_Il2CppMethodInitialized;
  7843. if (!s_Il2CppMethodInitialized)
  7844. {
  7845. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
  7846. s_Il2CppMethodInitialized = true;
  7847. }
  7848. {
  7849. CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_0 = (CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999*)il2cpp_codegen_object_new(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
  7850. CDSCollectionETWBCLProvider__ctor_m0A733DDB35201F79E9DED7B044B5D8484FC5448D(L_0, NULL);
  7851. ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log = L_0;
  7852. Il2CppCodeGenWriteBarrier((void**)(&((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log), (void*)L_0);
  7853. return;
  7854. }
  7855. }
  7856. #ifdef __clang__
  7857. #pragma clang diagnostic pop
  7858. #endif
  7859. #ifdef __clang__
  7860. #pragma clang diagnostic push
  7861. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7862. #pragma clang diagnostic ignored "-Wunused-variable"
  7863. #endif
  7864. #ifdef __clang__
  7865. #pragma clang diagnostic pop
  7866. #endif
  7867. #ifdef __clang__
  7868. #pragma clang diagnostic push
  7869. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7870. #pragma clang diagnostic ignored "-Wunused-variable"
  7871. #endif
  7872. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_m4650AA08FA75F015089EA648572674FC6511E8DF (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* __this, const RuntimeMethod* method)
  7873. {
  7874. static bool s_Il2CppMethodInitialized;
  7875. if (!s_Il2CppMethodInitialized)
  7876. {
  7877. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral457BF4072EA28A68960C6F36D3FB2B96D339A700);
  7878. s_Il2CppMethodInitialized = true;
  7879. }
  7880. {
  7881. SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, _stringLiteral457BF4072EA28A68960C6F36D3FB2B96D339A700, NULL);
  7882. Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232969), NULL);
  7883. return;
  7884. }
  7885. }
  7886. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* __this, String_t* ___0_message, const RuntimeMethod* method)
  7887. {
  7888. {
  7889. String_t* L_0 = ___0_message;
  7890. SystemException__ctor_mC481DFD60F19362A0B3523FBD5E429EC4F1F3FB5(__this, L_0, NULL);
  7891. Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232969), NULL);
  7892. return;
  7893. }
  7894. }
  7895. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_mAE2D0FF095FC58C5B461F89E0C55E5A954378AE2 (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method)
  7896. {
  7897. {
  7898. String_t* L_0 = ___0_message;
  7899. Exception_t* L_1 = ___1_innerException;
  7900. SystemException__ctor_m0FC84CACD2A5D66222998AA601A5C41CEC36A611(__this, L_0, L_1, NULL);
  7901. Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline(__this, ((int32_t)-2146232969), NULL);
  7902. return;
  7903. }
  7904. }
  7905. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyNotFoundException__ctor_m546AE2CB4D7CBD6EA8E321CD8F1AE3D53ACFD29C (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* __this, SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* ___0_info, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___1_context, const RuntimeMethod* method)
  7906. {
  7907. {
  7908. SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37* L_0 = ___0_info;
  7909. StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 L_1 = ___1_context;
  7910. SystemException__ctor_mA2BB392E0F4CD8A4C132984F76B7A9FBDB3B6879(__this, L_0, L_1, NULL);
  7911. return;
  7912. }
  7913. }
  7914. #ifdef __clang__
  7915. #pragma clang diagnostic pop
  7916. #endif
  7917. #ifdef __clang__
  7918. #pragma clang diagnostic push
  7919. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7920. #pragma clang diagnostic ignored "-Wunused-variable"
  7921. #endif
  7922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* KeyValuePair_PairToString_mBD93B04A82B9F554147E6FF8E6B90C5480B38646 (RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
  7923. {
  7924. static bool s_Il2CppMethodInitialized;
  7925. if (!s_Il2CppMethodInitialized)
  7926. {
  7927. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D);
  7928. s_Il2CppMethodInitialized = true;
  7929. }
  7930. StringBuilder_t* V_0 = NULL;
  7931. {
  7932. StringBuilder_t* L_0;
  7933. L_0 = StringBuilderCache_Acquire_m1CF9421EC0F3431719E18A8EE78669748DF10892(((int32_t)16), NULL);
  7934. V_0 = L_0;
  7935. StringBuilder_t* L_1 = V_0;
  7936. NullCheck(L_1);
  7937. StringBuilder_t* L_2;
  7938. L_2 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_1, ((int32_t)91), NULL);
  7939. RuntimeObject* L_3 = ___0_key;
  7940. if (!L_3)
  7941. {
  7942. goto IL_001c;
  7943. }
  7944. }
  7945. {
  7946. StringBuilder_t* L_4 = V_0;
  7947. RuntimeObject* L_5 = ___0_key;
  7948. NullCheck(L_4);
  7949. StringBuilder_t* L_6;
  7950. L_6 = StringBuilder_Append_m3A7D629DAA5E0E36B8A617A911E34F79AF84AE63(L_4, L_5, NULL);
  7951. }
  7952. IL_001c:
  7953. {
  7954. StringBuilder_t* L_7 = V_0;
  7955. NullCheck(L_7);
  7956. StringBuilder_t* L_8;
  7957. L_8 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_7, _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D, NULL);
  7958. RuntimeObject* L_9 = ___1_value;
  7959. if (!L_9)
  7960. {
  7961. goto IL_0033;
  7962. }
  7963. }
  7964. {
  7965. StringBuilder_t* L_10 = V_0;
  7966. RuntimeObject* L_11 = ___1_value;
  7967. NullCheck(L_10);
  7968. StringBuilder_t* L_12;
  7969. L_12 = StringBuilder_Append_m3A7D629DAA5E0E36B8A617A911E34F79AF84AE63(L_10, L_11, NULL);
  7970. }
  7971. IL_0033:
  7972. {
  7973. StringBuilder_t* L_13 = V_0;
  7974. NullCheck(L_13);
  7975. StringBuilder_t* L_14;
  7976. L_14 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_13, ((int32_t)93), NULL);
  7977. StringBuilder_t* L_15 = V_0;
  7978. String_t* L_16;
  7979. L_16 = StringBuilderCache_GetStringAndRelease_m4A7AB11554F7E80352AB8C3AC72D7AD4C7108FB0(L_15, NULL);
  7980. return L_16;
  7981. }
  7982. }
  7983. #ifdef __clang__
  7984. #pragma clang diagnostic pop
  7985. #endif
  7986. #ifdef __clang__
  7987. #pragma clang diagnostic push
  7988. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7989. #pragma clang diagnostic ignored "-Wunused-variable"
  7990. #endif
  7991. #ifdef __clang__
  7992. #pragma clang diagnostic pop
  7993. #endif
  7994. #ifdef __clang__
  7995. #pragma clang diagnostic push
  7996. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7997. #pragma clang diagnostic ignored "-Wunused-variable"
  7998. #endif
  7999. #ifdef __clang__
  8000. #pragma clang diagnostic pop
  8001. #endif
  8002. #ifdef __clang__
  8003. #pragma clang diagnostic push
  8004. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8005. #pragma clang diagnostic ignored "-Wunused-variable"
  8006. #endif
  8007. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntrospectiveSortUtilities_FloorLog2PlusOne_m33AC60574EC2B80A3B7084361A3736D4CFE91F6D (int32_t ___0_n, const RuntimeMethod* method)
  8008. {
  8009. int32_t V_0 = 0;
  8010. {
  8011. V_0 = 0;
  8012. goto IL_000d;
  8013. }
  8014. IL_0004:
  8015. {
  8016. int32_t L_0 = V_0;
  8017. V_0 = ((int32_t)il2cpp_codegen_add(L_0, 1));
  8018. int32_t L_1 = ___0_n;
  8019. ___0_n = ((int32_t)(L_1/2));
  8020. }
  8021. IL_000d:
  8022. {
  8023. int32_t L_2 = ___0_n;
  8024. if ((((int32_t)L_2) >= ((int32_t)1)))
  8025. {
  8026. goto IL_0004;
  8027. }
  8028. }
  8029. {
  8030. int32_t L_3 = V_0;
  8031. return L_3;
  8032. }
  8033. }
  8034. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_m119232371BEE9732FE70D22EE93B3818E577EFAF (RuntimeObject* ___0_comparer, const RuntimeMethod* method)
  8035. {
  8036. {
  8037. RuntimeObject* L_0 = ___0_comparer;
  8038. String_t* L_1;
  8039. L_1 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral0FB28D215F1C062EDB535A58AD8714B5A5FE4064)), L_0, NULL);
  8040. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  8041. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, L_1, NULL);
  8042. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&IntrospectiveSortUtilities_ThrowOrIgnoreBadComparer_m119232371BEE9732FE70D22EE93B3818E577EFAF_RuntimeMethod_var)));
  8043. }
  8044. }
  8045. #ifdef __clang__
  8046. #pragma clang diagnostic pop
  8047. #endif
  8048. #ifdef __clang__
  8049. #pragma clang diagnostic push
  8050. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8051. #pragma clang diagnostic ignored "-Wunused-variable"
  8052. #endif
  8053. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteEqualityComparer_Equals_m4ABF0097A06636549CB7BB4ED696CB0D3B98563E (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, uint8_t ___0_x, uint8_t ___1_y, const RuntimeMethod* method)
  8054. {
  8055. {
  8056. uint8_t L_0 = ___0_x;
  8057. uint8_t L_1 = ___1_y;
  8058. return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
  8059. }
  8060. }
  8061. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_GetHashCode_m019849C226C9A0E22213E1EC02550F6739CFCF3B (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, uint8_t ___0_b, const RuntimeMethod* method)
  8062. {
  8063. {
  8064. int32_t L_0;
  8065. L_0 = Byte_GetHashCode_mB42A844E310593D124CE92EBA90F3755C9B10678((&___0_b), NULL);
  8066. return L_0;
  8067. }
  8068. }
  8069. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_IndexOf_mFFA29BDEAC6472E9942D453FDA4D88C409EFCDA8 (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
  8070. {
  8071. uint8_t* V_0 = NULL;
  8072. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  8073. {
  8074. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  8075. if (L_0)
  8076. {
  8077. goto IL_000e;
  8078. }
  8079. }
  8080. {
  8081. ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_1 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
  8082. ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
  8083. IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ByteEqualityComparer_IndexOf_mFFA29BDEAC6472E9942D453FDA4D88C409EFCDA8_RuntimeMethod_var)));
  8084. }
  8085. IL_000e:
  8086. {
  8087. int32_t L_2 = ___2_startIndex;
  8088. if ((((int32_t)L_2) >= ((int32_t)0)))
  8089. {
  8090. goto IL_0027;
  8091. }
  8092. }
  8093. {
  8094. String_t* L_3;
  8095. L_3 = Environment_GetResourceString_mA14837A574D24E2F2D120D7B5514E849E9986058(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral569FEAE6AEE421BCD8D24F22865E84F808C2A1E4)), NULL);
  8096. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_4 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  8097. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE68FFE708FFE8FC1D5DA3BEDB8B81DE1CCC64C34)), L_3, NULL);
  8098. IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ByteEqualityComparer_IndexOf_mFFA29BDEAC6472E9942D453FDA4D88C409EFCDA8_RuntimeMethod_var)));
  8099. }
  8100. IL_0027:
  8101. {
  8102. int32_t L_5 = ___3_count;
  8103. if ((((int32_t)L_5) >= ((int32_t)0)))
  8104. {
  8105. goto IL_0041;
  8106. }
  8107. }
  8108. {
  8109. String_t* L_6;
  8110. L_6 = Environment_GetResourceString_mA14837A574D24E2F2D120D7B5514E849E9986058(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral00BA133FF3D84EAB4FB7DB5FB38F235C4E108ED9)), NULL);
  8111. ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_7 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
  8112. ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral07624473F417C06C74D59C64840A1532FCE2C626)), L_6, NULL);
  8113. IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ByteEqualityComparer_IndexOf_mFFA29BDEAC6472E9942D453FDA4D88C409EFCDA8_RuntimeMethod_var)));
  8114. }
  8115. IL_0041:
  8116. {
  8117. int32_t L_8 = ___3_count;
  8118. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___0_array;
  8119. NullCheck(L_9);
  8120. int32_t L_10 = ___2_startIndex;
  8121. if ((((int32_t)L_8) <= ((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_9)->max_length)), L_10)))))
  8122. {
  8123. goto IL_005a;
  8124. }
  8125. }
  8126. {
  8127. String_t* L_11;
  8128. L_11 = Environment_GetResourceString_mA14837A574D24E2F2D120D7B5514E849E9986058(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7F4C724BD10943E8B0B17A6E069F992E219EF5E8)), NULL);
  8129. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  8130. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, L_11, NULL);
  8131. IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ByteEqualityComparer_IndexOf_mFFA29BDEAC6472E9942D453FDA4D88C409EFCDA8_RuntimeMethod_var)));
  8132. }
  8133. IL_005a:
  8134. {
  8135. int32_t L_13 = ___3_count;
  8136. if (L_13)
  8137. {
  8138. goto IL_0060;
  8139. }
  8140. }
  8141. {
  8142. return (-1);
  8143. }
  8144. IL_0060:
  8145. {
  8146. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = ___0_array;
  8147. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = L_14;
  8148. V_1 = L_15;
  8149. if (!L_15)
  8150. {
  8151. goto IL_006a;
  8152. }
  8153. }
  8154. {
  8155. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = V_1;
  8156. NullCheck(L_16);
  8157. if (((int32_t)(((RuntimeArray*)L_16)->max_length)))
  8158. {
  8159. goto IL_006f;
  8160. }
  8161. }
  8162. IL_006a:
  8163. {
  8164. V_0 = (uint8_t*)((uintptr_t)0);
  8165. goto IL_0078;
  8166. }
  8167. IL_006f:
  8168. {
  8169. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_17 = V_1;
  8170. NullCheck(L_17);
  8171. V_0 = (uint8_t*)((uintptr_t)((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(0))));
  8172. }
  8173. IL_0078:
  8174. {
  8175. uint8_t* L_18 = V_0;
  8176. uint8_t L_19 = ___1_value;
  8177. int32_t L_20 = ___2_startIndex;
  8178. int32_t L_21 = ___3_count;
  8179. int32_t L_22;
  8180. L_22 = Buffer_IndexOfByte_mF43902211DC955885C828233F0D46BAC239B0ECC(L_18, L_19, L_20, L_21, NULL);
  8181. return L_22;
  8182. }
  8183. }
  8184. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_LastIndexOf_m8A5A08F15AC6060CA70CC8AC280C32ADFBB749ED (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
  8185. {
  8186. int32_t V_0 = 0;
  8187. int32_t V_1 = 0;
  8188. {
  8189. int32_t L_0 = ___2_startIndex;
  8190. int32_t L_1 = ___3_count;
  8191. V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(L_0, L_1)), 1));
  8192. int32_t L_2 = ___2_startIndex;
  8193. V_1 = L_2;
  8194. goto IL_0017;
  8195. }
  8196. IL_000b:
  8197. {
  8198. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ___0_array;
  8199. int32_t L_4 = V_1;
  8200. NullCheck(L_3);
  8201. int32_t L_5 = L_4;
  8202. uint8_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
  8203. uint8_t L_7 = ___1_value;
  8204. if ((!(((uint32_t)L_6) == ((uint32_t)L_7))))
  8205. {
  8206. goto IL_0013;
  8207. }
  8208. }
  8209. {
  8210. int32_t L_8 = V_1;
  8211. return L_8;
  8212. }
  8213. IL_0013:
  8214. {
  8215. int32_t L_9 = V_1;
  8216. V_1 = ((int32_t)il2cpp_codegen_subtract(L_9, 1));
  8217. }
  8218. IL_0017:
  8219. {
  8220. int32_t L_10 = V_1;
  8221. int32_t L_11 = V_0;
  8222. if ((((int32_t)L_10) >= ((int32_t)L_11)))
  8223. {
  8224. goto IL_000b;
  8225. }
  8226. }
  8227. {
  8228. return (-1);
  8229. }
  8230. }
  8231. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ByteEqualityComparer_Equals_m9B113E83537F9F939D54627EAFAF81E463C1A468 (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
  8232. {
  8233. static bool s_Il2CppMethodInitialized;
  8234. if (!s_Il2CppMethodInitialized)
  8235. {
  8236. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275_il2cpp_TypeInfo_var);
  8237. s_Il2CppMethodInitialized = true;
  8238. }
  8239. {
  8240. RuntimeObject* L_0 = ___0_obj;
  8241. return (bool)((!(((RuntimeObject*)(ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275*)((ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275*)IsInstClass((RuntimeObject*)L_0, ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  8242. }
  8243. }
  8244. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ByteEqualityComparer_GetHashCode_mC71878E73D9E43C3DA44DA3BD0FD34A1337556E7 (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, const RuntimeMethod* method)
  8245. {
  8246. {
  8247. Type_t* L_0;
  8248. L_0 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(__this, NULL);
  8249. NullCheck(L_0);
  8250. String_t* L_1;
  8251. L_1 = VirtualFuncInvoker0< String_t* >::Invoke(8, L_0);
  8252. NullCheck(L_1);
  8253. int32_t L_2;
  8254. L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_1);
  8255. return L_2;
  8256. }
  8257. }
  8258. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ByteEqualityComparer__ctor_m6A7EE7FCB7B4275069DC078346C35ED9B6F71AAE (ByteEqualityComparer_tE254CF4C39341CB4BB9890C1CA90ACE14E1BA275* __this, const RuntimeMethod* method)
  8259. {
  8260. static bool s_Il2CppMethodInitialized;
  8261. if (!s_Il2CppMethodInitialized)
  8262. {
  8263. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD_RuntimeMethod_var);
  8264. s_Il2CppMethodInitialized = true;
  8265. }
  8266. {
  8267. EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD(__this, EqualityComparer_1__ctor_m837428D8789D08F38784925EE679EBC5FF7808FD_RuntimeMethod_var);
  8268. return;
  8269. }
  8270. }
  8271. #ifdef __clang__
  8272. #pragma clang diagnostic pop
  8273. #endif
  8274. #ifdef __clang__
  8275. #pragma clang diagnostic push
  8276. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8277. #pragma clang diagnostic ignored "-Wunused-variable"
  8278. #endif
  8279. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalStringComparer_GetHashCode_m4EC162DE81A1F8235C20BD7ADFD2ED0BB12FD7C6 (InternalStringComparer_t04B2D1768998E940BC4619579B7044102591E38B* __this, String_t* ___0_obj, const RuntimeMethod* method)
  8280. {
  8281. {
  8282. String_t* L_0 = ___0_obj;
  8283. if (L_0)
  8284. {
  8285. goto IL_0005;
  8286. }
  8287. }
  8288. {
  8289. return 0;
  8290. }
  8291. IL_0005:
  8292. {
  8293. String_t* L_1 = ___0_obj;
  8294. NullCheck(L_1);
  8295. int32_t L_2;
  8296. L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2, L_1);
  8297. return L_2;
  8298. }
  8299. }
  8300. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool InternalStringComparer_Equals_m788524086ADC25F1E939088DF22FF301DF3018B0 (InternalStringComparer_t04B2D1768998E940BC4619579B7044102591E38B* __this, String_t* ___0_x, String_t* ___1_y, const RuntimeMethod* method)
  8301. {
  8302. {
  8303. String_t* L_0 = ___0_x;
  8304. if (L_0)
  8305. {
  8306. goto IL_0008;
  8307. }
  8308. }
  8309. {
  8310. String_t* L_1 = ___1_y;
  8311. return (bool)((((RuntimeObject*)(String_t*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  8312. }
  8313. IL_0008:
  8314. {
  8315. String_t* L_2 = ___0_x;
  8316. String_t* L_3 = ___1_y;
  8317. if ((!(((RuntimeObject*)(String_t*)L_2) == ((RuntimeObject*)(String_t*)L_3))))
  8318. {
  8319. goto IL_000e;
  8320. }
  8321. }
  8322. {
  8323. return (bool)1;
  8324. }
  8325. IL_000e:
  8326. {
  8327. String_t* L_4 = ___0_x;
  8328. String_t* L_5 = ___1_y;
  8329. NullCheck(L_4);
  8330. bool L_6;
  8331. L_6 = String_Equals_mCD5F35DEDCAFE51ACD4E033726FC2EF8DF7E9B4D(L_4, L_5, NULL);
  8332. return L_6;
  8333. }
  8334. }
  8335. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t InternalStringComparer_IndexOf_mE69D32A9D7690C656336174756E70C54C457067D (InternalStringComparer_t04B2D1768998E940BC4619579B7044102591E38B* __this, StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_array, String_t* ___1_value, int32_t ___2_startIndex, int32_t ___3_count, const RuntimeMethod* method)
  8336. {
  8337. int32_t V_0 = 0;
  8338. int32_t V_1 = 0;
  8339. {
  8340. int32_t L_0 = ___2_startIndex;
  8341. int32_t L_1 = ___3_count;
  8342. V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_1));
  8343. int32_t L_2 = ___2_startIndex;
  8344. V_1 = L_2;
  8345. goto IL_001e;
  8346. }
  8347. IL_0009:
  8348. {
  8349. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_3 = ___0_array;
  8350. int32_t L_4 = V_1;
  8351. String_t* L_5;
  8352. L_5 = IL2CPP_ARRAY_UNSAFE_LOAD(L_3, L_4);
  8353. String_t* L_6 = ___1_value;
  8354. bool L_7;
  8355. L_7 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_5, L_6, NULL);
  8356. if (!L_7)
  8357. {
  8358. goto IL_001a;
  8359. }
  8360. }
  8361. {
  8362. int32_t L_8 = V_1;
  8363. return L_8;
  8364. }
  8365. IL_001a:
  8366. {
  8367. int32_t L_9 = V_1;
  8368. V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
  8369. }
  8370. IL_001e:
  8371. {
  8372. int32_t L_10 = V_1;
  8373. int32_t L_11 = V_0;
  8374. if ((((int32_t)L_10) < ((int32_t)L_11)))
  8375. {
  8376. goto IL_0009;
  8377. }
  8378. }
  8379. {
  8380. return (-1);
  8381. }
  8382. }
  8383. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InternalStringComparer__ctor_m06A4CE888A27763DE6BD47DD2C2CF45C68736108 (InternalStringComparer_t04B2D1768998E940BC4619579B7044102591E38B* __this, const RuntimeMethod* method)
  8384. {
  8385. static bool s_Il2CppMethodInitialized;
  8386. if (!s_Il2CppMethodInitialized)
  8387. {
  8388. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualityComparer_1__ctor_m9D692A2446D3F93F9042D7CAC625E36F01658C0C_RuntimeMethod_var);
  8389. s_Il2CppMethodInitialized = true;
  8390. }
  8391. {
  8392. EqualityComparer_1__ctor_m9D692A2446D3F93F9042D7CAC625E36F01658C0C(__this, EqualityComparer_1__ctor_m9D692A2446D3F93F9042D7CAC625E36F01658C0C_RuntimeMethod_var);
  8393. return;
  8394. }
  8395. }
  8396. #ifdef __clang__
  8397. #pragma clang diagnostic pop
  8398. #endif
  8399. #ifdef __clang__
  8400. #pragma clang diagnostic push
  8401. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8402. #pragma clang diagnostic ignored "-Wunused-variable"
  8403. #endif
  8404. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__ctor_m630817B899F980174697248E423104D06EC63F2E (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, const RuntimeMethod* method)
  8405. {
  8406. static bool s_Il2CppMethodInitialized;
  8407. if (!s_Il2CppMethodInitialized)
  8408. {
  8409. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral71943296949CB7F897DB641231533D430DE14FF8);
  8410. s_Il2CppMethodInitialized = true;
  8411. }
  8412. {
  8413. Guid_t L_0;
  8414. memset((&L_0), 0, sizeof(L_0));
  8415. Guid__ctor_mC52E0191E06C110F9F6E0A417BCA4437D79CC130((&L_0), ((int32_t)140948152), (int16_t)((int32_t)23791), (int16_t)((int32_t)23993), (uint8_t)((int32_t)38), (uint8_t)((int32_t)18), (uint8_t)((int32_t)12), (uint8_t)((int32_t)15), (uint8_t)((int32_t)253), (uint8_t)((int32_t)129), (uint8_t)((int32_t)74), (uint8_t)((int32_t)68), NULL);
  8416. EventSource__ctor_mA6FB74138AB52C540333000C0CEAD367D5072083(__this, L_0, _stringLiteral71943296949CB7F897DB641231533D430DE14FF8, NULL);
  8417. return;
  8418. }
  8419. }
  8420. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource_BufferRented_m89BFEDA08F56DBCD41247780571D8481C08961E6 (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, int32_t ___0_bufferId, int32_t ___1_bufferSize, int32_t ___2_poolId, int32_t ___3_bucketId, const RuntimeMethod* method)
  8421. {
  8422. static bool s_Il2CppMethodInitialized;
  8423. if (!s_Il2CppMethodInitialized)
  8424. {
  8425. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPoolEventSource_BufferRented_m89BFEDA08F56DBCD41247780571D8481C08961E6_RuntimeMethod_var);
  8426. s_Il2CppMethodInitialized = true;
  8427. }
  8428. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* V_0 = NULL;
  8429. {
  8430. uint32_t L_0 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8431. if ((uintptr_t)((uintptr_t)4) * (uintptr_t)L_0 > (uintptr_t)kIl2CppUIntPtrMax)
  8432. IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), ArrayPoolEventSource_BufferRented_m89BFEDA08F56DBCD41247780571D8481C08961E6_RuntimeMethod_var);
  8433. intptr_t L_1 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)4), (int32_t)L_0));
  8434. int8_t* L_2 = (int8_t*) (L_1 ? alloca(L_1) : NULL);
  8435. memset(L_2, 0, L_1);
  8436. V_0 = (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)(L_2);
  8437. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_3 = V_0;
  8438. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)L_3, 4, NULL);
  8439. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_4 = V_0;
  8440. intptr_t L_5;
  8441. L_5 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___0_bufferId)), NULL);
  8442. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)L_4, L_5, NULL);
  8443. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_6 = V_0;
  8444. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)L_6, 0, NULL);
  8445. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_7 = V_0;
  8446. uint32_t L_8 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8447. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), 4, NULL);
  8448. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_9 = V_0;
  8449. uint32_t L_10 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8450. intptr_t L_11;
  8451. L_11 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___1_bufferSize)), NULL);
  8452. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)L_10)), L_11, NULL);
  8453. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_12 = V_0;
  8454. uint32_t L_13 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8455. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)L_13)), 0, NULL);
  8456. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_14 = V_0;
  8457. uint32_t L_15 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8458. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), (int32_t)L_15)))), 4, NULL);
  8459. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_16 = V_0;
  8460. uint32_t L_17 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8461. intptr_t L_18;
  8462. L_18 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___2_poolId)), NULL);
  8463. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), (int32_t)L_17)))), L_18, NULL);
  8464. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_19 = V_0;
  8465. uint32_t L_20 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8466. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), (int32_t)L_20)))), 0, NULL);
  8467. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_21 = V_0;
  8468. uint32_t L_22 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8469. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), (int32_t)L_22)))), 4, NULL);
  8470. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_23 = V_0;
  8471. uint32_t L_24 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8472. intptr_t L_25;
  8473. L_25 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___3_bucketId)), NULL);
  8474. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), (int32_t)L_24)))), L_25, NULL);
  8475. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_26 = V_0;
  8476. uint32_t L_27 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8477. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_26, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), (int32_t)L_27)))), 0, NULL);
  8478. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_28 = V_0;
  8479. EventSource_WriteEventCore_m168D78A12127FCD1AF49F42E7E3DB2303035B631(__this, 1, 4, L_28, NULL);
  8480. return;
  8481. }
  8482. }
  8483. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource_BufferAllocated_m8460B99481867223928865EA0076CCF983EE3DB0 (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, int32_t ___0_bufferId, int32_t ___1_bufferSize, int32_t ___2_poolId, int32_t ___3_bucketId, int32_t ___4_reason, const RuntimeMethod* method)
  8484. {
  8485. static bool s_Il2CppMethodInitialized;
  8486. if (!s_Il2CppMethodInitialized)
  8487. {
  8488. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPoolEventSource_BufferAllocated_m8460B99481867223928865EA0076CCF983EE3DB0_RuntimeMethod_var);
  8489. s_Il2CppMethodInitialized = true;
  8490. }
  8491. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* V_0 = NULL;
  8492. {
  8493. uint32_t L_0 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8494. if ((uintptr_t)((uintptr_t)5) * (uintptr_t)L_0 > (uintptr_t)kIl2CppUIntPtrMax)
  8495. IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), ArrayPoolEventSource_BufferAllocated_m8460B99481867223928865EA0076CCF983EE3DB0_RuntimeMethod_var);
  8496. intptr_t L_1 = ((intptr_t)il2cpp_codegen_multiply((intptr_t)((uintptr_t)5), (int32_t)L_0));
  8497. int8_t* L_2 = (int8_t*) (L_1 ? alloca(L_1) : NULL);
  8498. memset(L_2, 0, L_1);
  8499. V_0 = (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)(L_2);
  8500. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_3 = V_0;
  8501. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)L_3, 4, NULL);
  8502. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_4 = V_0;
  8503. intptr_t L_5;
  8504. L_5 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___0_bufferId)), NULL);
  8505. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)L_4, L_5, NULL);
  8506. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_6 = V_0;
  8507. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)L_6, 0, NULL);
  8508. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_7 = V_0;
  8509. uint32_t L_8 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8510. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8)), 4, NULL);
  8511. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_9 = V_0;
  8512. uint32_t L_10 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8513. intptr_t L_11;
  8514. L_11 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___1_bufferSize)), NULL);
  8515. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_9, (int32_t)L_10)), L_11, NULL);
  8516. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_12 = V_0;
  8517. uint32_t L_13 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8518. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_12, (int32_t)L_13)), 0, NULL);
  8519. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_14 = V_0;
  8520. uint32_t L_15 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8521. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_14, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), (int32_t)L_15)))), 4, NULL);
  8522. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_16 = V_0;
  8523. uint32_t L_17 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8524. intptr_t L_18;
  8525. L_18 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___2_poolId)), NULL);
  8526. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_16, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), (int32_t)L_17)))), L_18, NULL);
  8527. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_19 = V_0;
  8528. uint32_t L_20 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8529. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_19, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)2), (int32_t)L_20)))), 0, NULL);
  8530. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_21 = V_0;
  8531. uint32_t L_22 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8532. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_21, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), (int32_t)L_22)))), 4, NULL);
  8533. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_23 = V_0;
  8534. uint32_t L_24 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8535. intptr_t L_25;
  8536. L_25 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___3_bucketId)), NULL);
  8537. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_23, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), (int32_t)L_24)))), L_25, NULL);
  8538. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_26 = V_0;
  8539. uint32_t L_27 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8540. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_26, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)3), (int32_t)L_27)))), 0, NULL);
  8541. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_28 = V_0;
  8542. uint32_t L_29 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8543. EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_28, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), (int32_t)L_29)))), 4, NULL);
  8544. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_30 = V_0;
  8545. uint32_t L_31 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8546. intptr_t L_32;
  8547. L_32 = IntPtr_op_Explicit_mE2CEC14C61FD5E2159A03EA2AD97F5CDC5BB9F4D((void*)((uintptr_t)(&___4_reason)), NULL);
  8548. EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_30, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), (int32_t)L_31)))), L_32, NULL);
  8549. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_33 = V_0;
  8550. uint32_t L_34 = sizeof(EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D);
  8551. EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)((EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D*)il2cpp_codegen_add((intptr_t)L_33, ((intptr_t)il2cpp_codegen_multiply(((intptr_t)4), (int32_t)L_34)))), 0, NULL);
  8552. EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* L_35 = V_0;
  8553. EventSource_WriteEventCore_m168D78A12127FCD1AF49F42E7E3DB2303035B631(__this, 2, 5, L_35, NULL);
  8554. return;
  8555. }
  8556. }
  8557. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource_BufferReturned_m077FAF26488263C1FBFA74CF54A5B3966BB87D55 (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, int32_t ___0_bufferId, int32_t ___1_bufferSize, int32_t ___2_poolId, const RuntimeMethod* method)
  8558. {
  8559. {
  8560. int32_t L_0 = ___0_bufferId;
  8561. int32_t L_1 = ___1_bufferSize;
  8562. int32_t L_2 = ___2_poolId;
  8563. EventSource_WriteEvent_m29A840C8BA6AEBC203406BC9BBED63067788805F(__this, 3, L_0, L_1, L_2, NULL);
  8564. return;
  8565. }
  8566. }
  8567. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource_BufferTrimmed_m7E5BBBCE84BEF9C79981E482AC6D2FA6FFB2ECB0 (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, int32_t ___0_bufferId, int32_t ___1_bufferSize, int32_t ___2_poolId, const RuntimeMethod* method)
  8568. {
  8569. {
  8570. int32_t L_0 = ___0_bufferId;
  8571. int32_t L_1 = ___1_bufferSize;
  8572. int32_t L_2 = ___2_poolId;
  8573. EventSource_WriteEvent_m29A840C8BA6AEBC203406BC9BBED63067788805F(__this, 4, L_0, L_1, L_2, NULL);
  8574. return;
  8575. }
  8576. }
  8577. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource_BufferTrimPoll_mCB607EF91966BDFABAE587B19148849ACC5A45FA (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* __this, int32_t ___0_milliseconds, int32_t ___1_pressure, const RuntimeMethod* method)
  8578. {
  8579. {
  8580. int32_t L_0 = ___0_milliseconds;
  8581. int32_t L_1 = ___1_pressure;
  8582. EventSource_WriteEvent_mF3DADFC0459BB9C89B17BCECE51A57C3F4ED7D88(__this, 5, L_0, L_1, NULL);
  8583. return;
  8584. }
  8585. }
  8586. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArrayPoolEventSource__cctor_m9E459A789B6EB88AFC218C00FCEE8FE321380663 (const RuntimeMethod* method)
  8587. {
  8588. static bool s_Il2CppMethodInitialized;
  8589. if (!s_Il2CppMethodInitialized)
  8590. {
  8591. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_il2cpp_TypeInfo_var);
  8592. s_Il2CppMethodInitialized = true;
  8593. }
  8594. {
  8595. ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888* L_0 = (ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888*)il2cpp_codegen_object_new(ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_il2cpp_TypeInfo_var);
  8596. ArrayPoolEventSource__ctor_m630817B899F980174697248E423104D06EC63F2E(L_0, NULL);
  8597. ((ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_StaticFields*)il2cpp_codegen_static_fields_for(ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_il2cpp_TypeInfo_var))->___Log = L_0;
  8598. Il2CppCodeGenWriteBarrier((void**)(&((ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_StaticFields*)il2cpp_codegen_static_fields_for(ArrayPoolEventSource_tDB6CA549DFC2FBEB134C71EB85DBD6D943E5C888_il2cpp_TypeInfo_var))->___Log), (void*)L_0);
  8599. return;
  8600. }
  8601. }
  8602. #ifdef __clang__
  8603. #pragma clang diagnostic pop
  8604. #endif
  8605. #ifdef __clang__
  8606. #pragma clang diagnostic push
  8607. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8608. #pragma clang diagnostic ignored "-Wunused-variable"
  8609. #endif
  8610. #ifdef __clang__
  8611. #pragma clang diagnostic pop
  8612. #endif
  8613. #ifdef __clang__
  8614. #pragma clang diagnostic push
  8615. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8616. #pragma clang diagnostic ignored "-Wunused-variable"
  8617. #endif
  8618. IL2CPP_EXTERN_C void MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshal_pinvoke(const MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD& unmarshaled, MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_pinvoke& marshaled)
  8619. {
  8620. Exception_t* ____pinnableException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_pinnable' of type 'MemoryHandle': Reference type field marshaling is not supported.");
  8621. IL2CPP_RAISE_MANAGED_EXCEPTION(____pinnableException, NULL);
  8622. }
  8623. IL2CPP_EXTERN_C void MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshal_pinvoke_back(const MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_pinvoke& marshaled, MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD& unmarshaled)
  8624. {
  8625. Exception_t* ____pinnableException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_pinnable' of type 'MemoryHandle': Reference type field marshaling is not supported.");
  8626. IL2CPP_RAISE_MANAGED_EXCEPTION(____pinnableException, NULL);
  8627. }
  8628. IL2CPP_EXTERN_C void MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshal_pinvoke_cleanup(MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_pinvoke& marshaled)
  8629. {
  8630. }
  8631. IL2CPP_EXTERN_C void MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshal_com(const MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD& unmarshaled, MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_com& marshaled)
  8632. {
  8633. Exception_t* ____pinnableException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_pinnable' of type 'MemoryHandle': Reference type field marshaling is not supported.");
  8634. IL2CPP_RAISE_MANAGED_EXCEPTION(____pinnableException, NULL);
  8635. }
  8636. IL2CPP_EXTERN_C void MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshal_com_back(const MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_com& marshaled, MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD& unmarshaled)
  8637. {
  8638. Exception_t* ____pinnableException = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '_pinnable' of type 'MemoryHandle': Reference type field marshaling is not supported.");
  8639. IL2CPP_RAISE_MANAGED_EXCEPTION(____pinnableException, NULL);
  8640. }
  8641. IL2CPP_EXTERN_C void MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshal_com_cleanup(MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD_marshaled_com& marshaled)
  8642. {
  8643. }
  8644. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHandle__ctor_mBC4C2B7E7F10F5F93EFCF6A3A24D41CE79916C91 (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, void* ___0_pointer, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___1_handle, RuntimeObject* ___2_pinnable, const RuntimeMethod* method)
  8645. {
  8646. {
  8647. void* L_0 = ___0_pointer;
  8648. __this->____pointer = L_0;
  8649. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC L_1 = ___1_handle;
  8650. __this->____handle = L_1;
  8651. RuntimeObject* L_2 = ___2_pinnable;
  8652. __this->____pinnable = L_2;
  8653. Il2CppCodeGenWriteBarrier((void**)(&__this->____pinnable), (void*)L_2);
  8654. return;
  8655. }
  8656. }
  8657. IL2CPP_EXTERN_C void MemoryHandle__ctor_mBC4C2B7E7F10F5F93EFCF6A3A24D41CE79916C91_AdjustorThunk (RuntimeObject* __this, void* ___0_pointer, GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC ___1_handle, RuntimeObject* ___2_pinnable, const RuntimeMethod* method)
  8658. {
  8659. MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* _thisAdjusted;
  8660. int32_t _offset = 1;
  8661. _thisAdjusted = reinterpret_cast<MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD*>(__this + _offset);
  8662. MemoryHandle__ctor_mBC4C2B7E7F10F5F93EFCF6A3A24D41CE79916C91(_thisAdjusted, ___0_pointer, ___1_handle, ___2_pinnable, method);
  8663. }
  8664. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* MemoryHandle_get_Pointer_mB37B69B8014746F855683C47FF2E6EC46D656CA8 (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, const RuntimeMethod* method)
  8665. {
  8666. {
  8667. void* L_0 = __this->____pointer;
  8668. return L_0;
  8669. }
  8670. }
  8671. IL2CPP_EXTERN_C void* MemoryHandle_get_Pointer_mB37B69B8014746F855683C47FF2E6EC46D656CA8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  8672. {
  8673. MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* _thisAdjusted;
  8674. int32_t _offset = 1;
  8675. _thisAdjusted = reinterpret_cast<MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD*>(__this + _offset);
  8676. void* _returnValue;
  8677. _returnValue = MemoryHandle_get_Pointer_mB37B69B8014746F855683C47FF2E6EC46D656CA8_inline(_thisAdjusted, method);
  8678. return _returnValue;
  8679. }
  8680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryHandle_Dispose_m1F3EAA54B49EACFC7E489AEF1FF630553FEBE229 (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, const RuntimeMethod* method)
  8681. {
  8682. static bool s_Il2CppMethodInitialized;
  8683. if (!s_Il2CppMethodInitialized)
  8684. {
  8685. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPinnable_tA3989EA495C0118966BAAF8848C0009947BB49C0_il2cpp_TypeInfo_var);
  8686. s_Il2CppMethodInitialized = true;
  8687. }
  8688. {
  8689. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_0 = (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)(&__this->____handle);
  8690. bool L_1;
  8691. L_1 = GCHandle_get_IsAllocated_m241908103D8D867E11CCAB73C918729825E86843(L_0, NULL);
  8692. if (!L_1)
  8693. {
  8694. goto IL_0018;
  8695. }
  8696. }
  8697. {
  8698. GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC* L_2 = (GCHandle_tC44F6F72EE68BD4CFABA24309DA7A179D41127DC*)(&__this->____handle);
  8699. GCHandle_Free_m1320A260E487EB1EA6D95F9E54BFFCB5A4EF83A3(L_2, NULL);
  8700. }
  8701. IL_0018:
  8702. {
  8703. RuntimeObject* L_3 = __this->____pinnable;
  8704. if (!L_3)
  8705. {
  8706. goto IL_0032;
  8707. }
  8708. }
  8709. {
  8710. RuntimeObject* L_4 = __this->____pinnable;
  8711. NullCheck(L_4);
  8712. InterfaceActionInvoker0::Invoke(0, IPinnable_tA3989EA495C0118966BAAF8848C0009947BB49C0_il2cpp_TypeInfo_var, L_4);
  8713. __this->____pinnable = (RuntimeObject*)NULL;
  8714. Il2CppCodeGenWriteBarrier((void**)(&__this->____pinnable), (void*)(RuntimeObject*)NULL);
  8715. }
  8716. IL_0032:
  8717. {
  8718. __this->____pointer = (void*)((uintptr_t)0);
  8719. return;
  8720. }
  8721. }
  8722. IL2CPP_EXTERN_C void MemoryHandle_Dispose_m1F3EAA54B49EACFC7E489AEF1FF630553FEBE229_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
  8723. {
  8724. MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* _thisAdjusted;
  8725. int32_t _offset = 1;
  8726. _thisAdjusted = reinterpret_cast<MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD*>(__this + _offset);
  8727. MemoryHandle_Dispose_m1F3EAA54B49EACFC7E489AEF1FF630553FEBE229(_thisAdjusted, method);
  8728. }
  8729. #ifdef __clang__
  8730. #pragma clang diagnostic pop
  8731. #endif
  8732. #ifdef __clang__
  8733. #pragma clang diagnostic push
  8734. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8735. #pragma clang diagnostic ignored "-Wunused-variable"
  8736. #endif
  8737. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Utilities_SelectBucketIndex_m9B3AC5D1921CE4B602233DBCF6CC49537CB8EE2E (int32_t ___0_bufferSize, const RuntimeMethod* method)
  8738. {
  8739. uint32_t V_0 = 0;
  8740. int32_t V_1 = 0;
  8741. {
  8742. int32_t L_0 = ___0_bufferSize;
  8743. V_0 = ((int32_t)((uint32_t)((int32_t)il2cpp_codegen_subtract(L_0, 1))>>4));
  8744. V_1 = 0;
  8745. uint32_t L_1 = V_0;
  8746. if ((!(((uint32_t)L_1) > ((uint32_t)((int32_t)65535)))))
  8747. {
  8748. goto IL_0018;
  8749. }
  8750. }
  8751. {
  8752. uint32_t L_2 = V_0;
  8753. V_0 = ((int32_t)((uint32_t)L_2>>((int32_t)16)));
  8754. V_1 = ((int32_t)16);
  8755. }
  8756. IL_0018:
  8757. {
  8758. uint32_t L_3 = V_0;
  8759. if ((!(((uint32_t)L_3) > ((uint32_t)((int32_t)255)))))
  8760. {
  8761. goto IL_0028;
  8762. }
  8763. }
  8764. {
  8765. uint32_t L_4 = V_0;
  8766. V_0 = ((int32_t)((uint32_t)L_4>>8));
  8767. int32_t L_5 = V_1;
  8768. V_1 = ((int32_t)il2cpp_codegen_add(L_5, 8));
  8769. }
  8770. IL_0028:
  8771. {
  8772. uint32_t L_6 = V_0;
  8773. if ((!(((uint32_t)L_6) > ((uint32_t)((int32_t)15)))))
  8774. {
  8775. goto IL_0035;
  8776. }
  8777. }
  8778. {
  8779. uint32_t L_7 = V_0;
  8780. V_0 = ((int32_t)((uint32_t)L_7>>4));
  8781. int32_t L_8 = V_1;
  8782. V_1 = ((int32_t)il2cpp_codegen_add(L_8, 4));
  8783. }
  8784. IL_0035:
  8785. {
  8786. uint32_t L_9 = V_0;
  8787. if ((!(((uint32_t)L_9) > ((uint32_t)3))))
  8788. {
  8789. goto IL_0041;
  8790. }
  8791. }
  8792. {
  8793. uint32_t L_10 = V_0;
  8794. V_0 = ((int32_t)((uint32_t)L_10>>2));
  8795. int32_t L_11 = V_1;
  8796. V_1 = ((int32_t)il2cpp_codegen_add(L_11, 2));
  8797. }
  8798. IL_0041:
  8799. {
  8800. uint32_t L_12 = V_0;
  8801. if ((!(((uint32_t)L_12) > ((uint32_t)1))))
  8802. {
  8803. goto IL_004d;
  8804. }
  8805. }
  8806. {
  8807. uint32_t L_13 = V_0;
  8808. V_0 = ((int32_t)((uint32_t)L_13>>1));
  8809. int32_t L_14 = V_1;
  8810. V_1 = ((int32_t)il2cpp_codegen_add(L_14, 1));
  8811. }
  8812. IL_004d:
  8813. {
  8814. int32_t L_15 = V_1;
  8815. uint32_t L_16 = V_0;
  8816. return ((int32_t)il2cpp_codegen_add(L_15, (int32_t)L_16));
  8817. }
  8818. }
  8819. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Utilities_GetMaxSizeForBucket_mEC1D6B6E8946CCDC2CC12176874A9DE8A0EA5E96 (int32_t ___0_binIndex, const RuntimeMethod* method)
  8820. {
  8821. {
  8822. int32_t L_0 = ___0_binIndex;
  8823. return ((int32_t)(((int32_t)16)<<((int32_t)(L_0&((int32_t)31)))));
  8824. }
  8825. }
  8826. #ifdef __clang__
  8827. #pragma clang diagnostic pop
  8828. #endif
  8829. #ifdef __clang__
  8830. #pragma clang diagnostic push
  8831. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8832. #pragma clang diagnostic ignored "-Wunused-variable"
  8833. #endif
  8834. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t BinaryPrimitives_ReverseEndianness_mF7B5C36D507C0D85537E18A1141554A99093BD78 (int32_t ___0_value, const RuntimeMethod* method)
  8835. {
  8836. {
  8837. int32_t L_0 = ___0_value;
  8838. uint32_t L_1;
  8839. L_1 = BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline(L_0, NULL);
  8840. return L_1;
  8841. }
  8842. }
  8843. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t BinaryPrimitives_ReverseEndianness_mCD5293727A7525EE7AD81584DBBBE43478F40A8D (int64_t ___0_value, const RuntimeMethod* method)
  8844. {
  8845. {
  8846. int64_t L_0 = ___0_value;
  8847. uint64_t L_1;
  8848. L_1 = BinaryPrimitives_ReverseEndianness_mA698702D91EF4E47FF6F682E4B48F173FF376BDF_inline(L_0, NULL);
  8849. return L_1;
  8850. }
  8851. }
  8852. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t BinaryPrimitives_ReverseEndianness_mDBF226C2D52CAFF6DE538F8245444B5CF87A02D0 (uint16_t ___0_value, const RuntimeMethod* method)
  8853. {
  8854. {
  8855. uint16_t L_0 = ___0_value;
  8856. uint16_t L_1 = ___0_value;
  8857. return (uint16_t)((int32_t)(uint16_t)((int32_t)il2cpp_codegen_add(((int32_t)((int32_t)L_0>>8)), ((int32_t)((int32_t)L_1<<8)))));
  8858. }
  8859. }
  8860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF (uint32_t ___0_value, const RuntimeMethod* method)
  8861. {
  8862. uint32_t V_0 = 0;
  8863. uint32_t V_1 = 0;
  8864. {
  8865. uint32_t L_0 = ___0_value;
  8866. V_0 = ((int32_t)((int32_t)L_0&((int32_t)16711935)));
  8867. uint32_t L_1 = ___0_value;
  8868. V_1 = ((int32_t)((int32_t)L_1&((int32_t)-16711936)));
  8869. uint32_t L_2 = V_0;
  8870. uint32_t L_3 = V_0;
  8871. uint32_t L_4 = V_1;
  8872. uint32_t L_5 = V_1;
  8873. return ((int32_t)il2cpp_codegen_add(((int32_t)(((int32_t)((uint32_t)L_2>>8))|((int32_t)((int32_t)L_3<<((int32_t)24))))), ((int32_t)(((int32_t)((int32_t)L_4<<8))|((int32_t)((uint32_t)L_5>>((int32_t)24)))))));
  8874. }
  8875. }
  8876. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t BinaryPrimitives_ReverseEndianness_mA698702D91EF4E47FF6F682E4B48F173FF376BDF (uint64_t ___0_value, const RuntimeMethod* method)
  8877. {
  8878. {
  8879. uint64_t L_0 = ___0_value;
  8880. uint32_t L_1;
  8881. L_1 = BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline(((int32_t)(uint32_t)L_0), NULL);
  8882. uint64_t L_2 = ___0_value;
  8883. uint32_t L_3;
  8884. L_3 = BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline(((int32_t)(uint32_t)((int64_t)((uint64_t)L_2>>((int32_t)32)))), NULL);
  8885. return ((int64_t)il2cpp_codegen_add(((int64_t)(((int64_t)(uint64_t)L_1)<<((int32_t)32))), ((int64_t)(uint64_t)L_3)));
  8886. }
  8887. }
  8888. #ifdef __clang__
  8889. #pragma clang diagnostic pop
  8890. #endif
  8891. #ifdef __clang__
  8892. #pragma clang diagnostic push
  8893. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8894. #pragma clang diagnostic ignored "-Wunused-variable"
  8895. #endif
  8896. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FormattingHelpers_CountDigits_mC01C8C5301C555C927118C5FAA3DCFC7D542487F (uint64_t ___0_value, const RuntimeMethod* method)
  8897. {
  8898. int32_t V_0 = 0;
  8899. uint32_t V_1 = 0;
  8900. {
  8901. V_0 = 1;
  8902. uint64_t L_0 = ___0_value;
  8903. if ((!(((uint64_t)L_0) >= ((uint64_t)((int64_t)((int32_t)10000000))))))
  8904. {
  8905. goto IL_003b;
  8906. }
  8907. }
  8908. {
  8909. uint64_t L_1 = ___0_value;
  8910. if ((!(((uint64_t)L_1) >= ((uint64_t)((int64_t)100000000000000LL)))))
  8911. {
  8912. goto IL_002b;
  8913. }
  8914. }
  8915. {
  8916. uint64_t L_2 = ___0_value;
  8917. V_1 = ((int32_t)(uint32_t)((int64_t)((uint64_t)(int64_t)L_2/(uint64_t)(int64_t)((int64_t)100000000000000LL))));
  8918. int32_t L_3 = V_0;
  8919. V_0 = ((int32_t)il2cpp_codegen_add(L_3, ((int32_t)14)));
  8920. goto IL_003e;
  8921. }
  8922. IL_002b:
  8923. {
  8924. uint64_t L_4 = ___0_value;
  8925. V_1 = ((int32_t)(uint32_t)((int64_t)((uint64_t)(int64_t)L_4/(uint64_t)(int64_t)((int64_t)((int32_t)10000000)))));
  8926. int32_t L_5 = V_0;
  8927. V_0 = ((int32_t)il2cpp_codegen_add(L_5, 7));
  8928. goto IL_003e;
  8929. }
  8930. IL_003b:
  8931. {
  8932. uint64_t L_6 = ___0_value;
  8933. V_1 = ((int32_t)(uint32_t)L_6);
  8934. }
  8935. IL_003e:
  8936. {
  8937. uint32_t L_7 = V_1;
  8938. if ((!(((uint32_t)L_7) >= ((uint32_t)((int32_t)10)))))
  8939. {
  8940. goto IL_008a;
  8941. }
  8942. }
  8943. {
  8944. uint32_t L_8 = V_1;
  8945. if ((!(((uint32_t)L_8) < ((uint32_t)((int32_t)100)))))
  8946. {
  8947. goto IL_004e;
  8948. }
  8949. }
  8950. {
  8951. int32_t L_9 = V_0;
  8952. V_0 = ((int32_t)il2cpp_codegen_add(L_9, 1));
  8953. goto IL_008a;
  8954. }
  8955. IL_004e:
  8956. {
  8957. uint32_t L_10 = V_1;
  8958. if ((!(((uint32_t)L_10) < ((uint32_t)((int32_t)1000)))))
  8959. {
  8960. goto IL_005c;
  8961. }
  8962. }
  8963. {
  8964. int32_t L_11 = V_0;
  8965. V_0 = ((int32_t)il2cpp_codegen_add(L_11, 2));
  8966. goto IL_008a;
  8967. }
  8968. IL_005c:
  8969. {
  8970. uint32_t L_12 = V_1;
  8971. if ((!(((uint32_t)L_12) < ((uint32_t)((int32_t)10000)))))
  8972. {
  8973. goto IL_006a;
  8974. }
  8975. }
  8976. {
  8977. int32_t L_13 = V_0;
  8978. V_0 = ((int32_t)il2cpp_codegen_add(L_13, 3));
  8979. goto IL_008a;
  8980. }
  8981. IL_006a:
  8982. {
  8983. uint32_t L_14 = V_1;
  8984. if ((!(((uint32_t)L_14) < ((uint32_t)((int32_t)100000)))))
  8985. {
  8986. goto IL_0078;
  8987. }
  8988. }
  8989. {
  8990. int32_t L_15 = V_0;
  8991. V_0 = ((int32_t)il2cpp_codegen_add(L_15, 4));
  8992. goto IL_008a;
  8993. }
  8994. IL_0078:
  8995. {
  8996. uint32_t L_16 = V_1;
  8997. if ((!(((uint32_t)L_16) < ((uint32_t)((int32_t)1000000)))))
  8998. {
  8999. goto IL_0086;
  9000. }
  9001. }
  9002. {
  9003. int32_t L_17 = V_0;
  9004. V_0 = ((int32_t)il2cpp_codegen_add(L_17, 5));
  9005. goto IL_008a;
  9006. }
  9007. IL_0086:
  9008. {
  9009. int32_t L_18 = V_0;
  9010. V_0 = ((int32_t)il2cpp_codegen_add(L_18, 6));
  9011. }
  9012. IL_008a:
  9013. {
  9014. int32_t L_19 = V_0;
  9015. return L_19;
  9016. }
  9017. }
  9018. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FormattingHelpers_CountDigits_mE01337E47EFAB38CB85A419CECA05B3535330A30 (uint32_t ___0_value, const RuntimeMethod* method)
  9019. {
  9020. int32_t V_0 = 0;
  9021. {
  9022. V_0 = 1;
  9023. uint32_t L_0 = ___0_value;
  9024. if ((!(((uint32_t)L_0) >= ((uint32_t)((int32_t)100000)))))
  9025. {
  9026. goto IL_0017;
  9027. }
  9028. }
  9029. {
  9030. uint32_t L_1 = ___0_value;
  9031. ___0_value = ((int32_t)((uint32_t)(int32_t)L_1/(uint32_t)(int32_t)((int32_t)100000)));
  9032. int32_t L_2 = V_0;
  9033. V_0 = ((int32_t)il2cpp_codegen_add(L_2, 5));
  9034. }
  9035. IL_0017:
  9036. {
  9037. uint32_t L_3 = ___0_value;
  9038. if ((!(((uint32_t)L_3) >= ((uint32_t)((int32_t)10)))))
  9039. {
  9040. goto IL_0047;
  9041. }
  9042. }
  9043. {
  9044. uint32_t L_4 = ___0_value;
  9045. if ((!(((uint32_t)L_4) < ((uint32_t)((int32_t)100)))))
  9046. {
  9047. goto IL_0027;
  9048. }
  9049. }
  9050. {
  9051. int32_t L_5 = V_0;
  9052. V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  9053. goto IL_0047;
  9054. }
  9055. IL_0027:
  9056. {
  9057. uint32_t L_6 = ___0_value;
  9058. if ((!(((uint32_t)L_6) < ((uint32_t)((int32_t)1000)))))
  9059. {
  9060. goto IL_0035;
  9061. }
  9062. }
  9063. {
  9064. int32_t L_7 = V_0;
  9065. V_0 = ((int32_t)il2cpp_codegen_add(L_7, 2));
  9066. goto IL_0047;
  9067. }
  9068. IL_0035:
  9069. {
  9070. uint32_t L_8 = ___0_value;
  9071. if ((!(((uint32_t)L_8) < ((uint32_t)((int32_t)10000)))))
  9072. {
  9073. goto IL_0043;
  9074. }
  9075. }
  9076. {
  9077. int32_t L_9 = V_0;
  9078. V_0 = ((int32_t)il2cpp_codegen_add(L_9, 3));
  9079. goto IL_0047;
  9080. }
  9081. IL_0043:
  9082. {
  9083. int32_t L_10 = V_0;
  9084. V_0 = ((int32_t)il2cpp_codegen_add(L_10, 4));
  9085. }
  9086. IL_0047:
  9087. {
  9088. int32_t L_11 = V_0;
  9089. return L_11;
  9090. }
  9091. }
  9092. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FormattingHelpers_CountHexDigits_m2A0168ACE924C7DFBCFFD60AF8FEA1C6CC0420B7 (uint64_t ___0_value, const RuntimeMethod* method)
  9093. {
  9094. int32_t V_0 = 0;
  9095. {
  9096. V_0 = 1;
  9097. uint64_t L_0 = ___0_value;
  9098. if ((!(((uint64_t)L_0) > ((uint64_t)((int64_t)(uint64_t)((uint32_t)(-1)))))))
  9099. {
  9100. goto IL_0011;
  9101. }
  9102. }
  9103. {
  9104. int32_t L_1 = V_0;
  9105. V_0 = ((int32_t)il2cpp_codegen_add(L_1, 8));
  9106. uint64_t L_2 = ___0_value;
  9107. ___0_value = ((int64_t)((uint64_t)L_2>>((int32_t)32)));
  9108. }
  9109. IL_0011:
  9110. {
  9111. uint64_t L_3 = ___0_value;
  9112. if ((!(((uint64_t)L_3) > ((uint64_t)((int64_t)((int32_t)65535))))))
  9113. {
  9114. goto IL_0024;
  9115. }
  9116. }
  9117. {
  9118. int32_t L_4 = V_0;
  9119. V_0 = ((int32_t)il2cpp_codegen_add(L_4, 4));
  9120. uint64_t L_5 = ___0_value;
  9121. ___0_value = ((int64_t)((uint64_t)L_5>>((int32_t)16)));
  9122. }
  9123. IL_0024:
  9124. {
  9125. uint64_t L_6 = ___0_value;
  9126. if ((!(((uint64_t)L_6) > ((uint64_t)((int64_t)((int32_t)255))))))
  9127. {
  9128. goto IL_0036;
  9129. }
  9130. }
  9131. {
  9132. int32_t L_7 = V_0;
  9133. V_0 = ((int32_t)il2cpp_codegen_add(L_7, 2));
  9134. uint64_t L_8 = ___0_value;
  9135. ___0_value = ((int64_t)((uint64_t)L_8>>8));
  9136. }
  9137. IL_0036:
  9138. {
  9139. uint64_t L_9 = ___0_value;
  9140. if ((!(((uint64_t)L_9) > ((uint64_t)((int64_t)((int32_t)15))))))
  9141. {
  9142. goto IL_0040;
  9143. }
  9144. }
  9145. {
  9146. int32_t L_10 = V_0;
  9147. V_0 = ((int32_t)il2cpp_codegen_add(L_10, 1));
  9148. }
  9149. IL_0040:
  9150. {
  9151. int32_t L_11 = V_0;
  9152. return L_11;
  9153. }
  9154. }
  9155. #ifdef __clang__
  9156. #pragma clang diagnostic pop
  9157. #endif
  9158. #ifdef __clang__
  9159. #pragma clang diagnostic push
  9160. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9161. #pragma clang diagnostic ignored "-Wunused-variable"
  9162. #endif
  9163. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CPrivateImplementationDetailsU3E_ComputeStringHash_m52370B9D7DEAF095B34C6AE27338067A3A1CF886 (String_t* ___0_s, const RuntimeMethod* method)
  9164. {
  9165. uint32_t V_0 = 0;
  9166. int32_t V_1 = 0;
  9167. {
  9168. String_t* L_0 = ___0_s;
  9169. if (!L_0)
  9170. {
  9171. goto IL_002a;
  9172. }
  9173. }
  9174. {
  9175. V_0 = ((int32_t)-2128831035);
  9176. V_1 = 0;
  9177. goto IL_0021;
  9178. }
  9179. IL_000d:
  9180. {
  9181. String_t* L_1 = ___0_s;
  9182. int32_t L_2 = V_1;
  9183. NullCheck(L_1);
  9184. Il2CppChar L_3;
  9185. L_3 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_1, L_2, NULL);
  9186. uint32_t L_4 = V_0;
  9187. V_0 = ((int32_t)il2cpp_codegen_multiply(((int32_t)((int32_t)L_3^(int32_t)L_4)), ((int32_t)16777619)));
  9188. int32_t L_5 = V_1;
  9189. V_1 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  9190. }
  9191. IL_0021:
  9192. {
  9193. int32_t L_6 = V_1;
  9194. String_t* L_7 = ___0_s;
  9195. NullCheck(L_7);
  9196. int32_t L_8;
  9197. L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
  9198. if ((((int32_t)L_6) < ((int32_t)L_8)))
  9199. {
  9200. goto IL_000d;
  9201. }
  9202. }
  9203. IL_002a:
  9204. {
  9205. uint32_t L_9 = V_0;
  9206. return L_9;
  9207. }
  9208. }
  9209. #ifdef __clang__
  9210. #pragma clang diagnostic pop
  9211. #endif
  9212. #ifdef __clang__
  9213. #pragma clang diagnostic push
  9214. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9215. #pragma clang diagnostic ignored "-Wunused-variable"
  9216. #endif
  9217. #ifdef __clang__
  9218. #pragma clang diagnostic pop
  9219. #endif
  9220. #ifdef __clang__
  9221. #pragma clang diagnostic push
  9222. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9223. #pragma clang diagnostic ignored "-Wunused-variable"
  9224. #endif
  9225. #ifdef __clang__
  9226. #pragma clang diagnostic pop
  9227. #endif
  9228. #ifdef __clang__
  9229. #pragma clang diagnostic push
  9230. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9231. #pragma clang diagnostic ignored "-Wunused-variable"
  9232. #endif
  9233. #ifdef __clang__
  9234. #pragma clang diagnostic pop
  9235. #endif
  9236. #ifdef __clang__
  9237. #pragma clang diagnostic push
  9238. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9239. #pragma clang diagnostic ignored "-Wunused-variable"
  9240. #endif
  9241. #ifdef __clang__
  9242. #pragma clang diagnostic pop
  9243. #endif
  9244. #ifdef __clang__
  9245. #pragma clang diagnostic push
  9246. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9247. #pragma clang diagnostic ignored "-Wunused-variable"
  9248. #endif
  9249. #ifdef __clang__
  9250. #pragma clang diagnostic pop
  9251. #endif
  9252. #ifdef __clang__
  9253. #pragma clang diagnostic push
  9254. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9255. #pragma clang diagnostic ignored "-Wunused-variable"
  9256. #endif
  9257. #ifdef __clang__
  9258. #pragma clang diagnostic pop
  9259. #endif
  9260. #ifdef __clang__
  9261. #pragma clang diagnostic push
  9262. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9263. #pragma clang diagnostic ignored "-Wunused-variable"
  9264. #endif
  9265. #ifdef __clang__
  9266. #pragma clang diagnostic pop
  9267. #endif
  9268. #ifdef __clang__
  9269. #pragma clang diagnostic push
  9270. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9271. #pragma clang diagnostic ignored "-Wunused-variable"
  9272. #endif
  9273. #ifdef __clang__
  9274. #pragma clang diagnostic pop
  9275. #endif
  9276. #ifdef __clang__
  9277. #pragma clang diagnostic push
  9278. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9279. #pragma clang diagnostic ignored "-Wunused-variable"
  9280. #endif
  9281. #ifdef __clang__
  9282. #pragma clang diagnostic pop
  9283. #endif
  9284. #ifdef __clang__
  9285. #pragma clang diagnostic push
  9286. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9287. #pragma clang diagnostic ignored "-Wunused-variable"
  9288. #endif
  9289. #ifdef __clang__
  9290. #pragma clang diagnostic pop
  9291. #endif
  9292. #ifdef __clang__
  9293. #pragma clang diagnostic push
  9294. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9295. #pragma clang diagnostic ignored "-Wunused-variable"
  9296. #endif
  9297. #ifdef __clang__
  9298. #pragma clang diagnostic pop
  9299. #endif
  9300. #ifdef __clang__
  9301. #pragma clang diagnostic push
  9302. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9303. #pragma clang diagnostic ignored "-Wunused-variable"
  9304. #endif
  9305. #ifdef __clang__
  9306. #pragma clang diagnostic pop
  9307. #endif
  9308. #ifdef __clang__
  9309. #pragma clang diagnostic push
  9310. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9311. #pragma clang diagnostic ignored "-Wunused-variable"
  9312. #endif
  9313. #ifdef __clang__
  9314. #pragma clang diagnostic pop
  9315. #endif
  9316. #ifdef __clang__
  9317. #pragma clang diagnostic push
  9318. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9319. #pragma clang diagnostic ignored "-Wunused-variable"
  9320. #endif
  9321. #ifdef __clang__
  9322. #pragma clang diagnostic pop
  9323. #endif
  9324. #ifdef __clang__
  9325. #pragma clang diagnostic push
  9326. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9327. #pragma clang diagnostic ignored "-Wunused-variable"
  9328. #endif
  9329. #ifdef __clang__
  9330. #pragma clang diagnostic pop
  9331. #endif
  9332. #ifdef __clang__
  9333. #pragma clang diagnostic push
  9334. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9335. #pragma clang diagnostic ignored "-Wunused-variable"
  9336. #endif
  9337. #ifdef __clang__
  9338. #pragma clang diagnostic pop
  9339. #endif
  9340. #ifdef __clang__
  9341. #pragma clang diagnostic push
  9342. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9343. #pragma clang diagnostic ignored "-Wunused-variable"
  9344. #endif
  9345. #ifdef __clang__
  9346. #pragma clang diagnostic pop
  9347. #endif
  9348. #ifdef __clang__
  9349. #pragma clang diagnostic push
  9350. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9351. #pragma clang diagnostic ignored "-Wunused-variable"
  9352. #endif
  9353. #ifdef __clang__
  9354. #pragma clang diagnostic pop
  9355. #endif
  9356. #ifdef __clang__
  9357. #pragma clang diagnostic push
  9358. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9359. #pragma clang diagnostic ignored "-Wunused-variable"
  9360. #endif
  9361. #ifdef __clang__
  9362. #pragma clang diagnostic pop
  9363. #endif
  9364. #ifdef __clang__
  9365. #pragma clang diagnostic push
  9366. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9367. #pragma clang diagnostic ignored "-Wunused-variable"
  9368. #endif
  9369. #ifdef __clang__
  9370. #pragma clang diagnostic pop
  9371. #endif
  9372. #ifdef __clang__
  9373. #pragma clang diagnostic push
  9374. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9375. #pragma clang diagnostic ignored "-Wunused-variable"
  9376. #endif
  9377. #ifdef __clang__
  9378. #pragma clang diagnostic pop
  9379. #endif
  9380. #ifdef __clang__
  9381. #pragma clang diagnostic push
  9382. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9383. #pragma clang diagnostic ignored "-Wunused-variable"
  9384. #endif
  9385. #ifdef __clang__
  9386. #pragma clang diagnostic pop
  9387. #endif
  9388. #ifdef __clang__
  9389. #pragma clang diagnostic push
  9390. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9391. #pragma clang diagnostic ignored "-Wunused-variable"
  9392. #endif
  9393. #ifdef __clang__
  9394. #pragma clang diagnostic pop
  9395. #endif
  9396. #ifdef __clang__
  9397. #pragma clang diagnostic push
  9398. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9399. #pragma clang diagnostic ignored "-Wunused-variable"
  9400. #endif
  9401. #ifdef __clang__
  9402. #pragma clang diagnostic pop
  9403. #endif
  9404. #ifdef __clang__
  9405. #pragma clang diagnostic push
  9406. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9407. #pragma clang diagnostic ignored "-Wunused-variable"
  9408. #endif
  9409. #ifdef __clang__
  9410. #pragma clang diagnostic pop
  9411. #endif
  9412. #ifdef __clang__
  9413. #pragma clang diagnostic push
  9414. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9415. #pragma clang diagnostic ignored "-Wunused-variable"
  9416. #endif
  9417. #ifdef __clang__
  9418. #pragma clang diagnostic pop
  9419. #endif
  9420. #ifdef __clang__
  9421. #pragma clang diagnostic push
  9422. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9423. #pragma clang diagnostic ignored "-Wunused-variable"
  9424. #endif
  9425. #ifdef __clang__
  9426. #pragma clang diagnostic pop
  9427. #endif
  9428. #ifdef __clang__
  9429. #pragma clang diagnostic push
  9430. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9431. #pragma clang diagnostic ignored "-Wunused-variable"
  9432. #endif
  9433. #ifdef __clang__
  9434. #pragma clang diagnostic pop
  9435. #endif
  9436. #ifdef __clang__
  9437. #pragma clang diagnostic push
  9438. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9439. #pragma clang diagnostic ignored "-Wunused-variable"
  9440. #endif
  9441. #ifdef __clang__
  9442. #pragma clang diagnostic pop
  9443. #endif
  9444. #ifdef __clang__
  9445. #pragma clang diagnostic push
  9446. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9447. #pragma clang diagnostic ignored "-Wunused-variable"
  9448. #endif
  9449. #ifdef __clang__
  9450. #pragma clang diagnostic pop
  9451. #endif
  9452. #ifdef __clang__
  9453. #pragma clang diagnostic push
  9454. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9455. #pragma clang diagnostic ignored "-Wunused-variable"
  9456. #endif
  9457. #ifdef __clang__
  9458. #pragma clang diagnostic pop
  9459. #endif
  9460. #ifdef __clang__
  9461. #pragma clang diagnostic push
  9462. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9463. #pragma clang diagnostic ignored "-Wunused-variable"
  9464. #endif
  9465. #ifdef __clang__
  9466. #pragma clang diagnostic pop
  9467. #endif
  9468. #ifdef __clang__
  9469. #pragma clang diagnostic push
  9470. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9471. #pragma clang diagnostic ignored "-Wunused-variable"
  9472. #endif
  9473. #ifdef __clang__
  9474. #pragma clang diagnostic pop
  9475. #endif
  9476. #ifdef __clang__
  9477. #pragma clang diagnostic push
  9478. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9479. #pragma clang diagnostic ignored "-Wunused-variable"
  9480. #endif
  9481. #ifdef __clang__
  9482. #pragma clang diagnostic pop
  9483. #endif
  9484. #ifdef __clang__
  9485. #pragma clang diagnostic push
  9486. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9487. #pragma clang diagnostic ignored "-Wunused-variable"
  9488. #endif
  9489. #ifdef __clang__
  9490. #pragma clang diagnostic pop
  9491. #endif
  9492. #ifdef __clang__
  9493. #pragma clang diagnostic push
  9494. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9495. #pragma clang diagnostic ignored "-Wunused-variable"
  9496. #endif
  9497. #ifdef __clang__
  9498. #pragma clang diagnostic pop
  9499. #endif
  9500. #ifdef __clang__
  9501. #pragma clang diagnostic push
  9502. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9503. #pragma clang diagnostic ignored "-Wunused-variable"
  9504. #endif
  9505. #ifdef __clang__
  9506. #pragma clang diagnostic pop
  9507. #endif
  9508. #ifdef __clang__
  9509. #pragma clang diagnostic push
  9510. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9511. #pragma clang diagnostic ignored "-Wunused-variable"
  9512. #endif
  9513. #ifdef __clang__
  9514. #pragma clang diagnostic pop
  9515. #endif
  9516. #ifdef __clang__
  9517. #pragma clang diagnostic push
  9518. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9519. #pragma clang diagnostic ignored "-Wunused-variable"
  9520. #endif
  9521. #ifdef __clang__
  9522. #pragma clang diagnostic pop
  9523. #endif
  9524. #ifdef __clang__
  9525. #pragma clang diagnostic push
  9526. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9527. #pragma clang diagnostic ignored "-Wunused-variable"
  9528. #endif
  9529. #ifdef __clang__
  9530. #pragma clang diagnostic pop
  9531. #endif
  9532. #ifdef __clang__
  9533. #pragma clang diagnostic push
  9534. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9535. #pragma clang diagnostic ignored "-Wunused-variable"
  9536. #endif
  9537. #ifdef __clang__
  9538. #pragma clang diagnostic pop
  9539. #endif
  9540. #ifdef __clang__
  9541. #pragma clang diagnostic push
  9542. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9543. #pragma clang diagnostic ignored "-Wunused-variable"
  9544. #endif
  9545. #ifdef __clang__
  9546. #pragma clang diagnostic pop
  9547. #endif
  9548. #ifdef __clang__
  9549. #pragma clang diagnostic push
  9550. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9551. #pragma clang diagnostic ignored "-Wunused-variable"
  9552. #endif
  9553. #ifdef __clang__
  9554. #pragma clang diagnostic pop
  9555. #endif
  9556. #ifdef __clang__
  9557. #pragma clang diagnostic push
  9558. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9559. #pragma clang diagnostic ignored "-Wunused-variable"
  9560. #endif
  9561. #ifdef __clang__
  9562. #pragma clang diagnostic pop
  9563. #endif
  9564. #ifdef __clang__
  9565. #pragma clang diagnostic push
  9566. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9567. #pragma clang diagnostic ignored "-Wunused-variable"
  9568. #endif
  9569. #ifdef __clang__
  9570. #pragma clang diagnostic pop
  9571. #endif
  9572. #ifdef __clang__
  9573. #pragma clang diagnostic push
  9574. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9575. #pragma clang diagnostic ignored "-Wunused-variable"
  9576. #endif
  9577. #ifdef __clang__
  9578. #pragma clang diagnostic pop
  9579. #endif
  9580. #ifdef __clang__
  9581. #pragma clang diagnostic push
  9582. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9583. #pragma clang diagnostic ignored "-Wunused-variable"
  9584. #endif
  9585. #ifdef __clang__
  9586. #pragma clang diagnostic pop
  9587. #endif
  9588. #ifdef __clang__
  9589. #pragma clang diagnostic push
  9590. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9591. #pragma clang diagnostic ignored "-Wunused-variable"
  9592. #endif
  9593. #ifdef __clang__
  9594. #pragma clang diagnostic pop
  9595. #endif
  9596. #ifdef __clang__
  9597. #pragma clang diagnostic push
  9598. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9599. #pragma clang diagnostic ignored "-Wunused-variable"
  9600. #endif
  9601. #ifdef __clang__
  9602. #pragma clang diagnostic pop
  9603. #endif
  9604. #ifdef __clang__
  9605. #pragma clang diagnostic push
  9606. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9607. #pragma clang diagnostic ignored "-Wunused-variable"
  9608. #endif
  9609. #ifdef __clang__
  9610. #pragma clang diagnostic pop
  9611. #endif
  9612. #ifdef __clang__
  9613. #pragma clang diagnostic push
  9614. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9615. #pragma clang diagnostic ignored "-Wunused-variable"
  9616. #endif
  9617. #ifdef __clang__
  9618. #pragma clang diagnostic pop
  9619. #endif
  9620. #ifdef __clang__
  9621. #pragma clang diagnostic push
  9622. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9623. #pragma clang diagnostic ignored "-Wunused-variable"
  9624. #endif
  9625. #ifdef __clang__
  9626. #pragma clang diagnostic pop
  9627. #endif
  9628. #ifdef __clang__
  9629. #pragma clang diagnostic push
  9630. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9631. #pragma clang diagnostic ignored "-Wunused-variable"
  9632. #endif
  9633. #ifdef __clang__
  9634. #pragma clang diagnostic pop
  9635. #endif
  9636. #ifdef __clang__
  9637. #pragma clang diagnostic push
  9638. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9639. #pragma clang diagnostic ignored "-Wunused-variable"
  9640. #endif
  9641. #ifdef __clang__
  9642. #pragma clang diagnostic pop
  9643. #endif
  9644. #ifdef __clang__
  9645. #pragma clang diagnostic push
  9646. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9647. #pragma clang diagnostic ignored "-Wunused-variable"
  9648. #endif
  9649. #ifdef __clang__
  9650. #pragma clang diagnostic pop
  9651. #endif
  9652. #ifdef __clang__
  9653. #pragma clang diagnostic push
  9654. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9655. #pragma clang diagnostic ignored "-Wunused-variable"
  9656. #endif
  9657. #ifdef __clang__
  9658. #pragma clang diagnostic pop
  9659. #endif
  9660. #ifdef __clang__
  9661. #pragma clang diagnostic push
  9662. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9663. #pragma clang diagnostic ignored "-Wunused-variable"
  9664. #endif
  9665. #ifdef __clang__
  9666. #pragma clang diagnostic pop
  9667. #endif
  9668. #ifdef __clang__
  9669. #pragma clang diagnostic push
  9670. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9671. #pragma clang diagnostic ignored "-Wunused-variable"
  9672. #endif
  9673. #ifdef __clang__
  9674. #pragma clang diagnostic pop
  9675. #endif
  9676. #ifdef __clang__
  9677. #pragma clang diagnostic push
  9678. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  9679. #pragma clang diagnostic ignored "-Wunused-variable"
  9680. #endif
  9681. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowStub_ThrowNotSupportedException_m02C318CA8F5812C025CBEDEA07A5DE5D0FDBB25F (const RuntimeMethod* method)
  9682. {
  9683. {
  9684. PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A* L_0 = (PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&PlatformNotSupportedException_tD2BD7EB9278518AA5FE8AE75AD5D0D4298A4631A_il2cpp_TypeInfo_var)));
  9685. PlatformNotSupportedException__ctor_mD5DBE8E9A6FF4B75EF02671029C6D67A51EAFBD1(L_0, NULL);
  9686. IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ThrowStub_ThrowNotSupportedException_m02C318CA8F5812C025CBEDEA07A5DE5D0FDBB25F_RuntimeMethod_var)));
  9687. }
  9688. }
  9689. #ifdef __clang__
  9690. #pragma clang diagnostic pop
  9691. #endif
  9692. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_Comparer_m39BC17C080DFDF285593D156478FFECCB1928F36_inline (CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* __this, const RuntimeMethod* method)
  9693. {
  9694. {
  9695. RuntimeObject* L_0 = __this->____comparer;
  9696. return L_0;
  9697. }
  9698. }
  9699. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CompatibleComparer_get_HashCodeProvider_mE25935574860D4D71106E4BB4F689C4CCB8FF599_inline (CompatibleComparer_t6844DCD03A1B348073158E4AC799B9E1C6022465* __this, const RuntimeMethod* method)
  9700. {
  9701. {
  9702. RuntimeObject* L_0 = __this->____hcp;
  9703. return L_0;
  9704. }
  9705. }
  9706. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Exception_set_HResult_m010A171183E240EBF4F7611E924B533FAB2E471F_inline (Exception_t* __this, int32_t ___0_value, const RuntimeMethod* method)
  9707. {
  9708. {
  9709. int32_t L_0 = ___0_value;
  9710. __this->____HResult = L_0;
  9711. return;
  9712. }
  9713. }
  9714. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventData_set_Size_m4F0086F2CA3FFE1F1E0B57EF54F1324694BD094F_inline (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* __this, int32_t ___0_value, const RuntimeMethod* method)
  9715. {
  9716. {
  9717. int32_t L_0 = ___0_value;
  9718. __this->___U3CSizeU3Ek__BackingField = L_0;
  9719. return;
  9720. }
  9721. }
  9722. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventData_set_DataPointer_m77D62FE7997CE5DC1F29E7DCDFB3C413AEF93929_inline (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* __this, intptr_t ___0_value, const RuntimeMethod* method)
  9723. {
  9724. {
  9725. intptr_t L_0 = ___0_value;
  9726. __this->___U3CDataPointerU3Ek__BackingField = L_0;
  9727. return;
  9728. }
  9729. }
  9730. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventData_set_Reserved_m0FE18C01D6ECA5BA76B431305E944F6D437C4799_inline (EventData_tEB579D26516CF33445B84ADE75307FA8EAF6CA4D* __this, int32_t ___0_value, const RuntimeMethod* method)
  9731. {
  9732. {
  9733. int32_t L_0 = ___0_value;
  9734. __this->___U3CReservedU3Ek__BackingField = L_0;
  9735. return;
  9736. }
  9737. }
  9738. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void* MemoryHandle_get_Pointer_mB37B69B8014746F855683C47FF2E6EC46D656CA8_inline (MemoryHandle_t505785861D4FF84F850A3FF775BE6AE1833D2AFD* __this, const RuntimeMethod* method)
  9739. {
  9740. {
  9741. void* L_0 = __this->____pointer;
  9742. return L_0;
  9743. }
  9744. }
  9745. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint32_t BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline (uint32_t ___0_value, const RuntimeMethod* method)
  9746. {
  9747. uint32_t V_0 = 0;
  9748. uint32_t V_1 = 0;
  9749. {
  9750. uint32_t L_0 = ___0_value;
  9751. V_0 = ((int32_t)((int32_t)L_0&((int32_t)16711935)));
  9752. uint32_t L_1 = ___0_value;
  9753. V_1 = ((int32_t)((int32_t)L_1&((int32_t)-16711936)));
  9754. uint32_t L_2 = V_0;
  9755. uint32_t L_3 = V_0;
  9756. uint32_t L_4 = V_1;
  9757. uint32_t L_5 = V_1;
  9758. return ((int32_t)il2cpp_codegen_add(((int32_t)(((int32_t)((uint32_t)L_2>>8))|((int32_t)((int32_t)L_3<<((int32_t)24))))), ((int32_t)(((int32_t)((int32_t)L_4<<8))|((int32_t)((uint32_t)L_5>>((int32_t)24)))))));
  9759. }
  9760. }
  9761. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint64_t BinaryPrimitives_ReverseEndianness_mA698702D91EF4E47FF6F682E4B48F173FF376BDF_inline (uint64_t ___0_value, const RuntimeMethod* method)
  9762. {
  9763. {
  9764. uint64_t L_0 = ___0_value;
  9765. uint32_t L_1;
  9766. L_1 = BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline(((int32_t)(uint32_t)L_0), NULL);
  9767. uint64_t L_2 = ___0_value;
  9768. uint32_t L_3;
  9769. L_3 = BinaryPrimitives_ReverseEndianness_mCCA2099164ECA9672968898DD996A9F04B392FFF_inline(((int32_t)(uint32_t)((int64_t)((uint64_t)L_2>>((int32_t)32)))), NULL);
  9770. return ((int64_t)il2cpp_codegen_add(((int64_t)(((int64_t)(uint64_t)L_1)<<((int32_t)32))), ((int64_t)(uint64_t)L_3)));
  9771. }
  9772. }
  9773. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
  9774. {
  9775. {
  9776. int32_t L_0 = __this->____stringLength;
  9777. return L_0;
  9778. }
  9779. }
  9780. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* Array_Empty_TisRuntimeObject_mFB8A63D602BB6974D31E20300D9EB89C6FE7C278_gshared_inline (const RuntimeMethod* method)
  9781. {
  9782. il2cpp_rgctx_method_init(method);
  9783. {
  9784. il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
  9785. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ((EmptyArray_1_tDF0DD7256B115243AA6BD5558417387A734240EE_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___Value;
  9786. return L_0;
  9787. }
  9788. }