o0NetLib1.cpp 404 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. template <typename R>
  10. struct VirtualFuncInvoker0
  11. {
  12. typedef R (*Func)(void*, const RuntimeMethod*);
  13. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  14. {
  15. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  16. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  17. }
  18. };
  19. template <typename R, typename T1>
  20. struct VirtualFuncInvoker1
  21. {
  22. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  23. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  24. {
  25. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  26. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  27. }
  28. };
  29. template <typename R, typename T1, typename T2>
  30. struct VirtualFuncInvoker2
  31. {
  32. typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
  33. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
  34. {
  35. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  36. return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
  37. }
  38. };
  39. struct InterfaceActionInvoker0
  40. {
  41. typedef void (*Action)(void*, const RuntimeMethod*);
  42. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  43. {
  44. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  45. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  46. }
  47. };
  48. template <typename R>
  49. struct InterfaceFuncInvoker0
  50. {
  51. typedef R (*Func)(void*, const RuntimeMethod*);
  52. static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  53. {
  54. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  55. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  56. }
  57. };
  58. // System.Action`2<System.Object,System.Object>
  59. struct Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D;
  60. // System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>
  61. struct Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D;
  62. // System.Collections.Generic.Dictionary`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>
  63. struct Dictionary_2_t845F5CAD20752949FFE691610514A76F2C804FF0;
  64. // System.Collections.Generic.Dictionary`2<System.Object,System.Object>
  65. struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D;
  66. // System.Collections.Generic.Dictionary`2<System.Object,o0.Serialize/Member>
  67. struct Dictionary_2_t821DC9A6CC895EF5C4C66644F071280E109958F9;
  68. // System.Collections.Generic.Dictionary`2<System.String,System.Object>
  69. struct Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399;
  70. // System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>
  71. struct Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D;
  72. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>
  73. struct Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C;
  74. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>
  75. struct Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B;
  76. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>
  77. struct Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272;
  78. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Object,System.Object>>
  79. struct Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16;
  80. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>
  81. struct Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7;
  82. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<System.String,System.Type>[]>
  83. struct Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3;
  84. // System.Collections.Generic.Dictionary`2<System.Type,System.Type>
  85. struct Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506;
  86. // System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>
  87. struct Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018;
  88. // System.Func`2<System.Object,System.Object>
  89. struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436;
  90. // System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>
  91. struct Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E;
  92. // System.Func`3<System.Object,System.Object,System.Object>
  93. struct Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27;
  94. // System.Collections.Generic.HashSet`1<System.Reflection.MethodInfo>
  95. struct HashSet_1_t679B4139CA836662729154C22183F600BB74A890;
  96. // System.Collections.Generic.HashSet`1<System.Object>
  97. struct HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B;
  98. // System.Collections.Generic.IEnumerable`1<System.ValueTuple`2<Fractions.Fraction,System.Double>>
  99. struct IEnumerable_1_tE1C6BFD1F435825CF7AC0DBBBF2F2B5022F6EC56;
  100. // System.Collections.Generic.IEnumerable`1<System.Reflection.FieldInfo>
  101. struct IEnumerable_1_t0DF027D1C7415CBB03F663A5D5ACE52D29226059;
  102. // System.Collections.Generic.IEnumerable`1<System.Int32>
  103. struct IEnumerable_1_t60929E1AA80B46746F987B99A4EBD004FD72D370;
  104. // System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo>
  105. struct IEnumerable_1_tC1469845CEBD36D92E7FE77DA40BA86D0F5DD295;
  106. // System.Collections.Generic.IEnumerable`1<System.Object>
  107. struct IEnumerable_1_t52B1AC8D9E5E1ED28DF6C46A37C9A1B00B394F9D;
  108. // System.Collections.Generic.IEqualityComparer`1<System.Reflection.FieldInfo>
  109. struct IEqualityComparer_1_tD061A2D5327CC8A6689A69024DDF66EF4EABDF01;
  110. // System.Collections.Generic.IEqualityComparer`1<System.Reflection.MethodInfo>
  111. struct IEqualityComparer_1_tD41599604E7D2EEFDD1C9D964713638F0711E61C;
  112. // System.Collections.Generic.IEqualityComparer`1<System.String>
  113. struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050;
  114. // System.Collections.Generic.IEqualityComparer`1<System.Type>
  115. struct IEqualityComparer_1_t7EEC9B4006D6D425748908D52AA799197F29A165;
  116. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>
  117. struct KeyCollection_tAFDADF10871922696C3BF8160DFB8337AA54FAE6;
  118. // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Object>
  119. struct KeyCollection_t0043475CBB02FD67894529F3CAA818080A2F7A17;
  120. // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,o0.Serialize/Member>
  121. struct KeyCollection_t201BCB511E5AF6D2D5296660F273CC34254C5582;
  122. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>
  123. struct KeyCollection_t360A427D312A4610B882F5F9F31CD08935564591;
  124. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`2<System.Object,System.Object>>
  125. struct KeyCollection_t9269F58362BF18193A9C8E6F3E5159BDABC00AA1;
  126. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>
  127. struct KeyCollection_tF7AF7530FD000D4A42BACFC3E63713F7EADB1FCD;
  128. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Func`3<System.Object,System.Object,System.Object>>
  129. struct KeyCollection_tE4C0EA1C4E2E134202F5D5D25A7DC3302DC8BDBA;
  130. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>
  131. struct KeyCollection_t083D24521235D3333AF06D96C7F6AB5651783D43;
  132. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.ValueTuple`2<System.String,System.Type>[]>
  133. struct KeyCollection_t4E86E03C6418AA21534094BF61F390D9AAE5ADEE;
  134. // System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,System.Type>
  135. struct KeyCollection_tDF38AEDAEF9E7AA96C28D1C4CE0D70D2A9B51128;
  136. // System.Collections.Generic.List`1<System.Reflection.MemberInfo>
  137. struct List_1_t1E053584366104694FDDFF723CE187EAD7F857B0;
  138. // System.Collections.Generic.List`1<System.Object>
  139. struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
  140. // System.Collections.Generic.List`1<System.Type>
  141. struct List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7;
  142. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>
  143. struct ValueCollection_t0F2E93A4F2B662AB892D29506BBD4C250E11094E;
  144. // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Object>
  145. struct ValueCollection_tB942A1033B750DCF04FE948413982D120FC69A4E;
  146. // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,o0.Serialize/Member>
  147. struct ValueCollection_tFD72AD1CBD59562F0A8894E73038BE8AD7880CAB;
  148. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>
  149. struct ValueCollection_t1DE60E142B03771E1F72561BBD763BA89C7FA45D;
  150. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`2<System.Object,System.Object>>
  151. struct ValueCollection_tA2C6499BF73D89EFFA062E4120C8AB5BC8B7D3CE;
  152. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>
  153. struct ValueCollection_t6D3C373553CE5BB446CDF9C5E85936C24FA83FE4;
  154. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Func`3<System.Object,System.Object,System.Object>>
  155. struct ValueCollection_t2560F4D5E34C5AA1247A9CE81E8CE61FF31B2CF0;
  156. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>
  157. struct ValueCollection_t8C7E0AE83853071446E3D7DA9A2CFC6F760F3E3C;
  158. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.ValueTuple`2<System.String,System.Type>[]>
  159. struct ValueCollection_t16DD893982FFEC95E0B21070059092A56A8CF734;
  160. // System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,System.Type>
  161. struct ValueCollection_tDA4E60877743A4826E8F24D570DB900C34162342;
  162. // System.Collections.Generic.Dictionary`2/Entry<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>[]
  163. struct EntryU5BU5D_tA68D08BB0A56BE8DABBC432E633DC20BC845E2A0;
  164. // System.Collections.Generic.Dictionary`2/Entry<System.String,System.Object>[]
  165. struct EntryU5BU5D_tDCA1A62E50C5B5A40FD6F44107088AF42F5671D2;
  166. // System.Collections.Generic.Dictionary`2/Entry<System.String,o0.Serialize/Member>[]
  167. struct EntryU5BU5D_tA9593D3E1981A852EF54218B7F691DDF02658EDC;
  168. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>[]
  169. struct EntryU5BU5D_t6FF8EFA103C19F8704F5CA6DE9EF47B373EA577D;
  170. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`2<System.Object,System.Object>>[]
  171. struct EntryU5BU5D_t2B579B349F68AEA3B03ECA24C105BB0CF2BA97EE;
  172. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>[]
  173. struct EntryU5BU5D_t69ED7C2121B71A97E8371A15BC3D458BD59542FD;
  174. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Func`3<System.Object,System.Object,System.Object>>[]
  175. struct EntryU5BU5D_t5D64FFD586E769E3510C9E5D9BE06B783C1117E9;
  176. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>[]
  177. struct EntryU5BU5D_t4FF3714D75DC27048A35EE52EE5EE01189DCD5DA;
  178. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.ValueTuple`2<System.String,System.Type>[]>[]
  179. struct EntryU5BU5D_t72723E236578774D74049115A767C4012DA9F35A;
  180. // System.Collections.Generic.Dictionary`2/Entry<System.Type,System.Type>[]
  181. struct EntryU5BU5D_t51120FC6057FEF0B1FABD8E2C5DE9EDCCDD35CEA;
  182. // System.Collections.Generic.HashSet`1/Slot<System.Reflection.MethodInfo>[]
  183. struct SlotU5BU5D_t4E4683D1687969153BEAB58D09FEB3BF4DE8C3B5;
  184. // System.ValueTuple`2<System.String,System.Type>[]
  185. struct ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3;
  186. // System.Byte[]
  187. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  188. // System.Char[]
  189. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  190. // System.Delegate[]
  191. struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
  192. // System.Int32[]
  193. struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
  194. // System.IntPtr[]
  195. struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
  196. // System.Reflection.MemberInfo[]
  197. struct MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E;
  198. // System.Object[]
  199. struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
  200. // System.Reflection.PropertyInfo[]
  201. struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A;
  202. // System.Diagnostics.StackTrace[]
  203. struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
  204. // System.String[]
  205. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
  206. // System.Type[]
  207. struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755;
  208. // System.UInt32[]
  209. struct UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF;
  210. // o0.Serialize/Member[]
  211. struct MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D;
  212. // System.Action
  213. struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6;
  214. // System.Reflection.Binder
  215. struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30;
  216. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  217. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C;
  218. // System.Delegate
  219. struct Delegate_t;
  220. // System.DelegateData
  221. struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
  222. // System.Exception
  223. struct Exception_t;
  224. // System.Reflection.FieldInfo
  225. struct FieldInfo_t;
  226. // System.Collections.IDictionary
  227. struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
  228. // System.Reflection.MemberFilter
  229. struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81;
  230. // System.Reflection.MemberInfo
  231. struct MemberInfo_t;
  232. // System.Reflection.MethodInfo
  233. struct MethodInfo_t;
  234. // System.Reflection.PropertyInfo
  235. struct PropertyInfo_t;
  236. // System.Runtime.Serialization.SafeSerializationManager
  237. struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
  238. // System.Runtime.Serialization.SerializationInfo
  239. struct SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1;
  240. // o0.Serialize
  241. struct Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F;
  242. // System.String
  243. struct String_t;
  244. // System.Type
  245. struct Type_t;
  246. // System.Void
  247. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  248. // o0.Reflection/Buffer
  249. struct Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9;
  250. // o0.Serialize/CustomByFunction
  251. struct CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9;
  252. // o0.Serialize/CustomByMember
  253. struct CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E;
  254. // o0.o0/<>c
  255. struct U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166;
  256. // o0.Serialize/CustomByFunction/<>c
  257. struct U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84;
  258. // o0.Serialize/CustomByFunction/<>c__DisplayClass12_0
  259. struct U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72;
  260. IL2CPP_EXTERN_C RuntimeClass* Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D_il2cpp_TypeInfo_var;
  261. IL2CPP_EXTERN_C RuntimeClass* Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var;
  262. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7_il2cpp_TypeInfo_var;
  263. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C_il2cpp_TypeInfo_var;
  264. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D_il2cpp_TypeInfo_var;
  265. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D_il2cpp_TypeInfo_var;
  266. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B_il2cpp_TypeInfo_var;
  267. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272_il2cpp_TypeInfo_var;
  268. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3_il2cpp_TypeInfo_var;
  269. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506_il2cpp_TypeInfo_var;
  270. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16_il2cpp_TypeInfo_var;
  271. IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
  272. IL2CPP_EXTERN_C RuntimeClass* Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var;
  273. IL2CPP_EXTERN_C RuntimeClass* FieldInfo_t_il2cpp_TypeInfo_var;
  274. IL2CPP_EXTERN_C RuntimeClass* FormatterServices_t346CDF3874B4B34E7FFFCA2288D9AB1492F6A21C_il2cpp_TypeInfo_var;
  275. IL2CPP_EXTERN_C RuntimeClass* Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var;
  276. IL2CPP_EXTERN_C RuntimeClass* Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27_il2cpp_TypeInfo_var;
  277. IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t679B4139CA836662729154C22183F600BB74A890_il2cpp_TypeInfo_var;
  278. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var;
  279. IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t0DF027D1C7415CBB03F663A5D5ACE52D29226059_il2cpp_TypeInfo_var;
  280. IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_t60929E1AA80B46746F987B99A4EBD004FD72D370_il2cpp_TypeInfo_var;
  281. IL2CPP_EXTERN_C RuntimeClass* IEnumerable_1_tE1C6BFD1F435825CF7AC0DBBBF2F2B5022F6EC56_il2cpp_TypeInfo_var;
  282. IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t620905184FE92C7CD2128B5FE4079C455117C4B8_il2cpp_TypeInfo_var;
  283. IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_t72AB4B40AF5290B386215B0BFADC8919D394DCAB_il2cpp_TypeInfo_var;
  284. IL2CPP_EXTERN_C RuntimeClass* IEnumerator_1_tEE250A1E202731302BC4469FB56F51E1703CB62F_il2cpp_TypeInfo_var;
  285. IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var;
  286. IL2CPP_EXTERN_C RuntimeClass* Il2CppComObject_il2cpp_TypeInfo_var;
  287. IL2CPP_EXTERN_C RuntimeClass* List_1_t1E053584366104694FDDFF723CE187EAD7F857B0_il2cpp_TypeInfo_var;
  288. IL2CPP_EXTERN_C RuntimeClass* List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var;
  289. IL2CPP_EXTERN_C RuntimeClass* List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7_il2cpp_TypeInfo_var;
  290. IL2CPP_EXTERN_C RuntimeClass* MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D_il2cpp_TypeInfo_var;
  291. IL2CPP_EXTERN_C RuntimeClass* PropertyInfo_t_il2cpp_TypeInfo_var;
  292. IL2CPP_EXTERN_C RuntimeClass* Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var;
  293. IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var;
  294. IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
  295. IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72_il2cpp_TypeInfo_var;
  296. IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var;
  297. IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_il2cpp_TypeInfo_var;
  298. IL2CPP_EXTERN_C String_t* _stringLiteral032E8408AA3BF0DD425A9425D7FC09ED0732312C;
  299. IL2CPP_EXTERN_C String_t* _stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745;
  300. IL2CPP_EXTERN_C String_t* _stringLiteral2FBBC49654C122288A0A99D5B96BED1CF8543B07;
  301. IL2CPP_EXTERN_C String_t* _stringLiteral38FA53D00574017F58FEB66835163BA4160B6F36;
  302. IL2CPP_EXTERN_C String_t* _stringLiteral68213B39D00F868048B373785B58828994B6687D;
  303. IL2CPP_EXTERN_C String_t* _stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11;
  304. IL2CPP_EXTERN_C String_t* _stringLiteral8437DEF10608C2655F3733E1EB32AD10DDE13EBE;
  305. IL2CPP_EXTERN_C String_t* _stringLiteral99AD1BD95B7E8C184D402570E5DE70F8317A338E;
  306. IL2CPP_EXTERN_C String_t* _stringLiteralBDA5986B05EDF7479EDA9FFD470EB4143C8FEFB6;
  307. IL2CPP_EXTERN_C String_t* _stringLiteralE8D190F5B978BC5745FB87B8AB904CAFF87EA0BA;
  308. IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
  309. IL2CPP_EXTERN_C String_t* _stringLiteralF53803F16921C122CF5EDF2A455E95EFBC9685CB;
  310. IL2CPP_EXTERN_C const RuntimeMethod* Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_RuntimeMethod_var;
  311. IL2CPP_EXTERN_C const RuntimeMethod* Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_RuntimeMethod_var;
  312. IL2CPP_EXTERN_C const RuntimeMethod* CustomAttributeExtensions_GetCustomAttribute_TisCompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C_m61858CDBD29749D144AC7B301A872269F45E7403_RuntimeMethod_var;
  313. IL2CPP_EXTERN_C const RuntimeMethod* CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2_RuntimeMethod_var;
  314. IL2CPP_EXTERN_C const RuntimeMethod* CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F_RuntimeMethod_var;
  315. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m35E986A532C1FB91E5FF0366052BFC39D5279EAB_RuntimeMethod_var;
  316. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m3C4BAB1F998CD117ABC32F83E5838D05E60123C1_RuntimeMethod_var;
  317. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m6C5113C56FCB76BFB49E34C5A76042DF5754BD7B_RuntimeMethod_var;
  318. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m7C866AE3D3D8B1FCB4760EF0B772F76205D57BCF_RuntimeMethod_var;
  319. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73_RuntimeMethod_var;
  320. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Add_mF8CC4C7ABC8E3FA0BD4876241818D4263D95FF8D_RuntimeMethod_var;
  321. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m3A2C6993636B0402C60BE82BD623536F129C3880_RuntimeMethod_var;
  322. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_m66EEF5200027D79C60A47E15D350B5006B299898_RuntimeMethod_var;
  323. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3_RuntimeMethod_var;
  324. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mBD772D80E87C54F73C8C8A13BC442646E674F974_RuntimeMethod_var;
  325. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_ContainsKey_mFD205815B443E37EC436C0419BEE23A7141CFAF7_RuntimeMethod_var;
  326. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m577DAC66615F3A61AF4F274851D69214F4079240_RuntimeMethod_var;
  327. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m5E8BF58B9A0C7BD1F095F2E7B474DA7FC2CCF66C_RuntimeMethod_var;
  328. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m8C7EBEC22935640DB9D5AB825710B7E4BAB484FE_RuntimeMethod_var;
  329. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m8E556BB6EE0B1AA485160855260A049C62CE7304_RuntimeMethod_var;
  330. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m8F650631798982D60619B52E1B61C58A17D253B8_RuntimeMethod_var;
  331. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mA0DCCC1EED2A8CBFD988BDF35EC7D357425BCEFE_RuntimeMethod_var;
  332. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB_RuntimeMethod_var;
  333. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mB26107A11A1064E55E0E0C0FA8E664F3D1487A4B_RuntimeMethod_var;
  334. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mD93C9534DDA3D738DE794F25C834992C39B117D7_RuntimeMethod_var;
  335. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m009D9FC8C5181EC91BBB09B66D2E4D75A1BBC7E3_RuntimeMethod_var;
  336. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m330DFBB03CD1019BA41112B76D9C6AB418A8CD4B_RuntimeMethod_var;
  337. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED_RuntimeMethod_var;
  338. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mBFBDAD9D073738DFB5AAE31D6DDF5A179ACB7233_RuntimeMethod_var;
  339. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var;
  340. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mEC67A37ACAAB1DBAB504B54516BAD1808CB80D5D_RuntimeMethod_var;
  341. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_get_Item_mF870F9096563EF823CF903774EFE556526A723FC_RuntimeMethod_var;
  342. IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2_RuntimeMethod_var;
  343. IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_Reverse_TisFieldInfo_t_m2CDF1186819006BE1C95329549310BE226A6978C_RuntimeMethod_var;
  344. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m018F1D72F1A7C5688D4990D36C8DE3F761DBEAD2_RuntimeMethod_var;
  345. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m66B6014AAC073A8093FBAF261EC9BCBB619FA6DA_RuntimeMethod_var;
  346. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m39457ECCFA33B12E940FA4A7E1029E8259B84A0A_RuntimeMethod_var;
  347. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9F0ED3B48B89C28810E4AE3148259FDB7075B16A_RuntimeMethod_var;
  348. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m09D42327467C30F0F41F93C7353A72FFD684F271_RuntimeMethod_var;
  349. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m58FDC6A062881DAEC2F5BB6B54D6E0CBFE1DD3FF_RuntimeMethod_var;
  350. IL2CPP_EXTERN_C const RuntimeMethod* Extension_Index_TisMemberInfo_t_m647621337E23DDF470ACCC7F7103C96BEE7D676E_RuntimeMethod_var;
  351. IL2CPP_EXTERN_C const RuntimeMethod* Extension_Reversed_TisType_t_m7C6AFDEAE95553A682780F0661E39B63C8EBB20E_RuntimeMethod_var;
  352. IL2CPP_EXTERN_C const RuntimeMethod* Extension_To_TisPropertyInfo_t_TisString_t_m97FE072CCA51E2B7113D0CFD0667886DA91DDB27_RuntimeMethod_var;
  353. IL2CPP_EXTERN_C const RuntimeMethod* Extension_TryGet_TisType_t_TisValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7_mC4B16CFDEB120C9BABD5CCC4BA671B681804B7F7_RuntimeMethod_var;
  354. IL2CPP_EXTERN_C const RuntimeMethod* FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C_RuntimeMethod_var;
  355. IL2CPP_EXTERN_C const RuntimeMethod* Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var;
  356. IL2CPP_EXTERN_C const RuntimeMethod* Func_2_Invoke_m8B7E47CF33294F69FABB2E6DC47C917623E4C48C_RuntimeMethod_var;
  357. IL2CPP_EXTERN_C const RuntimeMethod* Func_3_Invoke_m33C5FAF2568195A639BD897B550A08B4BABC29CD_RuntimeMethod_var;
  358. IL2CPP_EXTERN_C const RuntimeMethod* Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB_RuntimeMethod_var;
  359. IL2CPP_EXTERN_C const RuntimeMethod* Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_RuntimeMethod_var;
  360. IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m47166AE5EE03DC50412461976B04A3AE9E5A1221_RuntimeMethod_var;
  361. IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_mC67DDF1DBC3492BBDC57755E320CA7A2C10FC4A4_RuntimeMethod_var;
  362. IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m10CAB11AECC2D4415EDE56E7B9BC9EB697E5A7CB_RuntimeMethod_var;
  363. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m3BB268A04571D3FCDBCD746C61EEF3270A29D2D1_RuntimeMethod_var;
  364. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_RuntimeMethod_var;
  365. IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m089C46303B20B6F4FD29DA88460F7EEFE8DCDBDF_RuntimeMethod_var;
  366. IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mEB5F044018BD367C71DE14D9E47E2D200D021B75_RuntimeMethod_var;
  367. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2_RuntimeMethod_var;
  368. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var;
  369. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m2664E772BEC27840867512EC2E339FF01F648AED_RuntimeMethod_var;
  370. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334_RuntimeMethod_var;
  371. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mCAEA1EE8853594506435D323C3CEED01B210B708_RuntimeMethod_var;
  372. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m0F50D699DFEFF36EF0B525B3CCC461D7D9708A6D_RuntimeMethod_var;
  373. IL2CPP_EXTERN_C const RuntimeMethod* Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667_RuntimeMethod_var;
  374. IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_ctorU3Eb__3_0_m2F74C3D01FD5618DEAC3412F332533AB2D149865_RuntimeMethod_var;
  375. IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec__DisplayClass12_0_U3CAddU3Eb__0_m978198994E9C9F838787AC0AB847776DDFDCDA4C_RuntimeMethod_var;
  376. IL2CPP_EXTERN_C const RuntimeMethod* ValueTuple_2__ctor_m6B194F6592DA2DACDA26B38D85321CF54D82C15D_RuntimeMethod_var;
  377. IL2CPP_EXTERN_C const RuntimeType* ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_0_0_0_var;
  378. IL2CPP_EXTERN_C const RuntimeType* FieldInfo_t_0_0_0_var;
  379. IL2CPP_EXTERN_C const RuntimeType* IntPtr_t_0_0_0_var;
  380. IL2CPP_EXTERN_C const RuntimeType* MemberInfo_t_0_0_0_var;
  381. IL2CPP_EXTERN_C const RuntimeType* MethodInfo_t_0_0_0_var;
  382. IL2CPP_EXTERN_C const RuntimeType* PropertyInfo_t_0_0_0_var;
  383. IL2CPP_EXTERN_C const RuntimeType* String_t_0_0_0_var;
  384. IL2CPP_EXTERN_C const RuntimeType* UIntPtr_t_0_0_0_var;
  385. struct Delegate_t_marshaled_com;
  386. struct Delegate_t_marshaled_pinvoke;
  387. struct Exception_t_marshaled_com;
  388. struct Exception_t_marshaled_pinvoke;
  389. struct ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3;
  390. struct FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E;
  391. struct MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E;
  392. struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
  393. struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A;
  394. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
  395. struct MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D;
  396. IL2CPP_EXTERN_C_BEGIN
  397. IL2CPP_EXTERN_C_END
  398. #ifdef __clang__
  399. #pragma clang diagnostic push
  400. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  401. #pragma clang diagnostic ignored "-Wunused-variable"
  402. #endif
  403. // System.Object
  404. // System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>
  405. struct Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D : public RuntimeObject
  406. {
  407. public:
  408. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  409. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  410. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  411. EntryU5BU5D_tA68D08BB0A56BE8DABBC432E633DC20BC845E2A0* ___entries_1;
  412. // System.Int32 System.Collections.Generic.Dictionary`2::count
  413. int32_t ___count_2;
  414. // System.Int32 System.Collections.Generic.Dictionary`2::version
  415. int32_t ___version_3;
  416. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  417. int32_t ___freeList_4;
  418. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  419. int32_t ___freeCount_5;
  420. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  421. RuntimeObject* ___comparer_6;
  422. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  423. KeyCollection_tAFDADF10871922696C3BF8160DFB8337AA54FAE6 * ___keys_7;
  424. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  425. ValueCollection_t0F2E93A4F2B662AB892D29506BBD4C250E11094E * ___values_8;
  426. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  427. RuntimeObject * ____syncRoot_9;
  428. public:
  429. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___buckets_0)); }
  430. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  431. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  432. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  433. {
  434. ___buckets_0 = value;
  435. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  436. }
  437. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___entries_1)); }
  438. inline EntryU5BU5D_tA68D08BB0A56BE8DABBC432E633DC20BC845E2A0* get_entries_1() const { return ___entries_1; }
  439. inline EntryU5BU5D_tA68D08BB0A56BE8DABBC432E633DC20BC845E2A0** get_address_of_entries_1() { return &___entries_1; }
  440. inline void set_entries_1(EntryU5BU5D_tA68D08BB0A56BE8DABBC432E633DC20BC845E2A0* value)
  441. {
  442. ___entries_1 = value;
  443. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  444. }
  445. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___count_2)); }
  446. inline int32_t get_count_2() const { return ___count_2; }
  447. inline int32_t* get_address_of_count_2() { return &___count_2; }
  448. inline void set_count_2(int32_t value)
  449. {
  450. ___count_2 = value;
  451. }
  452. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___version_3)); }
  453. inline int32_t get_version_3() const { return ___version_3; }
  454. inline int32_t* get_address_of_version_3() { return &___version_3; }
  455. inline void set_version_3(int32_t value)
  456. {
  457. ___version_3 = value;
  458. }
  459. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___freeList_4)); }
  460. inline int32_t get_freeList_4() const { return ___freeList_4; }
  461. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  462. inline void set_freeList_4(int32_t value)
  463. {
  464. ___freeList_4 = value;
  465. }
  466. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___freeCount_5)); }
  467. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  468. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  469. inline void set_freeCount_5(int32_t value)
  470. {
  471. ___freeCount_5 = value;
  472. }
  473. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___comparer_6)); }
  474. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  475. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  476. inline void set_comparer_6(RuntimeObject* value)
  477. {
  478. ___comparer_6 = value;
  479. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  480. }
  481. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___keys_7)); }
  482. inline KeyCollection_tAFDADF10871922696C3BF8160DFB8337AA54FAE6 * get_keys_7() const { return ___keys_7; }
  483. inline KeyCollection_tAFDADF10871922696C3BF8160DFB8337AA54FAE6 ** get_address_of_keys_7() { return &___keys_7; }
  484. inline void set_keys_7(KeyCollection_tAFDADF10871922696C3BF8160DFB8337AA54FAE6 * value)
  485. {
  486. ___keys_7 = value;
  487. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  488. }
  489. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ___values_8)); }
  490. inline ValueCollection_t0F2E93A4F2B662AB892D29506BBD4C250E11094E * get_values_8() const { return ___values_8; }
  491. inline ValueCollection_t0F2E93A4F2B662AB892D29506BBD4C250E11094E ** get_address_of_values_8() { return &___values_8; }
  492. inline void set_values_8(ValueCollection_t0F2E93A4F2B662AB892D29506BBD4C250E11094E * value)
  493. {
  494. ___values_8 = value;
  495. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  496. }
  497. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D, ____syncRoot_9)); }
  498. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  499. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  500. inline void set__syncRoot_9(RuntimeObject * value)
  501. {
  502. ____syncRoot_9 = value;
  503. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  504. }
  505. };
  506. // System.Collections.Generic.Dictionary`2<System.String,System.Object>
  507. struct Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 : public RuntimeObject
  508. {
  509. public:
  510. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  511. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  512. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  513. EntryU5BU5D_tDCA1A62E50C5B5A40FD6F44107088AF42F5671D2* ___entries_1;
  514. // System.Int32 System.Collections.Generic.Dictionary`2::count
  515. int32_t ___count_2;
  516. // System.Int32 System.Collections.Generic.Dictionary`2::version
  517. int32_t ___version_3;
  518. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  519. int32_t ___freeList_4;
  520. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  521. int32_t ___freeCount_5;
  522. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  523. RuntimeObject* ___comparer_6;
  524. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  525. KeyCollection_t0043475CBB02FD67894529F3CAA818080A2F7A17 * ___keys_7;
  526. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  527. ValueCollection_tB942A1033B750DCF04FE948413982D120FC69A4E * ___values_8;
  528. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  529. RuntimeObject * ____syncRoot_9;
  530. public:
  531. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___buckets_0)); }
  532. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  533. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  534. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  535. {
  536. ___buckets_0 = value;
  537. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  538. }
  539. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___entries_1)); }
  540. inline EntryU5BU5D_tDCA1A62E50C5B5A40FD6F44107088AF42F5671D2* get_entries_1() const { return ___entries_1; }
  541. inline EntryU5BU5D_tDCA1A62E50C5B5A40FD6F44107088AF42F5671D2** get_address_of_entries_1() { return &___entries_1; }
  542. inline void set_entries_1(EntryU5BU5D_tDCA1A62E50C5B5A40FD6F44107088AF42F5671D2* value)
  543. {
  544. ___entries_1 = value;
  545. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  546. }
  547. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___count_2)); }
  548. inline int32_t get_count_2() const { return ___count_2; }
  549. inline int32_t* get_address_of_count_2() { return &___count_2; }
  550. inline void set_count_2(int32_t value)
  551. {
  552. ___count_2 = value;
  553. }
  554. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___version_3)); }
  555. inline int32_t get_version_3() const { return ___version_3; }
  556. inline int32_t* get_address_of_version_3() { return &___version_3; }
  557. inline void set_version_3(int32_t value)
  558. {
  559. ___version_3 = value;
  560. }
  561. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___freeList_4)); }
  562. inline int32_t get_freeList_4() const { return ___freeList_4; }
  563. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  564. inline void set_freeList_4(int32_t value)
  565. {
  566. ___freeList_4 = value;
  567. }
  568. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___freeCount_5)); }
  569. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  570. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  571. inline void set_freeCount_5(int32_t value)
  572. {
  573. ___freeCount_5 = value;
  574. }
  575. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___comparer_6)); }
  576. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  577. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  578. inline void set_comparer_6(RuntimeObject* value)
  579. {
  580. ___comparer_6 = value;
  581. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  582. }
  583. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___keys_7)); }
  584. inline KeyCollection_t0043475CBB02FD67894529F3CAA818080A2F7A17 * get_keys_7() const { return ___keys_7; }
  585. inline KeyCollection_t0043475CBB02FD67894529F3CAA818080A2F7A17 ** get_address_of_keys_7() { return &___keys_7; }
  586. inline void set_keys_7(KeyCollection_t0043475CBB02FD67894529F3CAA818080A2F7A17 * value)
  587. {
  588. ___keys_7 = value;
  589. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  590. }
  591. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ___values_8)); }
  592. inline ValueCollection_tB942A1033B750DCF04FE948413982D120FC69A4E * get_values_8() const { return ___values_8; }
  593. inline ValueCollection_tB942A1033B750DCF04FE948413982D120FC69A4E ** get_address_of_values_8() { return &___values_8; }
  594. inline void set_values_8(ValueCollection_tB942A1033B750DCF04FE948413982D120FC69A4E * value)
  595. {
  596. ___values_8 = value;
  597. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  598. }
  599. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399, ____syncRoot_9)); }
  600. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  601. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  602. inline void set__syncRoot_9(RuntimeObject * value)
  603. {
  604. ____syncRoot_9 = value;
  605. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  606. }
  607. };
  608. // System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>
  609. struct Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D : public RuntimeObject
  610. {
  611. public:
  612. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  613. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  614. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  615. EntryU5BU5D_tA9593D3E1981A852EF54218B7F691DDF02658EDC* ___entries_1;
  616. // System.Int32 System.Collections.Generic.Dictionary`2::count
  617. int32_t ___count_2;
  618. // System.Int32 System.Collections.Generic.Dictionary`2::version
  619. int32_t ___version_3;
  620. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  621. int32_t ___freeList_4;
  622. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  623. int32_t ___freeCount_5;
  624. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  625. RuntimeObject* ___comparer_6;
  626. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  627. KeyCollection_t201BCB511E5AF6D2D5296660F273CC34254C5582 * ___keys_7;
  628. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  629. ValueCollection_tFD72AD1CBD59562F0A8894E73038BE8AD7880CAB * ___values_8;
  630. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  631. RuntimeObject * ____syncRoot_9;
  632. public:
  633. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___buckets_0)); }
  634. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  635. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  636. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  637. {
  638. ___buckets_0 = value;
  639. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  640. }
  641. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___entries_1)); }
  642. inline EntryU5BU5D_tA9593D3E1981A852EF54218B7F691DDF02658EDC* get_entries_1() const { return ___entries_1; }
  643. inline EntryU5BU5D_tA9593D3E1981A852EF54218B7F691DDF02658EDC** get_address_of_entries_1() { return &___entries_1; }
  644. inline void set_entries_1(EntryU5BU5D_tA9593D3E1981A852EF54218B7F691DDF02658EDC* value)
  645. {
  646. ___entries_1 = value;
  647. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  648. }
  649. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___count_2)); }
  650. inline int32_t get_count_2() const { return ___count_2; }
  651. inline int32_t* get_address_of_count_2() { return &___count_2; }
  652. inline void set_count_2(int32_t value)
  653. {
  654. ___count_2 = value;
  655. }
  656. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___version_3)); }
  657. inline int32_t get_version_3() const { return ___version_3; }
  658. inline int32_t* get_address_of_version_3() { return &___version_3; }
  659. inline void set_version_3(int32_t value)
  660. {
  661. ___version_3 = value;
  662. }
  663. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___freeList_4)); }
  664. inline int32_t get_freeList_4() const { return ___freeList_4; }
  665. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  666. inline void set_freeList_4(int32_t value)
  667. {
  668. ___freeList_4 = value;
  669. }
  670. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___freeCount_5)); }
  671. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  672. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  673. inline void set_freeCount_5(int32_t value)
  674. {
  675. ___freeCount_5 = value;
  676. }
  677. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___comparer_6)); }
  678. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  679. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  680. inline void set_comparer_6(RuntimeObject* value)
  681. {
  682. ___comparer_6 = value;
  683. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  684. }
  685. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___keys_7)); }
  686. inline KeyCollection_t201BCB511E5AF6D2D5296660F273CC34254C5582 * get_keys_7() const { return ___keys_7; }
  687. inline KeyCollection_t201BCB511E5AF6D2D5296660F273CC34254C5582 ** get_address_of_keys_7() { return &___keys_7; }
  688. inline void set_keys_7(KeyCollection_t201BCB511E5AF6D2D5296660F273CC34254C5582 * value)
  689. {
  690. ___keys_7 = value;
  691. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  692. }
  693. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ___values_8)); }
  694. inline ValueCollection_tFD72AD1CBD59562F0A8894E73038BE8AD7880CAB * get_values_8() const { return ___values_8; }
  695. inline ValueCollection_tFD72AD1CBD59562F0A8894E73038BE8AD7880CAB ** get_address_of_values_8() { return &___values_8; }
  696. inline void set_values_8(ValueCollection_tFD72AD1CBD59562F0A8894E73038BE8AD7880CAB * value)
  697. {
  698. ___values_8 = value;
  699. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  700. }
  701. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D, ____syncRoot_9)); }
  702. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  703. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  704. inline void set__syncRoot_9(RuntimeObject * value)
  705. {
  706. ____syncRoot_9 = value;
  707. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  708. }
  709. };
  710. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>
  711. struct Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C : public RuntimeObject
  712. {
  713. public:
  714. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  715. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  716. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  717. EntryU5BU5D_t6FF8EFA103C19F8704F5CA6DE9EF47B373EA577D* ___entries_1;
  718. // System.Int32 System.Collections.Generic.Dictionary`2::count
  719. int32_t ___count_2;
  720. // System.Int32 System.Collections.Generic.Dictionary`2::version
  721. int32_t ___version_3;
  722. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  723. int32_t ___freeList_4;
  724. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  725. int32_t ___freeCount_5;
  726. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  727. RuntimeObject* ___comparer_6;
  728. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  729. KeyCollection_t360A427D312A4610B882F5F9F31CD08935564591 * ___keys_7;
  730. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  731. ValueCollection_t1DE60E142B03771E1F72561BBD763BA89C7FA45D * ___values_8;
  732. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  733. RuntimeObject * ____syncRoot_9;
  734. public:
  735. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___buckets_0)); }
  736. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  737. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  738. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  739. {
  740. ___buckets_0 = value;
  741. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  742. }
  743. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___entries_1)); }
  744. inline EntryU5BU5D_t6FF8EFA103C19F8704F5CA6DE9EF47B373EA577D* get_entries_1() const { return ___entries_1; }
  745. inline EntryU5BU5D_t6FF8EFA103C19F8704F5CA6DE9EF47B373EA577D** get_address_of_entries_1() { return &___entries_1; }
  746. inline void set_entries_1(EntryU5BU5D_t6FF8EFA103C19F8704F5CA6DE9EF47B373EA577D* value)
  747. {
  748. ___entries_1 = value;
  749. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  750. }
  751. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___count_2)); }
  752. inline int32_t get_count_2() const { return ___count_2; }
  753. inline int32_t* get_address_of_count_2() { return &___count_2; }
  754. inline void set_count_2(int32_t value)
  755. {
  756. ___count_2 = value;
  757. }
  758. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___version_3)); }
  759. inline int32_t get_version_3() const { return ___version_3; }
  760. inline int32_t* get_address_of_version_3() { return &___version_3; }
  761. inline void set_version_3(int32_t value)
  762. {
  763. ___version_3 = value;
  764. }
  765. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___freeList_4)); }
  766. inline int32_t get_freeList_4() const { return ___freeList_4; }
  767. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  768. inline void set_freeList_4(int32_t value)
  769. {
  770. ___freeList_4 = value;
  771. }
  772. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___freeCount_5)); }
  773. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  774. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  775. inline void set_freeCount_5(int32_t value)
  776. {
  777. ___freeCount_5 = value;
  778. }
  779. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___comparer_6)); }
  780. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  781. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  782. inline void set_comparer_6(RuntimeObject* value)
  783. {
  784. ___comparer_6 = value;
  785. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  786. }
  787. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___keys_7)); }
  788. inline KeyCollection_t360A427D312A4610B882F5F9F31CD08935564591 * get_keys_7() const { return ___keys_7; }
  789. inline KeyCollection_t360A427D312A4610B882F5F9F31CD08935564591 ** get_address_of_keys_7() { return &___keys_7; }
  790. inline void set_keys_7(KeyCollection_t360A427D312A4610B882F5F9F31CD08935564591 * value)
  791. {
  792. ___keys_7 = value;
  793. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  794. }
  795. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ___values_8)); }
  796. inline ValueCollection_t1DE60E142B03771E1F72561BBD763BA89C7FA45D * get_values_8() const { return ___values_8; }
  797. inline ValueCollection_t1DE60E142B03771E1F72561BBD763BA89C7FA45D ** get_address_of_values_8() { return &___values_8; }
  798. inline void set_values_8(ValueCollection_t1DE60E142B03771E1F72561BBD763BA89C7FA45D * value)
  799. {
  800. ___values_8 = value;
  801. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  802. }
  803. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C, ____syncRoot_9)); }
  804. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  805. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  806. inline void set__syncRoot_9(RuntimeObject * value)
  807. {
  808. ____syncRoot_9 = value;
  809. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  810. }
  811. };
  812. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>
  813. struct Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B : public RuntimeObject
  814. {
  815. public:
  816. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  817. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  818. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  819. EntryU5BU5D_t2B579B349F68AEA3B03ECA24C105BB0CF2BA97EE* ___entries_1;
  820. // System.Int32 System.Collections.Generic.Dictionary`2::count
  821. int32_t ___count_2;
  822. // System.Int32 System.Collections.Generic.Dictionary`2::version
  823. int32_t ___version_3;
  824. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  825. int32_t ___freeList_4;
  826. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  827. int32_t ___freeCount_5;
  828. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  829. RuntimeObject* ___comparer_6;
  830. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  831. KeyCollection_t9269F58362BF18193A9C8E6F3E5159BDABC00AA1 * ___keys_7;
  832. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  833. ValueCollection_tA2C6499BF73D89EFFA062E4120C8AB5BC8B7D3CE * ___values_8;
  834. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  835. RuntimeObject * ____syncRoot_9;
  836. public:
  837. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___buckets_0)); }
  838. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  839. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  840. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  841. {
  842. ___buckets_0 = value;
  843. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  844. }
  845. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___entries_1)); }
  846. inline EntryU5BU5D_t2B579B349F68AEA3B03ECA24C105BB0CF2BA97EE* get_entries_1() const { return ___entries_1; }
  847. inline EntryU5BU5D_t2B579B349F68AEA3B03ECA24C105BB0CF2BA97EE** get_address_of_entries_1() { return &___entries_1; }
  848. inline void set_entries_1(EntryU5BU5D_t2B579B349F68AEA3B03ECA24C105BB0CF2BA97EE* value)
  849. {
  850. ___entries_1 = value;
  851. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  852. }
  853. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___count_2)); }
  854. inline int32_t get_count_2() const { return ___count_2; }
  855. inline int32_t* get_address_of_count_2() { return &___count_2; }
  856. inline void set_count_2(int32_t value)
  857. {
  858. ___count_2 = value;
  859. }
  860. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___version_3)); }
  861. inline int32_t get_version_3() const { return ___version_3; }
  862. inline int32_t* get_address_of_version_3() { return &___version_3; }
  863. inline void set_version_3(int32_t value)
  864. {
  865. ___version_3 = value;
  866. }
  867. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___freeList_4)); }
  868. inline int32_t get_freeList_4() const { return ___freeList_4; }
  869. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  870. inline void set_freeList_4(int32_t value)
  871. {
  872. ___freeList_4 = value;
  873. }
  874. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___freeCount_5)); }
  875. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  876. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  877. inline void set_freeCount_5(int32_t value)
  878. {
  879. ___freeCount_5 = value;
  880. }
  881. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___comparer_6)); }
  882. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  883. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  884. inline void set_comparer_6(RuntimeObject* value)
  885. {
  886. ___comparer_6 = value;
  887. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  888. }
  889. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___keys_7)); }
  890. inline KeyCollection_t9269F58362BF18193A9C8E6F3E5159BDABC00AA1 * get_keys_7() const { return ___keys_7; }
  891. inline KeyCollection_t9269F58362BF18193A9C8E6F3E5159BDABC00AA1 ** get_address_of_keys_7() { return &___keys_7; }
  892. inline void set_keys_7(KeyCollection_t9269F58362BF18193A9C8E6F3E5159BDABC00AA1 * value)
  893. {
  894. ___keys_7 = value;
  895. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  896. }
  897. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ___values_8)); }
  898. inline ValueCollection_tA2C6499BF73D89EFFA062E4120C8AB5BC8B7D3CE * get_values_8() const { return ___values_8; }
  899. inline ValueCollection_tA2C6499BF73D89EFFA062E4120C8AB5BC8B7D3CE ** get_address_of_values_8() { return &___values_8; }
  900. inline void set_values_8(ValueCollection_tA2C6499BF73D89EFFA062E4120C8AB5BC8B7D3CE * value)
  901. {
  902. ___values_8 = value;
  903. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  904. }
  905. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B, ____syncRoot_9)); }
  906. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  907. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  908. inline void set__syncRoot_9(RuntimeObject * value)
  909. {
  910. ____syncRoot_9 = value;
  911. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  912. }
  913. };
  914. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>
  915. struct Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 : public RuntimeObject
  916. {
  917. public:
  918. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  919. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  920. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  921. EntryU5BU5D_t69ED7C2121B71A97E8371A15BC3D458BD59542FD* ___entries_1;
  922. // System.Int32 System.Collections.Generic.Dictionary`2::count
  923. int32_t ___count_2;
  924. // System.Int32 System.Collections.Generic.Dictionary`2::version
  925. int32_t ___version_3;
  926. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  927. int32_t ___freeList_4;
  928. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  929. int32_t ___freeCount_5;
  930. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  931. RuntimeObject* ___comparer_6;
  932. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  933. KeyCollection_tF7AF7530FD000D4A42BACFC3E63713F7EADB1FCD * ___keys_7;
  934. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  935. ValueCollection_t6D3C373553CE5BB446CDF9C5E85936C24FA83FE4 * ___values_8;
  936. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  937. RuntimeObject * ____syncRoot_9;
  938. public:
  939. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___buckets_0)); }
  940. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  941. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  942. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  943. {
  944. ___buckets_0 = value;
  945. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  946. }
  947. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___entries_1)); }
  948. inline EntryU5BU5D_t69ED7C2121B71A97E8371A15BC3D458BD59542FD* get_entries_1() const { return ___entries_1; }
  949. inline EntryU5BU5D_t69ED7C2121B71A97E8371A15BC3D458BD59542FD** get_address_of_entries_1() { return &___entries_1; }
  950. inline void set_entries_1(EntryU5BU5D_t69ED7C2121B71A97E8371A15BC3D458BD59542FD* value)
  951. {
  952. ___entries_1 = value;
  953. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  954. }
  955. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___count_2)); }
  956. inline int32_t get_count_2() const { return ___count_2; }
  957. inline int32_t* get_address_of_count_2() { return &___count_2; }
  958. inline void set_count_2(int32_t value)
  959. {
  960. ___count_2 = value;
  961. }
  962. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___version_3)); }
  963. inline int32_t get_version_3() const { return ___version_3; }
  964. inline int32_t* get_address_of_version_3() { return &___version_3; }
  965. inline void set_version_3(int32_t value)
  966. {
  967. ___version_3 = value;
  968. }
  969. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___freeList_4)); }
  970. inline int32_t get_freeList_4() const { return ___freeList_4; }
  971. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  972. inline void set_freeList_4(int32_t value)
  973. {
  974. ___freeList_4 = value;
  975. }
  976. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___freeCount_5)); }
  977. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  978. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  979. inline void set_freeCount_5(int32_t value)
  980. {
  981. ___freeCount_5 = value;
  982. }
  983. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___comparer_6)); }
  984. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  985. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  986. inline void set_comparer_6(RuntimeObject* value)
  987. {
  988. ___comparer_6 = value;
  989. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  990. }
  991. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___keys_7)); }
  992. inline KeyCollection_tF7AF7530FD000D4A42BACFC3E63713F7EADB1FCD * get_keys_7() const { return ___keys_7; }
  993. inline KeyCollection_tF7AF7530FD000D4A42BACFC3E63713F7EADB1FCD ** get_address_of_keys_7() { return &___keys_7; }
  994. inline void set_keys_7(KeyCollection_tF7AF7530FD000D4A42BACFC3E63713F7EADB1FCD * value)
  995. {
  996. ___keys_7 = value;
  997. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  998. }
  999. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ___values_8)); }
  1000. inline ValueCollection_t6D3C373553CE5BB446CDF9C5E85936C24FA83FE4 * get_values_8() const { return ___values_8; }
  1001. inline ValueCollection_t6D3C373553CE5BB446CDF9C5E85936C24FA83FE4 ** get_address_of_values_8() { return &___values_8; }
  1002. inline void set_values_8(ValueCollection_t6D3C373553CE5BB446CDF9C5E85936C24FA83FE4 * value)
  1003. {
  1004. ___values_8 = value;
  1005. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  1006. }
  1007. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272, ____syncRoot_9)); }
  1008. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  1009. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  1010. inline void set__syncRoot_9(RuntimeObject * value)
  1011. {
  1012. ____syncRoot_9 = value;
  1013. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  1014. }
  1015. };
  1016. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Object,System.Object>>
  1017. struct Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 : public RuntimeObject
  1018. {
  1019. public:
  1020. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  1021. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  1022. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  1023. EntryU5BU5D_t5D64FFD586E769E3510C9E5D9BE06B783C1117E9* ___entries_1;
  1024. // System.Int32 System.Collections.Generic.Dictionary`2::count
  1025. int32_t ___count_2;
  1026. // System.Int32 System.Collections.Generic.Dictionary`2::version
  1027. int32_t ___version_3;
  1028. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  1029. int32_t ___freeList_4;
  1030. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  1031. int32_t ___freeCount_5;
  1032. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  1033. RuntimeObject* ___comparer_6;
  1034. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  1035. KeyCollection_tE4C0EA1C4E2E134202F5D5D25A7DC3302DC8BDBA * ___keys_7;
  1036. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  1037. ValueCollection_t2560F4D5E34C5AA1247A9CE81E8CE61FF31B2CF0 * ___values_8;
  1038. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  1039. RuntimeObject * ____syncRoot_9;
  1040. public:
  1041. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___buckets_0)); }
  1042. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  1043. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  1044. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  1045. {
  1046. ___buckets_0 = value;
  1047. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  1048. }
  1049. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___entries_1)); }
  1050. inline EntryU5BU5D_t5D64FFD586E769E3510C9E5D9BE06B783C1117E9* get_entries_1() const { return ___entries_1; }
  1051. inline EntryU5BU5D_t5D64FFD586E769E3510C9E5D9BE06B783C1117E9** get_address_of_entries_1() { return &___entries_1; }
  1052. inline void set_entries_1(EntryU5BU5D_t5D64FFD586E769E3510C9E5D9BE06B783C1117E9* value)
  1053. {
  1054. ___entries_1 = value;
  1055. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  1056. }
  1057. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___count_2)); }
  1058. inline int32_t get_count_2() const { return ___count_2; }
  1059. inline int32_t* get_address_of_count_2() { return &___count_2; }
  1060. inline void set_count_2(int32_t value)
  1061. {
  1062. ___count_2 = value;
  1063. }
  1064. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___version_3)); }
  1065. inline int32_t get_version_3() const { return ___version_3; }
  1066. inline int32_t* get_address_of_version_3() { return &___version_3; }
  1067. inline void set_version_3(int32_t value)
  1068. {
  1069. ___version_3 = value;
  1070. }
  1071. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___freeList_4)); }
  1072. inline int32_t get_freeList_4() const { return ___freeList_4; }
  1073. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  1074. inline void set_freeList_4(int32_t value)
  1075. {
  1076. ___freeList_4 = value;
  1077. }
  1078. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___freeCount_5)); }
  1079. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  1080. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  1081. inline void set_freeCount_5(int32_t value)
  1082. {
  1083. ___freeCount_5 = value;
  1084. }
  1085. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___comparer_6)); }
  1086. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  1087. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  1088. inline void set_comparer_6(RuntimeObject* value)
  1089. {
  1090. ___comparer_6 = value;
  1091. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  1092. }
  1093. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___keys_7)); }
  1094. inline KeyCollection_tE4C0EA1C4E2E134202F5D5D25A7DC3302DC8BDBA * get_keys_7() const { return ___keys_7; }
  1095. inline KeyCollection_tE4C0EA1C4E2E134202F5D5D25A7DC3302DC8BDBA ** get_address_of_keys_7() { return &___keys_7; }
  1096. inline void set_keys_7(KeyCollection_tE4C0EA1C4E2E134202F5D5D25A7DC3302DC8BDBA * value)
  1097. {
  1098. ___keys_7 = value;
  1099. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  1100. }
  1101. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ___values_8)); }
  1102. inline ValueCollection_t2560F4D5E34C5AA1247A9CE81E8CE61FF31B2CF0 * get_values_8() const { return ___values_8; }
  1103. inline ValueCollection_t2560F4D5E34C5AA1247A9CE81E8CE61FF31B2CF0 ** get_address_of_values_8() { return &___values_8; }
  1104. inline void set_values_8(ValueCollection_t2560F4D5E34C5AA1247A9CE81E8CE61FF31B2CF0 * value)
  1105. {
  1106. ___values_8 = value;
  1107. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  1108. }
  1109. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16, ____syncRoot_9)); }
  1110. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  1111. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  1112. inline void set__syncRoot_9(RuntimeObject * value)
  1113. {
  1114. ____syncRoot_9 = value;
  1115. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  1116. }
  1117. };
  1118. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>
  1119. struct Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 : public RuntimeObject
  1120. {
  1121. public:
  1122. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  1123. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  1124. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  1125. EntryU5BU5D_t4FF3714D75DC27048A35EE52EE5EE01189DCD5DA* ___entries_1;
  1126. // System.Int32 System.Collections.Generic.Dictionary`2::count
  1127. int32_t ___count_2;
  1128. // System.Int32 System.Collections.Generic.Dictionary`2::version
  1129. int32_t ___version_3;
  1130. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  1131. int32_t ___freeList_4;
  1132. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  1133. int32_t ___freeCount_5;
  1134. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  1135. RuntimeObject* ___comparer_6;
  1136. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  1137. KeyCollection_t083D24521235D3333AF06D96C7F6AB5651783D43 * ___keys_7;
  1138. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  1139. ValueCollection_t8C7E0AE83853071446E3D7DA9A2CFC6F760F3E3C * ___values_8;
  1140. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  1141. RuntimeObject * ____syncRoot_9;
  1142. public:
  1143. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___buckets_0)); }
  1144. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  1145. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  1146. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  1147. {
  1148. ___buckets_0 = value;
  1149. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  1150. }
  1151. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___entries_1)); }
  1152. inline EntryU5BU5D_t4FF3714D75DC27048A35EE52EE5EE01189DCD5DA* get_entries_1() const { return ___entries_1; }
  1153. inline EntryU5BU5D_t4FF3714D75DC27048A35EE52EE5EE01189DCD5DA** get_address_of_entries_1() { return &___entries_1; }
  1154. inline void set_entries_1(EntryU5BU5D_t4FF3714D75DC27048A35EE52EE5EE01189DCD5DA* value)
  1155. {
  1156. ___entries_1 = value;
  1157. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  1158. }
  1159. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___count_2)); }
  1160. inline int32_t get_count_2() const { return ___count_2; }
  1161. inline int32_t* get_address_of_count_2() { return &___count_2; }
  1162. inline void set_count_2(int32_t value)
  1163. {
  1164. ___count_2 = value;
  1165. }
  1166. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___version_3)); }
  1167. inline int32_t get_version_3() const { return ___version_3; }
  1168. inline int32_t* get_address_of_version_3() { return &___version_3; }
  1169. inline void set_version_3(int32_t value)
  1170. {
  1171. ___version_3 = value;
  1172. }
  1173. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___freeList_4)); }
  1174. inline int32_t get_freeList_4() const { return ___freeList_4; }
  1175. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  1176. inline void set_freeList_4(int32_t value)
  1177. {
  1178. ___freeList_4 = value;
  1179. }
  1180. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___freeCount_5)); }
  1181. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  1182. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  1183. inline void set_freeCount_5(int32_t value)
  1184. {
  1185. ___freeCount_5 = value;
  1186. }
  1187. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___comparer_6)); }
  1188. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  1189. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  1190. inline void set_comparer_6(RuntimeObject* value)
  1191. {
  1192. ___comparer_6 = value;
  1193. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  1194. }
  1195. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___keys_7)); }
  1196. inline KeyCollection_t083D24521235D3333AF06D96C7F6AB5651783D43 * get_keys_7() const { return ___keys_7; }
  1197. inline KeyCollection_t083D24521235D3333AF06D96C7F6AB5651783D43 ** get_address_of_keys_7() { return &___keys_7; }
  1198. inline void set_keys_7(KeyCollection_t083D24521235D3333AF06D96C7F6AB5651783D43 * value)
  1199. {
  1200. ___keys_7 = value;
  1201. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  1202. }
  1203. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ___values_8)); }
  1204. inline ValueCollection_t8C7E0AE83853071446E3D7DA9A2CFC6F760F3E3C * get_values_8() const { return ___values_8; }
  1205. inline ValueCollection_t8C7E0AE83853071446E3D7DA9A2CFC6F760F3E3C ** get_address_of_values_8() { return &___values_8; }
  1206. inline void set_values_8(ValueCollection_t8C7E0AE83853071446E3D7DA9A2CFC6F760F3E3C * value)
  1207. {
  1208. ___values_8 = value;
  1209. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  1210. }
  1211. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7, ____syncRoot_9)); }
  1212. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  1213. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  1214. inline void set__syncRoot_9(RuntimeObject * value)
  1215. {
  1216. ____syncRoot_9 = value;
  1217. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  1218. }
  1219. };
  1220. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<System.String,System.Type>[]>
  1221. struct Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 : public RuntimeObject
  1222. {
  1223. public:
  1224. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  1225. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  1226. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  1227. EntryU5BU5D_t72723E236578774D74049115A767C4012DA9F35A* ___entries_1;
  1228. // System.Int32 System.Collections.Generic.Dictionary`2::count
  1229. int32_t ___count_2;
  1230. // System.Int32 System.Collections.Generic.Dictionary`2::version
  1231. int32_t ___version_3;
  1232. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  1233. int32_t ___freeList_4;
  1234. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  1235. int32_t ___freeCount_5;
  1236. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  1237. RuntimeObject* ___comparer_6;
  1238. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  1239. KeyCollection_t4E86E03C6418AA21534094BF61F390D9AAE5ADEE * ___keys_7;
  1240. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  1241. ValueCollection_t16DD893982FFEC95E0B21070059092A56A8CF734 * ___values_8;
  1242. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  1243. RuntimeObject * ____syncRoot_9;
  1244. public:
  1245. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___buckets_0)); }
  1246. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  1247. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  1248. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  1249. {
  1250. ___buckets_0 = value;
  1251. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  1252. }
  1253. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___entries_1)); }
  1254. inline EntryU5BU5D_t72723E236578774D74049115A767C4012DA9F35A* get_entries_1() const { return ___entries_1; }
  1255. inline EntryU5BU5D_t72723E236578774D74049115A767C4012DA9F35A** get_address_of_entries_1() { return &___entries_1; }
  1256. inline void set_entries_1(EntryU5BU5D_t72723E236578774D74049115A767C4012DA9F35A* value)
  1257. {
  1258. ___entries_1 = value;
  1259. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  1260. }
  1261. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___count_2)); }
  1262. inline int32_t get_count_2() const { return ___count_2; }
  1263. inline int32_t* get_address_of_count_2() { return &___count_2; }
  1264. inline void set_count_2(int32_t value)
  1265. {
  1266. ___count_2 = value;
  1267. }
  1268. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___version_3)); }
  1269. inline int32_t get_version_3() const { return ___version_3; }
  1270. inline int32_t* get_address_of_version_3() { return &___version_3; }
  1271. inline void set_version_3(int32_t value)
  1272. {
  1273. ___version_3 = value;
  1274. }
  1275. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___freeList_4)); }
  1276. inline int32_t get_freeList_4() const { return ___freeList_4; }
  1277. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  1278. inline void set_freeList_4(int32_t value)
  1279. {
  1280. ___freeList_4 = value;
  1281. }
  1282. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___freeCount_5)); }
  1283. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  1284. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  1285. inline void set_freeCount_5(int32_t value)
  1286. {
  1287. ___freeCount_5 = value;
  1288. }
  1289. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___comparer_6)); }
  1290. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  1291. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  1292. inline void set_comparer_6(RuntimeObject* value)
  1293. {
  1294. ___comparer_6 = value;
  1295. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  1296. }
  1297. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___keys_7)); }
  1298. inline KeyCollection_t4E86E03C6418AA21534094BF61F390D9AAE5ADEE * get_keys_7() const { return ___keys_7; }
  1299. inline KeyCollection_t4E86E03C6418AA21534094BF61F390D9AAE5ADEE ** get_address_of_keys_7() { return &___keys_7; }
  1300. inline void set_keys_7(KeyCollection_t4E86E03C6418AA21534094BF61F390D9AAE5ADEE * value)
  1301. {
  1302. ___keys_7 = value;
  1303. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  1304. }
  1305. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ___values_8)); }
  1306. inline ValueCollection_t16DD893982FFEC95E0B21070059092A56A8CF734 * get_values_8() const { return ___values_8; }
  1307. inline ValueCollection_t16DD893982FFEC95E0B21070059092A56A8CF734 ** get_address_of_values_8() { return &___values_8; }
  1308. inline void set_values_8(ValueCollection_t16DD893982FFEC95E0B21070059092A56A8CF734 * value)
  1309. {
  1310. ___values_8 = value;
  1311. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  1312. }
  1313. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3, ____syncRoot_9)); }
  1314. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  1315. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  1316. inline void set__syncRoot_9(RuntimeObject * value)
  1317. {
  1318. ____syncRoot_9 = value;
  1319. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  1320. }
  1321. };
  1322. // System.Collections.Generic.Dictionary`2<System.Type,System.Type>
  1323. struct Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 : public RuntimeObject
  1324. {
  1325. public:
  1326. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  1327. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  1328. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  1329. EntryU5BU5D_t51120FC6057FEF0B1FABD8E2C5DE9EDCCDD35CEA* ___entries_1;
  1330. // System.Int32 System.Collections.Generic.Dictionary`2::count
  1331. int32_t ___count_2;
  1332. // System.Int32 System.Collections.Generic.Dictionary`2::version
  1333. int32_t ___version_3;
  1334. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  1335. int32_t ___freeList_4;
  1336. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  1337. int32_t ___freeCount_5;
  1338. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  1339. RuntimeObject* ___comparer_6;
  1340. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  1341. KeyCollection_tDF38AEDAEF9E7AA96C28D1C4CE0D70D2A9B51128 * ___keys_7;
  1342. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  1343. ValueCollection_tDA4E60877743A4826E8F24D570DB900C34162342 * ___values_8;
  1344. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  1345. RuntimeObject * ____syncRoot_9;
  1346. public:
  1347. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___buckets_0)); }
  1348. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  1349. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  1350. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  1351. {
  1352. ___buckets_0 = value;
  1353. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  1354. }
  1355. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___entries_1)); }
  1356. inline EntryU5BU5D_t51120FC6057FEF0B1FABD8E2C5DE9EDCCDD35CEA* get_entries_1() const { return ___entries_1; }
  1357. inline EntryU5BU5D_t51120FC6057FEF0B1FABD8E2C5DE9EDCCDD35CEA** get_address_of_entries_1() { return &___entries_1; }
  1358. inline void set_entries_1(EntryU5BU5D_t51120FC6057FEF0B1FABD8E2C5DE9EDCCDD35CEA* value)
  1359. {
  1360. ___entries_1 = value;
  1361. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  1362. }
  1363. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___count_2)); }
  1364. inline int32_t get_count_2() const { return ___count_2; }
  1365. inline int32_t* get_address_of_count_2() { return &___count_2; }
  1366. inline void set_count_2(int32_t value)
  1367. {
  1368. ___count_2 = value;
  1369. }
  1370. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___version_3)); }
  1371. inline int32_t get_version_3() const { return ___version_3; }
  1372. inline int32_t* get_address_of_version_3() { return &___version_3; }
  1373. inline void set_version_3(int32_t value)
  1374. {
  1375. ___version_3 = value;
  1376. }
  1377. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___freeList_4)); }
  1378. inline int32_t get_freeList_4() const { return ___freeList_4; }
  1379. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  1380. inline void set_freeList_4(int32_t value)
  1381. {
  1382. ___freeList_4 = value;
  1383. }
  1384. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___freeCount_5)); }
  1385. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  1386. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  1387. inline void set_freeCount_5(int32_t value)
  1388. {
  1389. ___freeCount_5 = value;
  1390. }
  1391. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___comparer_6)); }
  1392. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  1393. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  1394. inline void set_comparer_6(RuntimeObject* value)
  1395. {
  1396. ___comparer_6 = value;
  1397. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  1398. }
  1399. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___keys_7)); }
  1400. inline KeyCollection_tDF38AEDAEF9E7AA96C28D1C4CE0D70D2A9B51128 * get_keys_7() const { return ___keys_7; }
  1401. inline KeyCollection_tDF38AEDAEF9E7AA96C28D1C4CE0D70D2A9B51128 ** get_address_of_keys_7() { return &___keys_7; }
  1402. inline void set_keys_7(KeyCollection_tDF38AEDAEF9E7AA96C28D1C4CE0D70D2A9B51128 * value)
  1403. {
  1404. ___keys_7 = value;
  1405. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  1406. }
  1407. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ___values_8)); }
  1408. inline ValueCollection_tDA4E60877743A4826E8F24D570DB900C34162342 * get_values_8() const { return ___values_8; }
  1409. inline ValueCollection_tDA4E60877743A4826E8F24D570DB900C34162342 ** get_address_of_values_8() { return &___values_8; }
  1410. inline void set_values_8(ValueCollection_tDA4E60877743A4826E8F24D570DB900C34162342 * value)
  1411. {
  1412. ___values_8 = value;
  1413. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  1414. }
  1415. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506, ____syncRoot_9)); }
  1416. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  1417. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  1418. inline void set__syncRoot_9(RuntimeObject * value)
  1419. {
  1420. ____syncRoot_9 = value;
  1421. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  1422. }
  1423. };
  1424. // System.Collections.Generic.HashSet`1<System.Reflection.MethodInfo>
  1425. struct HashSet_1_t679B4139CA836662729154C22183F600BB74A890 : public RuntimeObject
  1426. {
  1427. public:
  1428. // System.Int32[] System.Collections.Generic.HashSet`1::_buckets
  1429. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ____buckets_7;
  1430. // System.Collections.Generic.HashSet`1/Slot<T>[] System.Collections.Generic.HashSet`1::_slots
  1431. SlotU5BU5D_t4E4683D1687969153BEAB58D09FEB3BF4DE8C3B5* ____slots_8;
  1432. // System.Int32 System.Collections.Generic.HashSet`1::_count
  1433. int32_t ____count_9;
  1434. // System.Int32 System.Collections.Generic.HashSet`1::_lastIndex
  1435. int32_t ____lastIndex_10;
  1436. // System.Int32 System.Collections.Generic.HashSet`1::_freeList
  1437. int32_t ____freeList_11;
  1438. // System.Collections.Generic.IEqualityComparer`1<T> System.Collections.Generic.HashSet`1::_comparer
  1439. RuntimeObject* ____comparer_12;
  1440. // System.Int32 System.Collections.Generic.HashSet`1::_version
  1441. int32_t ____version_13;
  1442. // System.Runtime.Serialization.SerializationInfo System.Collections.Generic.HashSet`1::_siInfo
  1443. SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * ____siInfo_14;
  1444. public:
  1445. inline static int32_t get_offset_of__buckets_7() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____buckets_7)); }
  1446. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get__buckets_7() const { return ____buckets_7; }
  1447. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of__buckets_7() { return &____buckets_7; }
  1448. inline void set__buckets_7(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  1449. {
  1450. ____buckets_7 = value;
  1451. Il2CppCodeGenWriteBarrier((void**)(&____buckets_7), (void*)value);
  1452. }
  1453. inline static int32_t get_offset_of__slots_8() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____slots_8)); }
  1454. inline SlotU5BU5D_t4E4683D1687969153BEAB58D09FEB3BF4DE8C3B5* get__slots_8() const { return ____slots_8; }
  1455. inline SlotU5BU5D_t4E4683D1687969153BEAB58D09FEB3BF4DE8C3B5** get_address_of__slots_8() { return &____slots_8; }
  1456. inline void set__slots_8(SlotU5BU5D_t4E4683D1687969153BEAB58D09FEB3BF4DE8C3B5* value)
  1457. {
  1458. ____slots_8 = value;
  1459. Il2CppCodeGenWriteBarrier((void**)(&____slots_8), (void*)value);
  1460. }
  1461. inline static int32_t get_offset_of__count_9() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____count_9)); }
  1462. inline int32_t get__count_9() const { return ____count_9; }
  1463. inline int32_t* get_address_of__count_9() { return &____count_9; }
  1464. inline void set__count_9(int32_t value)
  1465. {
  1466. ____count_9 = value;
  1467. }
  1468. inline static int32_t get_offset_of__lastIndex_10() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____lastIndex_10)); }
  1469. inline int32_t get__lastIndex_10() const { return ____lastIndex_10; }
  1470. inline int32_t* get_address_of__lastIndex_10() { return &____lastIndex_10; }
  1471. inline void set__lastIndex_10(int32_t value)
  1472. {
  1473. ____lastIndex_10 = value;
  1474. }
  1475. inline static int32_t get_offset_of__freeList_11() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____freeList_11)); }
  1476. inline int32_t get__freeList_11() const { return ____freeList_11; }
  1477. inline int32_t* get_address_of__freeList_11() { return &____freeList_11; }
  1478. inline void set__freeList_11(int32_t value)
  1479. {
  1480. ____freeList_11 = value;
  1481. }
  1482. inline static int32_t get_offset_of__comparer_12() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____comparer_12)); }
  1483. inline RuntimeObject* get__comparer_12() const { return ____comparer_12; }
  1484. inline RuntimeObject** get_address_of__comparer_12() { return &____comparer_12; }
  1485. inline void set__comparer_12(RuntimeObject* value)
  1486. {
  1487. ____comparer_12 = value;
  1488. Il2CppCodeGenWriteBarrier((void**)(&____comparer_12), (void*)value);
  1489. }
  1490. inline static int32_t get_offset_of__version_13() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____version_13)); }
  1491. inline int32_t get__version_13() const { return ____version_13; }
  1492. inline int32_t* get_address_of__version_13() { return &____version_13; }
  1493. inline void set__version_13(int32_t value)
  1494. {
  1495. ____version_13 = value;
  1496. }
  1497. inline static int32_t get_offset_of__siInfo_14() { return static_cast<int32_t>(offsetof(HashSet_1_t679B4139CA836662729154C22183F600BB74A890, ____siInfo_14)); }
  1498. inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * get__siInfo_14() const { return ____siInfo_14; }
  1499. inline SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 ** get_address_of__siInfo_14() { return &____siInfo_14; }
  1500. inline void set__siInfo_14(SerializationInfo_t097DA64D9DB49ED7F2458E964BE8CCCF63FC67C1 * value)
  1501. {
  1502. ____siInfo_14 = value;
  1503. Il2CppCodeGenWriteBarrier((void**)(&____siInfo_14), (void*)value);
  1504. }
  1505. };
  1506. // System.Collections.Generic.List`1<System.Reflection.MemberInfo>
  1507. struct List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 : public RuntimeObject
  1508. {
  1509. public:
  1510. // T[] System.Collections.Generic.List`1::_items
  1511. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* ____items_1;
  1512. // System.Int32 System.Collections.Generic.List`1::_size
  1513. int32_t ____size_2;
  1514. // System.Int32 System.Collections.Generic.List`1::_version
  1515. int32_t ____version_3;
  1516. // System.Object System.Collections.Generic.List`1::_syncRoot
  1517. RuntimeObject * ____syncRoot_4;
  1518. public:
  1519. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0, ____items_1)); }
  1520. inline MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* get__items_1() const { return ____items_1; }
  1521. inline MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E** get_address_of__items_1() { return &____items_1; }
  1522. inline void set__items_1(MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* value)
  1523. {
  1524. ____items_1 = value;
  1525. Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
  1526. }
  1527. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0, ____size_2)); }
  1528. inline int32_t get__size_2() const { return ____size_2; }
  1529. inline int32_t* get_address_of__size_2() { return &____size_2; }
  1530. inline void set__size_2(int32_t value)
  1531. {
  1532. ____size_2 = value;
  1533. }
  1534. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0, ____version_3)); }
  1535. inline int32_t get__version_3() const { return ____version_3; }
  1536. inline int32_t* get_address_of__version_3() { return &____version_3; }
  1537. inline void set__version_3(int32_t value)
  1538. {
  1539. ____version_3 = value;
  1540. }
  1541. inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0, ____syncRoot_4)); }
  1542. inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
  1543. inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
  1544. inline void set__syncRoot_4(RuntimeObject * value)
  1545. {
  1546. ____syncRoot_4 = value;
  1547. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
  1548. }
  1549. };
  1550. struct List_1_t1E053584366104694FDDFF723CE187EAD7F857B0_StaticFields
  1551. {
  1552. public:
  1553. // T[] System.Collections.Generic.List`1::_emptyArray
  1554. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* ____emptyArray_5;
  1555. public:
  1556. inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0_StaticFields, ____emptyArray_5)); }
  1557. inline MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* get__emptyArray_5() const { return ____emptyArray_5; }
  1558. inline MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E** get_address_of__emptyArray_5() { return &____emptyArray_5; }
  1559. inline void set__emptyArray_5(MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* value)
  1560. {
  1561. ____emptyArray_5 = value;
  1562. Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
  1563. }
  1564. };
  1565. // System.Collections.Generic.List`1<System.Object>
  1566. struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
  1567. {
  1568. public:
  1569. // T[] System.Collections.Generic.List`1::_items
  1570. ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1;
  1571. // System.Int32 System.Collections.Generic.List`1::_size
  1572. int32_t ____size_2;
  1573. // System.Int32 System.Collections.Generic.List`1::_version
  1574. int32_t ____version_3;
  1575. // System.Object System.Collections.Generic.List`1::_syncRoot
  1576. RuntimeObject * ____syncRoot_4;
  1577. public:
  1578. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
  1579. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
  1580. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
  1581. inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
  1582. {
  1583. ____items_1 = value;
  1584. Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
  1585. }
  1586. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); }
  1587. inline int32_t get__size_2() const { return ____size_2; }
  1588. inline int32_t* get_address_of__size_2() { return &____size_2; }
  1589. inline void set__size_2(int32_t value)
  1590. {
  1591. ____size_2 = value;
  1592. }
  1593. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); }
  1594. inline int32_t get__version_3() const { return ____version_3; }
  1595. inline int32_t* get_address_of__version_3() { return &____version_3; }
  1596. inline void set__version_3(int32_t value)
  1597. {
  1598. ____version_3 = value;
  1599. }
  1600. inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); }
  1601. inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
  1602. inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
  1603. inline void set__syncRoot_4(RuntimeObject * value)
  1604. {
  1605. ____syncRoot_4 = value;
  1606. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
  1607. }
  1608. };
  1609. struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
  1610. {
  1611. public:
  1612. // T[] System.Collections.Generic.List`1::_emptyArray
  1613. ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
  1614. public:
  1615. inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
  1616. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
  1617. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
  1618. inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
  1619. {
  1620. ____emptyArray_5 = value;
  1621. Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
  1622. }
  1623. };
  1624. // System.Collections.Generic.List`1<System.Type>
  1625. struct List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 : public RuntimeObject
  1626. {
  1627. public:
  1628. // T[] System.Collections.Generic.List`1::_items
  1629. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ____items_1;
  1630. // System.Int32 System.Collections.Generic.List`1::_size
  1631. int32_t ____size_2;
  1632. // System.Int32 System.Collections.Generic.List`1::_version
  1633. int32_t ____version_3;
  1634. // System.Object System.Collections.Generic.List`1::_syncRoot
  1635. RuntimeObject * ____syncRoot_4;
  1636. public:
  1637. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7, ____items_1)); }
  1638. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get__items_1() const { return ____items_1; }
  1639. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of__items_1() { return &____items_1; }
  1640. inline void set__items_1(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  1641. {
  1642. ____items_1 = value;
  1643. Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
  1644. }
  1645. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7, ____size_2)); }
  1646. inline int32_t get__size_2() const { return ____size_2; }
  1647. inline int32_t* get_address_of__size_2() { return &____size_2; }
  1648. inline void set__size_2(int32_t value)
  1649. {
  1650. ____size_2 = value;
  1651. }
  1652. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7, ____version_3)); }
  1653. inline int32_t get__version_3() const { return ____version_3; }
  1654. inline int32_t* get_address_of__version_3() { return &____version_3; }
  1655. inline void set__version_3(int32_t value)
  1656. {
  1657. ____version_3 = value;
  1658. }
  1659. inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7, ____syncRoot_4)); }
  1660. inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
  1661. inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
  1662. inline void set__syncRoot_4(RuntimeObject * value)
  1663. {
  1664. ____syncRoot_4 = value;
  1665. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
  1666. }
  1667. };
  1668. struct List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7_StaticFields
  1669. {
  1670. public:
  1671. // T[] System.Collections.Generic.List`1::_emptyArray
  1672. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ____emptyArray_5;
  1673. public:
  1674. inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7_StaticFields, ____emptyArray_5)); }
  1675. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get__emptyArray_5() const { return ____emptyArray_5; }
  1676. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of__emptyArray_5() { return &____emptyArray_5; }
  1677. inline void set__emptyArray_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  1678. {
  1679. ____emptyArray_5 = value;
  1680. Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
  1681. }
  1682. };
  1683. struct Il2CppArrayBounds;
  1684. // System.Array
  1685. // System.Attribute
  1686. struct Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71 : public RuntimeObject
  1687. {
  1688. public:
  1689. public:
  1690. };
  1691. // System.Reflection.MemberInfo
  1692. struct MemberInfo_t : public RuntimeObject
  1693. {
  1694. public:
  1695. public:
  1696. };
  1697. // System.String
  1698. struct String_t : public RuntimeObject
  1699. {
  1700. public:
  1701. // System.Int32 System.String::m_stringLength
  1702. int32_t ___m_stringLength_0;
  1703. // System.Char System.String::m_firstChar
  1704. Il2CppChar ___m_firstChar_1;
  1705. public:
  1706. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  1707. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  1708. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  1709. inline void set_m_stringLength_0(int32_t value)
  1710. {
  1711. ___m_stringLength_0 = value;
  1712. }
  1713. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  1714. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  1715. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  1716. inline void set_m_firstChar_1(Il2CppChar value)
  1717. {
  1718. ___m_firstChar_1 = value;
  1719. }
  1720. };
  1721. struct String_t_StaticFields
  1722. {
  1723. public:
  1724. // System.String System.String::Empty
  1725. String_t* ___Empty_5;
  1726. public:
  1727. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  1728. inline String_t* get_Empty_5() const { return ___Empty_5; }
  1729. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  1730. inline void set_Empty_5(String_t* value)
  1731. {
  1732. ___Empty_5 = value;
  1733. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  1734. }
  1735. };
  1736. // System.ValueType
  1737. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  1738. {
  1739. public:
  1740. public:
  1741. };
  1742. // Native definition for P/Invoke marshalling of System.ValueType
  1743. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  1744. {
  1745. };
  1746. // Native definition for COM marshalling of System.ValueType
  1747. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  1748. {
  1749. };
  1750. // o0.Reflection/Buffer
  1751. struct Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9 : public RuntimeObject
  1752. {
  1753. public:
  1754. // System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo> o0.Reflection/Buffer::<AutoProperty>k__BackingField
  1755. Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * ___U3CAutoPropertyU3Ek__BackingField_0;
  1756. public:
  1757. inline static int32_t get_offset_of_U3CAutoPropertyU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9, ___U3CAutoPropertyU3Ek__BackingField_0)); }
  1758. inline Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * get_U3CAutoPropertyU3Ek__BackingField_0() const { return ___U3CAutoPropertyU3Ek__BackingField_0; }
  1759. inline Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D ** get_address_of_U3CAutoPropertyU3Ek__BackingField_0() { return &___U3CAutoPropertyU3Ek__BackingField_0; }
  1760. inline void set_U3CAutoPropertyU3Ek__BackingField_0(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * value)
  1761. {
  1762. ___U3CAutoPropertyU3Ek__BackingField_0 = value;
  1763. Il2CppCodeGenWriteBarrier((void**)(&___U3CAutoPropertyU3Ek__BackingField_0), (void*)value);
  1764. }
  1765. };
  1766. // o0.Serialize/CustomByFunction
  1767. struct CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 : public RuntimeObject
  1768. {
  1769. public:
  1770. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<System.String,System.Type>[]> o0.Serialize/CustomByFunction::SerializeInfos
  1771. Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * ___SerializeInfos_0;
  1772. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>> o0.Serialize/CustomByFunction::OnSerialize
  1773. Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * ___OnSerialize_1;
  1774. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>> o0.Serialize/CustomByFunction::OnDeserialize
  1775. Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * ___OnDeserialize_2;
  1776. // System.Collections.Generic.Dictionary`2<System.Type,System.Type> o0.Serialize/CustomByFunction::SerializeInfosSingleValue
  1777. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * ___SerializeInfosSingleValue_3;
  1778. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>> o0.Serialize/CustomByFunction::OnSerializeSingleValue
  1779. Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * ___OnSerializeSingleValue_4;
  1780. // System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Object,System.Object>> o0.Serialize/CustomByFunction::OnDeserializeSingleValue
  1781. Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * ___OnDeserializeSingleValue_5;
  1782. public:
  1783. inline static int32_t get_offset_of_SerializeInfos_0() { return static_cast<int32_t>(offsetof(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9, ___SerializeInfos_0)); }
  1784. inline Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * get_SerializeInfos_0() const { return ___SerializeInfos_0; }
  1785. inline Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 ** get_address_of_SerializeInfos_0() { return &___SerializeInfos_0; }
  1786. inline void set_SerializeInfos_0(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * value)
  1787. {
  1788. ___SerializeInfos_0 = value;
  1789. Il2CppCodeGenWriteBarrier((void**)(&___SerializeInfos_0), (void*)value);
  1790. }
  1791. inline static int32_t get_offset_of_OnSerialize_1() { return static_cast<int32_t>(offsetof(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9, ___OnSerialize_1)); }
  1792. inline Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * get_OnSerialize_1() const { return ___OnSerialize_1; }
  1793. inline Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C ** get_address_of_OnSerialize_1() { return &___OnSerialize_1; }
  1794. inline void set_OnSerialize_1(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * value)
  1795. {
  1796. ___OnSerialize_1 = value;
  1797. Il2CppCodeGenWriteBarrier((void**)(&___OnSerialize_1), (void*)value);
  1798. }
  1799. inline static int32_t get_offset_of_OnDeserialize_2() { return static_cast<int32_t>(offsetof(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9, ___OnDeserialize_2)); }
  1800. inline Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * get_OnDeserialize_2() const { return ___OnDeserialize_2; }
  1801. inline Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 ** get_address_of_OnDeserialize_2() { return &___OnDeserialize_2; }
  1802. inline void set_OnDeserialize_2(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * value)
  1803. {
  1804. ___OnDeserialize_2 = value;
  1805. Il2CppCodeGenWriteBarrier((void**)(&___OnDeserialize_2), (void*)value);
  1806. }
  1807. inline static int32_t get_offset_of_SerializeInfosSingleValue_3() { return static_cast<int32_t>(offsetof(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9, ___SerializeInfosSingleValue_3)); }
  1808. inline Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * get_SerializeInfosSingleValue_3() const { return ___SerializeInfosSingleValue_3; }
  1809. inline Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 ** get_address_of_SerializeInfosSingleValue_3() { return &___SerializeInfosSingleValue_3; }
  1810. inline void set_SerializeInfosSingleValue_3(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * value)
  1811. {
  1812. ___SerializeInfosSingleValue_3 = value;
  1813. Il2CppCodeGenWriteBarrier((void**)(&___SerializeInfosSingleValue_3), (void*)value);
  1814. }
  1815. inline static int32_t get_offset_of_OnSerializeSingleValue_4() { return static_cast<int32_t>(offsetof(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9, ___OnSerializeSingleValue_4)); }
  1816. inline Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * get_OnSerializeSingleValue_4() const { return ___OnSerializeSingleValue_4; }
  1817. inline Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B ** get_address_of_OnSerializeSingleValue_4() { return &___OnSerializeSingleValue_4; }
  1818. inline void set_OnSerializeSingleValue_4(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * value)
  1819. {
  1820. ___OnSerializeSingleValue_4 = value;
  1821. Il2CppCodeGenWriteBarrier((void**)(&___OnSerializeSingleValue_4), (void*)value);
  1822. }
  1823. inline static int32_t get_offset_of_OnDeserializeSingleValue_5() { return static_cast<int32_t>(offsetof(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9, ___OnDeserializeSingleValue_5)); }
  1824. inline Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * get_OnDeserializeSingleValue_5() const { return ___OnDeserializeSingleValue_5; }
  1825. inline Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 ** get_address_of_OnDeserializeSingleValue_5() { return &___OnDeserializeSingleValue_5; }
  1826. inline void set_OnDeserializeSingleValue_5(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * value)
  1827. {
  1828. ___OnDeserializeSingleValue_5 = value;
  1829. Il2CppCodeGenWriteBarrier((void**)(&___OnDeserializeSingleValue_5), (void*)value);
  1830. }
  1831. };
  1832. // o0.Serialize/CustomByMember
  1833. struct CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E : public RuntimeObject
  1834. {
  1835. public:
  1836. // System.Collections.Generic.Dictionary`2<System.Type,System.Type> o0.Serialize/CustomByMember::<ItemTypes>k__BackingField
  1837. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * ___U3CItemTypesU3Ek__BackingField_0;
  1838. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>> o0.Serialize/CustomByMember::<SerializeMemberInfos>k__BackingField
  1839. Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * ___U3CSerializeMemberInfosU3Ek__BackingField_1;
  1840. public:
  1841. inline static int32_t get_offset_of_U3CItemTypesU3Ek__BackingField_0() { return static_cast<int32_t>(offsetof(CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E, ___U3CItemTypesU3Ek__BackingField_0)); }
  1842. inline Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * get_U3CItemTypesU3Ek__BackingField_0() const { return ___U3CItemTypesU3Ek__BackingField_0; }
  1843. inline Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 ** get_address_of_U3CItemTypesU3Ek__BackingField_0() { return &___U3CItemTypesU3Ek__BackingField_0; }
  1844. inline void set_U3CItemTypesU3Ek__BackingField_0(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * value)
  1845. {
  1846. ___U3CItemTypesU3Ek__BackingField_0 = value;
  1847. Il2CppCodeGenWriteBarrier((void**)(&___U3CItemTypesU3Ek__BackingField_0), (void*)value);
  1848. }
  1849. inline static int32_t get_offset_of_U3CSerializeMemberInfosU3Ek__BackingField_1() { return static_cast<int32_t>(offsetof(CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E, ___U3CSerializeMemberInfosU3Ek__BackingField_1)); }
  1850. inline Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * get_U3CSerializeMemberInfosU3Ek__BackingField_1() const { return ___U3CSerializeMemberInfosU3Ek__BackingField_1; }
  1851. inline Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 ** get_address_of_U3CSerializeMemberInfosU3Ek__BackingField_1() { return &___U3CSerializeMemberInfosU3Ek__BackingField_1; }
  1852. inline void set_U3CSerializeMemberInfosU3Ek__BackingField_1(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * value)
  1853. {
  1854. ___U3CSerializeMemberInfosU3Ek__BackingField_1 = value;
  1855. Il2CppCodeGenWriteBarrier((void**)(&___U3CSerializeMemberInfosU3Ek__BackingField_1), (void*)value);
  1856. }
  1857. };
  1858. // o0.o0/<>c
  1859. struct U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 : public RuntimeObject
  1860. {
  1861. public:
  1862. public:
  1863. };
  1864. struct U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_StaticFields
  1865. {
  1866. public:
  1867. // o0.o0/<>c o0.o0/<>c::<>9
  1868. U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * ___U3CU3E9_0;
  1869. public:
  1870. inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_StaticFields, ___U3CU3E9_0)); }
  1871. inline U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
  1872. inline U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
  1873. inline void set_U3CU3E9_0(U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * value)
  1874. {
  1875. ___U3CU3E9_0 = value;
  1876. Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
  1877. }
  1878. };
  1879. // o0.Serialize/CustomByFunction/<>c
  1880. struct U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 : public RuntimeObject
  1881. {
  1882. public:
  1883. public:
  1884. };
  1885. struct U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields
  1886. {
  1887. public:
  1888. // o0.Serialize/CustomByFunction/<>c o0.Serialize/CustomByFunction/<>c::<>9
  1889. U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * ___U3CU3E9_0;
  1890. // System.Action o0.Serialize/CustomByFunction/<>c::<>9__3_0
  1891. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___U3CU3E9__3_0_1;
  1892. public:
  1893. inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast<int32_t>(offsetof(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields, ___U3CU3E9_0)); }
  1894. inline U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * get_U3CU3E9_0() const { return ___U3CU3E9_0; }
  1895. inline U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; }
  1896. inline void set_U3CU3E9_0(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * value)
  1897. {
  1898. ___U3CU3E9_0 = value;
  1899. Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value);
  1900. }
  1901. inline static int32_t get_offset_of_U3CU3E9__3_0_1() { return static_cast<int32_t>(offsetof(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields, ___U3CU3E9__3_0_1)); }
  1902. inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_U3CU3E9__3_0_1() const { return ___U3CU3E9__3_0_1; }
  1903. inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_U3CU3E9__3_0_1() { return &___U3CU3E9__3_0_1; }
  1904. inline void set_U3CU3E9__3_0_1(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value)
  1905. {
  1906. ___U3CU3E9__3_0_1 = value;
  1907. Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__3_0_1), (void*)value);
  1908. }
  1909. };
  1910. // o0.Serialize/CustomByFunction/<>c__DisplayClass12_0
  1911. struct U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 : public RuntimeObject
  1912. {
  1913. public:
  1914. // System.Func`2<System.Object,System.Object> o0.Serialize/CustomByFunction/<>c__DisplayClass12_0::DerializeTo
  1915. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___DerializeTo_0;
  1916. public:
  1917. inline static int32_t get_offset_of_DerializeTo_0() { return static_cast<int32_t>(offsetof(U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72, ___DerializeTo_0)); }
  1918. inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * get_DerializeTo_0() const { return ___DerializeTo_0; }
  1919. inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 ** get_address_of_DerializeTo_0() { return &___DerializeTo_0; }
  1920. inline void set_DerializeTo_0(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * value)
  1921. {
  1922. ___DerializeTo_0 = value;
  1923. Il2CppCodeGenWriteBarrier((void**)(&___DerializeTo_0), (void*)value);
  1924. }
  1925. };
  1926. // System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>
  1927. struct Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2
  1928. {
  1929. public:
  1930. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
  1931. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * ___list_0;
  1932. // System.Int32 System.Collections.Generic.List`1/Enumerator::index
  1933. int32_t ___index_1;
  1934. // System.Int32 System.Collections.Generic.List`1/Enumerator::version
  1935. int32_t ___version_2;
  1936. // T System.Collections.Generic.List`1/Enumerator::current
  1937. MemberInfo_t * ___current_3;
  1938. public:
  1939. inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2, ___list_0)); }
  1940. inline List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * get_list_0() const { return ___list_0; }
  1941. inline List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 ** get_address_of_list_0() { return &___list_0; }
  1942. inline void set_list_0(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * value)
  1943. {
  1944. ___list_0 = value;
  1945. Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
  1946. }
  1947. inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2, ___index_1)); }
  1948. inline int32_t get_index_1() const { return ___index_1; }
  1949. inline int32_t* get_address_of_index_1() { return &___index_1; }
  1950. inline void set_index_1(int32_t value)
  1951. {
  1952. ___index_1 = value;
  1953. }
  1954. inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2, ___version_2)); }
  1955. inline int32_t get_version_2() const { return ___version_2; }
  1956. inline int32_t* get_address_of_version_2() { return &___version_2; }
  1957. inline void set_version_2(int32_t value)
  1958. {
  1959. ___version_2 = value;
  1960. }
  1961. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2, ___current_3)); }
  1962. inline MemberInfo_t * get_current_3() const { return ___current_3; }
  1963. inline MemberInfo_t ** get_address_of_current_3() { return &___current_3; }
  1964. inline void set_current_3(MemberInfo_t * value)
  1965. {
  1966. ___current_3 = value;
  1967. Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
  1968. }
  1969. };
  1970. // System.Collections.Generic.List`1/Enumerator<System.Object>
  1971. struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6
  1972. {
  1973. public:
  1974. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
  1975. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___list_0;
  1976. // System.Int32 System.Collections.Generic.List`1/Enumerator::index
  1977. int32_t ___index_1;
  1978. // System.Int32 System.Collections.Generic.List`1/Enumerator::version
  1979. int32_t ___version_2;
  1980. // T System.Collections.Generic.List`1/Enumerator::current
  1981. RuntimeObject * ___current_3;
  1982. public:
  1983. inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); }
  1984. inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; }
  1985. inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; }
  1986. inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value)
  1987. {
  1988. ___list_0 = value;
  1989. Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
  1990. }
  1991. inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); }
  1992. inline int32_t get_index_1() const { return ___index_1; }
  1993. inline int32_t* get_address_of_index_1() { return &___index_1; }
  1994. inline void set_index_1(int32_t value)
  1995. {
  1996. ___index_1 = value;
  1997. }
  1998. inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); }
  1999. inline int32_t get_version_2() const { return ___version_2; }
  2000. inline int32_t* get_address_of_version_2() { return &___version_2; }
  2001. inline void set_version_2(int32_t value)
  2002. {
  2003. ___version_2 = value;
  2004. }
  2005. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); }
  2006. inline RuntimeObject * get_current_3() const { return ___current_3; }
  2007. inline RuntimeObject ** get_address_of_current_3() { return &___current_3; }
  2008. inline void set_current_3(RuntimeObject * value)
  2009. {
  2010. ___current_3 = value;
  2011. Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
  2012. }
  2013. };
  2014. // System.Collections.Generic.List`1/Enumerator<System.Type>
  2015. struct Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC
  2016. {
  2017. public:
  2018. // System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::list
  2019. List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * ___list_0;
  2020. // System.Int32 System.Collections.Generic.List`1/Enumerator::index
  2021. int32_t ___index_1;
  2022. // System.Int32 System.Collections.Generic.List`1/Enumerator::version
  2023. int32_t ___version_2;
  2024. // T System.Collections.Generic.List`1/Enumerator::current
  2025. Type_t * ___current_3;
  2026. public:
  2027. inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC, ___list_0)); }
  2028. inline List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * get_list_0() const { return ___list_0; }
  2029. inline List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 ** get_address_of_list_0() { return &___list_0; }
  2030. inline void set_list_0(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * value)
  2031. {
  2032. ___list_0 = value;
  2033. Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
  2034. }
  2035. inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC, ___index_1)); }
  2036. inline int32_t get_index_1() const { return ___index_1; }
  2037. inline int32_t* get_address_of_index_1() { return &___index_1; }
  2038. inline void set_index_1(int32_t value)
  2039. {
  2040. ___index_1 = value;
  2041. }
  2042. inline static int32_t get_offset_of_version_2() { return static_cast<int32_t>(offsetof(Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC, ___version_2)); }
  2043. inline int32_t get_version_2() const { return ___version_2; }
  2044. inline int32_t* get_address_of_version_2() { return &___version_2; }
  2045. inline void set_version_2(int32_t value)
  2046. {
  2047. ___version_2 = value;
  2048. }
  2049. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC, ___current_3)); }
  2050. inline Type_t * get_current_3() const { return ___current_3; }
  2051. inline Type_t ** get_address_of_current_3() { return &___current_3; }
  2052. inline void set_current_3(Type_t * value)
  2053. {
  2054. ___current_3 = value;
  2055. Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value);
  2056. }
  2057. };
  2058. // System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>
  2059. struct ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7
  2060. {
  2061. public:
  2062. // T1 System.ValueTuple`2::Item1
  2063. MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* ___Item1_0;
  2064. // T2 System.ValueTuple`2::Item2
  2065. Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * ___Item2_1;
  2066. public:
  2067. inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7, ___Item1_0)); }
  2068. inline MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* get_Item1_0() const { return ___Item1_0; }
  2069. inline MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D** get_address_of_Item1_0() { return &___Item1_0; }
  2070. inline void set_Item1_0(MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* value)
  2071. {
  2072. ___Item1_0 = value;
  2073. Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
  2074. }
  2075. inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7, ___Item2_1)); }
  2076. inline Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * get_Item2_1() const { return ___Item2_1; }
  2077. inline Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D ** get_address_of_Item2_1() { return &___Item2_1; }
  2078. inline void set_Item2_1(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * value)
  2079. {
  2080. ___Item2_1 = value;
  2081. Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
  2082. }
  2083. };
  2084. // System.ValueTuple`2<System.Object,System.Object>
  2085. struct ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403
  2086. {
  2087. public:
  2088. // T1 System.ValueTuple`2::Item1
  2089. RuntimeObject * ___Item1_0;
  2090. // T2 System.ValueTuple`2::Item2
  2091. RuntimeObject * ___Item2_1;
  2092. public:
  2093. inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item1_0)); }
  2094. inline RuntimeObject * get_Item1_0() const { return ___Item1_0; }
  2095. inline RuntimeObject ** get_address_of_Item1_0() { return &___Item1_0; }
  2096. inline void set_Item1_0(RuntimeObject * value)
  2097. {
  2098. ___Item1_0 = value;
  2099. Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
  2100. }
  2101. inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403, ___Item2_1)); }
  2102. inline RuntimeObject * get_Item2_1() const { return ___Item2_1; }
  2103. inline RuntimeObject ** get_address_of_Item2_1() { return &___Item2_1; }
  2104. inline void set_Item2_1(RuntimeObject * value)
  2105. {
  2106. ___Item2_1 = value;
  2107. Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
  2108. }
  2109. };
  2110. // System.ValueTuple`2<System.String,System.Type>
  2111. struct ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539
  2112. {
  2113. public:
  2114. // T1 System.ValueTuple`2::Item1
  2115. String_t* ___Item1_0;
  2116. // T2 System.ValueTuple`2::Item2
  2117. Type_t * ___Item2_1;
  2118. public:
  2119. inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539, ___Item1_0)); }
  2120. inline String_t* get_Item1_0() const { return ___Item1_0; }
  2121. inline String_t** get_address_of_Item1_0() { return &___Item1_0; }
  2122. inline void set_Item1_0(String_t* value)
  2123. {
  2124. ___Item1_0 = value;
  2125. Il2CppCodeGenWriteBarrier((void**)(&___Item1_0), (void*)value);
  2126. }
  2127. inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539, ___Item2_1)); }
  2128. inline Type_t * get_Item2_1() const { return ___Item2_1; }
  2129. inline Type_t ** get_address_of_Item2_1() { return &___Item2_1; }
  2130. inline void set_Item2_1(Type_t * value)
  2131. {
  2132. ___Item2_1 = value;
  2133. Il2CppCodeGenWriteBarrier((void**)(&___Item2_1), (void*)value);
  2134. }
  2135. };
  2136. // System.Numerics.BigInteger
  2137. struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2
  2138. {
  2139. public:
  2140. // System.Int32 System.Numerics.BigInteger::_sign
  2141. int32_t ____sign_0;
  2142. // System.UInt32[] System.Numerics.BigInteger::_bits
  2143. UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* ____bits_1;
  2144. public:
  2145. inline static int32_t get_offset_of__sign_0() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2, ____sign_0)); }
  2146. inline int32_t get__sign_0() const { return ____sign_0; }
  2147. inline int32_t* get_address_of__sign_0() { return &____sign_0; }
  2148. inline void set__sign_0(int32_t value)
  2149. {
  2150. ____sign_0 = value;
  2151. }
  2152. inline static int32_t get_offset_of__bits_1() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2, ____bits_1)); }
  2153. inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* get__bits_1() const { return ____bits_1; }
  2154. inline UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF** get_address_of__bits_1() { return &____bits_1; }
  2155. inline void set__bits_1(UInt32U5BU5D_tCF06F1E9E72E0302C762578FF5358CC523F2A2CF* value)
  2156. {
  2157. ____bits_1 = value;
  2158. Il2CppCodeGenWriteBarrier((void**)(&____bits_1), (void*)value);
  2159. }
  2160. };
  2161. struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields
  2162. {
  2163. public:
  2164. // System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinInt
  2165. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnMinInt_2;
  2166. // System.Numerics.BigInteger System.Numerics.BigInteger::s_bnOneInt
  2167. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnOneInt_3;
  2168. // System.Numerics.BigInteger System.Numerics.BigInteger::s_bnZeroInt
  2169. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnZeroInt_4;
  2170. // System.Numerics.BigInteger System.Numerics.BigInteger::s_bnMinusOneInt
  2171. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___s_bnMinusOneInt_5;
  2172. // System.Byte[] System.Numerics.BigInteger::s_success
  2173. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___s_success_6;
  2174. public:
  2175. inline static int32_t get_offset_of_s_bnMinInt_2() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnMinInt_2)); }
  2176. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnMinInt_2() const { return ___s_bnMinInt_2; }
  2177. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnMinInt_2() { return &___s_bnMinInt_2; }
  2178. inline void set_s_bnMinInt_2(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  2179. {
  2180. ___s_bnMinInt_2 = value;
  2181. Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnMinInt_2))->____bits_1), (void*)NULL);
  2182. }
  2183. inline static int32_t get_offset_of_s_bnOneInt_3() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnOneInt_3)); }
  2184. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnOneInt_3() const { return ___s_bnOneInt_3; }
  2185. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnOneInt_3() { return &___s_bnOneInt_3; }
  2186. inline void set_s_bnOneInt_3(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  2187. {
  2188. ___s_bnOneInt_3 = value;
  2189. Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnOneInt_3))->____bits_1), (void*)NULL);
  2190. }
  2191. inline static int32_t get_offset_of_s_bnZeroInt_4() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnZeroInt_4)); }
  2192. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnZeroInt_4() const { return ___s_bnZeroInt_4; }
  2193. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnZeroInt_4() { return &___s_bnZeroInt_4; }
  2194. inline void set_s_bnZeroInt_4(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  2195. {
  2196. ___s_bnZeroInt_4 = value;
  2197. Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnZeroInt_4))->____bits_1), (void*)NULL);
  2198. }
  2199. inline static int32_t get_offset_of_s_bnMinusOneInt_5() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_bnMinusOneInt_5)); }
  2200. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_s_bnMinusOneInt_5() const { return ___s_bnMinusOneInt_5; }
  2201. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_s_bnMinusOneInt_5() { return &___s_bnMinusOneInt_5; }
  2202. inline void set_s_bnMinusOneInt_5(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  2203. {
  2204. ___s_bnMinusOneInt_5 = value;
  2205. Il2CppCodeGenWriteBarrier((void**)&(((&___s_bnMinusOneInt_5))->____bits_1), (void*)NULL);
  2206. }
  2207. inline static int32_t get_offset_of_s_success_6() { return static_cast<int32_t>(offsetof(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_StaticFields, ___s_success_6)); }
  2208. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_s_success_6() const { return ___s_success_6; }
  2209. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_s_success_6() { return &___s_success_6; }
  2210. inline void set_s_success_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  2211. {
  2212. ___s_success_6 = value;
  2213. Il2CppCodeGenWriteBarrier((void**)(&___s_success_6), (void*)value);
  2214. }
  2215. };
  2216. // Native definition for P/Invoke marshalling of System.Numerics.BigInteger
  2217. struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_pinvoke
  2218. {
  2219. int32_t ____sign_0;
  2220. Il2CppSafeArray/*NONE*/* ____bits_1;
  2221. };
  2222. // Native definition for COM marshalling of System.Numerics.BigInteger
  2223. struct BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_com
  2224. {
  2225. int32_t ____sign_0;
  2226. Il2CppSafeArray/*NONE*/* ____bits_1;
  2227. };
  2228. // System.Boolean
  2229. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  2230. {
  2231. public:
  2232. // System.Boolean System.Boolean::m_value
  2233. bool ___m_value_0;
  2234. public:
  2235. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  2236. inline bool get_m_value_0() const { return ___m_value_0; }
  2237. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  2238. inline void set_m_value_0(bool value)
  2239. {
  2240. ___m_value_0 = value;
  2241. }
  2242. };
  2243. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  2244. {
  2245. public:
  2246. // System.String System.Boolean::TrueString
  2247. String_t* ___TrueString_5;
  2248. // System.String System.Boolean::FalseString
  2249. String_t* ___FalseString_6;
  2250. public:
  2251. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  2252. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  2253. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  2254. inline void set_TrueString_5(String_t* value)
  2255. {
  2256. ___TrueString_5 = value;
  2257. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  2258. }
  2259. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  2260. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  2261. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  2262. inline void set_FalseString_6(String_t* value)
  2263. {
  2264. ___FalseString_6 = value;
  2265. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  2266. }
  2267. };
  2268. // System.Runtime.CompilerServices.CompilerGeneratedAttribute
  2269. struct CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  2270. {
  2271. public:
  2272. public:
  2273. };
  2274. // System.Double
  2275. struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181
  2276. {
  2277. public:
  2278. // System.Double System.Double::m_value
  2279. double ___m_value_0;
  2280. public:
  2281. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); }
  2282. inline double get_m_value_0() const { return ___m_value_0; }
  2283. inline double* get_address_of_m_value_0() { return &___m_value_0; }
  2284. inline void set_m_value_0(double value)
  2285. {
  2286. ___m_value_0 = value;
  2287. }
  2288. };
  2289. struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields
  2290. {
  2291. public:
  2292. // System.Double System.Double::NegativeZero
  2293. double ___NegativeZero_7;
  2294. public:
  2295. inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); }
  2296. inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
  2297. inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
  2298. inline void set_NegativeZero_7(double value)
  2299. {
  2300. ___NegativeZero_7 = value;
  2301. }
  2302. };
  2303. // System.Enum
  2304. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  2305. {
  2306. public:
  2307. public:
  2308. };
  2309. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  2310. {
  2311. public:
  2312. // System.Char[] System.Enum::enumSeperatorCharArray
  2313. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  2314. public:
  2315. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  2316. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  2317. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  2318. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  2319. {
  2320. ___enumSeperatorCharArray_0 = value;
  2321. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  2322. }
  2323. };
  2324. // Native definition for P/Invoke marshalling of System.Enum
  2325. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  2326. {
  2327. };
  2328. // Native definition for COM marshalling of System.Enum
  2329. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  2330. {
  2331. };
  2332. // System.Reflection.FieldInfo
  2333. struct FieldInfo_t : public MemberInfo_t
  2334. {
  2335. public:
  2336. public:
  2337. };
  2338. // System.Int16
  2339. struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A
  2340. {
  2341. public:
  2342. // System.Int16 System.Int16::m_value
  2343. int16_t ___m_value_0;
  2344. public:
  2345. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_tD0F031114106263BB459DA1F099FF9F42691295A, ___m_value_0)); }
  2346. inline int16_t get_m_value_0() const { return ___m_value_0; }
  2347. inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
  2348. inline void set_m_value_0(int16_t value)
  2349. {
  2350. ___m_value_0 = value;
  2351. }
  2352. };
  2353. // System.Int32
  2354. struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
  2355. {
  2356. public:
  2357. // System.Int32 System.Int32::m_value
  2358. int32_t ___m_value_0;
  2359. public:
  2360. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
  2361. inline int32_t get_m_value_0() const { return ___m_value_0; }
  2362. inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
  2363. inline void set_m_value_0(int32_t value)
  2364. {
  2365. ___m_value_0 = value;
  2366. }
  2367. };
  2368. // System.Int64
  2369. struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3
  2370. {
  2371. public:
  2372. // System.Int64 System.Int64::m_value
  2373. int64_t ___m_value_0;
  2374. public:
  2375. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); }
  2376. inline int64_t get_m_value_0() const { return ___m_value_0; }
  2377. inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
  2378. inline void set_m_value_0(int64_t value)
  2379. {
  2380. ___m_value_0 = value;
  2381. }
  2382. };
  2383. // System.IntPtr
  2384. struct IntPtr_t
  2385. {
  2386. public:
  2387. // System.Void* System.IntPtr::m_value
  2388. void* ___m_value_0;
  2389. public:
  2390. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  2391. inline void* get_m_value_0() const { return ___m_value_0; }
  2392. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  2393. inline void set_m_value_0(void* value)
  2394. {
  2395. ___m_value_0 = value;
  2396. }
  2397. };
  2398. struct IntPtr_t_StaticFields
  2399. {
  2400. public:
  2401. // System.IntPtr System.IntPtr::Zero
  2402. intptr_t ___Zero_1;
  2403. public:
  2404. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  2405. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  2406. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  2407. inline void set_Zero_1(intptr_t value)
  2408. {
  2409. ___Zero_1 = value;
  2410. }
  2411. };
  2412. // System.Reflection.MethodBase
  2413. struct MethodBase_t : public MemberInfo_t
  2414. {
  2415. public:
  2416. public:
  2417. };
  2418. // System.Reflection.PropertyInfo
  2419. struct PropertyInfo_t : public MemberInfo_t
  2420. {
  2421. public:
  2422. public:
  2423. };
  2424. // o0.Serialize
  2425. struct Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F : public Attribute_t037CA9D9F3B742C063DB364D2EEBBF9FC5772C71
  2426. {
  2427. public:
  2428. public:
  2429. };
  2430. struct Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_StaticFields
  2431. {
  2432. public:
  2433. // o0.Serialize/CustomByFunction o0.Serialize::ByFunc
  2434. CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * ___ByFunc_0;
  2435. // o0.Serialize/CustomByMember o0.Serialize::ByMember
  2436. CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * ___ByMember_1;
  2437. public:
  2438. inline static int32_t get_offset_of_ByFunc_0() { return static_cast<int32_t>(offsetof(Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_StaticFields, ___ByFunc_0)); }
  2439. inline CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * get_ByFunc_0() const { return ___ByFunc_0; }
  2440. inline CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 ** get_address_of_ByFunc_0() { return &___ByFunc_0; }
  2441. inline void set_ByFunc_0(CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * value)
  2442. {
  2443. ___ByFunc_0 = value;
  2444. Il2CppCodeGenWriteBarrier((void**)(&___ByFunc_0), (void*)value);
  2445. }
  2446. inline static int32_t get_offset_of_ByMember_1() { return static_cast<int32_t>(offsetof(Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_StaticFields, ___ByMember_1)); }
  2447. inline CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * get_ByMember_1() const { return ___ByMember_1; }
  2448. inline CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E ** get_address_of_ByMember_1() { return &___ByMember_1; }
  2449. inline void set_ByMember_1(CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * value)
  2450. {
  2451. ___ByMember_1 = value;
  2452. Il2CppCodeGenWriteBarrier((void**)(&___ByMember_1), (void*)value);
  2453. }
  2454. };
  2455. // System.Single
  2456. struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
  2457. {
  2458. public:
  2459. // System.Single System.Single::m_value
  2460. float ___m_value_0;
  2461. public:
  2462. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
  2463. inline float get_m_value_0() const { return ___m_value_0; }
  2464. inline float* get_address_of_m_value_0() { return &___m_value_0; }
  2465. inline void set_m_value_0(float value)
  2466. {
  2467. ___m_value_0 = value;
  2468. }
  2469. };
  2470. // System.UInt16
  2471. struct UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD
  2472. {
  2473. public:
  2474. // System.UInt16 System.UInt16::m_value
  2475. uint16_t ___m_value_0;
  2476. public:
  2477. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_t894EA9D4FB7C799B244E7BBF2DF0EEEDBC77A8BD, ___m_value_0)); }
  2478. inline uint16_t get_m_value_0() const { return ___m_value_0; }
  2479. inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
  2480. inline void set_m_value_0(uint16_t value)
  2481. {
  2482. ___m_value_0 = value;
  2483. }
  2484. };
  2485. // System.UInt32
  2486. struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15
  2487. {
  2488. public:
  2489. // System.UInt32 System.UInt32::m_value
  2490. uint32_t ___m_value_0;
  2491. public:
  2492. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); }
  2493. inline uint32_t get_m_value_0() const { return ___m_value_0; }
  2494. inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
  2495. inline void set_m_value_0(uint32_t value)
  2496. {
  2497. ___m_value_0 = value;
  2498. }
  2499. };
  2500. // System.UInt64
  2501. struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
  2502. {
  2503. public:
  2504. // System.UInt64 System.UInt64::m_value
  2505. uint64_t ___m_value_0;
  2506. public:
  2507. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); }
  2508. inline uint64_t get_m_value_0() const { return ___m_value_0; }
  2509. inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
  2510. inline void set_m_value_0(uint64_t value)
  2511. {
  2512. ___m_value_0 = value;
  2513. }
  2514. };
  2515. // System.Void
  2516. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  2517. {
  2518. public:
  2519. union
  2520. {
  2521. struct
  2522. {
  2523. };
  2524. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  2525. };
  2526. public:
  2527. };
  2528. // o0.Serialize/Member
  2529. struct Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F
  2530. {
  2531. public:
  2532. // System.Reflection.MemberInfo o0.Serialize/Member::Info
  2533. MemberInfo_t * ___Info_0;
  2534. // System.Type o0.Serialize/Member::Type
  2535. Type_t * ___Type_1;
  2536. // System.String o0.Serialize/Member::Name
  2537. String_t* ___Name_2;
  2538. // System.Func`2<System.Object,System.Object> o0.Serialize/Member::Getter
  2539. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___Getter_3;
  2540. // System.Action`2<System.Object,System.Object> o0.Serialize/Member::Setter
  2541. Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * ___Setter_4;
  2542. public:
  2543. inline static int32_t get_offset_of_Info_0() { return static_cast<int32_t>(offsetof(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F, ___Info_0)); }
  2544. inline MemberInfo_t * get_Info_0() const { return ___Info_0; }
  2545. inline MemberInfo_t ** get_address_of_Info_0() { return &___Info_0; }
  2546. inline void set_Info_0(MemberInfo_t * value)
  2547. {
  2548. ___Info_0 = value;
  2549. Il2CppCodeGenWriteBarrier((void**)(&___Info_0), (void*)value);
  2550. }
  2551. inline static int32_t get_offset_of_Type_1() { return static_cast<int32_t>(offsetof(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F, ___Type_1)); }
  2552. inline Type_t * get_Type_1() const { return ___Type_1; }
  2553. inline Type_t ** get_address_of_Type_1() { return &___Type_1; }
  2554. inline void set_Type_1(Type_t * value)
  2555. {
  2556. ___Type_1 = value;
  2557. Il2CppCodeGenWriteBarrier((void**)(&___Type_1), (void*)value);
  2558. }
  2559. inline static int32_t get_offset_of_Name_2() { return static_cast<int32_t>(offsetof(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F, ___Name_2)); }
  2560. inline String_t* get_Name_2() const { return ___Name_2; }
  2561. inline String_t** get_address_of_Name_2() { return &___Name_2; }
  2562. inline void set_Name_2(String_t* value)
  2563. {
  2564. ___Name_2 = value;
  2565. Il2CppCodeGenWriteBarrier((void**)(&___Name_2), (void*)value);
  2566. }
  2567. inline static int32_t get_offset_of_Getter_3() { return static_cast<int32_t>(offsetof(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F, ___Getter_3)); }
  2568. inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * get_Getter_3() const { return ___Getter_3; }
  2569. inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 ** get_address_of_Getter_3() { return &___Getter_3; }
  2570. inline void set_Getter_3(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * value)
  2571. {
  2572. ___Getter_3 = value;
  2573. Il2CppCodeGenWriteBarrier((void**)(&___Getter_3), (void*)value);
  2574. }
  2575. inline static int32_t get_offset_of_Setter_4() { return static_cast<int32_t>(offsetof(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F, ___Setter_4)); }
  2576. inline Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * get_Setter_4() const { return ___Setter_4; }
  2577. inline Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D ** get_address_of_Setter_4() { return &___Setter_4; }
  2578. inline void set_Setter_4(Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * value)
  2579. {
  2580. ___Setter_4 = value;
  2581. Il2CppCodeGenWriteBarrier((void**)(&___Setter_4), (void*)value);
  2582. }
  2583. };
  2584. // Native definition for P/Invoke marshalling of o0.Serialize/Member
  2585. struct Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_pinvoke
  2586. {
  2587. MemberInfo_t * ___Info_0;
  2588. Type_t * ___Type_1;
  2589. char* ___Name_2;
  2590. Il2CppMethodPointer ___Getter_3;
  2591. Il2CppMethodPointer ___Setter_4;
  2592. };
  2593. // Native definition for COM marshalling of o0.Serialize/Member
  2594. struct Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_com
  2595. {
  2596. MemberInfo_t * ___Info_0;
  2597. Type_t * ___Type_1;
  2598. Il2CppChar* ___Name_2;
  2599. Il2CppMethodPointer ___Getter_3;
  2600. Il2CppMethodPointer ___Setter_4;
  2601. };
  2602. // System.Reflection.BindingFlags
  2603. struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733
  2604. {
  2605. public:
  2606. // System.Int32 System.Reflection.BindingFlags::value__
  2607. int32_t ___value___2;
  2608. public:
  2609. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); }
  2610. inline int32_t get_value___2() const { return ___value___2; }
  2611. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2612. inline void set_value___2(int32_t value)
  2613. {
  2614. ___value___2 = value;
  2615. }
  2616. };
  2617. // System.Delegate
  2618. struct Delegate_t : public RuntimeObject
  2619. {
  2620. public:
  2621. // System.IntPtr System.Delegate::method_ptr
  2622. Il2CppMethodPointer ___method_ptr_0;
  2623. // System.IntPtr System.Delegate::invoke_impl
  2624. intptr_t ___invoke_impl_1;
  2625. // System.Object System.Delegate::m_target
  2626. RuntimeObject * ___m_target_2;
  2627. // System.IntPtr System.Delegate::method
  2628. intptr_t ___method_3;
  2629. // System.IntPtr System.Delegate::delegate_trampoline
  2630. intptr_t ___delegate_trampoline_4;
  2631. // System.IntPtr System.Delegate::extra_arg
  2632. intptr_t ___extra_arg_5;
  2633. // System.IntPtr System.Delegate::method_code
  2634. intptr_t ___method_code_6;
  2635. // System.Reflection.MethodInfo System.Delegate::method_info
  2636. MethodInfo_t * ___method_info_7;
  2637. // System.Reflection.MethodInfo System.Delegate::original_method_info
  2638. MethodInfo_t * ___original_method_info_8;
  2639. // System.DelegateData System.Delegate::data
  2640. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  2641. // System.Boolean System.Delegate::method_is_virtual
  2642. bool ___method_is_virtual_10;
  2643. public:
  2644. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
  2645. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  2646. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  2647. inline void set_method_ptr_0(Il2CppMethodPointer value)
  2648. {
  2649. ___method_ptr_0 = value;
  2650. }
  2651. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
  2652. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  2653. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  2654. inline void set_invoke_impl_1(intptr_t value)
  2655. {
  2656. ___invoke_impl_1 = value;
  2657. }
  2658. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
  2659. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  2660. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  2661. inline void set_m_target_2(RuntimeObject * value)
  2662. {
  2663. ___m_target_2 = value;
  2664. Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
  2665. }
  2666. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
  2667. inline intptr_t get_method_3() const { return ___method_3; }
  2668. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  2669. inline void set_method_3(intptr_t value)
  2670. {
  2671. ___method_3 = value;
  2672. }
  2673. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
  2674. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  2675. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  2676. inline void set_delegate_trampoline_4(intptr_t value)
  2677. {
  2678. ___delegate_trampoline_4 = value;
  2679. }
  2680. inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
  2681. inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
  2682. inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
  2683. inline void set_extra_arg_5(intptr_t value)
  2684. {
  2685. ___extra_arg_5 = value;
  2686. }
  2687. inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
  2688. inline intptr_t get_method_code_6() const { return ___method_code_6; }
  2689. inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
  2690. inline void set_method_code_6(intptr_t value)
  2691. {
  2692. ___method_code_6 = value;
  2693. }
  2694. inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
  2695. inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
  2696. inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
  2697. inline void set_method_info_7(MethodInfo_t * value)
  2698. {
  2699. ___method_info_7 = value;
  2700. Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
  2701. }
  2702. inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
  2703. inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
  2704. inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
  2705. inline void set_original_method_info_8(MethodInfo_t * value)
  2706. {
  2707. ___original_method_info_8 = value;
  2708. Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
  2709. }
  2710. inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
  2711. inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
  2712. inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
  2713. inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
  2714. {
  2715. ___data_9 = value;
  2716. Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
  2717. }
  2718. inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
  2719. inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
  2720. inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
  2721. inline void set_method_is_virtual_10(bool value)
  2722. {
  2723. ___method_is_virtual_10 = value;
  2724. }
  2725. };
  2726. // Native definition for P/Invoke marshalling of System.Delegate
  2727. struct Delegate_t_marshaled_pinvoke
  2728. {
  2729. intptr_t ___method_ptr_0;
  2730. intptr_t ___invoke_impl_1;
  2731. Il2CppIUnknown* ___m_target_2;
  2732. intptr_t ___method_3;
  2733. intptr_t ___delegate_trampoline_4;
  2734. intptr_t ___extra_arg_5;
  2735. intptr_t ___method_code_6;
  2736. MethodInfo_t * ___method_info_7;
  2737. MethodInfo_t * ___original_method_info_8;
  2738. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  2739. int32_t ___method_is_virtual_10;
  2740. };
  2741. // Native definition for COM marshalling of System.Delegate
  2742. struct Delegate_t_marshaled_com
  2743. {
  2744. intptr_t ___method_ptr_0;
  2745. intptr_t ___invoke_impl_1;
  2746. Il2CppIUnknown* ___m_target_2;
  2747. intptr_t ___method_3;
  2748. intptr_t ___delegate_trampoline_4;
  2749. intptr_t ___extra_arg_5;
  2750. intptr_t ___method_code_6;
  2751. MethodInfo_t * ___method_info_7;
  2752. MethodInfo_t * ___original_method_info_8;
  2753. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  2754. int32_t ___method_is_virtual_10;
  2755. };
  2756. // System.Exception
  2757. struct Exception_t : public RuntimeObject
  2758. {
  2759. public:
  2760. // System.String System.Exception::_className
  2761. String_t* ____className_1;
  2762. // System.String System.Exception::_message
  2763. String_t* ____message_2;
  2764. // System.Collections.IDictionary System.Exception::_data
  2765. RuntimeObject* ____data_3;
  2766. // System.Exception System.Exception::_innerException
  2767. Exception_t * ____innerException_4;
  2768. // System.String System.Exception::_helpURL
  2769. String_t* ____helpURL_5;
  2770. // System.Object System.Exception::_stackTrace
  2771. RuntimeObject * ____stackTrace_6;
  2772. // System.String System.Exception::_stackTraceString
  2773. String_t* ____stackTraceString_7;
  2774. // System.String System.Exception::_remoteStackTraceString
  2775. String_t* ____remoteStackTraceString_8;
  2776. // System.Int32 System.Exception::_remoteStackIndex
  2777. int32_t ____remoteStackIndex_9;
  2778. // System.Object System.Exception::_dynamicMethods
  2779. RuntimeObject * ____dynamicMethods_10;
  2780. // System.Int32 System.Exception::_HResult
  2781. int32_t ____HResult_11;
  2782. // System.String System.Exception::_source
  2783. String_t* ____source_12;
  2784. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  2785. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  2786. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  2787. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  2788. // System.IntPtr[] System.Exception::native_trace_ips
  2789. IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
  2790. public:
  2791. inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
  2792. inline String_t* get__className_1() const { return ____className_1; }
  2793. inline String_t** get_address_of__className_1() { return &____className_1; }
  2794. inline void set__className_1(String_t* value)
  2795. {
  2796. ____className_1 = value;
  2797. Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
  2798. }
  2799. inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
  2800. inline String_t* get__message_2() const { return ____message_2; }
  2801. inline String_t** get_address_of__message_2() { return &____message_2; }
  2802. inline void set__message_2(String_t* value)
  2803. {
  2804. ____message_2 = value;
  2805. Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
  2806. }
  2807. inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
  2808. inline RuntimeObject* get__data_3() const { return ____data_3; }
  2809. inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
  2810. inline void set__data_3(RuntimeObject* value)
  2811. {
  2812. ____data_3 = value;
  2813. Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
  2814. }
  2815. inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
  2816. inline Exception_t * get__innerException_4() const { return ____innerException_4; }
  2817. inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
  2818. inline void set__innerException_4(Exception_t * value)
  2819. {
  2820. ____innerException_4 = value;
  2821. Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
  2822. }
  2823. inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
  2824. inline String_t* get__helpURL_5() const { return ____helpURL_5; }
  2825. inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
  2826. inline void set__helpURL_5(String_t* value)
  2827. {
  2828. ____helpURL_5 = value;
  2829. Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
  2830. }
  2831. inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
  2832. inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
  2833. inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
  2834. inline void set__stackTrace_6(RuntimeObject * value)
  2835. {
  2836. ____stackTrace_6 = value;
  2837. Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
  2838. }
  2839. inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
  2840. inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
  2841. inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
  2842. inline void set__stackTraceString_7(String_t* value)
  2843. {
  2844. ____stackTraceString_7 = value;
  2845. Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
  2846. }
  2847. inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
  2848. inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
  2849. inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
  2850. inline void set__remoteStackTraceString_8(String_t* value)
  2851. {
  2852. ____remoteStackTraceString_8 = value;
  2853. Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
  2854. }
  2855. inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
  2856. inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
  2857. inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
  2858. inline void set__remoteStackIndex_9(int32_t value)
  2859. {
  2860. ____remoteStackIndex_9 = value;
  2861. }
  2862. inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
  2863. inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
  2864. inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
  2865. inline void set__dynamicMethods_10(RuntimeObject * value)
  2866. {
  2867. ____dynamicMethods_10 = value;
  2868. Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
  2869. }
  2870. inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
  2871. inline int32_t get__HResult_11() const { return ____HResult_11; }
  2872. inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
  2873. inline void set__HResult_11(int32_t value)
  2874. {
  2875. ____HResult_11 = value;
  2876. }
  2877. inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
  2878. inline String_t* get__source_12() const { return ____source_12; }
  2879. inline String_t** get_address_of__source_12() { return &____source_12; }
  2880. inline void set__source_12(String_t* value)
  2881. {
  2882. ____source_12 = value;
  2883. Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
  2884. }
  2885. inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
  2886. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
  2887. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
  2888. inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
  2889. {
  2890. ____safeSerializationManager_13 = value;
  2891. Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
  2892. }
  2893. inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
  2894. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
  2895. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
  2896. inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
  2897. {
  2898. ___captured_traces_14 = value;
  2899. Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
  2900. }
  2901. inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
  2902. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
  2903. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
  2904. inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
  2905. {
  2906. ___native_trace_ips_15 = value;
  2907. Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
  2908. }
  2909. };
  2910. struct Exception_t_StaticFields
  2911. {
  2912. public:
  2913. // System.Object System.Exception::s_EDILock
  2914. RuntimeObject * ___s_EDILock_0;
  2915. public:
  2916. inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
  2917. inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
  2918. inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
  2919. inline void set_s_EDILock_0(RuntimeObject * value)
  2920. {
  2921. ___s_EDILock_0 = value;
  2922. Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
  2923. }
  2924. };
  2925. // Native definition for P/Invoke marshalling of System.Exception
  2926. struct Exception_t_marshaled_pinvoke
  2927. {
  2928. char* ____className_1;
  2929. char* ____message_2;
  2930. RuntimeObject* ____data_3;
  2931. Exception_t_marshaled_pinvoke* ____innerException_4;
  2932. char* ____helpURL_5;
  2933. Il2CppIUnknown* ____stackTrace_6;
  2934. char* ____stackTraceString_7;
  2935. char* ____remoteStackTraceString_8;
  2936. int32_t ____remoteStackIndex_9;
  2937. Il2CppIUnknown* ____dynamicMethods_10;
  2938. int32_t ____HResult_11;
  2939. char* ____source_12;
  2940. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  2941. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  2942. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  2943. };
  2944. // Native definition for COM marshalling of System.Exception
  2945. struct Exception_t_marshaled_com
  2946. {
  2947. Il2CppChar* ____className_1;
  2948. Il2CppChar* ____message_2;
  2949. RuntimeObject* ____data_3;
  2950. Exception_t_marshaled_com* ____innerException_4;
  2951. Il2CppChar* ____helpURL_5;
  2952. Il2CppIUnknown* ____stackTrace_6;
  2953. Il2CppChar* ____stackTraceString_7;
  2954. Il2CppChar* ____remoteStackTraceString_8;
  2955. int32_t ____remoteStackIndex_9;
  2956. Il2CppIUnknown* ____dynamicMethods_10;
  2957. int32_t ____HResult_11;
  2958. Il2CppChar* ____source_12;
  2959. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  2960. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  2961. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  2962. };
  2963. // Fractions.FractionState
  2964. struct FractionState_t17C2652C31A4E3A8832B660ADBA53BEB935FA87C
  2965. {
  2966. public:
  2967. // System.Int32 Fractions.FractionState::value__
  2968. int32_t ___value___2;
  2969. public:
  2970. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FractionState_t17C2652C31A4E3A8832B660ADBA53BEB935FA87C, ___value___2)); }
  2971. inline int32_t get_value___2() const { return ___value___2; }
  2972. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2973. inline void set_value___2(int32_t value)
  2974. {
  2975. ___value___2 = value;
  2976. }
  2977. };
  2978. // System.Reflection.MethodInfo
  2979. struct MethodInfo_t : public MethodBase_t
  2980. {
  2981. public:
  2982. public:
  2983. };
  2984. // System.RuntimeTypeHandle
  2985. struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9
  2986. {
  2987. public:
  2988. // System.IntPtr System.RuntimeTypeHandle::value
  2989. intptr_t ___value_0;
  2990. public:
  2991. inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); }
  2992. inline intptr_t get_value_0() const { return ___value_0; }
  2993. inline intptr_t* get_address_of_value_0() { return &___value_0; }
  2994. inline void set_value_0(intptr_t value)
  2995. {
  2996. ___value_0 = value;
  2997. }
  2998. };
  2999. // o0.SerializeType
  3000. struct SerializeType_t13DB21D5C8CC5A3B9AF560AED599E2CBDF3B430F
  3001. {
  3002. public:
  3003. // System.Int32 o0.SerializeType::value__
  3004. int32_t ___value___2;
  3005. public:
  3006. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(SerializeType_t13DB21D5C8CC5A3B9AF560AED599E2CBDF3B430F, ___value___2)); }
  3007. inline int32_t get_value___2() const { return ___value___2; }
  3008. inline int32_t* get_address_of_value___2() { return &___value___2; }
  3009. inline void set_value___2(int32_t value)
  3010. {
  3011. ___value___2 = value;
  3012. }
  3013. };
  3014. // o0.Reflection/DelagateType
  3015. struct DelagateType_t72D03C4C84E5D018417A8B9D3650C76016E01089
  3016. {
  3017. public:
  3018. // System.Int32 o0.Reflection/DelagateType::value__
  3019. int32_t ___value___2;
  3020. public:
  3021. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(DelagateType_t72D03C4C84E5D018417A8B9D3650C76016E01089, ___value___2)); }
  3022. inline int32_t get_value___2() const { return ___value___2; }
  3023. inline int32_t* get_address_of_value___2() { return &___value___2; }
  3024. inline void set_value___2(int32_t value)
  3025. {
  3026. ___value___2 = value;
  3027. }
  3028. };
  3029. // Fractions.Fraction
  3030. struct Fraction_t949DB96245DCB21D980284D32045C76D207D04E7
  3031. {
  3032. public:
  3033. // System.Numerics.BigInteger Fractions.Fraction::_denominator
  3034. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ____denominator_5;
  3035. // System.Numerics.BigInteger Fractions.Fraction::_numerator
  3036. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ____numerator_6;
  3037. // Fractions.FractionState Fractions.Fraction::_state
  3038. int32_t ____state_7;
  3039. public:
  3040. inline static int32_t get_offset_of__denominator_5() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7, ____denominator_5)); }
  3041. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get__denominator_5() const { return ____denominator_5; }
  3042. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of__denominator_5() { return &____denominator_5; }
  3043. inline void set__denominator_5(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  3044. {
  3045. ____denominator_5 = value;
  3046. Il2CppCodeGenWriteBarrier((void**)&(((&____denominator_5))->____bits_1), (void*)NULL);
  3047. }
  3048. inline static int32_t get_offset_of__numerator_6() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7, ____numerator_6)); }
  3049. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get__numerator_6() const { return ____numerator_6; }
  3050. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of__numerator_6() { return &____numerator_6; }
  3051. inline void set__numerator_6(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  3052. {
  3053. ____numerator_6 = value;
  3054. Il2CppCodeGenWriteBarrier((void**)&(((&____numerator_6))->____bits_1), (void*)NULL);
  3055. }
  3056. inline static int32_t get_offset_of__state_7() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7, ____state_7)); }
  3057. inline int32_t get__state_7() const { return ____state_7; }
  3058. inline int32_t* get_address_of__state_7() { return &____state_7; }
  3059. inline void set__state_7(int32_t value)
  3060. {
  3061. ____state_7 = value;
  3062. }
  3063. };
  3064. struct Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_StaticFields
  3065. {
  3066. public:
  3067. // System.Numerics.BigInteger Fractions.Fraction::MIN_DECIMAL
  3068. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___MIN_DECIMAL_0;
  3069. // System.Numerics.BigInteger Fractions.Fraction::MAX_DECIMAL
  3070. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 ___MAX_DECIMAL_1;
  3071. // Fractions.Fraction Fractions.Fraction::_zero
  3072. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ____zero_2;
  3073. // Fractions.Fraction Fractions.Fraction::_one
  3074. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ____one_3;
  3075. // Fractions.Fraction Fractions.Fraction::_minus_one
  3076. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ____minus_one_4;
  3077. public:
  3078. inline static int32_t get_offset_of_MIN_DECIMAL_0() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_StaticFields, ___MIN_DECIMAL_0)); }
  3079. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_MIN_DECIMAL_0() const { return ___MIN_DECIMAL_0; }
  3080. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_MIN_DECIMAL_0() { return &___MIN_DECIMAL_0; }
  3081. inline void set_MIN_DECIMAL_0(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  3082. {
  3083. ___MIN_DECIMAL_0 = value;
  3084. Il2CppCodeGenWriteBarrier((void**)&(((&___MIN_DECIMAL_0))->____bits_1), (void*)NULL);
  3085. }
  3086. inline static int32_t get_offset_of_MAX_DECIMAL_1() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_StaticFields, ___MAX_DECIMAL_1)); }
  3087. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 get_MAX_DECIMAL_1() const { return ___MAX_DECIMAL_1; }
  3088. inline BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 * get_address_of_MAX_DECIMAL_1() { return &___MAX_DECIMAL_1; }
  3089. inline void set_MAX_DECIMAL_1(BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2 value)
  3090. {
  3091. ___MAX_DECIMAL_1 = value;
  3092. Il2CppCodeGenWriteBarrier((void**)&(((&___MAX_DECIMAL_1))->____bits_1), (void*)NULL);
  3093. }
  3094. inline static int32_t get_offset_of__zero_2() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_StaticFields, ____zero_2)); }
  3095. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 get__zero_2() const { return ____zero_2; }
  3096. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * get_address_of__zero_2() { return &____zero_2; }
  3097. inline void set__zero_2(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 value)
  3098. {
  3099. ____zero_2 = value;
  3100. Il2CppCodeGenWriteBarrier((void**)&((&(((&____zero_2))->____denominator_5))->____bits_1), (void*)NULL);
  3101. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3102. Il2CppCodeGenWriteBarrier((void**)&((&(((&____zero_2))->____numerator_6))->____bits_1), (void*)NULL);
  3103. #endif
  3104. }
  3105. inline static int32_t get_offset_of__one_3() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_StaticFields, ____one_3)); }
  3106. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 get__one_3() const { return ____one_3; }
  3107. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * get_address_of__one_3() { return &____one_3; }
  3108. inline void set__one_3(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 value)
  3109. {
  3110. ____one_3 = value;
  3111. Il2CppCodeGenWriteBarrier((void**)&((&(((&____one_3))->____denominator_5))->____bits_1), (void*)NULL);
  3112. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3113. Il2CppCodeGenWriteBarrier((void**)&((&(((&____one_3))->____numerator_6))->____bits_1), (void*)NULL);
  3114. #endif
  3115. }
  3116. inline static int32_t get_offset_of__minus_one_4() { return static_cast<int32_t>(offsetof(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_StaticFields, ____minus_one_4)); }
  3117. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 get__minus_one_4() const { return ____minus_one_4; }
  3118. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * get_address_of__minus_one_4() { return &____minus_one_4; }
  3119. inline void set__minus_one_4(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 value)
  3120. {
  3121. ____minus_one_4 = value;
  3122. Il2CppCodeGenWriteBarrier((void**)&((&(((&____minus_one_4))->____denominator_5))->____bits_1), (void*)NULL);
  3123. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3124. Il2CppCodeGenWriteBarrier((void**)&((&(((&____minus_one_4))->____numerator_6))->____bits_1), (void*)NULL);
  3125. #endif
  3126. }
  3127. };
  3128. // Native definition for P/Invoke marshalling of Fractions.Fraction
  3129. struct Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_marshaled_pinvoke
  3130. {
  3131. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_pinvoke ____denominator_5;
  3132. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_pinvoke ____numerator_6;
  3133. int32_t ____state_7;
  3134. };
  3135. // Native definition for COM marshalling of Fractions.Fraction
  3136. struct Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_marshaled_com
  3137. {
  3138. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_com ____denominator_5;
  3139. BigInteger_tB5F51572CFCA06393E28819DAD57C189747B58F2_marshaled_com ____numerator_6;
  3140. int32_t ____state_7;
  3141. };
  3142. // System.MulticastDelegate
  3143. struct MulticastDelegate_t : public Delegate_t
  3144. {
  3145. public:
  3146. // System.Delegate[] System.MulticastDelegate::delegates
  3147. DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
  3148. public:
  3149. inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
  3150. inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
  3151. inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
  3152. inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
  3153. {
  3154. ___delegates_11 = value;
  3155. Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
  3156. }
  3157. };
  3158. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  3159. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  3160. {
  3161. Delegate_t_marshaled_pinvoke** ___delegates_11;
  3162. };
  3163. // Native definition for COM marshalling of System.MulticastDelegate
  3164. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  3165. {
  3166. Delegate_t_marshaled_com** ___delegates_11;
  3167. };
  3168. // System.Type
  3169. struct Type_t : public MemberInfo_t
  3170. {
  3171. public:
  3172. // System.RuntimeTypeHandle System.Type::_impl
  3173. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9;
  3174. public:
  3175. inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
  3176. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; }
  3177. inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; }
  3178. inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value)
  3179. {
  3180. ____impl_9 = value;
  3181. }
  3182. };
  3183. struct Type_t_StaticFields
  3184. {
  3185. public:
  3186. // System.Reflection.MemberFilter System.Type::FilterAttribute
  3187. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0;
  3188. // System.Reflection.MemberFilter System.Type::FilterName
  3189. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1;
  3190. // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
  3191. MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2;
  3192. // System.Object System.Type::Missing
  3193. RuntimeObject * ___Missing_3;
  3194. // System.Char System.Type::Delimiter
  3195. Il2CppChar ___Delimiter_4;
  3196. // System.Type[] System.Type::EmptyTypes
  3197. TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5;
  3198. // System.Reflection.Binder System.Type::defaultBinder
  3199. Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6;
  3200. public:
  3201. inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
  3202. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
  3203. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
  3204. inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  3205. {
  3206. ___FilterAttribute_0 = value;
  3207. Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
  3208. }
  3209. inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
  3210. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; }
  3211. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; }
  3212. inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  3213. {
  3214. ___FilterName_1 = value;
  3215. Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
  3216. }
  3217. inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
  3218. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
  3219. inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
  3220. inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value)
  3221. {
  3222. ___FilterNameIgnoreCase_2 = value;
  3223. Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
  3224. }
  3225. inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
  3226. inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
  3227. inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
  3228. inline void set_Missing_3(RuntimeObject * value)
  3229. {
  3230. ___Missing_3 = value;
  3231. Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
  3232. }
  3233. inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
  3234. inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
  3235. inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
  3236. inline void set_Delimiter_4(Il2CppChar value)
  3237. {
  3238. ___Delimiter_4 = value;
  3239. }
  3240. inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
  3241. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
  3242. inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
  3243. inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value)
  3244. {
  3245. ___EmptyTypes_5 = value;
  3246. Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
  3247. }
  3248. inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
  3249. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; }
  3250. inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
  3251. inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value)
  3252. {
  3253. ___defaultBinder_6 = value;
  3254. Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
  3255. }
  3256. };
  3257. // o0.Serialize/Object
  3258. struct Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C
  3259. {
  3260. public:
  3261. // o0.SerializeType o0.Serialize/Object::Type
  3262. int32_t ___Type_0;
  3263. // System.Object o0.Serialize/Object::Data
  3264. RuntimeObject * ___Data_1;
  3265. public:
  3266. inline static int32_t get_offset_of_Type_0() { return static_cast<int32_t>(offsetof(Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C, ___Type_0)); }
  3267. inline int32_t get_Type_0() const { return ___Type_0; }
  3268. inline int32_t* get_address_of_Type_0() { return &___Type_0; }
  3269. inline void set_Type_0(int32_t value)
  3270. {
  3271. ___Type_0 = value;
  3272. }
  3273. inline static int32_t get_offset_of_Data_1() { return static_cast<int32_t>(offsetof(Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C, ___Data_1)); }
  3274. inline RuntimeObject * get_Data_1() const { return ___Data_1; }
  3275. inline RuntimeObject ** get_address_of_Data_1() { return &___Data_1; }
  3276. inline void set_Data_1(RuntimeObject * value)
  3277. {
  3278. ___Data_1 = value;
  3279. Il2CppCodeGenWriteBarrier((void**)(&___Data_1), (void*)value);
  3280. }
  3281. };
  3282. // Native definition for P/Invoke marshalling of o0.Serialize/Object
  3283. struct Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_pinvoke
  3284. {
  3285. int32_t ___Type_0;
  3286. Il2CppIUnknown* ___Data_1;
  3287. };
  3288. // Native definition for COM marshalling of o0.Serialize/Object
  3289. struct Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_com
  3290. {
  3291. int32_t ___Type_0;
  3292. Il2CppIUnknown* ___Data_1;
  3293. };
  3294. // System.Action`2<System.Object,System.Object>
  3295. struct Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D : public MulticastDelegate_t
  3296. {
  3297. public:
  3298. public:
  3299. };
  3300. // System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>
  3301. struct Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 : public MulticastDelegate_t
  3302. {
  3303. public:
  3304. public:
  3305. };
  3306. // System.Func`2<System.Object,System.Object>
  3307. struct Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 : public MulticastDelegate_t
  3308. {
  3309. public:
  3310. public:
  3311. };
  3312. // System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>
  3313. struct Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E : public MulticastDelegate_t
  3314. {
  3315. public:
  3316. public:
  3317. };
  3318. // System.Func`3<System.Object,System.Object,System.Object>
  3319. struct Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 : public MulticastDelegate_t
  3320. {
  3321. public:
  3322. public:
  3323. };
  3324. // System.ValueTuple`2<Fractions.Fraction,System.Double>
  3325. struct ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7
  3326. {
  3327. public:
  3328. // T1 System.ValueTuple`2::Item1
  3329. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___Item1_0;
  3330. // T2 System.ValueTuple`2::Item2
  3331. double ___Item2_1;
  3332. public:
  3333. inline static int32_t get_offset_of_Item1_0() { return static_cast<int32_t>(offsetof(ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7, ___Item1_0)); }
  3334. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 get_Item1_0() const { return ___Item1_0; }
  3335. inline Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * get_address_of_Item1_0() { return &___Item1_0; }
  3336. inline void set_Item1_0(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 value)
  3337. {
  3338. ___Item1_0 = value;
  3339. Il2CppCodeGenWriteBarrier((void**)&((&(((&___Item1_0))->____denominator_5))->____bits_1), (void*)NULL);
  3340. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3341. Il2CppCodeGenWriteBarrier((void**)&((&(((&___Item1_0))->____numerator_6))->____bits_1), (void*)NULL);
  3342. #endif
  3343. }
  3344. inline static int32_t get_offset_of_Item2_1() { return static_cast<int32_t>(offsetof(ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7, ___Item2_1)); }
  3345. inline double get_Item2_1() const { return ___Item2_1; }
  3346. inline double* get_address_of_Item2_1() { return &___Item2_1; }
  3347. inline void set_Item2_1(double value)
  3348. {
  3349. ___Item2_1 = value;
  3350. }
  3351. };
  3352. // System.Action
  3353. struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t
  3354. {
  3355. public:
  3356. public:
  3357. };
  3358. #ifdef __clang__
  3359. #pragma clang diagnostic pop
  3360. #endif
  3361. // System.Reflection.PropertyInfo[]
  3362. struct PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A : public RuntimeArray
  3363. {
  3364. public:
  3365. ALIGN_FIELD (8) PropertyInfo_t * m_Items[1];
  3366. public:
  3367. inline PropertyInfo_t * GetAt(il2cpp_array_size_t index) const
  3368. {
  3369. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3370. return m_Items[index];
  3371. }
  3372. inline PropertyInfo_t ** GetAddressAt(il2cpp_array_size_t index)
  3373. {
  3374. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3375. return m_Items + index;
  3376. }
  3377. inline void SetAt(il2cpp_array_size_t index, PropertyInfo_t * value)
  3378. {
  3379. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3380. m_Items[index] = value;
  3381. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3382. }
  3383. inline PropertyInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
  3384. {
  3385. return m_Items[index];
  3386. }
  3387. inline PropertyInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3388. {
  3389. return m_Items + index;
  3390. }
  3391. inline void SetAtUnchecked(il2cpp_array_size_t index, PropertyInfo_t * value)
  3392. {
  3393. m_Items[index] = value;
  3394. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3395. }
  3396. };
  3397. // System.ValueTuple`2<System.String,System.Type>[]
  3398. struct ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3 : public RuntimeArray
  3399. {
  3400. public:
  3401. ALIGN_FIELD (8) ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 m_Items[1];
  3402. public:
  3403. inline ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 GetAt(il2cpp_array_size_t index) const
  3404. {
  3405. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3406. return m_Items[index];
  3407. }
  3408. inline ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 * GetAddressAt(il2cpp_array_size_t index)
  3409. {
  3410. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3411. return m_Items + index;
  3412. }
  3413. inline void SetAt(il2cpp_array_size_t index, ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 value)
  3414. {
  3415. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3416. m_Items[index] = value;
  3417. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL);
  3418. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3419. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item2_1), (void*)NULL);
  3420. #endif
  3421. }
  3422. inline ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 GetAtUnchecked(il2cpp_array_size_t index) const
  3423. {
  3424. return m_Items[index];
  3425. }
  3426. inline ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 * GetAddressAtUnchecked(il2cpp_array_size_t index)
  3427. {
  3428. return m_Items + index;
  3429. }
  3430. inline void SetAtUnchecked(il2cpp_array_size_t index, ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 value)
  3431. {
  3432. m_Items[index] = value;
  3433. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1_0), (void*)NULL);
  3434. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3435. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item2_1), (void*)NULL);
  3436. #endif
  3437. }
  3438. };
  3439. // System.Reflection.MemberInfo[]
  3440. struct MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E : public RuntimeArray
  3441. {
  3442. public:
  3443. ALIGN_FIELD (8) MemberInfo_t * m_Items[1];
  3444. public:
  3445. inline MemberInfo_t * GetAt(il2cpp_array_size_t index) const
  3446. {
  3447. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3448. return m_Items[index];
  3449. }
  3450. inline MemberInfo_t ** GetAddressAt(il2cpp_array_size_t index)
  3451. {
  3452. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3453. return m_Items + index;
  3454. }
  3455. inline void SetAt(il2cpp_array_size_t index, MemberInfo_t * value)
  3456. {
  3457. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3458. m_Items[index] = value;
  3459. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3460. }
  3461. inline MemberInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
  3462. {
  3463. return m_Items[index];
  3464. }
  3465. inline MemberInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3466. {
  3467. return m_Items + index;
  3468. }
  3469. inline void SetAtUnchecked(il2cpp_array_size_t index, MemberInfo_t * value)
  3470. {
  3471. m_Items[index] = value;
  3472. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3473. }
  3474. };
  3475. // o0.Serialize/Member[]
  3476. struct MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D : public RuntimeArray
  3477. {
  3478. public:
  3479. ALIGN_FIELD (8) Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F m_Items[1];
  3480. public:
  3481. inline Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F GetAt(il2cpp_array_size_t index) const
  3482. {
  3483. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3484. return m_Items[index];
  3485. }
  3486. inline Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * GetAddressAt(il2cpp_array_size_t index)
  3487. {
  3488. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3489. return m_Items + index;
  3490. }
  3491. inline void SetAt(il2cpp_array_size_t index, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F value)
  3492. {
  3493. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3494. m_Items[index] = value;
  3495. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Info_0), (void*)NULL);
  3496. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3497. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Type_1), (void*)NULL);
  3498. #endif
  3499. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3500. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_2), (void*)NULL);
  3501. #endif
  3502. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3503. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Getter_3), (void*)NULL);
  3504. #endif
  3505. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3506. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Setter_4), (void*)NULL);
  3507. #endif
  3508. }
  3509. inline Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F GetAtUnchecked(il2cpp_array_size_t index) const
  3510. {
  3511. return m_Items[index];
  3512. }
  3513. inline Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * GetAddressAtUnchecked(il2cpp_array_size_t index)
  3514. {
  3515. return m_Items + index;
  3516. }
  3517. inline void SetAtUnchecked(il2cpp_array_size_t index, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F value)
  3518. {
  3519. m_Items[index] = value;
  3520. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Info_0), (void*)NULL);
  3521. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3522. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Type_1), (void*)NULL);
  3523. #endif
  3524. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3525. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_2), (void*)NULL);
  3526. #endif
  3527. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3528. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Getter_3), (void*)NULL);
  3529. #endif
  3530. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  3531. Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Setter_4), (void*)NULL);
  3532. #endif
  3533. }
  3534. };
  3535. // System.Reflection.FieldInfo[]
  3536. struct FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E : public RuntimeArray
  3537. {
  3538. public:
  3539. ALIGN_FIELD (8) FieldInfo_t * m_Items[1];
  3540. public:
  3541. inline FieldInfo_t * GetAt(il2cpp_array_size_t index) const
  3542. {
  3543. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3544. return m_Items[index];
  3545. }
  3546. inline FieldInfo_t ** GetAddressAt(il2cpp_array_size_t index)
  3547. {
  3548. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3549. return m_Items + index;
  3550. }
  3551. inline void SetAt(il2cpp_array_size_t index, FieldInfo_t * value)
  3552. {
  3553. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3554. m_Items[index] = value;
  3555. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3556. }
  3557. inline FieldInfo_t * GetAtUnchecked(il2cpp_array_size_t index) const
  3558. {
  3559. return m_Items[index];
  3560. }
  3561. inline FieldInfo_t ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3562. {
  3563. return m_Items + index;
  3564. }
  3565. inline void SetAtUnchecked(il2cpp_array_size_t index, FieldInfo_t * value)
  3566. {
  3567. m_Items[index] = value;
  3568. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3569. }
  3570. };
  3571. // System.String[]
  3572. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray
  3573. {
  3574. public:
  3575. ALIGN_FIELD (8) String_t* m_Items[1];
  3576. public:
  3577. inline String_t* GetAt(il2cpp_array_size_t index) const
  3578. {
  3579. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3580. return m_Items[index];
  3581. }
  3582. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  3583. {
  3584. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3585. return m_Items + index;
  3586. }
  3587. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  3588. {
  3589. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3590. m_Items[index] = value;
  3591. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3592. }
  3593. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  3594. {
  3595. return m_Items[index];
  3596. }
  3597. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3598. {
  3599. return m_Items + index;
  3600. }
  3601. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  3602. {
  3603. m_Items[index] = value;
  3604. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3605. }
  3606. };
  3607. // System.Object[]
  3608. struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray
  3609. {
  3610. public:
  3611. ALIGN_FIELD (8) RuntimeObject * m_Items[1];
  3612. public:
  3613. inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
  3614. {
  3615. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3616. return m_Items[index];
  3617. }
  3618. inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
  3619. {
  3620. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3621. return m_Items + index;
  3622. }
  3623. inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
  3624. {
  3625. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3626. m_Items[index] = value;
  3627. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3628. }
  3629. inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
  3630. {
  3631. return m_Items[index];
  3632. }
  3633. inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3634. {
  3635. return m_Items + index;
  3636. }
  3637. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
  3638. {
  3639. m_Items[index] = value;
  3640. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3641. }
  3642. };
  3643. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
  3644. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method);
  3645. // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.MemberInfo)
  3646. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m72053D7D8850B94870277974017634C340227CC9_gshared (MemberInfo_t * ___element0, const RuntimeMethod* method);
  3647. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(!0,!1)
  3648. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
  3649. // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::ContainsKey(!0)
  3650. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
  3651. // !1 System.Collections.Generic.Dictionary`2<System.Object,System.Object>::get_Item(!0)
  3652. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
  3653. // !1 System.Func`2<System.Object,System.Object>::Invoke(!0)
  3654. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_gshared (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * __this, RuntimeObject * ___arg0, const RuntimeMethod* method);
  3655. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  3656. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
  3657. // !!0 System.Linq.Enumerable::FirstOrDefault<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
  3658. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Enumerable_FirstOrDefault_TisRuntimeObject_m52BE8AFB43E57E98CDA1DF93283BD40B2CA3AF8A_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
  3659. // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
  3660. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
  3661. // !2 System.Func`3<System.Object,System.Object,System.Object>::Invoke(!0,!1)
  3662. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB_gshared (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method);
  3663. // System.Void System.Func`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
  3664. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_gshared (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
  3665. // V o0.Extension::TryGet<System.Object,System.ValueTuple`2<System.Object,System.Object>>(System.Collections.Generic.Dictionary`2<K,V>,K)
  3666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 Extension_TryGet_TisRuntimeObject_TisValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403_m0940D8C37135CB64C46B97457138EF863E3F0CAF_gshared (Dictionary_2_t845F5CAD20752949FFE691610514A76F2C804FF0 * ___dic0, RuntimeObject * ___key1, const RuntimeMethod* method);
  3667. // System.Void System.Collections.Generic.HashSet`1<System.Object>::.ctor()
  3668. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m2CDA40DEC2900A9CB00F8348FF386DF44ABD0EC7_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, const RuntimeMethod* method);
  3669. // System.Collections.Generic.List`1<T> o0.Extension::Reversed<System.Object>(System.Collections.Generic.List`1<T>)
  3670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * Extension_Reversed_TisRuntimeObject_mF1D2C99B00300C2821E157B28E0263FC6898EFB6_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___l0, const RuntimeMethod* method);
  3671. // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Object>::GetEnumerator()
  3672. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
  3673. // !0 System.Collections.Generic.List`1/Enumerator<System.Object>::get_Current()
  3674. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
  3675. // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Object>(System.Reflection.MemberInfo,System.Boolean)
  3676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mD8E518487C8BB3E61EC11359F1B4609C284C8311_gshared (MemberInfo_t * ___element0, bool ___inherit1, const RuntimeMethod* method);
  3677. // System.Void System.Collections.Generic.List`1<System.Object>::Insert(System.Int32,!0)
  3678. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Insert_mAF0CC2EDCA42FFDA178E720B4D907F19DBF91D11_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, RuntimeObject * ___item1, const RuntimeMethod* method);
  3679. // System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Contains(!0)
  3680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Contains_m5BC7F193BEE9F94E54713DEEF06BE5F8261EAC91_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
  3681. // ToT o0.Extension::To<System.Object,System.Object>(T)
  3682. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Extension_To_TisRuntimeObject_TisRuntimeObject_m9E69F90C06522E42AC32F5F445335558CD75F1B8_gshared (RuntimeObject * ___a0, const RuntimeMethod* method);
  3683. // System.Boolean System.Collections.Generic.HashSet`1<System.Object>::Add(!0)
  3684. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool HashSet_1_Add_m8194125167FD7A887F1B39D342A71A0BD0C8BF5C_gshared (HashSet_1_t680119C7ED8D82AED56CDB83DF6F0E9149852A9B * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
  3685. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Object>::MoveNext()
  3686. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
  3687. // System.Void System.Collections.Generic.List`1/Enumerator<System.Object>::Dispose()
  3688. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method);
  3689. // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Reverse<System.Object>(System.Collections.Generic.IEnumerable`1<!!0>)
  3690. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_Reverse_TisRuntimeObject_m9AC71B31601BC5C30774F74492565D83BFAE8F30_gshared (RuntimeObject* ___source0, const RuntimeMethod* method);
  3691. // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
  3692. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
  3693. // System.Void System.Collections.Generic.Dictionary`2<System.Object,o0.Serialize/Member>::.ctor()
  3694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C86B97ECE6AE7C712325B867E35AA7BD2AED627_gshared (Dictionary_2_t821DC9A6CC895EF5C4C66644F071280E109958F9 * __this, const RuntimeMethod* method);
  3695. // System.Collections.Generic.IEnumerable`1<System.Int32> o0.Extension::Index<System.Object>(System.Collections.Generic.IEnumerable`1<T>)
  3696. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Extension_Index_TisRuntimeObject_mBBC6A740CD2D5B335D0C6504996637CE85D0BEA5_gshared (RuntimeObject* ___ts0, const RuntimeMethod* method);
  3697. // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
  3698. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method);
  3699. // System.Boolean System.Collections.Generic.Dictionary`2<System.Object,o0.Serialize/Member>::ContainsKey(!0)
  3700. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_ContainsKey_m9925DD937D01736A058643F9F6B26113BEBDC554_gshared (Dictionary_2_t821DC9A6CC895EF5C4C66644F071280E109958F9 * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
  3701. // System.Void System.Collections.Generic.Dictionary`2<System.Object,o0.Serialize/Member>::Add(!0,!1)
  3702. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m210D36494E162A8267B367475908201D5B28BD71_gshared (Dictionary_2_t821DC9A6CC895EF5C4C66644F071280E109958F9 * __this, RuntimeObject * ___key0, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F ___value1, const RuntimeMethod* method);
  3703. // System.Void System.ValueTuple`2<System.Object,System.Object>::.ctor(!0,!1)
  3704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValueTuple_2__ctor_mBABF7EBF37F40A20153104D68C2BD6FB6A777D20_gshared (ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 * __this, RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method);
  3705. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::Add(!0,!1)
  3706. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_Add_m24EC74D878E074BE6FDE72D2679425CF7BA3D435_gshared (Dictionary_2_t845F5CAD20752949FFE691610514A76F2C804FF0 * __this, RuntimeObject * ___key0, ValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403 ___value1, const RuntimeMethod* method);
  3707. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.ValueTuple`2<System.Object,System.Object>>::.ctor()
  3708. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mD4D067F3EBC54A8051401AC4C091B8E5F2C69C4B_gshared (Dictionary_2_t845F5CAD20752949FFE691610514A76F2C804FF0 * __this, const RuntimeMethod* method);
  3709. // System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
  3710. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_gshared (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
  3711. // System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1)
  3712. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_gshared (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method);
  3713. // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>::.ctor()
  3714. inline void Dictionary_2__ctor_m5E8BF58B9A0C7BD1F095F2E7B474DA7FC2CCF66C (Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * __this, const RuntimeMethod* method)
  3715. {
  3716. (( void (*) (Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3717. }
  3718. // System.Void System.Object::.ctor()
  3719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
  3720. // System.Reflection.PropertyInfo[] System.Type::GetProperties()
  3721. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* Type_GetProperties_m4126C117279AD617D8D167367DF953C451FC49E3 (Type_t * __this, const RuntimeMethod* method);
  3722. // System.String System.String::Concat(System.String,System.String,System.String)
  3723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
  3724. // System.Boolean System.Reflection.FieldInfo::op_Equality(System.Reflection.FieldInfo,System.Reflection.FieldInfo)
  3725. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_op_Equality_m317FBF38CA6FD67D08400CC9A15FEC250E5D4751 (FieldInfo_t * ___left0, FieldInfo_t * ___right1, const RuntimeMethod* method);
  3726. // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute<System.Runtime.CompilerServices.CompilerGeneratedAttribute>(System.Reflection.MemberInfo)
  3727. inline CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * CustomAttributeExtensions_GetCustomAttribute_TisCompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C_m61858CDBD29749D144AC7B301A872269F45E7403 (MemberInfo_t * ___element0, const RuntimeMethod* method)
  3728. {
  3729. return (( CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * (*) (MemberInfo_t *, const RuntimeMethod*))CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_m72053D7D8850B94870277974017634C340227CC9_gshared)(___element0, method);
  3730. }
  3731. // System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo> o0.Reflection/Buffer::get_AutoProperty()
  3732. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * Buffer_get_AutoProperty_m254266B0F1DF4C3B27044BB10C5FC98E24947458_inline (Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9 * __this, const RuntimeMethod* method);
  3733. // System.Void System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo>::Add(!0,!1)
  3734. inline void Dictionary_2_Add_mF8CC4C7ABC8E3FA0BD4876241818D4263D95FF8D (Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * __this, FieldInfo_t * ___key0, PropertyInfo_t * ___value1, const RuntimeMethod* method)
  3735. {
  3736. (( void (*) (Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D *, FieldInfo_t *, PropertyInfo_t *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method);
  3737. }
  3738. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<System.String,System.Type>[]>::.ctor()
  3739. inline void Dictionary_2__ctor_mA0DCCC1EED2A8CBFD988BDF35EC7D357425BCEFE (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * __this, const RuntimeMethod* method)
  3740. {
  3741. (( void (*) (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3742. }
  3743. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>::.ctor()
  3744. inline void Dictionary_2__ctor_mD93C9534DDA3D738DE794F25C834992C39B117D7 (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * __this, const RuntimeMethod* method)
  3745. {
  3746. (( void (*) (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3747. }
  3748. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>::.ctor()
  3749. inline void Dictionary_2__ctor_m577DAC66615F3A61AF4F274851D69214F4079240 (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * __this, const RuntimeMethod* method)
  3750. {
  3751. (( void (*) (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3752. }
  3753. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Type>::.ctor()
  3754. inline void Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * __this, const RuntimeMethod* method)
  3755. {
  3756. (( void (*) (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3757. }
  3758. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>::.ctor()
  3759. inline void Dictionary_2__ctor_m8F650631798982D60619B52E1B61C58A17D253B8 (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * __this, const RuntimeMethod* method)
  3760. {
  3761. (( void (*) (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3762. }
  3763. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Object,System.Object>>::.ctor()
  3764. inline void Dictionary_2__ctor_m8C7EBEC22935640DB9D5AB825710B7E4BAB484FE (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * __this, const RuntimeMethod* method)
  3765. {
  3766. (( void (*) (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3767. }
  3768. // System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
  3769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E (RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ___handle0, const RuntimeMethod* method);
  3770. // System.Void o0.Serialize/CustomByFunction::Add(System.Type,System.Type,System.Func`2<System.Object,System.Object>,System.Func`3<System.Object,System.Object,System.Object>)
  3771. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___Type0, Type_t * ___SerializeInfos1, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___OnSerialize2, Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * ___OnDeserialize3, const RuntimeMethod* method);
  3772. // System.Void System.Action::.ctor(System.Object,System.IntPtr)
  3773. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method);
  3774. // System.Reflection.MethodInfo System.Delegate::get_Method()
  3775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227 (Delegate_t * __this, const RuntimeMethod* method);
  3776. // System.Type System.Object::GetType()
  3777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method);
  3778. // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<System.String,System.Type>[]>::ContainsKey(!0)
  3779. inline bool Dictionary_2_ContainsKey_m66EEF5200027D79C60A47E15D350B5006B299898 (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3780. {
  3781. return (( bool (*) (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 *, Type_t *, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method);
  3782. }
  3783. // !1 System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<System.String,System.Type>[]>::get_Item(!0)
  3784. inline ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3 (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3785. {
  3786. return (( ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* (*) (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3787. }
  3788. // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>::ContainsKey(!0)
  3789. inline bool Dictionary_2_ContainsKey_mBD772D80E87C54F73C8C8A13BC442646E674F974 (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * __this, Type_t * ___key0, const RuntimeMethod* method)
  3790. {
  3791. return (( bool (*) (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C *, Type_t *, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method);
  3792. }
  3793. // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>>::get_Item(!0)
  3794. inline Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * Dictionary_2_get_Item_m009D9FC8C5181EC91BBB09B66D2E4D75A1BBC7E3 (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * __this, Type_t * ___key0, const RuntimeMethod* method)
  3795. {
  3796. return (( Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * (*) (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3797. }
  3798. // !1 System.Func`2<System.Object,System.Collections.Generic.List`1<System.Object>>::Invoke(!0)
  3799. inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * Func_2_Invoke_m8B7E47CF33294F69FABB2E6DC47C917623E4C48C (Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * __this, RuntimeObject * ___arg0, const RuntimeMethod* method)
  3800. {
  3801. return (( List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * (*) (Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 *, RuntimeObject *, const RuntimeMethod*))Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_gshared)(__this, ___arg0, method);
  3802. }
  3803. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  3804. inline void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
  3805. {
  3806. (( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
  3807. }
  3808. // !!0 System.Linq.Enumerable::FirstOrDefault<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<!!0>)
  3809. inline MemberInfo_t * Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2 (RuntimeObject* ___source0, const RuntimeMethod* method)
  3810. {
  3811. return (( MemberInfo_t * (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_FirstOrDefault_TisRuntimeObject_m52BE8AFB43E57E98CDA1DF93283BD40B2CA3AF8A_gshared)(___source0, method);
  3812. }
  3813. // System.Object o0.Reflection::GetValue(System.Reflection.MemberInfo,System.Object)
  3814. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Reflection_GetValue_m093EC9AF600E61EFC2BA23A07282A62F9D08A294 (MemberInfo_t * ___Info0, RuntimeObject * ___o1, const RuntimeMethod* method);
  3815. // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
  3816. inline void List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
  3817. {
  3818. (( void (*) (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *, RuntimeObject *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
  3819. }
  3820. // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>::ContainsKey(!0)
  3821. inline bool Dictionary_2_ContainsKey_mFD205815B443E37EC436C0419BEE23A7141CFAF7 (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3822. {
  3823. return (( bool (*) (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 *, Type_t *, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method);
  3824. }
  3825. // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>>::get_Item(!0)
  3826. inline Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * Dictionary_2_get_Item_mF870F9096563EF823CF903774EFE556526A723FC (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3827. {
  3828. return (( Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * (*) (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3829. }
  3830. // !2 System.Func`3<System.Object,System.Collections.Generic.Dictionary`2<System.String,System.Object>,System.Object>::Invoke(!0,!1)
  3831. inline RuntimeObject * Func_3_Invoke_m33C5FAF2568195A639BD897B550A08B4BABC29CD (Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * __this, RuntimeObject * ___arg10, Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 * ___arg21, const RuntimeMethod* method)
  3832. {
  3833. return (( RuntimeObject * (*) (Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E *, RuntimeObject *, Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 *, const RuntimeMethod*))Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB_gshared)(__this, ___arg10, ___arg21, method);
  3834. }
  3835. // System.Object System.Runtime.Serialization.FormatterServices::GetSafeUninitializedObject(System.Type)
  3836. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * FormatterServices_GetSafeUninitializedObject_mE6E8E7AF34CC664A75BB67ADE6DD154AFA7B008C (Type_t * ___type0, const RuntimeMethod* method);
  3837. // !1 System.Collections.Generic.Dictionary`2<System.String,System.Object>::get_Item(!0)
  3838. inline RuntimeObject * Dictionary_2_get_Item_mEC67A37ACAAB1DBAB504B54516BAD1808CB80D5D (Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 * __this, String_t* ___key0, const RuntimeMethod* method)
  3839. {
  3840. return (( RuntimeObject * (*) (Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 *, String_t*, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3841. }
  3842. // System.Void o0.Reflection::SetValue(System.Reflection.MemberInfo,System.Object,System.Object)
  3843. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Reflection_SetValue_m75E50DA8B122B4BF4A44AB0789F9B0E45A7B5621 (MemberInfo_t * ___Info0, RuntimeObject * ___o1, RuntimeObject * ___value2, const RuntimeMethod* method);
  3844. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Type>::Add(!0,!1)
  3845. inline void Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73 (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * __this, Type_t * ___key0, Type_t * ___value1, const RuntimeMethod* method)
  3846. {
  3847. (( void (*) (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 *, Type_t *, Type_t *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method);
  3848. }
  3849. // System.Func`2<System.Object,System.Object> o0.Extension::ToFunc(System.Type,System.Type)
  3850. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * Extension_ToFunc_m96FCCEC6F623260841037C7259991B8CCCFF25C2 (Type_t * ___from0, Type_t * ___to1, const RuntimeMethod* method);
  3851. // System.Void o0.Serialize/CustomByFunction/<>c__DisplayClass12_0::.ctor()
  3852. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_m26CC7F2C7D0193A93B06A315060D13D40E6BF613 (U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * __this, const RuntimeMethod* method);
  3853. // System.Void System.Func`3<System.Object,System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
  3854. inline void Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  3855. {
  3856. (( void (*) (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *, RuntimeObject *, intptr_t, const RuntimeMethod*))Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_gshared)(__this, ___object0, ___method1, method);
  3857. }
  3858. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>::Add(!0,!1)
  3859. inline void Dictionary_2_Add_m7C866AE3D3D8B1FCB4760EF0B772F76205D57BCF (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * __this, Type_t * ___key0, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___value1, const RuntimeMethod* method)
  3860. {
  3861. (( void (*) (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B *, Type_t *, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method);
  3862. }
  3863. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Object,System.Object>>::Add(!0,!1)
  3864. inline void Dictionary_2_Add_m6C5113C56FCB76BFB49E34C5A76042DF5754BD7B (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * __this, Type_t * ___key0, Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * ___value1, const RuntimeMethod* method)
  3865. {
  3866. (( void (*) (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 *, Type_t *, Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *, const RuntimeMethod*))Dictionary_2_Add_m1D9CF8FA99A277EE49BC3002FDEAACDCDB29803B_gshared)(__this, ___key0, ___value1, method);
  3867. }
  3868. // System.Boolean System.Collections.Generic.Dictionary`2<System.Type,System.Type>::ContainsKey(!0)
  3869. inline bool Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3 (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3870. {
  3871. return (( bool (*) (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 *, Type_t *, const RuntimeMethod*))Dictionary_2_ContainsKey_mCABABA5D0FA017D2D54BE4FA6256C51518274116_gshared)(__this, ___key0, method);
  3872. }
  3873. // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Type>::get_Item(!0)
  3874. inline Type_t * Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3875. {
  3876. return (( Type_t * (*) (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3877. }
  3878. // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`2<System.Object,System.Object>>::get_Item(!0)
  3879. inline Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * Dictionary_2_get_Item_m330DFBB03CD1019BA41112B76D9C6AB418A8CD4B (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * __this, Type_t * ___key0, const RuntimeMethod* method)
  3880. {
  3881. return (( Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * (*) (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3882. }
  3883. // !1 System.Func`2<System.Object,System.Object>::Invoke(!0)
  3884. inline RuntimeObject * Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6 (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * __this, RuntimeObject * ___arg0, const RuntimeMethod* method)
  3885. {
  3886. return (( RuntimeObject * (*) (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *, RuntimeObject *, const RuntimeMethod*))Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_gshared)(__this, ___arg0, method);
  3887. }
  3888. // !1 System.Collections.Generic.Dictionary`2<System.Type,System.Func`3<System.Object,System.Object,System.Object>>::get_Item(!0)
  3889. inline Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * Dictionary_2_get_Item_mBFBDAD9D073738DFB5AAE31D6DDF5A179ACB7233 (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * __this, Type_t * ___key0, const RuntimeMethod* method)
  3890. {
  3891. return (( Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * (*) (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 *, Type_t *, const RuntimeMethod*))Dictionary_2_get_Item_mF3BA34126DA8AFA32D1E5285D842C5955C698F0D_gshared)(__this, ___key0, method);
  3892. }
  3893. // !2 System.Func`3<System.Object,System.Object,System.Object>::Invoke(!0,!1)
  3894. inline RuntimeObject * Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
  3895. {
  3896. return (( RuntimeObject * (*) (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB_gshared)(__this, ___arg10, ___arg21, method);
  3897. }
  3898. // System.Void o0.Serialize/CustomByMember::TryAddSerializeInfo(System.Type)
  3899. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, Type_t * ___type0, const RuntimeMethod* method);
  3900. // System.Collections.Generic.Dictionary`2<System.Type,System.Type> o0.Serialize/CustomByMember::get_ItemTypes()
  3901. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method);
  3902. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>> o0.Serialize/CustomByMember::get_SerializeMemberInfos()
  3903. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * CustomByMember_get_SerializeMemberInfos_mD9F278495B3832FE55BCC561A1791226EF6B5A03_inline (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method);
  3904. // V o0.Extension::TryGet<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>(System.Collections.Generic.Dictionary`2<K,V>,K)
  3905. inline ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 Extension_TryGet_TisType_t_TisValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7_mC4B16CFDEB120C9BABD5CCC4BA671B681804B7F7 (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * ___dic0, Type_t * ___key1, const RuntimeMethod* method)
  3906. {
  3907. return (( ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 (*) (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 *, Type_t *, const RuntimeMethod*))Extension_TryGet_TisRuntimeObject_TisValueTuple_2_t69671C4973C1A3829B2193E4C598B1AE7162E403_m0940D8C37135CB64C46B97457138EF863E3F0CAF_gshared)(___dic0, ___key1, method);
  3908. }
  3909. // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&)
  3910. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4 (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method);
  3911. // System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::.ctor()
  3912. inline void List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334 (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * __this, const RuntimeMethod* method)
  3913. {
  3914. (( void (*) (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
  3915. }
  3916. // System.Void System.Collections.Generic.HashSet`1<System.Reflection.MethodInfo>::.ctor()
  3917. inline void HashSet_1__ctor_m10CAB11AECC2D4415EDE56E7B9BC9EB697E5A7CB (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * __this, const RuntimeMethod* method)
  3918. {
  3919. (( void (*) (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 *, const RuntimeMethod*))HashSet_1__ctor_m2CDA40DEC2900A9CB00F8348FF386DF44ABD0EC7_gshared)(__this, method);
  3920. }
  3921. // System.Void System.Collections.Generic.List`1<System.Type>::.ctor()
  3922. inline void List_1__ctor_m2664E772BEC27840867512EC2E339FF01F648AED (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * __this, const RuntimeMethod* method)
  3923. {
  3924. (( void (*) (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
  3925. }
  3926. // System.Void System.Collections.Generic.List`1<System.Type>::Add(!0)
  3927. inline void List_1_Add_m3BB268A04571D3FCDBCD746C61EEF3270A29D2D1 (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * __this, Type_t * ___item0, const RuntimeMethod* method)
  3928. {
  3929. (( void (*) (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 *, Type_t *, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
  3930. }
  3931. // System.Boolean System.Type::op_Inequality(System.Type,System.Type)
  3932. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
  3933. // System.Collections.Generic.List`1<T> o0.Extension::Reversed<System.Type>(System.Collections.Generic.List`1<T>)
  3934. inline List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * Extension_Reversed_TisType_t_m7C6AFDEAE95553A682780F0661E39B63C8EBB20E (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * ___l0, const RuntimeMethod* method)
  3935. {
  3936. return (( List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * (*) (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 *, const RuntimeMethod*))Extension_Reversed_TisRuntimeObject_mF1D2C99B00300C2821E157B28E0263FC6898EFB6_gshared)(___l0, method);
  3937. }
  3938. // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Type>::GetEnumerator()
  3939. inline Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC List_1_GetEnumerator_mEB5F044018BD367C71DE14D9E47E2D200D021B75 (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * __this, const RuntimeMethod* method)
  3940. {
  3941. return (( Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC (*) (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method);
  3942. }
  3943. // !0 System.Collections.Generic.List`1/Enumerator<System.Type>::get_Current()
  3944. inline Type_t * Enumerator_get_Current_m09D42327467C30F0F41F93C7353A72FFD684F271_inline (Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC * __this, const RuntimeMethod* method)
  3945. {
  3946. return (( Type_t * (*) (Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method);
  3947. }
  3948. // !!0 System.Reflection.CustomAttributeExtensions::GetCustomAttribute<o0.Serialize>(System.Reflection.MemberInfo,System.Boolean)
  3949. inline Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F * CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2 (MemberInfo_t * ___element0, bool ___inherit1, const RuntimeMethod* method)
  3950. {
  3951. return (( Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F * (*) (MemberInfo_t *, bool, const RuntimeMethod*))CustomAttributeExtensions_GetCustomAttribute_TisRuntimeObject_mD8E518487C8BB3E61EC11359F1B4609C284C8311_gshared)(___element0, ___inherit1, method);
  3952. }
  3953. // System.Void System.Collections.Generic.List`1<System.Reflection.MemberInfo>::Insert(System.Int32,!0)
  3954. inline void List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2 (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * __this, int32_t ___index0, MemberInfo_t * ___item1, const RuntimeMethod* method)
  3955. {
  3956. (( void (*) (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *, int32_t, MemberInfo_t *, const RuntimeMethod*))List_1_Insert_mAF0CC2EDCA42FFDA178E720B4D907F19DBF91D11_gshared)(__this, ___index0, ___item1, method);
  3957. }
  3958. // System.Reflection.MethodInfo System.Reflection.RuntimeReflectionExtensions::GetRuntimeBaseDefinition(System.Reflection.MethodInfo)
  3959. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR MethodInfo_t * RuntimeReflectionExtensions_GetRuntimeBaseDefinition_m30C286CB1021EDAA5F6492F6BEAEFE6FF774F286 (MethodInfo_t * ___method0, const RuntimeMethod* method);
  3960. // System.Boolean System.Collections.Generic.HashSet`1<System.Reflection.MethodInfo>::Contains(!0)
  3961. inline bool HashSet_1_Contains_mC67DDF1DBC3492BBDC57755E320CA7A2C10FC4A4 (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * __this, MethodInfo_t * ___item0, const RuntimeMethod* method)
  3962. {
  3963. return (( bool (*) (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 *, MethodInfo_t *, const RuntimeMethod*))HashSet_1_Contains_m5BC7F193BEE9F94E54713DEEF06BE5F8261EAC91_gshared)(__this, ___item0, method);
  3964. }
  3965. // ToT o0.Extension::To<System.Reflection.PropertyInfo,System.String>(T)
  3966. inline String_t* Extension_To_TisPropertyInfo_t_TisString_t_m97FE072CCA51E2B7113D0CFD0667886DA91DDB27 (PropertyInfo_t * ___a0, const RuntimeMethod* method)
  3967. {
  3968. return (( String_t* (*) (PropertyInfo_t *, const RuntimeMethod*))Extension_To_TisRuntimeObject_TisRuntimeObject_m9E69F90C06522E42AC32F5F445335558CD75F1B8_gshared)(___a0, method);
  3969. }
  3970. // System.Void System.Exception::.ctor(System.String)
  3971. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11 (Exception_t * __this, String_t* ___message0, const RuntimeMethod* method);
  3972. // System.Boolean System.Collections.Generic.HashSet`1<System.Reflection.MethodInfo>::Add(!0)
  3973. inline bool HashSet_1_Add_m47166AE5EE03DC50412461976B04A3AE9E5A1221 (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * __this, MethodInfo_t * ___item0, const RuntimeMethod* method)
  3974. {
  3975. return (( bool (*) (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 *, MethodInfo_t *, const RuntimeMethod*))HashSet_1_Add_m8194125167FD7A887F1B39D342A71A0BD0C8BF5C_gshared)(__this, ___item0, method);
  3976. }
  3977. // System.Collections.Generic.List`1/Enumerator<!0> System.Collections.Generic.List`1<System.Reflection.MemberInfo>::GetEnumerator()
  3978. inline Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 List_1_GetEnumerator_m089C46303B20B6F4FD29DA88460F7EEFE8DCDBDF (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * __this, const RuntimeMethod* method)
  3979. {
  3980. return (( Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 (*) (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *, const RuntimeMethod*))List_1_GetEnumerator_m6339FC2D3D1CE4FA13CF21C7F9FC58CA4441BF0C_gshared)(__this, method);
  3981. }
  3982. // !0 System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>::get_Current()
  3983. inline MemberInfo_t * Enumerator_get_Current_m58FDC6A062881DAEC2F5BB6B54D6E0CBFE1DD3FF_inline (Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 * __this, const RuntimeMethod* method)
  3984. {
  3985. return (( MemberInfo_t * (*) (Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 *, const RuntimeMethod*))Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline)(__this, method);
  3986. }
  3987. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>::MoveNext()
  3988. inline bool Enumerator_MoveNext_m39457ECCFA33B12E940FA4A7E1029E8259B84A0A (Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 * __this, const RuntimeMethod* method)
  3989. {
  3990. return (( bool (*) (Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
  3991. }
  3992. // System.Void System.Collections.Generic.List`1/Enumerator<System.Reflection.MemberInfo>::Dispose()
  3993. inline void Enumerator_Dispose_m66B6014AAC073A8093FBAF261EC9BCBB619FA6DA (Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 * __this, const RuntimeMethod* method)
  3994. {
  3995. (( void (*) (Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
  3996. }
  3997. // System.Collections.Generic.IEnumerable`1<!!0> System.Linq.Enumerable::Reverse<System.Reflection.FieldInfo>(System.Collections.Generic.IEnumerable`1<!!0>)
  3998. inline RuntimeObject* Enumerable_Reverse_TisFieldInfo_t_m2CDF1186819006BE1C95329549310BE226A6978C (RuntimeObject* ___source0, const RuntimeMethod* method)
  3999. {
  4000. return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))Enumerable_Reverse_TisRuntimeObject_m9AC71B31601BC5C30774F74492565D83BFAE8F30_gshared)(___source0, method);
  4001. }
  4002. // System.Boolean System.Collections.Generic.List`1/Enumerator<System.Type>::MoveNext()
  4003. inline bool Enumerator_MoveNext_m9F0ED3B48B89C28810E4AE3148259FDB7075B16A (Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC * __this, const RuntimeMethod* method)
  4004. {
  4005. return (( bool (*) (Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method);
  4006. }
  4007. // System.Void System.Collections.Generic.List`1/Enumerator<System.Type>::Dispose()
  4008. inline void Enumerator_Dispose_m018F1D72F1A7C5688D4990D36C8DE3F761DBEAD2 (Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC * __this, const RuntimeMethod* method)
  4009. {
  4010. (( void (*) (Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method);
  4011. }
  4012. // System.Type o0.Reflection::EnumerateItemType(System.Type)
  4013. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Reflection_EnumerateItemType_m1837558A6F947AA64319B11867A90702F4556062 (Type_t * ___type0, const RuntimeMethod* method);
  4014. // System.Int32 System.Collections.Generic.List`1<System.Reflection.MemberInfo>::get_Count()
  4015. inline int32_t List_1_get_Count_mCAEA1EE8853594506435D323C3CEED01B210B708_inline (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * __this, const RuntimeMethod* method)
  4016. {
  4017. return (( int32_t (*) (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
  4018. }
  4019. // System.Void System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>::.ctor()
  4020. inline void Dictionary_2__ctor_m8E556BB6EE0B1AA485160855260A049C62CE7304 (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * __this, const RuntimeMethod* method)
  4021. {
  4022. (( void (*) (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D *, const RuntimeMethod*))Dictionary_2__ctor_m2C86B97ECE6AE7C712325B867E35AA7BD2AED627_gshared)(__this, method);
  4023. }
  4024. // System.Collections.Generic.IEnumerable`1<System.Int32> o0.Extension::Index<System.Reflection.MemberInfo>(System.Collections.Generic.IEnumerable`1<T>)
  4025. inline RuntimeObject* Extension_Index_TisMemberInfo_t_m647621337E23DDF470ACCC7F7103C96BEE7D676E (RuntimeObject* ___ts0, const RuntimeMethod* method)
  4026. {
  4027. return (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))Extension_Index_TisRuntimeObject_mBBC6A740CD2D5B335D0C6504996637CE85D0BEA5_gshared)(___ts0, method);
  4028. }
  4029. // !0 System.Collections.Generic.List`1<System.Reflection.MemberInfo>::get_Item(System.Int32)
  4030. inline MemberInfo_t * List_1_get_Item_m0F50D699DFEFF36EF0B525B3CCC461D7D9708A6D_inline (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * __this, int32_t ___index0, const RuntimeMethod* method)
  4031. {
  4032. return (( MemberInfo_t * (*) (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method);
  4033. }
  4034. // System.String o0.Reflection::DeclaringName(System.Reflection.MemberInfo)
  4035. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Reflection_DeclaringName_m7413A9B1BAA63EE304C1B04F8D5E8A0F1B4ACD88 (MemberInfo_t * ___Info0, const RuntimeMethod* method);
  4036. // System.Boolean System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>::ContainsKey(!0)
  4037. inline bool Dictionary_2_ContainsKey_m3A2C6993636B0402C60BE82BD623536F129C3880 (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * __this, String_t* ___key0, const RuntimeMethod* method)
  4038. {
  4039. return (( bool (*) (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D *, String_t*, const RuntimeMethod*))Dictionary_2_ContainsKey_m9925DD937D01736A058643F9F6B26113BEBDC554_gshared)(__this, ___key0, method);
  4040. }
  4041. // System.Void o0.Serialize/Member::.ctor(System.Reflection.MemberInfo,System.String)
  4042. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667 (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * __this, MemberInfo_t * ___Info0, String_t* ___Name1, const RuntimeMethod* method);
  4043. // System.Void System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>::Add(!0,!1)
  4044. inline void Dictionary_2_Add_m35E986A532C1FB91E5FF0366052BFC39D5279EAB (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * __this, String_t* ___key0, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F ___value1, const RuntimeMethod* method)
  4045. {
  4046. (( void (*) (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D *, String_t*, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F , const RuntimeMethod*))Dictionary_2_Add_m210D36494E162A8267B367475908201D5B28BD71_gshared)(__this, ___key0, ___value1, method);
  4047. }
  4048. // System.Void System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>::.ctor(!0,!1)
  4049. inline void ValueTuple_2__ctor_m6B194F6592DA2DACDA26B38D85321CF54D82C15D (ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 * __this, MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* ___item10, Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * ___item21, const RuntimeMethod* method)
  4050. {
  4051. (( void (*) (ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 *, MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D*, Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D *, const RuntimeMethod*))ValueTuple_2__ctor_mBABF7EBF37F40A20153104D68C2BD6FB6A777D20_gshared)(__this, ___item10, ___item21, method);
  4052. }
  4053. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>::Add(!0,!1)
  4054. inline void Dictionary_2_Add_m3C4BAB1F998CD117ABC32F83E5838D05E60123C1 (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * __this, Type_t * ___key0, ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 ___value1, const RuntimeMethod* method)
  4055. {
  4056. (( void (*) (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 *, Type_t *, ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 , const RuntimeMethod*))Dictionary_2_Add_m24EC74D878E074BE6FDE72D2679425CF7BA3D435_gshared)(__this, ___key0, ___value1, method);
  4057. }
  4058. // System.Void System.Threading.Monitor::Exit(System.Object)
  4059. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A (RuntimeObject * ___obj0, const RuntimeMethod* method);
  4060. // System.Void System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>>::.ctor()
  4061. inline void Dictionary_2__ctor_mB26107A11A1064E55E0E0C0FA8E664F3D1487A4B (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * __this, const RuntimeMethod* method)
  4062. {
  4063. (( void (*) (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 *, const RuntimeMethod*))Dictionary_2__ctor_mD4D067F3EBC54A8051401AC4C091B8E5F2C69C4B_gshared)(__this, method);
  4064. }
  4065. // System.Type o0.Reflection::DeclaringType(System.Reflection.MemberInfo)
  4066. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Reflection_DeclaringType_mFE7A6F4780B46C5448F71B28D28CAA1F5BC49AC3 (MemberInfo_t * ___Info0, const RuntimeMethod* method);
  4067. // System.Boolean System.Type::get_IsInterface()
  4068. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_get_IsInterface_mB10C34DEE8B22E1597C813211BBED17DD724FC07 (Type_t * __this, const RuntimeMethod* method);
  4069. // System.String System.String::Concat(System.String[])
  4070. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method);
  4071. // System.Boolean System.Type::op_Equality(System.Type,System.Type)
  4072. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046 (Type_t * ___left0, Type_t * ___right1, const RuntimeMethod* method);
  4073. // System.Func`2<System.Object,System.Object> o0.Reflection::MakeGetter(System.Reflection.MemberInfo)
  4074. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * Reflection_MakeGetter_m51FC7D26543E4293E063E8132C96841BBE959B24 (MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
  4075. // System.Boolean System.Reflection.FieldInfo::get_IsInitOnly()
  4076. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FieldInfo_get_IsInitOnly_mA279E731A1097E83BACAF9F53612CFA9428E806B (FieldInfo_t * __this, const RuntimeMethod* method);
  4077. // System.Void System.Action`2<System.Object,System.Object>::.ctor(System.Object,System.IntPtr)
  4078. inline void Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1 (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method)
  4079. {
  4080. (( void (*) (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D *, RuntimeObject *, intptr_t, const RuntimeMethod*))Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_gshared)(__this, ___object0, ___method1, method);
  4081. }
  4082. // System.Action`2<System.Object,System.Object> o0.Reflection::MakeSetter(System.Reflection.MemberInfo)
  4083. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * Reflection_MakeSetter_m7A042A7B422DD6522E1ADC5499DAFB5749640276 (MemberInfo_t * ___memberInfo0, const RuntimeMethod* method);
  4084. // System.Object o0.Extension::To(System.Object,System.Type)
  4085. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Extension_To_m04277AD155E79BEE53EB8B9E70F9E267B9DE60BE (RuntimeObject * ___o0, Type_t * ___to1, const RuntimeMethod* method);
  4086. // System.String System.String::Concat(System.String,System.String)
  4087. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
  4088. // System.Object o0.Serialize/Member::Get(System.Object&)
  4089. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Member_Get_m1AB03C52CCE4EFA680926FD60FDC9D5C8EE9D858 (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * __this, RuntimeObject ** ___o0, const RuntimeMethod* method);
  4090. // System.Void System.Action`2<System.Object,System.Object>::Invoke(!0,!1)
  4091. inline void Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * __this, RuntimeObject * ___arg10, RuntimeObject * ___arg21, const RuntimeMethod* method)
  4092. {
  4093. (( void (*) (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_gshared)(__this, ___arg10, ___arg21, method);
  4094. }
  4095. // System.Void o0.Serialize/Member::Set(System.Object&,System.Object)
  4096. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Member_Set_m3B05C25ACF317E16F369398067387082A557AFA6 (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * __this, RuntimeObject ** ___o0, RuntimeObject * ___v1, const RuntimeMethod* method);
  4097. // System.Void o0.Serialize/Object::.ctor(o0.SerializeType,System.Object)
  4098. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m3C4F908C7270C91CDC792515601FC39B9886BAA1 (Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C * __this, int32_t ___Type0, RuntimeObject * ___Data1, const RuntimeMethod* method);
  4099. // System.Void o0.o0/<>c::.ctor()
  4100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m0C378D5439782A3D992A8670A2F9EA8639C6B5F9 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, const RuntimeMethod* method);
  4101. // System.Double Fractions.Fraction::ToDouble()
  4102. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double Fraction_ToDouble_m0631F7B038C4A5D0E55E8581A58EFAA695C5DD80 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, const RuntimeMethod* method);
  4103. // System.UInt32 Fractions.Fraction::ToUInt32()
  4104. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Fraction_ToUInt32_m995E6DEE541BCAE8D1A5D3A3B7913644EC62496D (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, const RuntimeMethod* method);
  4105. // System.Int32 Fractions.Fraction::ToInt32()
  4106. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Fraction_ToInt32_m43F36531D20AD29756213BC1F5CF1C7BAAFAF460 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, const RuntimeMethod* method);
  4107. // System.UInt64 Fractions.Fraction::ToUInt64()
  4108. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t Fraction_ToUInt64_m01C43B1AAD0FB188A4C2180B736E7B6A00F5D43B (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, const RuntimeMethod* method);
  4109. // System.Int64 Fractions.Fraction::ToInt64()
  4110. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Fraction_ToInt64_m86B83DF9DC82ECD113227E800C99375E290637E3 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, const RuntimeMethod* method);
  4111. // System.String Fractions.Fraction::ToString()
  4112. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Fraction_ToString_mFB99015CB4CF962B2930C780FAD36030E7C30913 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, const RuntimeMethod* method);
  4113. // Fractions.Fraction Fractions.Fraction::FromDoubleRounded(System.Double)
  4114. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_FromDoubleRounded_mECC3C6EE14BC6946FF0C1FCC433F4F309B119C6F (double ___value0, const RuntimeMethod* method);
  4115. // Fractions.Fraction Fractions.Fraction::op_Implicit(System.UInt32)
  4116. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Implicit_m1F105F3B1C5C785F1D1067CC4A437FE32E9C2D58 (uint32_t ___value0, const RuntimeMethod* method);
  4117. // Fractions.Fraction Fractions.Fraction::op_Implicit(System.Int32)
  4118. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Implicit_m2C310A94FA8DE8A9B6F415235B7AFB9F4DAC39A0 (int32_t ___value0, const RuntimeMethod* method);
  4119. // Fractions.Fraction Fractions.Fraction::op_Implicit(System.UInt64)
  4120. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Implicit_m5E5B14C4EE7D97354CBCC674FA827BC8F064DCA5 (uint64_t ___value0, const RuntimeMethod* method);
  4121. // Fractions.Fraction Fractions.Fraction::op_Implicit(System.Int64)
  4122. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Implicit_m6937ED8888DA32BCF159332F37190EC6E373BCE6 (int64_t ___value0, const RuntimeMethod* method);
  4123. // Fractions.Fraction Fractions.Fraction::FromString(System.String)
  4124. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_FromString_m3747CD0374DB88D2A3BB38443A54DC031EACD709 (String_t* ___fractionString0, const RuntimeMethod* method);
  4125. // Fractions.Fraction Fractions.Fraction::op_Addition(Fractions.Fraction,Fractions.Fraction)
  4126. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Addition_mDEFF3A47C70E46003BD5DA57B5551C508BF4DE95 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method);
  4127. // Fractions.Fraction Fractions.Fraction::op_Subtraction(Fractions.Fraction,Fractions.Fraction)
  4128. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Subtraction_m484CAB8A8EA19BE90D429CBF2F1F2EC278CB4076 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method);
  4129. // Fractions.Fraction Fractions.Fraction::op_Multiply(Fractions.Fraction,Fractions.Fraction)
  4130. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Multiply_mDE606ED84C0076FC3339588D7241033B873ABA4A (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method);
  4131. // Fractions.Fraction Fractions.Fraction::op_Division(Fractions.Fraction,Fractions.Fraction)
  4132. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_op_Division_m02A0B73BF77F61E931B992B2196B744F00D42764 (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method);
  4133. // Fractions.Fraction Fractions.Fraction::Abs(Fractions.Fraction)
  4134. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 Fraction_Abs_m27CD74E35F0FFDBC59C2D360539ED0D2ABEEDE2A (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___fraction0, const RuntimeMethod* method);
  4135. // System.Void Fractions.Fraction::.ctor(System.Double)
  4136. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Fraction__ctor_m999E37E0012CC2C2F33E0D55C1B84CD09154DEBA (Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 * __this, double ___value0, const RuntimeMethod* method);
  4137. // System.Void o0.Serialize/CustomByFunction/<>c::.ctor()
  4138. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m7183B71E9E579D393ECF92A6182A5EAA751CC46F (U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * __this, const RuntimeMethod* method);
  4139. // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
  4140. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method);
  4141. #ifdef __clang__
  4142. #pragma clang diagnostic push
  4143. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4144. #pragma clang diagnostic ignored "-Wunused-variable"
  4145. #endif
  4146. // System.Collections.Generic.Dictionary`2<System.Reflection.FieldInfo,System.Reflection.PropertyInfo> o0.Reflection/Buffer::get_AutoProperty()
  4147. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * Buffer_get_AutoProperty_m254266B0F1DF4C3B27044BB10C5FC98E24947458 (Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9 * __this, const RuntimeMethod* method)
  4148. {
  4149. {
  4150. Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * L_0 = __this->get_U3CAutoPropertyU3Ek__BackingField_0();
  4151. return L_0;
  4152. }
  4153. }
  4154. // System.Void o0.Reflection/Buffer::.ctor(System.Type)
  4155. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Buffer__ctor_m31583991925B84BE2DB5BEBED5292661AEF7C75A (Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9 * __this, Type_t * ___t0, const RuntimeMethod* method)
  4156. {
  4157. static bool s_Il2CppMethodInitialized;
  4158. if (!s_Il2CppMethodInitialized)
  4159. {
  4160. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CustomAttributeExtensions_GetCustomAttribute_TisCompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C_m61858CDBD29749D144AC7B301A872269F45E7403_RuntimeMethod_var);
  4161. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_mF8CC4C7ABC8E3FA0BD4876241818D4263D95FF8D_RuntimeMethod_var);
  4162. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m5E8BF58B9A0C7BD1F095F2E7B474DA7FC2CCF66C_RuntimeMethod_var);
  4163. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D_il2cpp_TypeInfo_var);
  4164. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2FBBC49654C122288A0A99D5B96BED1CF8543B07);
  4165. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11);
  4166. s_Il2CppMethodInitialized = true;
  4167. }
  4168. PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* V_0 = NULL;
  4169. int32_t V_1 = 0;
  4170. PropertyInfo_t * V_2 = NULL;
  4171. FieldInfo_t * V_3 = NULL;
  4172. bool V_4 = false;
  4173. int32_t G_B4_0 = 0;
  4174. {
  4175. Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * L_0 = (Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D *)il2cpp_codegen_object_new(Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D_il2cpp_TypeInfo_var);
  4176. Dictionary_2__ctor_m5E8BF58B9A0C7BD1F095F2E7B474DA7FC2CCF66C(L_0, /*hidden argument*/Dictionary_2__ctor_m5E8BF58B9A0C7BD1F095F2E7B474DA7FC2CCF66C_RuntimeMethod_var);
  4177. __this->set_U3CAutoPropertyU3Ek__BackingField_0(L_0);
  4178. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  4179. Type_t * L_1 = ___t0;
  4180. NullCheck(L_1);
  4181. PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_2;
  4182. L_2 = Type_GetProperties_m4126C117279AD617D8D167367DF953C451FC49E3(L_1, /*hidden argument*/NULL);
  4183. V_0 = L_2;
  4184. V_1 = 0;
  4185. goto IL_0072;
  4186. }
  4187. IL_001f:
  4188. {
  4189. PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_3 = V_0;
  4190. int32_t L_4 = V_1;
  4191. NullCheck(L_3);
  4192. int32_t L_5 = L_4;
  4193. PropertyInfo_t * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
  4194. V_2 = L_6;
  4195. Type_t * L_7 = ___t0;
  4196. PropertyInfo_t * L_8 = V_2;
  4197. NullCheck(L_8);
  4198. String_t* L_9;
  4199. L_9 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_8);
  4200. String_t* L_10;
  4201. L_10 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral725B1CAFF9B49E1231FDA15B85166BBEFAA36A11, L_9, _stringLiteral2FBBC49654C122288A0A99D5B96BED1CF8543B07, /*hidden argument*/NULL);
  4202. NullCheck(L_7);
  4203. FieldInfo_t * L_11;
  4204. L_11 = VirtualFuncInvoker2< FieldInfo_t *, String_t*, int32_t >::Invoke(45 /* System.Reflection.FieldInfo System.Type::GetField(System.String,System.Reflection.BindingFlags) */, L_7, L_10, ((int32_t)36));
  4205. V_3 = L_11;
  4206. FieldInfo_t * L_12 = V_3;
  4207. bool L_13;
  4208. L_13 = FieldInfo_op_Equality_m317FBF38CA6FD67D08400CC9A15FEC250E5D4751((FieldInfo_t *)NULL, L_12, /*hidden argument*/NULL);
  4209. if (L_13)
  4210. {
  4211. goto IL_0056;
  4212. }
  4213. }
  4214. {
  4215. FieldInfo_t * L_14 = V_3;
  4216. CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C * L_15;
  4217. L_15 = CustomAttributeExtensions_GetCustomAttribute_TisCompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C_m61858CDBD29749D144AC7B301A872269F45E7403(L_14, /*hidden argument*/CustomAttributeExtensions_GetCustomAttribute_TisCompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C_m61858CDBD29749D144AC7B301A872269F45E7403_RuntimeMethod_var);
  4218. G_B4_0 = ((((RuntimeObject*)(CompilerGeneratedAttribute_t39106AB982658D7A94C27DEF3C48DB2F5F7CD75C *)L_15) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  4219. goto IL_0057;
  4220. }
  4221. IL_0056:
  4222. {
  4223. G_B4_0 = 1;
  4224. }
  4225. IL_0057:
  4226. {
  4227. V_4 = (bool)G_B4_0;
  4228. bool L_16 = V_4;
  4229. if (!L_16)
  4230. {
  4231. goto IL_005f;
  4232. }
  4233. }
  4234. {
  4235. goto IL_006e;
  4236. }
  4237. IL_005f:
  4238. {
  4239. Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * L_17;
  4240. L_17 = Buffer_get_AutoProperty_m254266B0F1DF4C3B27044BB10C5FC98E24947458_inline(__this, /*hidden argument*/NULL);
  4241. FieldInfo_t * L_18 = V_3;
  4242. PropertyInfo_t * L_19 = V_2;
  4243. NullCheck(L_17);
  4244. Dictionary_2_Add_mF8CC4C7ABC8E3FA0BD4876241818D4263D95FF8D(L_17, L_18, L_19, /*hidden argument*/Dictionary_2_Add_mF8CC4C7ABC8E3FA0BD4876241818D4263D95FF8D_RuntimeMethod_var);
  4245. }
  4246. IL_006e:
  4247. {
  4248. int32_t L_20 = V_1;
  4249. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1));
  4250. }
  4251. IL_0072:
  4252. {
  4253. int32_t L_21 = V_1;
  4254. PropertyInfoU5BU5D_tE59E95F68533BDA98ABBBEACB6A99BF2C7A4A26A* L_22 = V_0;
  4255. NullCheck(L_22);
  4256. if ((((int32_t)L_21) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length))))))
  4257. {
  4258. goto IL_001f;
  4259. }
  4260. }
  4261. {
  4262. return;
  4263. }
  4264. }
  4265. #ifdef __clang__
  4266. #pragma clang diagnostic pop
  4267. #endif
  4268. #ifdef __clang__
  4269. #pragma clang diagnostic push
  4270. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4271. #pragma clang diagnostic ignored "-Wunused-variable"
  4272. #endif
  4273. #ifdef __clang__
  4274. #pragma clang diagnostic pop
  4275. #endif
  4276. #ifdef __clang__
  4277. #pragma clang diagnostic push
  4278. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4279. #pragma clang diagnostic ignored "-Wunused-variable"
  4280. #endif
  4281. // System.Void o0.Serialize/CustomByFunction::.ctor()
  4282. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByFunction__ctor_mA06F33A23F0114B41D56BE2CFA6228020D7D6AA3 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, const RuntimeMethod* method)
  4283. {
  4284. static bool s_Il2CppMethodInitialized;
  4285. if (!s_Il2CppMethodInitialized)
  4286. {
  4287. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var);
  4288. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_0_0_0_var);
  4289. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m577DAC66615F3A61AF4F274851D69214F4079240_RuntimeMethod_var);
  4290. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m8C7EBEC22935640DB9D5AB825710B7E4BAB484FE_RuntimeMethod_var);
  4291. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m8F650631798982D60619B52E1B61C58A17D253B8_RuntimeMethod_var);
  4292. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA0DCCC1EED2A8CBFD988BDF35EC7D357425BCEFE_RuntimeMethod_var);
  4293. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB_RuntimeMethod_var);
  4294. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mD93C9534DDA3D738DE794F25C834992C39B117D7_RuntimeMethod_var);
  4295. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C_il2cpp_TypeInfo_var);
  4296. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B_il2cpp_TypeInfo_var);
  4297. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272_il2cpp_TypeInfo_var);
  4298. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3_il2cpp_TypeInfo_var);
  4299. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506_il2cpp_TypeInfo_var);
  4300. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16_il2cpp_TypeInfo_var);
  4301. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_0_0_0_var);
  4302. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemberInfo_t_0_0_0_var);
  4303. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MethodInfo_t_0_0_0_var);
  4304. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_0_0_0_var);
  4305. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_0_0_0_var);
  4306. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  4307. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_ctorU3Eb__3_0_m2F74C3D01FD5618DEAC3412F332533AB2D149865_RuntimeMethod_var);
  4308. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var);
  4309. s_Il2CppMethodInitialized = true;
  4310. }
  4311. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * G_B2_0 = NULL;
  4312. CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * G_B2_1 = NULL;
  4313. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * G_B1_0 = NULL;
  4314. CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * G_B1_1 = NULL;
  4315. {
  4316. Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * L_0 = (Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 *)il2cpp_codegen_object_new(Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3_il2cpp_TypeInfo_var);
  4317. Dictionary_2__ctor_mA0DCCC1EED2A8CBFD988BDF35EC7D357425BCEFE(L_0, /*hidden argument*/Dictionary_2__ctor_mA0DCCC1EED2A8CBFD988BDF35EC7D357425BCEFE_RuntimeMethod_var);
  4318. __this->set_SerializeInfos_0(L_0);
  4319. Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * L_1 = (Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C *)il2cpp_codegen_object_new(Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C_il2cpp_TypeInfo_var);
  4320. Dictionary_2__ctor_mD93C9534DDA3D738DE794F25C834992C39B117D7(L_1, /*hidden argument*/Dictionary_2__ctor_mD93C9534DDA3D738DE794F25C834992C39B117D7_RuntimeMethod_var);
  4321. __this->set_OnSerialize_1(L_1);
  4322. Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * L_2 = (Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 *)il2cpp_codegen_object_new(Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272_il2cpp_TypeInfo_var);
  4323. Dictionary_2__ctor_m577DAC66615F3A61AF4F274851D69214F4079240(L_2, /*hidden argument*/Dictionary_2__ctor_m577DAC66615F3A61AF4F274851D69214F4079240_RuntimeMethod_var);
  4324. __this->set_OnDeserialize_2(L_2);
  4325. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_3 = (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 *)il2cpp_codegen_object_new(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506_il2cpp_TypeInfo_var);
  4326. Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB(L_3, /*hidden argument*/Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB_RuntimeMethod_var);
  4327. __this->set_SerializeInfosSingleValue_3(L_3);
  4328. Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * L_4 = (Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B *)il2cpp_codegen_object_new(Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B_il2cpp_TypeInfo_var);
  4329. Dictionary_2__ctor_m8F650631798982D60619B52E1B61C58A17D253B8(L_4, /*hidden argument*/Dictionary_2__ctor_m8F650631798982D60619B52E1B61C58A17D253B8_RuntimeMethod_var);
  4330. __this->set_OnSerializeSingleValue_4(L_4);
  4331. Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * L_5 = (Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 *)il2cpp_codegen_object_new(Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16_il2cpp_TypeInfo_var);
  4332. Dictionary_2__ctor_m8C7EBEC22935640DB9D5AB825710B7E4BAB484FE(L_5, /*hidden argument*/Dictionary_2__ctor_m8C7EBEC22935640DB9D5AB825710B7E4BAB484FE_RuntimeMethod_var);
  4333. __this->set_OnDeserializeSingleValue_5(L_5);
  4334. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  4335. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_6 = { reinterpret_cast<intptr_t> (MemberInfo_t_0_0_0_var) };
  4336. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  4337. Type_t * L_7;
  4338. L_7 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_6, /*hidden argument*/NULL);
  4339. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_8 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
  4340. Type_t * L_9;
  4341. L_9 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_8, /*hidden argument*/NULL);
  4342. CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042(__this, L_7, L_9, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)NULL, (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)NULL, /*hidden argument*/NULL);
  4343. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_10 = { reinterpret_cast<intptr_t> (FieldInfo_t_0_0_0_var) };
  4344. Type_t * L_11;
  4345. L_11 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_10, /*hidden argument*/NULL);
  4346. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_12 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
  4347. Type_t * L_13;
  4348. L_13 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_12, /*hidden argument*/NULL);
  4349. CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042(__this, L_11, L_13, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)NULL, (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)NULL, /*hidden argument*/NULL);
  4350. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_14 = { reinterpret_cast<intptr_t> (PropertyInfo_t_0_0_0_var) };
  4351. Type_t * L_15;
  4352. L_15 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_14, /*hidden argument*/NULL);
  4353. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_16 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
  4354. Type_t * L_17;
  4355. L_17 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_16, /*hidden argument*/NULL);
  4356. CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042(__this, L_15, L_17, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)NULL, (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)NULL, /*hidden argument*/NULL);
  4357. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_18 = { reinterpret_cast<intptr_t> (ConstructorInfo_t449AEC508DCA508EE46784C4F2716545488ACD5B_0_0_0_var) };
  4358. Type_t * L_19;
  4359. L_19 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_18, /*hidden argument*/NULL);
  4360. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_20 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
  4361. Type_t * L_21;
  4362. L_21 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_20, /*hidden argument*/NULL);
  4363. CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042(__this, L_19, L_21, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)NULL, (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)NULL, /*hidden argument*/NULL);
  4364. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_22 = { reinterpret_cast<intptr_t> (MethodInfo_t_0_0_0_var) };
  4365. Type_t * L_23;
  4366. L_23 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_22, /*hidden argument*/NULL);
  4367. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_24 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
  4368. Type_t * L_25;
  4369. L_25 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_24, /*hidden argument*/NULL);
  4370. CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042(__this, L_23, L_25, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)NULL, (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)NULL, /*hidden argument*/NULL);
  4371. IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var);
  4372. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_26 = ((U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var))->get_U3CU3E9__3_0_1();
  4373. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_27 = L_26;
  4374. G_B1_0 = L_27;
  4375. G_B1_1 = __this;
  4376. if (L_27)
  4377. {
  4378. G_B2_0 = L_27;
  4379. G_B2_1 = __this;
  4380. goto IL_00fb;
  4381. }
  4382. }
  4383. {
  4384. IL2CPP_RUNTIME_CLASS_INIT(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var);
  4385. U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * L_28 = ((U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var))->get_U3CU3E9_0();
  4386. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_29 = (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 *)il2cpp_codegen_object_new(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6_il2cpp_TypeInfo_var);
  4387. Action__ctor_m07BE5EE8A629FBBA52AE6356D57A0D371BE2574B(L_29, L_28, (intptr_t)((intptr_t)U3CU3Ec_U3C_ctorU3Eb__3_0_m2F74C3D01FD5618DEAC3412F332533AB2D149865_RuntimeMethod_var), /*hidden argument*/NULL);
  4388. Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_30 = L_29;
  4389. ((U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var))->set_U3CU3E9__3_0_1(L_30);
  4390. G_B2_0 = L_30;
  4391. G_B2_1 = G_B1_1;
  4392. }
  4393. IL_00fb:
  4394. {
  4395. NullCheck(G_B2_0);
  4396. MethodInfo_t * L_31;
  4397. L_31 = Delegate_get_Method_m8C2479250311F4BEA75F013CD3045F5558DE2227(G_B2_0, /*hidden argument*/NULL);
  4398. NullCheck(L_31);
  4399. Type_t * L_32;
  4400. L_32 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_31, /*hidden argument*/NULL);
  4401. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_33 = { reinterpret_cast<intptr_t> (String_t_0_0_0_var) };
  4402. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  4403. Type_t * L_34;
  4404. L_34 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_33, /*hidden argument*/NULL);
  4405. NullCheck(G_B2_1);
  4406. CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042(G_B2_1, L_32, L_34, (Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)NULL, (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)NULL, /*hidden argument*/NULL);
  4407. return;
  4408. }
  4409. }
  4410. // System.Boolean o0.Serialize/CustomByFunction::IsSerializable(System.Type)
  4411. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CustomByFunction_IsSerializable_m138256E7B7371E71883DA096C7B28AB70C63029C (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, const RuntimeMethod* method)
  4412. {
  4413. static bool s_Il2CppMethodInitialized;
  4414. if (!s_Il2CppMethodInitialized)
  4415. {
  4416. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m66EEF5200027D79C60A47E15D350B5006B299898_RuntimeMethod_var);
  4417. s_Il2CppMethodInitialized = true;
  4418. }
  4419. {
  4420. Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * L_0 = __this->get_SerializeInfos_0();
  4421. Type_t * L_1 = ___type0;
  4422. NullCheck(L_0);
  4423. bool L_2;
  4424. L_2 = Dictionary_2_ContainsKey_m66EEF5200027D79C60A47E15D350B5006B299898(L_0, L_1, /*hidden argument*/Dictionary_2_ContainsKey_m66EEF5200027D79C60A47E15D350B5006B299898_RuntimeMethod_var);
  4425. return L_2;
  4426. }
  4427. }
  4428. // System.ValueTuple`2<System.String,System.Type>[] o0.Serialize/CustomByFunction::SerializeInfo(System.Type)
  4429. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* CustomByFunction_SerializeInfo_m51CD6037CF024E5A001C341C395449D1D94B0723 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, const RuntimeMethod* method)
  4430. {
  4431. static bool s_Il2CppMethodInitialized;
  4432. if (!s_Il2CppMethodInitialized)
  4433. {
  4434. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var);
  4435. s_Il2CppMethodInitialized = true;
  4436. }
  4437. {
  4438. Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * L_0 = __this->get_SerializeInfos_0();
  4439. Type_t * L_1 = ___type0;
  4440. NullCheck(L_0);
  4441. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_2;
  4442. L_2 = Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3(L_0, L_1, /*hidden argument*/Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var);
  4443. return L_2;
  4444. }
  4445. }
  4446. // System.Collections.Generic.List`1<System.Object> o0.Serialize/CustomByFunction::Serialize(System.Type,System.Object)
  4447. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * CustomByFunction_Serialize_m1891D2CCC1370460528FB84466565EEC5DB2A6E1 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, RuntimeObject * ___o1, const RuntimeMethod* method)
  4448. {
  4449. static bool s_Il2CppMethodInitialized;
  4450. if (!s_Il2CppMethodInitialized)
  4451. {
  4452. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mBD772D80E87C54F73C8C8A13BC442646E674F974_RuntimeMethod_var);
  4453. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m009D9FC8C5181EC91BBB09B66D2E4D75A1BBC7E3_RuntimeMethod_var);
  4454. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var);
  4455. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2_RuntimeMethod_var);
  4456. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_Invoke_m8B7E47CF33294F69FABB2E6DC47C917623E4C48C_RuntimeMethod_var);
  4457. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_RuntimeMethod_var);
  4458. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var);
  4459. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var);
  4460. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  4461. s_Il2CppMethodInitialized = true;
  4462. }
  4463. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * V_0 = NULL;
  4464. bool V_1 = false;
  4465. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * V_2 = NULL;
  4466. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* V_3 = NULL;
  4467. int32_t V_4 = 0;
  4468. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 V_5;
  4469. memset((&V_5), 0, sizeof(V_5));
  4470. Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * G_B3_0 = NULL;
  4471. Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * G_B2_0 = NULL;
  4472. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * G_B4_0 = NULL;
  4473. MemberInfo_t * G_B8_0 = NULL;
  4474. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * G_B8_1 = NULL;
  4475. MemberInfo_t * G_B7_0 = NULL;
  4476. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * G_B7_1 = NULL;
  4477. RuntimeObject * G_B9_0 = NULL;
  4478. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * G_B9_1 = NULL;
  4479. {
  4480. Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * L_0 = __this->get_OnSerialize_1();
  4481. Type_t * L_1 = ___type0;
  4482. NullCheck(L_0);
  4483. bool L_2;
  4484. L_2 = Dictionary_2_ContainsKey_mBD772D80E87C54F73C8C8A13BC442646E674F974(L_0, L_1, /*hidden argument*/Dictionary_2_ContainsKey_mBD772D80E87C54F73C8C8A13BC442646E674F974_RuntimeMethod_var);
  4485. V_1 = L_2;
  4486. bool L_3 = V_1;
  4487. if (!L_3)
  4488. {
  4489. goto IL_002d;
  4490. }
  4491. }
  4492. {
  4493. Dictionary_2_t374EB33AD626BC99DEB18368C6B61E161A7B744C * L_4 = __this->get_OnSerialize_1();
  4494. Type_t * L_5 = ___type0;
  4495. NullCheck(L_4);
  4496. Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * L_6;
  4497. L_6 = Dictionary_2_get_Item_m009D9FC8C5181EC91BBB09B66D2E4D75A1BBC7E3(L_4, L_5, /*hidden argument*/Dictionary_2_get_Item_m009D9FC8C5181EC91BBB09B66D2E4D75A1BBC7E3_RuntimeMethod_var);
  4498. Func_2_t775FEA27A309EE9FEA04F611E45D04A32703E018 * L_7 = L_6;
  4499. G_B2_0 = L_7;
  4500. if (L_7)
  4501. {
  4502. G_B3_0 = L_7;
  4503. goto IL_0024;
  4504. }
  4505. }
  4506. {
  4507. G_B4_0 = ((List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)(NULL));
  4508. goto IL_002a;
  4509. }
  4510. IL_0024:
  4511. {
  4512. RuntimeObject * L_8 = ___o1;
  4513. NullCheck(G_B3_0);
  4514. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_9;
  4515. L_9 = Func_2_Invoke_m8B7E47CF33294F69FABB2E6DC47C917623E4C48C(G_B3_0, L_8, /*hidden argument*/Func_2_Invoke_m8B7E47CF33294F69FABB2E6DC47C917623E4C48C_RuntimeMethod_var);
  4516. G_B4_0 = L_9;
  4517. }
  4518. IL_002a:
  4519. {
  4520. V_2 = G_B4_0;
  4521. goto IL_0089;
  4522. }
  4523. IL_002d:
  4524. {
  4525. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_10 = (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 *)il2cpp_codegen_object_new(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_il2cpp_TypeInfo_var);
  4526. List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B(L_10, /*hidden argument*/List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_RuntimeMethod_var);
  4527. V_0 = L_10;
  4528. Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * L_11 = __this->get_SerializeInfos_0();
  4529. Type_t * L_12 = ___type0;
  4530. NullCheck(L_11);
  4531. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_13;
  4532. L_13 = Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3(L_11, L_12, /*hidden argument*/Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var);
  4533. V_3 = L_13;
  4534. V_4 = 0;
  4535. goto IL_007e;
  4536. }
  4537. IL_0046:
  4538. {
  4539. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_14 = V_3;
  4540. int32_t L_15 = V_4;
  4541. NullCheck(L_14);
  4542. int32_t L_16 = L_15;
  4543. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 L_17 = (ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 )(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
  4544. V_5 = L_17;
  4545. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_18 = V_0;
  4546. Type_t * L_19 = ___type0;
  4547. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 L_20 = V_5;
  4548. String_t* L_21 = L_20.get_Item1_0();
  4549. NullCheck(L_19);
  4550. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_22;
  4551. L_22 = VirtualFuncInvoker2< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, String_t*, int32_t >::Invoke(65 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_19, L_21, ((int32_t)52));
  4552. MemberInfo_t * L_23;
  4553. L_23 = Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2((RuntimeObject*)(RuntimeObject*)L_22, /*hidden argument*/Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2_RuntimeMethod_var);
  4554. MemberInfo_t * L_24 = L_23;
  4555. G_B7_0 = L_24;
  4556. G_B7_1 = L_18;
  4557. if (L_24)
  4558. {
  4559. G_B8_0 = L_24;
  4560. G_B8_1 = L_18;
  4561. goto IL_006c;
  4562. }
  4563. }
  4564. {
  4565. G_B9_0 = NULL;
  4566. G_B9_1 = G_B7_1;
  4567. goto IL_0072;
  4568. }
  4569. IL_006c:
  4570. {
  4571. RuntimeObject * L_25 = ___o1;
  4572. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  4573. RuntimeObject * L_26;
  4574. L_26 = Reflection_GetValue_m093EC9AF600E61EFC2BA23A07282A62F9D08A294(G_B8_0, L_25, /*hidden argument*/NULL);
  4575. G_B9_0 = L_26;
  4576. G_B9_1 = G_B8_1;
  4577. }
  4578. IL_0072:
  4579. {
  4580. NullCheck(G_B9_1);
  4581. List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD(G_B9_1, G_B9_0, /*hidden argument*/List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_RuntimeMethod_var);
  4582. int32_t L_27 = V_4;
  4583. V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1));
  4584. }
  4585. IL_007e:
  4586. {
  4587. int32_t L_28 = V_4;
  4588. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_29 = V_3;
  4589. NullCheck(L_29);
  4590. if ((((int32_t)L_28) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_29)->max_length))))))
  4591. {
  4592. goto IL_0046;
  4593. }
  4594. }
  4595. {
  4596. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_30 = V_0;
  4597. V_2 = L_30;
  4598. goto IL_0089;
  4599. }
  4600. IL_0089:
  4601. {
  4602. List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * L_31 = V_2;
  4603. return L_31;
  4604. }
  4605. }
  4606. // System.Void o0.Serialize/CustomByFunction::Deserialize(System.Type,System.Object&,System.Collections.Generic.Dictionary`2<System.String,System.Object>)
  4607. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByFunction_Deserialize_m7A06E3CBC7E384162BD691C61C2DD8EB22EE5D55 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, RuntimeObject ** ___o1, Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 * ___dic2, const RuntimeMethod* method)
  4608. {
  4609. static bool s_Il2CppMethodInitialized;
  4610. if (!s_Il2CppMethodInitialized)
  4611. {
  4612. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mFD205815B443E37EC436C0419BEE23A7141CFAF7_RuntimeMethod_var);
  4613. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var);
  4614. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mEC67A37ACAAB1DBAB504B54516BAD1808CB80D5D_RuntimeMethod_var);
  4615. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mF870F9096563EF823CF903774EFE556526A723FC_RuntimeMethod_var);
  4616. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2_RuntimeMethod_var);
  4617. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FormatterServices_t346CDF3874B4B34E7FFFCA2288D9AB1492F6A21C_il2cpp_TypeInfo_var);
  4618. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_Invoke_m33C5FAF2568195A639BD897B550A08B4BABC29CD_RuntimeMethod_var);
  4619. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  4620. s_Il2CppMethodInitialized = true;
  4621. }
  4622. bool V_0 = false;
  4623. bool V_1 = false;
  4624. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* V_2 = NULL;
  4625. int32_t V_3 = 0;
  4626. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 V_4;
  4627. memset((&V_4), 0, sizeof(V_4));
  4628. Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * G_B3_0 = NULL;
  4629. RuntimeObject ** G_B3_1 = NULL;
  4630. Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * G_B2_0 = NULL;
  4631. RuntimeObject ** G_B2_1 = NULL;
  4632. RuntimeObject * G_B4_0 = NULL;
  4633. RuntimeObject ** G_B4_1 = NULL;
  4634. RuntimeObject * G_B7_0 = NULL;
  4635. RuntimeObject ** G_B7_1 = NULL;
  4636. RuntimeObject * G_B6_0 = NULL;
  4637. RuntimeObject ** G_B6_1 = NULL;
  4638. MemberInfo_t * G_B12_0 = NULL;
  4639. MemberInfo_t * G_B11_0 = NULL;
  4640. {
  4641. Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * L_0 = __this->get_OnDeserialize_2();
  4642. Type_t * L_1 = ___type0;
  4643. NullCheck(L_0);
  4644. bool L_2;
  4645. L_2 = Dictionary_2_ContainsKey_mFD205815B443E37EC436C0419BEE23A7141CFAF7(L_0, L_1, /*hidden argument*/Dictionary_2_ContainsKey_mFD205815B443E37EC436C0419BEE23A7141CFAF7_RuntimeMethod_var);
  4646. V_0 = L_2;
  4647. bool L_3 = V_0;
  4648. if (!L_3)
  4649. {
  4650. goto IL_0031;
  4651. }
  4652. }
  4653. {
  4654. RuntimeObject ** L_4 = ___o1;
  4655. Dictionary_2_tDB06E98E830FED0B78C3C3B58F92F26B9C785272 * L_5 = __this->get_OnDeserialize_2();
  4656. Type_t * L_6 = ___type0;
  4657. NullCheck(L_5);
  4658. Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * L_7;
  4659. L_7 = Dictionary_2_get_Item_mF870F9096563EF823CF903774EFE556526A723FC(L_5, L_6, /*hidden argument*/Dictionary_2_get_Item_mF870F9096563EF823CF903774EFE556526A723FC_RuntimeMethod_var);
  4660. Func_3_t9996B0C433ACDF1B79AD6C529191E9C39320542E * L_8 = L_7;
  4661. G_B2_0 = L_8;
  4662. G_B2_1 = L_4;
  4663. if (L_8)
  4664. {
  4665. G_B3_0 = L_8;
  4666. G_B3_1 = L_4;
  4667. goto IL_0026;
  4668. }
  4669. }
  4670. {
  4671. G_B4_0 = NULL;
  4672. G_B4_1 = G_B2_1;
  4673. goto IL_002e;
  4674. }
  4675. IL_0026:
  4676. {
  4677. RuntimeObject ** L_9 = ___o1;
  4678. RuntimeObject * L_10 = *((RuntimeObject **)L_9);
  4679. Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 * L_11 = ___dic2;
  4680. NullCheck(G_B3_0);
  4681. RuntimeObject * L_12;
  4682. L_12 = Func_3_Invoke_m33C5FAF2568195A639BD897B550A08B4BABC29CD(G_B3_0, L_10, L_11, /*hidden argument*/Func_3_Invoke_m33C5FAF2568195A639BD897B550A08B4BABC29CD_RuntimeMethod_var);
  4683. G_B4_0 = L_12;
  4684. G_B4_1 = G_B3_1;
  4685. }
  4686. IL_002e:
  4687. {
  4688. *((RuntimeObject **)G_B4_1) = (RuntimeObject *)G_B4_0;
  4689. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B4_1, (void*)(RuntimeObject *)G_B4_0);
  4690. goto IL_00a2;
  4691. }
  4692. IL_0031:
  4693. {
  4694. RuntimeObject ** L_13 = ___o1;
  4695. RuntimeObject ** L_14 = ___o1;
  4696. RuntimeObject * L_15 = *((RuntimeObject **)L_14);
  4697. RuntimeObject * L_16 = L_15;
  4698. G_B6_0 = L_16;
  4699. G_B6_1 = L_13;
  4700. if (L_16)
  4701. {
  4702. G_B7_0 = L_16;
  4703. G_B7_1 = L_13;
  4704. goto IL_003e;
  4705. }
  4706. }
  4707. {
  4708. Type_t * L_17 = ___type0;
  4709. IL2CPP_RUNTIME_CLASS_INIT(FormatterServices_t346CDF3874B4B34E7FFFCA2288D9AB1492F6A21C_il2cpp_TypeInfo_var);
  4710. RuntimeObject * L_18;
  4711. L_18 = FormatterServices_GetSafeUninitializedObject_mE6E8E7AF34CC664A75BB67ADE6DD154AFA7B008C(L_17, /*hidden argument*/NULL);
  4712. G_B7_0 = L_18;
  4713. G_B7_1 = G_B6_1;
  4714. }
  4715. IL_003e:
  4716. {
  4717. *((RuntimeObject **)G_B7_1) = (RuntimeObject *)G_B7_0;
  4718. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)G_B7_1, (void*)(RuntimeObject *)G_B7_0);
  4719. RuntimeObject ** L_19 = ___o1;
  4720. RuntimeObject * L_20 = *((RuntimeObject **)L_19);
  4721. V_1 = (bool)((((RuntimeObject*)(RuntimeObject *)L_20) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  4722. bool L_21 = V_1;
  4723. if (!L_21)
  4724. {
  4725. goto IL_004e;
  4726. }
  4727. }
  4728. {
  4729. RuntimeObject ** L_22 = ___o1;
  4730. Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 * L_23 = ___dic2;
  4731. *((RuntimeObject **)L_22) = (RuntimeObject *)L_23;
  4732. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_22, (void*)(RuntimeObject *)L_23);
  4733. goto IL_00a2;
  4734. }
  4735. IL_004e:
  4736. {
  4737. Dictionary_2_tDCE49A9DC4BEFE12185BA80097742308790F89E3 * L_24 = __this->get_SerializeInfos_0();
  4738. Type_t * L_25 = ___type0;
  4739. NullCheck(L_24);
  4740. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_26;
  4741. L_26 = Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3(L_24, L_25, /*hidden argument*/Dictionary_2_get_Item_mE24CF83CD92B4AF1DAF5DC19FD292D43A430D2C3_RuntimeMethod_var);
  4742. V_2 = L_26;
  4743. V_3 = 0;
  4744. goto IL_009c;
  4745. }
  4746. IL_0060:
  4747. {
  4748. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_27 = V_2;
  4749. int32_t L_28 = V_3;
  4750. NullCheck(L_27);
  4751. int32_t L_29 = L_28;
  4752. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 L_30 = (ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 )(L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
  4753. V_4 = L_30;
  4754. Type_t * L_31 = ___type0;
  4755. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 L_32 = V_4;
  4756. String_t* L_33 = L_32.get_Item1_0();
  4757. NullCheck(L_31);
  4758. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_34;
  4759. L_34 = VirtualFuncInvoker2< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, String_t*, int32_t >::Invoke(65 /* System.Reflection.MemberInfo[] System.Type::GetMember(System.String,System.Reflection.BindingFlags) */, L_31, L_33, ((int32_t)52));
  4760. MemberInfo_t * L_35;
  4761. L_35 = Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2((RuntimeObject*)(RuntimeObject*)L_34, /*hidden argument*/Enumerable_FirstOrDefault_TisMemberInfo_t_m996D17D8B84B094641ACE7FC5FEF5DFBE5D717F2_RuntimeMethod_var);
  4762. MemberInfo_t * L_36 = L_35;
  4763. G_B11_0 = L_36;
  4764. if (L_36)
  4765. {
  4766. G_B12_0 = L_36;
  4767. goto IL_0083;
  4768. }
  4769. }
  4770. {
  4771. goto IL_0098;
  4772. }
  4773. IL_0083:
  4774. {
  4775. RuntimeObject ** L_37 = ___o1;
  4776. RuntimeObject * L_38 = *((RuntimeObject **)L_37);
  4777. Dictionary_2_t692011309BA94F599C6042A381FC9F8B3CB08399 * L_39 = ___dic2;
  4778. ValueTuple_2_t20DFC2D611E456E1AD37C5C8156CCEE2A8EA9539 L_40 = V_4;
  4779. String_t* L_41 = L_40.get_Item1_0();
  4780. NullCheck(L_39);
  4781. RuntimeObject * L_42;
  4782. L_42 = Dictionary_2_get_Item_mEC67A37ACAAB1DBAB504B54516BAD1808CB80D5D(L_39, L_41, /*hidden argument*/Dictionary_2_get_Item_mEC67A37ACAAB1DBAB504B54516BAD1808CB80D5D_RuntimeMethod_var);
  4783. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  4784. Reflection_SetValue_m75E50DA8B122B4BF4A44AB0789F9B0E45A7B5621(G_B12_0, L_38, L_42, /*hidden argument*/NULL);
  4785. }
  4786. IL_0098:
  4787. {
  4788. int32_t L_43 = V_3;
  4789. V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
  4790. }
  4791. IL_009c:
  4792. {
  4793. int32_t L_44 = V_3;
  4794. ValueTuple_2U5BU5D_tEE9BB84BEA4CD71F45F57807B9574B92BC2C86F3* L_45 = V_2;
  4795. NullCheck(L_45);
  4796. if ((((int32_t)L_44) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length))))))
  4797. {
  4798. goto IL_0060;
  4799. }
  4800. }
  4801. IL_00a2:
  4802. {
  4803. return;
  4804. }
  4805. }
  4806. // System.Void o0.Serialize/CustomByFunction::Add(System.Type,System.Type,System.Func`2<System.Object,System.Object>,System.Func`3<System.Object,System.Object,System.Object>)
  4807. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByFunction_Add_mDCB16E1F4750676228467B74A5CAEEB3C6038042 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___Type0, Type_t * ___SerializeInfos1, Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * ___OnSerialize2, Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * ___OnDeserialize3, const RuntimeMethod* method)
  4808. {
  4809. static bool s_Il2CppMethodInitialized;
  4810. if (!s_Il2CppMethodInitialized)
  4811. {
  4812. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m6C5113C56FCB76BFB49E34C5A76042DF5754BD7B_RuntimeMethod_var);
  4813. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m7C866AE3D3D8B1FCB4760EF0B772F76205D57BCF_RuntimeMethod_var);
  4814. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73_RuntimeMethod_var);
  4815. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  4816. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_RuntimeMethod_var);
  4817. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27_il2cpp_TypeInfo_var);
  4818. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass12_0_U3CAddU3Eb__0_m978198994E9C9F838787AC0AB847776DDFDCDA4C_RuntimeMethod_var);
  4819. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72_il2cpp_TypeInfo_var);
  4820. s_Il2CppMethodInitialized = true;
  4821. }
  4822. bool V_0 = false;
  4823. bool V_1 = false;
  4824. U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * V_2 = NULL;
  4825. {
  4826. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0 = __this->get_SerializeInfosSingleValue_3();
  4827. Type_t * L_1 = ___Type0;
  4828. Type_t * L_2 = ___SerializeInfos1;
  4829. NullCheck(L_0);
  4830. Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73(L_0, L_1, L_2, /*hidden argument*/Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73_RuntimeMethod_var);
  4831. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_3 = ___OnSerialize2;
  4832. V_0 = (bool)((((RuntimeObject*)(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_3) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  4833. bool L_4 = V_0;
  4834. if (!L_4)
  4835. {
  4836. goto IL_0020;
  4837. }
  4838. }
  4839. {
  4840. Type_t * L_5 = ___Type0;
  4841. Type_t * L_6 = ___SerializeInfos1;
  4842. IL2CPP_RUNTIME_CLASS_INIT(Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  4843. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_7;
  4844. L_7 = Extension_ToFunc_m96FCCEC6F623260841037C7259991B8CCCFF25C2(L_5, L_6, /*hidden argument*/NULL);
  4845. ___OnSerialize2 = L_7;
  4846. }
  4847. IL_0020:
  4848. {
  4849. Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * L_8 = ___OnDeserialize3;
  4850. V_1 = (bool)((((RuntimeObject*)(Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)L_8) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  4851. bool L_9 = V_1;
  4852. if (!L_9)
  4853. {
  4854. goto IL_004c;
  4855. }
  4856. }
  4857. {
  4858. U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * L_10 = (U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 *)il2cpp_codegen_object_new(U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72_il2cpp_TypeInfo_var);
  4859. U3CU3Ec__DisplayClass12_0__ctor_m26CC7F2C7D0193A93B06A315060D13D40E6BF613(L_10, /*hidden argument*/NULL);
  4860. V_2 = L_10;
  4861. U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * L_11 = V_2;
  4862. Type_t * L_12 = ___SerializeInfos1;
  4863. Type_t * L_13 = ___Type0;
  4864. IL2CPP_RUNTIME_CLASS_INIT(Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  4865. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_14;
  4866. L_14 = Extension_ToFunc_m96FCCEC6F623260841037C7259991B8CCCFF25C2(L_12, L_13, /*hidden argument*/NULL);
  4867. NullCheck(L_11);
  4868. L_11->set_DerializeTo_0(L_14);
  4869. U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * L_15 = V_2;
  4870. Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * L_16 = (Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 *)il2cpp_codegen_object_new(Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27_il2cpp_TypeInfo_var);
  4871. Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D(L_16, L_15, (intptr_t)((intptr_t)U3CU3Ec__DisplayClass12_0_U3CAddU3Eb__0_m978198994E9C9F838787AC0AB847776DDFDCDA4C_RuntimeMethod_var), /*hidden argument*/Func_3__ctor_mD14F35586915F2F8014526C264BEA9D1FFAB667D_RuntimeMethod_var);
  4872. ___OnDeserialize3 = L_16;
  4873. }
  4874. IL_004c:
  4875. {
  4876. Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * L_17 = __this->get_OnSerializeSingleValue_4();
  4877. Type_t * L_18 = ___Type0;
  4878. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_19 = ___OnSerialize2;
  4879. NullCheck(L_17);
  4880. Dictionary_2_Add_m7C866AE3D3D8B1FCB4760EF0B772F76205D57BCF(L_17, L_18, L_19, /*hidden argument*/Dictionary_2_Add_m7C866AE3D3D8B1FCB4760EF0B772F76205D57BCF_RuntimeMethod_var);
  4881. Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * L_20 = __this->get_OnDeserializeSingleValue_5();
  4882. Type_t * L_21 = ___Type0;
  4883. Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * L_22 = ___OnDeserialize3;
  4884. NullCheck(L_20);
  4885. Dictionary_2_Add_m6C5113C56FCB76BFB49E34C5A76042DF5754BD7B(L_20, L_21, L_22, /*hidden argument*/Dictionary_2_Add_m6C5113C56FCB76BFB49E34C5A76042DF5754BD7B_RuntimeMethod_var);
  4886. return;
  4887. }
  4888. }
  4889. // System.Boolean o0.Serialize/CustomByFunction::IsSerializableAsSingleValue(System.Type)
  4890. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CustomByFunction_IsSerializableAsSingleValue_m47D4D4D695347DC71FB83C67B780E10CA8776C35 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, const RuntimeMethod* method)
  4891. {
  4892. static bool s_Il2CppMethodInitialized;
  4893. if (!s_Il2CppMethodInitialized)
  4894. {
  4895. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3_RuntimeMethod_var);
  4896. s_Il2CppMethodInitialized = true;
  4897. }
  4898. {
  4899. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0 = __this->get_SerializeInfosSingleValue_3();
  4900. Type_t * L_1 = ___type0;
  4901. NullCheck(L_0);
  4902. bool L_2;
  4903. L_2 = Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3(L_0, L_1, /*hidden argument*/Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3_RuntimeMethod_var);
  4904. return L_2;
  4905. }
  4906. }
  4907. // System.Type o0.Serialize/CustomByFunction::SerializeInfoSingleValue(System.Type)
  4908. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * CustomByFunction_SerializeInfoSingleValue_m01DEFBABAE101C463089A4E1D75D3B51F8CC50B4 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, const RuntimeMethod* method)
  4909. {
  4910. static bool s_Il2CppMethodInitialized;
  4911. if (!s_Il2CppMethodInitialized)
  4912. {
  4913. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED_RuntimeMethod_var);
  4914. s_Il2CppMethodInitialized = true;
  4915. }
  4916. {
  4917. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0 = __this->get_SerializeInfosSingleValue_3();
  4918. Type_t * L_1 = ___type0;
  4919. NullCheck(L_0);
  4920. Type_t * L_2;
  4921. L_2 = Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED(L_0, L_1, /*hidden argument*/Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED_RuntimeMethod_var);
  4922. return L_2;
  4923. }
  4924. }
  4925. // System.Object o0.Serialize/CustomByFunction::SerializeSingleValue(System.Type,System.Object)
  4926. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * CustomByFunction_SerializeSingleValue_mB3FB3A0C327EB1F50B7C96B9780EA2D5E7D27FD6 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, RuntimeObject * ___o1, const RuntimeMethod* method)
  4927. {
  4928. static bool s_Il2CppMethodInitialized;
  4929. if (!s_Il2CppMethodInitialized)
  4930. {
  4931. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m330DFBB03CD1019BA41112B76D9C6AB418A8CD4B_RuntimeMethod_var);
  4932. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var);
  4933. s_Il2CppMethodInitialized = true;
  4934. }
  4935. {
  4936. Dictionary_2_t9813C361817F3059397F1B9EEEE9B3DF46C1D14B * L_0 = __this->get_OnSerializeSingleValue_4();
  4937. Type_t * L_1 = ___type0;
  4938. NullCheck(L_0);
  4939. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_2;
  4940. L_2 = Dictionary_2_get_Item_m330DFBB03CD1019BA41112B76D9C6AB418A8CD4B(L_0, L_1, /*hidden argument*/Dictionary_2_get_Item_m330DFBB03CD1019BA41112B76D9C6AB418A8CD4B_RuntimeMethod_var);
  4941. RuntimeObject * L_3 = ___o1;
  4942. NullCheck(L_2);
  4943. RuntimeObject * L_4;
  4944. L_4 = Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6(L_2, L_3, /*hidden argument*/Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var);
  4945. return L_4;
  4946. }
  4947. }
  4948. // System.Void o0.Serialize/CustomByFunction::DeserializeSingleValue(System.Type,System.Object&,System.Object)
  4949. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByFunction_DeserializeSingleValue_m25CAF03F0DCC0E0832E32E29C70A3A3ACE6C44F4 (CustomByFunction_t0716D0B039DAD73DEFFDFF6314A928751DCFB5C9 * __this, Type_t * ___type0, RuntimeObject ** ___o1, RuntimeObject * ___value2, const RuntimeMethod* method)
  4950. {
  4951. static bool s_Il2CppMethodInitialized;
  4952. if (!s_Il2CppMethodInitialized)
  4953. {
  4954. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_mBFBDAD9D073738DFB5AAE31D6DDF5A179ACB7233_RuntimeMethod_var);
  4955. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB_RuntimeMethod_var);
  4956. s_Il2CppMethodInitialized = true;
  4957. }
  4958. {
  4959. RuntimeObject ** L_0 = ___o1;
  4960. Dictionary_2_tF2CB05957DA27E6FBC3BE409DD20778C3FFE7F16 * L_1 = __this->get_OnDeserializeSingleValue_5();
  4961. Type_t * L_2 = ___type0;
  4962. NullCheck(L_1);
  4963. Func_3_tBBBFF266D23D5A9A7940D16DA73BCD5DE0753A27 * L_3;
  4964. L_3 = Dictionary_2_get_Item_mBFBDAD9D073738DFB5AAE31D6DDF5A179ACB7233(L_1, L_2, /*hidden argument*/Dictionary_2_get_Item_mBFBDAD9D073738DFB5AAE31D6DDF5A179ACB7233_RuntimeMethod_var);
  4965. RuntimeObject ** L_4 = ___o1;
  4966. RuntimeObject * L_5 = *((RuntimeObject **)L_4);
  4967. RuntimeObject * L_6 = ___value2;
  4968. NullCheck(L_3);
  4969. RuntimeObject * L_7;
  4970. L_7 = Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB(L_3, L_5, L_6, /*hidden argument*/Func_3_Invoke_mCFF845C672F730F9EF5D8354C07AE79A5776F0BB_RuntimeMethod_var);
  4971. *((RuntimeObject **)L_0) = (RuntimeObject *)L_7;
  4972. Il2CppCodeGenWriteBarrier((void**)(RuntimeObject **)L_0, (void*)(RuntimeObject *)L_7);
  4973. return;
  4974. }
  4975. }
  4976. #ifdef __clang__
  4977. #pragma clang diagnostic pop
  4978. #endif
  4979. #ifdef __clang__
  4980. #pragma clang diagnostic push
  4981. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4982. #pragma clang diagnostic ignored "-Wunused-variable"
  4983. #endif
  4984. // System.Collections.Generic.Dictionary`2<System.Type,System.Type> o0.Serialize/CustomByMember::get_ItemTypes()
  4985. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5 (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method)
  4986. {
  4987. {
  4988. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0 = __this->get_U3CItemTypesU3Ek__BackingField_0();
  4989. return L_0;
  4990. }
  4991. }
  4992. // System.Type o0.Serialize/CustomByMember::ItemType(System.Type)
  4993. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * CustomByMember_ItemType_m1DEEA0EE0B638C2F1A99301E1130E14136FF0691 (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, Type_t * ___type0, const RuntimeMethod* method)
  4994. {
  4995. static bool s_Il2CppMethodInitialized;
  4996. if (!s_Il2CppMethodInitialized)
  4997. {
  4998. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED_RuntimeMethod_var);
  4999. s_Il2CppMethodInitialized = true;
  5000. }
  5001. Type_t * V_0 = NULL;
  5002. {
  5003. Type_t * L_0 = ___type0;
  5004. CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F(__this, L_0, /*hidden argument*/NULL);
  5005. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_1;
  5006. L_1 = CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline(__this, /*hidden argument*/NULL);
  5007. Type_t * L_2 = ___type0;
  5008. NullCheck(L_1);
  5009. Type_t * L_3;
  5010. L_3 = Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED(L_1, L_2, /*hidden argument*/Dictionary_2_get_Item_m89343368103E54228B00091EED6E589189C5ABED_RuntimeMethod_var);
  5011. V_0 = L_3;
  5012. goto IL_0018;
  5013. }
  5014. IL_0018:
  5015. {
  5016. Type_t * L_4 = V_0;
  5017. return L_4;
  5018. }
  5019. }
  5020. // System.Collections.Generic.Dictionary`2<System.Type,System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>>> o0.Serialize/CustomByMember::get_SerializeMemberInfos()
  5021. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * CustomByMember_get_SerializeMemberInfos_mD9F278495B3832FE55BCC561A1791226EF6B5A03 (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method)
  5022. {
  5023. {
  5024. Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * L_0 = __this->get_U3CSerializeMemberInfosU3Ek__BackingField_1();
  5025. return L_0;
  5026. }
  5027. }
  5028. // System.ValueTuple`2<o0.Serialize/Member[],System.Collections.Generic.Dictionary`2<System.String,o0.Serialize/Member>> o0.Serialize/CustomByMember::SerializeMemberInfo(System.Type)
  5029. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 CustomByMember_SerializeMemberInfo_m0B1D77802CD9C0012EDBC30AD1031EAADCCF79C1 (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, Type_t * ___type0, const RuntimeMethod* method)
  5030. {
  5031. static bool s_Il2CppMethodInitialized;
  5032. if (!s_Il2CppMethodInitialized)
  5033. {
  5034. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Extension_TryGet_TisType_t_TisValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7_mC4B16CFDEB120C9BABD5CCC4BA671B681804B7F7_RuntimeMethod_var);
  5035. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  5036. s_Il2CppMethodInitialized = true;
  5037. }
  5038. ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 V_0;
  5039. memset((&V_0), 0, sizeof(V_0));
  5040. {
  5041. Type_t * L_0 = ___type0;
  5042. CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F(__this, L_0, /*hidden argument*/NULL);
  5043. Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * L_1;
  5044. L_1 = CustomByMember_get_SerializeMemberInfos_mD9F278495B3832FE55BCC561A1791226EF6B5A03_inline(__this, /*hidden argument*/NULL);
  5045. Type_t * L_2 = ___type0;
  5046. IL2CPP_RUNTIME_CLASS_INIT(Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  5047. ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 L_3;
  5048. L_3 = Extension_TryGet_TisType_t_TisValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7_mC4B16CFDEB120C9BABD5CCC4BA671B681804B7F7(L_1, L_2, /*hidden argument*/Extension_TryGet_TisType_t_TisValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7_mC4B16CFDEB120C9BABD5CCC4BA671B681804B7F7_RuntimeMethod_var);
  5049. V_0 = L_3;
  5050. goto IL_0018;
  5051. }
  5052. IL_0018:
  5053. {
  5054. ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 L_4 = V_0;
  5055. return L_4;
  5056. }
  5057. }
  5058. // System.Void o0.Serialize/CustomByMember::TryAddSerializeInfo(System.Type)
  5059. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, Type_t * ___type0, const RuntimeMethod* method)
  5060. {
  5061. static bool s_Il2CppMethodInitialized;
  5062. if (!s_Il2CppMethodInitialized)
  5063. {
  5064. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2_RuntimeMethod_var);
  5065. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m35E986A532C1FB91E5FF0366052BFC39D5279EAB_RuntimeMethod_var);
  5066. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m3C4BAB1F998CD117ABC32F83E5838D05E60123C1_RuntimeMethod_var);
  5067. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73_RuntimeMethod_var);
  5068. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_m3A2C6993636B0402C60BE82BD623536F129C3880_RuntimeMethod_var);
  5069. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3_RuntimeMethod_var);
  5070. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m8E556BB6EE0B1AA485160855260A049C62CE7304_RuntimeMethod_var);
  5071. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D_il2cpp_TypeInfo_var);
  5072. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_Reverse_TisFieldInfo_t_m2CDF1186819006BE1C95329549310BE226A6978C_RuntimeMethod_var);
  5073. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m018F1D72F1A7C5688D4990D36C8DE3F761DBEAD2_RuntimeMethod_var);
  5074. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m66B6014AAC073A8093FBAF261EC9BCBB619FA6DA_RuntimeMethod_var);
  5075. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m39457ECCFA33B12E940FA4A7E1029E8259B84A0A_RuntimeMethod_var);
  5076. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m9F0ED3B48B89C28810E4AE3148259FDB7075B16A_RuntimeMethod_var);
  5077. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m09D42327467C30F0F41F93C7353A72FFD684F271_RuntimeMethod_var);
  5078. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m58FDC6A062881DAEC2F5BB6B54D6E0CBFE1DD3FF_RuntimeMethod_var);
  5079. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Extension_Index_TisMemberInfo_t_m647621337E23DDF470ACCC7F7103C96BEE7D676E_RuntimeMethod_var);
  5080. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Extension_Reversed_TisType_t_m7C6AFDEAE95553A682780F0661E39B63C8EBB20E_RuntimeMethod_var);
  5081. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  5082. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
  5083. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m47166AE5EE03DC50412461976B04A3AE9E5A1221_RuntimeMethod_var);
  5084. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_mC67DDF1DBC3492BBDC57755E320CA7A2C10FC4A4_RuntimeMethod_var);
  5085. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m10CAB11AECC2D4415EDE56E7B9BC9EB697E5A7CB_RuntimeMethod_var);
  5086. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t679B4139CA836662729154C22183F600BB74A890_il2cpp_TypeInfo_var);
  5087. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
  5088. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t0DF027D1C7415CBB03F663A5D5ACE52D29226059_il2cpp_TypeInfo_var);
  5089. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_t60929E1AA80B46746F987B99A4EBD004FD72D370_il2cpp_TypeInfo_var);
  5090. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t620905184FE92C7CD2128B5FE4079C455117C4B8_il2cpp_TypeInfo_var);
  5091. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_t72AB4B40AF5290B386215B0BFADC8919D394DCAB_il2cpp_TypeInfo_var);
  5092. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
  5093. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m3BB268A04571D3FCDBCD746C61EEF3270A29D2D1_RuntimeMethod_var);
  5094. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m089C46303B20B6F4FD29DA88460F7EEFE8DCDBDF_RuntimeMethod_var);
  5095. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mEB5F044018BD367C71DE14D9E47E2D200D021B75_RuntimeMethod_var);
  5096. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2_RuntimeMethod_var);
  5097. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m2664E772BEC27840867512EC2E339FF01F648AED_RuntimeMethod_var);
  5098. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334_RuntimeMethod_var);
  5099. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mCAEA1EE8853594506435D323C3CEED01B210B708_RuntimeMethod_var);
  5100. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m0F50D699DFEFF36EF0B525B3CCC461D7D9708A6D_RuntimeMethod_var);
  5101. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1E053584366104694FDDFF723CE187EAD7F857B0_il2cpp_TypeInfo_var);
  5102. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7_il2cpp_TypeInfo_var);
  5103. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D_il2cpp_TypeInfo_var);
  5104. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PropertyInfo_t_il2cpp_TypeInfo_var);
  5105. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  5106. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  5107. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTuple_2__ctor_m6B194F6592DA2DACDA26B38D85321CF54D82C15D_RuntimeMethod_var);
  5108. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
  5109. s_Il2CppMethodInitialized = true;
  5110. }
  5111. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * V_0 = NULL;
  5112. bool V_1 = false;
  5113. bool V_2 = false;
  5114. int32_t V_3 = 0;
  5115. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * V_4 = NULL;
  5116. HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * V_5 = NULL;
  5117. List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * V_6 = NULL;
  5118. MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* V_7 = NULL;
  5119. Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * V_8 = NULL;
  5120. bool V_9 = false;
  5121. Type_t * V_10 = NULL;
  5122. bool V_11 = false;
  5123. Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC V_12;
  5124. memset((&V_12), 0, sizeof(V_12));
  5125. Type_t * V_13 = NULL;
  5126. bool V_14 = false;
  5127. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * V_15 = NULL;
  5128. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* V_16 = NULL;
  5129. int32_t V_17 = 0;
  5130. MemberInfo_t * V_18 = NULL;
  5131. FieldInfo_t * V_19 = NULL;
  5132. bool V_20 = false;
  5133. bool V_21 = false;
  5134. PropertyInfo_t * V_22 = NULL;
  5135. bool V_23 = false;
  5136. bool V_24 = false;
  5137. bool V_25 = false;
  5138. bool V_26 = false;
  5139. bool V_27 = false;
  5140. bool V_28 = false;
  5141. Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 V_29;
  5142. memset((&V_29), 0, sizeof(V_29));
  5143. MemberInfo_t * V_30 = NULL;
  5144. RuntimeObject* V_31 = NULL;
  5145. FieldInfo_t * V_32 = NULL;
  5146. bool V_33 = false;
  5147. Type_t * V_34 = NULL;
  5148. bool V_35 = false;
  5149. RuntimeObject* V_36 = NULL;
  5150. int32_t V_37 = 0;
  5151. MemberInfo_t * V_38 = NULL;
  5152. String_t* V_39 = NULL;
  5153. bool V_40 = false;
  5154. Exception_t * __last_unhandled_exception = 0;
  5155. il2cpp::utils::ExceptionSupportStack<int32_t, 7> __leave_targets;
  5156. {
  5157. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0;
  5158. L_0 = CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline(__this, /*hidden argument*/NULL);
  5159. V_0 = L_0;
  5160. V_1 = (bool)0;
  5161. }
  5162. IL_000a:
  5163. try
  5164. {// begin try (depth: 1)
  5165. {
  5166. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_1 = V_0;
  5167. Monitor_Enter_mBEB6CC84184B46F26375EC3FC8921D16E48EA4C4(L_1, (bool*)(&V_1), /*hidden argument*/NULL);
  5168. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_2;
  5169. L_2 = CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline(__this, /*hidden argument*/NULL);
  5170. Type_t * L_3 = ___type0;
  5171. NullCheck(L_2);
  5172. bool L_4;
  5173. L_4 = Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3(L_2, L_3, /*hidden argument*/Dictionary_2_ContainsKey_mAF6EE7CFD42F0D0C425EE588FAEDC529B0598AD3_RuntimeMethod_var);
  5174. V_9 = L_4;
  5175. bool L_5 = V_9;
  5176. if (!L_5)
  5177. {
  5178. goto IL_002b;
  5179. }
  5180. }
  5181. IL_0026:
  5182. {
  5183. IL2CPP_LEAVE(0x381, FINALLY_0376);
  5184. }
  5185. IL_002b:
  5186. {
  5187. V_2 = (bool)0;
  5188. V_3 = ((int32_t)54);
  5189. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_6 = (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *)il2cpp_codegen_object_new(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0_il2cpp_TypeInfo_var);
  5190. List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334(L_6, /*hidden argument*/List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334_RuntimeMethod_var);
  5191. V_4 = L_6;
  5192. HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * L_7 = (HashSet_1_t679B4139CA836662729154C22183F600BB74A890 *)il2cpp_codegen_object_new(HashSet_1_t679B4139CA836662729154C22183F600BB74A890_il2cpp_TypeInfo_var);
  5193. HashSet_1__ctor_m10CAB11AECC2D4415EDE56E7B9BC9EB697E5A7CB(L_7, /*hidden argument*/HashSet_1__ctor_m10CAB11AECC2D4415EDE56E7B9BC9EB697E5A7CB_RuntimeMethod_var);
  5194. V_5 = L_7;
  5195. List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * L_8 = (List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 *)il2cpp_codegen_object_new(List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7_il2cpp_TypeInfo_var);
  5196. List_1__ctor_m2664E772BEC27840867512EC2E339FF01F648AED(L_8, /*hidden argument*/List_1__ctor_m2664E772BEC27840867512EC2E339FF01F648AED_RuntimeMethod_var);
  5197. V_6 = L_8;
  5198. Type_t * L_9 = ___type0;
  5199. V_10 = L_9;
  5200. goto IL_005d;
  5201. }
  5202. IL_004a:
  5203. {
  5204. List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * L_10 = V_6;
  5205. Type_t * L_11 = V_10;
  5206. NullCheck(L_10);
  5207. List_1_Add_m3BB268A04571D3FCDBCD746C61EEF3270A29D2D1(L_10, L_11, /*hidden argument*/List_1_Add_m3BB268A04571D3FCDBCD746C61EEF3270A29D2D1_RuntimeMethod_var);
  5208. Type_t * L_12 = V_10;
  5209. NullCheck(L_12);
  5210. Type_t * L_13;
  5211. L_13 = VirtualFuncInvoker0< Type_t * >::Invoke(31 /* System.Type System.Type::get_BaseType() */, L_12);
  5212. V_10 = L_13;
  5213. }
  5214. IL_005d:
  5215. {
  5216. Type_t * L_14 = V_10;
  5217. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  5218. bool L_15;
  5219. L_15 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_14, (Type_t *)NULL, /*hidden argument*/NULL);
  5220. V_11 = L_15;
  5221. bool L_16 = V_11;
  5222. if (L_16)
  5223. {
  5224. goto IL_004a;
  5225. }
  5226. }
  5227. IL_006b:
  5228. {
  5229. List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * L_17 = V_6;
  5230. IL2CPP_RUNTIME_CLASS_INIT(Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  5231. List_1_t7CFD5FCE8366620F593F2C9DAC3A870E5D6506D7 * L_18;
  5232. L_18 = Extension_Reversed_TisType_t_m7C6AFDEAE95553A682780F0661E39B63C8EBB20E(L_17, /*hidden argument*/Extension_Reversed_TisType_t_m7C6AFDEAE95553A682780F0661E39B63C8EBB20E_RuntimeMethod_var);
  5233. NullCheck(L_18);
  5234. Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC L_19;
  5235. L_19 = List_1_GetEnumerator_mEB5F044018BD367C71DE14D9E47E2D200D021B75(L_18, /*hidden argument*/List_1_GetEnumerator_mEB5F044018BD367C71DE14D9E47E2D200D021B75_RuntimeMethod_var);
  5236. V_12 = L_19;
  5237. }
  5238. IL_007a:
  5239. try
  5240. {// begin try (depth: 2)
  5241. {
  5242. goto IL_024f;
  5243. }
  5244. IL_007f:
  5245. {
  5246. Type_t * L_20;
  5247. L_20 = Enumerator_get_Current_m09D42327467C30F0F41F93C7353A72FFD684F271_inline((Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC *)(&V_12), /*hidden argument*/Enumerator_get_Current_m09D42327467C30F0F41F93C7353A72FFD684F271_RuntimeMethod_var);
  5248. V_13 = L_20;
  5249. V_14 = (bool)0;
  5250. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_21 = (List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 *)il2cpp_codegen_object_new(List_1_t1E053584366104694FDDFF723CE187EAD7F857B0_il2cpp_TypeInfo_var);
  5251. List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334(L_21, /*hidden argument*/List_1__ctor_m72D0C29E962FEB94D4A06EB3E3E4E687A5708334_RuntimeMethod_var);
  5252. V_15 = L_21;
  5253. Type_t * L_22 = V_13;
  5254. int32_t L_23 = V_3;
  5255. NullCheck(L_22);
  5256. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_24;
  5257. L_24 = VirtualFuncInvoker1< MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E*, int32_t >::Invoke(67 /* System.Reflection.MemberInfo[] System.Type::GetMembers(System.Reflection.BindingFlags) */, L_22, L_23);
  5258. V_16 = L_24;
  5259. V_17 = 0;
  5260. goto IL_01b8;
  5261. }
  5262. IL_00a6:
  5263. {
  5264. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_25 = V_16;
  5265. int32_t L_26 = V_17;
  5266. NullCheck(L_25);
  5267. int32_t L_27 = L_26;
  5268. MemberInfo_t * L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
  5269. V_18 = L_28;
  5270. MemberInfo_t * L_29 = V_18;
  5271. V_19 = ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_29, FieldInfo_t_il2cpp_TypeInfo_var));
  5272. FieldInfo_t * L_30 = V_19;
  5273. V_20 = (bool)((!(((RuntimeObject*)(FieldInfo_t *)L_30) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  5274. bool L_31 = V_20;
  5275. if (!L_31)
  5276. {
  5277. goto IL_00ea;
  5278. }
  5279. }
  5280. IL_00c2:
  5281. {
  5282. FieldInfo_t * L_32 = V_19;
  5283. Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F * L_33;
  5284. L_33 = CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2(L_32, (bool)0, /*hidden argument*/CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2_RuntimeMethod_var);
  5285. V_21 = (bool)((!(((RuntimeObject*)(Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F *)L_33) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  5286. bool L_34 = V_21;
  5287. if (!L_34)
  5288. {
  5289. goto IL_00e4;
  5290. }
  5291. }
  5292. IL_00d4:
  5293. {
  5294. V_14 = (bool)1;
  5295. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_35 = V_15;
  5296. MemberInfo_t * L_36 = V_18;
  5297. NullCheck(L_35);
  5298. List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2(L_35, 0, L_36, /*hidden argument*/List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2_RuntimeMethod_var);
  5299. }
  5300. IL_00e4:
  5301. {
  5302. goto IL_01b1;
  5303. }
  5304. IL_00ea:
  5305. {
  5306. MemberInfo_t * L_37 = V_18;
  5307. V_22 = ((PropertyInfo_t *)IsInstClass((RuntimeObject*)L_37, PropertyInfo_t_il2cpp_TypeInfo_var));
  5308. PropertyInfo_t * L_38 = V_22;
  5309. V_23 = (bool)((!(((RuntimeObject*)(PropertyInfo_t *)L_38) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  5310. bool L_39 = V_23;
  5311. if (!L_39)
  5312. {
  5313. goto IL_01b1;
  5314. }
  5315. }
  5316. IL_0101:
  5317. {
  5318. PropertyInfo_t * L_40 = V_22;
  5319. Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F * L_41;
  5320. L_41 = CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2(L_40, (bool)0, /*hidden argument*/CustomAttributeExtensions_GetCustomAttribute_TisSerialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F_m8270B57ECADCCEDF06BAE27E498CB43275D609A2_RuntimeMethod_var);
  5321. V_24 = (bool)((!(((RuntimeObject*)(Serialize_t8F716C18A28C6455819B67D44F1E45ACE13A1F5F *)L_41) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  5322. bool L_42 = V_24;
  5323. if (!L_42)
  5324. {
  5325. goto IL_01b0;
  5326. }
  5327. }
  5328. IL_0116:
  5329. {
  5330. V_14 = (bool)1;
  5331. HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * L_43 = V_5;
  5332. PropertyInfo_t * L_44 = V_22;
  5333. NullCheck(L_44);
  5334. MethodInfo_t * L_45;
  5335. L_45 = VirtualFuncInvoker0< MethodInfo_t * >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::get_GetMethod() */, L_44);
  5336. MethodInfo_t * L_46;
  5337. L_46 = RuntimeReflectionExtensions_GetRuntimeBaseDefinition_m30C286CB1021EDAA5F6492F6BEAEFE6FF774F286(L_45, /*hidden argument*/NULL);
  5338. NullCheck(L_43);
  5339. bool L_47;
  5340. L_47 = HashSet_1_Contains_mC67DDF1DBC3492BBDC57755E320CA7A2C10FC4A4(L_43, L_46, /*hidden argument*/HashSet_1_Contains_mC67DDF1DBC3492BBDC57755E320CA7A2C10FC4A4_RuntimeMethod_var);
  5341. V_25 = (bool)((((int32_t)L_47) == ((int32_t)0))? 1 : 0);
  5342. bool L_48 = V_25;
  5343. if (!L_48)
  5344. {
  5345. goto IL_01af;
  5346. }
  5347. }
  5348. IL_0136:
  5349. {
  5350. PropertyInfo_t * L_49 = V_22;
  5351. NullCheck(L_49);
  5352. bool L_50;
  5353. L_50 = VirtualFuncInvoker0< bool >::Invoke(19 /* System.Boolean System.Reflection.PropertyInfo::get_CanRead() */, L_49);
  5354. V_26 = (bool)((((int32_t)L_50) == ((int32_t)0))? 1 : 0);
  5355. bool L_51 = V_26;
  5356. if (!L_51)
  5357. {
  5358. goto IL_0163;
  5359. }
  5360. }
  5361. IL_0147:
  5362. {
  5363. PropertyInfo_t * L_52 = V_22;
  5364. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var)));
  5365. String_t* L_53;
  5366. L_53 = Extension_To_TisPropertyInfo_t_TisString_t_m97FE072CCA51E2B7113D0CFD0667886DA91DDB27(L_52, /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Extension_To_TisPropertyInfo_t_TisString_t_m97FE072CCA51E2B7113D0CFD0667886DA91DDB27_RuntimeMethod_var)));
  5367. String_t* L_54;
  5368. L_54 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral99AD1BD95B7E8C184D402570E5DE70F8317A338E)), L_53, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral68213B39D00F868048B373785B58828994B6687D)), /*hidden argument*/NULL);
  5369. Exception_t * L_55 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  5370. Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_55, L_54, /*hidden argument*/NULL);
  5371. IL2CPP_RAISE_MANAGED_EXCEPTION(L_55, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F_RuntimeMethod_var)));
  5372. }
  5373. IL_0163:
  5374. {
  5375. PropertyInfo_t * L_56 = V_22;
  5376. NullCheck(L_56);
  5377. bool L_57;
  5378. L_57 = VirtualFuncInvoker0< bool >::Invoke(20 /* System.Boolean System.Reflection.PropertyInfo::get_CanWrite() */, L_56);
  5379. V_27 = (bool)((((int32_t)L_57) == ((int32_t)0))? 1 : 0);
  5380. bool L_58 = V_27;
  5381. if (!L_58)
  5382. {
  5383. goto IL_018f;
  5384. }
  5385. }
  5386. IL_0173:
  5387. {
  5388. PropertyInfo_t * L_59 = V_22;
  5389. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var)));
  5390. String_t* L_60;
  5391. L_60 = Extension_To_TisPropertyInfo_t_TisString_t_m97FE072CCA51E2B7113D0CFD0667886DA91DDB27(L_59, /*hidden argument*/((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Extension_To_TisPropertyInfo_t_TisString_t_m97FE072CCA51E2B7113D0CFD0667886DA91DDB27_RuntimeMethod_var)));
  5392. String_t* L_61;
  5393. L_61 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral99AD1BD95B7E8C184D402570E5DE70F8317A338E)), L_60, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF53803F16921C122CF5EDF2A455E95EFBC9685CB)), /*hidden argument*/NULL);
  5394. Exception_t * L_62 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  5395. Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_62, L_61, /*hidden argument*/NULL);
  5396. IL2CPP_RAISE_MANAGED_EXCEPTION(L_62, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&CustomByMember_TryAddSerializeInfo_m2A2CDBD7DEC37A36825C11EFD37DA7301D89D56F_RuntimeMethod_var)));
  5397. }
  5398. IL_018f:
  5399. {
  5400. HashSet_1_t679B4139CA836662729154C22183F600BB74A890 * L_63 = V_5;
  5401. PropertyInfo_t * L_64 = V_22;
  5402. NullCheck(L_64);
  5403. MethodInfo_t * L_65;
  5404. L_65 = VirtualFuncInvoker0< MethodInfo_t * >::Invoke(21 /* System.Reflection.MethodInfo System.Reflection.PropertyInfo::get_GetMethod() */, L_64);
  5405. MethodInfo_t * L_66;
  5406. L_66 = RuntimeReflectionExtensions_GetRuntimeBaseDefinition_m30C286CB1021EDAA5F6492F6BEAEFE6FF774F286(L_65, /*hidden argument*/NULL);
  5407. NullCheck(L_63);
  5408. bool L_67;
  5409. L_67 = HashSet_1_Add_m47166AE5EE03DC50412461976B04A3AE9E5A1221(L_63, L_66, /*hidden argument*/HashSet_1_Add_m47166AE5EE03DC50412461976B04A3AE9E5A1221_RuntimeMethod_var);
  5410. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_68 = V_15;
  5411. MemberInfo_t * L_69 = V_18;
  5412. NullCheck(L_68);
  5413. List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2(L_68, 0, L_69, /*hidden argument*/List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2_RuntimeMethod_var);
  5414. }
  5415. IL_01af:
  5416. {
  5417. }
  5418. IL_01b0:
  5419. {
  5420. }
  5421. IL_01b1:
  5422. {
  5423. int32_t L_70 = V_17;
  5424. V_17 = ((int32_t)il2cpp_codegen_add((int32_t)L_70, (int32_t)1));
  5425. }
  5426. IL_01b8:
  5427. {
  5428. int32_t L_71 = V_17;
  5429. MemberInfoU5BU5D_t04CE6CC3692D77C74DC079E7CAF110CBF031C99E* L_72 = V_16;
  5430. NullCheck(L_72);
  5431. if ((((int32_t)L_71) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_72)->max_length))))))
  5432. {
  5433. goto IL_00a6;
  5434. }
  5435. }
  5436. IL_01c3:
  5437. {
  5438. bool L_73 = V_14;
  5439. V_28 = L_73;
  5440. bool L_74 = V_28;
  5441. if (!L_74)
  5442. {
  5443. goto IL_020b;
  5444. }
  5445. }
  5446. IL_01cb:
  5447. {
  5448. V_2 = (bool)1;
  5449. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_75 = V_15;
  5450. NullCheck(L_75);
  5451. Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 L_76;
  5452. L_76 = List_1_GetEnumerator_m089C46303B20B6F4FD29DA88460F7EEFE8DCDBDF(L_75, /*hidden argument*/List_1_GetEnumerator_m089C46303B20B6F4FD29DA88460F7EEFE8DCDBDF_RuntimeMethod_var);
  5453. V_29 = L_76;
  5454. }
  5455. IL_01d8:
  5456. try
  5457. {// begin try (depth: 3)
  5458. {
  5459. goto IL_01ee;
  5460. }
  5461. IL_01da:
  5462. {
  5463. MemberInfo_t * L_77;
  5464. L_77 = Enumerator_get_Current_m58FDC6A062881DAEC2F5BB6B54D6E0CBFE1DD3FF_inline((Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 *)(&V_29), /*hidden argument*/Enumerator_get_Current_m58FDC6A062881DAEC2F5BB6B54D6E0CBFE1DD3FF_RuntimeMethod_var);
  5465. V_30 = L_77;
  5466. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_78 = V_4;
  5467. MemberInfo_t * L_79 = V_30;
  5468. NullCheck(L_78);
  5469. List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2(L_78, 0, L_79, /*hidden argument*/List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2_RuntimeMethod_var);
  5470. }
  5471. IL_01ee:
  5472. {
  5473. bool L_80;
  5474. L_80 = Enumerator_MoveNext_m39457ECCFA33B12E940FA4A7E1029E8259B84A0A((Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 *)(&V_29), /*hidden argument*/Enumerator_MoveNext_m39457ECCFA33B12E940FA4A7E1029E8259B84A0A_RuntimeMethod_var);
  5475. if (L_80)
  5476. {
  5477. goto IL_01da;
  5478. }
  5479. }
  5480. IL_01f7:
  5481. {
  5482. IL2CPP_LEAVE(0x208, FINALLY_01f9);
  5483. }
  5484. }// end try (depth: 3)
  5485. catch(Il2CppExceptionWrapper& e)
  5486. {
  5487. __last_unhandled_exception = (Exception_t *)e.ex;
  5488. goto FINALLY_01f9;
  5489. }
  5490. FINALLY_01f9:
  5491. {// begin finally (depth: 3)
  5492. Enumerator_Dispose_m66B6014AAC073A8093FBAF261EC9BCBB619FA6DA((Enumerator_t0892BABBE5529D1A24FE61CBC34A76576F92B9D2 *)(&V_29), /*hidden argument*/Enumerator_Dispose_m66B6014AAC073A8093FBAF261EC9BCBB619FA6DA_RuntimeMethod_var);
  5493. IL2CPP_END_FINALLY(505)
  5494. }// end finally (depth: 3)
  5495. IL2CPP_CLEANUP(505)
  5496. {
  5497. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5498. IL2CPP_JUMP_TBL(0x208, IL_0208)
  5499. }
  5500. IL_0208:
  5501. {
  5502. goto IL_024e;
  5503. }
  5504. IL_020b:
  5505. {
  5506. Type_t * L_81 = V_13;
  5507. int32_t L_82 = V_3;
  5508. NullCheck(L_81);
  5509. FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E* L_83;
  5510. L_83 = VirtualFuncInvoker1< FieldInfoU5BU5D_tD84513FCA07C63AAFE671A5B39E3ADD6E903938E*, int32_t >::Invoke(48 /* System.Reflection.FieldInfo[] System.Type::GetFields(System.Reflection.BindingFlags) */, L_81, L_82);
  5511. RuntimeObject* L_84;
  5512. L_84 = Enumerable_Reverse_TisFieldInfo_t_m2CDF1186819006BE1C95329549310BE226A6978C((RuntimeObject*)(RuntimeObject*)L_83, /*hidden argument*/Enumerable_Reverse_TisFieldInfo_t_m2CDF1186819006BE1C95329549310BE226A6978C_RuntimeMethod_var);
  5513. NullCheck(L_84);
  5514. RuntimeObject* L_85;
  5515. L_85 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Reflection.FieldInfo>::GetEnumerator() */, IEnumerable_1_t0DF027D1C7415CBB03F663A5D5ACE52D29226059_il2cpp_TypeInfo_var, L_84);
  5516. V_31 = L_85;
  5517. }
  5518. IL_0220:
  5519. try
  5520. {// begin try (depth: 3)
  5521. {
  5522. goto IL_0236;
  5523. }
  5524. IL_0222:
  5525. {
  5526. RuntimeObject* L_86 = V_31;
  5527. NullCheck(L_86);
  5528. FieldInfo_t * L_87;
  5529. L_87 = InterfaceFuncInvoker0< FieldInfo_t * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Reflection.FieldInfo>::get_Current() */, IEnumerator_1_t620905184FE92C7CD2128B5FE4079C455117C4B8_il2cpp_TypeInfo_var, L_86);
  5530. V_32 = L_87;
  5531. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_88 = V_4;
  5532. FieldInfo_t * L_89 = V_32;
  5533. NullCheck(L_88);
  5534. List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2(L_88, 0, L_89, /*hidden argument*/List_1_Insert_mDAFAC44B8539F9685CD064FAEE631F8D12C06FB2_RuntimeMethod_var);
  5535. }
  5536. IL_0236:
  5537. {
  5538. RuntimeObject* L_90 = V_31;
  5539. NullCheck(L_90);
  5540. bool L_91;
  5541. L_91 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_90);
  5542. if (L_91)
  5543. {
  5544. goto IL_0222;
  5545. }
  5546. }
  5547. IL_023f:
  5548. {
  5549. IL2CPP_LEAVE(0x24E, FINALLY_0241);
  5550. }
  5551. }// end try (depth: 3)
  5552. catch(Il2CppExceptionWrapper& e)
  5553. {
  5554. __last_unhandled_exception = (Exception_t *)e.ex;
  5555. goto FINALLY_0241;
  5556. }
  5557. FINALLY_0241:
  5558. {// begin finally (depth: 3)
  5559. {
  5560. RuntimeObject* L_92 = V_31;
  5561. if (!L_92)
  5562. {
  5563. goto IL_024d;
  5564. }
  5565. }
  5566. IL_0245:
  5567. {
  5568. RuntimeObject* L_93 = V_31;
  5569. NullCheck(L_93);
  5570. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_93);
  5571. }
  5572. IL_024d:
  5573. {
  5574. IL2CPP_END_FINALLY(577)
  5575. }
  5576. }// end finally (depth: 3)
  5577. IL2CPP_CLEANUP(577)
  5578. {
  5579. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5580. IL2CPP_JUMP_TBL(0x24E, IL_024e)
  5581. }
  5582. IL_024e:
  5583. {
  5584. }
  5585. IL_024f:
  5586. {
  5587. bool L_94;
  5588. L_94 = Enumerator_MoveNext_m9F0ED3B48B89C28810E4AE3148259FDB7075B16A((Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC *)(&V_12), /*hidden argument*/Enumerator_MoveNext_m9F0ED3B48B89C28810E4AE3148259FDB7075B16A_RuntimeMethod_var);
  5589. if (L_94)
  5590. {
  5591. goto IL_007f;
  5592. }
  5593. }
  5594. IL_025b:
  5595. {
  5596. IL2CPP_LEAVE(0x26C, FINALLY_025d);
  5597. }
  5598. }// end try (depth: 2)
  5599. catch(Il2CppExceptionWrapper& e)
  5600. {
  5601. __last_unhandled_exception = (Exception_t *)e.ex;
  5602. goto FINALLY_025d;
  5603. }
  5604. FINALLY_025d:
  5605. {// begin finally (depth: 2)
  5606. Enumerator_Dispose_m018F1D72F1A7C5688D4990D36C8DE3F761DBEAD2((Enumerator_tF4C0DAA7296AA2D9882BDBBBA6058B423BD2A4BC *)(&V_12), /*hidden argument*/Enumerator_Dispose_m018F1D72F1A7C5688D4990D36C8DE3F761DBEAD2_RuntimeMethod_var);
  5607. IL2CPP_END_FINALLY(605)
  5608. }// end finally (depth: 2)
  5609. IL2CPP_CLEANUP(605)
  5610. {
  5611. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5612. IL2CPP_JUMP_TBL(0x26C, IL_026c)
  5613. }
  5614. IL_026c:
  5615. {
  5616. bool L_95 = V_2;
  5617. V_33 = (bool)((((int32_t)L_95) == ((int32_t)0))? 1 : 0);
  5618. bool L_96 = V_33;
  5619. if (!L_96)
  5620. {
  5621. goto IL_02a4;
  5622. }
  5623. }
  5624. IL_0276:
  5625. {
  5626. Type_t * L_97 = ___type0;
  5627. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  5628. Type_t * L_98;
  5629. L_98 = Reflection_EnumerateItemType_m1837558A6F947AA64319B11867A90702F4556062(L_97, /*hidden argument*/NULL);
  5630. V_34 = L_98;
  5631. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_99;
  5632. L_99 = CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline(__this, /*hidden argument*/NULL);
  5633. Type_t * L_100 = ___type0;
  5634. Type_t * L_101 = V_34;
  5635. NullCheck(L_99);
  5636. Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73(L_99, L_100, L_101, /*hidden argument*/Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73_RuntimeMethod_var);
  5637. Type_t * L_102 = V_34;
  5638. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  5639. bool L_103;
  5640. L_103 = Type_op_Inequality_m6DDC5E923203A79BF505F9275B694AD3FAA36DB0(L_102, (Type_t *)NULL, /*hidden argument*/NULL);
  5641. V_35 = L_103;
  5642. bool L_104 = V_35;
  5643. if (!L_104)
  5644. {
  5645. goto IL_02a1;
  5646. }
  5647. }
  5648. IL_029c:
  5649. {
  5650. IL2CPP_LEAVE(0x381, FINALLY_0376);
  5651. }
  5652. IL_02a1:
  5653. {
  5654. goto IL_02b2;
  5655. }
  5656. IL_02a4:
  5657. {
  5658. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_105;
  5659. L_105 = CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline(__this, /*hidden argument*/NULL);
  5660. Type_t * L_106 = ___type0;
  5661. NullCheck(L_105);
  5662. Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73(L_105, L_106, (Type_t *)NULL, /*hidden argument*/Dictionary_2_Add_m9A8FC142D74DAA97E62357C60365098B875B9D73_RuntimeMethod_var);
  5663. }
  5664. IL_02b2:
  5665. {
  5666. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_107 = V_4;
  5667. NullCheck(L_107);
  5668. int32_t L_108;
  5669. L_108 = List_1_get_Count_mCAEA1EE8853594506435D323C3CEED01B210B708_inline(L_107, /*hidden argument*/List_1_get_Count_mCAEA1EE8853594506435D323C3CEED01B210B708_RuntimeMethod_var);
  5670. MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* L_109 = (MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D*)(MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D*)SZArrayNew(MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D_il2cpp_TypeInfo_var, (uint32_t)L_108);
  5671. V_7 = L_109;
  5672. Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * L_110 = (Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D *)il2cpp_codegen_object_new(Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D_il2cpp_TypeInfo_var);
  5673. Dictionary_2__ctor_m8E556BB6EE0B1AA485160855260A049C62CE7304(L_110, /*hidden argument*/Dictionary_2__ctor_m8E556BB6EE0B1AA485160855260A049C62CE7304_RuntimeMethod_var);
  5674. V_8 = L_110;
  5675. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_111 = V_4;
  5676. IL2CPP_RUNTIME_CLASS_INIT(Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var);
  5677. RuntimeObject* L_112;
  5678. L_112 = Extension_Index_TisMemberInfo_t_m647621337E23DDF470ACCC7F7103C96BEE7D676E(L_111, /*hidden argument*/Extension_Index_TisMemberInfo_t_m647621337E23DDF470ACCC7F7103C96BEE7D676E_RuntimeMethod_var);
  5679. NullCheck(L_112);
  5680. RuntimeObject* L_113;
  5681. L_113 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Int32>::GetEnumerator() */, IEnumerable_1_t60929E1AA80B46746F987B99A4EBD004FD72D370_il2cpp_TypeInfo_var, L_112);
  5682. V_36 = L_113;
  5683. }
  5684. IL_02d6:
  5685. try
  5686. {// begin try (depth: 2)
  5687. {
  5688. goto IL_0345;
  5689. }
  5690. IL_02d8:
  5691. {
  5692. RuntimeObject* L_114 = V_36;
  5693. NullCheck(L_114);
  5694. int32_t L_115;
  5695. L_115 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Int32>::get_Current() */, IEnumerator_1_t72AB4B40AF5290B386215B0BFADC8919D394DCAB_il2cpp_TypeInfo_var, L_114);
  5696. V_37 = L_115;
  5697. List_1_t1E053584366104694FDDFF723CE187EAD7F857B0 * L_116 = V_4;
  5698. int32_t L_117 = V_37;
  5699. NullCheck(L_116);
  5700. MemberInfo_t * L_118;
  5701. L_118 = List_1_get_Item_m0F50D699DFEFF36EF0B525B3CCC461D7D9708A6D_inline(L_116, L_117, /*hidden argument*/List_1_get_Item_m0F50D699DFEFF36EF0B525B3CCC461D7D9708A6D_RuntimeMethod_var);
  5702. V_38 = L_118;
  5703. MemberInfo_t * L_119 = V_38;
  5704. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  5705. String_t* L_120;
  5706. L_120 = Reflection_DeclaringName_m7413A9B1BAA63EE304C1B04F8D5E8A0F1B4ACD88(L_119, /*hidden argument*/NULL);
  5707. V_39 = L_120;
  5708. Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * L_121 = V_8;
  5709. String_t* L_122 = V_39;
  5710. NullCheck(L_121);
  5711. bool L_123;
  5712. L_123 = Dictionary_2_ContainsKey_m3A2C6993636B0402C60BE82BD623536F129C3880(L_121, L_122, /*hidden argument*/Dictionary_2_ContainsKey_m3A2C6993636B0402C60BE82BD623536F129C3880_RuntimeMethod_var);
  5713. V_40 = L_123;
  5714. bool L_124 = V_40;
  5715. if (!L_124)
  5716. {
  5717. goto IL_031f;
  5718. }
  5719. }
  5720. IL_0305:
  5721. {
  5722. MemberInfo_t * L_125 = V_38;
  5723. NullCheck(L_125);
  5724. Type_t * L_126;
  5725. L_126 = VirtualFuncInvoker0< Type_t * >::Invoke(10 /* System.Type System.Reflection.MemberInfo::get_ReflectedType() */, L_125);
  5726. NullCheck(L_126);
  5727. String_t* L_127;
  5728. L_127 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_126);
  5729. String_t* L_128 = V_39;
  5730. String_t* L_129;
  5731. L_129 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_127, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_128, /*hidden argument*/NULL);
  5732. V_39 = L_129;
  5733. }
  5734. IL_031f:
  5735. {
  5736. MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* L_130 = V_7;
  5737. int32_t L_131 = V_37;
  5738. MemberInfo_t * L_132 = V_38;
  5739. String_t* L_133 = V_39;
  5740. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F L_134;
  5741. memset((&L_134), 0, sizeof(L_134));
  5742. Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667((&L_134), L_132, L_133, /*hidden argument*/NULL);
  5743. NullCheck(L_130);
  5744. (L_130)->SetAt(static_cast<il2cpp_array_size_t>(L_131), (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F )L_134);
  5745. Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * L_135 = V_8;
  5746. String_t* L_136 = V_39;
  5747. MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* L_137 = V_7;
  5748. int32_t L_138 = V_37;
  5749. NullCheck(L_137);
  5750. int32_t L_139 = L_138;
  5751. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F L_140 = (L_137)->GetAt(static_cast<il2cpp_array_size_t>(L_139));
  5752. NullCheck(L_135);
  5753. Dictionary_2_Add_m35E986A532C1FB91E5FF0366052BFC39D5279EAB(L_135, L_136, L_140, /*hidden argument*/Dictionary_2_Add_m35E986A532C1FB91E5FF0366052BFC39D5279EAB_RuntimeMethod_var);
  5754. }
  5755. IL_0345:
  5756. {
  5757. RuntimeObject* L_141 = V_36;
  5758. NullCheck(L_141);
  5759. bool L_142;
  5760. L_142 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_141);
  5761. if (L_142)
  5762. {
  5763. goto IL_02d8;
  5764. }
  5765. }
  5766. IL_034e:
  5767. {
  5768. IL2CPP_LEAVE(0x35D, FINALLY_0350);
  5769. }
  5770. }// end try (depth: 2)
  5771. catch(Il2CppExceptionWrapper& e)
  5772. {
  5773. __last_unhandled_exception = (Exception_t *)e.ex;
  5774. goto FINALLY_0350;
  5775. }
  5776. FINALLY_0350:
  5777. {// begin finally (depth: 2)
  5778. {
  5779. RuntimeObject* L_143 = V_36;
  5780. if (!L_143)
  5781. {
  5782. goto IL_035c;
  5783. }
  5784. }
  5785. IL_0354:
  5786. {
  5787. RuntimeObject* L_144 = V_36;
  5788. NullCheck(L_144);
  5789. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_144);
  5790. }
  5791. IL_035c:
  5792. {
  5793. IL2CPP_END_FINALLY(848)
  5794. }
  5795. }// end finally (depth: 2)
  5796. IL2CPP_CLEANUP(848)
  5797. {
  5798. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5799. IL2CPP_JUMP_TBL(0x35D, IL_035d)
  5800. }
  5801. IL_035d:
  5802. {
  5803. Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * L_145;
  5804. L_145 = CustomByMember_get_SerializeMemberInfos_mD9F278495B3832FE55BCC561A1791226EF6B5A03_inline(__this, /*hidden argument*/NULL);
  5805. Type_t * L_146 = ___type0;
  5806. MemberU5BU5D_t840084DD602CE6175231C77116203AAF78A9230D* L_147 = V_7;
  5807. Dictionary_2_t90A1742A64D3315685B92A6046BCBED2EE35636D * L_148 = V_8;
  5808. ValueTuple_2_t9261FF1B5EEF551303B82ABE36B895D5205545E7 L_149;
  5809. memset((&L_149), 0, sizeof(L_149));
  5810. ValueTuple_2__ctor_m6B194F6592DA2DACDA26B38D85321CF54D82C15D((&L_149), L_147, L_148, /*hidden argument*/ValueTuple_2__ctor_m6B194F6592DA2DACDA26B38D85321CF54D82C15D_RuntimeMethod_var);
  5811. NullCheck(L_145);
  5812. Dictionary_2_Add_m3C4BAB1F998CD117ABC32F83E5838D05E60123C1(L_145, L_146, L_149, /*hidden argument*/Dictionary_2_Add_m3C4BAB1F998CD117ABC32F83E5838D05E60123C1_RuntimeMethod_var);
  5813. IL2CPP_LEAVE(0x381, FINALLY_0376);
  5814. }
  5815. }// end try (depth: 1)
  5816. catch(Il2CppExceptionWrapper& e)
  5817. {
  5818. __last_unhandled_exception = (Exception_t *)e.ex;
  5819. goto FINALLY_0376;
  5820. }
  5821. FINALLY_0376:
  5822. {// begin finally (depth: 1)
  5823. {
  5824. bool L_150 = V_1;
  5825. if (!L_150)
  5826. {
  5827. goto IL_0380;
  5828. }
  5829. }
  5830. IL_0379:
  5831. {
  5832. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_151 = V_0;
  5833. Monitor_Exit_mA776B403DA88AC77CDEEF67AB9F0D0E77ABD254A(L_151, /*hidden argument*/NULL);
  5834. }
  5835. IL_0380:
  5836. {
  5837. IL2CPP_END_FINALLY(886)
  5838. }
  5839. }// end finally (depth: 1)
  5840. IL2CPP_CLEANUP(886)
  5841. {
  5842. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5843. IL2CPP_JUMP_TBL(0x381, IL_0381)
  5844. }
  5845. IL_0381:
  5846. {
  5847. return;
  5848. }
  5849. }
  5850. // System.Void o0.Serialize/CustomByMember::.ctor()
  5851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CustomByMember__ctor_m5EE28CB6D442622FB8127D25F5E224EF70AC3345 (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method)
  5852. {
  5853. static bool s_Il2CppMethodInitialized;
  5854. if (!s_Il2CppMethodInitialized)
  5855. {
  5856. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB_RuntimeMethod_var);
  5857. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mB26107A11A1064E55E0E0C0FA8E664F3D1487A4B_RuntimeMethod_var);
  5858. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7_il2cpp_TypeInfo_var);
  5859. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506_il2cpp_TypeInfo_var);
  5860. s_Il2CppMethodInitialized = true;
  5861. }
  5862. {
  5863. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0 = (Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 *)il2cpp_codegen_object_new(Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506_il2cpp_TypeInfo_var);
  5864. Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB(L_0, /*hidden argument*/Dictionary_2__ctor_mA8817230AE5D1F6E98F52B93BC8DB60E4B2121AB_RuntimeMethod_var);
  5865. __this->set_U3CItemTypesU3Ek__BackingField_0(L_0);
  5866. Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * L_1 = (Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 *)il2cpp_codegen_object_new(Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7_il2cpp_TypeInfo_var);
  5867. Dictionary_2__ctor_mB26107A11A1064E55E0E0C0FA8E664F3D1487A4B(L_1, /*hidden argument*/Dictionary_2__ctor_mB26107A11A1064E55E0E0C0FA8E664F3D1487A4B_RuntimeMethod_var);
  5868. __this->set_U3CSerializeMemberInfosU3Ek__BackingField_1(L_1);
  5869. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  5870. return;
  5871. }
  5872. }
  5873. #ifdef __clang__
  5874. #pragma clang diagnostic pop
  5875. #endif
  5876. #ifdef __clang__
  5877. #pragma clang diagnostic push
  5878. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5879. #pragma clang diagnostic ignored "-Wunused-variable"
  5880. #endif
  5881. // Conversion methods for marshalling of: o0.Serialize/Member
  5882. IL2CPP_EXTERN_C void Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshal_pinvoke(const Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F& unmarshaled, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_pinvoke& marshaled)
  5883. {
  5884. Exception_t* ___Info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Info' of type 'Member': Reference type field marshaling is not supported.");
  5885. IL2CPP_RAISE_MANAGED_EXCEPTION(___Info_0Exception, NULL);
  5886. }
  5887. IL2CPP_EXTERN_C void Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshal_pinvoke_back(const Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_pinvoke& marshaled, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F& unmarshaled)
  5888. {
  5889. Exception_t* ___Info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Info' of type 'Member': Reference type field marshaling is not supported.");
  5890. IL2CPP_RAISE_MANAGED_EXCEPTION(___Info_0Exception, NULL);
  5891. }
  5892. // Conversion method for clean up from marshalling of: o0.Serialize/Member
  5893. IL2CPP_EXTERN_C void Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshal_pinvoke_cleanup(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_pinvoke& marshaled)
  5894. {
  5895. }
  5896. // Conversion methods for marshalling of: o0.Serialize/Member
  5897. IL2CPP_EXTERN_C void Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshal_com(const Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F& unmarshaled, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_com& marshaled)
  5898. {
  5899. Exception_t* ___Info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Info' of type 'Member': Reference type field marshaling is not supported.");
  5900. IL2CPP_RAISE_MANAGED_EXCEPTION(___Info_0Exception, NULL);
  5901. }
  5902. IL2CPP_EXTERN_C void Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshal_com_back(const Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_com& marshaled, Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F& unmarshaled)
  5903. {
  5904. Exception_t* ___Info_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'Info' of type 'Member': Reference type field marshaling is not supported.");
  5905. IL2CPP_RAISE_MANAGED_EXCEPTION(___Info_0Exception, NULL);
  5906. }
  5907. // Conversion method for clean up from marshalling of: o0.Serialize/Member
  5908. IL2CPP_EXTERN_C void Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshal_com_cleanup(Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F_marshaled_com& marshaled)
  5909. {
  5910. }
  5911. // System.Void o0.Serialize/Member::.ctor(System.Reflection.MemberInfo,System.String)
  5912. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667 (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * __this, MemberInfo_t * ___Info0, String_t* ___Name1, const RuntimeMethod* method)
  5913. {
  5914. static bool s_Il2CppMethodInitialized;
  5915. if (!s_Il2CppMethodInitialized)
  5916. {
  5917. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_RuntimeMethod_var);
  5918. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D_il2cpp_TypeInfo_var);
  5919. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C_RuntimeMethod_var);
  5920. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FieldInfo_t_il2cpp_TypeInfo_var);
  5921. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_0_0_0_var);
  5922. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  5923. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
  5924. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIntPtr_t_0_0_0_var);
  5925. s_Il2CppMethodInitialized = true;
  5926. }
  5927. FieldInfo_t * V_0 = NULL;
  5928. bool V_1 = false;
  5929. bool V_2 = false;
  5930. bool V_3 = false;
  5931. bool V_4 = false;
  5932. bool V_5 = false;
  5933. Type_t * G_B3_0 = NULL;
  5934. int32_t G_B3_1 = 0;
  5935. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_2 = NULL;
  5936. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B3_3 = NULL;
  5937. Type_t * G_B2_0 = NULL;
  5938. int32_t G_B2_1 = 0;
  5939. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_2 = NULL;
  5940. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B2_3 = NULL;
  5941. String_t* G_B4_0 = NULL;
  5942. int32_t G_B4_1 = 0;
  5943. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_2 = NULL;
  5944. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* G_B4_3 = NULL;
  5945. int32_t G_B8_0 = 0;
  5946. String_t* G_B12_0 = NULL;
  5947. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * G_B12_1 = NULL;
  5948. String_t* G_B11_0 = NULL;
  5949. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * G_B11_1 = NULL;
  5950. int32_t G_B15_0 = 0;
  5951. RuntimeObject * G_B21_0 = NULL;
  5952. String_t* G_B21_1 = NULL;
  5953. RuntimeObject * G_B20_0 = NULL;
  5954. String_t* G_B20_1 = NULL;
  5955. String_t* G_B22_0 = NULL;
  5956. String_t* G_B22_1 = NULL;
  5957. RuntimeObject * G_B26_0 = NULL;
  5958. String_t* G_B26_1 = NULL;
  5959. RuntimeObject * G_B25_0 = NULL;
  5960. String_t* G_B25_1 = NULL;
  5961. String_t* G_B27_0 = NULL;
  5962. String_t* G_B27_1 = NULL;
  5963. {
  5964. MemberInfo_t * L_0 = ___Info0;
  5965. __this->set_Info_0(L_0);
  5966. MemberInfo_t * L_1 = ___Info0;
  5967. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  5968. Type_t * L_2;
  5969. L_2 = Reflection_DeclaringType_mFE7A6F4780B46C5448F71B28D28CAA1F5BC49AC3(L_1, /*hidden argument*/NULL);
  5970. __this->set_Type_1(L_2);
  5971. Type_t * L_3 = __this->get_Type_1();
  5972. NullCheck(L_3);
  5973. bool L_4;
  5974. L_4 = Type_get_IsInterface_mB10C34DEE8B22E1597C813211BBED17DD724FC07(L_3, /*hidden argument*/NULL);
  5975. V_1 = L_4;
  5976. bool L_5 = V_1;
  5977. if (!L_5)
  5978. {
  5979. goto IL_0065;
  5980. }
  5981. }
  5982. {
  5983. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_6 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var)), (uint32_t)5);
  5984. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = L_6;
  5985. NullCheck(L_7);
  5986. ArrayElementTypeCheck (L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38FA53D00574017F58FEB66835163BA4160B6F36)));
  5987. (L_7)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral38FA53D00574017F58FEB66835163BA4160B6F36)));
  5988. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_8 = L_7;
  5989. Type_t * L_9 = __this->get_Type_1();
  5990. Type_t * L_10 = L_9;
  5991. G_B2_0 = L_10;
  5992. G_B2_1 = 1;
  5993. G_B2_2 = L_8;
  5994. G_B2_3 = L_8;
  5995. if (L_10)
  5996. {
  5997. G_B3_0 = L_10;
  5998. G_B3_1 = 1;
  5999. G_B3_2 = L_8;
  6000. G_B3_3 = L_8;
  6001. goto IL_0040;
  6002. }
  6003. }
  6004. {
  6005. G_B4_0 = ((String_t*)(NULL));
  6006. G_B4_1 = G_B2_1;
  6007. G_B4_2 = G_B2_2;
  6008. G_B4_3 = G_B2_3;
  6009. goto IL_0045;
  6010. }
  6011. IL_0040:
  6012. {
  6013. NullCheck(G_B3_0);
  6014. String_t* L_11;
  6015. L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B3_0);
  6016. G_B4_0 = L_11;
  6017. G_B4_1 = G_B3_1;
  6018. G_B4_2 = G_B3_2;
  6019. G_B4_3 = G_B3_3;
  6020. }
  6021. IL_0045:
  6022. {
  6023. NullCheck(G_B4_2);
  6024. ArrayElementTypeCheck (G_B4_2, G_B4_0);
  6025. (G_B4_2)->SetAt(static_cast<il2cpp_array_size_t>(G_B4_1), (String_t*)G_B4_0);
  6026. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_12 = G_B4_3;
  6027. NullCheck(L_12);
  6028. ArrayElementTypeCheck (L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745)));
  6029. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2386E77CF610F786B06A91AF2C1B3FD2282D2745)));
  6030. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_12;
  6031. String_t* L_14 = ___Name1;
  6032. NullCheck(L_13);
  6033. ArrayElementTypeCheck (L_13, L_14);
  6034. (L_13)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_14);
  6035. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_15 = L_13;
  6036. NullCheck(L_15);
  6037. ArrayElementTypeCheck (L_15, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBDA5986B05EDF7479EDA9FFD470EB4143C8FEFB6)));
  6038. (L_15)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBDA5986B05EDF7479EDA9FFD470EB4143C8FEFB6)));
  6039. String_t* L_16;
  6040. L_16 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9(L_15, /*hidden argument*/NULL);
  6041. Exception_t * L_17 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  6042. Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_17, L_16, /*hidden argument*/NULL);
  6043. IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667_RuntimeMethod_var)));
  6044. }
  6045. IL_0065:
  6046. {
  6047. Type_t * L_18 = __this->get_Type_1();
  6048. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_19 = { reinterpret_cast<intptr_t> (IntPtr_t_0_0_0_var) };
  6049. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  6050. Type_t * L_20;
  6051. L_20 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_19, /*hidden argument*/NULL);
  6052. bool L_21;
  6053. L_21 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_18, L_20, /*hidden argument*/NULL);
  6054. if (L_21)
  6055. {
  6056. goto IL_0093;
  6057. }
  6058. }
  6059. {
  6060. Type_t * L_22 = __this->get_Type_1();
  6061. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_23 = { reinterpret_cast<intptr_t> (UIntPtr_t_0_0_0_var) };
  6062. IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
  6063. Type_t * L_24;
  6064. L_24 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_23, /*hidden argument*/NULL);
  6065. bool L_25;
  6066. L_25 = Type_op_Equality_mA438719A1FDF103C7BBBB08AEF564E7FAEEA0046(L_22, L_24, /*hidden argument*/NULL);
  6067. G_B8_0 = ((int32_t)(L_25));
  6068. goto IL_0094;
  6069. }
  6070. IL_0093:
  6071. {
  6072. G_B8_0 = 1;
  6073. }
  6074. IL_0094:
  6075. {
  6076. V_2 = (bool)G_B8_0;
  6077. bool L_26 = V_2;
  6078. if (!L_26)
  6079. {
  6080. goto IL_00a3;
  6081. }
  6082. }
  6083. {
  6084. Exception_t * L_27 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  6085. Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_27, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8437DEF10608C2655F3733E1EB32AD10DDE13EBE)), /*hidden argument*/NULL);
  6086. IL2CPP_RAISE_MANAGED_EXCEPTION(L_27, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667_RuntimeMethod_var)));
  6087. }
  6088. IL_00a3:
  6089. {
  6090. String_t* L_28 = ___Name1;
  6091. String_t* L_29 = L_28;
  6092. G_B11_0 = L_29;
  6093. G_B11_1 = __this;
  6094. if (L_29)
  6095. {
  6096. G_B12_0 = L_29;
  6097. G_B12_1 = __this;
  6098. goto IL_00af;
  6099. }
  6100. }
  6101. {
  6102. MemberInfo_t * L_30 = ___Info0;
  6103. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  6104. String_t* L_31;
  6105. L_31 = Reflection_DeclaringName_m7413A9B1BAA63EE304C1B04F8D5E8A0F1B4ACD88(L_30, /*hidden argument*/NULL);
  6106. G_B12_0 = L_31;
  6107. G_B12_1 = G_B11_1;
  6108. }
  6109. IL_00af:
  6110. {
  6111. G_B12_1->set_Name_2(G_B12_0);
  6112. MemberInfo_t * L_32 = ___Info0;
  6113. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  6114. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_33;
  6115. L_33 = Reflection_MakeGetter_m51FC7D26543E4293E063E8132C96841BBE959B24(L_32, /*hidden argument*/NULL);
  6116. __this->set_Getter_3(L_33);
  6117. MemberInfo_t * L_34 = ___Info0;
  6118. V_0 = ((FieldInfo_t *)IsInstClass((RuntimeObject*)L_34, FieldInfo_t_il2cpp_TypeInfo_var));
  6119. FieldInfo_t * L_35 = V_0;
  6120. if (!L_35)
  6121. {
  6122. goto IL_00d2;
  6123. }
  6124. }
  6125. {
  6126. FieldInfo_t * L_36 = V_0;
  6127. NullCheck(L_36);
  6128. bool L_37;
  6129. L_37 = FieldInfo_get_IsInitOnly_mA279E731A1097E83BACAF9F53612CFA9428E806B(L_36, /*hidden argument*/NULL);
  6130. G_B15_0 = ((int32_t)(L_37));
  6131. goto IL_00d3;
  6132. }
  6133. IL_00d2:
  6134. {
  6135. G_B15_0 = 0;
  6136. }
  6137. IL_00d3:
  6138. {
  6139. V_3 = (bool)G_B15_0;
  6140. bool L_38 = V_3;
  6141. if (!L_38)
  6142. {
  6143. goto IL_00eb;
  6144. }
  6145. }
  6146. {
  6147. FieldInfo_t * L_39 = V_0;
  6148. Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_40 = (Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D *)il2cpp_codegen_object_new(Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D_il2cpp_TypeInfo_var);
  6149. Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1(L_40, L_39, (intptr_t)((intptr_t)FieldInfo_SetValue_mA1EFB5DA5E4B930A617744E29E909FE9DEAA663C_RuntimeMethod_var), /*hidden argument*/Action_2__ctor_mE1761BE81335B68DA4E0F742344DA72F092A29C1_RuntimeMethod_var);
  6150. __this->set_Setter_4(L_40);
  6151. goto IL_00f7;
  6152. }
  6153. IL_00eb:
  6154. {
  6155. MemberInfo_t * L_41 = ___Info0;
  6156. IL2CPP_RUNTIME_CLASS_INIT(Reflection_tE7E2CC5D479EAA8929622F6F0272CF4ADEFEB5CB_il2cpp_TypeInfo_var);
  6157. Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_42;
  6158. L_42 = Reflection_MakeSetter_m7A042A7B422DD6522E1ADC5499DAFB5749640276(L_41, /*hidden argument*/NULL);
  6159. __this->set_Setter_4(L_42);
  6160. }
  6161. IL_00f7:
  6162. {
  6163. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_43 = __this->get_Getter_3();
  6164. V_4 = (bool)((((RuntimeObject*)(Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 *)L_43) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  6165. bool L_44 = V_4;
  6166. if (!L_44)
  6167. {
  6168. goto IL_0132;
  6169. }
  6170. }
  6171. {
  6172. MemberInfo_t * L_45 = ___Info0;
  6173. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_46 = { reinterpret_cast<intptr_t> (((RuntimeType*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_0_0_0_var))) };
  6174. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
  6175. Type_t * L_47;
  6176. L_47 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_46, /*hidden argument*/NULL);
  6177. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var)));
  6178. RuntimeObject * L_48;
  6179. L_48 = Extension_To_m04277AD155E79BEE53EB8B9E70F9E267B9DE60BE(L_45, L_47, /*hidden argument*/NULL);
  6180. RuntimeObject * L_49 = L_48;
  6181. G_B20_0 = L_49;
  6182. G_B20_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8D190F5B978BC5745FB87B8AB904CAFF87EA0BA));
  6183. if (L_49)
  6184. {
  6185. G_B21_0 = L_49;
  6186. G_B21_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE8D190F5B978BC5745FB87B8AB904CAFF87EA0BA));
  6187. goto IL_0122;
  6188. }
  6189. }
  6190. {
  6191. G_B22_0 = ((String_t*)(NULL));
  6192. G_B22_1 = G_B20_1;
  6193. goto IL_0127;
  6194. }
  6195. IL_0122:
  6196. {
  6197. NullCheck(G_B21_0);
  6198. String_t* L_50;
  6199. L_50 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B21_0);
  6200. G_B22_0 = L_50;
  6201. G_B22_1 = G_B21_1;
  6202. }
  6203. IL_0127:
  6204. {
  6205. String_t* L_51;
  6206. L_51 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B22_1, G_B22_0, /*hidden argument*/NULL);
  6207. Exception_t * L_52 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  6208. Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_52, L_51, /*hidden argument*/NULL);
  6209. IL2CPP_RAISE_MANAGED_EXCEPTION(L_52, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667_RuntimeMethod_var)));
  6210. }
  6211. IL_0132:
  6212. {
  6213. Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_53 = __this->get_Setter_4();
  6214. V_5 = (bool)((((RuntimeObject*)(Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D *)L_53) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  6215. bool L_54 = V_5;
  6216. if (!L_54)
  6217. {
  6218. goto IL_016d;
  6219. }
  6220. }
  6221. {
  6222. MemberInfo_t * L_55 = ___Info0;
  6223. RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 L_56 = { reinterpret_cast<intptr_t> (((RuntimeType*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&String_t_0_0_0_var))) };
  6224. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
  6225. Type_t * L_57;
  6226. L_57 = Type_GetTypeFromHandle_m8BB57524FF7F9DB1803BC561D2B3A4DBACEB385E(L_56, /*hidden argument*/NULL);
  6227. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Extension_t435E9E63ACD3FD0EB0DC78D43C3F7EA40DA19437_il2cpp_TypeInfo_var)));
  6228. RuntimeObject * L_58;
  6229. L_58 = Extension_To_m04277AD155E79BEE53EB8B9E70F9E267B9DE60BE(L_55, L_57, /*hidden argument*/NULL);
  6230. RuntimeObject * L_59 = L_58;
  6231. G_B25_0 = L_59;
  6232. G_B25_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral032E8408AA3BF0DD425A9425D7FC09ED0732312C));
  6233. if (L_59)
  6234. {
  6235. G_B26_0 = L_59;
  6236. G_B26_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral032E8408AA3BF0DD425A9425D7FC09ED0732312C));
  6237. goto IL_015d;
  6238. }
  6239. }
  6240. {
  6241. G_B27_0 = ((String_t*)(NULL));
  6242. G_B27_1 = G_B25_1;
  6243. goto IL_0162;
  6244. }
  6245. IL_015d:
  6246. {
  6247. NullCheck(G_B26_0);
  6248. String_t* L_60;
  6249. L_60 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B26_0);
  6250. G_B27_0 = L_60;
  6251. G_B27_1 = G_B26_1;
  6252. }
  6253. IL_0162:
  6254. {
  6255. String_t* L_61;
  6256. L_61 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(G_B27_1, G_B27_0, /*hidden argument*/NULL);
  6257. Exception_t * L_62 = (Exception_t *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
  6258. Exception__ctor_m8ECDE8ACA7F2E0EF1144BD1200FB5DB2870B5F11(L_62, L_61, /*hidden argument*/NULL);
  6259. IL2CPP_RAISE_MANAGED_EXCEPTION(L_62, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667_RuntimeMethod_var)));
  6260. }
  6261. IL_016d:
  6262. {
  6263. return;
  6264. }
  6265. }
  6266. IL2CPP_EXTERN_C void Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667_AdjustorThunk (RuntimeObject * __this, MemberInfo_t * ___Info0, String_t* ___Name1, const RuntimeMethod* method)
  6267. {
  6268. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * _thisAdjusted;
  6269. int32_t _offset = 1;
  6270. _thisAdjusted = reinterpret_cast<Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F *>(__this + _offset);
  6271. Member__ctor_m8A46FB06F736DEA325AC10BC9564B1E08E241667(_thisAdjusted, ___Info0, ___Name1, method);
  6272. }
  6273. // System.Object o0.Serialize/Member::Get(System.Object&)
  6274. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Member_Get_m1AB03C52CCE4EFA680926FD60FDC9D5C8EE9D858 (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * __this, RuntimeObject ** ___o0, const RuntimeMethod* method)
  6275. {
  6276. static bool s_Il2CppMethodInitialized;
  6277. if (!s_Il2CppMethodInitialized)
  6278. {
  6279. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var);
  6280. s_Il2CppMethodInitialized = true;
  6281. }
  6282. {
  6283. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = __this->get_Getter_3();
  6284. RuntimeObject ** L_1 = ___o0;
  6285. RuntimeObject * L_2 = *((RuntimeObject **)L_1);
  6286. NullCheck(L_0);
  6287. RuntimeObject * L_3;
  6288. L_3 = Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6(L_0, L_2, /*hidden argument*/Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var);
  6289. return L_3;
  6290. }
  6291. }
  6292. IL2CPP_EXTERN_C RuntimeObject * Member_Get_m1AB03C52CCE4EFA680926FD60FDC9D5C8EE9D858_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___o0, const RuntimeMethod* method)
  6293. {
  6294. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * _thisAdjusted;
  6295. int32_t _offset = 1;
  6296. _thisAdjusted = reinterpret_cast<Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F *>(__this + _offset);
  6297. RuntimeObject * _returnValue;
  6298. _returnValue = Member_Get_m1AB03C52CCE4EFA680926FD60FDC9D5C8EE9D858(_thisAdjusted, ___o0, method);
  6299. return _returnValue;
  6300. }
  6301. // System.Void o0.Serialize/Member::Set(System.Object&,System.Object)
  6302. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Member_Set_m3B05C25ACF317E16F369398067387082A557AFA6 (Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * __this, RuntimeObject ** ___o0, RuntimeObject * ___v1, const RuntimeMethod* method)
  6303. {
  6304. static bool s_Il2CppMethodInitialized;
  6305. if (!s_Il2CppMethodInitialized)
  6306. {
  6307. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_RuntimeMethod_var);
  6308. s_Il2CppMethodInitialized = true;
  6309. }
  6310. {
  6311. Action_2_t4FB8E5660AE634E13BF340904C61FEA9DCE9D52D * L_0 = __this->get_Setter_4();
  6312. RuntimeObject ** L_1 = ___o0;
  6313. RuntimeObject * L_2 = *((RuntimeObject **)L_1);
  6314. RuntimeObject * L_3 = ___v1;
  6315. NullCheck(L_0);
  6316. Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D(L_0, L_2, L_3, /*hidden argument*/Action_2_Invoke_mD20361F54064D4A745FAC10AD4D9C52E1C63BB6D_RuntimeMethod_var);
  6317. return;
  6318. }
  6319. }
  6320. IL2CPP_EXTERN_C void Member_Set_m3B05C25ACF317E16F369398067387082A557AFA6_AdjustorThunk (RuntimeObject * __this, RuntimeObject ** ___o0, RuntimeObject * ___v1, const RuntimeMethod* method)
  6321. {
  6322. Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F * _thisAdjusted;
  6323. int32_t _offset = 1;
  6324. _thisAdjusted = reinterpret_cast<Member_t7A63F9F3CA66F26928FCF6F970EEF7BBFB39415F *>(__this + _offset);
  6325. Member_Set_m3B05C25ACF317E16F369398067387082A557AFA6(_thisAdjusted, ___o0, ___v1, method);
  6326. }
  6327. #ifdef __clang__
  6328. #pragma clang diagnostic pop
  6329. #endif
  6330. #ifdef __clang__
  6331. #pragma clang diagnostic push
  6332. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6333. #pragma clang diagnostic ignored "-Wunused-variable"
  6334. #endif
  6335. // Conversion methods for marshalling of: o0.Serialize/Object
  6336. IL2CPP_EXTERN_C void Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshal_pinvoke(const Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C& unmarshaled, Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_pinvoke& marshaled)
  6337. {
  6338. marshaled.___Type_0 = unmarshaled.get_Type_0();
  6339. if (unmarshaled.get_Data_1() != NULL)
  6340. {
  6341. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_Data_1()))
  6342. {
  6343. marshaled.___Data_1 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_Data_1()));
  6344. (marshaled.___Data_1)->AddRef();
  6345. }
  6346. else
  6347. {
  6348. marshaled.___Data_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_Data_1());
  6349. }
  6350. }
  6351. else
  6352. {
  6353. marshaled.___Data_1 = NULL;
  6354. }
  6355. }
  6356. IL2CPP_EXTERN_C void Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshal_pinvoke_back(const Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_pinvoke& marshaled, Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C& unmarshaled)
  6357. {
  6358. static bool s_Il2CppMethodInitialized;
  6359. if (!s_Il2CppMethodInitialized)
  6360. {
  6361. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var);
  6362. s_Il2CppMethodInitialized = true;
  6363. }
  6364. int32_t unmarshaled_Type_temp_0 = 0;
  6365. unmarshaled_Type_temp_0 = marshaled.___Type_0;
  6366. unmarshaled.set_Type_0(unmarshaled_Type_temp_0);
  6367. if (marshaled.___Data_1 != NULL)
  6368. {
  6369. unmarshaled.set_Data_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___Data_1, Il2CppComObject_il2cpp_TypeInfo_var));
  6370. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_Data_1()))
  6371. {
  6372. il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_Data_1()), Il2CppIUnknown::IID, marshaled.___Data_1);
  6373. }
  6374. }
  6375. else
  6376. {
  6377. unmarshaled.set_Data_1(NULL);
  6378. }
  6379. }
  6380. // Conversion method for clean up from marshalling of: o0.Serialize/Object
  6381. IL2CPP_EXTERN_C void Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshal_pinvoke_cleanup(Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_pinvoke& marshaled)
  6382. {
  6383. if (marshaled.___Data_1 != NULL)
  6384. {
  6385. (marshaled.___Data_1)->Release();
  6386. marshaled.___Data_1 = NULL;
  6387. }
  6388. }
  6389. // Conversion methods for marshalling of: o0.Serialize/Object
  6390. IL2CPP_EXTERN_C void Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshal_com(const Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C& unmarshaled, Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_com& marshaled)
  6391. {
  6392. marshaled.___Type_0 = unmarshaled.get_Type_0();
  6393. if (unmarshaled.get_Data_1() != NULL)
  6394. {
  6395. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_Data_1()))
  6396. {
  6397. marshaled.___Data_1 = il2cpp_codegen_com_query_interface<Il2CppIUnknown>(static_cast<Il2CppComObject*>(unmarshaled.get_Data_1()));
  6398. (marshaled.___Data_1)->AddRef();
  6399. }
  6400. else
  6401. {
  6402. marshaled.___Data_1 = il2cpp_codegen_com_get_or_create_ccw<Il2CppIUnknown>(unmarshaled.get_Data_1());
  6403. }
  6404. }
  6405. else
  6406. {
  6407. marshaled.___Data_1 = NULL;
  6408. }
  6409. }
  6410. IL2CPP_EXTERN_C void Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshal_com_back(const Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_com& marshaled, Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C& unmarshaled)
  6411. {
  6412. static bool s_Il2CppMethodInitialized;
  6413. if (!s_Il2CppMethodInitialized)
  6414. {
  6415. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Il2CppComObject_il2cpp_TypeInfo_var);
  6416. s_Il2CppMethodInitialized = true;
  6417. }
  6418. int32_t unmarshaled_Type_temp_0 = 0;
  6419. unmarshaled_Type_temp_0 = marshaled.___Type_0;
  6420. unmarshaled.set_Type_0(unmarshaled_Type_temp_0);
  6421. if (marshaled.___Data_1 != NULL)
  6422. {
  6423. unmarshaled.set_Data_1(il2cpp_codegen_com_get_or_create_rcw_from_iunknown<RuntimeObject>(marshaled.___Data_1, Il2CppComObject_il2cpp_TypeInfo_var));
  6424. if (il2cpp_codegen_is_import_or_windows_runtime(unmarshaled.get_Data_1()))
  6425. {
  6426. il2cpp_codegen_com_cache_queried_interface(static_cast<Il2CppComObject*>(unmarshaled.get_Data_1()), Il2CppIUnknown::IID, marshaled.___Data_1);
  6427. }
  6428. }
  6429. else
  6430. {
  6431. unmarshaled.set_Data_1(NULL);
  6432. }
  6433. }
  6434. // Conversion method for clean up from marshalling of: o0.Serialize/Object
  6435. IL2CPP_EXTERN_C void Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshal_com_cleanup(Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C_marshaled_com& marshaled)
  6436. {
  6437. if (marshaled.___Data_1 != NULL)
  6438. {
  6439. (marshaled.___Data_1)->Release();
  6440. marshaled.___Data_1 = NULL;
  6441. }
  6442. }
  6443. // System.Void o0.Serialize/Object::.ctor(o0.SerializeType,System.Object)
  6444. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m3C4F908C7270C91CDC792515601FC39B9886BAA1 (Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C * __this, int32_t ___Type0, RuntimeObject * ___Data1, const RuntimeMethod* method)
  6445. {
  6446. {
  6447. int32_t L_0 = ___Type0;
  6448. __this->set_Type_0(L_0);
  6449. RuntimeObject * L_1 = ___Data1;
  6450. __this->set_Data_1(L_1);
  6451. return;
  6452. }
  6453. }
  6454. IL2CPP_EXTERN_C void Object__ctor_m3C4F908C7270C91CDC792515601FC39B9886BAA1_AdjustorThunk (RuntimeObject * __this, int32_t ___Type0, RuntimeObject * ___Data1, const RuntimeMethod* method)
  6455. {
  6456. Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C * _thisAdjusted;
  6457. int32_t _offset = 1;
  6458. _thisAdjusted = reinterpret_cast<Object_t668F390D376C59B1A99F5F2D5BFC68DF8407D18C *>(__this + _offset);
  6459. Object__ctor_m3C4F908C7270C91CDC792515601FC39B9886BAA1(_thisAdjusted, ___Type0, ___Data1, method);
  6460. }
  6461. #ifdef __clang__
  6462. #pragma clang diagnostic pop
  6463. #endif
  6464. #ifdef __clang__
  6465. #pragma clang diagnostic push
  6466. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6467. #pragma clang diagnostic ignored "-Wunused-variable"
  6468. #endif
  6469. // System.Void o0.o0/<>c::.cctor()
  6470. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m517B761A53C4C97974FBEECDD83887E00FB8E962 (const RuntimeMethod* method)
  6471. {
  6472. static bool s_Il2CppMethodInitialized;
  6473. if (!s_Il2CppMethodInitialized)
  6474. {
  6475. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_il2cpp_TypeInfo_var);
  6476. s_Il2CppMethodInitialized = true;
  6477. }
  6478. {
  6479. U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * L_0 = (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 *)il2cpp_codegen_object_new(U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_il2cpp_TypeInfo_var);
  6480. U3CU3Ec__ctor_m0C378D5439782A3D992A8670A2F9EA8639C6B5F9(L_0, /*hidden argument*/NULL);
  6481. ((U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
  6482. return;
  6483. }
  6484. }
  6485. // System.Void o0.o0/<>c::.ctor()
  6486. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m0C378D5439782A3D992A8670A2F9EA8639C6B5F9 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, const RuntimeMethod* method)
  6487. {
  6488. {
  6489. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  6490. return;
  6491. }
  6492. }
  6493. // System.Double o0.o0/<>c::<.cctor>b__26_0(Fractions.Fraction)
  6494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double U3CU3Ec_U3C_cctorU3Eb__26_0_m4B0871C9FDB36B89AA74ADE807252EFDE3CE5C2E (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6495. {
  6496. {
  6497. double L_0;
  6498. L_0 = Fraction_ToDouble_m0631F7B038C4A5D0E55E8581A58EFAA695C5DD80((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6499. return L_0;
  6500. }
  6501. }
  6502. // System.Single o0.o0/<>c::<.cctor>b__26_1(Fractions.Fraction)
  6503. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float U3CU3Ec_U3C_cctorU3Eb__26_1_mE20F9E1E4F7AFC8740A54A28BCBBE728EB6B8CD0 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6504. {
  6505. {
  6506. double L_0;
  6507. L_0 = Fraction_ToDouble_m0631F7B038C4A5D0E55E8581A58EFAA695C5DD80((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6508. return ((float)((float)L_0));
  6509. }
  6510. }
  6511. // System.UInt16 o0.o0/<>c::<.cctor>b__26_2(Fractions.Fraction)
  6512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint16_t U3CU3Ec_U3C_cctorU3Eb__26_2_mF0AD4914D561759CDADFE62AA7F07D62F6981A4D (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6513. {
  6514. {
  6515. uint32_t L_0;
  6516. L_0 = Fraction_ToUInt32_m995E6DEE541BCAE8D1A5D3A3B7913644EC62496D((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6517. return (uint16_t)((int32_t)((uint16_t)L_0));
  6518. }
  6519. }
  6520. // System.Int16 o0.o0/<>c::<.cctor>b__26_3(Fractions.Fraction)
  6521. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t U3CU3Ec_U3C_cctorU3Eb__26_3_m836F9856FB904F24F5AB6FF152E804DF1592BA4B (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6522. {
  6523. {
  6524. int32_t L_0;
  6525. L_0 = Fraction_ToInt32_m43F36531D20AD29756213BC1F5CF1C7BAAFAF460((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6526. return ((int16_t)((int16_t)L_0));
  6527. }
  6528. }
  6529. // System.UInt32 o0.o0/<>c::<.cctor>b__26_4(Fractions.Fraction)
  6530. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t U3CU3Ec_U3C_cctorU3Eb__26_4_mC334866152213BD75F46FABA068CBCBFDE96AB31 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6531. {
  6532. {
  6533. uint32_t L_0;
  6534. L_0 = Fraction_ToUInt32_m995E6DEE541BCAE8D1A5D3A3B7913644EC62496D((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6535. return L_0;
  6536. }
  6537. }
  6538. // System.Int32 o0.o0/<>c::<.cctor>b__26_5(Fractions.Fraction)
  6539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3C_cctorU3Eb__26_5_m40746A2DAEE9EE1063A22ACAA2BA3F763B97CD42 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6540. {
  6541. {
  6542. int32_t L_0;
  6543. L_0 = Fraction_ToInt32_m43F36531D20AD29756213BC1F5CF1C7BAAFAF460((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6544. return L_0;
  6545. }
  6546. }
  6547. // System.UInt64 o0.o0/<>c::<.cctor>b__26_6(Fractions.Fraction)
  6548. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint64_t U3CU3Ec_U3C_cctorU3Eb__26_6_m0E914209E184E0FEE6E1B2071183357FFB9A2189 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6549. {
  6550. {
  6551. uint64_t L_0;
  6552. L_0 = Fraction_ToUInt64_m01C43B1AAD0FB188A4C2180B736E7B6A00F5D43B((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6553. return L_0;
  6554. }
  6555. }
  6556. // System.Int64 o0.o0/<>c::<.cctor>b__26_7(Fractions.Fraction)
  6557. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t U3CU3Ec_U3C_cctorU3Eb__26_7_m5E8435102E6638D8D955F764026336FB16874741 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6558. {
  6559. {
  6560. int64_t L_0;
  6561. L_0 = Fraction_ToInt64_m86B83DF9DC82ECD113227E800C99375E290637E3((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6562. return L_0;
  6563. }
  6564. }
  6565. // System.String o0.o0/<>c::<.cctor>b__26_8(Fractions.Fraction)
  6566. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3C_cctorU3Eb__26_8_mB912A8D85385C4ECF7F294EB2C6E6A5525B85CB6 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6567. {
  6568. {
  6569. String_t* L_0;
  6570. L_0 = Fraction_ToString_mFB99015CB4CF962B2930C780FAD36030E7C30913((Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 *)(&___a0), /*hidden argument*/NULL);
  6571. return L_0;
  6572. }
  6573. }
  6574. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_9(System.Double)
  6575. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_9_mC85D7BA3E73D24F9600D930177B824C55FE38B0B (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, double ___a0, const RuntimeMethod* method)
  6576. {
  6577. static bool s_Il2CppMethodInitialized;
  6578. if (!s_Il2CppMethodInitialized)
  6579. {
  6580. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6581. s_Il2CppMethodInitialized = true;
  6582. }
  6583. {
  6584. double L_0 = ___a0;
  6585. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6586. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6587. L_1 = Fraction_FromDoubleRounded_mECC3C6EE14BC6946FF0C1FCC433F4F309B119C6F(L_0, /*hidden argument*/NULL);
  6588. return L_1;
  6589. }
  6590. }
  6591. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_10(System.Single)
  6592. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_10_m70FCA82645988383F395C201989D89CCF9CE0327 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, float ___a0, const RuntimeMethod* method)
  6593. {
  6594. static bool s_Il2CppMethodInitialized;
  6595. if (!s_Il2CppMethodInitialized)
  6596. {
  6597. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6598. s_Il2CppMethodInitialized = true;
  6599. }
  6600. {
  6601. float L_0 = ___a0;
  6602. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6603. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6604. L_1 = Fraction_FromDoubleRounded_mECC3C6EE14BC6946FF0C1FCC433F4F309B119C6F(((double)((double)L_0)), /*hidden argument*/NULL);
  6605. return L_1;
  6606. }
  6607. }
  6608. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_11(System.UInt16)
  6609. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_11_m188BD8C35BA8BB5E8E7A12EF137A206778198CA9 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, uint16_t ___a0, const RuntimeMethod* method)
  6610. {
  6611. static bool s_Il2CppMethodInitialized;
  6612. if (!s_Il2CppMethodInitialized)
  6613. {
  6614. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6615. s_Il2CppMethodInitialized = true;
  6616. }
  6617. {
  6618. uint16_t L_0 = ___a0;
  6619. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6620. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6621. L_1 = Fraction_op_Implicit_m1F105F3B1C5C785F1D1067CC4A437FE32E9C2D58(L_0, /*hidden argument*/NULL);
  6622. return L_1;
  6623. }
  6624. }
  6625. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_12(System.Int16)
  6626. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_12_mC0D58C90C4BE86464C29931C88362844EB1C1225 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, int16_t ___a0, const RuntimeMethod* method)
  6627. {
  6628. static bool s_Il2CppMethodInitialized;
  6629. if (!s_Il2CppMethodInitialized)
  6630. {
  6631. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6632. s_Il2CppMethodInitialized = true;
  6633. }
  6634. {
  6635. int16_t L_0 = ___a0;
  6636. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6637. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6638. L_1 = Fraction_op_Implicit_m2C310A94FA8DE8A9B6F415235B7AFB9F4DAC39A0(L_0, /*hidden argument*/NULL);
  6639. return L_1;
  6640. }
  6641. }
  6642. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_13(System.UInt32)
  6643. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_13_m6D2298B43741E578C6357ABCDBF2BB36646ACE1E (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, uint32_t ___a0, const RuntimeMethod* method)
  6644. {
  6645. static bool s_Il2CppMethodInitialized;
  6646. if (!s_Il2CppMethodInitialized)
  6647. {
  6648. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6649. s_Il2CppMethodInitialized = true;
  6650. }
  6651. {
  6652. uint32_t L_0 = ___a0;
  6653. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6654. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6655. L_1 = Fraction_op_Implicit_m1F105F3B1C5C785F1D1067CC4A437FE32E9C2D58(L_0, /*hidden argument*/NULL);
  6656. return L_1;
  6657. }
  6658. }
  6659. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_14(System.Int32)
  6660. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_14_m1AECF129319D860E59F7CF0D764E028DF835022D (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, int32_t ___a0, const RuntimeMethod* method)
  6661. {
  6662. static bool s_Il2CppMethodInitialized;
  6663. if (!s_Il2CppMethodInitialized)
  6664. {
  6665. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6666. s_Il2CppMethodInitialized = true;
  6667. }
  6668. {
  6669. int32_t L_0 = ___a0;
  6670. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6671. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6672. L_1 = Fraction_op_Implicit_m2C310A94FA8DE8A9B6F415235B7AFB9F4DAC39A0(L_0, /*hidden argument*/NULL);
  6673. return L_1;
  6674. }
  6675. }
  6676. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_15(System.UInt64)
  6677. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_15_mA5A88C949E526C88289F97601C0CB820CBE5D819 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, uint64_t ___a0, const RuntimeMethod* method)
  6678. {
  6679. static bool s_Il2CppMethodInitialized;
  6680. if (!s_Il2CppMethodInitialized)
  6681. {
  6682. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6683. s_Il2CppMethodInitialized = true;
  6684. }
  6685. {
  6686. uint64_t L_0 = ___a0;
  6687. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6688. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6689. L_1 = Fraction_op_Implicit_m5E5B14C4EE7D97354CBCC674FA827BC8F064DCA5(L_0, /*hidden argument*/NULL);
  6690. return L_1;
  6691. }
  6692. }
  6693. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_16(System.Int64)
  6694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_16_m7B1E7F675979853D6D4E7CC7D1BC5E708993A490 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, int64_t ___a0, const RuntimeMethod* method)
  6695. {
  6696. static bool s_Il2CppMethodInitialized;
  6697. if (!s_Il2CppMethodInitialized)
  6698. {
  6699. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6700. s_Il2CppMethodInitialized = true;
  6701. }
  6702. {
  6703. int64_t L_0 = ___a0;
  6704. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6705. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6706. L_1 = Fraction_op_Implicit_m6937ED8888DA32BCF159332F37190EC6E373BCE6(L_0, /*hidden argument*/NULL);
  6707. return L_1;
  6708. }
  6709. }
  6710. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_17(System.String)
  6711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_17_m4C20A7D97E9C9E945688C529B75A9D2126FBC42C (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, String_t* ___a0, const RuntimeMethod* method)
  6712. {
  6713. static bool s_Il2CppMethodInitialized;
  6714. if (!s_Il2CppMethodInitialized)
  6715. {
  6716. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6717. s_Il2CppMethodInitialized = true;
  6718. }
  6719. {
  6720. String_t* L_0 = ___a0;
  6721. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6722. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6723. L_1 = Fraction_FromString_m3747CD0374DB88D2A3BB38443A54DC031EACD709(L_0, /*hidden argument*/NULL);
  6724. return L_1;
  6725. }
  6726. }
  6727. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_18(Fractions.Fraction,Fractions.Fraction)
  6728. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_18_m129565C3403BC9336A0CA15B47D73DFE652A3523 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method)
  6729. {
  6730. static bool s_Il2CppMethodInitialized;
  6731. if (!s_Il2CppMethodInitialized)
  6732. {
  6733. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6734. s_Il2CppMethodInitialized = true;
  6735. }
  6736. {
  6737. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6738. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1 = ___b1;
  6739. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6740. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6741. L_2 = Fraction_op_Addition_mDEFF3A47C70E46003BD5DA57B5551C508BF4DE95(L_0, L_1, /*hidden argument*/NULL);
  6742. return L_2;
  6743. }
  6744. }
  6745. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_19(Fractions.Fraction,Fractions.Fraction)
  6746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_19_mD3A3BBF86FEF2BCC51BFAD21334D0DE1139465F3 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method)
  6747. {
  6748. static bool s_Il2CppMethodInitialized;
  6749. if (!s_Il2CppMethodInitialized)
  6750. {
  6751. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6752. s_Il2CppMethodInitialized = true;
  6753. }
  6754. {
  6755. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6756. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1 = ___b1;
  6757. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6758. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6759. L_2 = Fraction_op_Addition_mDEFF3A47C70E46003BD5DA57B5551C508BF4DE95(L_0, L_1, /*hidden argument*/NULL);
  6760. return L_2;
  6761. }
  6762. }
  6763. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_20(Fractions.Fraction,Fractions.Fraction)
  6764. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_20_m876C50DCC5121C8019AD9B7F1B1F4984E5E83AA1 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method)
  6765. {
  6766. static bool s_Il2CppMethodInitialized;
  6767. if (!s_Il2CppMethodInitialized)
  6768. {
  6769. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6770. s_Il2CppMethodInitialized = true;
  6771. }
  6772. {
  6773. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6774. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1 = ___b1;
  6775. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6776. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6777. L_2 = Fraction_op_Subtraction_m484CAB8A8EA19BE90D429CBF2F1F2EC278CB4076(L_0, L_1, /*hidden argument*/NULL);
  6778. return L_2;
  6779. }
  6780. }
  6781. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_21(Fractions.Fraction,Fractions.Fraction)
  6782. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_21_mF5BE62465AF7F8CDC139EAEBCDCD09C782B6DCEB (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method)
  6783. {
  6784. static bool s_Il2CppMethodInitialized;
  6785. if (!s_Il2CppMethodInitialized)
  6786. {
  6787. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6788. s_Il2CppMethodInitialized = true;
  6789. }
  6790. {
  6791. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6792. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1 = ___b1;
  6793. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6794. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6795. L_2 = Fraction_op_Multiply_mDE606ED84C0076FC3339588D7241033B873ABA4A(L_0, L_1, /*hidden argument*/NULL);
  6796. return L_2;
  6797. }
  6798. }
  6799. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_22(Fractions.Fraction,Fractions.Fraction)
  6800. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_22_m0F8347F25608196F08AE1EAC4F723BD6C66CCF59 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___b1, const RuntimeMethod* method)
  6801. {
  6802. static bool s_Il2CppMethodInitialized;
  6803. if (!s_Il2CppMethodInitialized)
  6804. {
  6805. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6806. s_Il2CppMethodInitialized = true;
  6807. }
  6808. {
  6809. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6810. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1 = ___b1;
  6811. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6812. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6813. L_2 = Fraction_op_Division_m02A0B73BF77F61E931B992B2196B744F00D42764(L_0, L_1, /*hidden argument*/NULL);
  6814. return L_2;
  6815. }
  6816. }
  6817. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_23(Fractions.Fraction)
  6818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_23_m7BD9E3B26F0CDD6EBFFF05F0D31EBB8D32B8376C (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6819. {
  6820. static bool s_Il2CppMethodInitialized;
  6821. if (!s_Il2CppMethodInitialized)
  6822. {
  6823. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6824. s_Il2CppMethodInitialized = true;
  6825. }
  6826. {
  6827. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6828. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0;
  6829. L_0 = Fraction_op_Implicit_m2C310A94FA8DE8A9B6F415235B7AFB9F4DAC39A0(0, /*hidden argument*/NULL);
  6830. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1 = ___a0;
  6831. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6832. L_2 = Fraction_op_Subtraction_m484CAB8A8EA19BE90D429CBF2F1F2EC278CB4076(L_0, L_1, /*hidden argument*/NULL);
  6833. return L_2;
  6834. }
  6835. }
  6836. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_24(Fractions.Fraction)
  6837. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_24_mECD8BD19706C82AB89140E2ED7DC9535DE799C37 (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, const RuntimeMethod* method)
  6838. {
  6839. static bool s_Il2CppMethodInitialized;
  6840. if (!s_Il2CppMethodInitialized)
  6841. {
  6842. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6843. s_Il2CppMethodInitialized = true;
  6844. }
  6845. {
  6846. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6847. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6848. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_1;
  6849. L_1 = Fraction_Abs_m27CD74E35F0FFDBC59C2D360539ED0D2ABEEDE2A(L_0, /*hidden argument*/NULL);
  6850. return L_1;
  6851. }
  6852. }
  6853. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_25(Fractions.Fraction,System.Double)
  6854. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_25_m6F1FF45C94769A1DFAC8C9D2922710A8EE5EAA6C (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 ___a0, double ___b1, const RuntimeMethod* method)
  6855. {
  6856. static bool s_Il2CppMethodInitialized;
  6857. if (!s_Il2CppMethodInitialized)
  6858. {
  6859. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6860. s_Il2CppMethodInitialized = true;
  6861. }
  6862. {
  6863. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0 = ___a0;
  6864. double L_1 = ___b1;
  6865. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_2;
  6866. memset((&L_2), 0, sizeof(L_2));
  6867. Fraction__ctor_m999E37E0012CC2C2F33E0D55C1B84CD09154DEBA((&L_2), L_1, /*hidden argument*/NULL);
  6868. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6869. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_3;
  6870. L_3 = Fraction_op_Multiply_mDE606ED84C0076FC3339588D7241033B873ABA4A(L_0, L_2, /*hidden argument*/NULL);
  6871. return L_3;
  6872. }
  6873. }
  6874. // Fractions.Fraction o0.o0/<>c::<.cctor>b__26_26(System.Collections.Generic.IEnumerable`1<System.ValueTuple`2<Fractions.Fraction,System.Double>>)
  6875. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 U3CU3Ec_U3C_cctorU3Eb__26_26_mEBF9F9FB2E2E640A5FE9C464775C5FE8B0CAA7FA (U3CU3Ec_tCC067E1A336A933928030E3E600EC174171ED166 * __this, RuntimeObject* ___ValueWithRates0, const RuntimeMethod* method)
  6876. {
  6877. static bool s_Il2CppMethodInitialized;
  6878. if (!s_Il2CppMethodInitialized)
  6879. {
  6880. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6881. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
  6882. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerable_1_tE1C6BFD1F435825CF7AC0DBBBF2F2B5022F6EC56_il2cpp_TypeInfo_var);
  6883. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_1_tEE250A1E202731302BC4469FB56F51E1703CB62F_il2cpp_TypeInfo_var);
  6884. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var);
  6885. s_Il2CppMethodInitialized = true;
  6886. }
  6887. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 V_0;
  6888. memset((&V_0), 0, sizeof(V_0));
  6889. RuntimeObject* V_1 = NULL;
  6890. ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7 V_2;
  6891. memset((&V_2), 0, sizeof(V_2));
  6892. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 V_3;
  6893. memset((&V_3), 0, sizeof(V_3));
  6894. Exception_t * __last_unhandled_exception = 0;
  6895. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  6896. {
  6897. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6898. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_0;
  6899. L_0 = Fraction_op_Implicit_m2C310A94FA8DE8A9B6F415235B7AFB9F4DAC39A0(0, /*hidden argument*/NULL);
  6900. V_0 = L_0;
  6901. RuntimeObject* L_1 = ___ValueWithRates0;
  6902. NullCheck(L_1);
  6903. RuntimeObject* L_2;
  6904. L_2 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.ValueTuple`2<Fractions.Fraction,System.Double>>::GetEnumerator() */, IEnumerable_1_tE1C6BFD1F435825CF7AC0DBBBF2F2B5022F6EC56_il2cpp_TypeInfo_var, L_1);
  6905. V_1 = L_2;
  6906. }
  6907. IL_0010:
  6908. try
  6909. {// begin try (depth: 1)
  6910. {
  6911. goto IL_0036;
  6912. }
  6913. IL_0012:
  6914. {
  6915. RuntimeObject* L_3 = V_1;
  6916. NullCheck(L_3);
  6917. ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7 L_4;
  6918. L_4 = InterfaceFuncInvoker0< ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7 >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.ValueTuple`2<Fractions.Fraction,System.Double>>::get_Current() */, IEnumerator_1_tEE250A1E202731302BC4469FB56F51E1703CB62F_il2cpp_TypeInfo_var, L_3);
  6919. V_2 = L_4;
  6920. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_5 = V_0;
  6921. ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7 L_6 = V_2;
  6922. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_7 = L_6.get_Item1_0();
  6923. ValueTuple_2_t67BD06AF141CF118258D08AD55C0740CDCF671E7 L_8 = V_2;
  6924. double L_9 = L_8.get_Item2_1();
  6925. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_10;
  6926. memset((&L_10), 0, sizeof(L_10));
  6927. Fraction__ctor_m999E37E0012CC2C2F33E0D55C1B84CD09154DEBA((&L_10), L_9, /*hidden argument*/NULL);
  6928. IL2CPP_RUNTIME_CLASS_INIT(Fraction_t949DB96245DCB21D980284D32045C76D207D04E7_il2cpp_TypeInfo_var);
  6929. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_11;
  6930. L_11 = Fraction_op_Multiply_mDE606ED84C0076FC3339588D7241033B873ABA4A(L_7, L_10, /*hidden argument*/NULL);
  6931. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_12;
  6932. L_12 = Fraction_op_Addition_mDEFF3A47C70E46003BD5DA57B5551C508BF4DE95(L_5, L_11, /*hidden argument*/NULL);
  6933. V_0 = L_12;
  6934. }
  6935. IL_0036:
  6936. {
  6937. RuntimeObject* L_13 = V_1;
  6938. NullCheck(L_13);
  6939. bool L_14;
  6940. L_14 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105_il2cpp_TypeInfo_var, L_13);
  6941. if (L_14)
  6942. {
  6943. goto IL_0012;
  6944. }
  6945. }
  6946. IL_003e:
  6947. {
  6948. IL2CPP_LEAVE(0x4B, FINALLY_0040);
  6949. }
  6950. }// end try (depth: 1)
  6951. catch(Il2CppExceptionWrapper& e)
  6952. {
  6953. __last_unhandled_exception = (Exception_t *)e.ex;
  6954. goto FINALLY_0040;
  6955. }
  6956. FINALLY_0040:
  6957. {// begin finally (depth: 1)
  6958. {
  6959. RuntimeObject* L_15 = V_1;
  6960. if (!L_15)
  6961. {
  6962. goto IL_004a;
  6963. }
  6964. }
  6965. IL_0043:
  6966. {
  6967. RuntimeObject* L_16 = V_1;
  6968. NullCheck(L_16);
  6969. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_16);
  6970. }
  6971. IL_004a:
  6972. {
  6973. IL2CPP_END_FINALLY(64)
  6974. }
  6975. }// end finally (depth: 1)
  6976. IL2CPP_CLEANUP(64)
  6977. {
  6978. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  6979. IL2CPP_JUMP_TBL(0x4B, IL_004b)
  6980. }
  6981. IL_004b:
  6982. {
  6983. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_17 = V_0;
  6984. V_3 = L_17;
  6985. goto IL_004f;
  6986. }
  6987. IL_004f:
  6988. {
  6989. Fraction_t949DB96245DCB21D980284D32045C76D207D04E7 L_18 = V_3;
  6990. return L_18;
  6991. }
  6992. }
  6993. #ifdef __clang__
  6994. #pragma clang diagnostic pop
  6995. #endif
  6996. #ifdef __clang__
  6997. #pragma clang diagnostic push
  6998. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6999. #pragma clang diagnostic ignored "-Wunused-variable"
  7000. #endif
  7001. // System.Void o0.Serialize/CustomByFunction/<>c::.cctor()
  7002. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m844B25686A396CF379EFD3AA60D08385D0A41D86 (const RuntimeMethod* method)
  7003. {
  7004. static bool s_Il2CppMethodInitialized;
  7005. if (!s_Il2CppMethodInitialized)
  7006. {
  7007. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var);
  7008. s_Il2CppMethodInitialized = true;
  7009. }
  7010. {
  7011. U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * L_0 = (U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 *)il2cpp_codegen_object_new(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var);
  7012. U3CU3Ec__ctor_m7183B71E9E579D393ECF92A6182A5EAA751CC46F(L_0, /*hidden argument*/NULL);
  7013. ((U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0);
  7014. return;
  7015. }
  7016. }
  7017. // System.Void o0.Serialize/CustomByFunction/<>c::.ctor()
  7018. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m7183B71E9E579D393ECF92A6182A5EAA751CC46F (U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * __this, const RuntimeMethod* method)
  7019. {
  7020. {
  7021. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  7022. return;
  7023. }
  7024. }
  7025. // System.Void o0.Serialize/CustomByFunction/<>c::<.ctor>b__3_0()
  7026. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_ctorU3Eb__3_0_m2F74C3D01FD5618DEAC3412F332533AB2D149865 (U3CU3Ec_t43ABF29DFF50E1573F78F5381EA63BCB82D5CE84 * __this, const RuntimeMethod* method)
  7027. {
  7028. {
  7029. return;
  7030. }
  7031. }
  7032. #ifdef __clang__
  7033. #pragma clang diagnostic pop
  7034. #endif
  7035. #ifdef __clang__
  7036. #pragma clang diagnostic push
  7037. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7038. #pragma clang diagnostic ignored "-Wunused-variable"
  7039. #endif
  7040. // System.Void o0.Serialize/CustomByFunction/<>c__DisplayClass12_0::.ctor()
  7041. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass12_0__ctor_m26CC7F2C7D0193A93B06A315060D13D40E6BF613 (U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * __this, const RuntimeMethod* method)
  7042. {
  7043. {
  7044. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  7045. return;
  7046. }
  7047. }
  7048. // System.Object o0.Serialize/CustomByFunction/<>c__DisplayClass12_0::<Add>b__0(System.Object,System.Object)
  7049. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CU3Ec__DisplayClass12_0_U3CAddU3Eb__0_m978198994E9C9F838787AC0AB847776DDFDCDA4C (U3CU3Ec__DisplayClass12_0_t02188676AC67B0B070376EC5277CB9BB9461EF72 * __this, RuntimeObject * ____0, RuntimeObject * ___value1, const RuntimeMethod* method)
  7050. {
  7051. static bool s_Il2CppMethodInitialized;
  7052. if (!s_Il2CppMethodInitialized)
  7053. {
  7054. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var);
  7055. s_Il2CppMethodInitialized = true;
  7056. }
  7057. {
  7058. Func_2_tFF5BB8F40A35B1BEA00D4EBBC6CBE7184A584436 * L_0 = __this->get_DerializeTo_0();
  7059. RuntimeObject * L_1 = ___value1;
  7060. NullCheck(L_0);
  7061. RuntimeObject * L_2;
  7062. L_2 = Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6(L_0, L_1, /*hidden argument*/Func_2_Invoke_m7710BB3329F850DC1AE6AEC1144ED2D1ED1B44F6_RuntimeMethod_var);
  7063. return L_2;
  7064. }
  7065. }
  7066. #ifdef __clang__
  7067. #pragma clang diagnostic pop
  7068. #endif
  7069. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * Buffer_get_AutoProperty_m254266B0F1DF4C3B27044BB10C5FC98E24947458_inline (Buffer_t671B7BB682671B269736BA0A9277F4A9A4263FC9 * __this, const RuntimeMethod* method)
  7070. {
  7071. {
  7072. Dictionary_2_t4FD59D199570FB032056C56FB1A4A45BB587D03D * L_0 = __this->get_U3CAutoPropertyU3Ek__BackingField_0();
  7073. return L_0;
  7074. }
  7075. }
  7076. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * CustomByMember_get_ItemTypes_mA87EC3B0A7AA5FC4D7124D8EA215E3ECA8F153F5_inline (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method)
  7077. {
  7078. {
  7079. Dictionary_2_tDDE97F4B1F5CCF200FCAA220F329933EA034D506 * L_0 = __this->get_U3CItemTypesU3Ek__BackingField_0();
  7080. return L_0;
  7081. }
  7082. }
  7083. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * CustomByMember_get_SerializeMemberInfos_mD9F278495B3832FE55BCC561A1791226EF6B5A03_inline (CustomByMember_tBFDBF7FF5FC349A8976DE7DC6F592C4CF7067C8E * __this, const RuntimeMethod* method)
  7084. {
  7085. {
  7086. Dictionary_2_t20E638CE6D197E46D1DDA6327B2AE108F61533A7 * L_0 = __this->get_U3CSerializeMemberInfosU3Ek__BackingField_1();
  7087. return L_0;
  7088. }
  7089. }
  7090. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m4C91D0E84532DF10C654917487D82CB0AB27693B_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method)
  7091. {
  7092. {
  7093. RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3();
  7094. return (RuntimeObject *)L_0;
  7095. }
  7096. }
  7097. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
  7098. {
  7099. {
  7100. int32_t L_0 = (int32_t)__this->get__size_2();
  7101. return (int32_t)L_0;
  7102. }
  7103. }
  7104. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method)
  7105. {
  7106. {
  7107. int32_t L_0 = ___index0;
  7108. int32_t L_1 = (int32_t)__this->get__size_2();
  7109. if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
  7110. {
  7111. goto IL_000e;
  7112. }
  7113. }
  7114. {
  7115. ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
  7116. }
  7117. IL_000e:
  7118. {
  7119. ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1();
  7120. int32_t L_3 = ___index0;
  7121. RuntimeObject * L_4;
  7122. L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3);
  7123. return (RuntimeObject *)L_4;
  7124. }
  7125. }