Newtonsoft.Json_CodeGen.c 651 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011
  1. #include "pch-c.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include "codegen/il2cpp-codegen-metadata.h"
  8. // 0x00000001 System.Object System.ComponentModel.AddingNewEventArgs::get_NewObject()
  9. extern void AddingNewEventArgs_get_NewObject_m8CDAF2FF5DA636B056CCB155AE6E6BF964017ED8 (void);
  10. // 0x00000002 System.Void System.ComponentModel.AddingNewEventArgs::.ctor()
  11. extern void AddingNewEventArgs__ctor_m88364B901640F3C6167BDBED6B4E7C8955A07066 (void);
  12. // 0x00000003 System.Void System.ComponentModel.AddingNewEventHandler::.ctor(System.Object,System.IntPtr)
  13. extern void AddingNewEventHandler__ctor_mFCBF17771C798B3A2AC46C40000F1F49FE19E33F (void);
  14. // 0x00000004 System.Void System.ComponentModel.AddingNewEventHandler::Invoke(System.Object,System.ComponentModel.AddingNewEventArgs)
  15. extern void AddingNewEventHandler_Invoke_mFF7E1696FC3C5B0C742E41EC735BA3DBB47E057D (void);
  16. // 0x00000005 System.Void System.ComponentModel.NotifyCollectionChangedEventHandler::.ctor(System.Object,System.IntPtr)
  17. extern void NotifyCollectionChangedEventHandler__ctor_mCCA7833B536F236C1DA9D0732E1E38B95B1DB404 (void);
  18. // 0x00000006 System.Void System.ComponentModel.NotifyCollectionChangedEventHandler::Invoke(System.Object,System.ComponentModel.NotifyCollectionChangedEventArgs)
  19. extern void NotifyCollectionChangedEventHandler_Invoke_mDE4E95A6ABB7C37680CF0605BF9AC94323EFDFA3 (void);
  20. // 0x00000007 System.Void System.ComponentModel.PropertyChangingEventArgs::.ctor(System.String)
  21. extern void PropertyChangingEventArgs__ctor_m8566781D0A15DEF5C3D9CE71AFABEECF77FA11D2 (void);
  22. // 0x00000008 System.Void System.ComponentModel.PropertyChangingEventArgs::set_PropertyName(System.String)
  23. extern void PropertyChangingEventArgs_set_PropertyName_m5B47E750B50AF495F1189E8A9581B56D05D1B9F3 (void);
  24. // 0x00000009 System.Void System.ComponentModel.PropertyChangingEventHandler::.ctor(System.Object,System.IntPtr)
  25. extern void PropertyChangingEventHandler__ctor_m61E1AE21DA242FA953C04BA8BBEAE8343E09F4CB (void);
  26. // 0x0000000A System.Void System.ComponentModel.PropertyChangingEventHandler::Invoke(System.Object,System.ComponentModel.PropertyChangingEventArgs)
  27. extern void PropertyChangingEventHandler_Invoke_m25C8C58D60F321B949327B4A3161A2DFCBBB95C0 (void);
  28. // 0x0000000B T[] Newtonsoft.Json.IArrayPool`1::Rent(System.Int32)
  29. // 0x0000000C System.Void Newtonsoft.Json.IArrayPool`1::Return(T[])
  30. // 0x0000000D System.Void Newtonsoft.Json.JsonConstructorAttribute::.ctor()
  31. extern void JsonConstructorAttribute__ctor_m190C7B9013A7CD5102CE05BCEA04B262EEC1D06E (void);
  32. // 0x0000000E System.Void Newtonsoft.Json.JsonDictionaryAttribute::.ctor()
  33. extern void JsonDictionaryAttribute__ctor_m9579A51EBA886F9E50CE29F037B0F7E3CBDCED31 (void);
  34. // 0x0000000F System.Void Newtonsoft.Json.JsonException::.ctor()
  35. extern void JsonException__ctor_m4B89CC156A90FEB6590293B8345A29C4A3AF2F61 (void);
  36. // 0x00000010 System.Void Newtonsoft.Json.JsonException::.ctor(System.String)
  37. extern void JsonException__ctor_mC1855E8561781A110D7242742AD17C18B1E2ACD5 (void);
  38. // 0x00000011 System.Void Newtonsoft.Json.JsonException::.ctor(System.String,System.Exception)
  39. extern void JsonException__ctor_m5BC13634D631AA9D03E3A6E50539784F6F69461D (void);
  40. // 0x00000012 System.Void Newtonsoft.Json.JsonException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  41. extern void JsonException__ctor_mEA891D09EA66922D82EA420BC5C3A5EA1CD34429 (void);
  42. // 0x00000013 System.Boolean Newtonsoft.Json.JsonExtensionDataAttribute::get_WriteData()
  43. extern void JsonExtensionDataAttribute_get_WriteData_m06EB62EA0887666777EEAB325DFDC0183AD29F8B (void);
  44. // 0x00000014 System.Void Newtonsoft.Json.JsonExtensionDataAttribute::set_WriteData(System.Boolean)
  45. extern void JsonExtensionDataAttribute_set_WriteData_m0C68690434C00E441B94677723E5F3D5794AD077 (void);
  46. // 0x00000015 System.Boolean Newtonsoft.Json.JsonExtensionDataAttribute::get_ReadData()
  47. extern void JsonExtensionDataAttribute_get_ReadData_mE8CF73A938D31EE6D74642BAFB18263FAAE478EC (void);
  48. // 0x00000016 System.Void Newtonsoft.Json.JsonExtensionDataAttribute::set_ReadData(System.Boolean)
  49. extern void JsonExtensionDataAttribute_set_ReadData_m12AB84F205B4B7B420544E13FEF72C72C284A22D (void);
  50. // 0x00000017 System.Void Newtonsoft.Json.JsonExtensionDataAttribute::.ctor()
  51. extern void JsonExtensionDataAttribute__ctor_m3929383CA28F0702AFEFAFFCC04B8540ABB65A18 (void);
  52. // 0x00000018 System.Void Newtonsoft.Json.JsonPosition::.ctor(Newtonsoft.Json.JsonContainerType)
  53. extern void JsonPosition__ctor_m4868A41B46D621B1AE7623D78E06D597F6927676 (void);
  54. // 0x00000019 System.Int32 Newtonsoft.Json.JsonPosition::CalculateLength()
  55. extern void JsonPosition_CalculateLength_m96F71F2F79B8364BFA0C784570D6CE772D156844 (void);
  56. // 0x0000001A System.Void Newtonsoft.Json.JsonPosition::WriteTo(System.Text.StringBuilder)
  57. extern void JsonPosition_WriteTo_m6A3A496BA745EE52275BE810800B17DAB2B79140 (void);
  58. // 0x0000001B System.Boolean Newtonsoft.Json.JsonPosition::TypeHasIndex(Newtonsoft.Json.JsonContainerType)
  59. extern void JsonPosition_TypeHasIndex_m6B45E13F519BBBBF6625EDBA3EB7374B4A33B439 (void);
  60. // 0x0000001C System.String Newtonsoft.Json.JsonPosition::BuildPath(System.Collections.Generic.List`1<Newtonsoft.Json.JsonPosition>,System.Nullable`1<Newtonsoft.Json.JsonPosition>)
  61. extern void JsonPosition_BuildPath_mD1C39DF63A6A7B523814601A0AE397050B997099 (void);
  62. // 0x0000001D System.String Newtonsoft.Json.JsonPosition::FormatMessage(Newtonsoft.Json.IJsonLineInfo,System.String,System.String)
  63. extern void JsonPosition_FormatMessage_m67B75B828B5C6B8607C660494A4E03746A7E49C7 (void);
  64. // 0x0000001E System.Void Newtonsoft.Json.JsonPosition::.cctor()
  65. extern void JsonPosition__cctor_m33A921E69823A75BF8DF1998564A2A000D4C97D9 (void);
  66. // 0x0000001F System.Void Newtonsoft.Json.JsonRequiredAttribute::.ctor()
  67. extern void JsonRequiredAttribute__ctor_mC953A8CBE5252F7A51705129DF3A33E3155DCAE8 (void);
  68. // 0x00000020 System.Boolean Newtonsoft.Json.IJsonLineInfo::HasLineInfo()
  69. // 0x00000021 System.Int32 Newtonsoft.Json.IJsonLineInfo::get_LineNumber()
  70. // 0x00000022 System.Int32 Newtonsoft.Json.IJsonLineInfo::get_LinePosition()
  71. // 0x00000023 System.Void Newtonsoft.Json.JsonArrayAttribute::.ctor()
  72. extern void JsonArrayAttribute__ctor_m3050D9FECB94B4CFC98B96544A2F809AC1812114 (void);
  73. // 0x00000024 System.Type Newtonsoft.Json.JsonContainerAttribute::get_ItemConverterType()
  74. extern void JsonContainerAttribute_get_ItemConverterType_m77ADA5BB713A3B7B4F5F08A679FC5020DEAF8A6D (void);
  75. // 0x00000025 System.Object[] Newtonsoft.Json.JsonContainerAttribute::get_ItemConverterParameters()
  76. extern void JsonContainerAttribute_get_ItemConverterParameters_m470D1EB8AF068AEA616D811A96D61F8CE2FFE4F6 (void);
  77. // 0x00000026 System.Void Newtonsoft.Json.JsonContainerAttribute::.ctor()
  78. extern void JsonContainerAttribute__ctor_mAA82866214D75C398CF712544390ED3CB61EB282 (void);
  79. // 0x00000027 System.Type Newtonsoft.Json.JsonConverterAttribute::get_ConverterType()
  80. extern void JsonConverterAttribute_get_ConverterType_m4493352ECD33A4991AEA2B90BE9B1A8A397A90EC (void);
  81. // 0x00000028 System.Object[] Newtonsoft.Json.JsonConverterAttribute::get_ConverterParameters()
  82. extern void JsonConverterAttribute_get_ConverterParameters_mC2C4BD4D4E90D3646D571C7B0F2D6EFFB93C95DA (void);
  83. // 0x00000029 Newtonsoft.Json.MemberSerialization Newtonsoft.Json.JsonObjectAttribute::get_MemberSerialization()
  84. extern void JsonObjectAttribute_get_MemberSerialization_mC1251A664FD1EFFB430AE5935E20DEFC5B01543A (void);
  85. // 0x0000002A System.Void Newtonsoft.Json.JsonObjectAttribute::.ctor()
  86. extern void JsonObjectAttribute__ctor_m68C59F07EF00388CD6146750EE8A6721D9BB4B3B (void);
  87. // 0x0000002B Newtonsoft.Json.ReferenceLoopHandling Newtonsoft.Json.JsonSerializerSettings::get_ReferenceLoopHandling()
  88. extern void JsonSerializerSettings_get_ReferenceLoopHandling_mE0AC27809ED641B0E18CC9E536E9CD5B42CDAA4C (void);
  89. // 0x0000002C Newtonsoft.Json.MissingMemberHandling Newtonsoft.Json.JsonSerializerSettings::get_MissingMemberHandling()
  90. extern void JsonSerializerSettings_get_MissingMemberHandling_m6385A7576D28D9D9277816476A37769C9B27667E (void);
  91. // 0x0000002D Newtonsoft.Json.ObjectCreationHandling Newtonsoft.Json.JsonSerializerSettings::get_ObjectCreationHandling()
  92. extern void JsonSerializerSettings_get_ObjectCreationHandling_mEC581687287DADA94F0AA0545ABDAE18949D84A5 (void);
  93. // 0x0000002E Newtonsoft.Json.NullValueHandling Newtonsoft.Json.JsonSerializerSettings::get_NullValueHandling()
  94. extern void JsonSerializerSettings_get_NullValueHandling_m1D1AC290FF9F4F390128B2327ED3F81EE979B7C2 (void);
  95. // 0x0000002F Newtonsoft.Json.DefaultValueHandling Newtonsoft.Json.JsonSerializerSettings::get_DefaultValueHandling()
  96. extern void JsonSerializerSettings_get_DefaultValueHandling_mD2EAE09E6A671F812DDEA60DB23BCB9377534F9D (void);
  97. // 0x00000030 System.Collections.Generic.IList`1<Newtonsoft.Json.JsonConverter> Newtonsoft.Json.JsonSerializerSettings::get_Converters()
  98. extern void JsonSerializerSettings_get_Converters_mA00CF4ADB3030560B25C39E09CB4E60959686B54 (void);
  99. // 0x00000031 System.Void Newtonsoft.Json.JsonSerializerSettings::set_Converters(System.Collections.Generic.IList`1<Newtonsoft.Json.JsonConverter>)
  100. extern void JsonSerializerSettings_set_Converters_mF0693DE4BF4F0B7A8C46166C005CEEBEAF2F5020 (void);
  101. // 0x00000032 Newtonsoft.Json.PreserveReferencesHandling Newtonsoft.Json.JsonSerializerSettings::get_PreserveReferencesHandling()
  102. extern void JsonSerializerSettings_get_PreserveReferencesHandling_m40AD87AF8549E3D4DF02321CC09D969CE331D6D2 (void);
  103. // 0x00000033 Newtonsoft.Json.TypeNameHandling Newtonsoft.Json.JsonSerializerSettings::get_TypeNameHandling()
  104. extern void JsonSerializerSettings_get_TypeNameHandling_m4CB08F2D2E4CF379CFEBB3A5E686525C73DF33F3 (void);
  105. // 0x00000034 Newtonsoft.Json.MetadataPropertyHandling Newtonsoft.Json.JsonSerializerSettings::get_MetadataPropertyHandling()
  106. extern void JsonSerializerSettings_get_MetadataPropertyHandling_m1979A9CBD9D1AA8B8A7C018A901DB13E2F730755 (void);
  107. // 0x00000035 System.Runtime.Serialization.Formatters.FormatterAssemblyStyle Newtonsoft.Json.JsonSerializerSettings::get_TypeNameAssemblyFormat()
  108. extern void JsonSerializerSettings_get_TypeNameAssemblyFormat_mE170FB6EE981C3B047B5372E8226F9DB2B42186C (void);
  109. // 0x00000036 Newtonsoft.Json.ConstructorHandling Newtonsoft.Json.JsonSerializerSettings::get_ConstructorHandling()
  110. extern void JsonSerializerSettings_get_ConstructorHandling_mF191C558F9D3DD3E6F16D1CA697A19D317983E62 (void);
  111. // 0x00000037 Newtonsoft.Json.Serialization.IContractResolver Newtonsoft.Json.JsonSerializerSettings::get_ContractResolver()
  112. extern void JsonSerializerSettings_get_ContractResolver_mBD4B6EB0FF6E4D2AD555D608DB4F1CC61FB008B0 (void);
  113. // 0x00000038 System.Collections.IEqualityComparer Newtonsoft.Json.JsonSerializerSettings::get_EqualityComparer()
  114. extern void JsonSerializerSettings_get_EqualityComparer_m99252972A34785A2C5DD3E6A511B1EF1A888D308 (void);
  115. // 0x00000039 System.Func`1<Newtonsoft.Json.Serialization.IReferenceResolver> Newtonsoft.Json.JsonSerializerSettings::get_ReferenceResolverProvider()
  116. extern void JsonSerializerSettings_get_ReferenceResolverProvider_m85D17CA36AF71116F9D42BB35A61CAD4D6DEEC8A (void);
  117. // 0x0000003A Newtonsoft.Json.Serialization.ITraceWriter Newtonsoft.Json.JsonSerializerSettings::get_TraceWriter()
  118. extern void JsonSerializerSettings_get_TraceWriter_m77632A4CC8BEAE58EC2A46E9A68B6DD3381E374B (void);
  119. // 0x0000003B System.Runtime.Serialization.SerializationBinder Newtonsoft.Json.JsonSerializerSettings::get_Binder()
  120. extern void JsonSerializerSettings_get_Binder_m1621198D4CA03E3E4ED0D8E8C55D1A1265D25E72 (void);
  121. // 0x0000003C System.EventHandler`1<Newtonsoft.Json.Serialization.ErrorEventArgs> Newtonsoft.Json.JsonSerializerSettings::get_Error()
  122. extern void JsonSerializerSettings_get_Error_mB587C84D7EA7E875E78FF03979FF29325877B5F0 (void);
  123. // 0x0000003D System.Runtime.Serialization.StreamingContext Newtonsoft.Json.JsonSerializerSettings::get_Context()
  124. extern void JsonSerializerSettings_get_Context_m9ACE6D1551F69B989DCB35A6BAAE8F036C02DAA7 (void);
  125. // 0x0000003E System.Void Newtonsoft.Json.JsonSerializerSettings::.cctor()
  126. extern void JsonSerializerSettings__cctor_mF3F8EA348A4FB2F3B66BB67E1108680375E6053C (void);
  127. // 0x0000003F System.Void Newtonsoft.Json.JsonSerializerSettings::.ctor()
  128. extern void JsonSerializerSettings__ctor_m860202A96247500DEA27E99173C924933C9D14C5 (void);
  129. // 0x00000040 System.Void Newtonsoft.Json.JsonSerializerSettings/<>c__DisplayClass90_0::.ctor()
  130. extern void U3CU3Ec__DisplayClass90_0__ctor_mEB76F3955B036C72D1DEC286FDAE082BE9823736 (void);
  131. // 0x00000041 System.Void Newtonsoft.Json.JsonTextReader::.ctor(System.IO.TextReader)
  132. extern void JsonTextReader__ctor_m4EA779A439E3279744CC5975F082A72FA7C4F9F6 (void);
  133. // 0x00000042 System.Void Newtonsoft.Json.JsonTextReader::EnsureBufferNotEmpty()
  134. extern void JsonTextReader_EnsureBufferNotEmpty_m2010CFC68DD51BA2EF265A7D97E6D733DAAB6FC6 (void);
  135. // 0x00000043 System.Void Newtonsoft.Json.JsonTextReader::OnNewLine(System.Int32)
  136. extern void JsonTextReader_OnNewLine_mB2C9F4B2B36BCE296F9AB9664B34C37E1438EE27 (void);
  137. // 0x00000044 System.Void Newtonsoft.Json.JsonTextReader::ParseString(System.Char,Newtonsoft.Json.ReadType)
  138. extern void JsonTextReader_ParseString_m89A6EFC87E4098931A4D9E4729CF05D84E915710 (void);
  139. // 0x00000045 System.Void Newtonsoft.Json.JsonTextReader::BlockCopyChars(System.Char[],System.Int32,System.Char[],System.Int32,System.Int32)
  140. extern void JsonTextReader_BlockCopyChars_mA4C2C133F6182DF026ABA40A8962E7044C49F029 (void);
  141. // 0x00000046 System.Void Newtonsoft.Json.JsonTextReader::ShiftBufferIfNeeded()
  142. extern void JsonTextReader_ShiftBufferIfNeeded_m77440A8B645FD2624AF5CD9FDE89D5A2E5222C3E (void);
  143. // 0x00000047 System.Int32 Newtonsoft.Json.JsonTextReader::ReadData(System.Boolean)
  144. extern void JsonTextReader_ReadData_mC0700121E006F38F0105E57C24A32793EC141064 (void);
  145. // 0x00000048 System.Int32 Newtonsoft.Json.JsonTextReader::ReadData(System.Boolean,System.Int32)
  146. extern void JsonTextReader_ReadData_m1215C69C79CE9CCFE01EEF5CA79F49E5FD26BD2F (void);
  147. // 0x00000049 System.Boolean Newtonsoft.Json.JsonTextReader::EnsureChars(System.Int32,System.Boolean)
  148. extern void JsonTextReader_EnsureChars_mB9E3A34D5317A994C6B2D83B6E9F4AC5D02FD8B5 (void);
  149. // 0x0000004A System.Boolean Newtonsoft.Json.JsonTextReader::ReadChars(System.Int32,System.Boolean)
  150. extern void JsonTextReader_ReadChars_mB330832AC3779C561DCD8962A51A9D3D3DCBB5AD (void);
  151. // 0x0000004B System.Boolean Newtonsoft.Json.JsonTextReader::Read()
  152. extern void JsonTextReader_Read_m599FFBCC9B6EACBEA2625BE77D02254B5B9D711F (void);
  153. // 0x0000004C System.Nullable`1<System.Int32> Newtonsoft.Json.JsonTextReader::ReadAsInt32()
  154. extern void JsonTextReader_ReadAsInt32_m9A464F41F8BFF7F5B596D2D5D96299A2AAC00D6F (void);
  155. // 0x0000004D System.Nullable`1<System.DateTime> Newtonsoft.Json.JsonTextReader::ReadAsDateTime()
  156. extern void JsonTextReader_ReadAsDateTime_m77FAC98EFA411E73488F4AC72442E9D457BBB413 (void);
  157. // 0x0000004E System.String Newtonsoft.Json.JsonTextReader::ReadAsString()
  158. extern void JsonTextReader_ReadAsString_m0883EBE386AF7F180006694C47E8771DBED61FE6 (void);
  159. // 0x0000004F System.Byte[] Newtonsoft.Json.JsonTextReader::ReadAsBytes()
  160. extern void JsonTextReader_ReadAsBytes_m4DDA04D764CF6DCA921F25B73C1A40C10C08C17C (void);
  161. // 0x00000050 System.Object Newtonsoft.Json.JsonTextReader::ReadStringValue(Newtonsoft.Json.ReadType)
  162. extern void JsonTextReader_ReadStringValue_mD53E0B00528762928C4C09571D6FD13F095D51A6 (void);
  163. // 0x00000051 Newtonsoft.Json.JsonReaderException Newtonsoft.Json.JsonTextReader::CreateUnexpectedCharacterException(System.Char)
  164. extern void JsonTextReader_CreateUnexpectedCharacterException_m771032A05177B519414F662097A33C7073DE7442 (void);
  165. // 0x00000052 System.Nullable`1<System.Boolean> Newtonsoft.Json.JsonTextReader::ReadAsBoolean()
  166. extern void JsonTextReader_ReadAsBoolean_m7F1BC542958BA212D808297FE7F18C6F1CEBF53A (void);
  167. // 0x00000053 System.Void Newtonsoft.Json.JsonTextReader::ProcessValueComma()
  168. extern void JsonTextReader_ProcessValueComma_m433230420DD9DFC98CAA3783952C8B375F1CE937 (void);
  169. // 0x00000054 System.Object Newtonsoft.Json.JsonTextReader::ReadNumberValue(Newtonsoft.Json.ReadType)
  170. extern void JsonTextReader_ReadNumberValue_m360026532BB5DE16AED9F2B2F131A63FB1E12FCC (void);
  171. // 0x00000055 System.Nullable`1<System.DateTimeOffset> Newtonsoft.Json.JsonTextReader::ReadAsDateTimeOffset()
  172. extern void JsonTextReader_ReadAsDateTimeOffset_m0BE5CC8DB46CE8AA0C195ABB21D012F7D0BC4557 (void);
  173. // 0x00000056 System.Nullable`1<System.Decimal> Newtonsoft.Json.JsonTextReader::ReadAsDecimal()
  174. extern void JsonTextReader_ReadAsDecimal_m8FAFCFB2F2320A3A24314410AA0F70D0439006FB (void);
  175. // 0x00000057 System.Nullable`1<System.Double> Newtonsoft.Json.JsonTextReader::ReadAsDouble()
  176. extern void JsonTextReader_ReadAsDouble_mF13545134B6C0AA6E734FF38DF6AD52BB146A60A (void);
  177. // 0x00000058 System.Void Newtonsoft.Json.JsonTextReader::HandleNull()
  178. extern void JsonTextReader_HandleNull_m3BCD5FC00622DE82A4C9B837DE671C33655432BC (void);
  179. // 0x00000059 System.Void Newtonsoft.Json.JsonTextReader::ReadFinished()
  180. extern void JsonTextReader_ReadFinished_m50B733FF9915FD46E8A6564334BF7710280933F6 (void);
  181. // 0x0000005A System.Boolean Newtonsoft.Json.JsonTextReader::ReadNullChar()
  182. extern void JsonTextReader_ReadNullChar_m0A40E1F44133DA978CB0D8307852C6301EFDE525 (void);
  183. // 0x0000005B System.Void Newtonsoft.Json.JsonTextReader::EnsureBuffer()
  184. extern void JsonTextReader_EnsureBuffer_m92C6BCBFD83E0E18BEB0E4DCA4447BACBC1A67C8 (void);
  185. // 0x0000005C System.Void Newtonsoft.Json.JsonTextReader::ReadStringIntoBuffer(System.Char)
  186. extern void JsonTextReader_ReadStringIntoBuffer_mA62F7BA4CD568DCBBD493AF3E5D83670CA84B099 (void);
  187. // 0x0000005D System.Void Newtonsoft.Json.JsonTextReader::WriteCharToBuffer(System.Char,System.Int32,System.Int32)
  188. extern void JsonTextReader_WriteCharToBuffer_m7E2ECACAA13B268E4575774FC9954BB7823AD125 (void);
  189. // 0x0000005E System.Char Newtonsoft.Json.JsonTextReader::ParseUnicode()
  190. extern void JsonTextReader_ParseUnicode_mC97CBFD819724BEEB1EDB16C34E61FBD440AF33F (void);
  191. // 0x0000005F System.Void Newtonsoft.Json.JsonTextReader::ReadNumberIntoBuffer()
  192. extern void JsonTextReader_ReadNumberIntoBuffer_m0F17D644594B318404ACE4A2B0D77F6AD14743DF (void);
  193. // 0x00000060 System.Void Newtonsoft.Json.JsonTextReader::ClearRecentString()
  194. extern void JsonTextReader_ClearRecentString_mD8D348DED3D630F08A031683301B45629B6CAB40 (void);
  195. // 0x00000061 System.Boolean Newtonsoft.Json.JsonTextReader::ParsePostValue()
  196. extern void JsonTextReader_ParsePostValue_m32C7D5C870A4D6D09A11A6DB6FC15C08D7190134 (void);
  197. // 0x00000062 System.Boolean Newtonsoft.Json.JsonTextReader::ParseObject()
  198. extern void JsonTextReader_ParseObject_mF375CFCBBF8BA0AF2DAA492C3F6A229A30111E30 (void);
  199. // 0x00000063 System.Boolean Newtonsoft.Json.JsonTextReader::ParseProperty()
  200. extern void JsonTextReader_ParseProperty_m6412AE24E701B94414B68D10C4F7FA04D5BA21E4 (void);
  201. // 0x00000064 System.Boolean Newtonsoft.Json.JsonTextReader::ValidIdentifierChar(System.Char)
  202. extern void JsonTextReader_ValidIdentifierChar_mC45BC6949B19E9C6D4D8A6632F43C7BF2BA88806 (void);
  203. // 0x00000065 System.Void Newtonsoft.Json.JsonTextReader::ParseUnquotedProperty()
  204. extern void JsonTextReader_ParseUnquotedProperty_m36F0B486DB5317E95179BE3AD10DC8884494B208 (void);
  205. // 0x00000066 System.Boolean Newtonsoft.Json.JsonTextReader::ParseValue()
  206. extern void JsonTextReader_ParseValue_mE51E6DB53C71E5545B2DF77C3E0ECF504A3731B5 (void);
  207. // 0x00000067 System.Void Newtonsoft.Json.JsonTextReader::ProcessLineFeed()
  208. extern void JsonTextReader_ProcessLineFeed_m7179533A538E37EC9E5CBEB161368CEFC0B591E4 (void);
  209. // 0x00000068 System.Void Newtonsoft.Json.JsonTextReader::ProcessCarriageReturn(System.Boolean)
  210. extern void JsonTextReader_ProcessCarriageReturn_m45BE0E72684A56330C805F91F9C38C667E02FF5F (void);
  211. // 0x00000069 System.Boolean Newtonsoft.Json.JsonTextReader::EatWhitespace(System.Boolean)
  212. extern void JsonTextReader_EatWhitespace_m5286AF86A88809BB516341B787AEAFE21FF37B46 (void);
  213. // 0x0000006A System.Void Newtonsoft.Json.JsonTextReader::ParseConstructor()
  214. extern void JsonTextReader_ParseConstructor_mAAF77FD42B708414CC398777163ECBD17D1D598F (void);
  215. // 0x0000006B System.Void Newtonsoft.Json.JsonTextReader::ParseNumber(Newtonsoft.Json.ReadType)
  216. extern void JsonTextReader_ParseNumber_m32EF5E0773E2376EF80A9A69630AD4B280D7F21B (void);
  217. // 0x0000006C System.Void Newtonsoft.Json.JsonTextReader::ParseComment(System.Boolean)
  218. extern void JsonTextReader_ParseComment_mA71954C1BA3E82D22D0884F40A9A0D54ECDAF9D8 (void);
  219. // 0x0000006D System.Void Newtonsoft.Json.JsonTextReader::EndComment(System.Boolean,System.Int32,System.Int32)
  220. extern void JsonTextReader_EndComment_m0E736C0EEE0E09AF55826F3DBC15327D797A256E (void);
  221. // 0x0000006E System.Boolean Newtonsoft.Json.JsonTextReader::MatchValue(System.String)
  222. extern void JsonTextReader_MatchValue_m3F1039064A846D85D1C5F9CE3DE357DB491E166B (void);
  223. // 0x0000006F System.Boolean Newtonsoft.Json.JsonTextReader::MatchValueWithTrailingSeparator(System.String)
  224. extern void JsonTextReader_MatchValueWithTrailingSeparator_m7614543471055DB2B8B55EA7EF33788AE264480B (void);
  225. // 0x00000070 System.Boolean Newtonsoft.Json.JsonTextReader::IsSeparator(System.Char)
  226. extern void JsonTextReader_IsSeparator_mE5BB03D7223758BDF62292C085F475FD3194827A (void);
  227. // 0x00000071 System.Void Newtonsoft.Json.JsonTextReader::ParseTrue()
  228. extern void JsonTextReader_ParseTrue_mA277074BE6CFCC133BC5ABF98546D23AFC18591A (void);
  229. // 0x00000072 System.Void Newtonsoft.Json.JsonTextReader::ParseNull()
  230. extern void JsonTextReader_ParseNull_m04BE9B77A27716EFD7DA1A97D0B19965AE730DF4 (void);
  231. // 0x00000073 System.Void Newtonsoft.Json.JsonTextReader::ParseUndefined()
  232. extern void JsonTextReader_ParseUndefined_m899AF32F3F3E68269F375795991D660BA72A60AE (void);
  233. // 0x00000074 System.Void Newtonsoft.Json.JsonTextReader::ParseFalse()
  234. extern void JsonTextReader_ParseFalse_mDC74059B07E573550C0C378F7AA142DD014A7ECA (void);
  235. // 0x00000075 System.Object Newtonsoft.Json.JsonTextReader::ParseNumberNegativeInfinity(Newtonsoft.Json.ReadType)
  236. extern void JsonTextReader_ParseNumberNegativeInfinity_mB6CA091B0D139C81626AC2B856B4C6914139B628 (void);
  237. // 0x00000076 System.Object Newtonsoft.Json.JsonTextReader::ParseNumberPositiveInfinity(Newtonsoft.Json.ReadType)
  238. extern void JsonTextReader_ParseNumberPositiveInfinity_m8E63874F3FDB7182342069FCFE99FC3380BA3056 (void);
  239. // 0x00000077 System.Object Newtonsoft.Json.JsonTextReader::ParseNumberNaN(Newtonsoft.Json.ReadType)
  240. extern void JsonTextReader_ParseNumberNaN_mF424378A04C9FF2FF956DAA38BDB0BE86308FDA7 (void);
  241. // 0x00000078 System.Void Newtonsoft.Json.JsonTextReader::Close()
  242. extern void JsonTextReader_Close_mB26DB329C3CC60E3BCD7338BC508EAAF4F99D501 (void);
  243. // 0x00000079 System.Boolean Newtonsoft.Json.JsonTextReader::HasLineInfo()
  244. extern void JsonTextReader_HasLineInfo_m114A3878890916AFE81628A55CCEBC5AF0D73CA3 (void);
  245. // 0x0000007A System.Int32 Newtonsoft.Json.JsonTextReader::get_LineNumber()
  246. extern void JsonTextReader_get_LineNumber_m733E76FB72F6C58AFF8988391A97067ABBBF11E1 (void);
  247. // 0x0000007B System.Int32 Newtonsoft.Json.JsonTextReader::get_LinePosition()
  248. extern void JsonTextReader_get_LinePosition_m7D0E89005BE778577AE9284006F7CFE2903DEF8C (void);
  249. // 0x0000007C System.Type Newtonsoft.Json.JsonPropertyAttribute::get_ItemConverterType()
  250. extern void JsonPropertyAttribute_get_ItemConverterType_mAF933B5D8DDA82F16FA6C0C913011F51599225C4 (void);
  251. // 0x0000007D System.Object[] Newtonsoft.Json.JsonPropertyAttribute::get_ItemConverterParameters()
  252. extern void JsonPropertyAttribute_get_ItemConverterParameters_m99B1731F2F52670ECF7AC47E89EDFB76FA2DFE06 (void);
  253. // 0x0000007E System.String Newtonsoft.Json.JsonPropertyAttribute::get_PropertyName()
  254. extern void JsonPropertyAttribute_get_PropertyName_mDD706D7EC82D671615F110B8167E2319169FE175 (void);
  255. // 0x0000007F System.Void Newtonsoft.Json.JsonPropertyAttribute::.ctor()
  256. extern void JsonPropertyAttribute__ctor_m370AFADE62BF3CFAB5E8E26112EC34EE95C3A242 (void);
  257. // 0x00000080 System.Void Newtonsoft.Json.JsonIgnoreAttribute::.ctor()
  258. extern void JsonIgnoreAttribute__ctor_m087D7BF8CFF19ADDFF923EE01EFCDD1140E102F7 (void);
  259. // 0x00000081 Newtonsoft.Json.Utilities.Base64Encoder Newtonsoft.Json.JsonTextWriter::get_Base64Encoder()
  260. extern void JsonTextWriter_get_Base64Encoder_mDFA6C2C7D165D830AA5D436E3C08098DC8D9AF23 (void);
  261. // 0x00000082 System.Char Newtonsoft.Json.JsonTextWriter::get_QuoteChar()
  262. extern void JsonTextWriter_get_QuoteChar_m80EB6DFE5F61608DDC1645593F126A30FABC0071 (void);
  263. // 0x00000083 System.Void Newtonsoft.Json.JsonTextWriter::.ctor(System.IO.TextWriter)
  264. extern void JsonTextWriter__ctor_mA83D58BF6519B55B57C479F293E3643EA6935D3A (void);
  265. // 0x00000084 System.Void Newtonsoft.Json.JsonTextWriter::Close()
  266. extern void JsonTextWriter_Close_m786614F24E99BD26BA8A6DB88593547ED5FE5781 (void);
  267. // 0x00000085 System.Void Newtonsoft.Json.JsonTextWriter::WriteStartObject()
  268. extern void JsonTextWriter_WriteStartObject_mC2528B9248DF7491103F098A9A5A71192C35AC79 (void);
  269. // 0x00000086 System.Void Newtonsoft.Json.JsonTextWriter::WriteStartArray()
  270. extern void JsonTextWriter_WriteStartArray_mF0DDF658F69DD3F081729B6CE36AB173D8EA6152 (void);
  271. // 0x00000087 System.Void Newtonsoft.Json.JsonTextWriter::WriteStartConstructor(System.String)
  272. extern void JsonTextWriter_WriteStartConstructor_m4DA15F20CD8A962085BCF4C4DABD7C3478A5A3B6 (void);
  273. // 0x00000088 System.Void Newtonsoft.Json.JsonTextWriter::WriteEnd(Newtonsoft.Json.JsonToken)
  274. extern void JsonTextWriter_WriteEnd_m492C5EA658E05A68346AA13C4C85563D813E80ED (void);
  275. // 0x00000089 System.Void Newtonsoft.Json.JsonTextWriter::WritePropertyName(System.String)
  276. extern void JsonTextWriter_WritePropertyName_mABFC4B1E03233FD192636DCB32B5A062DEBCDA20 (void);
  277. // 0x0000008A System.Void Newtonsoft.Json.JsonTextWriter::WritePropertyName(System.String,System.Boolean)
  278. extern void JsonTextWriter_WritePropertyName_m6186077E4ADB40A6B81C50C77581BCFD95BBB991 (void);
  279. // 0x0000008B System.Void Newtonsoft.Json.JsonTextWriter::OnStringEscapeHandlingChanged()
  280. extern void JsonTextWriter_OnStringEscapeHandlingChanged_m92AE9564120DF80AAD7B9B20C8B32B9F4BFD95A2 (void);
  281. // 0x0000008C System.Void Newtonsoft.Json.JsonTextWriter::UpdateCharEscapeFlags()
  282. extern void JsonTextWriter_UpdateCharEscapeFlags_mE255E5131169B0ED48002B3AE564A3C37FE15243 (void);
  283. // 0x0000008D System.Void Newtonsoft.Json.JsonTextWriter::WriteIndent()
  284. extern void JsonTextWriter_WriteIndent_mBD11CBAFE1C28AE89580CDE3D4F48EA6D1E0B530 (void);
  285. // 0x0000008E System.Void Newtonsoft.Json.JsonTextWriter::WriteValueDelimiter()
  286. extern void JsonTextWriter_WriteValueDelimiter_mF7949EEB7A978E2EB2E5C3799BB069428B7F0D01 (void);
  287. // 0x0000008F System.Void Newtonsoft.Json.JsonTextWriter::WriteIndentSpace()
  288. extern void JsonTextWriter_WriteIndentSpace_m9F1FB356F35F766D088B61DE700F0CB5D4FFDCD2 (void);
  289. // 0x00000090 System.Void Newtonsoft.Json.JsonTextWriter::WriteValueInternal(System.String,Newtonsoft.Json.JsonToken)
  290. extern void JsonTextWriter_WriteValueInternal_mFD5B4BF541B85770C7A072BC610FEA5DAEFCE2B9 (void);
  291. // 0x00000091 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Object)
  292. extern void JsonTextWriter_WriteValue_mB294E00A9164EC218D4AE79C3A17C8802A814FD4 (void);
  293. // 0x00000092 System.Void Newtonsoft.Json.JsonTextWriter::WriteNull()
  294. extern void JsonTextWriter_WriteNull_m4C142F71CBBAFD920F2163CF6B75CA5B2BCCAAB6 (void);
  295. // 0x00000093 System.Void Newtonsoft.Json.JsonTextWriter::WriteUndefined()
  296. extern void JsonTextWriter_WriteUndefined_mD9FF7667F45E7F251B28F09420D81768BE5E1A0F (void);
  297. // 0x00000094 System.Void Newtonsoft.Json.JsonTextWriter::WriteRaw(System.String)
  298. extern void JsonTextWriter_WriteRaw_m4F2463662FB06513FF2443E858A4DCCB6474DB88 (void);
  299. // 0x00000095 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.String)
  300. extern void JsonTextWriter_WriteValue_m7B5E8E789B1988179BB5316ABA12E613EBD11F51 (void);
  301. // 0x00000096 System.Void Newtonsoft.Json.JsonTextWriter::WriteEscapedString(System.String,System.Boolean)
  302. extern void JsonTextWriter_WriteEscapedString_m6F65B51628AE4DE30FB87B6DD90010EAD90F6E41 (void);
  303. // 0x00000097 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Int32)
  304. extern void JsonTextWriter_WriteValue_mE62C8256B429832C4B881507B19F42CF1CD9C108 (void);
  305. // 0x00000098 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.UInt32)
  306. extern void JsonTextWriter_WriteValue_m3981F870E8AAE30E7AF1ECED246145F064A241C8 (void);
  307. // 0x00000099 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Int64)
  308. extern void JsonTextWriter_WriteValue_m1BCF99B171CFD1DF066955A7905CE0163174529C (void);
  309. // 0x0000009A System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.UInt64)
  310. extern void JsonTextWriter_WriteValue_mE2BF2C318D26E13AC0E2CCFB2C7EDEE972DE0450 (void);
  311. // 0x0000009B System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Single)
  312. extern void JsonTextWriter_WriteValue_m8FD356BDDB595FA685BA219ECA78F3A5935BEB85 (void);
  313. // 0x0000009C System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Nullable`1<System.Single>)
  314. extern void JsonTextWriter_WriteValue_mD9013751FD25BC0F0F771BFFDA7765C2701B4ED8 (void);
  315. // 0x0000009D System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Double)
  316. extern void JsonTextWriter_WriteValue_m77176BA4ABE844C5C729729C825CD7098204279A (void);
  317. // 0x0000009E System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Nullable`1<System.Double>)
  318. extern void JsonTextWriter_WriteValue_mF9BC04F3F3C701AC0BBA369FC1671DBDD257B9CF (void);
  319. // 0x0000009F System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Boolean)
  320. extern void JsonTextWriter_WriteValue_mAE38412EA7638942449BA9DEA0901FBA480A67B1 (void);
  321. // 0x000000A0 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Int16)
  322. extern void JsonTextWriter_WriteValue_m1E85C44C806CA469F47AA9DEAE7C40B71E3FAC9C (void);
  323. // 0x000000A1 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.UInt16)
  324. extern void JsonTextWriter_WriteValue_m665A93E51A94D73D6C977F1FE7D87AE86A7EDDF4 (void);
  325. // 0x000000A2 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Char)
  326. extern void JsonTextWriter_WriteValue_m3E64AFA11A5C90F459A7975D590E25BF7CC25E3C (void);
  327. // 0x000000A3 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Byte)
  328. extern void JsonTextWriter_WriteValue_m8EB07EE36B82AFD42EF9C9C6D44CF747497572BC (void);
  329. // 0x000000A4 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.SByte)
  330. extern void JsonTextWriter_WriteValue_m589E9409A9A6FA78B00CF0B4F5905269AE59C6D6 (void);
  331. // 0x000000A5 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Decimal)
  332. extern void JsonTextWriter_WriteValue_mECD5873984F2C1A6BED51DA62FA05C0C9029E2B6 (void);
  333. // 0x000000A6 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.DateTime)
  334. extern void JsonTextWriter_WriteValue_m3032AF39DBB5E7305229E381599F5472372A2B1D (void);
  335. // 0x000000A7 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Byte[])
  336. extern void JsonTextWriter_WriteValue_m658AF7AB1CBB224B0C8DB53F4AC40DC7530BEEA2 (void);
  337. // 0x000000A8 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.DateTimeOffset)
  338. extern void JsonTextWriter_WriteValue_m5C7E5225F586609EF7B2A4731E40782F922DDD24 (void);
  339. // 0x000000A9 System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Guid)
  340. extern void JsonTextWriter_WriteValue_m14B06DA1BE50AF4AE3A0CCE7A2AEF49C76F56F88 (void);
  341. // 0x000000AA System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.TimeSpan)
  342. extern void JsonTextWriter_WriteValue_m881F2B43CDD9B5ED27CAADE54945B6F51667AC9A (void);
  343. // 0x000000AB System.Void Newtonsoft.Json.JsonTextWriter::WriteValue(System.Uri)
  344. extern void JsonTextWriter_WriteValue_m6E2706D9D1A808E7E484152642ED0596B5A85DCA (void);
  345. // 0x000000AC System.Void Newtonsoft.Json.JsonTextWriter::WriteComment(System.String)
  346. extern void JsonTextWriter_WriteComment_m0D21CD3970ED60CC6672A89209BD602EDA1D50AD (void);
  347. // 0x000000AD System.Void Newtonsoft.Json.JsonTextWriter::EnsureWriteBuffer()
  348. extern void JsonTextWriter_EnsureWriteBuffer_m4EA17A57A99A1E9CDF311FC215B9ECC366B28E71 (void);
  349. // 0x000000AE System.Void Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(System.Int64)
  350. extern void JsonTextWriter_WriteIntegerValue_m36FA103CCF2F839CD6A5158E31F02D606BADDEE4 (void);
  351. // 0x000000AF System.Void Newtonsoft.Json.JsonTextWriter::WriteIntegerValue(System.UInt64)
  352. extern void JsonTextWriter_WriteIntegerValue_mED385338B08D18ECC16577A5C36EB6817057FC2C (void);
  353. // 0x000000B0 System.Void Newtonsoft.Json.JsonWriterException::set_Path(System.String)
  354. extern void JsonWriterException_set_Path_m7730DE4BEE3E03B961C923F211E0400903ED55F5 (void);
  355. // 0x000000B1 System.Void Newtonsoft.Json.JsonWriterException::.ctor()
  356. extern void JsonWriterException__ctor_m582E63E220A880E3339B907F1F23E5DF6E6D3794 (void);
  357. // 0x000000B2 System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  358. extern void JsonWriterException__ctor_m9AD7F0F4F15DE6C01D98F6A5EFFA7025DAFFF955 (void);
  359. // 0x000000B3 System.Void Newtonsoft.Json.JsonWriterException::.ctor(System.String,System.Exception,System.String)
  360. extern void JsonWriterException__ctor_m2BE8EB30C7FB5E93CC76E8F071B976DC9690D1E5 (void);
  361. // 0x000000B4 Newtonsoft.Json.JsonWriterException Newtonsoft.Json.JsonWriterException::Create(Newtonsoft.Json.JsonWriter,System.String,System.Exception)
  362. extern void JsonWriterException_Create_m75343047EA3BC755156B034B868E1939F4A3ABED (void);
  363. // 0x000000B5 Newtonsoft.Json.JsonWriterException Newtonsoft.Json.JsonWriterException::Create(System.String,System.String,System.Exception)
  364. extern void JsonWriterException_Create_m84A38EFC0C4066A1DE5C6736BB7910633DF11679 (void);
  365. // 0x000000B6 System.Void Newtonsoft.Json.JsonReaderException::set_LineNumber(System.Int32)
  366. extern void JsonReaderException_set_LineNumber_m58D7F78EDF8E50EF1FABED396E0937E90FEB80E0 (void);
  367. // 0x000000B7 System.Void Newtonsoft.Json.JsonReaderException::set_LinePosition(System.Int32)
  368. extern void JsonReaderException_set_LinePosition_mCA678F4B877AA9280AABE8360DC6FDF7A9767E35 (void);
  369. // 0x000000B8 System.Void Newtonsoft.Json.JsonReaderException::set_Path(System.String)
  370. extern void JsonReaderException_set_Path_m6B817BB33F36B9E8A46FB5E1BF5A9870C07D52F7 (void);
  371. // 0x000000B9 System.Void Newtonsoft.Json.JsonReaderException::.ctor()
  372. extern void JsonReaderException__ctor_mF7E8BD1AEBA6CB286A4143011880174D92DE07A9 (void);
  373. // 0x000000BA System.Void Newtonsoft.Json.JsonReaderException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  374. extern void JsonReaderException__ctor_m162E25E41E4D4D1A6473A86EBDCC9A46C342100E (void);
  375. // 0x000000BB System.Void Newtonsoft.Json.JsonReaderException::.ctor(System.String,System.Exception,System.String,System.Int32,System.Int32)
  376. extern void JsonReaderException__ctor_mD43CD8B54C34BC62AFEAA8E35DC1C3D7C718E0FF (void);
  377. // 0x000000BC Newtonsoft.Json.JsonReaderException Newtonsoft.Json.JsonReaderException::Create(Newtonsoft.Json.JsonReader,System.String)
  378. extern void JsonReaderException_Create_mA3B5AC4B595CA5539698FBC01F023F96AE187C10 (void);
  379. // 0x000000BD Newtonsoft.Json.JsonReaderException Newtonsoft.Json.JsonReaderException::Create(Newtonsoft.Json.JsonReader,System.String,System.Exception)
  380. extern void JsonReaderException_Create_m785CC1EA2CBB4B7DBB386ACDE459E35AF16A4578 (void);
  381. // 0x000000BE Newtonsoft.Json.JsonReaderException Newtonsoft.Json.JsonReaderException::Create(Newtonsoft.Json.IJsonLineInfo,System.String,System.String,System.Exception)
  382. extern void JsonReaderException_Create_mA5943063A731BCB5236B473BB1AC072EFF047E03 (void);
  383. // 0x000000BF System.Void Newtonsoft.Json.JsonConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  384. // 0x000000C0 System.Object Newtonsoft.Json.JsonConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  385. // 0x000000C1 System.Boolean Newtonsoft.Json.JsonConverter::CanConvert(System.Type)
  386. // 0x000000C2 System.Boolean Newtonsoft.Json.JsonConverter::get_CanRead()
  387. extern void JsonConverter_get_CanRead_mE27FF46F007AF1F5D8AEEFA0776951CA82162072 (void);
  388. // 0x000000C3 System.Boolean Newtonsoft.Json.JsonConverter::get_CanWrite()
  389. extern void JsonConverter_get_CanWrite_mB4CAC742067B226F7C64D921FC94F53A31C9E571 (void);
  390. // 0x000000C4 System.Void Newtonsoft.Json.JsonConverter::.ctor()
  391. extern void JsonConverter__ctor_m1A367AC36D92A6AD8CD5709145E88E0AA1571CAD (void);
  392. // 0x000000C5 System.Void Newtonsoft.Json.JsonConverterCollection::.ctor()
  393. extern void JsonConverterCollection__ctor_mAB670A818B8439ADBF061CFA546139E16F323999 (void);
  394. // 0x000000C6 Newtonsoft.Json.JsonReader/State Newtonsoft.Json.JsonReader::get_CurrentState()
  395. extern void JsonReader_get_CurrentState_m8FB45730B1CE10F0AE9896B9C3E1E41B6C744DAA (void);
  396. // 0x000000C7 System.Boolean Newtonsoft.Json.JsonReader::get_CloseInput()
  397. extern void JsonReader_get_CloseInput_mFC9D087DE0F24153A60267D29D68BC0029EE18CA (void);
  398. // 0x000000C8 System.Void Newtonsoft.Json.JsonReader::set_CloseInput(System.Boolean)
  399. extern void JsonReader_set_CloseInput_m64F0E74600999FED53AAF37BC94032A112300D03 (void);
  400. // 0x000000C9 System.Boolean Newtonsoft.Json.JsonReader::get_SupportMultipleContent()
  401. extern void JsonReader_get_SupportMultipleContent_mA0C1CF6F9F76F9F0264C1BA6ED94E6851BC82E1C (void);
  402. // 0x000000CA System.Void Newtonsoft.Json.JsonReader::set_SupportMultipleContent(System.Boolean)
  403. extern void JsonReader_set_SupportMultipleContent_mED9449233F147DC638CFAA3E5A5E61458141DF76 (void);
  404. // 0x000000CB Newtonsoft.Json.DateTimeZoneHandling Newtonsoft.Json.JsonReader::get_DateTimeZoneHandling()
  405. extern void JsonReader_get_DateTimeZoneHandling_mE150930B04BCF2BB8D51CD78B6E996AF6B303E55 (void);
  406. // 0x000000CC System.Void Newtonsoft.Json.JsonReader::set_DateTimeZoneHandling(Newtonsoft.Json.DateTimeZoneHandling)
  407. extern void JsonReader_set_DateTimeZoneHandling_mB7395F060FAE13042375F808471D829F5BD3B78C (void);
  408. // 0x000000CD Newtonsoft.Json.DateParseHandling Newtonsoft.Json.JsonReader::get_DateParseHandling()
  409. extern void JsonReader_get_DateParseHandling_mF03602DC0001F690202783AFEC907821E8EC5A9B (void);
  410. // 0x000000CE System.Void Newtonsoft.Json.JsonReader::set_DateParseHandling(Newtonsoft.Json.DateParseHandling)
  411. extern void JsonReader_set_DateParseHandling_m7DFBEDC3F1D148580848E7DA5D1D6896DCD34DFC (void);
  412. // 0x000000CF Newtonsoft.Json.FloatParseHandling Newtonsoft.Json.JsonReader::get_FloatParseHandling()
  413. extern void JsonReader_get_FloatParseHandling_m7C53D98F88660340A0AF9842095A63664FC2AE90 (void);
  414. // 0x000000D0 System.Void Newtonsoft.Json.JsonReader::set_FloatParseHandling(Newtonsoft.Json.FloatParseHandling)
  415. extern void JsonReader_set_FloatParseHandling_m2E62EBC5DCA3F030C505E97A0DC12B66B15F6B68 (void);
  416. // 0x000000D1 System.String Newtonsoft.Json.JsonReader::get_DateFormatString()
  417. extern void JsonReader_get_DateFormatString_m83150543948622351B852EA3A62907F90B3D73E6 (void);
  418. // 0x000000D2 System.Void Newtonsoft.Json.JsonReader::set_DateFormatString(System.String)
  419. extern void JsonReader_set_DateFormatString_mA1C14FA75F97E6E4DF12C0258AA7F1D8C74B39E7 (void);
  420. // 0x000000D3 System.Nullable`1<System.Int32> Newtonsoft.Json.JsonReader::get_MaxDepth()
  421. extern void JsonReader_get_MaxDepth_mFE34316F52E4A76699B7B9E6439F3E8F564E7C88 (void);
  422. // 0x000000D4 System.Void Newtonsoft.Json.JsonReader::set_MaxDepth(System.Nullable`1<System.Int32>)
  423. extern void JsonReader_set_MaxDepth_m278051DCF6AF3982CD5F1F2FA6479E75D74D2EBA (void);
  424. // 0x000000D5 Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonReader::get_TokenType()
  425. extern void JsonReader_get_TokenType_mB0DF30D932B762B3ED6EC01EF3686AB73796BAC6 (void);
  426. // 0x000000D6 System.Object Newtonsoft.Json.JsonReader::get_Value()
  427. extern void JsonReader_get_Value_m94A77F5DE81D7C5A2D397CF41FE760760C096B93 (void);
  428. // 0x000000D7 System.Type Newtonsoft.Json.JsonReader::get_ValueType()
  429. extern void JsonReader_get_ValueType_m649EE8EC7DD3848AAEB0576D4C6A52DBE01CC314 (void);
  430. // 0x000000D8 System.Int32 Newtonsoft.Json.JsonReader::get_Depth()
  431. extern void JsonReader_get_Depth_mB284B9E1E66D948D2ABA5CB3F9FBB5336441EF51 (void);
  432. // 0x000000D9 System.String Newtonsoft.Json.JsonReader::get_Path()
  433. extern void JsonReader_get_Path_m7694F5F8581904EF1CC9B30CCBBD346FDBFD5305 (void);
  434. // 0x000000DA System.Globalization.CultureInfo Newtonsoft.Json.JsonReader::get_Culture()
  435. extern void JsonReader_get_Culture_m5DBE4EA91621F8C845D76B9AF5348AB783A556F9 (void);
  436. // 0x000000DB System.Void Newtonsoft.Json.JsonReader::set_Culture(System.Globalization.CultureInfo)
  437. extern void JsonReader_set_Culture_mAF4C2967EC24FB1ED928136610AFDA204EEE715C (void);
  438. // 0x000000DC Newtonsoft.Json.JsonPosition Newtonsoft.Json.JsonReader::GetPosition(System.Int32)
  439. extern void JsonReader_GetPosition_m2BB5E5132A226A2D159A56323A439C9A71662E51 (void);
  440. // 0x000000DD System.Void Newtonsoft.Json.JsonReader::.ctor()
  441. extern void JsonReader__ctor_mD15B973149B223A450420E1E3EC7C5648FF3070D (void);
  442. // 0x000000DE System.Void Newtonsoft.Json.JsonReader::Push(Newtonsoft.Json.JsonContainerType)
  443. extern void JsonReader_Push_mE631FDAA728547741765EAA86B6687EFA7AFA315 (void);
  444. // 0x000000DF Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonReader::Pop()
  445. extern void JsonReader_Pop_m5281B5CA4372F88DBC890923CA4114C2AB5C785B (void);
  446. // 0x000000E0 Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonReader::Peek()
  447. extern void JsonReader_Peek_m72E5AC6AA0CCA5D8249CB75A4E70542968067167 (void);
  448. // 0x000000E1 System.Boolean Newtonsoft.Json.JsonReader::Read()
  449. // 0x000000E2 System.Nullable`1<System.Int32> Newtonsoft.Json.JsonReader::ReadAsInt32()
  450. extern void JsonReader_ReadAsInt32_m4CFA54D7363F85EEDA2C5A45D01CF27972D5A0BA (void);
  451. // 0x000000E3 System.Nullable`1<System.Int32> Newtonsoft.Json.JsonReader::ReadInt32String(System.String)
  452. extern void JsonReader_ReadInt32String_m241E4FF95FC6222BA903B9D563F369E8BBC9A9E6 (void);
  453. // 0x000000E4 System.String Newtonsoft.Json.JsonReader::ReadAsString()
  454. extern void JsonReader_ReadAsString_m91D2388CFCD4F42F64FE058368079E2392C94506 (void);
  455. // 0x000000E5 System.Byte[] Newtonsoft.Json.JsonReader::ReadAsBytes()
  456. extern void JsonReader_ReadAsBytes_m8F20E49BCB3FB058516C412CEE2D57D0A4AAF30A (void);
  457. // 0x000000E6 System.Byte[] Newtonsoft.Json.JsonReader::ReadArrayIntoByteArray()
  458. extern void JsonReader_ReadArrayIntoByteArray_m453E3BA75FF4D078C59A30094A359C7799BC0DA9 (void);
  459. // 0x000000E7 System.Nullable`1<System.Double> Newtonsoft.Json.JsonReader::ReadAsDouble()
  460. extern void JsonReader_ReadAsDouble_m326759998E44B0658F15E29BFEB5E36A8F96509D (void);
  461. // 0x000000E8 System.Nullable`1<System.Double> Newtonsoft.Json.JsonReader::ReadDoubleString(System.String)
  462. extern void JsonReader_ReadDoubleString_m01EC3D33CE23EF2807C80A19B95B2AE80D3943CF (void);
  463. // 0x000000E9 System.Nullable`1<System.Boolean> Newtonsoft.Json.JsonReader::ReadAsBoolean()
  464. extern void JsonReader_ReadAsBoolean_mE3ED026E5B82B12271012625C0577398A2842091 (void);
  465. // 0x000000EA System.Nullable`1<System.Boolean> Newtonsoft.Json.JsonReader::ReadBooleanString(System.String)
  466. extern void JsonReader_ReadBooleanString_m998D6921BCA3EEC65EA1D7DD2AFC0148774C6203 (void);
  467. // 0x000000EB System.Nullable`1<System.Decimal> Newtonsoft.Json.JsonReader::ReadAsDecimal()
  468. extern void JsonReader_ReadAsDecimal_m09150AF2288181DEC69092C6007D4227009FE6EC (void);
  469. // 0x000000EC System.Nullable`1<System.Decimal> Newtonsoft.Json.JsonReader::ReadDecimalString(System.String)
  470. extern void JsonReader_ReadDecimalString_mCF97D3A26C5A87A23A4E188126E2DAD58D0E4977 (void);
  471. // 0x000000ED System.Nullable`1<System.DateTime> Newtonsoft.Json.JsonReader::ReadAsDateTime()
  472. extern void JsonReader_ReadAsDateTime_m2544BB943DBF9A881A6E01F6F91D064530FFFDC7 (void);
  473. // 0x000000EE System.Nullable`1<System.DateTime> Newtonsoft.Json.JsonReader::ReadDateTimeString(System.String)
  474. extern void JsonReader_ReadDateTimeString_m247F86C9E5CC7EC4938C0424B3705AA6C93D2B49 (void);
  475. // 0x000000EF System.Nullable`1<System.DateTimeOffset> Newtonsoft.Json.JsonReader::ReadAsDateTimeOffset()
  476. extern void JsonReader_ReadAsDateTimeOffset_m05F1C463823DF04AE1785C94BC4BBDEC0C3D090E (void);
  477. // 0x000000F0 System.Nullable`1<System.DateTimeOffset> Newtonsoft.Json.JsonReader::ReadDateTimeOffsetString(System.String)
  478. extern void JsonReader_ReadDateTimeOffsetString_m6D7DC0DF38660A1841B7428B7713CE169C80F9D1 (void);
  479. // 0x000000F1 System.Void Newtonsoft.Json.JsonReader::ReaderReadAndAssert()
  480. extern void JsonReader_ReaderReadAndAssert_mC990E3530531FFFDACE7EC419B8726E38F0F8847 (void);
  481. // 0x000000F2 Newtonsoft.Json.JsonReaderException Newtonsoft.Json.JsonReader::CreateUnexpectedEndException()
  482. extern void JsonReader_CreateUnexpectedEndException_m2B2FD292C4D0A93BE6F6C3CEEBAB6524E6D13D71 (void);
  483. // 0x000000F3 System.Void Newtonsoft.Json.JsonReader::ReadIntoWrappedTypeObject()
  484. extern void JsonReader_ReadIntoWrappedTypeObject_mD531D84D3842329588FAB3666617D214BDDC681B (void);
  485. // 0x000000F4 System.Void Newtonsoft.Json.JsonReader::Skip()
  486. extern void JsonReader_Skip_m4269EDBD8AA592F523D6CD9A11E92B389713F717 (void);
  487. // 0x000000F5 System.Void Newtonsoft.Json.JsonReader::SetToken(Newtonsoft.Json.JsonToken)
  488. extern void JsonReader_SetToken_m596B254D54E8510EFD2B55B90DBD91F508663DE7 (void);
  489. // 0x000000F6 System.Void Newtonsoft.Json.JsonReader::SetToken(Newtonsoft.Json.JsonToken,System.Object)
  490. extern void JsonReader_SetToken_mBA3EAD6F04130BB8DF56F97EB322FFA4B6AEE114 (void);
  491. // 0x000000F7 System.Void Newtonsoft.Json.JsonReader::SetToken(Newtonsoft.Json.JsonToken,System.Object,System.Boolean)
  492. extern void JsonReader_SetToken_m91056EA9CA00F200C74A57944B0866183FC3452B (void);
  493. // 0x000000F8 System.Void Newtonsoft.Json.JsonReader::SetPostValueState(System.Boolean)
  494. extern void JsonReader_SetPostValueState_mBBE40EE10F5C478C49AED7CD5BAB1674A4AE40FC (void);
  495. // 0x000000F9 System.Void Newtonsoft.Json.JsonReader::UpdateScopeWithFinishedValue()
  496. extern void JsonReader_UpdateScopeWithFinishedValue_m0026054429C354875B302E727E016CCF0CD2E21A (void);
  497. // 0x000000FA System.Void Newtonsoft.Json.JsonReader::ValidateEnd(Newtonsoft.Json.JsonToken)
  498. extern void JsonReader_ValidateEnd_mC29C9307AF96EDAA4B095A2EC90F7156D8F6BDA3 (void);
  499. // 0x000000FB System.Void Newtonsoft.Json.JsonReader::SetStateBasedOnCurrent()
  500. extern void JsonReader_SetStateBasedOnCurrent_m5038313256A52E9761A30951BCEA0E025B32D65B (void);
  501. // 0x000000FC System.Void Newtonsoft.Json.JsonReader::SetFinished()
  502. extern void JsonReader_SetFinished_m727ACF7589AD4C81D82FAF4FCA0D0899157D95A0 (void);
  503. // 0x000000FD Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonReader::GetTypeForCloseToken(Newtonsoft.Json.JsonToken)
  504. extern void JsonReader_GetTypeForCloseToken_mAD289260793FC33C6591C760106313A8FF49C81D (void);
  505. // 0x000000FE System.Void Newtonsoft.Json.JsonReader::System.IDisposable.Dispose()
  506. extern void JsonReader_System_IDisposable_Dispose_mEDB416B4AA7D52B17568BCEE029C0E74456622AE (void);
  507. // 0x000000FF System.Void Newtonsoft.Json.JsonReader::Dispose(System.Boolean)
  508. extern void JsonReader_Dispose_m08971695B49BDE8C2BF675C8FA6FC1F7D9C98927 (void);
  509. // 0x00000100 System.Void Newtonsoft.Json.JsonReader::Close()
  510. extern void JsonReader_Close_m4E8C8BA343F029A92185BE9700D040DC0D64DA63 (void);
  511. // 0x00000101 System.Void Newtonsoft.Json.JsonReader::ReadAndAssert()
  512. extern void JsonReader_ReadAndAssert_m76D2D5B12749D2C22654F73EED1CD0732FF6F325 (void);
  513. // 0x00000102 System.Boolean Newtonsoft.Json.JsonReader::ReadAndMoveToContent()
  514. extern void JsonReader_ReadAndMoveToContent_mF757D383C9D101224600F9C1583F0D0259A92D9A (void);
  515. // 0x00000103 System.Boolean Newtonsoft.Json.JsonReader::MoveToContent()
  516. extern void JsonReader_MoveToContent_m13B5E0F451D9375FE8426E8607123D4B1BB5FAFF (void);
  517. // 0x00000104 Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonReader::GetContentToken()
  518. extern void JsonReader_GetContentToken_m00E60F100E8E96037D7EEBC58ABB10ABFCD51425 (void);
  519. // 0x00000105 System.Func`1<Newtonsoft.Json.JsonSerializerSettings> Newtonsoft.Json.JsonConvert::get_DefaultSettings()
  520. extern void JsonConvert_get_DefaultSettings_m45F17C3434357C179C0A48E5AB5F9914AD8DDC82 (void);
  521. // 0x00000106 System.Void Newtonsoft.Json.JsonConvert::set_DefaultSettings(System.Func`1<Newtonsoft.Json.JsonSerializerSettings>)
  522. extern void JsonConvert_set_DefaultSettings_m37450FF21FB1B80C0AD4AA04A66CD387EA8F455F (void);
  523. // 0x00000107 System.Void Newtonsoft.Json.JsonConvert::.cctor()
  524. extern void JsonConvert__cctor_mF1FC074719ABB3F48F8F9AB0E78FC19B3B352D42 (void);
  525. // 0x00000108 Newtonsoft.Json.JsonSerializerSettings Newtonsoft.Json.JsonConvert::GetDefaultSettings()
  526. extern void JsonConvert_GetDefaultSettings_m2B67ED38FB0FBC26D71FEDB6EBF8D1BE78BBED4D (void);
  527. // 0x00000109 System.String Newtonsoft.Json.JsonConvert::ToString(System.Boolean)
  528. extern void JsonConvert_ToString_m7DCA3A15EA44561ED4ADADBB35765CA716CC336F (void);
  529. // 0x0000010A System.String Newtonsoft.Json.JsonConvert::ToString(System.Char)
  530. extern void JsonConvert_ToString_mBE9774F36AB274A978D11A232C8579CF5F86CFDC (void);
  531. // 0x0000010B System.String Newtonsoft.Json.JsonConvert::ToString(System.Single,Newtonsoft.Json.FloatFormatHandling,System.Char,System.Boolean)
  532. extern void JsonConvert_ToString_m36C5B34B7B524EEB5090F5633F11BC41AA73D8BD (void);
  533. // 0x0000010C System.String Newtonsoft.Json.JsonConvert::EnsureFloatFormat(System.Double,System.String,Newtonsoft.Json.FloatFormatHandling,System.Char,System.Boolean)
  534. extern void JsonConvert_EnsureFloatFormat_m96B4311693355E210F453D8680CA6229337236B3 (void);
  535. // 0x0000010D System.String Newtonsoft.Json.JsonConvert::ToString(System.Double,Newtonsoft.Json.FloatFormatHandling,System.Char,System.Boolean)
  536. extern void JsonConvert_ToString_m1D2BB94ABF6D69865A24C2C2D1A6F3038C6BA800 (void);
  537. // 0x0000010E System.String Newtonsoft.Json.JsonConvert::EnsureDecimalPlace(System.Double,System.String)
  538. extern void JsonConvert_EnsureDecimalPlace_m936FEBF64E81CF7F992E2E3D3AAFC3C917AED8F5 (void);
  539. // 0x0000010F System.String Newtonsoft.Json.JsonConvert::EnsureDecimalPlace(System.String)
  540. extern void JsonConvert_EnsureDecimalPlace_m221E2EA48EB5335E07BD64CC99E42A5F4E90C7EA (void);
  541. // 0x00000110 System.String Newtonsoft.Json.JsonConvert::ToString(System.Decimal)
  542. extern void JsonConvert_ToString_m3FC09486E5A8EE6ECB029D0555F8AF30F82F237D (void);
  543. // 0x00000111 System.String Newtonsoft.Json.JsonConvert::ToString(System.String)
  544. extern void JsonConvert_ToString_mD4A1E994E2E91E504564E6E3758DADCFC5D9404F (void);
  545. // 0x00000112 System.String Newtonsoft.Json.JsonConvert::ToString(System.String,System.Char)
  546. extern void JsonConvert_ToString_m172304687C39A3C677D02356412D882024DE3905 (void);
  547. // 0x00000113 System.String Newtonsoft.Json.JsonConvert::ToString(System.String,System.Char,Newtonsoft.Json.StringEscapeHandling)
  548. extern void JsonConvert_ToString_mB43B2CA1ACF2E179563334C501659EF8995D8A02 (void);
  549. // 0x00000114 System.String Newtonsoft.Json.JsonConvert::SerializeObject(System.Object)
  550. extern void JsonConvert_SerializeObject_mA1CE7826146AD4F03BAEC589ED87E3DB5C2182F0 (void);
  551. // 0x00000115 System.String Newtonsoft.Json.JsonConvert::SerializeObject(System.Object,Newtonsoft.Json.JsonConverter[])
  552. extern void JsonConvert_SerializeObject_mB6325BCF37763104414D86846714425CFEBC564E (void);
  553. // 0x00000116 System.String Newtonsoft.Json.JsonConvert::SerializeObject(System.Object,System.Type,Newtonsoft.Json.JsonSerializerSettings)
  554. extern void JsonConvert_SerializeObject_m6E40D5192A03BE76571C14398BABBBB1C0F317C4 (void);
  555. // 0x00000117 System.String Newtonsoft.Json.JsonConvert::SerializeObjectInternal(System.Object,System.Type,Newtonsoft.Json.JsonSerializer)
  556. extern void JsonConvert_SerializeObjectInternal_m889EAF72D828AC857B24141B816E3F888996CBCE (void);
  557. // 0x00000118 System.Object Newtonsoft.Json.JsonConvert::DeserializeObject(System.String,System.Type)
  558. extern void JsonConvert_DeserializeObject_m58127A8F506810479AC68C5172DD493619DDE112 (void);
  559. // 0x00000119 T Newtonsoft.Json.JsonConvert::DeserializeObject(System.String)
  560. // 0x0000011A T Newtonsoft.Json.JsonConvert::DeserializeObject(System.String,Newtonsoft.Json.JsonConverter[])
  561. // 0x0000011B T Newtonsoft.Json.JsonConvert::DeserializeObject(System.String,Newtonsoft.Json.JsonSerializerSettings)
  562. // 0x0000011C System.Object Newtonsoft.Json.JsonConvert::DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonConverter[])
  563. extern void JsonConvert_DeserializeObject_mA831B6913A754DED6786870F4B9AA10351A39D12 (void);
  564. // 0x0000011D System.Object Newtonsoft.Json.JsonConvert::DeserializeObject(System.String,System.Type,Newtonsoft.Json.JsonSerializerSettings)
  565. extern void JsonConvert_DeserializeObject_m5F3A17B1C9501B1BB69FFD846811A2DC1A34455B (void);
  566. // 0x0000011E System.Void Newtonsoft.Json.JsonSerializationException::.ctor()
  567. extern void JsonSerializationException__ctor_m9C747242009145B556038262A6D15A24F20D3403 (void);
  568. // 0x0000011F System.Void Newtonsoft.Json.JsonSerializationException::.ctor(System.String)
  569. extern void JsonSerializationException__ctor_mE0EA4480BC4246503121539E1D97555D480D016A (void);
  570. // 0x00000120 System.Void Newtonsoft.Json.JsonSerializationException::.ctor(System.String,System.Exception)
  571. extern void JsonSerializationException__ctor_m4B135F45D0D5B7340A79511A46B89E0C6028E8F5 (void);
  572. // 0x00000121 System.Void Newtonsoft.Json.JsonSerializationException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  573. extern void JsonSerializationException__ctor_m1D3E38D973ACAD6C35D819E27050446FFD4A912A (void);
  574. // 0x00000122 Newtonsoft.Json.JsonSerializationException Newtonsoft.Json.JsonSerializationException::Create(Newtonsoft.Json.JsonReader,System.String)
  575. extern void JsonSerializationException_Create_mD9A18483FE8F8CBEDFADA46CA0DC688AF9A4CAB1 (void);
  576. // 0x00000123 Newtonsoft.Json.JsonSerializationException Newtonsoft.Json.JsonSerializationException::Create(Newtonsoft.Json.JsonReader,System.String,System.Exception)
  577. extern void JsonSerializationException_Create_mCF8746FC844DE08A48F21AA2FBB051BBECE58228 (void);
  578. // 0x00000124 Newtonsoft.Json.JsonSerializationException Newtonsoft.Json.JsonSerializationException::Create(Newtonsoft.Json.IJsonLineInfo,System.String,System.String,System.Exception)
  579. extern void JsonSerializationException_Create_m163D03CFC17934D8181072F94DE5D8FBC674847E (void);
  580. // 0x00000125 System.Void Newtonsoft.Json.JsonSerializer::add_Error(System.EventHandler`1<Newtonsoft.Json.Serialization.ErrorEventArgs>)
  581. extern void JsonSerializer_add_Error_m136B8C87AFB69A32E77725188F5041747EAB2CC5 (void);
  582. // 0x00000126 System.Void Newtonsoft.Json.JsonSerializer::remove_Error(System.EventHandler`1<Newtonsoft.Json.Serialization.ErrorEventArgs>)
  583. extern void JsonSerializer_remove_Error_mD595D74F07DC33EBC5D4822062A8E117B365651D (void);
  584. // 0x00000127 System.Void Newtonsoft.Json.JsonSerializer::set_ReferenceResolver(Newtonsoft.Json.Serialization.IReferenceResolver)
  585. extern void JsonSerializer_set_ReferenceResolver_mD3C2A1B634ABC9F2BF2E6FAB6109069EAB03AC9D (void);
  586. // 0x00000128 System.Void Newtonsoft.Json.JsonSerializer::set_Binder(System.Runtime.Serialization.SerializationBinder)
  587. extern void JsonSerializer_set_Binder_m7E06D4CB1C7F59D3FA7E29FA1886AA94C25DBF72 (void);
  588. // 0x00000129 Newtonsoft.Json.Serialization.ITraceWriter Newtonsoft.Json.JsonSerializer::get_TraceWriter()
  589. extern void JsonSerializer_get_TraceWriter_m32A55EF6A296117BB51444D5B91203C610AE32F5 (void);
  590. // 0x0000012A System.Void Newtonsoft.Json.JsonSerializer::set_TraceWriter(Newtonsoft.Json.Serialization.ITraceWriter)
  591. extern void JsonSerializer_set_TraceWriter_mE25689D7A3A7E33DD93F47B89C9C1149CAB7D019 (void);
  592. // 0x0000012B System.Void Newtonsoft.Json.JsonSerializer::set_EqualityComparer(System.Collections.IEqualityComparer)
  593. extern void JsonSerializer_set_EqualityComparer_mB8FCB07FD08065F2366421FB99412B43387CCDB9 (void);
  594. // 0x0000012C System.Void Newtonsoft.Json.JsonSerializer::set_TypeNameHandling(Newtonsoft.Json.TypeNameHandling)
  595. extern void JsonSerializer_set_TypeNameHandling_m46F4935848B54A7E94AEB9673772AC5841A0325A (void);
  596. // 0x0000012D System.Void Newtonsoft.Json.JsonSerializer::set_TypeNameAssemblyFormat(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle)
  597. extern void JsonSerializer_set_TypeNameAssemblyFormat_m6BC30A81C47835FFADD986CA947950DA2372D4C5 (void);
  598. // 0x0000012E System.Void Newtonsoft.Json.JsonSerializer::set_PreserveReferencesHandling(Newtonsoft.Json.PreserveReferencesHandling)
  599. extern void JsonSerializer_set_PreserveReferencesHandling_m161316AF11381FFE737F5723260F589523B6B72D (void);
  600. // 0x0000012F System.Void Newtonsoft.Json.JsonSerializer::set_ReferenceLoopHandling(Newtonsoft.Json.ReferenceLoopHandling)
  601. extern void JsonSerializer_set_ReferenceLoopHandling_mD785BE5461A2B2CFD06135C705663EA03A48B941 (void);
  602. // 0x00000130 System.Void Newtonsoft.Json.JsonSerializer::set_MissingMemberHandling(Newtonsoft.Json.MissingMemberHandling)
  603. extern void JsonSerializer_set_MissingMemberHandling_mF2977B5D3B3A3C2AB6022E953C59F1EB9DCA80B6 (void);
  604. // 0x00000131 System.Void Newtonsoft.Json.JsonSerializer::set_NullValueHandling(Newtonsoft.Json.NullValueHandling)
  605. extern void JsonSerializer_set_NullValueHandling_m6C04322512F3327945BE96643FB7D73F29F49728 (void);
  606. // 0x00000132 System.Void Newtonsoft.Json.JsonSerializer::set_DefaultValueHandling(Newtonsoft.Json.DefaultValueHandling)
  607. extern void JsonSerializer_set_DefaultValueHandling_m2314487781B4564F15749A9EBC40E82F38583EE0 (void);
  608. // 0x00000133 Newtonsoft.Json.ObjectCreationHandling Newtonsoft.Json.JsonSerializer::get_ObjectCreationHandling()
  609. extern void JsonSerializer_get_ObjectCreationHandling_m449A2FB0FE5DCA2FB6336EBC6C94205882DBCA2C (void);
  610. // 0x00000134 System.Void Newtonsoft.Json.JsonSerializer::set_ObjectCreationHandling(Newtonsoft.Json.ObjectCreationHandling)
  611. extern void JsonSerializer_set_ObjectCreationHandling_mC8AC2C0A1F13E47C8FC2187C7F6034E016E53883 (void);
  612. // 0x00000135 System.Void Newtonsoft.Json.JsonSerializer::set_ConstructorHandling(Newtonsoft.Json.ConstructorHandling)
  613. extern void JsonSerializer_set_ConstructorHandling_m3D7BB6B7EEC94E2483876028E043FD2C5AB16AF6 (void);
  614. // 0x00000136 Newtonsoft.Json.MetadataPropertyHandling Newtonsoft.Json.JsonSerializer::get_MetadataPropertyHandling()
  615. extern void JsonSerializer_get_MetadataPropertyHandling_m9CE77DBC6F00B04E5896AF5F63E04C2DE4A45682 (void);
  616. // 0x00000137 System.Void Newtonsoft.Json.JsonSerializer::set_MetadataPropertyHandling(Newtonsoft.Json.MetadataPropertyHandling)
  617. extern void JsonSerializer_set_MetadataPropertyHandling_m6A97B28D50BA612902F6184D48BF340D591C12E3 (void);
  618. // 0x00000138 Newtonsoft.Json.JsonConverterCollection Newtonsoft.Json.JsonSerializer::get_Converters()
  619. extern void JsonSerializer_get_Converters_m4BACB468E417A63594FDAF97CC887FCE0BA11D63 (void);
  620. // 0x00000139 Newtonsoft.Json.Serialization.IContractResolver Newtonsoft.Json.JsonSerializer::get_ContractResolver()
  621. extern void JsonSerializer_get_ContractResolver_m685FD586C3CCDC826656391197132D1BA8BE9C01 (void);
  622. // 0x0000013A System.Void Newtonsoft.Json.JsonSerializer::set_ContractResolver(Newtonsoft.Json.Serialization.IContractResolver)
  623. extern void JsonSerializer_set_ContractResolver_mE653319EAA8E9D08DEFD578573DA158099C75BB8 (void);
  624. // 0x0000013B System.Runtime.Serialization.StreamingContext Newtonsoft.Json.JsonSerializer::get_Context()
  625. extern void JsonSerializer_get_Context_m3F59C4B0B76C47CC313C5547078B7508C9321033 (void);
  626. // 0x0000013C System.Void Newtonsoft.Json.JsonSerializer::set_Context(System.Runtime.Serialization.StreamingContext)
  627. extern void JsonSerializer_set_Context_m612B36A9ED78858EFC029EAB6CAC485329D482DF (void);
  628. // 0x0000013D Newtonsoft.Json.Formatting Newtonsoft.Json.JsonSerializer::get_Formatting()
  629. extern void JsonSerializer_get_Formatting_m8C27A28C736F2C591DDD467EB420EE8FD740A219 (void);
  630. // 0x0000013E System.Boolean Newtonsoft.Json.JsonSerializer::get_CheckAdditionalContent()
  631. extern void JsonSerializer_get_CheckAdditionalContent_m54805A2237B182F97A39261349E03DA4E68FA26E (void);
  632. // 0x0000013F System.Void Newtonsoft.Json.JsonSerializer::set_CheckAdditionalContent(System.Boolean)
  633. extern void JsonSerializer_set_CheckAdditionalContent_m64B92786343D36B07367275221F7AF1799A63175 (void);
  634. // 0x00000140 System.Boolean Newtonsoft.Json.JsonSerializer::IsCheckAdditionalContentSet()
  635. extern void JsonSerializer_IsCheckAdditionalContentSet_m9C86FC26E84A54AA3795898DB49433F8192044B4 (void);
  636. // 0x00000141 System.Void Newtonsoft.Json.JsonSerializer::.ctor()
  637. extern void JsonSerializer__ctor_m0913ACE6CF06014B5A2431243D42205F803A54C6 (void);
  638. // 0x00000142 Newtonsoft.Json.JsonSerializer Newtonsoft.Json.JsonSerializer::Create()
  639. extern void JsonSerializer_Create_m343A80A2583E9C591E032DC8D16A28D2262F3FE9 (void);
  640. // 0x00000143 Newtonsoft.Json.JsonSerializer Newtonsoft.Json.JsonSerializer::Create(Newtonsoft.Json.JsonSerializerSettings)
  641. extern void JsonSerializer_Create_mA5B10CA3D061D3D447A6EEAAB8551013CD8C2D1A (void);
  642. // 0x00000144 Newtonsoft.Json.JsonSerializer Newtonsoft.Json.JsonSerializer::CreateDefault()
  643. extern void JsonSerializer_CreateDefault_mFBB356F39223E41BD12796A4A4EAC0128D73B629 (void);
  644. // 0x00000145 Newtonsoft.Json.JsonSerializer Newtonsoft.Json.JsonSerializer::CreateDefault(Newtonsoft.Json.JsonSerializerSettings)
  645. extern void JsonSerializer_CreateDefault_mB0A448158979A4FDBA636DCBAFA44F4AC7A97A77 (void);
  646. // 0x00000146 System.Void Newtonsoft.Json.JsonSerializer::ApplySerializerSettings(Newtonsoft.Json.JsonSerializer,Newtonsoft.Json.JsonSerializerSettings)
  647. extern void JsonSerializer_ApplySerializerSettings_mB017C3FC163387EC018E84E6F0FEE2F83A5E7D7B (void);
  648. // 0x00000147 System.Void Newtonsoft.Json.JsonSerializer::Populate(Newtonsoft.Json.JsonReader,System.Object)
  649. extern void JsonSerializer_Populate_mF96A10F379614E104FC83A7972D5D8F4E74301FD (void);
  650. // 0x00000148 System.Void Newtonsoft.Json.JsonSerializer::PopulateInternal(Newtonsoft.Json.JsonReader,System.Object)
  651. extern void JsonSerializer_PopulateInternal_m0441E1A6F6D3138F824C954D662B7C72A1A912F9 (void);
  652. // 0x00000149 T Newtonsoft.Json.JsonSerializer::Deserialize(Newtonsoft.Json.JsonReader)
  653. // 0x0000014A System.Object Newtonsoft.Json.JsonSerializer::Deserialize(Newtonsoft.Json.JsonReader,System.Type)
  654. extern void JsonSerializer_Deserialize_mD1BD9A4F7C7739A071B90DD9BC9E8908D66E11C0 (void);
  655. // 0x0000014B System.Object Newtonsoft.Json.JsonSerializer::DeserializeInternal(Newtonsoft.Json.JsonReader,System.Type)
  656. extern void JsonSerializer_DeserializeInternal_mF3BDC8E8797408EFBFC4E2FB3E276502A6911319 (void);
  657. // 0x0000014C System.Void Newtonsoft.Json.JsonSerializer::SetupReader(Newtonsoft.Json.JsonReader,System.Globalization.CultureInfo&,System.Nullable`1<Newtonsoft.Json.DateTimeZoneHandling>&,System.Nullable`1<Newtonsoft.Json.DateParseHandling>&,System.Nullable`1<Newtonsoft.Json.FloatParseHandling>&,System.Nullable`1<System.Int32>&,System.String&)
  658. extern void JsonSerializer_SetupReader_m935C0F8122F3D44AB3BC9B29641AA12A0FB27310 (void);
  659. // 0x0000014D System.Void Newtonsoft.Json.JsonSerializer::ResetReader(Newtonsoft.Json.JsonReader,System.Globalization.CultureInfo,System.Nullable`1<Newtonsoft.Json.DateTimeZoneHandling>,System.Nullable`1<Newtonsoft.Json.DateParseHandling>,System.Nullable`1<Newtonsoft.Json.FloatParseHandling>,System.Nullable`1<System.Int32>,System.String)
  660. extern void JsonSerializer_ResetReader_m5B78E38B42AAAE44A6258DD42EADB3CE83C62789 (void);
  661. // 0x0000014E System.Void Newtonsoft.Json.JsonSerializer::Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)
  662. extern void JsonSerializer_Serialize_m9D15A1412E5150796621B32F4A591FAA10BB76F1 (void);
  663. // 0x0000014F System.Void Newtonsoft.Json.JsonSerializer::Serialize(Newtonsoft.Json.JsonWriter,System.Object)
  664. extern void JsonSerializer_Serialize_m9EA64D9079D4A2844D377A556D7D815B301BBC1D (void);
  665. // 0x00000150 System.Void Newtonsoft.Json.JsonSerializer::SerializeInternal(Newtonsoft.Json.JsonWriter,System.Object,System.Type)
  666. extern void JsonSerializer_SerializeInternal_mE98D166DDB884697A15B10AA904D78611A0AF14E (void);
  667. // 0x00000151 Newtonsoft.Json.Serialization.IReferenceResolver Newtonsoft.Json.JsonSerializer::GetReferenceResolver()
  668. extern void JsonSerializer_GetReferenceResolver_mED3C727D7B702A0ED891E5C3663842FB69A889F3 (void);
  669. // 0x00000152 Newtonsoft.Json.JsonConverter Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Type)
  670. extern void JsonSerializer_GetMatchingConverter_mAF04EFA2A8C791828B6AA3903518512CAD60CD07 (void);
  671. // 0x00000153 Newtonsoft.Json.JsonConverter Newtonsoft.Json.JsonSerializer::GetMatchingConverter(System.Collections.Generic.IList`1<Newtonsoft.Json.JsonConverter>,System.Type)
  672. extern void JsonSerializer_GetMatchingConverter_mC76FD1596C5E0534C45A05F3A5CFB8585C35C962 (void);
  673. // 0x00000154 System.Void Newtonsoft.Json.JsonSerializer::OnError(Newtonsoft.Json.Serialization.ErrorEventArgs)
  674. extern void JsonSerializer_OnError_m94489587ABFC2BBCB076B85965C1BF7372EA063E (void);
  675. // 0x00000155 Newtonsoft.Json.JsonWriter/State[][] Newtonsoft.Json.JsonWriter::BuildStateArray()
  676. extern void JsonWriter_BuildStateArray_mA0E6E0810E8CB4591CF04BDFF536E021072DA424 (void);
  677. // 0x00000156 System.Void Newtonsoft.Json.JsonWriter::.cctor()
  678. extern void JsonWriter__cctor_m0163CA97BDB66CB3988DCE7D5B2DE35A4DA1D96E (void);
  679. // 0x00000157 System.Boolean Newtonsoft.Json.JsonWriter::get_CloseOutput()
  680. extern void JsonWriter_get_CloseOutput_m35735FF8248038300093B2107F3CF2B9DFECE1F5 (void);
  681. // 0x00000158 System.Void Newtonsoft.Json.JsonWriter::set_CloseOutput(System.Boolean)
  682. extern void JsonWriter_set_CloseOutput_m4FA46ECC4D7B67D37299F937FD7CF1819D505706 (void);
  683. // 0x00000159 System.Int32 Newtonsoft.Json.JsonWriter::get_Top()
  684. extern void JsonWriter_get_Top_mE9BB5BDB5A64540B7C1108AF30401F89AF772D79 (void);
  685. // 0x0000015A Newtonsoft.Json.WriteState Newtonsoft.Json.JsonWriter::get_WriteState()
  686. extern void JsonWriter_get_WriteState_m23CD3D22D1976D61D92BF6729EB6353ACB9A6CA3 (void);
  687. // 0x0000015B System.String Newtonsoft.Json.JsonWriter::get_ContainerPath()
  688. extern void JsonWriter_get_ContainerPath_mADC497503051A4C9B6EC6078215DB4E107D54FDD (void);
  689. // 0x0000015C System.String Newtonsoft.Json.JsonWriter::get_Path()
  690. extern void JsonWriter_get_Path_m7796CF0B7E28CD378C10E70351798A442084BAAE (void);
  691. // 0x0000015D Newtonsoft.Json.Formatting Newtonsoft.Json.JsonWriter::get_Formatting()
  692. extern void JsonWriter_get_Formatting_mC18D9155ED938AFD5F1DCEF125118019457CD544 (void);
  693. // 0x0000015E System.Void Newtonsoft.Json.JsonWriter::set_Formatting(Newtonsoft.Json.Formatting)
  694. extern void JsonWriter_set_Formatting_mD0CD79552C13280507FC97D3F2B4B9A34DCFDF44 (void);
  695. // 0x0000015F Newtonsoft.Json.DateFormatHandling Newtonsoft.Json.JsonWriter::get_DateFormatHandling()
  696. extern void JsonWriter_get_DateFormatHandling_mE942350A97B2D29BCA6E4B1625F1668E9C32A9AF (void);
  697. // 0x00000160 System.Void Newtonsoft.Json.JsonWriter::set_DateFormatHandling(Newtonsoft.Json.DateFormatHandling)
  698. extern void JsonWriter_set_DateFormatHandling_m71DBA6BB91BB3ACF47221BFA38FDC7680E5A659C (void);
  699. // 0x00000161 Newtonsoft.Json.DateTimeZoneHandling Newtonsoft.Json.JsonWriter::get_DateTimeZoneHandling()
  700. extern void JsonWriter_get_DateTimeZoneHandling_mCEE504BF434BD0DD1360A9E534ACCE5CAB4233C9 (void);
  701. // 0x00000162 System.Void Newtonsoft.Json.JsonWriter::set_DateTimeZoneHandling(Newtonsoft.Json.DateTimeZoneHandling)
  702. extern void JsonWriter_set_DateTimeZoneHandling_mDDCFF82A68776C61999A2526452B14C401592BB8 (void);
  703. // 0x00000163 Newtonsoft.Json.StringEscapeHandling Newtonsoft.Json.JsonWriter::get_StringEscapeHandling()
  704. extern void JsonWriter_get_StringEscapeHandling_m8E8D78C834F1EFE5D11D77F7F58151DFABA04FF1 (void);
  705. // 0x00000164 System.Void Newtonsoft.Json.JsonWriter::set_StringEscapeHandling(Newtonsoft.Json.StringEscapeHandling)
  706. extern void JsonWriter_set_StringEscapeHandling_m2CDFE1FCC0BEC2417F5DF10FC5CDFA046CD3497C (void);
  707. // 0x00000165 System.Void Newtonsoft.Json.JsonWriter::OnStringEscapeHandlingChanged()
  708. extern void JsonWriter_OnStringEscapeHandlingChanged_m26130642889FB5535577206D1B42F98E150C1600 (void);
  709. // 0x00000166 Newtonsoft.Json.FloatFormatHandling Newtonsoft.Json.JsonWriter::get_FloatFormatHandling()
  710. extern void JsonWriter_get_FloatFormatHandling_m3B2A583300BF25FE39C38E75C995AAB565CF1912 (void);
  711. // 0x00000167 System.Void Newtonsoft.Json.JsonWriter::set_FloatFormatHandling(Newtonsoft.Json.FloatFormatHandling)
  712. extern void JsonWriter_set_FloatFormatHandling_m561821C81F0C0BDA1926DF11F97BC8AAC8BCD3DD (void);
  713. // 0x00000168 System.String Newtonsoft.Json.JsonWriter::get_DateFormatString()
  714. extern void JsonWriter_get_DateFormatString_mC1855B2F2BF9A5776B62B0607E10C7ECB0C9BDD0 (void);
  715. // 0x00000169 System.Void Newtonsoft.Json.JsonWriter::set_DateFormatString(System.String)
  716. extern void JsonWriter_set_DateFormatString_mC549E4965DA9E4C5DE42C3C4EFB04B490547F5F4 (void);
  717. // 0x0000016A System.Globalization.CultureInfo Newtonsoft.Json.JsonWriter::get_Culture()
  718. extern void JsonWriter_get_Culture_mAD5635D6A004DFDE1659D9BB23BDBA76E64775F4 (void);
  719. // 0x0000016B System.Void Newtonsoft.Json.JsonWriter::set_Culture(System.Globalization.CultureInfo)
  720. extern void JsonWriter_set_Culture_mB06618F77452FC9C46BA4C72B50DD1EA30A9D7A7 (void);
  721. // 0x0000016C System.Void Newtonsoft.Json.JsonWriter::.ctor()
  722. extern void JsonWriter__ctor_m33E6C940737895931A28DA2F07D78F0997612340 (void);
  723. // 0x0000016D System.Void Newtonsoft.Json.JsonWriter::UpdateScopeWithFinishedValue()
  724. extern void JsonWriter_UpdateScopeWithFinishedValue_mC963AA612FC5884DD7FB41F8CDE0CF5701614B94 (void);
  725. // 0x0000016E System.Void Newtonsoft.Json.JsonWriter::Push(Newtonsoft.Json.JsonContainerType)
  726. extern void JsonWriter_Push_m1F88E3CC8E95814572800A4D4C2711583C8DA614 (void);
  727. // 0x0000016F Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonWriter::Pop()
  728. extern void JsonWriter_Pop_m6E215C64A1DDFDFABFD23A49F1B4507ACBB2D8E4 (void);
  729. // 0x00000170 Newtonsoft.Json.JsonContainerType Newtonsoft.Json.JsonWriter::Peek()
  730. extern void JsonWriter_Peek_m5D92719BB030AA19751F29364F134D2F3350E602 (void);
  731. // 0x00000171 System.Void Newtonsoft.Json.JsonWriter::Close()
  732. extern void JsonWriter_Close_mBA7ED54867CFF21151735D1666E706A085331904 (void);
  733. // 0x00000172 System.Void Newtonsoft.Json.JsonWriter::WriteStartObject()
  734. extern void JsonWriter_WriteStartObject_mA8E43167628604D813212CAFF32D9B7CD3EB4913 (void);
  735. // 0x00000173 System.Void Newtonsoft.Json.JsonWriter::WriteEndObject()
  736. extern void JsonWriter_WriteEndObject_mCF63E3221040461984DC7DBDFD106CDB920171C4 (void);
  737. // 0x00000174 System.Void Newtonsoft.Json.JsonWriter::WriteStartArray()
  738. extern void JsonWriter_WriteStartArray_m55F6DCD1D2575341B2A76BCDFA8527221C10EC4D (void);
  739. // 0x00000175 System.Void Newtonsoft.Json.JsonWriter::WriteEndArray()
  740. extern void JsonWriter_WriteEndArray_mA517593618A52B60BF52B928EF5C960B9034353F (void);
  741. // 0x00000176 System.Void Newtonsoft.Json.JsonWriter::WriteStartConstructor(System.String)
  742. extern void JsonWriter_WriteStartConstructor_m20481E29ACCAE010A24BA2926E18E52D09A3727F (void);
  743. // 0x00000177 System.Void Newtonsoft.Json.JsonWriter::WriteEndConstructor()
  744. extern void JsonWriter_WriteEndConstructor_m1EEE40EE365CB194329A6B648B5F32F79FD9485B (void);
  745. // 0x00000178 System.Void Newtonsoft.Json.JsonWriter::WritePropertyName(System.String)
  746. extern void JsonWriter_WritePropertyName_m6282FE6332B919E03C780BE412456BF75A6FC7C8 (void);
  747. // 0x00000179 System.Void Newtonsoft.Json.JsonWriter::WritePropertyName(System.String,System.Boolean)
  748. extern void JsonWriter_WritePropertyName_m9C734C9BC2A017692CCCA600DC3E206B8D3D1C19 (void);
  749. // 0x0000017A System.Void Newtonsoft.Json.JsonWriter::WriteEnd()
  750. extern void JsonWriter_WriteEnd_m925144DAE6F6588B557AE52E1F5E48A266464CAA (void);
  751. // 0x0000017B System.Void Newtonsoft.Json.JsonWriter::WriteToken(Newtonsoft.Json.JsonReader)
  752. extern void JsonWriter_WriteToken_mDB4120EA9CDDE4A793B0EC6CC00A0C2AA539258D (void);
  753. // 0x0000017C System.Void Newtonsoft.Json.JsonWriter::WriteToken(Newtonsoft.Json.JsonReader,System.Boolean)
  754. extern void JsonWriter_WriteToken_m73D08B2FBC9DBC4027C9BF986BBDDA44FCC8C926 (void);
  755. // 0x0000017D System.Void Newtonsoft.Json.JsonWriter::WriteToken(Newtonsoft.Json.JsonToken,System.Object)
  756. extern void JsonWriter_WriteToken_m0E530768DEFE81C78F8A96746254BF1926FFB7F7 (void);
  757. // 0x0000017E System.Void Newtonsoft.Json.JsonWriter::WriteToken(Newtonsoft.Json.JsonReader,System.Boolean,System.Boolean,System.Boolean)
  758. extern void JsonWriter_WriteToken_mE0EE772566A273EB906D47F9FA1A6221DFB14DFA (void);
  759. // 0x0000017F System.Void Newtonsoft.Json.JsonWriter::WriteConstructorDate(Newtonsoft.Json.JsonReader)
  760. extern void JsonWriter_WriteConstructorDate_m0F9E70D5BD8696F65EBCEF119E92BCB238DAC03D (void);
  761. // 0x00000180 System.Void Newtonsoft.Json.JsonWriter::WriteEnd(Newtonsoft.Json.JsonContainerType)
  762. extern void JsonWriter_WriteEnd_m04DD651F7158F913327B4B44A83E6398E464049C (void);
  763. // 0x00000181 System.Void Newtonsoft.Json.JsonWriter::AutoCompleteAll()
  764. extern void JsonWriter_AutoCompleteAll_m90BB40B1F249CDEF9FE9393E85483F21B90F58D2 (void);
  765. // 0x00000182 Newtonsoft.Json.JsonToken Newtonsoft.Json.JsonWriter::GetCloseTokenForType(Newtonsoft.Json.JsonContainerType)
  766. extern void JsonWriter_GetCloseTokenForType_mB09609832B8A3BFCA123BFDC6FDA53B419AE5941 (void);
  767. // 0x00000183 System.Void Newtonsoft.Json.JsonWriter::AutoCompleteClose(Newtonsoft.Json.JsonContainerType)
  768. extern void JsonWriter_AutoCompleteClose_m4AD461C15C7A9E77987D0D34F157E2CA9AE196EC (void);
  769. // 0x00000184 System.Void Newtonsoft.Json.JsonWriter::WriteEnd(Newtonsoft.Json.JsonToken)
  770. extern void JsonWriter_WriteEnd_m30634EF8F195AAC954C12ECDFB5DC751B4F08AA2 (void);
  771. // 0x00000185 System.Void Newtonsoft.Json.JsonWriter::WriteIndent()
  772. extern void JsonWriter_WriteIndent_mA92BE774008482499674A340FB09F165D42536E1 (void);
  773. // 0x00000186 System.Void Newtonsoft.Json.JsonWriter::WriteValueDelimiter()
  774. extern void JsonWriter_WriteValueDelimiter_m1ACB4AB5AF4658B61F6EF01CD2AF4755BE9A8C2E (void);
  775. // 0x00000187 System.Void Newtonsoft.Json.JsonWriter::WriteIndentSpace()
  776. extern void JsonWriter_WriteIndentSpace_m151F9160694A7EC803A54B7D3B3A808DFDFFB899 (void);
  777. // 0x00000188 System.Void Newtonsoft.Json.JsonWriter::AutoComplete(Newtonsoft.Json.JsonToken)
  778. extern void JsonWriter_AutoComplete_m8BC2E4659CD48CE43093578246520EFA1CE0A21B (void);
  779. // 0x00000189 System.Void Newtonsoft.Json.JsonWriter::WriteNull()
  780. extern void JsonWriter_WriteNull_m5C6B7A818F167C7AD5846C0B66634444624C7294 (void);
  781. // 0x0000018A System.Void Newtonsoft.Json.JsonWriter::WriteUndefined()
  782. extern void JsonWriter_WriteUndefined_mFE1DC4B2CFD5992C2D39D7B138E76918FDFA886C (void);
  783. // 0x0000018B System.Void Newtonsoft.Json.JsonWriter::WriteRaw(System.String)
  784. extern void JsonWriter_WriteRaw_mEB4130437F7C7FFDAD095A67CB948524A7F651B5 (void);
  785. // 0x0000018C System.Void Newtonsoft.Json.JsonWriter::WriteRawValue(System.String)
  786. extern void JsonWriter_WriteRawValue_m0EA2A8A5E6BEC2DFA260294AECBAF730784A103C (void);
  787. // 0x0000018D System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.String)
  788. extern void JsonWriter_WriteValue_mCEEBA5B0C394500340F6C32E24FEBD327ED85006 (void);
  789. // 0x0000018E System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Int32)
  790. extern void JsonWriter_WriteValue_m3272CDA2D49600CEDC28BCA9655D967F0F2A58F8 (void);
  791. // 0x0000018F System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.UInt32)
  792. extern void JsonWriter_WriteValue_mAA9CA5579DEB1985F70702C9D714A208977CCD63 (void);
  793. // 0x00000190 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Int64)
  794. extern void JsonWriter_WriteValue_m56B6607C1D74A21FB75945C92B57D83FD4419E1C (void);
  795. // 0x00000191 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.UInt64)
  796. extern void JsonWriter_WriteValue_m7307E600DEE61DC628FE0A25124E55635AE81B31 (void);
  797. // 0x00000192 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Single)
  798. extern void JsonWriter_WriteValue_mE37191ACB24107E7C88B4EBDA034418AAF7E7A71 (void);
  799. // 0x00000193 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Double)
  800. extern void JsonWriter_WriteValue_mC64B161E67A79957FE19EE209CA9543F3CB02267 (void);
  801. // 0x00000194 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Boolean)
  802. extern void JsonWriter_WriteValue_mA6C47BFFF0A3BD4367BAC58A59711A873F44B2D8 (void);
  803. // 0x00000195 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Int16)
  804. extern void JsonWriter_WriteValue_m7573324F0A6837B35CA08BD12695B59BDAF319A0 (void);
  805. // 0x00000196 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.UInt16)
  806. extern void JsonWriter_WriteValue_m86E02F18462B68408F56664160AA8EE14FBCB847 (void);
  807. // 0x00000197 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Char)
  808. extern void JsonWriter_WriteValue_m3E13762ABAA97E3B6E5512719A9C20110690867B (void);
  809. // 0x00000198 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Byte)
  810. extern void JsonWriter_WriteValue_mCA89BB907A0514BB3C7CF72A3B5DBEB80B601D8B (void);
  811. // 0x00000199 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.SByte)
  812. extern void JsonWriter_WriteValue_mFB2A849F1CB5FDC6B1A0228F0DCB93CE92F6A974 (void);
  813. // 0x0000019A System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Decimal)
  814. extern void JsonWriter_WriteValue_mD5F5DD5F9A475E329A9F63DF6E2610C9E4CA5E47 (void);
  815. // 0x0000019B System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.DateTime)
  816. extern void JsonWriter_WriteValue_m88A4103C8515DDFFBFAD5F2C27CAC3192CDAA667 (void);
  817. // 0x0000019C System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.DateTimeOffset)
  818. extern void JsonWriter_WriteValue_m33E9E1916850836BA29C86ADE3FECA716729AB60 (void);
  819. // 0x0000019D System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Guid)
  820. extern void JsonWriter_WriteValue_m9191D561BCBFD43DDEE7E237191C20371C411DC8 (void);
  821. // 0x0000019E System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.TimeSpan)
  822. extern void JsonWriter_WriteValue_mD4355674521311D84F4B8CBC86DA96C39C338622 (void);
  823. // 0x0000019F System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Int32>)
  824. extern void JsonWriter_WriteValue_mA60C1255513DC8ADED8E8C8054E8B65D4989966A (void);
  825. // 0x000001A0 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.UInt32>)
  826. extern void JsonWriter_WriteValue_mE2F23E05460ECD9C167A95F653416EAC59A3A60D (void);
  827. // 0x000001A1 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Int64>)
  828. extern void JsonWriter_WriteValue_m31E9729AA9DDB1D9FA29C50F81C05ADFA5DCCFA9 (void);
  829. // 0x000001A2 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.UInt64>)
  830. extern void JsonWriter_WriteValue_mC1E14DAA2E451C20365DA9B843028DE31DFBF746 (void);
  831. // 0x000001A3 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Single>)
  832. extern void JsonWriter_WriteValue_mA661A9CDC990E9966FBCE44F70943E217DA8AA50 (void);
  833. // 0x000001A4 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Double>)
  834. extern void JsonWriter_WriteValue_m983831AD6DB0B35FDC8C8FB61A8BB5986607D5DA (void);
  835. // 0x000001A5 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Boolean>)
  836. extern void JsonWriter_WriteValue_mF416DE127062CE8485646744B9BE46BB033B49CA (void);
  837. // 0x000001A6 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Int16>)
  838. extern void JsonWriter_WriteValue_m9B2CD4BB01AA1840AA6C17A8C5FA56E1AB65292C (void);
  839. // 0x000001A7 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.UInt16>)
  840. extern void JsonWriter_WriteValue_m3EC3F0E59E9BD3B73EE85482D51855361343DD80 (void);
  841. // 0x000001A8 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Char>)
  842. extern void JsonWriter_WriteValue_m6221D7393F33F9BC3B8A783447F0D5FF5FA35F09 (void);
  843. // 0x000001A9 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Byte>)
  844. extern void JsonWriter_WriteValue_mC02EF217E1C8832B4F6A67B213156AF0398973C3 (void);
  845. // 0x000001AA System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.SByte>)
  846. extern void JsonWriter_WriteValue_mE04452BF49A47378258A35FF00A77269EEF3E962 (void);
  847. // 0x000001AB System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Decimal>)
  848. extern void JsonWriter_WriteValue_mD3BAB76446972CAA116D03A3967878D10F8EA515 (void);
  849. // 0x000001AC System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.DateTime>)
  850. extern void JsonWriter_WriteValue_m52B4702F2349167842323A92E98838E6FDCBA052 (void);
  851. // 0x000001AD System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.DateTimeOffset>)
  852. extern void JsonWriter_WriteValue_mE669D41AD0EAB18DD1538DD834F5509BAAC028C3 (void);
  853. // 0x000001AE System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.Guid>)
  854. extern void JsonWriter_WriteValue_m44CD9A8BFF0E498FDEB595A40578EA4E4F802C28 (void);
  855. // 0x000001AF System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Nullable`1<System.TimeSpan>)
  856. extern void JsonWriter_WriteValue_mE6CC066FF91E81E7CBD9AD7D578907944EDD8602 (void);
  857. // 0x000001B0 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Byte[])
  858. extern void JsonWriter_WriteValue_mD3F58DE13B6A261C21A09EDAF057E80B2B465239 (void);
  859. // 0x000001B1 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Uri)
  860. extern void JsonWriter_WriteValue_mFA34221E6FC1DAA2AEB96B267A29701DF84A4593 (void);
  861. // 0x000001B2 System.Void Newtonsoft.Json.JsonWriter::WriteValue(System.Object)
  862. extern void JsonWriter_WriteValue_m2C50EEBAAC598756A7D400689FDEACBA83EE9077 (void);
  863. // 0x000001B3 System.Void Newtonsoft.Json.JsonWriter::WriteComment(System.String)
  864. extern void JsonWriter_WriteComment_m0D55F7EE368A992D6BB35051A3FACD07708FF2A8 (void);
  865. // 0x000001B4 System.Void Newtonsoft.Json.JsonWriter::System.IDisposable.Dispose()
  866. extern void JsonWriter_System_IDisposable_Dispose_m30B5028E55E62884E68B69C596B7A727D2F4D5E0 (void);
  867. // 0x000001B5 System.Void Newtonsoft.Json.JsonWriter::Dispose(System.Boolean)
  868. extern void JsonWriter_Dispose_m72432FEC60AAAAB0979A13B09A46243C6C93A627 (void);
  869. // 0x000001B6 System.Void Newtonsoft.Json.JsonWriter::WriteValue(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Utilities.PrimitiveTypeCode,System.Object)
  870. extern void JsonWriter_WriteValue_mE301B8283C59CFADB643EC00F82228CAD1D7B5D0 (void);
  871. // 0x000001B7 Newtonsoft.Json.JsonWriterException Newtonsoft.Json.JsonWriter::CreateUnsupportedTypeException(Newtonsoft.Json.JsonWriter,System.Object)
  872. extern void JsonWriter_CreateUnsupportedTypeException_m1AECC8B9FEAA0021A41B59EDD0ADA56914076E25 (void);
  873. // 0x000001B8 System.Void Newtonsoft.Json.JsonWriter::InternalWriteEnd(Newtonsoft.Json.JsonContainerType)
  874. extern void JsonWriter_InternalWriteEnd_mA7DE12A8EB6FA11CBAA51A69C050620C8846A56A (void);
  875. // 0x000001B9 System.Void Newtonsoft.Json.JsonWriter::InternalWritePropertyName(System.String)
  876. extern void JsonWriter_InternalWritePropertyName_mA5078374DB3E45D9C2360AA3F6613310578990DA (void);
  877. // 0x000001BA System.Void Newtonsoft.Json.JsonWriter::InternalWriteRaw()
  878. extern void JsonWriter_InternalWriteRaw_m4B4503688B7FFAF1A1D38C66BE1C0E591682D843 (void);
  879. // 0x000001BB System.Void Newtonsoft.Json.JsonWriter::InternalWriteStart(Newtonsoft.Json.JsonToken,Newtonsoft.Json.JsonContainerType)
  880. extern void JsonWriter_InternalWriteStart_m00F313BA1C3B5EAA4BAE3C4AEEB2496F014DECAC (void);
  881. // 0x000001BC System.Void Newtonsoft.Json.JsonWriter::InternalWriteValue(Newtonsoft.Json.JsonToken)
  882. extern void JsonWriter_InternalWriteValue_m12C7E66156140AAA2282D4855008FCB93CD65FCA (void);
  883. // 0x000001BD System.Void Newtonsoft.Json.JsonWriter::InternalWriteComment()
  884. extern void JsonWriter_InternalWriteComment_m27747B82A2A11FF906A29C8339FBE933A07E8CBC (void);
  885. // 0x000001BE System.Void Newtonsoft.Json.Utilities.DateTimeParser::.cctor()
  886. extern void DateTimeParser__cctor_mA5E4F681D4E2088BB81C4E45AE06B856F0862A9A (void);
  887. // 0x000001BF System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse(System.Char[],System.Int32,System.Int32)
  888. extern void DateTimeParser_Parse_m19153DE29C9BFA6EEE75C87F50E857EA2EEB12F0 (void);
  889. // 0x000001C0 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseDate(System.Int32)
  890. extern void DateTimeParser_ParseDate_mD991BBF95D49CDBD82809A52A9997C631781FB9E (void);
  891. // 0x000001C1 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseTimeAndZoneAndWhitespace(System.Int32)
  892. extern void DateTimeParser_ParseTimeAndZoneAndWhitespace_m1E4EC8F64D029698F37D009AC5A60E92A024ACF0 (void);
  893. // 0x000001C2 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseTime(System.Int32&)
  894. extern void DateTimeParser_ParseTime_m4A5ADC9B09ACE044223CB8BED1393B853F5AEA71 (void);
  895. // 0x000001C3 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseZone(System.Int32)
  896. extern void DateTimeParser_ParseZone_m9E38ED674C6FDE851784C5CE5455BECCDADEB43C (void);
  897. // 0x000001C4 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse4Digit(System.Int32,System.Int32&)
  898. extern void DateTimeParser_Parse4Digit_m448AA776A3869D29D689B3593A67AE7388536658 (void);
  899. // 0x000001C5 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::Parse2Digit(System.Int32,System.Int32&)
  900. extern void DateTimeParser_Parse2Digit_m05E9CA2B2F3EBA8DCA5BD96304BFECF2ADE228B6 (void);
  901. // 0x000001C6 System.Boolean Newtonsoft.Json.Utilities.DateTimeParser::ParseChar(System.Int32,System.Char)
  902. extern void DateTimeParser_ParseChar_m3D13D60FEED649629F61D7F98E6D6306815B23CF (void);
  903. // 0x000001C7 System.Void Newtonsoft.Json.Utilities.Base64Encoder::.ctor(System.IO.TextWriter)
  904. extern void Base64Encoder__ctor_m8CC7CF4E7999D8752CB981EE5D88B015112B70E5 (void);
  905. // 0x000001C8 System.Void Newtonsoft.Json.Utilities.Base64Encoder::Encode(System.Byte[],System.Int32,System.Int32)
  906. extern void Base64Encoder_Encode_m1F2E3887264627B5EE46962BF692449C3BB79D3F (void);
  907. // 0x000001C9 System.Void Newtonsoft.Json.Utilities.Base64Encoder::Flush()
  908. extern void Base64Encoder_Flush_mB4309CBAD0328D6923932E117E4EF1AAD01A8AF3 (void);
  909. // 0x000001CA System.Void Newtonsoft.Json.Utilities.Base64Encoder::WriteChars(System.Char[],System.Int32,System.Int32)
  910. extern void Base64Encoder_WriteChars_m83CDF7CFAFCEE4B7ADE3B243F8298743FB4661B3 (void);
  911. // 0x000001CB System.Boolean Newtonsoft.Json.Utilities.JsonTokenUtils::IsEndToken(Newtonsoft.Json.JsonToken)
  912. extern void JsonTokenUtils_IsEndToken_m77818736EF8F5E9FBC2CE1AF4EAB6AE7DF1FCA7A (void);
  913. // 0x000001CC System.Boolean Newtonsoft.Json.Utilities.JsonTokenUtils::IsStartToken(Newtonsoft.Json.JsonToken)
  914. extern void JsonTokenUtils_IsStartToken_m5A83098412B0ABABE4995D3716392287590A0486 (void);
  915. // 0x000001CD System.Boolean Newtonsoft.Json.Utilities.JsonTokenUtils::IsPrimitiveToken(Newtonsoft.Json.JsonToken)
  916. extern void JsonTokenUtils_IsPrimitiveToken_m4396C2BB487CEC938F4EEC59C53C0BDF8F72EB0F (void);
  917. // 0x000001CE System.Void Newtonsoft.Json.Utilities.PropertyNameTable::.cctor()
  918. extern void PropertyNameTable__cctor_m0D68E1A9634F68B0A686F4DE73B5889802A81B1A (void);
  919. // 0x000001CF System.Void Newtonsoft.Json.Utilities.PropertyNameTable::.ctor()
  920. extern void PropertyNameTable__ctor_m25D60FFF70470EBA0E91683E9B8FC5029B3639E2 (void);
  921. // 0x000001D0 System.String Newtonsoft.Json.Utilities.PropertyNameTable::Get(System.Char[],System.Int32,System.Int32)
  922. extern void PropertyNameTable_Get_m4B3B6618C297611B46EF6ABA9ABF0ECABEF73342 (void);
  923. // 0x000001D1 System.String Newtonsoft.Json.Utilities.PropertyNameTable::Add(System.String)
  924. extern void PropertyNameTable_Add_mB12AEDC24D9C264E460A8C2AFB6FBE759070E18C (void);
  925. // 0x000001D2 System.String Newtonsoft.Json.Utilities.PropertyNameTable::AddEntry(System.String,System.Int32)
  926. extern void PropertyNameTable_AddEntry_m94844BDDC50C0A1583128A65D17B63B50251FFC4 (void);
  927. // 0x000001D3 System.Void Newtonsoft.Json.Utilities.PropertyNameTable::Grow()
  928. extern void PropertyNameTable_Grow_m83701A60E86FDA9E76229DA1927BC3E433BD8D45 (void);
  929. // 0x000001D4 System.Boolean Newtonsoft.Json.Utilities.PropertyNameTable::TextEquals(System.String,System.Char[],System.Int32,System.Int32)
  930. extern void PropertyNameTable_TextEquals_m68A66BFD455B3C6D459F3EFB5977CB2313A5ADEA (void);
  931. // 0x000001D5 System.Void Newtonsoft.Json.Utilities.PropertyNameTable/Entry::.ctor(System.String,System.Int32,Newtonsoft.Json.Utilities.PropertyNameTable/Entry)
  932. extern void Entry__ctor_mD29E897D893C91A2933F87A8F1CC9D6BE8DF16D6 (void);
  933. // 0x000001D6 System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet(System.Reflection.MemberInfo)
  934. // 0x000001D7 System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet(System.Reflection.MemberInfo)
  935. // 0x000001D8 Newtonsoft.Json.Utilities.MethodCall`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateMethodCall(System.Reflection.MethodBase)
  936. // 0x000001D9 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase)
  937. // 0x000001DA System.Func`1<T> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateDefaultConstructor(System.Type)
  938. // 0x000001DB System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet(System.Reflection.PropertyInfo)
  939. // 0x000001DC System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateGet(System.Reflection.FieldInfo)
  940. // 0x000001DD System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet(System.Reflection.FieldInfo)
  941. // 0x000001DE System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.ReflectionDelegateFactory::CreateSet(System.Reflection.PropertyInfo)
  942. // 0x000001DF System.Void Newtonsoft.Json.Utilities.ReflectionDelegateFactory::.ctor()
  943. extern void ReflectionDelegateFactory__ctor_mEFA41B73330DF9F63BB3E43AD2781A2F65A6957E (void);
  944. // 0x000001E0 Newtonsoft.Json.Utilities.ReflectionDelegateFactory Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::get_Instance()
  945. extern void LateBoundReflectionDelegateFactory_get_Instance_m92BBB285AD2E4C07E1E23F84EE40A04E39208EF0 (void);
  946. // 0x000001E1 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateParameterizedConstructor(System.Reflection.MethodBase)
  947. extern void LateBoundReflectionDelegateFactory_CreateParameterizedConstructor_mC292138ADFC6A018C3EAB2AEC01F3020F51D3A45 (void);
  948. // 0x000001E2 Newtonsoft.Json.Utilities.MethodCall`2<T,System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateMethodCall(System.Reflection.MethodBase)
  949. // 0x000001E3 System.Func`1<T> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateDefaultConstructor(System.Type)
  950. // 0x000001E4 System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateGet(System.Reflection.PropertyInfo)
  951. // 0x000001E5 System.Func`2<T,System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateGet(System.Reflection.FieldInfo)
  952. // 0x000001E6 System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateSet(System.Reflection.FieldInfo)
  953. // 0x000001E7 System.Action`2<T,System.Object> Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::CreateSet(System.Reflection.PropertyInfo)
  954. // 0x000001E8 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.ctor()
  955. extern void LateBoundReflectionDelegateFactory__ctor_m7AC46404AA17DECE59248DE0994B7A2987A059E0 (void);
  956. // 0x000001E9 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory::.cctor()
  957. extern void LateBoundReflectionDelegateFactory__cctor_mE60B4A6094231063FABC9338F11A4993C24BC9E5 (void);
  958. // 0x000001EA System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::.ctor()
  959. extern void U3CU3Ec__DisplayClass3_0__ctor_m284ADEC97F298D777146D5B676D3E4E2DF017CB1 (void);
  960. // 0x000001EB System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::<CreateParameterizedConstructor>b__0(System.Object[])
  961. extern void U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__0_m10158FA5080CF58CD0869216D25D4EA37301748D (void);
  962. // 0x000001EC System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass3_0::<CreateParameterizedConstructor>b__1(System.Object[])
  963. extern void U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__1_m3CAAE331CBBB15539A0E2A2AA6410252DD05844C (void);
  964. // 0x000001ED System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass4_0`1::.ctor()
  965. // 0x000001EE System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass4_0`1::<CreateMethodCall>b__0(T,System.Object[])
  966. // 0x000001EF System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass4_0`1::<CreateMethodCall>b__1(T,System.Object[])
  967. // 0x000001F0 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass5_0`1::.ctor()
  968. // 0x000001F1 T Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass5_0`1::<CreateDefaultConstructor>b__0()
  969. // 0x000001F2 T Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass5_0`1::<CreateDefaultConstructor>b__1()
  970. // 0x000001F3 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass6_0`1::.ctor()
  971. // 0x000001F4 System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass6_0`1::<CreateGet>b__0(T)
  972. // 0x000001F5 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass7_0`1::.ctor()
  973. // 0x000001F6 System.Object Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass7_0`1::<CreateGet>b__0(T)
  974. // 0x000001F7 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass8_0`1::.ctor()
  975. // 0x000001F8 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass8_0`1::<CreateSet>b__0(T,System.Object)
  976. // 0x000001F9 System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass9_0`1::.ctor()
  977. // 0x000001FA System.Void Newtonsoft.Json.Utilities.LateBoundReflectionDelegateFactory/<>c__DisplayClass9_0`1::<CreateSet>b__0(T,System.Object)
  978. // 0x000001FB System.Void Newtonsoft.Json.Utilities.MethodCall`2::.ctor(System.Object,System.IntPtr)
  979. // 0x000001FC TResult Newtonsoft.Json.Utilities.MethodCall`2::Invoke(T,System.Object[])
  980. // 0x000001FD System.Type Newtonsoft.Json.Utilities.ReflectionMember::get_MemberType()
  981. extern void ReflectionMember_get_MemberType_mAB2177907FD7B4A95EA3A38F2C1F96596F7C2BEB (void);
  982. // 0x000001FE System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_MemberType(System.Type)
  983. extern void ReflectionMember_set_MemberType_m3CED73888761B9A9C936E74EF0539C2D4C6C8788 (void);
  984. // 0x000001FF System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ReflectionMember::get_Getter()
  985. extern void ReflectionMember_get_Getter_m8C14F3F9760AF6EB89E9644C042D7049187D9E65 (void);
  986. // 0x00000200 System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_Getter(System.Func`2<System.Object,System.Object>)
  987. extern void ReflectionMember_set_Getter_mED0BE46DBB1B84D9A1633BE35516882059E7F625 (void);
  988. // 0x00000201 System.Void Newtonsoft.Json.Utilities.ReflectionMember::set_Setter(System.Action`2<System.Object,System.Object>)
  989. extern void ReflectionMember_set_Setter_m353D076CBC189D2F05EDBCF664D18A4A111610A7 (void);
  990. // 0x00000202 System.Void Newtonsoft.Json.Utilities.ReflectionMember::.ctor()
  991. extern void ReflectionMember__ctor_mAE0A1EF86EDC37BAFB1CFAA6C520ABDCB5C28D51 (void);
  992. // 0x00000203 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Utilities.ReflectionObject::get_Creator()
  993. extern void ReflectionObject_get_Creator_mC785DF954A61E93038A8240F811DF299DACFAB12 (void);
  994. // 0x00000204 System.Void Newtonsoft.Json.Utilities.ReflectionObject::set_Creator(Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
  995. extern void ReflectionObject_set_Creator_m1162363E03BF9F1667F813FE749F2BA4E36FBB45 (void);
  996. // 0x00000205 System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember> Newtonsoft.Json.Utilities.ReflectionObject::get_Members()
  997. extern void ReflectionObject_get_Members_m3FD4398FA99B15DEE50DCE640C9B61338ADCF380 (void);
  998. // 0x00000206 System.Void Newtonsoft.Json.Utilities.ReflectionObject::set_Members(System.Collections.Generic.IDictionary`2<System.String,Newtonsoft.Json.Utilities.ReflectionMember>)
  999. extern void ReflectionObject_set_Members_m51F84C609F669FBAF384A240340AEB2DCADDD09E (void);
  1000. // 0x00000207 System.Void Newtonsoft.Json.Utilities.ReflectionObject::.ctor()
  1001. extern void ReflectionObject__ctor_m82D4F7F06E74932622484FCD77F3E99DDBA29732 (void);
  1002. // 0x00000208 System.Object Newtonsoft.Json.Utilities.ReflectionObject::GetValue(System.Object,System.String)
  1003. extern void ReflectionObject_GetValue_mA0ADA6BB26A0AC4EF2B50FCDCA02E558B54AE764 (void);
  1004. // 0x00000209 System.Type Newtonsoft.Json.Utilities.ReflectionObject::GetType(System.String)
  1005. extern void ReflectionObject_GetType_m9FDB5E15514D65866CC19EE2CF34898CE61F3FB1 (void);
  1006. // 0x0000020A Newtonsoft.Json.Utilities.ReflectionObject Newtonsoft.Json.Utilities.ReflectionObject::Create(System.Type,System.String[])
  1007. extern void ReflectionObject_Create_mD57686249D5EB10C492E55F70C03381DDF4942DD (void);
  1008. // 0x0000020B Newtonsoft.Json.Utilities.ReflectionObject Newtonsoft.Json.Utilities.ReflectionObject::Create(System.Type,System.Reflection.MethodBase,System.String[])
  1009. extern void ReflectionObject_Create_m75CFA86342B16675373753762F21ABD5E3C9C534 (void);
  1010. // 0x0000020C System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass13_0::.ctor()
  1011. extern void U3CU3Ec__DisplayClass13_0__ctor_m5BEC8931A7CFA6F2562DF252E1D0557042E856D7 (void);
  1012. // 0x0000020D System.Object Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass13_0::<Create>b__0(System.Object[])
  1013. extern void U3CU3Ec__DisplayClass13_0_U3CCreateU3Eb__0_m94CD2B6E95976B8BB1C937BBAF665334662288FA (void);
  1014. // 0x0000020E System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass13_1::.ctor()
  1015. extern void U3CU3Ec__DisplayClass13_1__ctor_mE629E8AA7BF56EEEF814F151A65A4B1D6AFA7806 (void);
  1016. // 0x0000020F System.Object Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass13_1::<Create>b__1(System.Object)
  1017. extern void U3CU3Ec__DisplayClass13_1_U3CCreateU3Eb__1_mA4CEB8DCDB87B0B62F376E8761712FA105337E9B (void);
  1018. // 0x00000210 System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass13_2::.ctor()
  1019. extern void U3CU3Ec__DisplayClass13_2__ctor_m7942108C02C4C534B2E24DFCAF50C1365918A8FD (void);
  1020. // 0x00000211 System.Void Newtonsoft.Json.Utilities.ReflectionObject/<>c__DisplayClass13_2::<Create>b__2(System.Object,System.Object)
  1021. extern void U3CU3Ec__DisplayClass13_2_U3CCreateU3Eb__2_m1AD4537D3CE56E60192F194146C0DFF6CF9F0A26 (void);
  1022. // 0x00000212 System.Char Newtonsoft.Json.Utilities.StringReference::get_Item(System.Int32)
  1023. extern void StringReference_get_Item_mCC414598F34A78B379103674D338A77EA6136E83 (void);
  1024. // 0x00000213 System.Char[] Newtonsoft.Json.Utilities.StringReference::get_Chars()
  1025. extern void StringReference_get_Chars_m020702CA028004E195E6E0002693F1DB29042EAD (void);
  1026. // 0x00000214 System.Int32 Newtonsoft.Json.Utilities.StringReference::get_StartIndex()
  1027. extern void StringReference_get_StartIndex_m727F6D326DD23296FA4DDAFDF36625384ECEC40B (void);
  1028. // 0x00000215 System.Int32 Newtonsoft.Json.Utilities.StringReference::get_Length()
  1029. extern void StringReference_get_Length_m0DEC973AB0ADF3CF947C80924F1BF348FBE5C204 (void);
  1030. // 0x00000216 System.Void Newtonsoft.Json.Utilities.StringReference::.ctor(System.Char[],System.Int32,System.Int32)
  1031. extern void StringReference__ctor_m01DDD5ECD8174F6669AAE9F63E50131B36E68A6F (void);
  1032. // 0x00000217 System.String Newtonsoft.Json.Utilities.StringReference::ToString()
  1033. extern void StringReference_ToString_m2547C9D86B566C13C2FB5483B3FFD878B37F9A91 (void);
  1034. // 0x00000218 System.Int32 Newtonsoft.Json.Utilities.StringReferenceExtensions::IndexOf(Newtonsoft.Json.Utilities.StringReference,System.Char,System.Int32,System.Int32)
  1035. extern void StringReferenceExtensions_IndexOf_m2412AACFB049AC560FA1416E1BD5BBC8C90AF00E (void);
  1036. // 0x00000219 System.Boolean Newtonsoft.Json.Utilities.StringReferenceExtensions::StartsWith(Newtonsoft.Json.Utilities.StringReference,System.String)
  1037. extern void StringReferenceExtensions_StartsWith_m672750CAA2EFFAE18DF5F82CAE441F601E134238 (void);
  1038. // 0x0000021A System.Boolean Newtonsoft.Json.Utilities.StringReferenceExtensions::EndsWith(Newtonsoft.Json.Utilities.StringReference,System.String)
  1039. extern void StringReferenceExtensions_EndsWith_m887C4E2053F5128C75F4D80074B01713BCDAB5CF (void);
  1040. // 0x0000021B System.Void Newtonsoft.Json.Utilities.ThreadSafeStore`2::.ctor(System.Func`2<TKey,TValue>)
  1041. // 0x0000021C TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2::Get(TKey)
  1042. // 0x0000021D TValue Newtonsoft.Json.Utilities.ThreadSafeStore`2::AddValue(TKey)
  1043. // 0x0000021E System.Void Newtonsoft.Json.Utilities.BidirectionalDictionary`2::.ctor()
  1044. // 0x0000021F System.Void Newtonsoft.Json.Utilities.BidirectionalDictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1<TFirst>,System.Collections.Generic.IEqualityComparer`1<TSecond>)
  1045. // 0x00000220 System.Void Newtonsoft.Json.Utilities.BidirectionalDictionary`2::.ctor(System.Collections.Generic.IEqualityComparer`1<TFirst>,System.Collections.Generic.IEqualityComparer`1<TSecond>,System.String,System.String)
  1046. // 0x00000221 System.Void Newtonsoft.Json.Utilities.BidirectionalDictionary`2::Set(TFirst,TSecond)
  1047. // 0x00000222 System.Boolean Newtonsoft.Json.Utilities.BidirectionalDictionary`2::TryGetByFirst(TFirst,TSecond&)
  1048. // 0x00000223 System.Boolean Newtonsoft.Json.Utilities.BidirectionalDictionary`2::TryGetBySecond(TSecond,TFirst&)
  1049. // 0x00000224 System.Type Newtonsoft.Json.Utilities.TypeInformation::get_Type()
  1050. extern void TypeInformation_get_Type_m101C4515BF4ECD310CDF20BC2C059D112341D2FF (void);
  1051. // 0x00000225 System.Void Newtonsoft.Json.Utilities.TypeInformation::set_Type(System.Type)
  1052. extern void TypeInformation_set_Type_mDBEF815E9DB934A14E922CFA5DE83E7C3E5242CE (void);
  1053. // 0x00000226 Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.TypeInformation::get_TypeCode()
  1054. extern void TypeInformation_get_TypeCode_mCF198DEDB64134D93B798F875D79B6FF94F4EF1E (void);
  1055. // 0x00000227 System.Void Newtonsoft.Json.Utilities.TypeInformation::set_TypeCode(Newtonsoft.Json.Utilities.PrimitiveTypeCode)
  1056. extern void TypeInformation_set_TypeCode_m56B7A4BF0AA5C3B94D522527D1BD03E5D770AFB5 (void);
  1057. // 0x00000228 System.Void Newtonsoft.Json.Utilities.TypeInformation::.ctor()
  1058. extern void TypeInformation__ctor_mEF95855DF0C827208EC3B71BC8B9428253308DD5 (void);
  1059. // 0x00000229 Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type)
  1060. extern void ConvertUtils_GetTypeCode_mA069AACCE3282593CE46A33C491380274F0855C7 (void);
  1061. // 0x0000022A Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Utilities.ConvertUtils::GetTypeCode(System.Type,System.Boolean&)
  1062. extern void ConvertUtils_GetTypeCode_m24C505D250D4660941EF7F67200DAADAE9CE900A (void);
  1063. // 0x0000022B Newtonsoft.Json.Utilities.TypeInformation Newtonsoft.Json.Utilities.ConvertUtils::GetTypeInformation(System.IConvertible)
  1064. extern void ConvertUtils_GetTypeInformation_mDC1A3965113C58B39741350A98D3444A1B4832D3 (void);
  1065. // 0x0000022C System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::IsConvertible(System.Type)
  1066. extern void ConvertUtils_IsConvertible_m7846788DF4E430D8CB8816322DD72FBBF0A111B3 (void);
  1067. // 0x0000022D System.TimeSpan Newtonsoft.Json.Utilities.ConvertUtils::ParseTimeSpan(System.String)
  1068. extern void ConvertUtils_ParseTimeSpan_m9E697B3AB3DB73C76A1FC1BA18D7ED949B9DAFB8 (void);
  1069. // 0x0000022E System.Func`2<System.Object,System.Object> Newtonsoft.Json.Utilities.ConvertUtils::CreateCastConverter(Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey)
  1070. extern void ConvertUtils_CreateCastConverter_mC4FC20A152D0583964ABEF5C6E8CE1EF73F98CB0 (void);
  1071. // 0x0000022F System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::TryConvert(System.Object,System.Globalization.CultureInfo,System.Type,System.Object&)
  1072. extern void ConvertUtils_TryConvert_mF23E4A4E3370EE0CF43F00A4D13EF82FB6FB8EA1 (void);
  1073. // 0x00000230 Newtonsoft.Json.Utilities.ConvertUtils/ConvertResult Newtonsoft.Json.Utilities.ConvertUtils::TryConvertInternal(System.Object,System.Globalization.CultureInfo,System.Type,System.Object&)
  1074. extern void ConvertUtils_TryConvertInternal_mFCA82EAAF3A945C4D6C9E8037D56ED1E31BD848E (void);
  1075. // 0x00000231 System.Object Newtonsoft.Json.Utilities.ConvertUtils::ConvertOrCast(System.Object,System.Globalization.CultureInfo,System.Type)
  1076. extern void ConvertUtils_ConvertOrCast_m5342EFB8ECBE5EE70DBEEA230D1CFC63198768F5 (void);
  1077. // 0x00000232 System.Object Newtonsoft.Json.Utilities.ConvertUtils::EnsureTypeAssignable(System.Object,System.Type,System.Type)
  1078. extern void ConvertUtils_EnsureTypeAssignable_m7A82659316500E70547421B8ACD6B6ED33C097B9 (void);
  1079. // 0x00000233 System.ComponentModel.TypeConverter Newtonsoft.Json.Utilities.ConvertUtils::GetConverter(System.Type)
  1080. extern void ConvertUtils_GetConverter_m3A78C47F2CF7D9A593F874830E240144B13EB8F9 (void);
  1081. // 0x00000234 System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::VersionTryParse(System.String,System.Version&)
  1082. extern void ConvertUtils_VersionTryParse_m951CD31D6B9816FBFA27309397812D8D83E0C218 (void);
  1083. // 0x00000235 System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::IsInteger(System.Object)
  1084. extern void ConvertUtils_IsInteger_m112556CA336C9B7BC658835DCD79DF97C62F0EF0 (void);
  1085. // 0x00000236 Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::Int32TryParse(System.Char[],System.Int32,System.Int32,System.Int32&)
  1086. extern void ConvertUtils_Int32TryParse_m79EC579B93ED23CAE486E802ECB57836B5577175 (void);
  1087. // 0x00000237 Newtonsoft.Json.Utilities.ParseResult Newtonsoft.Json.Utilities.ConvertUtils::Int64TryParse(System.Char[],System.Int32,System.Int32,System.Int64&)
  1088. extern void ConvertUtils_Int64TryParse_mD1CA1A608FDF391E70C4C8E54A24CF7EB52A3EDA (void);
  1089. // 0x00000238 System.Boolean Newtonsoft.Json.Utilities.ConvertUtils::TryConvertGuid(System.String,System.Guid&)
  1090. extern void ConvertUtils_TryConvertGuid_m6407FC5DAE151CAA6A31C1FE13261C6999EE098B (void);
  1091. // 0x00000239 System.Int32 Newtonsoft.Json.Utilities.ConvertUtils::HexTextToInt(System.Char[],System.Int32,System.Int32)
  1092. extern void ConvertUtils_HexTextToInt_m152878747FB1D413DC5A86A004ED615CDBF711E4 (void);
  1093. // 0x0000023A System.Int32 Newtonsoft.Json.Utilities.ConvertUtils::HexCharToInt(System.Char)
  1094. extern void ConvertUtils_HexCharToInt_m169F82A56A06CBD2F22E4D76E46B5C35F9F3956A (void);
  1095. // 0x0000023B System.Void Newtonsoft.Json.Utilities.ConvertUtils::.cctor()
  1096. extern void ConvertUtils__cctor_mE5454E60C4CDD8511B2E158013A1068FA28C920A (void);
  1097. // 0x0000023C System.Type Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::get_InitialType()
  1098. extern void TypeConvertKey_get_InitialType_m2672D4C423F105D7036F00FCF1A8C9FF7141292D (void);
  1099. // 0x0000023D System.Type Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::get_TargetType()
  1100. extern void TypeConvertKey_get_TargetType_m42A90982418CA92A7CC99C23007A9F0A8D9353C4 (void);
  1101. // 0x0000023E System.Void Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::.ctor(System.Type,System.Type)
  1102. extern void TypeConvertKey__ctor_mE7D0FEEB17A875CA3F8E0180A6E2F811F076097E (void);
  1103. // 0x0000023F System.Int32 Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::GetHashCode()
  1104. extern void TypeConvertKey_GetHashCode_m53EEF50076A23F2DD2069C13D70FE12480A72EC6 (void);
  1105. // 0x00000240 System.Boolean Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::Equals(System.Object)
  1106. extern void TypeConvertKey_Equals_mBEC43674C2C9C1B78030AD4CC1715062E0DD09CC (void);
  1107. // 0x00000241 System.Boolean Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey::Equals(Newtonsoft.Json.Utilities.ConvertUtils/TypeConvertKey)
  1108. extern void TypeConvertKey_Equals_mCFB617A4360BB185698B4EC5B25BEC2BD0876D79 (void);
  1109. // 0x00000242 System.Void Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass9_0::.ctor()
  1110. extern void U3CU3Ec__DisplayClass9_0__ctor_m4653E8351F4D11A3B08E53288804CEE1426865AE (void);
  1111. // 0x00000243 System.Object Newtonsoft.Json.Utilities.ConvertUtils/<>c__DisplayClass9_0::<CreateCastConverter>b__0(System.Object)
  1112. extern void U3CU3Ec__DisplayClass9_0_U3CCreateCastConverterU3Eb__0_m975EB3858A619504CD18AD42480412E4AE43087F (void);
  1113. // 0x00000244 System.Object Newtonsoft.Json.Utilities.IWrappedCollection::get_UnderlyingCollection()
  1114. // 0x00000245 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::Add(T)
  1115. // 0x00000246 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::Clear()
  1116. // 0x00000247 System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::Contains(T)
  1117. // 0x00000248 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::CopyTo(T[],System.Int32)
  1118. // 0x00000249 System.Int32 Newtonsoft.Json.Utilities.CollectionWrapper`1::get_Count()
  1119. // 0x0000024A System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::get_IsReadOnly()
  1120. // 0x0000024B System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::Remove(T)
  1121. // 0x0000024C System.Collections.Generic.IEnumerator`1<T> Newtonsoft.Json.Utilities.CollectionWrapper`1::GetEnumerator()
  1122. // 0x0000024D System.Collections.IEnumerator Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IEnumerable.GetEnumerator()
  1123. // 0x0000024E System.Int32 Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.Add(System.Object)
  1124. // 0x0000024F System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.Contains(System.Object)
  1125. // 0x00000250 System.Int32 Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.IndexOf(System.Object)
  1126. // 0x00000251 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.RemoveAt(System.Int32)
  1127. // 0x00000252 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.Insert(System.Int32,System.Object)
  1128. // 0x00000253 System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.get_IsFixedSize()
  1129. // 0x00000254 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.Remove(System.Object)
  1130. // 0x00000255 System.Object Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.get_Item(System.Int32)
  1131. // 0x00000256 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.IList.set_Item(System.Int32,System.Object)
  1132. // 0x00000257 System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  1133. // 0x00000258 System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.ICollection.get_IsSynchronized()
  1134. // 0x00000259 System.Object Newtonsoft.Json.Utilities.CollectionWrapper`1::System.Collections.ICollection.get_SyncRoot()
  1135. // 0x0000025A System.Void Newtonsoft.Json.Utilities.CollectionWrapper`1::VerifyValueType(System.Object)
  1136. // 0x0000025B System.Boolean Newtonsoft.Json.Utilities.CollectionWrapper`1::IsCompatibleObject(System.Object)
  1137. // 0x0000025C System.Object Newtonsoft.Json.Utilities.CollectionWrapper`1::get_UnderlyingCollection()
  1138. // 0x0000025D System.Void Newtonsoft.Json.Utilities.DateTimeUtils::.cctor()
  1139. extern void DateTimeUtils__cctor_m5AFBE6D991F5C3C74723F951DB8DDF732BED871E (void);
  1140. // 0x0000025E System.TimeSpan Newtonsoft.Json.Utilities.DateTimeUtils::GetUtcOffset(System.DateTime)
  1141. extern void DateTimeUtils_GetUtcOffset_m0BA1150CF6D6788D0DB48F9E8F2315D3715325BC (void);
  1142. // 0x0000025F System.Xml.XmlDateTimeSerializationMode Newtonsoft.Json.Utilities.DateTimeUtils::ToSerializationMode(System.DateTimeKind)
  1143. extern void DateTimeUtils_ToSerializationMode_m62688A4C52F864A8A3A098E3619EFD5F001277CF (void);
  1144. // 0x00000260 System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::EnsureDateTime(System.DateTime,Newtonsoft.Json.DateTimeZoneHandling)
  1145. extern void DateTimeUtils_EnsureDateTime_mA9C81B70265DE2FF1B81DB8C98C807371F3BD6F2 (void);
  1146. // 0x00000261 System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::SwitchToLocalTime(System.DateTime)
  1147. extern void DateTimeUtils_SwitchToLocalTime_m644166BB5495A572C0BE081B624E74A786A35A0B (void);
  1148. // 0x00000262 System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::SwitchToUtcTime(System.DateTime)
  1149. extern void DateTimeUtils_SwitchToUtcTime_m6C872D71658CF80A9E86BD46316CB66709686E8B (void);
  1150. // 0x00000263 System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ToUniversalTicks(System.DateTime)
  1151. extern void DateTimeUtils_ToUniversalTicks_mE2F9BF4AD99DC897FF3E887815F1FA88B6A58055 (void);
  1152. // 0x00000264 System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ToUniversalTicks(System.DateTime,System.TimeSpan)
  1153. extern void DateTimeUtils_ToUniversalTicks_mF49B89CCEA02BCDD7664860439B5D2E3EF016C1B (void);
  1154. // 0x00000265 System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime,System.TimeSpan)
  1155. extern void DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m908DDC9C6C8BF5A612CB03EB8D92ADB37B55E413 (void);
  1156. // 0x00000266 System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime)
  1157. extern void DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m9529F1BB601C2BAADFB2DC9CF539D74C1D066A3D (void);
  1158. // 0x00000267 System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::ConvertDateTimeToJavaScriptTicks(System.DateTime,System.Boolean)
  1159. extern void DateTimeUtils_ConvertDateTimeToJavaScriptTicks_mFE7CD69E1478C1C17C52E5A508E8EF5ACA27985C (void);
  1160. // 0x00000268 System.Int64 Newtonsoft.Json.Utilities.DateTimeUtils::UniversialTicksToJavaScriptTicks(System.Int64)
  1161. extern void DateTimeUtils_UniversialTicksToJavaScriptTicks_m565EB3DB2ED113380F278163C960509D208209AC (void);
  1162. // 0x00000269 System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::ConvertJavaScriptTicksToDateTime(System.Int64)
  1163. extern void DateTimeUtils_ConvertJavaScriptTicksToDateTime_mF85E32259FE37728425C732C39889B16A73BE9D5 (void);
  1164. // 0x0000026A System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeIso(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.DateTime&)
  1165. extern void DateTimeUtils_TryParseDateTimeIso_m7806DF7A51BDEFA9D50BA4A993E9B8D97EE0AB3D (void);
  1166. // 0x0000026B System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetIso(Newtonsoft.Json.Utilities.StringReference,System.DateTimeOffset&)
  1167. extern void DateTimeUtils_TryParseDateTimeOffsetIso_mFF737B4C6F2EB72F467997A7AADEBF25DC3F6336 (void);
  1168. // 0x0000026C System.DateTime Newtonsoft.Json.Utilities.DateTimeUtils::CreateDateTime(Newtonsoft.Json.Utilities.DateTimeParser)
  1169. extern void DateTimeUtils_CreateDateTime_mA0B2A67ADC65C233BCF0A7025B5DFEAB58C4BA30 (void);
  1170. // 0x0000026D System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
  1171. extern void DateTimeUtils_TryParseDateTime_mCEB26B83D801FFA9F6DB95A28F3A6ED32F104554 (void);
  1172. // 0x0000026E System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTime(System.String,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
  1173. extern void DateTimeUtils_TryParseDateTime_mD4CDAE4B70AEF627B730050371E76DF03D85AA2E (void);
  1174. // 0x0000026F System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffset(Newtonsoft.Json.Utilities.StringReference,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
  1175. extern void DateTimeUtils_TryParseDateTimeOffset_m9CF9DE65CBC4D965F54B811A4088B1BFE1AADB0A (void);
  1176. // 0x00000270 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffset(System.String,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
  1177. extern void DateTimeUtils_TryParseDateTimeOffset_m897C8372ED1E1537E51C1E1135DFE1ABB62E4FC7 (void);
  1178. // 0x00000271 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseMicrosoftDate(Newtonsoft.Json.Utilities.StringReference,System.Int64&,System.TimeSpan&,System.DateTimeKind&)
  1179. extern void DateTimeUtils_TryParseMicrosoftDate_m025C57B42BD8AFD8B3418FD515C076BC94CDF59D (void);
  1180. // 0x00000272 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeMicrosoft(Newtonsoft.Json.Utilities.StringReference,Newtonsoft.Json.DateTimeZoneHandling,System.DateTime&)
  1181. extern void DateTimeUtils_TryParseDateTimeMicrosoft_m885A3BC853E81284B05B0F81840BCDB99B9DF542 (void);
  1182. // 0x00000273 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeExact(System.String,Newtonsoft.Json.DateTimeZoneHandling,System.String,System.Globalization.CultureInfo,System.DateTime&)
  1183. extern void DateTimeUtils_TryParseDateTimeExact_mB472AE59F30A5DA5C9D25886503BD11E54EE9800 (void);
  1184. // 0x00000274 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetMicrosoft(Newtonsoft.Json.Utilities.StringReference,System.DateTimeOffset&)
  1185. extern void DateTimeUtils_TryParseDateTimeOffsetMicrosoft_mC3FD84162A4F5ADA3CC34C754BC6FF94AA7A6A0C (void);
  1186. // 0x00000275 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryParseDateTimeOffsetExact(System.String,System.String,System.Globalization.CultureInfo,System.DateTimeOffset&)
  1187. extern void DateTimeUtils_TryParseDateTimeOffsetExact_m36A41717F3FA6733B1ADCC8DBF6E4B20155A140F (void);
  1188. // 0x00000276 System.Boolean Newtonsoft.Json.Utilities.DateTimeUtils::TryReadOffset(Newtonsoft.Json.Utilities.StringReference,System.Int32,System.TimeSpan&)
  1189. extern void DateTimeUtils_TryReadOffset_m237AF52E8220DAE6C8F8D84D6716360B51DBC433 (void);
  1190. // 0x00000277 System.Void Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeString(System.IO.TextWriter,System.DateTime,Newtonsoft.Json.DateFormatHandling,System.String,System.Globalization.CultureInfo)
  1191. extern void DateTimeUtils_WriteDateTimeString_m885575A8116AAC5F71C6B37CA9D24B7B62A11502 (void);
  1192. // 0x00000278 System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeString(System.Char[],System.Int32,System.DateTime,System.Nullable`1<System.TimeSpan>,System.DateTimeKind,Newtonsoft.Json.DateFormatHandling)
  1193. extern void DateTimeUtils_WriteDateTimeString_mC9D544EB5C0D8E491CFCB28FA4D148BB91A49A0F (void);
  1194. // 0x00000279 System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDefaultIsoDate(System.Char[],System.Int32,System.DateTime)
  1195. extern void DateTimeUtils_WriteDefaultIsoDate_m92CFB95DF817B99015644ADA1D138893D8630DC6 (void);
  1196. // 0x0000027A System.Void Newtonsoft.Json.Utilities.DateTimeUtils::CopyIntToCharArray(System.Char[],System.Int32,System.Int32,System.Int32)
  1197. extern void DateTimeUtils_CopyIntToCharArray_mE2577B0ADDEE8F2C0368228A30A6CFEC7E16A4B0 (void);
  1198. // 0x0000027B System.Int32 Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeOffset(System.Char[],System.Int32,System.TimeSpan,Newtonsoft.Json.DateFormatHandling)
  1199. extern void DateTimeUtils_WriteDateTimeOffset_m647C83899A3F870709FCDE7BFD62272A387F438A (void);
  1200. // 0x0000027C System.Void Newtonsoft.Json.Utilities.DateTimeUtils::WriteDateTimeOffsetString(System.IO.TextWriter,System.DateTimeOffset,Newtonsoft.Json.DateFormatHandling,System.String,System.Globalization.CultureInfo)
  1201. extern void DateTimeUtils_WriteDateTimeOffsetString_m742639F14A65B8FDEEDEFBAFAE6AD16C89F5CB23 (void);
  1202. // 0x0000027D System.Void Newtonsoft.Json.Utilities.DateTimeUtils::GetDateValues(System.DateTime,System.Int32&,System.Int32&,System.Int32&)
  1203. extern void DateTimeUtils_GetDateValues_m5C12A40C7AD3C1DABFFAB67AA880EC4C32582A8D (void);
  1204. // 0x0000027E System.Object Newtonsoft.Json.Utilities.IWrappedDictionary::get_UnderlyingDictionary()
  1205. // 0x0000027F System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::Add(TKey,TValue)
  1206. // 0x00000280 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::ContainsKey(TKey)
  1207. // 0x00000281 System.Collections.Generic.ICollection`1<TKey> Newtonsoft.Json.Utilities.DictionaryWrapper`2::get_Keys()
  1208. // 0x00000282 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::Remove(TKey)
  1209. // 0x00000283 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::TryGetValue(TKey,TValue&)
  1210. // 0x00000284 System.Collections.Generic.ICollection`1<TValue> Newtonsoft.Json.Utilities.DictionaryWrapper`2::get_Values()
  1211. // 0x00000285 TValue Newtonsoft.Json.Utilities.DictionaryWrapper`2::get_Item(TKey)
  1212. // 0x00000286 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::set_Item(TKey,TValue)
  1213. // 0x00000287 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::Add(System.Collections.Generic.KeyValuePair`2<TKey,TValue>)
  1214. // 0x00000288 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::Clear()
  1215. // 0x00000289 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::Contains(System.Collections.Generic.KeyValuePair`2<TKey,TValue>)
  1216. // 0x0000028A System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::CopyTo(System.Collections.Generic.KeyValuePair`2<TKey,TValue>[],System.Int32)
  1217. // 0x0000028B System.Int32 Newtonsoft.Json.Utilities.DictionaryWrapper`2::get_Count()
  1218. // 0x0000028C System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::get_IsReadOnly()
  1219. // 0x0000028D System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::Remove(System.Collections.Generic.KeyValuePair`2<TKey,TValue>)
  1220. // 0x0000028E System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TKey,TValue>> Newtonsoft.Json.Utilities.DictionaryWrapper`2::GetEnumerator()
  1221. // 0x0000028F System.Collections.IEnumerator Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IEnumerable.GetEnumerator()
  1222. // 0x00000290 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.Add(System.Object,System.Object)
  1223. // 0x00000291 System.Object Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.get_Item(System.Object)
  1224. // 0x00000292 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.set_Item(System.Object,System.Object)
  1225. // 0x00000293 System.Collections.IDictionaryEnumerator Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.GetEnumerator()
  1226. // 0x00000294 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.Contains(System.Object)
  1227. // 0x00000295 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.get_IsFixedSize()
  1228. // 0x00000296 System.Collections.ICollection Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.get_Keys()
  1229. // 0x00000297 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::Remove(System.Object)
  1230. // 0x00000298 System.Collections.ICollection Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.IDictionary.get_Values()
  1231. // 0x00000299 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  1232. // 0x0000029A System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.ICollection.get_IsSynchronized()
  1233. // 0x0000029B System.Object Newtonsoft.Json.Utilities.DictionaryWrapper`2::System.Collections.ICollection.get_SyncRoot()
  1234. // 0x0000029C System.Object Newtonsoft.Json.Utilities.DictionaryWrapper`2::get_UnderlyingDictionary()
  1235. // 0x0000029D System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::.ctor(System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<TEnumeratorKey,TEnumeratorValue>>)
  1236. // 0x0000029E System.Collections.DictionaryEntry Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::get_Entry()
  1237. // 0x0000029F System.Object Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::get_Key()
  1238. // 0x000002A0 System.Object Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::get_Value()
  1239. // 0x000002A1 System.Object Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::get_Current()
  1240. // 0x000002A2 System.Boolean Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::MoveNext()
  1241. // 0x000002A3 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2/DictionaryEnumerator`2::Reset()
  1242. // 0x000002A4 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2/<>c::.cctor()
  1243. // 0x000002A5 System.Void Newtonsoft.Json.Utilities.DictionaryWrapper`2/<>c::.ctor()
  1244. // 0x000002A6 System.Collections.Generic.KeyValuePair`2<TKey,TValue> Newtonsoft.Json.Utilities.DictionaryWrapper`2/<>c::<GetEnumerator>b__25_0(System.Collections.DictionaryEntry)
  1245. // 0x000002A7 Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.String> Newtonsoft.Json.Utilities.EnumUtils::InitializeEnumType(System.Type)
  1246. extern void EnumUtils_InitializeEnumType_m713B5D6AFD555A85F9EF8B71D5529E704AC37846 (void);
  1247. // 0x000002A8 System.Collections.Generic.IList`1<System.Object> Newtonsoft.Json.Utilities.EnumUtils::GetValues(System.Type)
  1248. extern void EnumUtils_GetValues_m0B62C0CEF1CAE80FC9F722D84F1D7D5AA56C7D58 (void);
  1249. // 0x000002A9 System.Object Newtonsoft.Json.Utilities.EnumUtils::ParseEnumName(System.String,System.Boolean,System.Type)
  1250. extern void EnumUtils_ParseEnumName_m98F7C54DE44CCE14BB7F682B7B8B5AB16730FEDE (void);
  1251. // 0x000002AA System.String Newtonsoft.Json.Utilities.EnumUtils::ToEnumName(System.Type,System.String,System.Boolean)
  1252. extern void EnumUtils_ToEnumName_m044649ACED3B32011FBA4D6A0F46D51BC38095B2 (void);
  1253. // 0x000002AB System.String Newtonsoft.Json.Utilities.EnumUtils::ResolvedEnumName(Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.String>,System.String)
  1254. extern void EnumUtils_ResolvedEnumName_mAD7EA279305E7685F5EBB60E198A571E21ADF120 (void);
  1255. // 0x000002AC System.Void Newtonsoft.Json.Utilities.EnumUtils::.cctor()
  1256. extern void EnumUtils__cctor_m963D0CEA5E94E2E98C5AF08C50C7D57DD19D819A (void);
  1257. // 0x000002AD System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c::.cctor()
  1258. extern void U3CU3Ec__cctor_m3E691EABF39DFA96C9C95DF752360C493D82BAFF (void);
  1259. // 0x000002AE System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c::.ctor()
  1260. extern void U3CU3Ec__ctor_m44DED9A94D6B8FEE56E0C7D65018B05371398247 (void);
  1261. // 0x000002AF System.String Newtonsoft.Json.Utilities.EnumUtils/<>c::<InitializeEnumType>b__1_0(System.Runtime.Serialization.EnumMemberAttribute)
  1262. extern void U3CU3Ec_U3CInitializeEnumTypeU3Eb__1_0_mF3B966590EAA425C2876209B94A65D2055AE4A46 (void);
  1263. // 0x000002B0 System.Boolean Newtonsoft.Json.Utilities.EnumUtils/<>c::<GetValues>b__5_0(System.Reflection.FieldInfo)
  1264. extern void U3CU3Ec_U3CGetValuesU3Eb__5_0_m8821A781D3A878CF0320AB0157C69CDE323A4B59 (void);
  1265. // 0x000002B1 System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c__2`1::.cctor()
  1266. // 0x000002B2 System.Void Newtonsoft.Json.Utilities.EnumUtils/<>c__2`1::.ctor()
  1267. // 0x000002B3 System.Char[] Newtonsoft.Json.Utilities.BufferUtils::RentBuffer(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32)
  1268. extern void BufferUtils_RentBuffer_mAA330DE168C66ECDC06B75C6832C4B2FEFF31BEF (void);
  1269. // 0x000002B4 System.Void Newtonsoft.Json.Utilities.BufferUtils::ReturnBuffer(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[])
  1270. extern void BufferUtils_ReturnBuffer_mD8347E5FB054A320D755A11EA92263A6E8BAC494 (void);
  1271. // 0x000002B5 System.Char[] Newtonsoft.Json.Utilities.BufferUtils::EnsureBufferSize(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32,System.Char[])
  1272. extern void BufferUtils_EnsureBufferSize_m422B0C50E181D98372CB02E1596FE80E845ED44D (void);
  1273. // 0x000002B6 System.Void Newtonsoft.Json.Utilities.JavaScriptUtils::.cctor()
  1274. extern void JavaScriptUtils__cctor_m38F1787BA34FE254C001E0871F1B8A47F53E93F1 (void);
  1275. // 0x000002B7 System.Boolean[] Newtonsoft.Json.Utilities.JavaScriptUtils::GetCharEscapeFlags(Newtonsoft.Json.StringEscapeHandling,System.Char)
  1276. extern void JavaScriptUtils_GetCharEscapeFlags_mF11B28D71DA1AEC43670A3D0380FF6151BD7E134 (void);
  1277. // 0x000002B8 System.Boolean Newtonsoft.Json.Utilities.JavaScriptUtils::ShouldEscapeJavaScriptString(System.String,System.Boolean[])
  1278. extern void JavaScriptUtils_ShouldEscapeJavaScriptString_mB22ED650CCB389F31922358027D872C1970895D4 (void);
  1279. // 0x000002B9 System.Void Newtonsoft.Json.Utilities.JavaScriptUtils::WriteEscapedJavaScriptString(System.IO.TextWriter,System.String,System.Char,System.Boolean,System.Boolean[],Newtonsoft.Json.StringEscapeHandling,Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[]&)
  1280. extern void JavaScriptUtils_WriteEscapedJavaScriptString_mF996F5B009DFE5F76A8F966BF531C9B1045A718B (void);
  1281. // 0x000002BA System.String Newtonsoft.Json.Utilities.JavaScriptUtils::ToEscapedJavaScriptString(System.String,System.Char,System.Boolean,Newtonsoft.Json.StringEscapeHandling)
  1282. extern void JavaScriptUtils_ToEscapedJavaScriptString_mCCF653C43DCE50A3BF1A8EAC20422C22FC3BF56C (void);
  1283. // 0x000002BB System.Int32 Newtonsoft.Json.Utilities.StringBuffer::get_Position()
  1284. extern void StringBuffer_get_Position_m50180D85B49F259316CFFA19E69FAC2DFEE07E1A (void);
  1285. // 0x000002BC System.Void Newtonsoft.Json.Utilities.StringBuffer::set_Position(System.Int32)
  1286. extern void StringBuffer_set_Position_m9EAB48EB3E1072B0C51957B5B57534A47936B6F0 (void);
  1287. // 0x000002BD System.Boolean Newtonsoft.Json.Utilities.StringBuffer::get_IsEmpty()
  1288. extern void StringBuffer_get_IsEmpty_mA9327C7B60B8C4EABD2FA9855F915B21B3E1826A (void);
  1289. // 0x000002BE System.Void Newtonsoft.Json.Utilities.StringBuffer::.ctor(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32)
  1290. extern void StringBuffer__ctor_m08F0B2D8BB62799D7A9F96A04B8B558A8C870BF7 (void);
  1291. // 0x000002BF System.Void Newtonsoft.Json.Utilities.StringBuffer::.ctor(System.Char[])
  1292. extern void StringBuffer__ctor_m44E883E835181DBEF9FA86E3294D91042A914544 (void);
  1293. // 0x000002C0 System.Void Newtonsoft.Json.Utilities.StringBuffer::Append(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char)
  1294. extern void StringBuffer_Append_mEB587A612A423C0EEA858CF2F855623B6CFAAD6C (void);
  1295. // 0x000002C1 System.Void Newtonsoft.Json.Utilities.StringBuffer::Append(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Char[],System.Int32,System.Int32)
  1296. extern void StringBuffer_Append_mB7D099F26B74FF44D0062E65145EC09AAA68C582 (void);
  1297. // 0x000002C2 System.Void Newtonsoft.Json.Utilities.StringBuffer::Clear(Newtonsoft.Json.IArrayPool`1<System.Char>)
  1298. extern void StringBuffer_Clear_m16AE9943CA16BE8D3F273FF14AAAF90DA2333DC6 (void);
  1299. // 0x000002C3 System.Void Newtonsoft.Json.Utilities.StringBuffer::EnsureSize(Newtonsoft.Json.IArrayPool`1<System.Char>,System.Int32)
  1300. extern void StringBuffer_EnsureSize_mFC7C6C8641DA97CA1E33FEFA3E2356BEE2A38CE7 (void);
  1301. // 0x000002C4 System.String Newtonsoft.Json.Utilities.StringBuffer::ToString()
  1302. extern void StringBuffer_ToString_mB30A25624FBAFD98074B4A62E17FF44026FB6A2F (void);
  1303. // 0x000002C5 System.String Newtonsoft.Json.Utilities.StringBuffer::ToString(System.Int32,System.Int32)
  1304. extern void StringBuffer_ToString_mE358A765D39BC6A53424A5E24CFC95B0E1440A0F (void);
  1305. // 0x000002C6 System.Char[] Newtonsoft.Json.Utilities.StringBuffer::get_InternalBuffer()
  1306. extern void StringBuffer_get_InternalBuffer_mF2FB70B40A70E2D2ABE71242031EE4AB957D41C1 (void);
  1307. // 0x000002C7 System.Boolean Newtonsoft.Json.Utilities.CollectionUtils::IsNullOrEmpty(System.Collections.Generic.ICollection`1<T>)
  1308. // 0x000002C8 System.Void Newtonsoft.Json.Utilities.CollectionUtils::AddRange(System.Collections.Generic.IList`1<T>,System.Collections.Generic.IEnumerable`1<T>)
  1309. // 0x000002C9 System.Void Newtonsoft.Json.Utilities.CollectionUtils::AddRange(System.Collections.Generic.IList`1<T>,System.Collections.IEnumerable)
  1310. // 0x000002CA System.Boolean Newtonsoft.Json.Utilities.CollectionUtils::IsDictionaryType(System.Type)
  1311. extern void CollectionUtils_IsDictionaryType_mCEBF4924207058D598A85B7212DF64081C8223B1 (void);
  1312. // 0x000002CB System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type)
  1313. extern void CollectionUtils_ResolveEnumerableCollectionConstructor_mF47E2465D637C2E2A546D64D1704AD3DEAFF690F (void);
  1314. // 0x000002CC System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.CollectionUtils::ResolveEnumerableCollectionConstructor(System.Type,System.Type,System.Type)
  1315. extern void CollectionUtils_ResolveEnumerableCollectionConstructor_m9A580D7686D6FF8EF47068D66850BF97018F25D0 (void);
  1316. // 0x000002CD System.Int32 Newtonsoft.Json.Utilities.CollectionUtils::IndexOf(System.Collections.Generic.IEnumerable`1<T>,System.Func`2<T,System.Boolean>)
  1317. // 0x000002CE System.Boolean Newtonsoft.Json.Utilities.CollectionUtils::Contains(System.Collections.Generic.List`1<T>,T,System.Collections.IEqualityComparer)
  1318. // 0x000002CF System.Int32 Newtonsoft.Json.Utilities.CollectionUtils::IndexOfReference(System.Collections.Generic.List`1<T>,T)
  1319. // 0x000002D0 System.Collections.Generic.IList`1<System.Int32> Newtonsoft.Json.Utilities.CollectionUtils::GetDimensions(System.Collections.IList,System.Int32)
  1320. extern void CollectionUtils_GetDimensions_m9B973A4F638E04E6D1BA430D4C46108C0F494D2C (void);
  1321. // 0x000002D1 System.Void Newtonsoft.Json.Utilities.CollectionUtils::CopyFromJaggedToMultidimensionalArray(System.Collections.IList,System.Array,System.Int32[])
  1322. extern void CollectionUtils_CopyFromJaggedToMultidimensionalArray_mB2E42969755789C966820C100174C84C9D19A3D2 (void);
  1323. // 0x000002D2 System.Object Newtonsoft.Json.Utilities.CollectionUtils::JaggedArrayGetValue(System.Collections.IList,System.Int32[])
  1324. extern void CollectionUtils_JaggedArrayGetValue_m662751C0A714033110043FDCB6AF04079DB0564C (void);
  1325. // 0x000002D3 System.Array Newtonsoft.Json.Utilities.CollectionUtils::ToMultidimensionalArray(System.Collections.IList,System.Type,System.Int32)
  1326. extern void CollectionUtils_ToMultidimensionalArray_mEF33A26A2B907B40AD3479F6058BDDC2AE1F50F7 (void);
  1327. // 0x000002D4 System.Int32 Newtonsoft.Json.Utilities.MathUtils::IntLength(System.UInt64)
  1328. extern void MathUtils_IntLength_m3CA8B0EF3B9D2007346BB2F1199B4B689B241AE4 (void);
  1329. // 0x000002D5 System.Char Newtonsoft.Json.Utilities.MathUtils::IntToHex(System.Int32)
  1330. extern void MathUtils_IntToHex_m08096A8BF367E08EC0F0BE10D22FD5F167E5030D (void);
  1331. // 0x000002D6 System.Boolean Newtonsoft.Json.Utilities.MathUtils::ApproxEquals(System.Double,System.Double)
  1332. extern void MathUtils_ApproxEquals_mB0A475E4963DE685D914DE0AF9992A6456863989 (void);
  1333. // 0x000002D7 System.Void Newtonsoft.Json.Utilities.Creator`1::.ctor(System.Object,System.IntPtr)
  1334. // 0x000002D8 T Newtonsoft.Json.Utilities.Creator`1::Invoke()
  1335. // 0x000002D9 System.Boolean Newtonsoft.Json.Utilities.MiscellaneousUtils::ValueEquals(System.Object,System.Object)
  1336. extern void MiscellaneousUtils_ValueEquals_m8749F7268F821E23B71CFCE98F2F5DD0C1EBE144 (void);
  1337. // 0x000002DA System.ArgumentOutOfRangeException Newtonsoft.Json.Utilities.MiscellaneousUtils::CreateArgumentOutOfRangeException(System.String,System.Object,System.String)
  1338. extern void MiscellaneousUtils_CreateArgumentOutOfRangeException_m3ABA61F92D22277F24C19EA1D9B8E0EC56D955DE (void);
  1339. // 0x000002DB System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::ToString(System.Object)
  1340. extern void MiscellaneousUtils_ToString_m2D126679C19F182E38EE06CF852B8DE7B872A40B (void);
  1341. // 0x000002DC System.Int32 Newtonsoft.Json.Utilities.MiscellaneousUtils::ByteArrayCompare(System.Byte[],System.Byte[])
  1342. extern void MiscellaneousUtils_ByteArrayCompare_m8CE377C6213B857025B57C4C46F4B21E49CC77EC (void);
  1343. // 0x000002DD System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::GetPrefix(System.String)
  1344. extern void MiscellaneousUtils_GetPrefix_mA69C5A131357489B6BAA32B88B09219F862DD337 (void);
  1345. // 0x000002DE System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::GetLocalName(System.String)
  1346. extern void MiscellaneousUtils_GetLocalName_m937BEFD1B1D5E23441DED4A9FD78F10D83176F73 (void);
  1347. // 0x000002DF System.Void Newtonsoft.Json.Utilities.MiscellaneousUtils::GetQualifiedNameParts(System.String,System.String&,System.String&)
  1348. extern void MiscellaneousUtils_GetQualifiedNameParts_m4FD35EE1420185E2AC8A3FC5224FFE9D2F8C7742 (void);
  1349. // 0x000002E0 System.String Newtonsoft.Json.Utilities.MiscellaneousUtils::FormatValueForPrint(System.Object)
  1350. extern void MiscellaneousUtils_FormatValueForPrint_m4A7E1EBA219444902294E98F427D5EB44B599C0F (void);
  1351. // 0x000002E1 System.Void Newtonsoft.Json.Utilities.ReflectionUtils::.cctor()
  1352. extern void ReflectionUtils__cctor_m6818590DEFAD41CF4222277D603049063300049E (void);
  1353. // 0x000002E2 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsVirtual(System.Reflection.PropertyInfo)
  1354. extern void ReflectionUtils_IsVirtual_m5E3C3F5E5935BFE21832F5B3445C3AC12F3855E9 (void);
  1355. // 0x000002E3 System.Reflection.MethodInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetBaseDefinition(System.Reflection.PropertyInfo)
  1356. extern void ReflectionUtils_GetBaseDefinition_m67824E17C1BBD63AB035FB49B76229EC0560677E (void);
  1357. // 0x000002E4 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsPublic(System.Reflection.PropertyInfo)
  1358. extern void ReflectionUtils_IsPublic_m2C0A4E6CA4D843C494B93AEB4F2B5B22E40A028F (void);
  1359. // 0x000002E5 System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetObjectType(System.Object)
  1360. extern void ReflectionUtils_GetObjectType_m61F92E702AAAC35CC8EF0B094FC71656E292E5C9 (void);
  1361. // 0x000002E6 System.String Newtonsoft.Json.Utilities.ReflectionUtils::GetTypeName(System.Type,System.Runtime.Serialization.Formatters.FormatterAssemblyStyle,System.Runtime.Serialization.SerializationBinder)
  1362. extern void ReflectionUtils_GetTypeName_mAE9186A1EE728CB6DD3A5CD54597C908BFFE5BF3 (void);
  1363. // 0x000002E7 System.String Newtonsoft.Json.Utilities.ReflectionUtils::RemoveAssemblyDetails(System.String)
  1364. extern void ReflectionUtils_RemoveAssemblyDetails_m3408042C07101E511DB26E006F5FFFFD154DE033 (void);
  1365. // 0x000002E8 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::HasDefaultConstructor(System.Type,System.Boolean)
  1366. extern void ReflectionUtils_HasDefaultConstructor_mEE25FD0D3849116D9A71E3119522AF925FA3DDA2 (void);
  1367. // 0x000002E9 System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(System.Type)
  1368. extern void ReflectionUtils_GetDefaultConstructor_m50B91B72CF6116D8900DB553DF4ABDAA4D0DD8B1 (void);
  1369. // 0x000002EA System.Reflection.ConstructorInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultConstructor(System.Type,System.Boolean)
  1370. extern void ReflectionUtils_GetDefaultConstructor_m4C6572BA56D0BC153622364430A50457316A8E00 (void);
  1371. // 0x000002EB System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsNullable(System.Type)
  1372. extern void ReflectionUtils_IsNullable_m3314964E30F10876E7FD20D668ACA2F67323B2EE (void);
  1373. // 0x000002EC System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsNullableType(System.Type)
  1374. extern void ReflectionUtils_IsNullableType_m76171BDB57C5ABC45FA8E149B6B5688ED314E8F5 (void);
  1375. // 0x000002ED System.Type Newtonsoft.Json.Utilities.ReflectionUtils::EnsureNotNullableType(System.Type)
  1376. extern void ReflectionUtils_EnsureNotNullableType_mA821D80FE01893A4FC960623809AE370B4C10742 (void);
  1377. // 0x000002EE System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsGenericDefinition(System.Type,System.Type)
  1378. extern void ReflectionUtils_IsGenericDefinition_mA2F1D3F5BC69158AF227C5689CC39F5FDA2FC4E3 (void);
  1379. // 0x000002EF System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type)
  1380. extern void ReflectionUtils_ImplementsGenericDefinition_m6207F2FEED7C5DE7A6706D26040656D8B3B635DF (void);
  1381. // 0x000002F0 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::ImplementsGenericDefinition(System.Type,System.Type,System.Type&)
  1382. extern void ReflectionUtils_ImplementsGenericDefinition_m348F17ADEBDFF0EFE2B1C14356A9487DA04E53A8 (void);
  1383. // 0x000002F1 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type)
  1384. extern void ReflectionUtils_InheritsGenericDefinition_mC48B0831A355520CA35E8A1F92B5E7F2AD6047C3 (void);
  1385. // 0x000002F2 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinition(System.Type,System.Type,System.Type&)
  1386. extern void ReflectionUtils_InheritsGenericDefinition_m8276B12C2F328359F88CE33F496A8EEA62B18C9A (void);
  1387. // 0x000002F3 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::InheritsGenericDefinitionInternal(System.Type,System.Type,System.Type&)
  1388. extern void ReflectionUtils_InheritsGenericDefinitionInternal_mE86B1B9669D7240D201F35EB6D7791A246EE44E0 (void);
  1389. // 0x000002F4 System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetCollectionItemType(System.Type)
  1390. extern void ReflectionUtils_GetCollectionItemType_m8EC46416C4FDC314E1B9B1C4059195A864C9F111 (void);
  1391. // 0x000002F5 System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetDictionaryKeyValueTypes(System.Type,System.Type&,System.Type&)
  1392. extern void ReflectionUtils_GetDictionaryKeyValueTypes_mB9EBB6B6470ADED2CD2EEA6AC2A1AB37EC98DC39 (void);
  1393. // 0x000002F6 System.Type Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberUnderlyingType(System.Reflection.MemberInfo)
  1394. extern void ReflectionUtils_GetMemberUnderlyingType_m94F1EB793484B7FADC83A1AF36E98862918E00BA (void);
  1395. // 0x000002F7 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsIndexedProperty(System.Reflection.MemberInfo)
  1396. extern void ReflectionUtils_IsIndexedProperty_m45D58103C9DC9D7A573E63801BBCCF19EFA61BDA (void);
  1397. // 0x000002F8 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsIndexedProperty(System.Reflection.PropertyInfo)
  1398. extern void ReflectionUtils_IsIndexedProperty_m5D2A51E91596925FA727A58741B95B65866E8162 (void);
  1399. // 0x000002F9 System.Object Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberValue(System.Reflection.MemberInfo,System.Object)
  1400. extern void ReflectionUtils_GetMemberValue_m75D69FFAC261AFBE7EE8F952FD828B41E131BFD6 (void);
  1401. // 0x000002FA System.Void Newtonsoft.Json.Utilities.ReflectionUtils::SetMemberValue(System.Reflection.MemberInfo,System.Object,System.Object)
  1402. extern void ReflectionUtils_SetMemberValue_m2932AB649EE9B56618E6EDEF9C49C6E89560777A (void);
  1403. // 0x000002FB System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::CanReadMemberValue(System.Reflection.MemberInfo,System.Boolean)
  1404. extern void ReflectionUtils_CanReadMemberValue_m924E5AE82FD3A6F3168CC7A977C329F15D7B8B7C (void);
  1405. // 0x000002FC System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::CanSetMemberValue(System.Reflection.MemberInfo,System.Boolean,System.Boolean)
  1406. extern void ReflectionUtils_CanSetMemberValue_m767131759A73EBDE5E3E09A71BAB84D1F0BD7087 (void);
  1407. // 0x000002FD System.Collections.Generic.List`1<System.Reflection.MemberInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetFieldsAndProperties(System.Type,System.Reflection.BindingFlags)
  1408. extern void ReflectionUtils_GetFieldsAndProperties_m211CDF828C219605B15E088B613A1C923D67FAE4 (void);
  1409. // 0x000002FE System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils::IsOverridenGenericMember(System.Reflection.MemberInfo,System.Reflection.BindingFlags)
  1410. extern void ReflectionUtils_IsOverridenGenericMember_m8169762CBFAA28B9D10A92E2AA9CA5D01152AD1B (void);
  1411. // 0x000002FF T Newtonsoft.Json.Utilities.ReflectionUtils::GetAttribute(System.Object)
  1412. // 0x00000300 T Newtonsoft.Json.Utilities.ReflectionUtils::GetAttribute(System.Object,System.Boolean)
  1413. // 0x00000301 T[] Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(System.Object,System.Boolean)
  1414. // 0x00000302 System.Attribute[] Newtonsoft.Json.Utilities.ReflectionUtils::GetAttributes(System.Object,System.Type,System.Boolean)
  1415. extern void ReflectionUtils_GetAttributes_m83F5A3C879E6FCB9CEA8A7C258D8CEE723D72224 (void);
  1416. // 0x00000303 System.Void Newtonsoft.Json.Utilities.ReflectionUtils::SplitFullyQualifiedTypeName(System.String,System.String&,System.String&)
  1417. extern void ReflectionUtils_SplitFullyQualifiedTypeName_m92BD778731848AE37C27FB4AFFFBFD7536FE2FEB (void);
  1418. // 0x00000304 System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.ReflectionUtils::GetAssemblyDelimiterIndex(System.String)
  1419. extern void ReflectionUtils_GetAssemblyDelimiterIndex_m14990078E824FFB48C3BFD9C2840EFA8C5CE6944 (void);
  1420. // 0x00000305 System.Reflection.MemberInfo Newtonsoft.Json.Utilities.ReflectionUtils::GetMemberInfoFromType(System.Type,System.Reflection.MemberInfo)
  1421. extern void ReflectionUtils_GetMemberInfoFromType_m67086420E1ED4E5848D76D1DAA6EB1D5EDDF26B3 (void);
  1422. // 0x00000306 System.Collections.Generic.IEnumerable`1<System.Reflection.FieldInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetFields(System.Type,System.Reflection.BindingFlags)
  1423. extern void ReflectionUtils_GetFields_mCDB38A13357C9B711FC579D3F667C42082F1834C (void);
  1424. // 0x00000307 System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateFields(System.Collections.Generic.IList`1<System.Reflection.MemberInfo>,System.Type,System.Reflection.BindingFlags)
  1425. extern void ReflectionUtils_GetChildPrivateFields_m7EF77F114CD7B4B236983F281B96DD0D731C1F8F (void);
  1426. // 0x00000308 System.Collections.Generic.IEnumerable`1<System.Reflection.PropertyInfo> Newtonsoft.Json.Utilities.ReflectionUtils::GetProperties(System.Type,System.Reflection.BindingFlags)
  1427. extern void ReflectionUtils_GetProperties_mFEDD991ABAD2CCDF09676FCC70B49522C42DE5F2 (void);
  1428. // 0x00000309 System.Reflection.BindingFlags Newtonsoft.Json.Utilities.ReflectionUtils::RemoveFlag(System.Reflection.BindingFlags,System.Reflection.BindingFlags)
  1429. extern void ReflectionUtils_RemoveFlag_m36A4700E23561A8CED0621777255A9667DCE79FA (void);
  1430. // 0x0000030A System.Void Newtonsoft.Json.Utilities.ReflectionUtils::GetChildPrivateProperties(System.Collections.Generic.IList`1<System.Reflection.PropertyInfo>,System.Type,System.Reflection.BindingFlags)
  1431. extern void ReflectionUtils_GetChildPrivateProperties_mB9506DBA4650528387181DD7E43AFB706CA21AA3 (void);
  1432. // 0x0000030B System.Object Newtonsoft.Json.Utilities.ReflectionUtils::GetDefaultValue(System.Type)
  1433. extern void ReflectionUtils_GetDefaultValue_mBDDA7D5EB81537EE3840C3B1867D35C442E72927 (void);
  1434. // 0x0000030C System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c::.cctor()
  1435. extern void U3CU3Ec__cctor_mCF4C3631A1BD5C3B61ED05E30940B5E361B28828 (void);
  1436. // 0x0000030D System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c::.ctor()
  1437. extern void U3CU3Ec__ctor_mDA33AA8E118D1D8277E3467575C9E5B9AB628E46 (void);
  1438. // 0x0000030E System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<GetDefaultConstructor>b__10_0(System.Reflection.ConstructorInfo)
  1439. extern void U3CU3Ec_U3CGetDefaultConstructorU3Eb__10_0_m17815478D5DCADBBD2A6AA34250EDF5A111E5B78 (void);
  1440. // 0x0000030F System.String Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<GetFieldsAndProperties>b__29_0(System.Reflection.MemberInfo)
  1441. extern void U3CU3Ec_U3CGetFieldsAndPropertiesU3Eb__29_0_m916E1FDF7C53DFA1D4BD32052B264443CE1E94CA (void);
  1442. // 0x00000310 System.Type Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<GetMemberInfoFromType>b__37_0(System.Reflection.ParameterInfo)
  1443. extern void U3CU3Ec_U3CGetMemberInfoFromTypeU3Eb__37_0_m06E1B0E80F071C82CF50F5817F9AAF8FD3A56E8A (void);
  1444. // 0x00000311 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils/<>c::<GetChildPrivateFields>b__39_0(System.Reflection.FieldInfo)
  1445. extern void U3CU3Ec_U3CGetChildPrivateFieldsU3Eb__39_0_m8AC377D32B6BAC80570452D84F2D48EB9E7BE7DD (void);
  1446. // 0x00000312 System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass42_0::.ctor()
  1447. extern void U3CU3Ec__DisplayClass42_0__ctor_mEF8413C4DF73A6067FF49DE2D7778969478194EE (void);
  1448. // 0x00000313 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass42_0::<GetChildPrivateProperties>b__0(System.Reflection.PropertyInfo)
  1449. extern void U3CU3Ec__DisplayClass42_0_U3CGetChildPrivatePropertiesU3Eb__0_m39CF962B54FA7C2F29532D4648AA7C5B39F1BED0 (void);
  1450. // 0x00000314 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass42_0::<GetChildPrivateProperties>b__1(System.Reflection.PropertyInfo)
  1451. extern void U3CU3Ec__DisplayClass42_0_U3CGetChildPrivatePropertiesU3Eb__1_m6AB570883720965760F59B80DD4EB93F25C2329D (void);
  1452. // 0x00000315 System.Boolean Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass42_0::<GetChildPrivateProperties>b__2(System.Reflection.PropertyInfo)
  1453. extern void U3CU3Ec__DisplayClass42_0_U3CGetChildPrivatePropertiesU3Eb__2_mD5D8631346ECB05F7F0494A567ADDC31ABE42E70 (void);
  1454. // 0x00000316 System.Void Newtonsoft.Json.Utilities.ReflectionUtils/<>c__DisplayClass43_0::.ctor()
  1455. extern void U3CU3Ec__DisplayClass43_0__ctor_m5138CDE6D850BD643FC997D06EA4D21B6DD22739 (void);
  1456. // 0x00000317 System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object)
  1457. extern void StringUtils_FormatWith_mA88108ED0CDF74A30989A7B14A393D7A5292DFDD (void);
  1458. // 0x00000318 System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object)
  1459. extern void StringUtils_FormatWith_mA780395FEF887F07DE6C1018243B910B911A87D5 (void);
  1460. // 0x00000319 System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object,System.Object)
  1461. extern void StringUtils_FormatWith_m01AD6F89B06DD120C887C16E61C94E8B04D3D2C6 (void);
  1462. // 0x0000031A System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object,System.Object,System.Object,System.Object)
  1463. extern void StringUtils_FormatWith_m1D59CA5065908DF48693905A40E5CCA7F1A91B70 (void);
  1464. // 0x0000031B System.String Newtonsoft.Json.Utilities.StringUtils::FormatWith(System.String,System.IFormatProvider,System.Object[])
  1465. extern void StringUtils_FormatWith_mFCC6AB6A81ECA4D02B5C193901D0E734E138741A (void);
  1466. // 0x0000031C System.IO.StringWriter Newtonsoft.Json.Utilities.StringUtils::CreateStringWriter(System.Int32)
  1467. extern void StringUtils_CreateStringWriter_mCDE2FADE409388D61DD95C44D6ABC067D180B0D0 (void);
  1468. // 0x0000031D System.Nullable`1<System.Int32> Newtonsoft.Json.Utilities.StringUtils::GetLength(System.String)
  1469. extern void StringUtils_GetLength_m5250F4258D52261B9967806CFF474853BC503760 (void);
  1470. // 0x0000031E System.Void Newtonsoft.Json.Utilities.StringUtils::ToCharAsUnicode(System.Char,System.Char[])
  1471. extern void StringUtils_ToCharAsUnicode_m08ECAC8F4B2F09E569C3DAABB3DBC8245A410E58 (void);
  1472. // 0x0000031F TSource Newtonsoft.Json.Utilities.StringUtils::ForgivingCaseSensitiveFind(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,System.String>,System.String)
  1473. // 0x00000320 System.String Newtonsoft.Json.Utilities.StringUtils::ToCamelCase(System.String)
  1474. extern void StringUtils_ToCamelCase_m874D79971CEE162C0415EF7593B20819D29ADF63 (void);
  1475. // 0x00000321 System.Boolean Newtonsoft.Json.Utilities.StringUtils::IsHighSurrogate(System.Char)
  1476. extern void StringUtils_IsHighSurrogate_mE0AEA3748F379B551DFFE95F91A4FF251B09CCEC (void);
  1477. // 0x00000322 System.Boolean Newtonsoft.Json.Utilities.StringUtils::IsLowSurrogate(System.Char)
  1478. extern void StringUtils_IsLowSurrogate_m4C663533AD7DA12D50F6820EFAD3723CB5524E8B (void);
  1479. // 0x00000323 System.Boolean Newtonsoft.Json.Utilities.StringUtils::StartsWith(System.String,System.Char)
  1480. extern void StringUtils_StartsWith_mBAC5E0DBF7C1136DAA94EDD25F6CD2D51699F0E8 (void);
  1481. // 0x00000324 System.Boolean Newtonsoft.Json.Utilities.StringUtils::EndsWith(System.String,System.Char)
  1482. extern void StringUtils_EndsWith_m6FC01C84F3118887A568BB4FBE2DF010F95D2074 (void);
  1483. // 0x00000325 System.Void Newtonsoft.Json.Utilities.StringUtils/<>c__DisplayClass15_0`1::.ctor()
  1484. // 0x00000326 System.Boolean Newtonsoft.Json.Utilities.StringUtils/<>c__DisplayClass15_0`1::<ForgivingCaseSensitiveFind>b__0(TSource)
  1485. // 0x00000327 System.Boolean Newtonsoft.Json.Utilities.StringUtils/<>c__DisplayClass15_0`1::<ForgivingCaseSensitiveFind>b__1(TSource)
  1486. // 0x00000328 System.Reflection.MemberTypes Newtonsoft.Json.Utilities.TypeExtensions::MemberType(System.Reflection.MemberInfo)
  1487. extern void TypeExtensions_MemberType_m6169F34B91C472E863D8B0040EC001B9B7A8300A (void);
  1488. // 0x00000329 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::ContainsGenericParameters(System.Type)
  1489. extern void TypeExtensions_ContainsGenericParameters_m30D8EB328384CD4988693E35CA82635781F580BC (void);
  1490. // 0x0000032A System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsInterface(System.Type)
  1491. extern void TypeExtensions_IsInterface_m70BD081C0C596FD1B176C55FD94D6245288599AA (void);
  1492. // 0x0000032B System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsGenericType(System.Type)
  1493. extern void TypeExtensions_IsGenericType_m7A76DBF2CA0DA4227470F876CB2502D75412B863 (void);
  1494. // 0x0000032C System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsGenericTypeDefinition(System.Type)
  1495. extern void TypeExtensions_IsGenericTypeDefinition_m5F8893A76A73A02E94344344537018775AF8342F (void);
  1496. // 0x0000032D System.Type Newtonsoft.Json.Utilities.TypeExtensions::BaseType(System.Type)
  1497. extern void TypeExtensions_BaseType_mA9DD68BC66845DF4806A67AC1C02F3C5741B4CD4 (void);
  1498. // 0x0000032E System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsEnum(System.Type)
  1499. extern void TypeExtensions_IsEnum_m8CA2DB04CBF02DC0D062C6B0732EBA95D77FF7CD (void);
  1500. // 0x0000032F System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsClass(System.Type)
  1501. extern void TypeExtensions_IsClass_m9D47CA72372812118E70511BD72FE982B3BC893B (void);
  1502. // 0x00000330 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsSealed(System.Type)
  1503. extern void TypeExtensions_IsSealed_m1FF181A71CEE57C877BDCA959D0B088BC51E8205 (void);
  1504. // 0x00000331 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsAbstract(System.Type)
  1505. extern void TypeExtensions_IsAbstract_m6A160B0ED4AE6632B36E4D780B1051F16525F9A0 (void);
  1506. // 0x00000332 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::IsValueType(System.Type)
  1507. extern void TypeExtensions_IsValueType_mA1E9908F63522A14D50D62ABA662EF4763BF5C9A (void);
  1508. // 0x00000333 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::AssignableToTypeName(System.Type,System.String,System.Type&)
  1509. extern void TypeExtensions_AssignableToTypeName_m0D1D33469CA7EB968A75A6F0E9273F882454495D (void);
  1510. // 0x00000334 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::AssignableToTypeName(System.Type,System.String)
  1511. extern void TypeExtensions_AssignableToTypeName_m4B5338B11FEA2F13490A5A1DD81EE94985E868E3 (void);
  1512. // 0x00000335 System.Boolean Newtonsoft.Json.Utilities.TypeExtensions::ImplementInterface(System.Type,System.Type)
  1513. extern void TypeExtensions_ImplementInterface_m959AF4C81832013C19D1377F0476215865D5F7E3 (void);
  1514. // 0x00000336 System.Void Newtonsoft.Json.Utilities.ValidationUtils::ArgumentNotNull(System.Object,System.String)
  1515. extern void ValidationUtils_ArgumentNotNull_m9332A1307FA17A704CD312343FB5E20612B5F386 (void);
  1516. // 0x00000337 System.Void Newtonsoft.Json.Shims.PreserveAttribute::.ctor()
  1517. extern void PreserveAttribute__ctor_mB2ECDF8B6BB50A37CF5A535FE2C892A03DF78A41 (void);
  1518. // 0x00000338 System.Diagnostics.TraceLevel Newtonsoft.Json.Serialization.DiagnosticsTraceWriter::get_LevelFilter()
  1519. extern void DiagnosticsTraceWriter_get_LevelFilter_mE8756C49701D816188F0701B8BB2D00CF3DEDB3B (void);
  1520. // 0x00000339 System.Diagnostics.TraceEventType Newtonsoft.Json.Serialization.DiagnosticsTraceWriter::GetTraceEventType(System.Diagnostics.TraceLevel)
  1521. extern void DiagnosticsTraceWriter_GetTraceEventType_m092B6043463DFD87EE95D63C901EBF3104F0801E (void);
  1522. // 0x0000033A System.Void Newtonsoft.Json.Serialization.DiagnosticsTraceWriter::Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)
  1523. extern void DiagnosticsTraceWriter_Trace_m680EBE0C01D55B29AF709842D111928B531B1707 (void);
  1524. // 0x0000033B System.Void Newtonsoft.Json.Serialization.DiagnosticsTraceWriter::.ctor()
  1525. extern void DiagnosticsTraceWriter__ctor_m36141DE05BD293EC446C1150099E5E22ABF327CC (void);
  1526. // 0x0000033C System.Diagnostics.TraceLevel Newtonsoft.Json.Serialization.ITraceWriter::get_LevelFilter()
  1527. // 0x0000033D System.Void Newtonsoft.Json.Serialization.ITraceWriter::Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)
  1528. // 0x0000033E Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemContract()
  1529. extern void JsonContainerContract_get_ItemContract_mD598471E3E30734493C2D3718582CF2CE6DAF179 (void);
  1530. // 0x0000033F System.Void Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemContract(Newtonsoft.Json.Serialization.JsonContract)
  1531. extern void JsonContainerContract_set_ItemContract_m54ABE19CFE3130634FFA76C0A8FAF143015E0BDC (void);
  1532. // 0x00000340 Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.JsonContainerContract::get_FinalItemContract()
  1533. extern void JsonContainerContract_get_FinalItemContract_m9A966EBCD362344DED8BD92BC9FDCD819CECB320 (void);
  1534. // 0x00000341 Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemConverter()
  1535. extern void JsonContainerContract_get_ItemConverter_mFACA42EAFFCCBB01401B3FA24E7A4EC00F539347 (void);
  1536. // 0x00000342 System.Void Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemConverter(Newtonsoft.Json.JsonConverter)
  1537. extern void JsonContainerContract_set_ItemConverter_mA1371FF652F4B551CDD5C458DF37F6D30F2E7890 (void);
  1538. // 0x00000343 System.Nullable`1<System.Boolean> Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemIsReference()
  1539. extern void JsonContainerContract_get_ItemIsReference_m0E9C290FA2933C5566F26E530815B051F7797BC4 (void);
  1540. // 0x00000344 System.Void Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemIsReference(System.Nullable`1<System.Boolean>)
  1541. extern void JsonContainerContract_set_ItemIsReference_m663294207383D91A14CCF28A5FF79EFFDE87859B (void);
  1542. // 0x00000345 System.Nullable`1<Newtonsoft.Json.ReferenceLoopHandling> Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemReferenceLoopHandling()
  1543. extern void JsonContainerContract_get_ItemReferenceLoopHandling_m87CD2B46CB4168BC086A0BDACE1F7D29601FD6F1 (void);
  1544. // 0x00000346 System.Void Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemReferenceLoopHandling(System.Nullable`1<Newtonsoft.Json.ReferenceLoopHandling>)
  1545. extern void JsonContainerContract_set_ItemReferenceLoopHandling_mF2F38DFBEC5893B28B696188AD578B2B10AA8C6F (void);
  1546. // 0x00000347 System.Nullable`1<Newtonsoft.Json.TypeNameHandling> Newtonsoft.Json.Serialization.JsonContainerContract::get_ItemTypeNameHandling()
  1547. extern void JsonContainerContract_get_ItemTypeNameHandling_mB7435D8621891FCAFEC648199E0C68AFB49402FD (void);
  1548. // 0x00000348 System.Void Newtonsoft.Json.Serialization.JsonContainerContract::set_ItemTypeNameHandling(System.Nullable`1<Newtonsoft.Json.TypeNameHandling>)
  1549. extern void JsonContainerContract_set_ItemTypeNameHandling_mC69F55CA9D424520C0640F1ABAC4B0E23DFDBB19 (void);
  1550. // 0x00000349 System.Void Newtonsoft.Json.Serialization.JsonContainerContract::.ctor(System.Type)
  1551. extern void JsonContainerContract__ctor_m48265CFFDF6A85E2DE51D6C25F9EC2277A47D8BB (void);
  1552. // 0x0000034A System.Diagnostics.TraceLevel Newtonsoft.Json.Serialization.MemoryTraceWriter::get_LevelFilter()
  1553. extern void MemoryTraceWriter_get_LevelFilter_mDCC6F41E5C5A65727EA283AD52869B9813D29387 (void);
  1554. // 0x0000034B System.Void Newtonsoft.Json.Serialization.MemoryTraceWriter::set_LevelFilter(System.Diagnostics.TraceLevel)
  1555. extern void MemoryTraceWriter_set_LevelFilter_mFDD4C8ECCC1F3EA622509414E2D76338B27B731A (void);
  1556. // 0x0000034C System.Void Newtonsoft.Json.Serialization.MemoryTraceWriter::.ctor()
  1557. extern void MemoryTraceWriter__ctor_mFB09401F4B0613E030840BE78B70238D1C70C616 (void);
  1558. // 0x0000034D System.Void Newtonsoft.Json.Serialization.MemoryTraceWriter::Trace(System.Diagnostics.TraceLevel,System.String,System.Exception)
  1559. extern void MemoryTraceWriter_Trace_mF36440FE4D701E06F5A64A3D0A58FA758D857FC8 (void);
  1560. // 0x0000034E System.String Newtonsoft.Json.Serialization.MemoryTraceWriter::ToString()
  1561. extern void MemoryTraceWriter_ToString_m5E2C9C7F1475671984844E59C14DFE3404A40524 (void);
  1562. // 0x0000034F System.Void Newtonsoft.Json.Serialization.ReflectionAttributeProvider::.ctor(System.Object)
  1563. extern void ReflectionAttributeProvider__ctor_m3752523B8F38E4663AC689FC3044623D755F3BDE (void);
  1564. // 0x00000350 System.Void Newtonsoft.Json.Serialization.TraceJsonReader::.ctor(Newtonsoft.Json.JsonReader)
  1565. extern void TraceJsonReader__ctor_m7AFF0629970B5C3EDF27A86E188214E818BE9B37 (void);
  1566. // 0x00000351 System.String Newtonsoft.Json.Serialization.TraceJsonReader::GetDeserializedJsonMessage()
  1567. extern void TraceJsonReader_GetDeserializedJsonMessage_m25D29E496537624A1281CC1396FE1C22B9B6CE54 (void);
  1568. // 0x00000352 System.Boolean Newtonsoft.Json.Serialization.TraceJsonReader::Read()
  1569. extern void TraceJsonReader_Read_mC7AE4725ED71DA99A9C3890E59C3A550C7797158 (void);
  1570. // 0x00000353 System.Nullable`1<System.Int32> Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsInt32()
  1571. extern void TraceJsonReader_ReadAsInt32_m07CD6C54DA64337DB5363584A4002A28C54D0B9C (void);
  1572. // 0x00000354 System.String Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsString()
  1573. extern void TraceJsonReader_ReadAsString_mFC7D0A41CC73967C0288DB53D181B18AF179A52A (void);
  1574. // 0x00000355 System.Byte[] Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsBytes()
  1575. extern void TraceJsonReader_ReadAsBytes_m9E530706E2E02D02A5DF1B9C7BEF93381C47825C (void);
  1576. // 0x00000356 System.Nullable`1<System.Decimal> Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsDecimal()
  1577. extern void TraceJsonReader_ReadAsDecimal_m62ED843F7D4925C83FE1F1A2B03443F43E1E3F19 (void);
  1578. // 0x00000357 System.Nullable`1<System.Double> Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsDouble()
  1579. extern void TraceJsonReader_ReadAsDouble_m9FCCAEBEC300DF2A5882F5ADD72AA389D89548A2 (void);
  1580. // 0x00000358 System.Nullable`1<System.Boolean> Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsBoolean()
  1581. extern void TraceJsonReader_ReadAsBoolean_m4731F9C0183FFA311D9FBF1A2ABA969CF168B172 (void);
  1582. // 0x00000359 System.Nullable`1<System.DateTime> Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsDateTime()
  1583. extern void TraceJsonReader_ReadAsDateTime_mC3EE6BEA702A0F37CA70096B3ADDA4D6F4E35FC9 (void);
  1584. // 0x0000035A System.Nullable`1<System.DateTimeOffset> Newtonsoft.Json.Serialization.TraceJsonReader::ReadAsDateTimeOffset()
  1585. extern void TraceJsonReader_ReadAsDateTimeOffset_mF5834EABBBD0F2F658583D0D636902F507045570 (void);
  1586. // 0x0000035B System.Int32 Newtonsoft.Json.Serialization.TraceJsonReader::get_Depth()
  1587. extern void TraceJsonReader_get_Depth_mA7E8B79B7C952D629399501AD3B79EC9C5B6598D (void);
  1588. // 0x0000035C System.String Newtonsoft.Json.Serialization.TraceJsonReader::get_Path()
  1589. extern void TraceJsonReader_get_Path_m3C73E7145B933C2D576BFD160898ADFA1B475A12 (void);
  1590. // 0x0000035D Newtonsoft.Json.JsonToken Newtonsoft.Json.Serialization.TraceJsonReader::get_TokenType()
  1591. extern void TraceJsonReader_get_TokenType_m158C509F0475A1AD2C74DB46D375E86D3D7D7178 (void);
  1592. // 0x0000035E System.Object Newtonsoft.Json.Serialization.TraceJsonReader::get_Value()
  1593. extern void TraceJsonReader_get_Value_m8801B1D5B7D874C8577FF545DA396856217FB171 (void);
  1594. // 0x0000035F System.Type Newtonsoft.Json.Serialization.TraceJsonReader::get_ValueType()
  1595. extern void TraceJsonReader_get_ValueType_m2B84530928F4EFC20F09CA8D0F2B67AA664C1F74 (void);
  1596. // 0x00000360 System.Void Newtonsoft.Json.Serialization.TraceJsonReader::Close()
  1597. extern void TraceJsonReader_Close_mB17DCE6EBE087F09EDC684090B2BDA9D11EF2DB9 (void);
  1598. // 0x00000361 System.Boolean Newtonsoft.Json.Serialization.TraceJsonReader::Newtonsoft.Json.IJsonLineInfo.HasLineInfo()
  1599. extern void TraceJsonReader_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mBD5F042BF6F3B8954DD1E3E814BAA91A32106603 (void);
  1600. // 0x00000362 System.Int32 Newtonsoft.Json.Serialization.TraceJsonReader::Newtonsoft.Json.IJsonLineInfo.get_LineNumber()
  1601. extern void TraceJsonReader_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_m3A27FBA70CAE1B984C4BFB2A43AF029E95DE4C33 (void);
  1602. // 0x00000363 System.Int32 Newtonsoft.Json.Serialization.TraceJsonReader::Newtonsoft.Json.IJsonLineInfo.get_LinePosition()
  1603. extern void TraceJsonReader_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mEA5E492B3FAC45038DF27B5E10DB4597C672FDCB (void);
  1604. // 0x00000364 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::.ctor(Newtonsoft.Json.JsonWriter)
  1605. extern void TraceJsonWriter__ctor_m5B7D770660090E6AF7C84A478456F35FEDFAB45E (void);
  1606. // 0x00000365 System.String Newtonsoft.Json.Serialization.TraceJsonWriter::GetSerializedJsonMessage()
  1607. extern void TraceJsonWriter_GetSerializedJsonMessage_mE1374279904FA737311526BB7A0DCFAA4181820F (void);
  1608. // 0x00000366 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Decimal)
  1609. extern void TraceJsonWriter_WriteValue_mDECD0946BE8CDB73756A4A2EAB61632665360C34 (void);
  1610. // 0x00000367 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Boolean)
  1611. extern void TraceJsonWriter_WriteValue_m90F852D7AA5EE7805A8D74201A3D05694274F5D5 (void);
  1612. // 0x00000368 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Byte)
  1613. extern void TraceJsonWriter_WriteValue_mA2CDA976D12C4C2C803608CFF064C4FD8C2FC707 (void);
  1614. // 0x00000369 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Nullable`1<System.Byte>)
  1615. extern void TraceJsonWriter_WriteValue_m2238E223301E1DD85493354CC670BC3E20379023 (void);
  1616. // 0x0000036A System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Char)
  1617. extern void TraceJsonWriter_WriteValue_m3053129F8DDA7AE7110E4F3325CBF316F1F82552 (void);
  1618. // 0x0000036B System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Byte[])
  1619. extern void TraceJsonWriter_WriteValue_m38454F8C72D80C6FF246E90D3A78B09BA11E01CA (void);
  1620. // 0x0000036C System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.DateTime)
  1621. extern void TraceJsonWriter_WriteValue_m1EF340B78E591D4ECECA5BCBA599699D12786B9B (void);
  1622. // 0x0000036D System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.DateTimeOffset)
  1623. extern void TraceJsonWriter_WriteValue_mF0040AE090181DC931089841F3D8044875B1D2DA (void);
  1624. // 0x0000036E System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Double)
  1625. extern void TraceJsonWriter_WriteValue_m2B8FB54016869068716BDE4B9612760CF300C82A (void);
  1626. // 0x0000036F System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteUndefined()
  1627. extern void TraceJsonWriter_WriteUndefined_m573E51ECBE7E1451773E8DCF1DD574AAC3FBF980 (void);
  1628. // 0x00000370 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteNull()
  1629. extern void TraceJsonWriter_WriteNull_mD0D94D99E65D9FBDB39701E7E0D6E461D06B8000 (void);
  1630. // 0x00000371 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Single)
  1631. extern void TraceJsonWriter_WriteValue_m681B9B8804F2DA0023A6BFBF1DB6B9BEAF4F37D5 (void);
  1632. // 0x00000372 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Guid)
  1633. extern void TraceJsonWriter_WriteValue_m42C7B07F46E06D297BDA8DF2AFB1EEE54CA233E8 (void);
  1634. // 0x00000373 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Int32)
  1635. extern void TraceJsonWriter_WriteValue_m9CF04776A17A8D6A45A77314B703202C8C51689D (void);
  1636. // 0x00000374 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Int64)
  1637. extern void TraceJsonWriter_WriteValue_mA81E6EE07CD3F87A280FB58A82A70A2BC05FBF28 (void);
  1638. // 0x00000375 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Object)
  1639. extern void TraceJsonWriter_WriteValue_mC05850E722E59146033CBA2B72F39C39B45B89B3 (void);
  1640. // 0x00000376 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.SByte)
  1641. extern void TraceJsonWriter_WriteValue_m2C6C5FDD9431692B9261C8A70BA23AC9A3D002CC (void);
  1642. // 0x00000377 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Int16)
  1643. extern void TraceJsonWriter_WriteValue_m98EFA633CBF4C9EC539C0B88D7780AAB817D47BF (void);
  1644. // 0x00000378 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.String)
  1645. extern void TraceJsonWriter_WriteValue_mAF7D8F204CBF963F44BA3DDB378A6FA00F9DFF37 (void);
  1646. // 0x00000379 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.TimeSpan)
  1647. extern void TraceJsonWriter_WriteValue_m432E179DA93FD4125AF43B93CF564ED818373C73 (void);
  1648. // 0x0000037A System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.UInt32)
  1649. extern void TraceJsonWriter_WriteValue_m281F8200888983A0B0DB063F241E796A69957C33 (void);
  1650. // 0x0000037B System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.UInt64)
  1651. extern void TraceJsonWriter_WriteValue_m4AD41E1ECE64552FF9D631DB2CA092FFF3A6B698 (void);
  1652. // 0x0000037C System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.Uri)
  1653. extern void TraceJsonWriter_WriteValue_m995E3B8E66AB938E18322D4A959C86DBA5B430C2 (void);
  1654. // 0x0000037D System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteValue(System.UInt16)
  1655. extern void TraceJsonWriter_WriteValue_m25324644AF8F2C10C1E59CC48DA54A5121E5A5E0 (void);
  1656. // 0x0000037E System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteComment(System.String)
  1657. extern void TraceJsonWriter_WriteComment_m48B3C1FD7822CC31AB30212F8A107C651CAFAEDB (void);
  1658. // 0x0000037F System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteStartArray()
  1659. extern void TraceJsonWriter_WriteStartArray_mC981B74610B3F6ACAB57584E785465104AD9CF4B (void);
  1660. // 0x00000380 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteEndArray()
  1661. extern void TraceJsonWriter_WriteEndArray_mBBF22A7B32751C85D30939A8D52808AC14C35EA4 (void);
  1662. // 0x00000381 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteStartConstructor(System.String)
  1663. extern void TraceJsonWriter_WriteStartConstructor_m608E3608BAA8FE498CD760625728C592BDEA8DD8 (void);
  1664. // 0x00000382 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteEndConstructor()
  1665. extern void TraceJsonWriter_WriteEndConstructor_m9E4F093C1721A0DE232F59F6494720B202DC18B2 (void);
  1666. // 0x00000383 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WritePropertyName(System.String)
  1667. extern void TraceJsonWriter_WritePropertyName_mFD01B971FC589B08F1C7F1472AACDD1977294198 (void);
  1668. // 0x00000384 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WritePropertyName(System.String,System.Boolean)
  1669. extern void TraceJsonWriter_WritePropertyName_mCB090A88DE23BAA4304BA8FF8C117642620E3BEC (void);
  1670. // 0x00000385 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteStartObject()
  1671. extern void TraceJsonWriter_WriteStartObject_m081D83A364446B0E66C00AEC39864A5A39CD7097 (void);
  1672. // 0x00000386 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteEndObject()
  1673. extern void TraceJsonWriter_WriteEndObject_mA6A1F68C94093B6373C3C2C8A5C87A888A39DD93 (void);
  1674. // 0x00000387 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteRawValue(System.String)
  1675. extern void TraceJsonWriter_WriteRawValue_mB0875609CF6E5720FDCC6D91EE1D3C3B4BE32640 (void);
  1676. // 0x00000388 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::WriteRaw(System.String)
  1677. extern void TraceJsonWriter_WriteRaw_m525C4C27D010AEB69C181DE938B939C74C8B5BE9 (void);
  1678. // 0x00000389 System.Void Newtonsoft.Json.Serialization.TraceJsonWriter::Close()
  1679. extern void TraceJsonWriter_Close_mD7F5FBE3C973290F78C457B74AD1AB99BC1D58A3 (void);
  1680. // 0x0000038A System.Void Newtonsoft.Json.Serialization.JsonFormatterConverter::.ctor(Newtonsoft.Json.Serialization.JsonSerializerInternalReader,Newtonsoft.Json.Serialization.JsonISerializableContract,Newtonsoft.Json.Serialization.JsonProperty)
  1681. extern void JsonFormatterConverter__ctor_m146CC0BCD989ECBCA0DB94F0F898D1C0F7275D37 (void);
  1682. // 0x0000038B T Newtonsoft.Json.Serialization.JsonFormatterConverter::GetTokenValue(System.Object)
  1683. // 0x0000038C System.Object Newtonsoft.Json.Serialization.JsonFormatterConverter::Convert(System.Object,System.Type)
  1684. extern void JsonFormatterConverter_Convert_m121005D2680232FA8E91735481504753A24E8A3E (void);
  1685. // 0x0000038D System.Boolean Newtonsoft.Json.Serialization.JsonFormatterConverter::ToBoolean(System.Object)
  1686. extern void JsonFormatterConverter_ToBoolean_m5D53A7D4C6082713F370A8774BE5E573AD7CDF4E (void);
  1687. // 0x0000038E System.Int32 Newtonsoft.Json.Serialization.JsonFormatterConverter::ToInt32(System.Object)
  1688. extern void JsonFormatterConverter_ToInt32_m73485AED91E0F0F2FF63D38BFBF5C5C6E877A2C7 (void);
  1689. // 0x0000038F System.Int64 Newtonsoft.Json.Serialization.JsonFormatterConverter::ToInt64(System.Object)
  1690. extern void JsonFormatterConverter_ToInt64_m9F77AC264FD61704CF352EF5761094B9093B7465 (void);
  1691. // 0x00000390 System.Single Newtonsoft.Json.Serialization.JsonFormatterConverter::ToSingle(System.Object)
  1692. extern void JsonFormatterConverter_ToSingle_m90077B8B5694657DAA61D82EFD79A6962EC33729 (void);
  1693. // 0x00000391 System.String Newtonsoft.Json.Serialization.JsonFormatterConverter::ToString(System.Object)
  1694. extern void JsonFormatterConverter_ToString_mC3493943218E47C48BE6C023BC3B234195516B22 (void);
  1695. // 0x00000392 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonISerializableContract::get_ISerializableCreator()
  1696. extern void JsonISerializableContract_get_ISerializableCreator_mADA185D9E95FCDA15996426673FD6E2F6C725190 (void);
  1697. // 0x00000393 System.Void Newtonsoft.Json.Serialization.JsonISerializableContract::set_ISerializableCreator(Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
  1698. extern void JsonISerializableContract_set_ISerializableCreator_m50D5769B5D94DE751572197CED0415AF7BBBB629 (void);
  1699. // 0x00000394 System.Void Newtonsoft.Json.Serialization.JsonISerializableContract::.ctor(System.Type)
  1700. extern void JsonISerializableContract__ctor_m57B1A580FC0BDD3FC9B0143631D7BEE981714FC1 (void);
  1701. // 0x00000395 System.Void Newtonsoft.Json.Serialization.JsonLinqContract::.ctor(System.Type)
  1702. extern void JsonLinqContract__ctor_m8BCAA67AF116E235712C5CFEFDD3C3D6102535DC (void);
  1703. // 0x00000396 Newtonsoft.Json.Utilities.PrimitiveTypeCode Newtonsoft.Json.Serialization.JsonPrimitiveContract::get_TypeCode()
  1704. extern void JsonPrimitiveContract_get_TypeCode_m9F938E411AFCC686F51591B8094111BE241D8CE4 (void);
  1705. // 0x00000397 System.Void Newtonsoft.Json.Serialization.JsonPrimitiveContract::set_TypeCode(Newtonsoft.Json.Utilities.PrimitiveTypeCode)
  1706. extern void JsonPrimitiveContract_set_TypeCode_mC400A566DC3ED2195AA91F8302423EA00BC5898F (void);
  1707. // 0x00000398 System.Void Newtonsoft.Json.Serialization.JsonPrimitiveContract::.ctor(System.Type)
  1708. extern void JsonPrimitiveContract__ctor_m26C2556779C3B5C80DDCCDFE0B60A3294BD8D50A (void);
  1709. // 0x00000399 System.Void Newtonsoft.Json.Serialization.JsonPrimitiveContract::.cctor()
  1710. extern void JsonPrimitiveContract__cctor_mB70138F7F7EEB59DB608604CCA86BFCCB0A4366C (void);
  1711. // 0x0000039A System.Void Newtonsoft.Json.Serialization.ErrorEventArgs::set_CurrentObject(System.Object)
  1712. extern void ErrorEventArgs_set_CurrentObject_mD942DD678863D48DB12217E473F0DEA7D8B31AFD (void);
  1713. // 0x0000039B System.Void Newtonsoft.Json.Serialization.ErrorEventArgs::set_ErrorContext(Newtonsoft.Json.Serialization.ErrorContext)
  1714. extern void ErrorEventArgs_set_ErrorContext_mFCF9E619D2E91651CE1C1CC9C9DC504C8E75BD14 (void);
  1715. // 0x0000039C System.Void Newtonsoft.Json.Serialization.ErrorEventArgs::.ctor(System.Object,Newtonsoft.Json.Serialization.ErrorContext)
  1716. extern void ErrorEventArgs__ctor_m5627999666EE75E0282BB51CA27CBFA1CE12EEAD (void);
  1717. // 0x0000039D Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Newtonsoft.Json.Serialization.DefaultReferenceResolver::GetMappings(System.Object)
  1718. extern void DefaultReferenceResolver_GetMappings_mF96C2D6D19FBE8FA1410EE26454881D4D7B2CE75 (void);
  1719. // 0x0000039E System.Object Newtonsoft.Json.Serialization.DefaultReferenceResolver::ResolveReference(System.Object,System.String)
  1720. extern void DefaultReferenceResolver_ResolveReference_mC94430A6B5EF11FA1909E2A89E70D5D7C4B96C6E (void);
  1721. // 0x0000039F System.String Newtonsoft.Json.Serialization.DefaultReferenceResolver::GetReference(System.Object,System.Object)
  1722. extern void DefaultReferenceResolver_GetReference_m7E47A23532CAEC1305B0EB4D0D7F5AD2A02E98C6 (void);
  1723. // 0x000003A0 System.Void Newtonsoft.Json.Serialization.DefaultReferenceResolver::AddReference(System.Object,System.String,System.Object)
  1724. extern void DefaultReferenceResolver_AddReference_mFF376FDB774C86C7B0DF552404EF437BEDFD5FB4 (void);
  1725. // 0x000003A1 System.Boolean Newtonsoft.Json.Serialization.DefaultReferenceResolver::IsReferenced(System.Object,System.Object)
  1726. extern void DefaultReferenceResolver_IsReferenced_mB6A01C462DF33E1036903D3EB102405558156714 (void);
  1727. // 0x000003A2 System.Void Newtonsoft.Json.Serialization.DefaultReferenceResolver::.ctor()
  1728. extern void DefaultReferenceResolver__ctor_m4AA5B6BADDB120DDC5F16A1B2B15C45E3AF85757 (void);
  1729. // 0x000003A3 System.Void Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver::.ctor()
  1730. extern void CamelCasePropertyNamesContractResolver__ctor_m48F6D1B0927EE1F00391C5811D523946C1C62D0A (void);
  1731. // 0x000003A4 System.String Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver::ResolvePropertyName(System.String)
  1732. extern void CamelCasePropertyNamesContractResolver_ResolvePropertyName_m429156924F81C13FE65FAD2ED52E40F023BE861C (void);
  1733. // 0x000003A5 System.Void Newtonsoft.Json.Serialization.ResolverContractKey::.ctor(System.Type,System.Type)
  1734. extern void ResolverContractKey__ctor_m968636309AE4253BA8F077FF7ECB81DF1AF084EB (void);
  1735. // 0x000003A6 System.Int32 Newtonsoft.Json.Serialization.ResolverContractKey::GetHashCode()
  1736. extern void ResolverContractKey_GetHashCode_mD441ABBFA2338FEDF3997A3AA948F21BD49F42F2 (void);
  1737. // 0x000003A7 System.Boolean Newtonsoft.Json.Serialization.ResolverContractKey::Equals(System.Object)
  1738. extern void ResolverContractKey_Equals_m0E63CED51A9B59D23AA8EDFD3B968923D925D8FE (void);
  1739. // 0x000003A8 System.Boolean Newtonsoft.Json.Serialization.ResolverContractKey::Equals(Newtonsoft.Json.Serialization.ResolverContractKey)
  1740. extern void ResolverContractKey_Equals_m46DB921C8C1F68636C1726443195B8525F686A86 (void);
  1741. // 0x000003A9 System.Void Newtonsoft.Json.Serialization.DefaultContractResolverState::.ctor()
  1742. extern void DefaultContractResolverState__ctor_m0A0B581B6AF8A4E05E5AD4946F154A2C9E078ED1 (void);
  1743. // 0x000003AA Newtonsoft.Json.Serialization.IContractResolver Newtonsoft.Json.Serialization.DefaultContractResolver::get_Instance()
  1744. extern void DefaultContractResolver_get_Instance_mA523B467C8E9CBF3304FF0B4D98E79F40731A381 (void);
  1745. // 0x000003AB System.Reflection.BindingFlags Newtonsoft.Json.Serialization.DefaultContractResolver::get_DefaultMembersSearchFlags()
  1746. extern void DefaultContractResolver_get_DefaultMembersSearchFlags_m7E3F665EDE2333E5C09F959160782582C95F2260 (void);
  1747. // 0x000003AC System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::set_DefaultMembersSearchFlags(System.Reflection.BindingFlags)
  1748. extern void DefaultContractResolver_set_DefaultMembersSearchFlags_m682B9E9BAA1DD334C8E6C3E0327F322947BDB58C (void);
  1749. // 0x000003AD System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::get_SerializeCompilerGeneratedMembers()
  1750. extern void DefaultContractResolver_get_SerializeCompilerGeneratedMembers_mA91C3B570EF0F8C8F612E0578154842266EB5E59 (void);
  1751. // 0x000003AE System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableInterface()
  1752. extern void DefaultContractResolver_get_IgnoreSerializableInterface_m28404CA32E8F1F00FC98B38EAE0C42D8FE06FF3F (void);
  1753. // 0x000003AF System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::get_IgnoreSerializableAttribute()
  1754. extern void DefaultContractResolver_get_IgnoreSerializableAttribute_m58B9D44EBCB6F31E38305E81FFC9E5E1A3F92F62 (void);
  1755. // 0x000003B0 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::set_IgnoreSerializableAttribute(System.Boolean)
  1756. extern void DefaultContractResolver_set_IgnoreSerializableAttribute_mD03C0CD2DA303BD0322A2DF86F86127E3CEA09DC (void);
  1757. // 0x000003B1 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor()
  1758. extern void DefaultContractResolver__ctor_mAFA2A605045F462A193939691773DFE35F8A4503 (void);
  1759. // 0x000003B2 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::.ctor(System.Boolean)
  1760. extern void DefaultContractResolver__ctor_m7A48906A61362FC01ACD44BACDCB7207D13AB6B3 (void);
  1761. // 0x000003B3 Newtonsoft.Json.Serialization.DefaultContractResolverState Newtonsoft.Json.Serialization.DefaultContractResolver::GetState()
  1762. extern void DefaultContractResolver_GetState_m248977BF071A30F2CF65149D8E326EEF58D73158 (void);
  1763. // 0x000003B4 Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContract(System.Type)
  1764. extern void DefaultContractResolver_ResolveContract_mD98E625823D91A9C539754CBF6C8876CC8BCA246 (void);
  1765. // 0x000003B5 System.Collections.Generic.List`1<System.Reflection.MemberInfo> Newtonsoft.Json.Serialization.DefaultContractResolver::GetSerializableMembers(System.Type)
  1766. extern void DefaultContractResolver_GetSerializableMembers_m27B4BCA35F4E8E44390A9A8BC8510F21DCA9BB8D (void);
  1767. // 0x000003B6 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSerializeEntityMember(System.Reflection.MemberInfo)
  1768. extern void DefaultContractResolver_ShouldSerializeEntityMember_m4FF2BC429CB82EA5F49FB0B3F5ADEF99DFD896D1 (void);
  1769. // 0x000003B7 Newtonsoft.Json.Serialization.JsonObjectContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateObjectContract(System.Type)
  1770. extern void DefaultContractResolver_CreateObjectContract_m4644B7AEECE9A63E8F0FC340B86D3FB0034A486C (void);
  1771. // 0x000003B8 System.Reflection.MemberInfo Newtonsoft.Json.Serialization.DefaultContractResolver::GetExtensionDataMemberForType(System.Type)
  1772. extern void DefaultContractResolver_GetExtensionDataMemberForType_mCAEDF8938DC97DE6E4ABE62422E483A8EC2CAECB (void);
  1773. // 0x000003B9 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::SetExtensionDataDelegates(Newtonsoft.Json.Serialization.JsonObjectContract,System.Reflection.MemberInfo)
  1774. extern void DefaultContractResolver_SetExtensionDataDelegates_mACDDF5D8BA1E7C6CADB5F69EC6E785869BED8C86 (void);
  1775. // 0x000003BA System.Reflection.ConstructorInfo Newtonsoft.Json.Serialization.DefaultContractResolver::GetAttributeConstructor(System.Type)
  1776. extern void DefaultContractResolver_GetAttributeConstructor_m8BCC82D5583A38DC379C590F5103AEFAE604B58C (void);
  1777. // 0x000003BB System.Reflection.ConstructorInfo Newtonsoft.Json.Serialization.DefaultContractResolver::GetParameterizedConstructor(System.Type)
  1778. extern void DefaultContractResolver_GetParameterizedConstructor_m2188DCB311817CD8C274E17C5E4768262B3D2A87 (void);
  1779. // 0x000003BC System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.JsonProperty> Newtonsoft.Json.Serialization.DefaultContractResolver::CreateConstructorParameters(System.Reflection.ConstructorInfo,Newtonsoft.Json.Serialization.JsonPropertyCollection)
  1780. extern void DefaultContractResolver_CreateConstructorParameters_mE237183B5946975BD9F04522B0FA72393310E7F9 (void);
  1781. // 0x000003BD Newtonsoft.Json.Serialization.JsonProperty Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePropertyFromConstructorParameter(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.ParameterInfo)
  1782. extern void DefaultContractResolver_CreatePropertyFromConstructorParameter_m94CBAEEF20C09EB3F9917F968ABC5E9C3AC3E2F3 (void);
  1783. // 0x000003BE Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveContractConverter(System.Type)
  1784. extern void DefaultContractResolver_ResolveContractConverter_m397D37ED4131E91008A07323C9748F29D03AAD19 (void);
  1785. // 0x000003BF System.Func`1<System.Object> Newtonsoft.Json.Serialization.DefaultContractResolver::GetDefaultCreator(System.Type)
  1786. extern void DefaultContractResolver_GetDefaultCreator_mD54805590E4FE3940B7A5F58961D09CD5296FD05 (void);
  1787. // 0x000003C0 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::InitializeContract(Newtonsoft.Json.Serialization.JsonContract)
  1788. extern void DefaultContractResolver_InitializeContract_m7AF6A4A4D8B960309E89850ADD465705F2C23944 (void);
  1789. // 0x000003C1 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveCallbackMethods(Newtonsoft.Json.Serialization.JsonContract,System.Type)
  1790. extern void DefaultContractResolver_ResolveCallbackMethods_mD10B9C21AA296680370B8EBEB84F34257E159B9F (void);
  1791. // 0x000003C2 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::GetCallbackMethodsForType(System.Type,System.Collections.Generic.List`1<Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Newtonsoft.Json.Serialization.SerializationCallback>&,System.Collections.Generic.List`1<Newtonsoft.Json.Serialization.SerializationErrorCallback>&)
  1792. extern void DefaultContractResolver_GetCallbackMethodsForType_m2FA8DBC33C57C3956EE942474F80441F2AA6102D (void);
  1793. // 0x000003C3 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipDeserialized(System.Type)
  1794. extern void DefaultContractResolver_ShouldSkipDeserialized_m13D16431013E85ECC9DDA900C4D1947B402F7947 (void);
  1795. // 0x000003C4 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::ShouldSkipSerializing(System.Type)
  1796. extern void DefaultContractResolver_ShouldSkipSerializing_mEB54B48250CA20CF0CC1CE24A4A2D31511EC71CD (void);
  1797. // 0x000003C5 System.Collections.Generic.List`1<System.Type> Newtonsoft.Json.Serialization.DefaultContractResolver::GetClassHierarchyForType(System.Type)
  1798. extern void DefaultContractResolver_GetClassHierarchyForType_m5348D41320C848BBB768F731730BE88F9787C2C7 (void);
  1799. // 0x000003C6 Newtonsoft.Json.Serialization.JsonDictionaryContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateDictionaryContract(System.Type)
  1800. extern void DefaultContractResolver_CreateDictionaryContract_m2C05EB7C47DC525E2162758E32943A6CB8DD5B66 (void);
  1801. // 0x000003C7 Newtonsoft.Json.Serialization.JsonArrayContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateArrayContract(System.Type)
  1802. extern void DefaultContractResolver_CreateArrayContract_m0E97C8A2C388F003C9E5F390002996B9872506D8 (void);
  1803. // 0x000003C8 Newtonsoft.Json.Serialization.JsonPrimitiveContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreatePrimitiveContract(System.Type)
  1804. extern void DefaultContractResolver_CreatePrimitiveContract_m1568CF9A954BA356CCD2F35F80C8E7CBE3933456 (void);
  1805. // 0x000003C9 Newtonsoft.Json.Serialization.JsonLinqContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateLinqContract(System.Type)
  1806. extern void DefaultContractResolver_CreateLinqContract_mB0582C162176DFB0F2F231D16D65604C3A7EB382 (void);
  1807. // 0x000003CA Newtonsoft.Json.Serialization.JsonISerializableContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateISerializableContract(System.Type)
  1808. extern void DefaultContractResolver_CreateISerializableContract_m1501DBACC405F675F67A136B6034DBE8DB111927 (void);
  1809. // 0x000003CB Newtonsoft.Json.Serialization.JsonStringContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateStringContract(System.Type)
  1810. extern void DefaultContractResolver_CreateStringContract_m31FB27D556FCEA945BAE2B927A12CE10E23BF153 (void);
  1811. // 0x000003CC Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.DefaultContractResolver::CreateContract(System.Type)
  1812. extern void DefaultContractResolver_CreateContract_m074D213659E889D77E46B829BC8C115A16F9691F (void);
  1813. // 0x000003CD System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::IsJsonPrimitiveType(System.Type)
  1814. extern void DefaultContractResolver_IsJsonPrimitiveType_mD9CCEEF3A161B084AB4FD40F8E884779BF03DD7D (void);
  1815. // 0x000003CE System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::IsIConvertible(System.Type)
  1816. extern void DefaultContractResolver_IsIConvertible_m7E9D668172404E24BEE7ECB6697F931BB1E379D4 (void);
  1817. // 0x000003CF System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::CanConvertToString(System.Type)
  1818. extern void DefaultContractResolver_CanConvertToString_m2C1BCEF0BE65626A070E55A6EC5B864EFF19BF48 (void);
  1819. // 0x000003D0 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver::IsValidCallback(System.Reflection.MethodInfo,System.Reflection.ParameterInfo[],System.Type,System.Reflection.MethodInfo,System.Type&)
  1820. extern void DefaultContractResolver_IsValidCallback_m96E973783BD8DC95FB511DD2C9D6D3DFCF1C1B32 (void);
  1821. // 0x000003D1 System.String Newtonsoft.Json.Serialization.DefaultContractResolver::GetClrTypeFullName(System.Type)
  1822. extern void DefaultContractResolver_GetClrTypeFullName_m2BEF05EC12DB3ADEEC64C96CB5DC3BA6C7317B80 (void);
  1823. // 0x000003D2 System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.JsonProperty> Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperties(System.Type,Newtonsoft.Json.MemberSerialization)
  1824. extern void DefaultContractResolver_CreateProperties_mCA921C44C5F439158136489EDEB6C461B4B820BC (void);
  1825. // 0x000003D3 Newtonsoft.Json.Serialization.IValueProvider Newtonsoft.Json.Serialization.DefaultContractResolver::CreateMemberValueProvider(System.Reflection.MemberInfo)
  1826. extern void DefaultContractResolver_CreateMemberValueProvider_m04A8DACB4600B7E1687B23641816CF74ACC8B16F (void);
  1827. // 0x000003D4 Newtonsoft.Json.Serialization.JsonProperty Newtonsoft.Json.Serialization.DefaultContractResolver::CreateProperty(System.Reflection.MemberInfo,Newtonsoft.Json.MemberSerialization)
  1828. extern void DefaultContractResolver_CreateProperty_m14E19D4C353FA047C626C179791B86D8A6D7B5F1 (void);
  1829. // 0x000003D5 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::SetPropertySettingsFromAttributes(Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.String,System.Type,Newtonsoft.Json.MemberSerialization,System.Boolean&)
  1830. extern void DefaultContractResolver_SetPropertySettingsFromAttributes_mAD2F3F089E4AF01FEB25C039F57F739631E5F7DD (void);
  1831. // 0x000003D6 System.Predicate`1<System.Object> Newtonsoft.Json.Serialization.DefaultContractResolver::CreateShouldSerializeTest(System.Reflection.MemberInfo)
  1832. extern void DefaultContractResolver_CreateShouldSerializeTest_m2A4FFB38B7E8BB3A99B9E4D941524A78A332D8E1 (void);
  1833. // 0x000003D7 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::SetIsSpecifiedActions(Newtonsoft.Json.Serialization.JsonProperty,System.Reflection.MemberInfo,System.Boolean)
  1834. extern void DefaultContractResolver_SetIsSpecifiedActions_m29A33D3E6CE00C1C13D8965A2CBF124CEA02E865 (void);
  1835. // 0x000003D8 System.String Newtonsoft.Json.Serialization.DefaultContractResolver::ResolvePropertyName(System.String)
  1836. extern void DefaultContractResolver_ResolvePropertyName_mB5F93465D7D5DDFFE0813ED1D9C4758C489ADAF7 (void);
  1837. // 0x000003D9 System.String Newtonsoft.Json.Serialization.DefaultContractResolver::ResolveDictionaryKey(System.String)
  1838. extern void DefaultContractResolver_ResolveDictionaryKey_mC492C711CA8E10C8EBFDDB4C41145386B86130A6 (void);
  1839. // 0x000003DA System.String Newtonsoft.Json.Serialization.DefaultContractResolver::GetResolvedPropertyName(System.String)
  1840. extern void DefaultContractResolver_GetResolvedPropertyName_mFC2B40EE06D1B0DC9E19FFA91DFC20693F066578 (void);
  1841. // 0x000003DB System.Void Newtonsoft.Json.Serialization.DefaultContractResolver::.cctor()
  1842. extern void DefaultContractResolver__cctor_m8608D6E0158D2232F50C323B6E51D6E2202A84D9 (void);
  1843. // 0x000003DC System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2::.ctor(System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<TEnumeratorKey,TEnumeratorValue>>)
  1844. // 0x000003DD System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2::GetEnumerator()
  1845. // 0x000003DE System.Collections.IEnumerator Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2::System.Collections.IEnumerable.GetEnumerator()
  1846. // 0x000003DF System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::.ctor(System.Int32)
  1847. // 0x000003E0 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::System.IDisposable.Dispose()
  1848. // 0x000003E1 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::MoveNext()
  1849. // 0x000003E2 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::<>m__Finally1()
  1850. // 0x000003E3 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.Object,System.Object>>.get_Current()
  1851. // 0x000003E4 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::System.Collections.IEnumerator.Reset()
  1852. // 0x000003E5 System.Object Newtonsoft.Json.Serialization.DefaultContractResolver/EnumerableDictionaryWrapper`2/<GetEnumerator>d__2::System.Collections.IEnumerator.get_Current()
  1853. // 0x000003E6 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::.cctor()
  1854. extern void U3CU3Ec__cctor_m9EC269757B26B4813E589B1123CE120B3A497D63 (void);
  1855. // 0x000003E7 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::.ctor()
  1856. extern void U3CU3Ec__ctor_m2C5546AB35B398F2D78330D6129B7BBCC3203F68 (void);
  1857. // 0x000003E8 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::<GetSerializableMembers>b__30_0(System.Reflection.MemberInfo)
  1858. extern void U3CU3Ec_U3CGetSerializableMembersU3Eb__30_0_m791D70C99D4E33A1E15062413EEE62AD562037B9 (void);
  1859. // 0x000003E9 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::<GetSerializableMembers>b__30_1(System.Reflection.MemberInfo)
  1860. extern void U3CU3Ec_U3CGetSerializableMembersU3Eb__30_1_m96B3B053393D6561BAF8CF797FECE97F4449E526 (void);
  1861. // 0x000003EA System.Collections.Generic.IEnumerable`1<System.Reflection.MemberInfo> Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::<GetExtensionDataMemberForType>b__33_0(System.Type)
  1862. extern void U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__33_0_m6EB667E080CF02AC04A3F1034A99CDBA75721A2D (void);
  1863. // 0x000003EB System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::<GetExtensionDataMemberForType>b__33_1(System.Reflection.MemberInfo)
  1864. extern void U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__33_1_m85DF46087A841A2D787F963CFAEFE18A13A78746 (void);
  1865. // 0x000003EC System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::<GetAttributeConstructor>b__36_0(System.Reflection.ConstructorInfo)
  1866. extern void U3CU3Ec_U3CGetAttributeConstructorU3Eb__36_0_mF5A8F2BF2D689DB11587DF0ED6EEFB1FEA5528CF (void);
  1867. // 0x000003ED System.Int32 Newtonsoft.Json.Serialization.DefaultContractResolver/<>c::<CreateProperties>b__60_0(Newtonsoft.Json.Serialization.JsonProperty)
  1868. extern void U3CU3Ec_U3CCreatePropertiesU3Eb__60_0_m548D20C07CB10339108D20AA39BC742B50214E47 (void);
  1869. // 0x000003EE System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass34_0::.ctor()
  1870. extern void U3CU3Ec__DisplayClass34_0__ctor_m393BA3E0F7DE7A199719ABD4F8F001A2A5EE5BA3 (void);
  1871. // 0x000003EF System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass34_1::.ctor()
  1872. extern void U3CU3Ec__DisplayClass34_1__ctor_m80069CCCBF43FC0EFE8DA673B7272EF997504808 (void);
  1873. // 0x000003F0 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass34_1::<SetExtensionDataDelegates>b__0(System.Object,System.String,System.Object)
  1874. extern void U3CU3Ec__DisplayClass34_1_U3CSetExtensionDataDelegatesU3Eb__0_mBDE9A222B6950113F7F7AFE0F2E87069E77F77BD (void);
  1875. // 0x000003F1 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass34_2::.ctor()
  1876. extern void U3CU3Ec__DisplayClass34_2__ctor_m0B6F49294BD09EE559FB8374BE7D9603696A0FC0 (void);
  1877. // 0x000003F2 System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass34_2::<SetExtensionDataDelegates>b__1(System.Object)
  1878. extern void U3CU3Ec__DisplayClass34_2_U3CSetExtensionDataDelegatesU3Eb__1_mB7F0EF1B70A312CCEFBF0080B26B017BF9A7BCC4 (void);
  1879. // 0x000003F3 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass64_0::.ctor()
  1880. extern void U3CU3Ec__DisplayClass64_0__ctor_m0304B49F10D0EA4482684904DA5523E733F54C4F (void);
  1881. // 0x000003F4 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass64_0::<CreateShouldSerializeTest>b__0(System.Object)
  1882. extern void U3CU3Ec__DisplayClass64_0_U3CCreateShouldSerializeTestU3Eb__0_mC859EFE3BD0D275D1A42806AFD781A5DE407DD1C (void);
  1883. // 0x000003F5 System.Void Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass65_0::.ctor()
  1884. extern void U3CU3Ec__DisplayClass65_0__ctor_m317EFA126E76F58FDB02D5BF3FCD6EDE1549226C (void);
  1885. // 0x000003F6 System.Boolean Newtonsoft.Json.Serialization.DefaultContractResolver/<>c__DisplayClass65_0::<SetIsSpecifiedActions>b__0(System.Object)
  1886. extern void U3CU3Ec__DisplayClass65_0_U3CSetIsSpecifiedActionsU3Eb__0_m8D10BDDA860CF015E1ABC8B45CD874BF48ACB8A6 (void);
  1887. // 0x000003F7 System.Type Newtonsoft.Json.Serialization.DefaultSerializationBinder::GetTypeFromTypeNameKey(Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey)
  1888. extern void DefaultSerializationBinder_GetTypeFromTypeNameKey_m9C11DADB434B0AA3A72B8AFFE20FE58EBBF6E9F9 (void);
  1889. // 0x000003F8 System.Type Newtonsoft.Json.Serialization.DefaultSerializationBinder::BindToType(System.String,System.String)
  1890. extern void DefaultSerializationBinder_BindToType_mD961DBB73B7EA10E26645656194EC574B9446C1C (void);
  1891. // 0x000003F9 System.Void Newtonsoft.Json.Serialization.DefaultSerializationBinder::.ctor()
  1892. extern void DefaultSerializationBinder__ctor_mF2F29057B0BF9EFF86183CBA88CB48DA3E41FE1D (void);
  1893. // 0x000003FA System.Void Newtonsoft.Json.Serialization.DefaultSerializationBinder::.cctor()
  1894. extern void DefaultSerializationBinder__cctor_m8E3A2AB157EA691CC0314C91895137543E957BA8 (void);
  1895. // 0x000003FB System.Void Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::.ctor(System.String,System.String)
  1896. extern void TypeNameKey__ctor_mD4B4C258C07B7B90E3DF9FF8E544F235DEF91414 (void);
  1897. // 0x000003FC System.Int32 Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::GetHashCode()
  1898. extern void TypeNameKey_GetHashCode_m39B4CC4974DA019307688EB5C98DF95C979DE6DB (void);
  1899. // 0x000003FD System.Boolean Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::Equals(System.Object)
  1900. extern void TypeNameKey_Equals_mA8F9631B58F24FA621BC3773D773F504CD394476 (void);
  1901. // 0x000003FE System.Boolean Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey::Equals(Newtonsoft.Json.Serialization.DefaultSerializationBinder/TypeNameKey)
  1902. extern void TypeNameKey_Equals_mF640FAB58FACF8E193583786EE162430F96E7037 (void);
  1903. // 0x000003FF System.Void Newtonsoft.Json.Serialization.ErrorContext::.ctor(System.Object,System.Object,System.String,System.Exception)
  1904. extern void ErrorContext__ctor_mAB6B600BA9BB98E71B9FFF1B9DE4FAC4B5D04826 (void);
  1905. // 0x00000400 System.Boolean Newtonsoft.Json.Serialization.ErrorContext::get_Traced()
  1906. extern void ErrorContext_get_Traced_mB5B1E18305F17E84FB66AB2206B5D93F6A02B84C (void);
  1907. // 0x00000401 System.Void Newtonsoft.Json.Serialization.ErrorContext::set_Traced(System.Boolean)
  1908. extern void ErrorContext_set_Traced_mC054F18B762D95CC9C7152D6F320CDECCC832819 (void);
  1909. // 0x00000402 System.Exception Newtonsoft.Json.Serialization.ErrorContext::get_Error()
  1910. extern void ErrorContext_get_Error_m5833295E6BE4A4CAD540D3C1B80CF06E71B87A7A (void);
  1911. // 0x00000403 System.Void Newtonsoft.Json.Serialization.ErrorContext::set_Error(System.Exception)
  1912. extern void ErrorContext_set_Error_m75DF55A3439C3DEB05C71A542D23B3E8C3129E0E (void);
  1913. // 0x00000404 System.Void Newtonsoft.Json.Serialization.ErrorContext::set_OriginalObject(System.Object)
  1914. extern void ErrorContext_set_OriginalObject_m4CA8303766288428B25A40D3B1BB22A43A42BBAB (void);
  1915. // 0x00000405 System.Void Newtonsoft.Json.Serialization.ErrorContext::set_Member(System.Object)
  1916. extern void ErrorContext_set_Member_m1634A9D7F1819AD9369EEEB299B9006C2C5DBE8C (void);
  1917. // 0x00000406 System.Void Newtonsoft.Json.Serialization.ErrorContext::set_Path(System.String)
  1918. extern void ErrorContext_set_Path_m19C423B7C393619E551184BA867D3F04187922C6 (void);
  1919. // 0x00000407 System.Boolean Newtonsoft.Json.Serialization.ErrorContext::get_Handled()
  1920. extern void ErrorContext_get_Handled_m0149225F7BF0BA835D20FB8F86833149BF445DE0 (void);
  1921. // 0x00000408 Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.IContractResolver::ResolveContract(System.Type)
  1922. // 0x00000409 System.Void Newtonsoft.Json.Serialization.IValueProvider::SetValue(System.Object,System.Object)
  1923. // 0x0000040A System.Object Newtonsoft.Json.Serialization.IValueProvider::GetValue(System.Object)
  1924. // 0x0000040B System.Type Newtonsoft.Json.Serialization.JsonArrayContract::get_CollectionItemType()
  1925. extern void JsonArrayContract_get_CollectionItemType_m30274DD94F90DAAC9988F9626A2A30D9F16ABCF9 (void);
  1926. // 0x0000040C System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_CollectionItemType(System.Type)
  1927. extern void JsonArrayContract_set_CollectionItemType_mC33A98A3D84DC39307F612E097A6B3871375405E (void);
  1928. // 0x0000040D System.Boolean Newtonsoft.Json.Serialization.JsonArrayContract::get_IsMultidimensionalArray()
  1929. extern void JsonArrayContract_get_IsMultidimensionalArray_m77B5B57593E4AD11FF9BD276C695E2FE4BE6507F (void);
  1930. // 0x0000040E System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_IsMultidimensionalArray(System.Boolean)
  1931. extern void JsonArrayContract_set_IsMultidimensionalArray_mA55D34224E5FEA51CD59BF4AC74556D0C704E733 (void);
  1932. // 0x0000040F System.Boolean Newtonsoft.Json.Serialization.JsonArrayContract::get_IsArray()
  1933. extern void JsonArrayContract_get_IsArray_m14EF8A42187D59A9883FAD499456080F81A55124 (void);
  1934. // 0x00000410 System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_IsArray(System.Boolean)
  1935. extern void JsonArrayContract_set_IsArray_m3E4DEA93294EC3AAFD7147809DF576874E4FA709 (void);
  1936. // 0x00000411 System.Boolean Newtonsoft.Json.Serialization.JsonArrayContract::get_ShouldCreateWrapper()
  1937. extern void JsonArrayContract_get_ShouldCreateWrapper_m4484732675B96A4610566CFBD5A789C838E0D38B (void);
  1938. // 0x00000412 System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_ShouldCreateWrapper(System.Boolean)
  1939. extern void JsonArrayContract_set_ShouldCreateWrapper_m5565E91364A725C1EEAB9E50F561FF8B0F9F890E (void);
  1940. // 0x00000413 System.Boolean Newtonsoft.Json.Serialization.JsonArrayContract::get_CanDeserialize()
  1941. extern void JsonArrayContract_get_CanDeserialize_m0DACE2FEB9B4F65909E2F327C6AAF8C381A9FFA7 (void);
  1942. // 0x00000414 System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_CanDeserialize(System.Boolean)
  1943. extern void JsonArrayContract_set_CanDeserialize_m7D6073D8DAD68092D951ADC1DD1F8DAEDA4D6DC0 (void);
  1944. // 0x00000415 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonArrayContract::get_ParameterizedCreator()
  1945. extern void JsonArrayContract_get_ParameterizedCreator_m1C2B63A7855ED9BE487BC5FCB0AF10C658666EA1 (void);
  1946. // 0x00000416 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonArrayContract::get_OverrideCreator()
  1947. extern void JsonArrayContract_get_OverrideCreator_m73B0CD796CFF0962928C44FBD24A27AE3FEF4A34 (void);
  1948. // 0x00000417 System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_OverrideCreator(Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
  1949. extern void JsonArrayContract_set_OverrideCreator_mFD1815C37617FDE228F9E3EA7AEDF446ED6FF9A1 (void);
  1950. // 0x00000418 System.Boolean Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreator()
  1951. extern void JsonArrayContract_get_HasParameterizedCreator_mB012930557F741C94C7772EF7B3AE379B9B0E6E3 (void);
  1952. // 0x00000419 System.Void Newtonsoft.Json.Serialization.JsonArrayContract::set_HasParameterizedCreator(System.Boolean)
  1953. extern void JsonArrayContract_set_HasParameterizedCreator_m80CE10D322AC9BD72426BFCBA0655AC715945CFD (void);
  1954. // 0x0000041A System.Boolean Newtonsoft.Json.Serialization.JsonArrayContract::get_HasParameterizedCreatorInternal()
  1955. extern void JsonArrayContract_get_HasParameterizedCreatorInternal_m752BEE849B8912315429820CA092E58187D557B7 (void);
  1956. // 0x0000041B System.Void Newtonsoft.Json.Serialization.JsonArrayContract::.ctor(System.Type)
  1957. extern void JsonArrayContract__ctor_m3F1C09964B4D30DBAA46A7858FA8FCA491313852 (void);
  1958. // 0x0000041C Newtonsoft.Json.Utilities.IWrappedCollection Newtonsoft.Json.Serialization.JsonArrayContract::CreateWrapper(System.Object)
  1959. extern void JsonArrayContract_CreateWrapper_mBAE632B061E0C835014B6A045D1A05BCBE5D6521 (void);
  1960. // 0x0000041D System.Collections.IList Newtonsoft.Json.Serialization.JsonArrayContract::CreateTemporaryCollection()
  1961. extern void JsonArrayContract_CreateTemporaryCollection_m3BD33241ED5305EC0677EBD3D11B559BC0802081 (void);
  1962. // 0x0000041E System.Void Newtonsoft.Json.Serialization.SerializationCallback::.ctor(System.Object,System.IntPtr)
  1963. extern void SerializationCallback__ctor_mDE4947F5981E7D67B975242ED555E26029137241 (void);
  1964. // 0x0000041F System.Void Newtonsoft.Json.Serialization.SerializationCallback::Invoke(System.Object,System.Runtime.Serialization.StreamingContext)
  1965. extern void SerializationCallback_Invoke_m4495BBA7CA0B4135976F01A835B56D229494EC42 (void);
  1966. // 0x00000420 System.Void Newtonsoft.Json.Serialization.SerializationErrorCallback::.ctor(System.Object,System.IntPtr)
  1967. extern void SerializationErrorCallback__ctor_mD91F59657130468C271499528953D1B881CC010B (void);
  1968. // 0x00000421 System.Void Newtonsoft.Json.Serialization.SerializationErrorCallback::Invoke(System.Object,System.Runtime.Serialization.StreamingContext,Newtonsoft.Json.Serialization.ErrorContext)
  1969. extern void SerializationErrorCallback_Invoke_mA86CDA7529D889C03FEF849E3BA468D6E66389EF (void);
  1970. // 0x00000422 System.Void Newtonsoft.Json.Serialization.ExtensionDataSetter::.ctor(System.Object,System.IntPtr)
  1971. extern void ExtensionDataSetter__ctor_m896A6A7E6F7514AEC5888EEAA1519F104A8DD545 (void);
  1972. // 0x00000423 System.Void Newtonsoft.Json.Serialization.ExtensionDataSetter::Invoke(System.Object,System.String,System.Object)
  1973. extern void ExtensionDataSetter_Invoke_mB600B717D8F7343C62D8BD772906FBD41346AC7C (void);
  1974. // 0x00000424 System.Void Newtonsoft.Json.Serialization.ExtensionDataGetter::.ctor(System.Object,System.IntPtr)
  1975. extern void ExtensionDataGetter__ctor_m391280C57AA4255A0A67C3E07F818E9DD44129DF (void);
  1976. // 0x00000425 System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>> Newtonsoft.Json.Serialization.ExtensionDataGetter::Invoke(System.Object)
  1977. extern void ExtensionDataGetter_Invoke_m19FD222F139E1EA80186A95638F8BBBEDC176622 (void);
  1978. // 0x00000426 System.Type Newtonsoft.Json.Serialization.JsonContract::get_UnderlyingType()
  1979. extern void JsonContract_get_UnderlyingType_mEE45BC58C7DBE15FC705E9BE8AFB0CB244595B2F (void);
  1980. // 0x00000427 System.Void Newtonsoft.Json.Serialization.JsonContract::set_UnderlyingType(System.Type)
  1981. extern void JsonContract_set_UnderlyingType_m5FA996DFD7944189FFB4A39769AFAC62531A1974 (void);
  1982. // 0x00000428 System.Type Newtonsoft.Json.Serialization.JsonContract::get_CreatedType()
  1983. extern void JsonContract_get_CreatedType_m20F29589291CEE8652ECCCE92B5BC1406FD872CD (void);
  1984. // 0x00000429 System.Void Newtonsoft.Json.Serialization.JsonContract::set_CreatedType(System.Type)
  1985. extern void JsonContract_set_CreatedType_m804529BD33FCA51AA61694C36D820F544C975706 (void);
  1986. // 0x0000042A System.Nullable`1<System.Boolean> Newtonsoft.Json.Serialization.JsonContract::get_IsReference()
  1987. extern void JsonContract_get_IsReference_m4963062DFCD73CBC3EABBDB4CEFA62A4C574F748 (void);
  1988. // 0x0000042B System.Void Newtonsoft.Json.Serialization.JsonContract::set_IsReference(System.Nullable`1<System.Boolean>)
  1989. extern void JsonContract_set_IsReference_m647AD1AA63A19A316E5952A940375FF683203DD4 (void);
  1990. // 0x0000042C Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonContract::get_Converter()
  1991. extern void JsonContract_get_Converter_mC40FC145658D9B3F1FBFDB725A014C1F6CA395F2 (void);
  1992. // 0x0000042D System.Void Newtonsoft.Json.Serialization.JsonContract::set_Converter(Newtonsoft.Json.JsonConverter)
  1993. extern void JsonContract_set_Converter_m42066557973B76FA60A5C1B169E2E051CA48E67F (void);
  1994. // 0x0000042E Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonContract::get_InternalConverter()
  1995. extern void JsonContract_get_InternalConverter_m5B61143DF4001DB6DDE36A1557F75CFE1146AA17 (void);
  1996. // 0x0000042F System.Void Newtonsoft.Json.Serialization.JsonContract::set_InternalConverter(Newtonsoft.Json.JsonConverter)
  1997. extern void JsonContract_set_InternalConverter_mD6CF59AB4347754DC9CF40B5E815F6279C7E97CE (void);
  1998. // 0x00000430 System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.SerializationCallback> Newtonsoft.Json.Serialization.JsonContract::get_OnDeserializedCallbacks()
  1999. extern void JsonContract_get_OnDeserializedCallbacks_m136433782A70F48146D339B97CFB45EBD925EC6C (void);
  2000. // 0x00000431 System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.SerializationCallback> Newtonsoft.Json.Serialization.JsonContract::get_OnDeserializingCallbacks()
  2001. extern void JsonContract_get_OnDeserializingCallbacks_m4303B7B38E9C06BBC04AD8F723B1F57B0F1477C1 (void);
  2002. // 0x00000432 System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.SerializationCallback> Newtonsoft.Json.Serialization.JsonContract::get_OnSerializedCallbacks()
  2003. extern void JsonContract_get_OnSerializedCallbacks_mCA83E6C54200DB80FB4B4BBEE7BDA2294823FF65 (void);
  2004. // 0x00000433 System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.SerializationCallback> Newtonsoft.Json.Serialization.JsonContract::get_OnSerializingCallbacks()
  2005. extern void JsonContract_get_OnSerializingCallbacks_mCF98CA2D34B5F11C62492C0C112A58A9B8F0CB32 (void);
  2006. // 0x00000434 System.Collections.Generic.IList`1<Newtonsoft.Json.Serialization.SerializationErrorCallback> Newtonsoft.Json.Serialization.JsonContract::get_OnErrorCallbacks()
  2007. extern void JsonContract_get_OnErrorCallbacks_m50AAA1748E89BC1F97C25904189E999BC03EB2A5 (void);
  2008. // 0x00000435 System.Func`1<System.Object> Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreator()
  2009. extern void JsonContract_get_DefaultCreator_mAC359884E3D6135F81ACCE9FCC8CDE50BC4D7307 (void);
  2010. // 0x00000436 System.Void Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreator(System.Func`1<System.Object>)
  2011. extern void JsonContract_set_DefaultCreator_m58A325FBB24631FED3600957D5FF1A17A22B6FE7 (void);
  2012. // 0x00000437 System.Boolean Newtonsoft.Json.Serialization.JsonContract::get_DefaultCreatorNonPublic()
  2013. extern void JsonContract_get_DefaultCreatorNonPublic_m0C9C608E85A89198C900A2F7033BB06C02B6A3C9 (void);
  2014. // 0x00000438 System.Void Newtonsoft.Json.Serialization.JsonContract::set_DefaultCreatorNonPublic(System.Boolean)
  2015. extern void JsonContract_set_DefaultCreatorNonPublic_m0FFB3F071DAC8B35694B33BDC7D589512E918018 (void);
  2016. // 0x00000439 System.Void Newtonsoft.Json.Serialization.JsonContract::.ctor(System.Type)
  2017. extern void JsonContract__ctor_m619BFFA1C4ADB2EDB7C4614619134D23B671CA5D (void);
  2018. // 0x0000043A System.Void Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerializing(System.Object,System.Runtime.Serialization.StreamingContext)
  2019. extern void JsonContract_InvokeOnSerializing_m247E44B94413E2FB9776BBF052C1F10F56E63DFA (void);
  2020. // 0x0000043B System.Void Newtonsoft.Json.Serialization.JsonContract::InvokeOnSerialized(System.Object,System.Runtime.Serialization.StreamingContext)
  2021. extern void JsonContract_InvokeOnSerialized_m6FB294150CF04E288FB96D33A5801099B6D522D4 (void);
  2022. // 0x0000043C System.Void Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserializing(System.Object,System.Runtime.Serialization.StreamingContext)
  2023. extern void JsonContract_InvokeOnDeserializing_m8AABD483D7FDB54D48990A067BB8078A9EC1601F (void);
  2024. // 0x0000043D System.Void Newtonsoft.Json.Serialization.JsonContract::InvokeOnDeserialized(System.Object,System.Runtime.Serialization.StreamingContext)
  2025. extern void JsonContract_InvokeOnDeserialized_mEDB0C8FD5D88D4702C4178B3961C8A213EA44C0B (void);
  2026. // 0x0000043E System.Void Newtonsoft.Json.Serialization.JsonContract::InvokeOnError(System.Object,System.Runtime.Serialization.StreamingContext,Newtonsoft.Json.Serialization.ErrorContext)
  2027. extern void JsonContract_InvokeOnError_mF3594B4D652564F6609743EA297BCA1DD786DFF1 (void);
  2028. // 0x0000043F Newtonsoft.Json.Serialization.SerializationCallback Newtonsoft.Json.Serialization.JsonContract::CreateSerializationCallback(System.Reflection.MethodInfo)
  2029. extern void JsonContract_CreateSerializationCallback_m6657696172BA44D3931A54C4E1F541D65C0F7016 (void);
  2030. // 0x00000440 Newtonsoft.Json.Serialization.SerializationErrorCallback Newtonsoft.Json.Serialization.JsonContract::CreateSerializationErrorCallback(System.Reflection.MethodInfo)
  2031. extern void JsonContract_CreateSerializationErrorCallback_m692EAA81939A49A65DA726D5DA284F24C3926349 (void);
  2032. // 0x00000441 System.Void Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass73_0::.ctor()
  2033. extern void U3CU3Ec__DisplayClass73_0__ctor_mDE3BBA79D3D24F07C649FFFC6EA9050BAF9E0F1C (void);
  2034. // 0x00000442 System.Void Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass73_0::<CreateSerializationCallback>b__0(System.Object,System.Runtime.Serialization.StreamingContext)
  2035. extern void U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m0CCC486045F01CB1ABC8F6D058C7AEB3FB9938B9 (void);
  2036. // 0x00000443 System.Void Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass74_0::.ctor()
  2037. extern void U3CU3Ec__DisplayClass74_0__ctor_m2039C4E4C4667BFA834AF8CBA55F60AC674ED227 (void);
  2038. // 0x00000444 System.Void Newtonsoft.Json.Serialization.JsonContract/<>c__DisplayClass74_0::<CreateSerializationErrorCallback>b__0(System.Object,System.Runtime.Serialization.StreamingContext,Newtonsoft.Json.Serialization.ErrorContext)
  2039. extern void U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_m6FE49A01A57F2D55E9C05CD142AEB158F2F19452 (void);
  2040. // 0x00000445 System.Func`2<System.String,System.String> Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyResolver()
  2041. extern void JsonDictionaryContract_get_DictionaryKeyResolver_m9225A525A1C6A753AB9522BFF818561E892BAAD8 (void);
  2042. // 0x00000446 System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyResolver(System.Func`2<System.String,System.String>)
  2043. extern void JsonDictionaryContract_set_DictionaryKeyResolver_m019490E4A2A00A3C8A7D2315AC19031B87FC31BB (void);
  2044. // 0x00000447 System.Type Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryKeyType()
  2045. extern void JsonDictionaryContract_get_DictionaryKeyType_m00849788AAE3E7EDACE6243991F26E26B34757BA (void);
  2046. // 0x00000448 System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryKeyType(System.Type)
  2047. extern void JsonDictionaryContract_set_DictionaryKeyType_m0F83C007A6211881A50529082104B52CA20AA8D6 (void);
  2048. // 0x00000449 System.Type Newtonsoft.Json.Serialization.JsonDictionaryContract::get_DictionaryValueType()
  2049. extern void JsonDictionaryContract_get_DictionaryValueType_m8446A8DFE541FAEE9158A91818E3AFC2AAE94E35 (void);
  2050. // 0x0000044A System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_DictionaryValueType(System.Type)
  2051. extern void JsonDictionaryContract_set_DictionaryValueType_mCEA92A7854F7961668048449778E4CEE1D3E124F (void);
  2052. // 0x0000044B Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.JsonDictionaryContract::get_KeyContract()
  2053. extern void JsonDictionaryContract_get_KeyContract_m06A90ADAEBBBC7EF992EA3823733301448E61332 (void);
  2054. // 0x0000044C System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_KeyContract(Newtonsoft.Json.Serialization.JsonContract)
  2055. extern void JsonDictionaryContract_set_KeyContract_m83E7AC51A330E5E28E4F2EF51FF48B6771133AFE (void);
  2056. // 0x0000044D System.Boolean Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ShouldCreateWrapper()
  2057. extern void JsonDictionaryContract_get_ShouldCreateWrapper_m9EA26FC10FE48F17280E7F1530A4F3EBA1D6BD38 (void);
  2058. // 0x0000044E System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_ShouldCreateWrapper(System.Boolean)
  2059. extern void JsonDictionaryContract_set_ShouldCreateWrapper_mA3D0E15FE2E7847519192FF16A50EA819D66A890 (void);
  2060. // 0x0000044F Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonDictionaryContract::get_ParameterizedCreator()
  2061. extern void JsonDictionaryContract_get_ParameterizedCreator_m933AC2CD9EF35EF03C1F5CC3E3B3DE0AE33042B7 (void);
  2062. // 0x00000450 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonDictionaryContract::get_OverrideCreator()
  2063. extern void JsonDictionaryContract_get_OverrideCreator_m5B50A78FA760B48BFB6439797E70446E50265FE5 (void);
  2064. // 0x00000451 System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_OverrideCreator(Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>)
  2065. extern void JsonDictionaryContract_set_OverrideCreator_m273980C81B3AE9E0857B378AD1F0C9BABBF55AD5 (void);
  2066. // 0x00000452 System.Boolean Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreator()
  2067. extern void JsonDictionaryContract_get_HasParameterizedCreator_m658DB0958B4E3300EBEE1E0887A86DCB11AAC91D (void);
  2068. // 0x00000453 System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::set_HasParameterizedCreator(System.Boolean)
  2069. extern void JsonDictionaryContract_set_HasParameterizedCreator_m1F1CFE2190BAEF14F221CB7C4D545BCD770B1563 (void);
  2070. // 0x00000454 System.Boolean Newtonsoft.Json.Serialization.JsonDictionaryContract::get_HasParameterizedCreatorInternal()
  2071. extern void JsonDictionaryContract_get_HasParameterizedCreatorInternal_m11406714825D90112221DE61151E1B08CD4A5E6A (void);
  2072. // 0x00000455 System.Void Newtonsoft.Json.Serialization.JsonDictionaryContract::.ctor(System.Type)
  2073. extern void JsonDictionaryContract__ctor_m2448E2CCF89D8776D1613AE6D9A688FE0961FCA2 (void);
  2074. // 0x00000456 Newtonsoft.Json.Utilities.IWrappedDictionary Newtonsoft.Json.Serialization.JsonDictionaryContract::CreateWrapper(System.Object)
  2075. extern void JsonDictionaryContract_CreateWrapper_m25273B5BB59F9FD254C6C76FD0C33C0602A85985 (void);
  2076. // 0x00000457 System.Collections.IDictionary Newtonsoft.Json.Serialization.JsonDictionaryContract::CreateTemporaryDictionary()
  2077. extern void JsonDictionaryContract_CreateTemporaryDictionary_m2A4CC03FFCDD8B141FD8ED7FB61D82984FD02ED6 (void);
  2078. // 0x00000458 Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.JsonProperty::get_PropertyContract()
  2079. extern void JsonProperty_get_PropertyContract_mE5C74515EB33A4F8325773FF4541BCACEABEF1C9 (void);
  2080. // 0x00000459 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_PropertyContract(Newtonsoft.Json.Serialization.JsonContract)
  2081. extern void JsonProperty_set_PropertyContract_mA2C3CEA87F72E86F7023B7E0D37AFB349DA2C2B3 (void);
  2082. // 0x0000045A System.String Newtonsoft.Json.Serialization.JsonProperty::get_PropertyName()
  2083. extern void JsonProperty_get_PropertyName_m851570734464B93D7F2246206C28968FC26D6505 (void);
  2084. // 0x0000045B System.Void Newtonsoft.Json.Serialization.JsonProperty::set_PropertyName(System.String)
  2085. extern void JsonProperty_set_PropertyName_m0C03EC9AEA61A658F14F47E9A73CED7AFFA6EC94 (void);
  2086. // 0x0000045C System.Type Newtonsoft.Json.Serialization.JsonProperty::get_DeclaringType()
  2087. extern void JsonProperty_get_DeclaringType_mEDA9D0497A5A3F73112C02C54DB77D61F497604B (void);
  2088. // 0x0000045D System.Void Newtonsoft.Json.Serialization.JsonProperty::set_DeclaringType(System.Type)
  2089. extern void JsonProperty_set_DeclaringType_m3B9596397413835A0BCBD40EF0D7C13D6DC174AA (void);
  2090. // 0x0000045E System.Nullable`1<System.Int32> Newtonsoft.Json.Serialization.JsonProperty::get_Order()
  2091. extern void JsonProperty_get_Order_m8DC4EBE07E682CD6208BD1A39A244DE3BAB93D2A (void);
  2092. // 0x0000045F System.Void Newtonsoft.Json.Serialization.JsonProperty::set_Order(System.Nullable`1<System.Int32>)
  2093. extern void JsonProperty_set_Order_mA8B64035411AA95B804E37B0E4B3606C4774A531 (void);
  2094. // 0x00000460 System.String Newtonsoft.Json.Serialization.JsonProperty::get_UnderlyingName()
  2095. extern void JsonProperty_get_UnderlyingName_mB4E3E77F581F6EB1AFB9911DF29D48D7FF3D286F (void);
  2096. // 0x00000461 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_UnderlyingName(System.String)
  2097. extern void JsonProperty_set_UnderlyingName_m54B7F3DC51324C6E7E665B4118283524D852F9CF (void);
  2098. // 0x00000462 Newtonsoft.Json.Serialization.IValueProvider Newtonsoft.Json.Serialization.JsonProperty::get_ValueProvider()
  2099. extern void JsonProperty_get_ValueProvider_m576A4EF4D1E1ED28C35389893FB16F0385BE2C74 (void);
  2100. // 0x00000463 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ValueProvider(Newtonsoft.Json.Serialization.IValueProvider)
  2101. extern void JsonProperty_set_ValueProvider_m6AF812A711E436F0EF86E9440821EB49F8E0F305 (void);
  2102. // 0x00000464 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_AttributeProvider(Newtonsoft.Json.Serialization.IAttributeProvider)
  2103. extern void JsonProperty_set_AttributeProvider_m81B9C478B7AD414C11B9FE6B92A9992954054A4C (void);
  2104. // 0x00000465 System.Type Newtonsoft.Json.Serialization.JsonProperty::get_PropertyType()
  2105. extern void JsonProperty_get_PropertyType_mA8189F0E90030BC557BA04E69C7C7B9FDE22158D (void);
  2106. // 0x00000466 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_PropertyType(System.Type)
  2107. extern void JsonProperty_set_PropertyType_m4B0DA5746ADD7B8C0BB3C081AEF730BEBDE1BAE2 (void);
  2108. // 0x00000467 Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonProperty::get_Converter()
  2109. extern void JsonProperty_get_Converter_mF593A894B88EC9D726FAC393819855A76C44BA71 (void);
  2110. // 0x00000468 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_Converter(Newtonsoft.Json.JsonConverter)
  2111. extern void JsonProperty_set_Converter_m78DBAB2EDD871626D34E10EC0576E8BE764C6EA6 (void);
  2112. // 0x00000469 Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonProperty::get_MemberConverter()
  2113. extern void JsonProperty_get_MemberConverter_m0440F83951A37CD6E3011615B58DF2153105D5EF (void);
  2114. // 0x0000046A System.Void Newtonsoft.Json.Serialization.JsonProperty::set_MemberConverter(Newtonsoft.Json.JsonConverter)
  2115. extern void JsonProperty_set_MemberConverter_m0CC95C7001339F065F8E0B4459A5E2978642AE80 (void);
  2116. // 0x0000046B System.Boolean Newtonsoft.Json.Serialization.JsonProperty::get_Ignored()
  2117. extern void JsonProperty_get_Ignored_m01CFD3C673171DB008F1D7AA6BD52A8C6617CEE8 (void);
  2118. // 0x0000046C System.Void Newtonsoft.Json.Serialization.JsonProperty::set_Ignored(System.Boolean)
  2119. extern void JsonProperty_set_Ignored_mF542BBDAEB126FCEA37EC52BB80A360E4693302F (void);
  2120. // 0x0000046D System.Boolean Newtonsoft.Json.Serialization.JsonProperty::get_Readable()
  2121. extern void JsonProperty_get_Readable_m9626EAB32A0CEB68C6B5D807C676FC4712381C99 (void);
  2122. // 0x0000046E System.Void Newtonsoft.Json.Serialization.JsonProperty::set_Readable(System.Boolean)
  2123. extern void JsonProperty_set_Readable_m1E24E2B08629CC42CBBFEFF82A39BC7E8C0C194C (void);
  2124. // 0x0000046F System.Boolean Newtonsoft.Json.Serialization.JsonProperty::get_Writable()
  2125. extern void JsonProperty_get_Writable_m7968E6822DCD4501B182618778166C23A99A2680 (void);
  2126. // 0x00000470 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_Writable(System.Boolean)
  2127. extern void JsonProperty_set_Writable_mECE9F7D38A6EBC91A48EC1F2BE7B1F0F664A137E (void);
  2128. // 0x00000471 System.Boolean Newtonsoft.Json.Serialization.JsonProperty::get_HasMemberAttribute()
  2129. extern void JsonProperty_get_HasMemberAttribute_m35D7AD307D8AB77E2FA067D509D301FD53200E8E (void);
  2130. // 0x00000472 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_HasMemberAttribute(System.Boolean)
  2131. extern void JsonProperty_set_HasMemberAttribute_m0F180CF7D80EB359016487BEA18E9F410155EA70 (void);
  2132. // 0x00000473 System.Object Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValue()
  2133. extern void JsonProperty_get_DefaultValue_mB9C7CE821E89D2B6A883101E37C2CCBE687FF142 (void);
  2134. // 0x00000474 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_DefaultValue(System.Object)
  2135. extern void JsonProperty_set_DefaultValue_mCF8C783AD2C0CF6E7F4177DE6CA0F48CDFAFD76F (void);
  2136. // 0x00000475 System.Object Newtonsoft.Json.Serialization.JsonProperty::GetResolvedDefaultValue()
  2137. extern void JsonProperty_GetResolvedDefaultValue_m7DA1F4D4DBC278A3C3B04EC95AF99B32E212649F (void);
  2138. // 0x00000476 Newtonsoft.Json.Required Newtonsoft.Json.Serialization.JsonProperty::get_Required()
  2139. extern void JsonProperty_get_Required_m7D663FFD03D0FFD660D0334F9CA9E4526ECF3D68 (void);
  2140. // 0x00000477 System.Nullable`1<System.Boolean> Newtonsoft.Json.Serialization.JsonProperty::get_IsReference()
  2141. extern void JsonProperty_get_IsReference_mFE510C42699FB154AF54E4A01F2FF9B6D29C687B (void);
  2142. // 0x00000478 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_IsReference(System.Nullable`1<System.Boolean>)
  2143. extern void JsonProperty_set_IsReference_m3287EA93B063AC7B3B881E0DAE3C661F99848617 (void);
  2144. // 0x00000479 System.Nullable`1<Newtonsoft.Json.NullValueHandling> Newtonsoft.Json.Serialization.JsonProperty::get_NullValueHandling()
  2145. extern void JsonProperty_get_NullValueHandling_m1E5CD9BFF0ECF2BA724A76E76727BC968AD20D21 (void);
  2146. // 0x0000047A System.Void Newtonsoft.Json.Serialization.JsonProperty::set_NullValueHandling(System.Nullable`1<Newtonsoft.Json.NullValueHandling>)
  2147. extern void JsonProperty_set_NullValueHandling_mFEA55CC4E02A62C553F9F3E8FA30D2ABE38020BE (void);
  2148. // 0x0000047B System.Nullable`1<Newtonsoft.Json.DefaultValueHandling> Newtonsoft.Json.Serialization.JsonProperty::get_DefaultValueHandling()
  2149. extern void JsonProperty_get_DefaultValueHandling_mC75EB106FBF28841D5AA1B9DCB3CCFA742C59860 (void);
  2150. // 0x0000047C System.Void Newtonsoft.Json.Serialization.JsonProperty::set_DefaultValueHandling(System.Nullable`1<Newtonsoft.Json.DefaultValueHandling>)
  2151. extern void JsonProperty_set_DefaultValueHandling_m9391E3C05C6D95E5BE0A4A6F1919B3406874CE8D (void);
  2152. // 0x0000047D System.Nullable`1<Newtonsoft.Json.ReferenceLoopHandling> Newtonsoft.Json.Serialization.JsonProperty::get_ReferenceLoopHandling()
  2153. extern void JsonProperty_get_ReferenceLoopHandling_mC496ABEDE0E6A4F529B597DDE618D9699D408E02 (void);
  2154. // 0x0000047E System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ReferenceLoopHandling(System.Nullable`1<Newtonsoft.Json.ReferenceLoopHandling>)
  2155. extern void JsonProperty_set_ReferenceLoopHandling_mA35889121950D7FD01B6A122CE9701EC7FFE6D37 (void);
  2156. // 0x0000047F System.Nullable`1<Newtonsoft.Json.ObjectCreationHandling> Newtonsoft.Json.Serialization.JsonProperty::get_ObjectCreationHandling()
  2157. extern void JsonProperty_get_ObjectCreationHandling_m141D6AAC67FABF3CA6A5D862F03A85B9DDCB4035 (void);
  2158. // 0x00000480 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ObjectCreationHandling(System.Nullable`1<Newtonsoft.Json.ObjectCreationHandling>)
  2159. extern void JsonProperty_set_ObjectCreationHandling_mF4120F246285A07FE3A2CE6F848DC68BD57C47C2 (void);
  2160. // 0x00000481 System.Nullable`1<Newtonsoft.Json.TypeNameHandling> Newtonsoft.Json.Serialization.JsonProperty::get_TypeNameHandling()
  2161. extern void JsonProperty_get_TypeNameHandling_m2F9E3B5433A10E4CD72C92202DD1585CAD469CE1 (void);
  2162. // 0x00000482 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_TypeNameHandling(System.Nullable`1<Newtonsoft.Json.TypeNameHandling>)
  2163. extern void JsonProperty_set_TypeNameHandling_m3FADC60F2285A7ED7DE2E54C0B2494D9769B6818 (void);
  2164. // 0x00000483 System.Predicate`1<System.Object> Newtonsoft.Json.Serialization.JsonProperty::get_ShouldSerialize()
  2165. extern void JsonProperty_get_ShouldSerialize_m19D4CEE618223380ED42C125E4D24AAEEC7C37F9 (void);
  2166. // 0x00000484 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ShouldSerialize(System.Predicate`1<System.Object>)
  2167. extern void JsonProperty_set_ShouldSerialize_m08D48F1C2D7C3892184861BFC8F3A1AF21171F65 (void);
  2168. // 0x00000485 System.Predicate`1<System.Object> Newtonsoft.Json.Serialization.JsonProperty::get_ShouldDeserialize()
  2169. extern void JsonProperty_get_ShouldDeserialize_m98852F15A8A81FF71DE9C9AE4176F8989474D926 (void);
  2170. // 0x00000486 System.Predicate`1<System.Object> Newtonsoft.Json.Serialization.JsonProperty::get_GetIsSpecified()
  2171. extern void JsonProperty_get_GetIsSpecified_m98832BC1773557CFD71CCB2430D4EF109A6CEEE7 (void);
  2172. // 0x00000487 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_GetIsSpecified(System.Predicate`1<System.Object>)
  2173. extern void JsonProperty_set_GetIsSpecified_m5524EC169BCF611A057633E87DBC3C8353F93F49 (void);
  2174. // 0x00000488 System.Action`2<System.Object,System.Object> Newtonsoft.Json.Serialization.JsonProperty::get_SetIsSpecified()
  2175. extern void JsonProperty_get_SetIsSpecified_m7A84F2242BEB91E7B1DB338CC9E139039F01CE46 (void);
  2176. // 0x00000489 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_SetIsSpecified(System.Action`2<System.Object,System.Object>)
  2177. extern void JsonProperty_set_SetIsSpecified_mA3076D9595079E61942368A41AF0985C51B2BA60 (void);
  2178. // 0x0000048A System.String Newtonsoft.Json.Serialization.JsonProperty::ToString()
  2179. extern void JsonProperty_ToString_mB4F98FD132C640919152F33249EE708DB00D3AE3 (void);
  2180. // 0x0000048B Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonProperty::get_ItemConverter()
  2181. extern void JsonProperty_get_ItemConverter_m848F229776550F9D3338BDE53465F8456DE11BD8 (void);
  2182. // 0x0000048C System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ItemConverter(Newtonsoft.Json.JsonConverter)
  2183. extern void JsonProperty_set_ItemConverter_mC6A4177099B43B9E51CEC2A9DFBB1E0E3345D166 (void);
  2184. // 0x0000048D System.Nullable`1<System.Boolean> Newtonsoft.Json.Serialization.JsonProperty::get_ItemIsReference()
  2185. extern void JsonProperty_get_ItemIsReference_mB4453D6036A58098DDF1A6A0CFD802433AC201D1 (void);
  2186. // 0x0000048E System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ItemIsReference(System.Nullable`1<System.Boolean>)
  2187. extern void JsonProperty_set_ItemIsReference_mCDD468EA0E2D91F52B5A305D90E89D9F8C9A7AF4 (void);
  2188. // 0x0000048F System.Nullable`1<Newtonsoft.Json.TypeNameHandling> Newtonsoft.Json.Serialization.JsonProperty::get_ItemTypeNameHandling()
  2189. extern void JsonProperty_get_ItemTypeNameHandling_m3173F46808E37A3CC6DB4970C2042347053FFEDD (void);
  2190. // 0x00000490 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ItemTypeNameHandling(System.Nullable`1<Newtonsoft.Json.TypeNameHandling>)
  2191. extern void JsonProperty_set_ItemTypeNameHandling_mFF4E69972F1A1F9BEE22D8544C95DB776716862C (void);
  2192. // 0x00000491 System.Nullable`1<Newtonsoft.Json.ReferenceLoopHandling> Newtonsoft.Json.Serialization.JsonProperty::get_ItemReferenceLoopHandling()
  2193. extern void JsonProperty_get_ItemReferenceLoopHandling_m6C4DB687F424B866C59DB0885A9A6CAD9EC53244 (void);
  2194. // 0x00000492 System.Void Newtonsoft.Json.Serialization.JsonProperty::set_ItemReferenceLoopHandling(System.Nullable`1<Newtonsoft.Json.ReferenceLoopHandling>)
  2195. extern void JsonProperty_set_ItemReferenceLoopHandling_m0C489B878D976FFB8D7C9C79ECBFBA4BD1334297 (void);
  2196. // 0x00000493 System.Void Newtonsoft.Json.Serialization.JsonProperty::WritePropertyName(Newtonsoft.Json.JsonWriter)
  2197. extern void JsonProperty_WritePropertyName_m9D72E5BB782435EBD9EF33074F93C53037BFCF38 (void);
  2198. // 0x00000494 System.Void Newtonsoft.Json.Serialization.JsonProperty::.ctor()
  2199. extern void JsonProperty__ctor_mE37299FE12F57AA239ED22B3101BF3F8E6E9AC82 (void);
  2200. // 0x00000495 System.Void Newtonsoft.Json.Serialization.JsonPropertyCollection::.ctor(System.Type)
  2201. extern void JsonPropertyCollection__ctor_mC2AC668AE0D739537085835F4EE851C2A453A765 (void);
  2202. // 0x00000496 System.String Newtonsoft.Json.Serialization.JsonPropertyCollection::GetKeyForItem(Newtonsoft.Json.Serialization.JsonProperty)
  2203. extern void JsonPropertyCollection_GetKeyForItem_m446CE128D27EB33E9C6222C50AB1393A4692B2EC (void);
  2204. // 0x00000497 System.Void Newtonsoft.Json.Serialization.JsonPropertyCollection::AddProperty(Newtonsoft.Json.Serialization.JsonProperty)
  2205. extern void JsonPropertyCollection_AddProperty_mED53D52E7A02CE801B52BF0DA9B107E50ED68A19 (void);
  2206. // 0x00000498 Newtonsoft.Json.Serialization.JsonProperty Newtonsoft.Json.Serialization.JsonPropertyCollection::GetClosestMatchProperty(System.String)
  2207. extern void JsonPropertyCollection_GetClosestMatchProperty_m9F4FB841CB058642A7FF2BA1F75BA39083E8684C (void);
  2208. // 0x00000499 System.Boolean Newtonsoft.Json.Serialization.JsonPropertyCollection::TryGetValue(System.String,Newtonsoft.Json.Serialization.JsonProperty&)
  2209. extern void JsonPropertyCollection_TryGetValue_mFAE5832EBDBB5AF2C8045AFAE86B0ED5844F2CC1 (void);
  2210. // 0x0000049A Newtonsoft.Json.Serialization.JsonProperty Newtonsoft.Json.Serialization.JsonPropertyCollection::GetProperty(System.String,System.StringComparison)
  2211. extern void JsonPropertyCollection_GetProperty_m8A75953BF42F4D06CD800A1E873DE88454CA801B (void);
  2212. // 0x0000049B System.Object Newtonsoft.Json.Serialization.IReferenceResolver::ResolveReference(System.Object,System.String)
  2213. // 0x0000049C System.String Newtonsoft.Json.Serialization.IReferenceResolver::GetReference(System.Object,System.Object)
  2214. // 0x0000049D System.Boolean Newtonsoft.Json.Serialization.IReferenceResolver::IsReferenced(System.Object,System.Object)
  2215. // 0x0000049E System.Void Newtonsoft.Json.Serialization.IReferenceResolver::AddReference(System.Object,System.String,System.Object)
  2216. // 0x0000049F Newtonsoft.Json.MemberSerialization Newtonsoft.Json.Serialization.JsonObjectContract::get_MemberSerialization()
  2217. extern void JsonObjectContract_get_MemberSerialization_m1A3F6FC6C0539EA0B9110102D6234C3A2B229EF3 (void);
  2218. // 0x000004A0 System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_MemberSerialization(Newtonsoft.Json.MemberSerialization)
  2219. extern void JsonObjectContract_set_MemberSerialization_mD9B050351BAD2F50F228CD304B0794051D91DF3D (void);
  2220. // 0x000004A1 System.Nullable`1<Newtonsoft.Json.Required> Newtonsoft.Json.Serialization.JsonObjectContract::get_ItemRequired()
  2221. extern void JsonObjectContract_get_ItemRequired_m6F8D026FFD2E17C94562660484489C53F9EF093C (void);
  2222. // 0x000004A2 System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_ItemRequired(System.Nullable`1<Newtonsoft.Json.Required>)
  2223. extern void JsonObjectContract_set_ItemRequired_mC242D99E863066A9AF7B0FFF2A47D51B098EA633 (void);
  2224. // 0x000004A3 Newtonsoft.Json.Serialization.JsonPropertyCollection Newtonsoft.Json.Serialization.JsonObjectContract::get_Properties()
  2225. extern void JsonObjectContract_get_Properties_mA2FE17E3A8F32EBEA986F7959A630584665F9FAF (void);
  2226. // 0x000004A4 System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_Properties(Newtonsoft.Json.Serialization.JsonPropertyCollection)
  2227. extern void JsonObjectContract_set_Properties_m271758DCBDD95F1F27AF08E1770DE408FD868CA6 (void);
  2228. // 0x000004A5 Newtonsoft.Json.Serialization.JsonPropertyCollection Newtonsoft.Json.Serialization.JsonObjectContract::get_CreatorParameters()
  2229. extern void JsonObjectContract_get_CreatorParameters_mB82FF8E05518A820AC46E8458586AA172FDD902F (void);
  2230. // 0x000004A6 System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_OverrideConstructor(System.Reflection.ConstructorInfo)
  2231. extern void JsonObjectContract_set_OverrideConstructor_m2D710816841306A19C76988A4B71E34EEB846AD0 (void);
  2232. // 0x000004A7 System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_ParametrizedConstructor(System.Reflection.ConstructorInfo)
  2233. extern void JsonObjectContract_set_ParametrizedConstructor_m0260A9A40ADDC2C67005F60F74298B9D13E9DE58 (void);
  2234. // 0x000004A8 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonObjectContract::get_OverrideCreator()
  2235. extern void JsonObjectContract_get_OverrideCreator_m157D862BED71DDEFEFBA9797EDAF488023FEB95E (void);
  2236. // 0x000004A9 Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object> Newtonsoft.Json.Serialization.JsonObjectContract::get_ParameterizedCreator()
  2237. extern void JsonObjectContract_get_ParameterizedCreator_mCE636445DC710675BA24F84ECA1564D57E19B14C (void);
  2238. // 0x000004AA Newtonsoft.Json.Serialization.ExtensionDataSetter Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataSetter()
  2239. extern void JsonObjectContract_get_ExtensionDataSetter_mAA57BAED60DC7A3454CA2C6726082552F913FBF5 (void);
  2240. // 0x000004AB System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataSetter(Newtonsoft.Json.Serialization.ExtensionDataSetter)
  2241. extern void JsonObjectContract_set_ExtensionDataSetter_m0569DC3D7CBA298C858F17DF14123A088EDFA1D8 (void);
  2242. // 0x000004AC Newtonsoft.Json.Serialization.ExtensionDataGetter Newtonsoft.Json.Serialization.JsonObjectContract::get_ExtensionDataGetter()
  2243. extern void JsonObjectContract_get_ExtensionDataGetter_m93561BA532A7F0A6FE044EE23305DA08F6C93699 (void);
  2244. // 0x000004AD System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataGetter(Newtonsoft.Json.Serialization.ExtensionDataGetter)
  2245. extern void JsonObjectContract_set_ExtensionDataGetter_m0D6330E331D0EA5B70BEFB451A6A754FFA0860FB (void);
  2246. // 0x000004AE System.Void Newtonsoft.Json.Serialization.JsonObjectContract::set_ExtensionDataValueType(System.Type)
  2247. extern void JsonObjectContract_set_ExtensionDataValueType_m7CAAB1515668A471D1B420212F505C5CF8624608 (void);
  2248. // 0x000004AF System.Boolean Newtonsoft.Json.Serialization.JsonObjectContract::get_HasRequiredOrDefaultValueProperties()
  2249. extern void JsonObjectContract_get_HasRequiredOrDefaultValueProperties_mEFA1F1A0ECCC748D0B4DBC81D55C3E3FC71AB68E (void);
  2250. // 0x000004B0 System.Void Newtonsoft.Json.Serialization.JsonObjectContract::.ctor(System.Type)
  2251. extern void JsonObjectContract__ctor_mC60D6E7311D36564DD6D57B00FF789D67A25C643 (void);
  2252. // 0x000004B1 System.Object Newtonsoft.Json.Serialization.JsonObjectContract::GetUninitializedObject()
  2253. extern void JsonObjectContract_GetUninitializedObject_m7F5FF3453D03F893AA58B6975DCC0EB36FDCED76 (void);
  2254. // 0x000004B2 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalBase::.ctor(Newtonsoft.Json.JsonSerializer)
  2255. extern void JsonSerializerInternalBase__ctor_m4F3E9199729B2D3321F81F156EFECA1102BB8390 (void);
  2256. // 0x000004B3 Newtonsoft.Json.Utilities.BidirectionalDictionary`2<System.String,System.Object> Newtonsoft.Json.Serialization.JsonSerializerInternalBase::get_DefaultReferenceMappings()
  2257. extern void JsonSerializerInternalBase_get_DefaultReferenceMappings_mAE5A117EE09C168E28D63C7F9FA931A9F0002F00 (void);
  2258. // 0x000004B4 Newtonsoft.Json.Serialization.ErrorContext Newtonsoft.Json.Serialization.JsonSerializerInternalBase::GetErrorContext(System.Object,System.Object,System.String,System.Exception)
  2259. extern void JsonSerializerInternalBase_GetErrorContext_mF2DFA914B53883ACF7E450271F7F0A302C3B6BFB (void);
  2260. // 0x000004B5 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalBase::ClearErrorContext()
  2261. extern void JsonSerializerInternalBase_ClearErrorContext_m55B48F84470677BA5EFD84043897B7F8F5E7EE32 (void);
  2262. // 0x000004B6 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalBase::IsErrorHandled(System.Object,Newtonsoft.Json.Serialization.JsonContract,System.Object,Newtonsoft.Json.IJsonLineInfo,System.String,System.Exception)
  2263. extern void JsonSerializerInternalBase_IsErrorHandled_m9DD64164F46D5AF6A545C4ED87D53B37C3BBD605 (void);
  2264. // 0x000004B7 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalBase/ReferenceEqualsEqualityComparer::System.Collections.Generic.IEqualityComparer<System.Object>.Equals(System.Object,System.Object)
  2265. extern void ReferenceEqualsEqualityComparer_System_Collections_Generic_IEqualityComparerU3CSystem_ObjectU3E_Equals_mBE0FDE09DEFB94D4A18D89BE52FAA99C2C8784AC (void);
  2266. // 0x000004B8 System.Int32 Newtonsoft.Json.Serialization.JsonSerializerInternalBase/ReferenceEqualsEqualityComparer::System.Collections.Generic.IEqualityComparer<System.Object>.GetHashCode(System.Object)
  2267. extern void ReferenceEqualsEqualityComparer_System_Collections_Generic_IEqualityComparerU3CSystem_ObjectU3E_GetHashCode_mA70F644AB9839D31065574E6EFC2F39CEABC3D81 (void);
  2268. // 0x000004B9 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalBase/ReferenceEqualsEqualityComparer::.ctor()
  2269. extern void ReferenceEqualsEqualityComparer__ctor_m53539D43C1367A9014A0D5AE7C1BA9006444C47B (void);
  2270. // 0x000004BA System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::.ctor(Newtonsoft.Json.JsonSerializer)
  2271. extern void JsonSerializerInternalReader__ctor_m9DACB01CB633FF3EEC4C7D4B258525BE6506C677 (void);
  2272. // 0x000004BB System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Populate(Newtonsoft.Json.JsonReader,System.Object)
  2273. extern void JsonSerializerInternalReader_Populate_m07F213FF7404357508701D7C9FF2D431A9A67311 (void);
  2274. // 0x000004BC Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetContractSafe(System.Type)
  2275. extern void JsonSerializerInternalReader_GetContractSafe_mB7ED9B6126C27E9981E12F117815D07F1D8BF733 (void);
  2276. // 0x000004BD System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::Deserialize(Newtonsoft.Json.JsonReader,System.Type,System.Boolean)
  2277. extern void JsonSerializerInternalReader_Deserialize_m16DFFFB210E3254DD51BE773ABE174A1A3D2969A (void);
  2278. // 0x000004BE Newtonsoft.Json.Serialization.JsonSerializerProxy Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetInternalSerializer()
  2279. extern void JsonSerializerInternalReader_GetInternalSerializer_mD1D98FBB43848960ACB9928C52FD3CADC16A7F54 (void);
  2280. // 0x000004BF Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJToken(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonContract)
  2281. extern void JsonSerializerInternalReader_CreateJToken_m6481A67B1AAA41CF25255BDC33DCCE914519A31E (void);
  2282. // 0x000004C0 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateJObject(Newtonsoft.Json.JsonReader)
  2283. extern void JsonSerializerInternalReader_CreateJObject_m8630E649F04EDBE99DD15CD15A76F67E7DFF1D3E (void);
  2284. // 0x000004C1 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateValueInternal(Newtonsoft.Json.JsonReader,System.Type,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,System.Object)
  2285. extern void JsonSerializerInternalReader_CreateValueInternal_mDE0017174F922EADF6F608D710D3614029D473DA (void);
  2286. // 0x000004C2 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CoerceEmptyStringToNull(System.Type,Newtonsoft.Json.Serialization.JsonContract,System.String)
  2287. extern void JsonSerializerInternalReader_CoerceEmptyStringToNull_mC4362D4711EDFC5B8DDCC6F8962EB87BC82D2976 (void);
  2288. // 0x000004C3 System.String Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetExpectedDescription(Newtonsoft.Json.Serialization.JsonContract)
  2289. extern void JsonSerializerInternalReader_GetExpectedDescription_m9EC87972C785039ADC8104363E44A81C970C5467 (void);
  2290. // 0x000004C4 Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonSerializerInternalReader::GetConverter(Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.JsonConverter,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2291. extern void JsonSerializerInternalReader_GetConverter_mEC2A4C125E42D36039D6978FB270F94A34F3AB4D (void);
  2292. // 0x000004C5 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObject(Newtonsoft.Json.JsonReader,System.Type,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,System.Object)
  2293. extern void JsonSerializerInternalReader_CreateObject_m8354AB041B8FCB5A60DAD4DA2A19E1E493740BC7 (void);
  2294. // 0x000004C6 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataPropertiesToken(Newtonsoft.Json.Linq.JTokenReader,System.Type&,Newtonsoft.Json.Serialization.JsonContract&,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.Object&,System.String&)
  2295. extern void JsonSerializerInternalReader_ReadMetadataPropertiesToken_mF20F10EFAFC3788E30A2B63D5C75294973467B09 (void);
  2296. // 0x000004C7 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadMetadataProperties(Newtonsoft.Json.JsonReader,System.Type&,Newtonsoft.Json.Serialization.JsonContract&,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.Object&,System.String&)
  2297. extern void JsonSerializerInternalReader_ReadMetadataProperties_m1FB0A9442D566EF09AFC94BC9CC83EF9F5EF78C4 (void);
  2298. // 0x000004C8 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ResolveTypeName(Newtonsoft.Json.JsonReader,System.Type&,Newtonsoft.Json.Serialization.JsonContract&,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,System.String)
  2299. extern void JsonSerializerInternalReader_ResolveTypeName_mC4C6F9C9F37CAAEB99D1A05D28B3E6621013EF02 (void);
  2300. // 0x000004C9 Newtonsoft.Json.Serialization.JsonArrayContract Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureArrayContract(Newtonsoft.Json.JsonReader,System.Type,Newtonsoft.Json.Serialization.JsonContract)
  2301. extern void JsonSerializerInternalReader_EnsureArrayContract_mB4F72197980B5F8E74C27FE6883AF251791FFD49 (void);
  2302. // 0x000004CA System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateList(Newtonsoft.Json.JsonReader,System.Type,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,System.Object,System.String)
  2303. extern void JsonSerializerInternalReader_CreateList_m05A6AF6A29A3FB14E637A65CA0DD561736EDBDCB (void);
  2304. // 0x000004CB System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasNoDefinedType(Newtonsoft.Json.Serialization.JsonContract)
  2305. extern void JsonSerializerInternalReader_HasNoDefinedType_m062E7C1D82507BCFDFC76D7761459206CAA982C6 (void);
  2306. // 0x000004CC System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EnsureType(Newtonsoft.Json.JsonReader,System.Object,System.Globalization.CultureInfo,Newtonsoft.Json.Serialization.JsonContract,System.Type)
  2307. extern void JsonSerializerInternalReader_EnsureType_m393B24D57CD3AC4CDAE437E6BBC293BF32531513 (void);
  2308. // 0x000004CD System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyValue(Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonConverter,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonReader,System.Object)
  2309. extern void JsonSerializerInternalReader_SetPropertyValue_mA34C6A79B07769705DC5B440B711EE9C0F4E6D95 (void);
  2310. // 0x000004CE System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CalculatePropertyDetails(Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonConverter&,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonReader,System.Object,System.Boolean&,System.Object&,Newtonsoft.Json.Serialization.JsonContract&,System.Boolean&)
  2311. extern void JsonSerializerInternalReader_CalculatePropertyDetails_mBDE8B9CB99D99C5C3360CCE39391836271F631D4 (void);
  2312. // 0x000004CF System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::AddReference(Newtonsoft.Json.JsonReader,System.String,System.Object)
  2313. extern void JsonSerializerInternalReader_AddReference_m86B624709AABBA04282FA93D51FC8D30B17D5531 (void);
  2314. // 0x000004D0 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HasFlag(Newtonsoft.Json.DefaultValueHandling,Newtonsoft.Json.DefaultValueHandling)
  2315. extern void JsonSerializerInternalReader_HasFlag_mDFEE16CF94BC7AF387C966073A5A7B5102BF536A (void);
  2316. // 0x000004D1 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldSetPropertyValue(Newtonsoft.Json.Serialization.JsonProperty,System.Object)
  2317. extern void JsonSerializerInternalReader_ShouldSetPropertyValue_m5A1B522F640821480ADD97462BD20BFB08518370 (void);
  2318. // 0x000004D2 System.Collections.IList Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewList(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonArrayContract,System.Boolean&)
  2319. extern void JsonSerializerInternalReader_CreateNewList_m08A79263E135DCA0BED5EA4CE59AF908BFEA13A3 (void);
  2320. // 0x000004D3 System.Collections.IDictionary Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewDictionary(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonDictionaryContract,System.Boolean&)
  2321. extern void JsonSerializerInternalReader_CreateNewDictionary_m9C3DE0D4B71C3BF5D1F372B3462E65677E149629 (void);
  2322. // 0x000004D4 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserializing(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonContract,System.Object)
  2323. extern void JsonSerializerInternalReader_OnDeserializing_mF249B6FA9CA274DC859E36AA022499644E497024 (void);
  2324. // 0x000004D5 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::OnDeserialized(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonContract,System.Object)
  2325. extern void JsonSerializerInternalReader_OnDeserialized_m5784F6D5FEEBCA34D1C5DD3E32EA6C16876D64C0 (void);
  2326. // 0x000004D6 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateDictionary(System.Collections.IDictionary,Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonDictionaryContract,Newtonsoft.Json.Serialization.JsonProperty,System.String)
  2327. extern void JsonSerializerInternalReader_PopulateDictionary_mCD1EA604EFDED1732CE66B6645FFBF6206528731 (void);
  2328. // 0x000004D7 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateMultidimensionalArray(System.Collections.IList,Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonArrayContract,Newtonsoft.Json.Serialization.JsonProperty,System.String)
  2329. extern void JsonSerializerInternalReader_PopulateMultidimensionalArray_m45EBF882FBBDBF02AB5F9ED3532E82837A461531 (void);
  2330. // 0x000004D8 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ThrowUnexpectedEndException(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonContract,System.Object,System.String)
  2331. extern void JsonSerializerInternalReader_ThrowUnexpectedEndException_mE115BE356C3B658231E173F8F8C825D43F8E2E2D (void);
  2332. // 0x000004D9 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateList(System.Collections.IList,Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonArrayContract,Newtonsoft.Json.Serialization.JsonProperty,System.String)
  2333. extern void JsonSerializerInternalReader_PopulateList_m2E28F2C7CF964D072B5FFDBD3B37C8F3833C6355 (void);
  2334. // 0x000004DA System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateISerializable(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonISerializableContract,Newtonsoft.Json.Serialization.JsonProperty,System.String)
  2335. extern void JsonSerializerInternalReader_CreateISerializable_m5F06F1574A49C5AF6B360D5E64EBE9956531E7F4 (void);
  2336. // 0x000004DB System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateISerializableItem(Newtonsoft.Json.Linq.JToken,System.Type,Newtonsoft.Json.Serialization.JsonISerializableContract,Newtonsoft.Json.Serialization.JsonProperty)
  2337. extern void JsonSerializerInternalReader_CreateISerializableItem_m041B4274C31E46A8C19D000395F75C0BE74B7FD6 (void);
  2338. // 0x000004DC System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateObjectUsingCreatorWithParameters(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.ObjectConstructor`1<System.Object>,System.String)
  2339. extern void JsonSerializerInternalReader_CreateObjectUsingCreatorWithParameters_m1352A665B9F49EFD67D1520117044287AC331D37 (void);
  2340. // 0x000004DD System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::DeserializeConvertable(Newtonsoft.Json.JsonConverter,Newtonsoft.Json.JsonReader,System.Type,System.Object)
  2341. extern void JsonSerializerInternalReader_DeserializeConvertable_m7839ED49B9328DE3E071627E165391EDCBDC85F0 (void);
  2342. // 0x000004DE System.Collections.Generic.List`1<Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext> Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ResolvePropertyAndCreatorValues(Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonReader,System.Type)
  2343. extern void JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m3F1EACBF06BEB4AA8F997D9C284F50BBC4EA2F66 (void);
  2344. // 0x000004DF System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadForType(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonContract,System.Boolean)
  2345. extern void JsonSerializerInternalReader_ReadForType_m68679FB820665472589490AC15174FE8C7FD5548 (void);
  2346. // 0x000004E0 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CreateNewObject(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonProperty,System.String,System.Boolean&)
  2347. extern void JsonSerializerInternalReader_CreateNewObject_m84909560F0A7B7CFA1B96A179726D3B13B897317 (void);
  2348. // 0x000004E1 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::PopulateObject(System.Object,Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,System.String)
  2349. extern void JsonSerializerInternalReader_PopulateObject_mB67FD5A5AB4BA1BDEA46A46FB82993F5F742FDD9 (void);
  2350. // 0x000004E2 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ShouldDeserialize(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonProperty,System.Object)
  2351. extern void JsonSerializerInternalReader_ShouldDeserialize_mB873598FB2971866E9EF3D7DFCBEB22E305616D4 (void);
  2352. // 0x000004E3 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader::CheckPropertyName(Newtonsoft.Json.JsonReader,System.String)
  2353. extern void JsonSerializerInternalReader_CheckPropertyName_m731ABE465597939C28A151590ED0DEF2D4CF49B2 (void);
  2354. // 0x000004E4 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetExtensionData(Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonReader,System.String,System.Object)
  2355. extern void JsonSerializerInternalReader_SetExtensionData_m7A2CECC47DCCAC05A9AFB441BBA6C62D60B551E4 (void);
  2356. // 0x000004E5 System.Object Newtonsoft.Json.Serialization.JsonSerializerInternalReader::ReadExtensionDataValue(Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.JsonReader)
  2357. extern void JsonSerializerInternalReader_ReadExtensionDataValue_mC61158AF848D9194AA0BF66C3D7362DCE9D24A6E (void);
  2358. // 0x000004E6 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::EndProcessProperty(System.Object,Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonObjectContract,System.Int32,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence,System.Boolean)
  2359. extern void JsonSerializerInternalReader_EndProcessProperty_m72F73F16358CBCB4DBE94E83108E615F54C723D5 (void);
  2360. // 0x000004E7 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::SetPropertyPresence(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Serialization.JsonProperty,System.Collections.Generic.Dictionary`2<Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence>)
  2361. extern void JsonSerializerInternalReader_SetPropertyPresence_mAE1B2E093A35AC97CF2A5B4E68217CE9834EB30B (void);
  2362. // 0x000004E8 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader::HandleError(Newtonsoft.Json.JsonReader,System.Boolean,System.Int32)
  2363. extern void JsonSerializerInternalReader_HandleError_m56A745F5B279119045A3B25F0BBB693A6A775D44 (void);
  2364. // 0x000004E9 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext::.ctor()
  2365. extern void CreatorPropertyContext__ctor_m866EFFCAF18327FBC0189EDE0DACE665F154DA56 (void);
  2366. // 0x000004EA System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c__DisplayClass36_0::.ctor()
  2367. extern void U3CU3Ec__DisplayClass36_0__ctor_mC863D859C9704D6D335339502E8C991324810635 (void);
  2368. // 0x000004EB System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c__DisplayClass36_0::<CreateObjectUsingCreatorWithParameters>b__1(Newtonsoft.Json.Serialization.JsonSerializerInternalReader/CreatorPropertyContext)
  2369. extern void U3CU3Ec__DisplayClass36_0_U3CCreateObjectUsingCreatorWithParametersU3Eb__1_mF669F8BFE84823AA5FE418E1474EC2DDC62133E6 (void);
  2370. // 0x000004EC System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::.cctor()
  2371. extern void U3CU3Ec__cctor_m3C3094F0A38E4065FE127CDA58174DBD9E4F7CDB (void);
  2372. // 0x000004ED System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::.ctor()
  2373. extern void U3CU3Ec__ctor_m197909213DCD3EA6A9B847D52B274909ADB01C0B (void);
  2374. // 0x000004EE System.String Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<CreateObjectUsingCreatorWithParameters>b__36_0(Newtonsoft.Json.Serialization.JsonProperty)
  2375. extern void U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__36_0_m54E3311FDB8CCB7E64803F09F014E12333C4ECE2 (void);
  2376. // 0x000004EF System.String Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<CreateObjectUsingCreatorWithParameters>b__36_2(Newtonsoft.Json.Serialization.JsonProperty)
  2377. extern void U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__36_2_m9C87A724A2224B19E8AD4BCCF6D0633E61FCBA3B (void);
  2378. // 0x000004F0 Newtonsoft.Json.Serialization.JsonProperty Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<PopulateObject>b__41_0(Newtonsoft.Json.Serialization.JsonProperty)
  2379. extern void U3CU3Ec_U3CPopulateObjectU3Eb__41_0_mD7A16E3DA463CEA1F861A6607449112C70B509CE (void);
  2380. // 0x000004F1 Newtonsoft.Json.Serialization.JsonSerializerInternalReader/PropertyPresence Newtonsoft.Json.Serialization.JsonSerializerInternalReader/<>c::<PopulateObject>b__41_1(Newtonsoft.Json.Serialization.JsonProperty)
  2381. extern void U3CU3Ec_U3CPopulateObjectU3Eb__41_1_mF4BCEE23113F422519BD0DFDC812DFE65FD69F48 (void);
  2382. // 0x000004F2 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::.ctor(Newtonsoft.Json.JsonSerializer)
  2383. extern void JsonSerializerInternalWriter__ctor_mD7292E391C20932E7B7D3C0821993300C11805B9 (void);
  2384. // 0x000004F3 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::Serialize(Newtonsoft.Json.JsonWriter,System.Object,System.Type)
  2385. extern void JsonSerializerInternalWriter_Serialize_m5CF99C46876EC006AE08EF6F70774C05352D7EBB (void);
  2386. // 0x000004F4 Newtonsoft.Json.Serialization.JsonSerializerProxy Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetInternalSerializer()
  2387. extern void JsonSerializerInternalWriter_GetInternalSerializer_m36B6DD190A949C3BED06F480CF095AD339DD8149 (void);
  2388. // 0x000004F5 Newtonsoft.Json.Serialization.JsonContract Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetContractSafe(System.Object)
  2389. extern void JsonSerializerInternalWriter_GetContractSafe_m16A8B7AE32824871182C3927D9F9195CDC81FC16 (void);
  2390. // 0x000004F6 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializePrimitive(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonPrimitiveContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2391. extern void JsonSerializerInternalWriter_SerializePrimitive_m5CBBF50ADAACCDC710A46BF723C4F228C26E6F0B (void);
  2392. // 0x000004F7 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeValue(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2393. extern void JsonSerializerInternalWriter_SerializeValue_m18EF5541EB7C626DBD6EE9C7B131B5A553F9647B (void);
  2394. // 0x000004F8 System.Nullable`1<System.Boolean> Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ResolveIsReference(Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2395. extern void JsonSerializerInternalWriter_ResolveIsReference_mF14D369978F754687AD5A55FE9D55F893559A355 (void);
  2396. // 0x000004F9 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteReference(System.Object,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2397. extern void JsonSerializerInternalWriter_ShouldWriteReference_m5E0E55A1858C9769DDE9CC98B5FA05A7E37F1564 (void);
  2398. // 0x000004FA System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteProperty(System.Object,Newtonsoft.Json.Serialization.JsonProperty)
  2399. extern void JsonSerializerInternalWriter_ShouldWriteProperty_m4F43DB6C3A0FE2A97F161BE8E81D160D13207A1B (void);
  2400. // 0x000004FB System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::CheckForCircularReference(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2401. extern void JsonSerializerInternalWriter_CheckForCircularReference_mA2E781693FEDDA91A1D5BEC386C08FCA779FC0E5 (void);
  2402. // 0x000004FC System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteReference(Newtonsoft.Json.JsonWriter,System.Object)
  2403. extern void JsonSerializerInternalWriter_WriteReference_mBC4B20B185D7AD9F45A65921A74646E96C707EC0 (void);
  2404. // 0x000004FD System.String Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetReference(Newtonsoft.Json.JsonWriter,System.Object)
  2405. extern void JsonSerializerInternalWriter_GetReference_m04C782617161FBC8561FD6919539BDD5F124A44D (void);
  2406. // 0x000004FE System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::TryConvertToString(System.Object,System.Type,System.String&)
  2407. extern void JsonSerializerInternalWriter_TryConvertToString_m00893ED07366844F4942D9D2E2C2D298E41D2354 (void);
  2408. // 0x000004FF System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeString(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonStringContract)
  2409. extern void JsonSerializerInternalWriter_SerializeString_m00F6A4369D32A4D6A5262E116FA66FED933B6808 (void);
  2410. // 0x00000500 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::OnSerializing(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Serialization.JsonContract,System.Object)
  2411. extern void JsonSerializerInternalWriter_OnSerializing_m86CCE4A240CF696B55B651FFA21341A913237204 (void);
  2412. // 0x00000501 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::OnSerialized(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Serialization.JsonContract,System.Object)
  2413. extern void JsonSerializerInternalWriter_OnSerialized_m6536356D16C9FD4878BB5FB335A6B6C399E32813 (void);
  2414. // 0x00000502 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeObject(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonObjectContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2415. extern void JsonSerializerInternalWriter_SerializeObject_m0DDE5F1CCEED094CD75F03BE50D337C7BC10B175 (void);
  2416. // 0x00000503 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::CalculatePropertyValues(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContract&,System.Object&)
  2417. extern void JsonSerializerInternalWriter_CalculatePropertyValues_mE916D9AAF41458580041F0D68B5255F5347A8B3D (void);
  2418. // 0x00000504 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteObjectStart(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2419. extern void JsonSerializerInternalWriter_WriteObjectStart_mFFBBFAB80935976F3642D64F2E16D267EA85D969 (void);
  2420. // 0x00000505 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteReferenceIdProperty(Newtonsoft.Json.JsonWriter,System.Type,System.Object)
  2421. extern void JsonSerializerInternalWriter_WriteReferenceIdProperty_mB1BAD36D9065F7864BB8A0900D6E4E31B5E0CCF3 (void);
  2422. // 0x00000506 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteTypeProperty(Newtonsoft.Json.JsonWriter,System.Type)
  2423. extern void JsonSerializerInternalWriter_WriteTypeProperty_mDFDE7354356EAA21166F53CF6F9E46722537BC19 (void);
  2424. // 0x00000507 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(Newtonsoft.Json.DefaultValueHandling,Newtonsoft.Json.DefaultValueHandling)
  2425. extern void JsonSerializerInternalWriter_HasFlag_mB2A9B39854B9606643BC1F20800B80A0B86270BA (void);
  2426. // 0x00000508 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(Newtonsoft.Json.PreserveReferencesHandling,Newtonsoft.Json.PreserveReferencesHandling)
  2427. extern void JsonSerializerInternalWriter_HasFlag_mBB94657B6DBF4933485C14D9AB8F0A040EB634DE (void);
  2428. // 0x00000509 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HasFlag(Newtonsoft.Json.TypeNameHandling,Newtonsoft.Json.TypeNameHandling)
  2429. extern void JsonSerializerInternalWriter_HasFlag_m11060544A799A7E7FFD9875C2A4FF232C595EF16 (void);
  2430. // 0x0000050A System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeConvertable(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter,System.Object,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2431. extern void JsonSerializerInternalWriter_SerializeConvertable_m20C8409B3CF7AFE8DD8DD70B043D2896D57199A9 (void);
  2432. // 0x0000050B System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeList(Newtonsoft.Json.JsonWriter,System.Collections.IEnumerable,Newtonsoft.Json.Serialization.JsonArrayContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2433. extern void JsonSerializerInternalWriter_SerializeList_m9682B23D853E42333819D6F1D59CB312B35C0AD1 (void);
  2434. // 0x0000050C System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeMultidimensionalArray(Newtonsoft.Json.JsonWriter,System.Array,Newtonsoft.Json.Serialization.JsonArrayContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2435. extern void JsonSerializerInternalWriter_SerializeMultidimensionalArray_m04816CEBDBB1BF2EB8E5664B66CF7DD7950DEC64 (void);
  2436. // 0x0000050D System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeMultidimensionalArray(Newtonsoft.Json.JsonWriter,System.Array,Newtonsoft.Json.Serialization.JsonArrayContract,Newtonsoft.Json.Serialization.JsonProperty,System.Int32,System.Int32[])
  2437. extern void JsonSerializerInternalWriter_SerializeMultidimensionalArray_m85A8FB138A98BEFD4BFC4FB2067B3E3B80B0A1A7 (void);
  2438. // 0x0000050E System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::WriteStartArray(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonArrayContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2439. extern void JsonSerializerInternalWriter_WriteStartArray_m7528A45B45F9E37133F6643085BF52BA89E28D59 (void);
  2440. // 0x0000050F System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeISerializable(Newtonsoft.Json.JsonWriter,System.Runtime.Serialization.ISerializable,Newtonsoft.Json.Serialization.JsonISerializableContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2441. extern void JsonSerializerInternalWriter_SerializeISerializable_mB2E603FCFEBFDE3A46FE1C53C80BDD3B3D032F82 (void);
  2442. // 0x00000510 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldWriteType(Newtonsoft.Json.TypeNameHandling,Newtonsoft.Json.Serialization.JsonContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2443. extern void JsonSerializerInternalWriter_ShouldWriteType_mD28C6588F63992E4998AA90BC3470E0F46BF038F (void);
  2444. // 0x00000511 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::SerializeDictionary(Newtonsoft.Json.JsonWriter,System.Collections.IDictionary,Newtonsoft.Json.Serialization.JsonDictionaryContract,Newtonsoft.Json.Serialization.JsonProperty,Newtonsoft.Json.Serialization.JsonContainerContract,Newtonsoft.Json.Serialization.JsonProperty)
  2445. extern void JsonSerializerInternalWriter_SerializeDictionary_mBF061F47CB497A2368D9ADFE8D2A08C05326D1D2 (void);
  2446. // 0x00000512 System.String Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::GetPropertyName(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.Serialization.JsonContract,System.Boolean&)
  2447. extern void JsonSerializerInternalWriter_GetPropertyName_m247526DFDA0596DB0D5DCF2BDF7DA510973A2B25 (void);
  2448. // 0x00000513 System.Void Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::HandleError(Newtonsoft.Json.JsonWriter,System.Int32)
  2449. extern void JsonSerializerInternalWriter_HandleError_mEE5EE284E87D16FE00325D3E09C07F59963DA729 (void);
  2450. // 0x00000514 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::ShouldSerialize(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Serialization.JsonProperty,System.Object)
  2451. extern void JsonSerializerInternalWriter_ShouldSerialize_mC3B6E813DCE7BE5E13670B66CC562937B47C8F6C (void);
  2452. // 0x00000515 System.Boolean Newtonsoft.Json.Serialization.JsonSerializerInternalWriter::IsSpecified(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Serialization.JsonProperty,System.Object)
  2453. extern void JsonSerializerInternalWriter_IsSpecified_m7AF42B226A4D573BAB0E03CA698004B808C1FE97 (void);
  2454. // 0x00000516 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::add_Error(System.EventHandler`1<Newtonsoft.Json.Serialization.ErrorEventArgs>)
  2455. extern void JsonSerializerProxy_add_Error_mB758D062EFD682C31D15DF5DD3B7D5A69FBF22C7 (void);
  2456. // 0x00000517 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::remove_Error(System.EventHandler`1<Newtonsoft.Json.Serialization.ErrorEventArgs>)
  2457. extern void JsonSerializerProxy_remove_Error_mC6C09841B47A64D20D3A04DDAFBF077A6A756AB4 (void);
  2458. // 0x00000518 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_ReferenceResolver(Newtonsoft.Json.Serialization.IReferenceResolver)
  2459. extern void JsonSerializerProxy_set_ReferenceResolver_m01F71340E3CD0B79DD6582F56AFA2E78BBD5F420 (void);
  2460. // 0x00000519 Newtonsoft.Json.Serialization.ITraceWriter Newtonsoft.Json.Serialization.JsonSerializerProxy::get_TraceWriter()
  2461. extern void JsonSerializerProxy_get_TraceWriter_mD978AEDBAD9C5E20CF26972EED9C795570F8A31B (void);
  2462. // 0x0000051A System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_TraceWriter(Newtonsoft.Json.Serialization.ITraceWriter)
  2463. extern void JsonSerializerProxy_set_TraceWriter_m2CAA4ACE553BD99B82E699C8E4ADB899D34EAAF4 (void);
  2464. // 0x0000051B System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_EqualityComparer(System.Collections.IEqualityComparer)
  2465. extern void JsonSerializerProxy_set_EqualityComparer_mC2D4CC530C83FDF91E8FE3CAA9753D7D399642A3 (void);
  2466. // 0x0000051C Newtonsoft.Json.JsonConverterCollection Newtonsoft.Json.Serialization.JsonSerializerProxy::get_Converters()
  2467. extern void JsonSerializerProxy_get_Converters_m9E390D5E8A9D233EF8C2A0B964956F27B4BEED2E (void);
  2468. // 0x0000051D System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_DefaultValueHandling(Newtonsoft.Json.DefaultValueHandling)
  2469. extern void JsonSerializerProxy_set_DefaultValueHandling_m4B3292A1D106277D8C98CAF09A9336AAC2A2D193 (void);
  2470. // 0x0000051E Newtonsoft.Json.Serialization.IContractResolver Newtonsoft.Json.Serialization.JsonSerializerProxy::get_ContractResolver()
  2471. extern void JsonSerializerProxy_get_ContractResolver_m0F02BC66EBE05DA832AF7E68090412A9E84B8C85 (void);
  2472. // 0x0000051F System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_ContractResolver(Newtonsoft.Json.Serialization.IContractResolver)
  2473. extern void JsonSerializerProxy_set_ContractResolver_m2F75F3755FA791B66F41901962E380AB9C6EC99D (void);
  2474. // 0x00000520 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_MissingMemberHandling(Newtonsoft.Json.MissingMemberHandling)
  2475. extern void JsonSerializerProxy_set_MissingMemberHandling_mDF01119D79E9C662234FC23237BC689FCD779362 (void);
  2476. // 0x00000521 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_NullValueHandling(Newtonsoft.Json.NullValueHandling)
  2477. extern void JsonSerializerProxy_set_NullValueHandling_mD3845BADF9B98956CE407E9CA156B2E92BE7C3E8 (void);
  2478. // 0x00000522 Newtonsoft.Json.ObjectCreationHandling Newtonsoft.Json.Serialization.JsonSerializerProxy::get_ObjectCreationHandling()
  2479. extern void JsonSerializerProxy_get_ObjectCreationHandling_m0C52E0CE93590403EC273A0B239B7786CA83A65F (void);
  2480. // 0x00000523 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_ObjectCreationHandling(Newtonsoft.Json.ObjectCreationHandling)
  2481. extern void JsonSerializerProxy_set_ObjectCreationHandling_mD4323D082B83CC6C720CCC4DD3A621AE52B5BF90 (void);
  2482. // 0x00000524 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_ReferenceLoopHandling(Newtonsoft.Json.ReferenceLoopHandling)
  2483. extern void JsonSerializerProxy_set_ReferenceLoopHandling_mF557D5F61FE95CC95CA81F51748AE99CF937EF88 (void);
  2484. // 0x00000525 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_PreserveReferencesHandling(Newtonsoft.Json.PreserveReferencesHandling)
  2485. extern void JsonSerializerProxy_set_PreserveReferencesHandling_m384777B7F2E5D140F46EE980F62B95F3B38CB5D6 (void);
  2486. // 0x00000526 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_TypeNameHandling(Newtonsoft.Json.TypeNameHandling)
  2487. extern void JsonSerializerProxy_set_TypeNameHandling_m9B0565444222D4A0CCA968902DF066C0151896DA (void);
  2488. // 0x00000527 Newtonsoft.Json.MetadataPropertyHandling Newtonsoft.Json.Serialization.JsonSerializerProxy::get_MetadataPropertyHandling()
  2489. extern void JsonSerializerProxy_get_MetadataPropertyHandling_mD8AA501C06C646401A6D38D76A1D4B6028A09DA6 (void);
  2490. // 0x00000528 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_MetadataPropertyHandling(Newtonsoft.Json.MetadataPropertyHandling)
  2491. extern void JsonSerializerProxy_set_MetadataPropertyHandling_m6DA26E4CC254DAC91FFA9496EC901EDC1449F109 (void);
  2492. // 0x00000529 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_TypeNameAssemblyFormat(System.Runtime.Serialization.Formatters.FormatterAssemblyStyle)
  2493. extern void JsonSerializerProxy_set_TypeNameAssemblyFormat_mDA3029524EBA8CCF066DDBD9ABD3CF109952333B (void);
  2494. // 0x0000052A System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_ConstructorHandling(Newtonsoft.Json.ConstructorHandling)
  2495. extern void JsonSerializerProxy_set_ConstructorHandling_m12385808CBDFE9AB2967021E48E84D0F1D66870D (void);
  2496. // 0x0000052B System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_Binder(System.Runtime.Serialization.SerializationBinder)
  2497. extern void JsonSerializerProxy_set_Binder_mB68CEBE202076807D4FD3BB554C44B0E2AE07A9A (void);
  2498. // 0x0000052C System.Runtime.Serialization.StreamingContext Newtonsoft.Json.Serialization.JsonSerializerProxy::get_Context()
  2499. extern void JsonSerializerProxy_get_Context_m1C74B51A3B56B8B33077D7B24D7AA5751DB5941C (void);
  2500. // 0x0000052D System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_Context(System.Runtime.Serialization.StreamingContext)
  2501. extern void JsonSerializerProxy_set_Context_m56D4CB781B98CF71CB9B714D0A98FE9BC4D0454A (void);
  2502. // 0x0000052E Newtonsoft.Json.Formatting Newtonsoft.Json.Serialization.JsonSerializerProxy::get_Formatting()
  2503. extern void JsonSerializerProxy_get_Formatting_m0C3D6BA78C912B50A6D99FFB4918085569207B42 (void);
  2504. // 0x0000052F System.Boolean Newtonsoft.Json.Serialization.JsonSerializerProxy::get_CheckAdditionalContent()
  2505. extern void JsonSerializerProxy_get_CheckAdditionalContent_mD3767F34E264139A825BF9F7BB1C7277A551FB55 (void);
  2506. // 0x00000530 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::set_CheckAdditionalContent(System.Boolean)
  2507. extern void JsonSerializerProxy_set_CheckAdditionalContent_mBB3420399C378C24B1408B4D92056945374D04F1 (void);
  2508. // 0x00000531 Newtonsoft.Json.Serialization.JsonSerializerInternalBase Newtonsoft.Json.Serialization.JsonSerializerProxy::GetInternalSerializer()
  2509. extern void JsonSerializerProxy_GetInternalSerializer_mAAB4BAF11476A9F005E776CAEB091C65026F0CF3 (void);
  2510. // 0x00000532 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::.ctor(Newtonsoft.Json.Serialization.JsonSerializerInternalReader)
  2511. extern void JsonSerializerProxy__ctor_m0F0A6C158CFC76D08D1C3700A0E3A705B1762196 (void);
  2512. // 0x00000533 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::.ctor(Newtonsoft.Json.Serialization.JsonSerializerInternalWriter)
  2513. extern void JsonSerializerProxy__ctor_m5DE272E9EA4CD463018EACC4F038A2B45BB6A463 (void);
  2514. // 0x00000534 System.Object Newtonsoft.Json.Serialization.JsonSerializerProxy::DeserializeInternal(Newtonsoft.Json.JsonReader,System.Type)
  2515. extern void JsonSerializerProxy_DeserializeInternal_mA0D60BE044BFD320A0C3A302556059FB7E5DB0E2 (void);
  2516. // 0x00000535 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::PopulateInternal(Newtonsoft.Json.JsonReader,System.Object)
  2517. extern void JsonSerializerProxy_PopulateInternal_m326CF8C6609620D802E10A2B2D732DADA61A0C4A (void);
  2518. // 0x00000536 System.Void Newtonsoft.Json.Serialization.JsonSerializerProxy::SerializeInternal(Newtonsoft.Json.JsonWriter,System.Object,System.Type)
  2519. extern void JsonSerializerProxy_SerializeInternal_mC9501A6E4518384C0C4D0E474C6C9DB2BE3025FF (void);
  2520. // 0x00000537 System.Void Newtonsoft.Json.Serialization.JsonStringContract::.ctor(System.Type)
  2521. extern void JsonStringContract__ctor_m52D904B991177D4AD5BD45EC39A9E954C6E1B475 (void);
  2522. // 0x00000538 T Newtonsoft.Json.Serialization.JsonTypeReflector::GetCachedAttribute(System.Object)
  2523. // 0x00000539 System.Runtime.Serialization.DataContractAttribute Newtonsoft.Json.Serialization.JsonTypeReflector::GetDataContractAttribute(System.Type)
  2524. extern void JsonTypeReflector_GetDataContractAttribute_m48F91A6D2BD1F8C2A6D7463A79F9E6446578483F (void);
  2525. // 0x0000053A System.Runtime.Serialization.DataMemberAttribute Newtonsoft.Json.Serialization.JsonTypeReflector::GetDataMemberAttribute(System.Reflection.MemberInfo)
  2526. extern void JsonTypeReflector_GetDataMemberAttribute_mD7A512F4E2EF106DAF4F19EC1EAF3BEBFE316DBE (void);
  2527. // 0x0000053B Newtonsoft.Json.MemberSerialization Newtonsoft.Json.Serialization.JsonTypeReflector::GetObjectMemberSerialization(System.Type,System.Boolean)
  2528. extern void JsonTypeReflector_GetObjectMemberSerialization_m3DC21F03684180675A46D979B16BB872DD88BFD1 (void);
  2529. // 0x0000053C Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonTypeReflector::GetJsonConverter(System.Object)
  2530. extern void JsonTypeReflector_GetJsonConverter_mE68AEC43C19B8988E4A6948883309C98B1F30E0F (void);
  2531. // 0x0000053D Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonTypeReflector::CreateJsonConverterInstance(System.Type,System.Object[])
  2532. extern void JsonTypeReflector_CreateJsonConverterInstance_mDF0424F58E723B02AE2DBB3BA645999A29DA1663 (void);
  2533. // 0x0000053E System.Func`2<System.Object[],Newtonsoft.Json.JsonConverter> Newtonsoft.Json.Serialization.JsonTypeReflector::GetJsonConverterCreator(System.Type)
  2534. extern void JsonTypeReflector_GetJsonConverterCreator_m06E11E39875F4321EBD0CC6D135D494A26C9B009 (void);
  2535. // 0x0000053F System.ComponentModel.TypeConverter Newtonsoft.Json.Serialization.JsonTypeReflector::GetTypeConverter(System.Type)
  2536. extern void JsonTypeReflector_GetTypeConverter_m7D659499F4B84508083C68F3EEC338869B254B12 (void);
  2537. // 0x00000540 System.Type Newtonsoft.Json.Serialization.JsonTypeReflector::GetAssociatedMetadataType(System.Type)
  2538. extern void JsonTypeReflector_GetAssociatedMetadataType_m39210AE48FC3D02B20B519C0EC4F12AD644D3196 (void);
  2539. // 0x00000541 System.Type Newtonsoft.Json.Serialization.JsonTypeReflector::GetAssociateMetadataTypeFromAttribute(System.Type)
  2540. extern void JsonTypeReflector_GetAssociateMetadataTypeFromAttribute_m4FE6AE750C505BD0B3DCBC2C3078B0AC8F685E8A (void);
  2541. // 0x00000542 T Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(System.Type)
  2542. // 0x00000543 T Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(System.Reflection.MemberInfo)
  2543. // 0x00000544 T Newtonsoft.Json.Serialization.JsonTypeReflector::GetAttribute(System.Object)
  2544. // 0x00000545 System.Boolean Newtonsoft.Json.Serialization.JsonTypeReflector::get_FullyTrusted()
  2545. extern void JsonTypeReflector_get_FullyTrusted_m76F5CED9C892E1A74F1AE15DEA44F251E6B44EE7 (void);
  2546. // 0x00000546 Newtonsoft.Json.Utilities.ReflectionDelegateFactory Newtonsoft.Json.Serialization.JsonTypeReflector::get_ReflectionDelegateFactory()
  2547. extern void JsonTypeReflector_get_ReflectionDelegateFactory_m51141B018BF3854A0C3236A7DD6247C719B868D0 (void);
  2548. // 0x00000547 System.Void Newtonsoft.Json.Serialization.JsonTypeReflector::.cctor()
  2549. extern void JsonTypeReflector__cctor_mB7E3E6770A52D24A0FB4A3259622873E8EFB250D (void);
  2550. // 0x00000548 System.Void Newtonsoft.Json.Serialization.JsonTypeReflector/<>c__DisplayClass18_0::.ctor()
  2551. extern void U3CU3Ec__DisplayClass18_0__ctor_m891E1B133F71FB2FD7A7A98E7322328B3B1BA7B5 (void);
  2552. // 0x00000549 Newtonsoft.Json.JsonConverter Newtonsoft.Json.Serialization.JsonTypeReflector/<>c__DisplayClass18_0::<GetJsonConverterCreator>b__0(System.Object[])
  2553. extern void U3CU3Ec__DisplayClass18_0_U3CGetJsonConverterCreatorU3Eb__0_m5DBE4619CA16BD48EF1F50A1E2A83F922159BEA6 (void);
  2554. // 0x0000054A System.Void Newtonsoft.Json.Serialization.JsonTypeReflector/<>c::.cctor()
  2555. extern void U3CU3Ec__cctor_m49395C8BF101A655C64A8A6DB02E5483378EB255 (void);
  2556. // 0x0000054B System.Void Newtonsoft.Json.Serialization.JsonTypeReflector/<>c::.ctor()
  2557. extern void U3CU3Ec__ctor_m33C772708BBE9354F6F02B61BFABCCF96CE85045 (void);
  2558. // 0x0000054C System.Type Newtonsoft.Json.Serialization.JsonTypeReflector/<>c::<GetJsonConverterCreator>b__18_1(System.Object)
  2559. extern void U3CU3Ec_U3CGetJsonConverterCreatorU3Eb__18_1_m10633A41FD86AC5D98E39BEA3E6C9B21369C6D8F (void);
  2560. // 0x0000054D T Newtonsoft.Json.Serialization.CachedAttributeGetter`1::GetAttribute(System.Object)
  2561. // 0x0000054E System.Void Newtonsoft.Json.Serialization.CachedAttributeGetter`1::.cctor()
  2562. // 0x0000054F System.Void Newtonsoft.Json.Serialization.ReflectionValueProvider::.ctor(System.Reflection.MemberInfo)
  2563. extern void ReflectionValueProvider__ctor_m7A6A278A883E18E4902FC377A3AAFDF1DD3E37A0 (void);
  2564. // 0x00000550 System.Void Newtonsoft.Json.Serialization.ReflectionValueProvider::SetValue(System.Object,System.Object)
  2565. extern void ReflectionValueProvider_SetValue_m2E6A426BC3002D958D06C377276BFFA666D94E63 (void);
  2566. // 0x00000551 System.Object Newtonsoft.Json.Serialization.ReflectionValueProvider::GetValue(System.Object)
  2567. extern void ReflectionValueProvider_GetValue_mD11A35EE4B765069DE2034CBCED9C98B36F29B7E (void);
  2568. // 0x00000552 System.Void Newtonsoft.Json.Serialization.OnErrorAttribute::.ctor()
  2569. extern void OnErrorAttribute__ctor_m4AB187448D1BD857D4747F3936DC73B1F722D6B0 (void);
  2570. // 0x00000553 System.Void Newtonsoft.Json.Serialization.ObjectConstructor`1::.ctor(System.Object,System.IntPtr)
  2571. // 0x00000554 System.Object Newtonsoft.Json.Serialization.ObjectConstructor`1::Invoke(System.Object[])
  2572. // 0x00000555 System.Void Newtonsoft.Json.Linq.JPropertyDescriptor::.ctor(System.String)
  2573. extern void JPropertyDescriptor__ctor_m09AF4E883CBA010F1CE77036743FB5B55E63EACF (void);
  2574. // 0x00000556 Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JPropertyDescriptor::CastInstance(System.Object)
  2575. extern void JPropertyDescriptor_CastInstance_m3A5B473387EDF4C0AED554652421098A9693C518 (void);
  2576. // 0x00000557 System.Boolean Newtonsoft.Json.Linq.JPropertyDescriptor::CanResetValue(System.Object)
  2577. extern void JPropertyDescriptor_CanResetValue_m877A6563E66DEE7A378A04C443C6A26B82D892A3 (void);
  2578. // 0x00000558 System.Object Newtonsoft.Json.Linq.JPropertyDescriptor::GetValue(System.Object)
  2579. extern void JPropertyDescriptor_GetValue_m248CD8346CE78D89074F6E263BCC0002B0D95420 (void);
  2580. // 0x00000559 System.Void Newtonsoft.Json.Linq.JPropertyDescriptor::ResetValue(System.Object)
  2581. extern void JPropertyDescriptor_ResetValue_m3B17AB4AE529D0073321ED55CBDED5D474DBB44D (void);
  2582. // 0x0000055A System.Void Newtonsoft.Json.Linq.JPropertyDescriptor::SetValue(System.Object,System.Object)
  2583. extern void JPropertyDescriptor_SetValue_mDAFFD8AD2C653D6DDAC2A350C0ABD5B9D0B56043 (void);
  2584. // 0x0000055B System.Boolean Newtonsoft.Json.Linq.JPropertyDescriptor::ShouldSerializeValue(System.Object)
  2585. extern void JPropertyDescriptor_ShouldSerializeValue_mEA7198D95CF1C1590FB1AB58C5BBBA164D75C315 (void);
  2586. // 0x0000055C System.Type Newtonsoft.Json.Linq.JPropertyDescriptor::get_ComponentType()
  2587. extern void JPropertyDescriptor_get_ComponentType_mD5FF1837C56B5E71370CF1C9FDB2EAAF76EB5981 (void);
  2588. // 0x0000055D System.Boolean Newtonsoft.Json.Linq.JPropertyDescriptor::get_IsReadOnly()
  2589. extern void JPropertyDescriptor_get_IsReadOnly_m60E1E65E71764AACA8F968AEFF3ADC9F92176D29 (void);
  2590. // 0x0000055E System.Type Newtonsoft.Json.Linq.JPropertyDescriptor::get_PropertyType()
  2591. extern void JPropertyDescriptor_get_PropertyType_m6CE3A1A064F6C7647759249F39865F0C4328F73C (void);
  2592. // 0x0000055F System.Int32 Newtonsoft.Json.Linq.JPropertyDescriptor::get_NameHashCode()
  2593. extern void JPropertyDescriptor_get_NameHashCode_m0BB1BC25D5790FCCC44A72862F2905C4C0342B54 (void);
  2594. // 0x00000560 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::.ctor()
  2595. extern void JPropertyKeyedCollection__ctor_m2271DB77C116549739556CC423E6C093E15C0631 (void);
  2596. // 0x00000561 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::AddKey(System.String,Newtonsoft.Json.Linq.JToken)
  2597. extern void JPropertyKeyedCollection_AddKey_mEE9D222E064EF65670294217AE072F20C02A8878 (void);
  2598. // 0x00000562 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::ClearItems()
  2599. extern void JPropertyKeyedCollection_ClearItems_m17B4A043B84B5D0261DD29578C2F989729958C10 (void);
  2600. // 0x00000563 System.Boolean Newtonsoft.Json.Linq.JPropertyKeyedCollection::Contains(System.String)
  2601. extern void JPropertyKeyedCollection_Contains_m0E0B909D3C60358B58FAABCC6278E87E7B000A9A (void);
  2602. // 0x00000564 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::EnsureDictionary()
  2603. extern void JPropertyKeyedCollection_EnsureDictionary_m447B701FA5EFCED3B0B73E7FE78F3998B07155DF (void);
  2604. // 0x00000565 System.String Newtonsoft.Json.Linq.JPropertyKeyedCollection::GetKeyForItem(Newtonsoft.Json.Linq.JToken)
  2605. extern void JPropertyKeyedCollection_GetKeyForItem_m012BD1293751F2AF1C49F84A4DA4EACAB010BBAD (void);
  2606. // 0x00000566 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::InsertItem(System.Int32,Newtonsoft.Json.Linq.JToken)
  2607. extern void JPropertyKeyedCollection_InsertItem_mF71A3CA4CFF94D790BA1EADF08F53AA710357AF2 (void);
  2608. // 0x00000567 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::RemoveItem(System.Int32)
  2609. extern void JPropertyKeyedCollection_RemoveItem_m73E4CE3D9913DBE3092AD70299252F210C74BDFB (void);
  2610. // 0x00000568 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::RemoveKey(System.String)
  2611. extern void JPropertyKeyedCollection_RemoveKey_mB6DEC2A6E4990B7FA59F4B7E27757E6ED4CC60D0 (void);
  2612. // 0x00000569 System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::SetItem(System.Int32,Newtonsoft.Json.Linq.JToken)
  2613. extern void JPropertyKeyedCollection_SetItem_m28E2DE685AE82889FCB5733179615AA927D1E17D (void);
  2614. // 0x0000056A System.Boolean Newtonsoft.Json.Linq.JPropertyKeyedCollection::TryGetValue(System.String,Newtonsoft.Json.Linq.JToken&)
  2615. extern void JPropertyKeyedCollection_TryGetValue_m20E12F57DCC60A7C75103FF8B0D516CE4647C6D9 (void);
  2616. // 0x0000056B System.Collections.Generic.ICollection`1<System.String> Newtonsoft.Json.Linq.JPropertyKeyedCollection::get_Keys()
  2617. extern void JPropertyKeyedCollection_get_Keys_mC5819B8822C090703E5C7C5E781FA2C3F2288E59 (void);
  2618. // 0x0000056C System.Int32 Newtonsoft.Json.Linq.JPropertyKeyedCollection::IndexOfReference(Newtonsoft.Json.Linq.JToken)
  2619. extern void JPropertyKeyedCollection_IndexOfReference_m99EA03F22122641DF3864E7613700B9460D165C1 (void);
  2620. // 0x0000056D System.Boolean Newtonsoft.Json.Linq.JPropertyKeyedCollection::Compare(Newtonsoft.Json.Linq.JPropertyKeyedCollection)
  2621. extern void JPropertyKeyedCollection_Compare_m0068ADFEEF0D2CC508FBA93912E00CFE00268A1D (void);
  2622. // 0x0000056E System.Void Newtonsoft.Json.Linq.JPropertyKeyedCollection::.cctor()
  2623. extern void JPropertyKeyedCollection__cctor_mC46B8292DD49129C3253A1AC3B4E7F1B3090A5C9 (void);
  2624. // 0x0000056F Newtonsoft.Json.Linq.CommentHandling Newtonsoft.Json.Linq.JsonLoadSettings::get_CommentHandling()
  2625. extern void JsonLoadSettings_get_CommentHandling_m826835E5AE01E9F77464D74FED529372995B6D13 (void);
  2626. // 0x00000570 Newtonsoft.Json.Linq.LineInfoHandling Newtonsoft.Json.Linq.JsonLoadSettings::get_LineInfoHandling()
  2627. extern void JsonLoadSettings_get_LineInfoHandling_mFC5C51D0F639F243E9E9FC0AD58065CF5F20DF18 (void);
  2628. // 0x00000571 System.Void Newtonsoft.Json.Linq.JsonLoadSettings::.ctor()
  2629. extern void JsonLoadSettings__ctor_mF71B78CB3ED1F95048307736970338D52B2E5A2C (void);
  2630. // 0x00000572 System.Void Newtonsoft.Json.Linq.JsonMergeSettings::.ctor()
  2631. extern void JsonMergeSettings__ctor_m6ACB9D8AC772EC69E2C26EBDA84B4271FA763093 (void);
  2632. // 0x00000573 System.Void Newtonsoft.Json.Linq.JRaw::.ctor(Newtonsoft.Json.Linq.JRaw)
  2633. extern void JRaw__ctor_m0C15E0FCD510E8B5BD3862491730D1FAA158BBA8 (void);
  2634. // 0x00000574 System.Void Newtonsoft.Json.Linq.JRaw::.ctor(System.Object)
  2635. extern void JRaw__ctor_m9F35CC695B1A9423ECB6CE9D908BA895937B45BA (void);
  2636. // 0x00000575 Newtonsoft.Json.Linq.JRaw Newtonsoft.Json.Linq.JRaw::Create(Newtonsoft.Json.JsonReader)
  2637. extern void JRaw_Create_mA849B3DCFA5DC6EE251212E595069E7DB280F7A7 (void);
  2638. // 0x00000576 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JRaw::CloneToken()
  2639. extern void JRaw_CloneToken_mE4EA25DCCE8607F61C67A746D9AD49A20DC85126 (void);
  2640. // 0x00000577 System.Boolean Newtonsoft.Json.Linq.JTokenEqualityComparer::Equals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
  2641. extern void JTokenEqualityComparer_Equals_m5654697807DB991A25B7B46695D00D779910F727 (void);
  2642. // 0x00000578 System.Int32 Newtonsoft.Json.Linq.JTokenEqualityComparer::GetHashCode(Newtonsoft.Json.Linq.JToken)
  2643. extern void JTokenEqualityComparer_GetHashCode_m2A9A5D7A0E13D632D1D5A4A98CDD7A7F3DBF792C (void);
  2644. // 0x00000579 System.Void Newtonsoft.Json.Linq.JTokenEqualityComparer::.ctor()
  2645. extern void JTokenEqualityComparer__ctor_m34ACE1D0D576A5E3BB9E08155157BBE964A3C229 (void);
  2646. // 0x0000057A U Newtonsoft.Json.Linq.Extensions::Value(System.Collections.Generic.IEnumerable`1<Newtonsoft.Json.Linq.JToken>)
  2647. // 0x0000057B U Newtonsoft.Json.Linq.Extensions::Value(System.Collections.Generic.IEnumerable`1<T>)
  2648. // 0x0000057C U Newtonsoft.Json.Linq.Extensions::Convert(T)
  2649. // 0x0000057D System.Void Newtonsoft.Json.Linq.Extensions/<>c__0`1::.cctor()
  2650. // 0x0000057E System.Void Newtonsoft.Json.Linq.Extensions/<>c__0`1::.ctor()
  2651. // 0x0000057F System.Void Newtonsoft.Json.Linq.Extensions/<>c__1`1::.cctor()
  2652. // 0x00000580 System.Void Newtonsoft.Json.Linq.Extensions/<>c__1`1::.ctor()
  2653. // 0x00000581 System.Void Newtonsoft.Json.Linq.Extensions/<>c__2`1::.cctor()
  2654. // 0x00000582 System.Void Newtonsoft.Json.Linq.Extensions/<>c__2`1::.ctor()
  2655. // 0x00000583 System.Void Newtonsoft.Json.Linq.Extensions/<>c__3`1::.cctor()
  2656. // 0x00000584 System.Void Newtonsoft.Json.Linq.Extensions/<>c__3`1::.ctor()
  2657. // 0x00000585 System.Void Newtonsoft.Json.Linq.Extensions/<>c::.cctor()
  2658. extern void U3CU3Ec__cctor_mD2443C2152213F30596C36B27A4E005EC6D82A1C (void);
  2659. // 0x00000586 System.Void Newtonsoft.Json.Linq.Extensions/<>c::.ctor()
  2660. extern void U3CU3Ec__ctor_m891AF27D89FAD73E6AA355C447B81716A36E9662 (void);
  2661. // 0x00000587 System.Void Newtonsoft.Json.Linq.Extensions/<>c__13`2::.cctor()
  2662. // 0x00000588 System.Void Newtonsoft.Json.Linq.Extensions/<>c__13`2::.ctor()
  2663. // 0x00000589 System.Collections.Generic.IList`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JConstructor::get_ChildrenTokens()
  2664. extern void JConstructor_get_ChildrenTokens_mB5FD9E1270D4E1106B9A35E5BE405A4D0284E836 (void);
  2665. // 0x0000058A System.Int32 Newtonsoft.Json.Linq.JConstructor::IndexOfItem(Newtonsoft.Json.Linq.JToken)
  2666. extern void JConstructor_IndexOfItem_m36BE519C38D5DEBD392C055AC0CB57E77D6798C6 (void);
  2667. // 0x0000058B System.String Newtonsoft.Json.Linq.JConstructor::get_Name()
  2668. extern void JConstructor_get_Name_m2368E84C243C18D25F92205F87F54CB0CAF56820 (void);
  2669. // 0x0000058C Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JConstructor::get_Type()
  2670. extern void JConstructor_get_Type_m23D3B8E365E9D8E190B2CBE17D2F5B6E8EEFD592 (void);
  2671. // 0x0000058D System.Void Newtonsoft.Json.Linq.JConstructor::.ctor()
  2672. extern void JConstructor__ctor_mB67152A987C528F77BEE51A5C52ECFF9D738D960 (void);
  2673. // 0x0000058E System.Void Newtonsoft.Json.Linq.JConstructor::.ctor(Newtonsoft.Json.Linq.JConstructor)
  2674. extern void JConstructor__ctor_m76D2E9AC282AE6136D881B53AD1CD53E0573C02A (void);
  2675. // 0x0000058F System.Void Newtonsoft.Json.Linq.JConstructor::.ctor(System.String)
  2676. extern void JConstructor__ctor_m3A59ED81616B52047AB5ECE65C6D762AD1BA1178 (void);
  2677. // 0x00000590 System.Boolean Newtonsoft.Json.Linq.JConstructor::DeepEquals(Newtonsoft.Json.Linq.JToken)
  2678. extern void JConstructor_DeepEquals_m5B681BC81A719FC380850DB2CE39E2115974237B (void);
  2679. // 0x00000591 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JConstructor::CloneToken()
  2680. extern void JConstructor_CloneToken_mBE494826296161291FD8BA0152CD7B66E8A74330 (void);
  2681. // 0x00000592 System.Void Newtonsoft.Json.Linq.JConstructor::WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])
  2682. extern void JConstructor_WriteTo_mDAACB53E1ABFCC2F2335975EB7423FEEE96B1232 (void);
  2683. // 0x00000593 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JConstructor::get_Item(System.Object)
  2684. extern void JConstructor_get_Item_m61304DCFC3F414EC9ED65CB3555CD80679DC94EB (void);
  2685. // 0x00000594 System.Void Newtonsoft.Json.Linq.JConstructor::set_Item(System.Object,Newtonsoft.Json.Linq.JToken)
  2686. extern void JConstructor_set_Item_m34B21DA2B47A26B0DC281B73390C3B4FDE54AA19 (void);
  2687. // 0x00000595 System.Int32 Newtonsoft.Json.Linq.JConstructor::GetDeepHashCode()
  2688. extern void JConstructor_GetDeepHashCode_mC6C3C189F6A432D96FEACFB6BD60E3571BF32E20 (void);
  2689. // 0x00000596 Newtonsoft.Json.Linq.JConstructor Newtonsoft.Json.Linq.JConstructor::Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  2690. extern void JConstructor_Load_m39A3E97A1ACDD09183F689F5069B56D3E412793F (void);
  2691. // 0x00000597 System.Void Newtonsoft.Json.Linq.JContainer::add_ListChanged(System.ComponentModel.ListChangedEventHandler)
  2692. extern void JContainer_add_ListChanged_m0A450B0DE2D3E0C2E54C626A9C66C1DF11DB0775 (void);
  2693. // 0x00000598 System.Void Newtonsoft.Json.Linq.JContainer::remove_ListChanged(System.ComponentModel.ListChangedEventHandler)
  2694. extern void JContainer_remove_ListChanged_mEC97E0E1F980D228828CEDBCEDB67360E4E349C2 (void);
  2695. // 0x00000599 System.Collections.Generic.IList`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JContainer::get_ChildrenTokens()
  2696. // 0x0000059A System.Void Newtonsoft.Json.Linq.JContainer::.ctor()
  2697. extern void JContainer__ctor_m77F975A85A4100E67601AF0212336AEF2157E293 (void);
  2698. // 0x0000059B System.Void Newtonsoft.Json.Linq.JContainer::.ctor(Newtonsoft.Json.Linq.JContainer)
  2699. extern void JContainer__ctor_mF69CACF53E411CB092CF59DE7F6824CBE5B90A81 (void);
  2700. // 0x0000059C System.Void Newtonsoft.Json.Linq.JContainer::CheckReentrancy()
  2701. extern void JContainer_CheckReentrancy_m27A270AB53B9424A4AB78BE999A6A26CB0C31085 (void);
  2702. // 0x0000059D System.Void Newtonsoft.Json.Linq.JContainer::OnAddingNew(System.ComponentModel.AddingNewEventArgs)
  2703. extern void JContainer_OnAddingNew_mA2115DA3683B492660C1EA73ABB766EFD9A49145 (void);
  2704. // 0x0000059E System.Void Newtonsoft.Json.Linq.JContainer::OnListChanged(System.ComponentModel.ListChangedEventArgs)
  2705. extern void JContainer_OnListChanged_mB59712E5A95139B832AD581C86B5AC27DDADC992 (void);
  2706. // 0x0000059F System.Boolean Newtonsoft.Json.Linq.JContainer::get_HasValues()
  2707. extern void JContainer_get_HasValues_m7471FF9D6F4C57FC054E39D2DDD32110AA749E4E (void);
  2708. // 0x000005A0 System.Boolean Newtonsoft.Json.Linq.JContainer::ContentsEqual(Newtonsoft.Json.Linq.JContainer)
  2709. extern void JContainer_ContentsEqual_mDBB8F5F38989EEE3A962E746AB5C31B7DE84EEF2 (void);
  2710. // 0x000005A1 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::get_First()
  2711. extern void JContainer_get_First_m73FE14BC1D7DBDA73514DBC8606FC8F6EB0F43AF (void);
  2712. // 0x000005A2 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::get_Last()
  2713. extern void JContainer_get_Last_m4EFB6099737BBC290AE430778C640B16854A534F (void);
  2714. // 0x000005A3 Newtonsoft.Json.Linq.JEnumerable`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JContainer::Children()
  2715. extern void JContainer_Children_mE71E7201EAE29C860B975B586BBA616DEB25B824 (void);
  2716. // 0x000005A4 System.Boolean Newtonsoft.Json.Linq.JContainer::IsMultiContent(System.Object)
  2717. extern void JContainer_IsMultiContent_m5F1BDE325938E41337AC52B89AD71859AF2240EE (void);
  2718. // 0x000005A5 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::EnsureParentToken(Newtonsoft.Json.Linq.JToken,System.Boolean)
  2719. extern void JContainer_EnsureParentToken_mF6E3F346B0A7EBEB48AC164748748233D626CFDB (void);
  2720. // 0x000005A6 System.Int32 Newtonsoft.Json.Linq.JContainer::IndexOfItem(Newtonsoft.Json.Linq.JToken)
  2721. // 0x000005A7 System.Void Newtonsoft.Json.Linq.JContainer::InsertItem(System.Int32,Newtonsoft.Json.Linq.JToken,System.Boolean)
  2722. extern void JContainer_InsertItem_m6238452B9828079E1197E716798B7C5B88907DA1 (void);
  2723. // 0x000005A8 System.Void Newtonsoft.Json.Linq.JContainer::RemoveItemAt(System.Int32)
  2724. extern void JContainer_RemoveItemAt_mB419C752BFEFE4E7B2FB18CF1F6AE569DCFB9CE8 (void);
  2725. // 0x000005A9 System.Boolean Newtonsoft.Json.Linq.JContainer::RemoveItem(Newtonsoft.Json.Linq.JToken)
  2726. extern void JContainer_RemoveItem_m04AFAC7F3A533AF828A4BFE19534A8ACC344A8EA (void);
  2727. // 0x000005AA Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::GetItem(System.Int32)
  2728. extern void JContainer_GetItem_mF3AC45F737D5C0681FB41E778D31B138B13C84CE (void);
  2729. // 0x000005AB System.Void Newtonsoft.Json.Linq.JContainer::SetItem(System.Int32,Newtonsoft.Json.Linq.JToken)
  2730. extern void JContainer_SetItem_mF1EE45E33AAE97CB8B042D2D3B6B9D02D4BDF5A9 (void);
  2731. // 0x000005AC System.Void Newtonsoft.Json.Linq.JContainer::ClearItems()
  2732. extern void JContainer_ClearItems_m93861485A4CD96B9B9432A3A03DBE8CF32F4FF03 (void);
  2733. // 0x000005AD System.Void Newtonsoft.Json.Linq.JContainer::ReplaceItem(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
  2734. extern void JContainer_ReplaceItem_m2F3FE7D854B4848734157727071A0EA32AC20039 (void);
  2735. // 0x000005AE System.Boolean Newtonsoft.Json.Linq.JContainer::ContainsItem(Newtonsoft.Json.Linq.JToken)
  2736. extern void JContainer_ContainsItem_m626BE0F72BF056DF7DEECDA90C33516D743BFA34 (void);
  2737. // 0x000005AF System.Void Newtonsoft.Json.Linq.JContainer::CopyItemsTo(System.Array,System.Int32)
  2738. extern void JContainer_CopyItemsTo_mC979188B5DA0917650F688992E06A63C79DEDC7B (void);
  2739. // 0x000005B0 System.Boolean Newtonsoft.Json.Linq.JContainer::IsTokenUnchanged(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
  2740. extern void JContainer_IsTokenUnchanged_mF1D03C6D37BD93A9F6C78EA12B66EBC9246022AD (void);
  2741. // 0x000005B1 System.Void Newtonsoft.Json.Linq.JContainer::ValidateToken(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
  2742. extern void JContainer_ValidateToken_m3B36AD51335D11572DB1DA2B02EB16F20116D299 (void);
  2743. // 0x000005B2 System.Void Newtonsoft.Json.Linq.JContainer::Add(System.Object)
  2744. extern void JContainer_Add_mDAF958AC76F8EB22BBB072FE3B73556DD28773DB (void);
  2745. // 0x000005B3 System.Void Newtonsoft.Json.Linq.JContainer::AddAndSkipParentCheck(Newtonsoft.Json.Linq.JToken)
  2746. extern void JContainer_AddAndSkipParentCheck_m990C8350B9021ED43798E0958FF662B7F7BB3259 (void);
  2747. // 0x000005B4 System.Void Newtonsoft.Json.Linq.JContainer::AddInternal(System.Int32,System.Object,System.Boolean)
  2748. extern void JContainer_AddInternal_mDEAC3FF6850A0787B3C1810F39134FD7B1F10610 (void);
  2749. // 0x000005B5 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::CreateFromContent(System.Object)
  2750. extern void JContainer_CreateFromContent_m14327B80380C4835EAB72F4DE19399280B3F33C6 (void);
  2751. // 0x000005B6 System.Void Newtonsoft.Json.Linq.JContainer::RemoveAll()
  2752. extern void JContainer_RemoveAll_mB2809BEC57F97D805A90A56483F022E83D12FAAF (void);
  2753. // 0x000005B7 System.Void Newtonsoft.Json.Linq.JContainer::ReadTokenFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  2754. extern void JContainer_ReadTokenFrom_mF5EB04B347272C837DDE4158DD66610BAD00250F (void);
  2755. // 0x000005B8 System.Void Newtonsoft.Json.Linq.JContainer::ReadContentFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  2756. extern void JContainer_ReadContentFrom_m312372631C83DBF75004976E703EC6FA8F63C67B (void);
  2757. // 0x000005B9 System.Int32 Newtonsoft.Json.Linq.JContainer::ContentsHashCode()
  2758. extern void JContainer_ContentsHashCode_m25FD405A8246B8DC9650EF8190FEADA56CFF6B57 (void);
  2759. // 0x000005BA System.String Newtonsoft.Json.Linq.JContainer::System.ComponentModel.ITypedList.GetListName(System.ComponentModel.PropertyDescriptor[])
  2760. extern void JContainer_System_ComponentModel_ITypedList_GetListName_mE437C96468BEFAF3BBA40E19B01FF650AAC6B9C0 (void);
  2761. // 0x000005BB System.ComponentModel.PropertyDescriptorCollection Newtonsoft.Json.Linq.JContainer::System.ComponentModel.ITypedList.GetItemProperties(System.ComponentModel.PropertyDescriptor[])
  2762. extern void JContainer_System_ComponentModel_ITypedList_GetItemProperties_mFB22E94CA47E890D196606B1A7569719D8D83121 (void);
  2763. // 0x000005BC System.Int32 Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.IList<Newtonsoft.Json.Linq.JToken>.IndexOf(Newtonsoft.Json.Linq.JToken)
  2764. extern void JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_IndexOf_mD53E6B241E87D2E99214A81D62902232A6B412DD (void);
  2765. // 0x000005BD System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.IList<Newtonsoft.Json.Linq.JToken>.Insert(System.Int32,Newtonsoft.Json.Linq.JToken)
  2766. extern void JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_Insert_m150C3C4EB9B8B7415572C1A6B676D6FBC239C64D (void);
  2767. // 0x000005BE System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.IList<Newtonsoft.Json.Linq.JToken>.RemoveAt(System.Int32)
  2768. extern void JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_RemoveAt_mFA75EBEC4A8FB9CC4BF6A212811E381B75E96CFF (void);
  2769. // 0x000005BF Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.IList<Newtonsoft.Json.Linq.JToken>.get_Item(System.Int32)
  2770. extern void JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_get_Item_mD4F6DA8A72773E7E03B1261F43ADA8D15723A5CB (void);
  2771. // 0x000005C0 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.IList<Newtonsoft.Json.Linq.JToken>.set_Item(System.Int32,Newtonsoft.Json.Linq.JToken)
  2772. extern void JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_set_Item_m0768F0951898A270B83AE36BDE1AAFDAE0C77A94 (void);
  2773. // 0x000005C1 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.ICollection<Newtonsoft.Json.Linq.JToken>.Add(Newtonsoft.Json.Linq.JToken)
  2774. extern void JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Add_m88B7976C3C8E899E61DF244B8306DE9AEB6F443D (void);
  2775. // 0x000005C2 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.ICollection<Newtonsoft.Json.Linq.JToken>.Clear()
  2776. extern void JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Clear_mF44FE44CB4DB93FA72B1CC415C12F704F97F0BD6 (void);
  2777. // 0x000005C3 System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.ICollection<Newtonsoft.Json.Linq.JToken>.Contains(Newtonsoft.Json.Linq.JToken)
  2778. extern void JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Contains_m978A2D67517F7D2DE51692035F19CAC58A17F697 (void);
  2779. // 0x000005C4 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.ICollection<Newtonsoft.Json.Linq.JToken>.CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)
  2780. extern void JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_CopyTo_mE94B2B4CFD1B79061641A2497CEFD0477445DB79 (void);
  2781. // 0x000005C5 System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.ICollection<Newtonsoft.Json.Linq.JToken>.get_IsReadOnly()
  2782. extern void JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_get_IsReadOnly_mF13567B79AF4967E63C517E5DD331AD41FD51324 (void);
  2783. // 0x000005C6 System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.Generic.ICollection<Newtonsoft.Json.Linq.JToken>.Remove(Newtonsoft.Json.Linq.JToken)
  2784. extern void JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Remove_mF7B76812D91B73CAC2D2139D12848566CB628798 (void);
  2785. // 0x000005C7 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JContainer::EnsureValue(System.Object)
  2786. extern void JContainer_EnsureValue_mFBF5C582610C3CB4A7094D0AF8E8E8B9BB930E0B (void);
  2787. // 0x000005C8 System.Int32 Newtonsoft.Json.Linq.JContainer::System.Collections.IList.Add(System.Object)
  2788. extern void JContainer_System_Collections_IList_Add_m870AF3D3CA924B4EE53B2AF57C991799F4D071CA (void);
  2789. // 0x000005C9 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.IList.Clear()
  2790. extern void JContainer_System_Collections_IList_Clear_mB50562841DDA3ABEB89E1319C4C247AB693C7C08 (void);
  2791. // 0x000005CA System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.IList.Contains(System.Object)
  2792. extern void JContainer_System_Collections_IList_Contains_mEF9CF39953FC1A3683E2DA8A4848893A4E75973C (void);
  2793. // 0x000005CB System.Int32 Newtonsoft.Json.Linq.JContainer::System.Collections.IList.IndexOf(System.Object)
  2794. extern void JContainer_System_Collections_IList_IndexOf_mA6587C1147A673FC7B50BEE3973E6B7D264DD0A6 (void);
  2795. // 0x000005CC System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.IList.Insert(System.Int32,System.Object)
  2796. extern void JContainer_System_Collections_IList_Insert_m68BB562D814889360FF51CACCFA061B86E0AA034 (void);
  2797. // 0x000005CD System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.IList.get_IsFixedSize()
  2798. extern void JContainer_System_Collections_IList_get_IsFixedSize_mC125808FD714ACA6D37EBE3B7950058AD56D22E4 (void);
  2799. // 0x000005CE System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.IList.get_IsReadOnly()
  2800. extern void JContainer_System_Collections_IList_get_IsReadOnly_m2B935D9E1147ACB4A383F772EB60A931F3B383A4 (void);
  2801. // 0x000005CF System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.IList.Remove(System.Object)
  2802. extern void JContainer_System_Collections_IList_Remove_m3A7D2F1220179E142AC3D57D12A77F2DAAB74ED1 (void);
  2803. // 0x000005D0 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.IList.RemoveAt(System.Int32)
  2804. extern void JContainer_System_Collections_IList_RemoveAt_m90A327557DBE759D044D48779B49E53083F70711 (void);
  2805. // 0x000005D1 System.Object Newtonsoft.Json.Linq.JContainer::System.Collections.IList.get_Item(System.Int32)
  2806. extern void JContainer_System_Collections_IList_get_Item_mA6E3436C79A435FEF466D4499418005268264E31 (void);
  2807. // 0x000005D2 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.IList.set_Item(System.Int32,System.Object)
  2808. extern void JContainer_System_Collections_IList_set_Item_mD4641B3D2DFB8CB8CD34D231DDCD1C689D1BF6BC (void);
  2809. // 0x000005D3 System.Void Newtonsoft.Json.Linq.JContainer::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  2810. extern void JContainer_System_Collections_ICollection_CopyTo_m803A98DDDDE2718C4778C4FD525B88D7B34880CE (void);
  2811. // 0x000005D4 System.Int32 Newtonsoft.Json.Linq.JContainer::get_Count()
  2812. extern void JContainer_get_Count_m7BE891DAF5EFE794306F13D1A35164AA28287ABD (void);
  2813. // 0x000005D5 System.Boolean Newtonsoft.Json.Linq.JContainer::System.Collections.ICollection.get_IsSynchronized()
  2814. extern void JContainer_System_Collections_ICollection_get_IsSynchronized_m6BF42F1D7A779F15A853D495B8F96A1ABA822C1F (void);
  2815. // 0x000005D6 System.Object Newtonsoft.Json.Linq.JContainer::System.Collections.ICollection.get_SyncRoot()
  2816. extern void JContainer_System_Collections_ICollection_get_SyncRoot_m8A1614D262240D3827F775300FFCFD17ACD5292D (void);
  2817. // 0x000005D7 System.Void Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.AddIndex(System.ComponentModel.PropertyDescriptor)
  2818. extern void JContainer_System_ComponentModel_IBindingList_AddIndex_mC2F780738F4815A48B2DDDCF4634376FC6B532CC (void);
  2819. // 0x000005D8 System.Object Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.AddNew()
  2820. extern void JContainer_System_ComponentModel_IBindingList_AddNew_mBCBAC026942A9B2BAC683C3A54A2BC8163B7AD01 (void);
  2821. // 0x000005D9 System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_AllowEdit()
  2822. extern void JContainer_System_ComponentModel_IBindingList_get_AllowEdit_mB8CC5D02B6DCAE05CC53ABE6B046961D14F1FDE3 (void);
  2823. // 0x000005DA System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_AllowNew()
  2824. extern void JContainer_System_ComponentModel_IBindingList_get_AllowNew_m59EE6CE41D4F3129E74B3984037DEF274EC93976 (void);
  2825. // 0x000005DB System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_AllowRemove()
  2826. extern void JContainer_System_ComponentModel_IBindingList_get_AllowRemove_m02B0026E0FC87841FE7C637041350B3D8142BB5B (void);
  2827. // 0x000005DC System.Void Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.ApplySort(System.ComponentModel.PropertyDescriptor,System.ComponentModel.ListSortDirection)
  2828. extern void JContainer_System_ComponentModel_IBindingList_ApplySort_m7ABC1ED883335B2F3370A5BBED73C34010AAB055 (void);
  2829. // 0x000005DD System.Int32 Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.Find(System.ComponentModel.PropertyDescriptor,System.Object)
  2830. extern void JContainer_System_ComponentModel_IBindingList_Find_mD7B70FBC342EBED5CC16C412269F1F8CF4E25A2E (void);
  2831. // 0x000005DE System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_IsSorted()
  2832. extern void JContainer_System_ComponentModel_IBindingList_get_IsSorted_mC4FCE3A7E2723904B6B84D1BEE4391D56A02C6C8 (void);
  2833. // 0x000005DF System.Void Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.RemoveIndex(System.ComponentModel.PropertyDescriptor)
  2834. extern void JContainer_System_ComponentModel_IBindingList_RemoveIndex_mE424C19D4B5C314EF39E46820DFDE0678BA7085C (void);
  2835. // 0x000005E0 System.Void Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.RemoveSort()
  2836. extern void JContainer_System_ComponentModel_IBindingList_RemoveSort_m13C303F0FB048BEBA583B704465D52E66EC664CD (void);
  2837. // 0x000005E1 System.ComponentModel.ListSortDirection Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_SortDirection()
  2838. extern void JContainer_System_ComponentModel_IBindingList_get_SortDirection_m496810711CA34E0F3BC8349EB2C096DEE3D23880 (void);
  2839. // 0x000005E2 System.ComponentModel.PropertyDescriptor Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_SortProperty()
  2840. extern void JContainer_System_ComponentModel_IBindingList_get_SortProperty_mB07C87D34B874AC28627C3022D65FE3941E8445A (void);
  2841. // 0x000005E3 System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_SupportsChangeNotification()
  2842. extern void JContainer_System_ComponentModel_IBindingList_get_SupportsChangeNotification_m6225E5079974EA86270A6EA2C1F937B7B09DC730 (void);
  2843. // 0x000005E4 System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_SupportsSearching()
  2844. extern void JContainer_System_ComponentModel_IBindingList_get_SupportsSearching_mC10733C41BEA9A33CA4158322DA8C27B9F99E6A9 (void);
  2845. // 0x000005E5 System.Boolean Newtonsoft.Json.Linq.JContainer::System.ComponentModel.IBindingList.get_SupportsSorting()
  2846. extern void JContainer_System_ComponentModel_IBindingList_get_SupportsSorting_m486FE49E9AB379E873955D96B788ACCC0C0E7D72 (void);
  2847. // 0x000005E6 System.Void Newtonsoft.Json.Linq.JEnumerable`1::.ctor(System.Collections.Generic.IEnumerable`1<T>)
  2848. // 0x000005E7 System.Collections.Generic.IEnumerator`1<T> Newtonsoft.Json.Linq.JEnumerable`1::GetEnumerator()
  2849. // 0x000005E8 System.Collections.IEnumerator Newtonsoft.Json.Linq.JEnumerable`1::System.Collections.IEnumerable.GetEnumerator()
  2850. // 0x000005E9 System.Boolean Newtonsoft.Json.Linq.JEnumerable`1::Equals(Newtonsoft.Json.Linq.JEnumerable`1<T>)
  2851. // 0x000005EA System.Boolean Newtonsoft.Json.Linq.JEnumerable`1::Equals(System.Object)
  2852. // 0x000005EB System.Int32 Newtonsoft.Json.Linq.JEnumerable`1::GetHashCode()
  2853. // 0x000005EC System.Void Newtonsoft.Json.Linq.JEnumerable`1::.cctor()
  2854. // 0x000005ED System.Collections.Generic.IList`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JObject::get_ChildrenTokens()
  2855. extern void JObject_get_ChildrenTokens_m6A2EDA3922D051F0F0BC7614E92384F34829DB35 (void);
  2856. // 0x000005EE System.Void Newtonsoft.Json.Linq.JObject::add_PropertyChanged(System.ComponentModel.PropertyChangedEventHandler)
  2857. extern void JObject_add_PropertyChanged_mB83856D5DE35B67F409E3EA1E6B21C6E362095E0 (void);
  2858. // 0x000005EF System.Void Newtonsoft.Json.Linq.JObject::remove_PropertyChanged(System.ComponentModel.PropertyChangedEventHandler)
  2859. extern void JObject_remove_PropertyChanged_mE072EC2DBF5C6A0BE20E4FE1916A2CFD9A77C87B (void);
  2860. // 0x000005F0 System.Void Newtonsoft.Json.Linq.JObject::.ctor()
  2861. extern void JObject__ctor_mC2ABF535613F5B0CCD040EA2133F29AA868F84B6 (void);
  2862. // 0x000005F1 System.Void Newtonsoft.Json.Linq.JObject::.ctor(Newtonsoft.Json.Linq.JObject)
  2863. extern void JObject__ctor_m2BB4B9FE534141BFF21D6B5512781100AA60D000 (void);
  2864. // 0x000005F2 System.Boolean Newtonsoft.Json.Linq.JObject::DeepEquals(Newtonsoft.Json.Linq.JToken)
  2865. extern void JObject_DeepEquals_m19AD39992675E2F132F33A698FD565A8C4616C80 (void);
  2866. // 0x000005F3 System.Int32 Newtonsoft.Json.Linq.JObject::IndexOfItem(Newtonsoft.Json.Linq.JToken)
  2867. extern void JObject_IndexOfItem_m021625E203B49643DEAB0A18C864231118BE65EA (void);
  2868. // 0x000005F4 System.Void Newtonsoft.Json.Linq.JObject::InsertItem(System.Int32,Newtonsoft.Json.Linq.JToken,System.Boolean)
  2869. extern void JObject_InsertItem_mA48096B5961D85580F56EFC34DA3135E7983CE2A (void);
  2870. // 0x000005F5 System.Void Newtonsoft.Json.Linq.JObject::ValidateToken(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
  2871. extern void JObject_ValidateToken_m1D16576AFFA35E6BF6AAE7746E1C36A70A21E799 (void);
  2872. // 0x000005F6 System.Void Newtonsoft.Json.Linq.JObject::InternalPropertyChanged(Newtonsoft.Json.Linq.JProperty)
  2873. extern void JObject_InternalPropertyChanged_mD71E38678812D721847A45DA36E50E9341142366 (void);
  2874. // 0x000005F7 System.Void Newtonsoft.Json.Linq.JObject::InternalPropertyChanging(Newtonsoft.Json.Linq.JProperty)
  2875. extern void JObject_InternalPropertyChanging_m5AAAB727E5485BFB58AEE7DD6C707C999209B22F (void);
  2876. // 0x000005F8 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JObject::CloneToken()
  2877. extern void JObject_CloneToken_mE0EEDB50A385853C3FA3E898F5B1A3D919D60815 (void);
  2878. // 0x000005F9 Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JObject::get_Type()
  2879. extern void JObject_get_Type_m28AA64D0F20318B46EA07547F5286327F30D11F5 (void);
  2880. // 0x000005FA Newtonsoft.Json.Linq.JProperty Newtonsoft.Json.Linq.JObject::Property(System.String)
  2881. extern void JObject_Property_mAC035EB5A7503C18850A12AB6AF50D3963A5DE4C (void);
  2882. // 0x000005FB Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JObject::get_Item(System.Object)
  2883. extern void JObject_get_Item_m20AA659AB303A656657881803E072E9F491E02EB (void);
  2884. // 0x000005FC System.Void Newtonsoft.Json.Linq.JObject::set_Item(System.Object,Newtonsoft.Json.Linq.JToken)
  2885. extern void JObject_set_Item_mC5D002DCBC5E76E763C67B1FEC7E9E844B12CFC2 (void);
  2886. // 0x000005FD Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JObject::get_Item(System.String)
  2887. extern void JObject_get_Item_m80363C48702BA72846A041E62E790E9E7392B0F3 (void);
  2888. // 0x000005FE System.Void Newtonsoft.Json.Linq.JObject::set_Item(System.String,Newtonsoft.Json.Linq.JToken)
  2889. extern void JObject_set_Item_m079791F9D444829F3FC1A8E698AE3BC0B3799023 (void);
  2890. // 0x000005FF Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JObject::Load(Newtonsoft.Json.JsonReader)
  2891. extern void JObject_Load_mE10712B20CE007984F2A9066F620D55342CD961E (void);
  2892. // 0x00000600 Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JObject::Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  2893. extern void JObject_Load_m23C5D243B879AC4B91FA887FDEB3E89C678835FE (void);
  2894. // 0x00000601 Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JObject::Parse(System.String)
  2895. extern void JObject_Parse_mA2260CFB81694E96A188F3FC5B9B60BA69F2AE74 (void);
  2896. // 0x00000602 Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JObject::Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)
  2897. extern void JObject_Parse_mE880AB67CA7CFFCD4656CD273435C4129C6AF35C (void);
  2898. // 0x00000603 Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JObject::FromObject(System.Object)
  2899. extern void JObject_FromObject_m084AF0C231311BFEBCA73D333450C8413CE0C426 (void);
  2900. // 0x00000604 Newtonsoft.Json.Linq.JObject Newtonsoft.Json.Linq.JObject::FromObject(System.Object,Newtonsoft.Json.JsonSerializer)
  2901. extern void JObject_FromObject_m927B3EAD5B6664A25BBEEDD5E2BB7150DAB242A3 (void);
  2902. // 0x00000605 System.Void Newtonsoft.Json.Linq.JObject::WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])
  2903. extern void JObject_WriteTo_m7E545216C7299B3B72CEE915D71B3A3FD3094C1B (void);
  2904. // 0x00000606 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JObject::GetValue(System.String)
  2905. extern void JObject_GetValue_mCC9DA25500AF2DDE4A6A3F0D8DF9BCC9D53612E0 (void);
  2906. // 0x00000607 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JObject::GetValue(System.String,System.StringComparison)
  2907. extern void JObject_GetValue_m8719E5583D473F4909D0B9479A8D02E062ED99AC (void);
  2908. // 0x00000608 System.Void Newtonsoft.Json.Linq.JObject::Add(System.String,Newtonsoft.Json.Linq.JToken)
  2909. extern void JObject_Add_m7C41853ADC4162C317C1C443A777594AC5760F42 (void);
  2910. // 0x00000609 System.Boolean Newtonsoft.Json.Linq.JObject::System.Collections.Generic.IDictionary<System.String,Newtonsoft.Json.Linq.JToken>.ContainsKey(System.String)
  2911. extern void JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3E_ContainsKey_m292AB486548276FB0534088D0D31FC2882F570D4 (void);
  2912. // 0x0000060A System.Collections.Generic.ICollection`1<System.String> Newtonsoft.Json.Linq.JObject::System.Collections.Generic.IDictionary<System.String,Newtonsoft.Json.Linq.JToken>.get_Keys()
  2913. extern void JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3E_get_Keys_mEB75A6150B7CA8696A283FA179BA6455DB5EC36E (void);
  2914. // 0x0000060B System.Boolean Newtonsoft.Json.Linq.JObject::Remove(System.String)
  2915. extern void JObject_Remove_mA783B0CD5AD9875E541A86815E7E85111863374D (void);
  2916. // 0x0000060C System.Boolean Newtonsoft.Json.Linq.JObject::TryGetValue(System.String,Newtonsoft.Json.Linq.JToken&)
  2917. extern void JObject_TryGetValue_m7675069C2FAF25EA6EE4EAD8C3B54037BB3F0DF7 (void);
  2918. // 0x0000060D System.Collections.Generic.ICollection`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JObject::System.Collections.Generic.IDictionary<System.String,Newtonsoft.Json.Linq.JToken>.get_Values()
  2919. extern void JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3E_get_Values_m56D179E846C00CE5D2E2934371B4C03DEF960982 (void);
  2920. // 0x0000060E System.Void Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.Add(System.Collections.Generic.KeyValuePair`2<System.String,Newtonsoft.Json.Linq.JToken>)
  2921. extern void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Add_mEB21654E9B5ED3BC77F31F5121F00ED6341A7E3B (void);
  2922. // 0x0000060F System.Void Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.Clear()
  2923. extern void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Clear_mEDD65A3BFEF7227B032F9B0967273BA69DFE49C8 (void);
  2924. // 0x00000610 System.Boolean Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.Contains(System.Collections.Generic.KeyValuePair`2<System.String,Newtonsoft.Json.Linq.JToken>)
  2925. extern void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Contains_m8BCEA5499FF6B451151E01100DD0B16150E745FA (void);
  2926. // 0x00000611 System.Void Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.CopyTo(System.Collections.Generic.KeyValuePair`2<System.String,Newtonsoft.Json.Linq.JToken>[],System.Int32)
  2927. extern void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m3E69207E748B2C640C74033855783745FEDEB709 (void);
  2928. // 0x00000612 System.Boolean Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.get_IsReadOnly()
  2929. extern void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_get_IsReadOnly_m42F771C84EB574FD4F3E3C5ECA1C2C40954DEB0D (void);
  2930. // 0x00000613 System.Boolean Newtonsoft.Json.Linq.JObject::System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.Remove(System.Collections.Generic.KeyValuePair`2<System.String,Newtonsoft.Json.Linq.JToken>)
  2931. extern void JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Remove_m8DA7D64848FF08A590D98AD9CB138C0DA184EADB (void);
  2932. // 0x00000614 System.Int32 Newtonsoft.Json.Linq.JObject::GetDeepHashCode()
  2933. extern void JObject_GetDeepHashCode_m8BE01DF899B6491A9E81D8AD09F9537302448CD8 (void);
  2934. // 0x00000615 System.Collections.Generic.IEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.String,Newtonsoft.Json.Linq.JToken>> Newtonsoft.Json.Linq.JObject::GetEnumerator()
  2935. extern void JObject_GetEnumerator_mF207EDD82CCC844FBE21B3C189FC8E4DA116FA0B (void);
  2936. // 0x00000616 System.Void Newtonsoft.Json.Linq.JObject::OnPropertyChanged(System.String)
  2937. extern void JObject_OnPropertyChanged_m0C1E8EC443C08F9EC36E42A5845497728E0AE5DC (void);
  2938. // 0x00000617 System.Void Newtonsoft.Json.Linq.JObject::OnPropertyChanging(System.String)
  2939. extern void JObject_OnPropertyChanging_m889B7E8AC50C907C9C9A634725AC786214176E5E (void);
  2940. // 0x00000618 System.ComponentModel.PropertyDescriptorCollection Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetProperties()
  2941. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetProperties_m029750BFBCD1786D47DD5E5AB877022CCADF54BC (void);
  2942. // 0x00000619 System.ComponentModel.PropertyDescriptorCollection Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[])
  2943. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetProperties_mC12852B48D16176890C7CBBD71E69727DBE46F69 (void);
  2944. // 0x0000061A System.ComponentModel.AttributeCollection Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetAttributes()
  2945. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetAttributes_mC952D6679E5F6F8CD12932EA88D18C31B39FCB0B (void);
  2946. // 0x0000061B System.String Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetClassName()
  2947. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetClassName_m6A1D03E34649F3A0D703CA526999B7A3F2E99AEF (void);
  2948. // 0x0000061C System.String Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetComponentName()
  2949. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetComponentName_m0133AFECCE3F0BFD61972916024CC78108C8AE77 (void);
  2950. // 0x0000061D System.ComponentModel.TypeConverter Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetConverter()
  2951. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetConverter_m018EEE94D859161BBBF152D74607584745D5EC71 (void);
  2952. // 0x0000061E System.ComponentModel.EventDescriptor Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetDefaultEvent()
  2953. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent_mDCFA3D51B79883482C5722010209922667AD1DC7 (void);
  2954. // 0x0000061F System.ComponentModel.PropertyDescriptor Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetDefaultProperty()
  2955. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty_m6E0E787CEAF2AF072240004A16C8CDD1F3CDBE78 (void);
  2956. // 0x00000620 System.Object Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetEditor(System.Type)
  2957. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetEditor_mCAF6620394D04C58C3702458BE4D849546CFBB7A (void);
  2958. // 0x00000621 System.ComponentModel.EventDescriptorCollection Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetEvents(System.Attribute[])
  2959. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetEvents_m12D967FC49DE35ACD920D9F3C7C1FCC806929A46 (void);
  2960. // 0x00000622 System.ComponentModel.EventDescriptorCollection Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetEvents()
  2961. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetEvents_m0B1BB39E2BCB1066A9B1E79E27162609498A337C (void);
  2962. // 0x00000623 System.Object Newtonsoft.Json.Linq.JObject::System.ComponentModel.ICustomTypeDescriptor.GetPropertyOwner(System.ComponentModel.PropertyDescriptor)
  2963. extern void JObject_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner_m378F2283E2C7FAA9693970E765C912D070136666 (void);
  2964. // 0x00000624 System.Void Newtonsoft.Json.Linq.JObject/<>c::.cctor()
  2965. extern void U3CU3Ec__cctor_m7061F0865CB68A5E9071B17B024354074CC40FCA (void);
  2966. // 0x00000625 System.Void Newtonsoft.Json.Linq.JObject/<>c::.ctor()
  2967. extern void U3CU3Ec__ctor_m12583814D2DBDF9197EF3849980DBCDC5C608CE3 (void);
  2968. // 0x00000626 System.Void Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::.ctor(System.Int32)
  2969. extern void U3CGetEnumeratorU3Ed__58__ctor_m872F5FDD4EEEE735615237623B5CBA293F6850F5 (void);
  2970. // 0x00000627 System.Void Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::System.IDisposable.Dispose()
  2971. extern void U3CGetEnumeratorU3Ed__58_System_IDisposable_Dispose_m86F73AE814F57F2B03CF9B5B80042C9F90C62135 (void);
  2972. // 0x00000628 System.Boolean Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::MoveNext()
  2973. extern void U3CGetEnumeratorU3Ed__58_MoveNext_m1297E0B4E2DF44667D5B78C3F6BB3FBDCB9DA966 (void);
  2974. // 0x00000629 System.Void Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::<>m__Finally1()
  2975. extern void U3CGetEnumeratorU3Ed__58_U3CU3Em__Finally1_m55F7EF214234CB5AE172B1391E27AD0C2B53C1CC (void);
  2976. // 0x0000062A System.Collections.Generic.KeyValuePair`2<System.String,Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String,Newtonsoft.Json.Linq.JToken>>.get_Current()
  2977. extern void U3CGetEnumeratorU3Ed__58_System_Collections_Generic_IEnumeratorU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_get_Current_m71CBA61881E0B0809CE43CC3D24F2D3B9F389468 (void);
  2978. // 0x0000062B System.Void Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::System.Collections.IEnumerator.Reset()
  2979. extern void U3CGetEnumeratorU3Ed__58_System_Collections_IEnumerator_Reset_m26EE8DC5BDCE81F7E904EF44D29ACA1208AC16BF (void);
  2980. // 0x0000062C System.Object Newtonsoft.Json.Linq.JObject/<GetEnumerator>d__58::System.Collections.IEnumerator.get_Current()
  2981. extern void U3CGetEnumeratorU3Ed__58_System_Collections_IEnumerator_get_Current_mCB0A9772FABE1AEF2AE58CC5E7AFEFB9D67A6A3B (void);
  2982. // 0x0000062D System.Collections.Generic.IList`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JArray::get_ChildrenTokens()
  2983. extern void JArray_get_ChildrenTokens_m7C614231C0400EB3532C67D4AD2D6207BA7CA2CF (void);
  2984. // 0x0000062E Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JArray::get_Type()
  2985. extern void JArray_get_Type_m59C767FB485C1739DC89F30C0B2BC7FF7E726701 (void);
  2986. // 0x0000062F System.Void Newtonsoft.Json.Linq.JArray::.ctor()
  2987. extern void JArray__ctor_m51883217505C9A06E7CFEFF7E7F5AE9172281F0F (void);
  2988. // 0x00000630 System.Void Newtonsoft.Json.Linq.JArray::.ctor(Newtonsoft.Json.Linq.JArray)
  2989. extern void JArray__ctor_m74765E1657F8FF449A776BEED717BFE2DDE6DBB9 (void);
  2990. // 0x00000631 System.Void Newtonsoft.Json.Linq.JArray::.ctor(System.Object)
  2991. extern void JArray__ctor_mB3106162861C77EC2D96BED0E042C02C9D348721 (void);
  2992. // 0x00000632 System.Boolean Newtonsoft.Json.Linq.JArray::DeepEquals(Newtonsoft.Json.Linq.JToken)
  2993. extern void JArray_DeepEquals_m186E40D4F68AB7B94AF62F5934D3E8018D449467 (void);
  2994. // 0x00000633 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JArray::CloneToken()
  2995. extern void JArray_CloneToken_m28BB710394BA7509DC51B8534F987B374A11E76C (void);
  2996. // 0x00000634 Newtonsoft.Json.Linq.JArray Newtonsoft.Json.Linq.JArray::Load(Newtonsoft.Json.JsonReader)
  2997. extern void JArray_Load_mA758323FC39D3D2C56C9A4A72029656E8E618E06 (void);
  2998. // 0x00000635 Newtonsoft.Json.Linq.JArray Newtonsoft.Json.Linq.JArray::Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  2999. extern void JArray_Load_m69EDDA73070D77FBF88C38CC14C9160F0D0D6141 (void);
  3000. // 0x00000636 Newtonsoft.Json.Linq.JArray Newtonsoft.Json.Linq.JArray::Parse(System.String)
  3001. extern void JArray_Parse_m439C04275F3CBF55608B03C052B7D823E7D8E764 (void);
  3002. // 0x00000637 Newtonsoft.Json.Linq.JArray Newtonsoft.Json.Linq.JArray::Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)
  3003. extern void JArray_Parse_mE597CC9FC4B702F6B2A7A62875820B9ABA95763C (void);
  3004. // 0x00000638 Newtonsoft.Json.Linq.JArray Newtonsoft.Json.Linq.JArray::FromObject(System.Object)
  3005. extern void JArray_FromObject_m841DC4F6F38D049C725FDF17AA2CE31DFC56F953 (void);
  3006. // 0x00000639 Newtonsoft.Json.Linq.JArray Newtonsoft.Json.Linq.JArray::FromObject(System.Object,Newtonsoft.Json.JsonSerializer)
  3007. extern void JArray_FromObject_mD5CE7D9A39AADC17F40A40CB16A4EE4543B3C9F4 (void);
  3008. // 0x0000063A System.Void Newtonsoft.Json.Linq.JArray::WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])
  3009. extern void JArray_WriteTo_mA91A532DD89FB33CF5E983AAB6C2D438BA4476C2 (void);
  3010. // 0x0000063B Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JArray::get_Item(System.Object)
  3011. extern void JArray_get_Item_m686549F46A9C49FFBA3F123896559403B4CAE91E (void);
  3012. // 0x0000063C System.Void Newtonsoft.Json.Linq.JArray::set_Item(System.Object,Newtonsoft.Json.Linq.JToken)
  3013. extern void JArray_set_Item_m3A96DED6E2CFF0948B24FF9D65F2578318242A42 (void);
  3014. // 0x0000063D Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JArray::get_Item(System.Int32)
  3015. extern void JArray_get_Item_m181FAC862BC79F68F7712C837E37016B91AF9EA6 (void);
  3016. // 0x0000063E System.Void Newtonsoft.Json.Linq.JArray::set_Item(System.Int32,Newtonsoft.Json.Linq.JToken)
  3017. extern void JArray_set_Item_m425B9606BBC427BA3D7CD0B5F490FEB861D8F36B (void);
  3018. // 0x0000063F System.Int32 Newtonsoft.Json.Linq.JArray::IndexOfItem(Newtonsoft.Json.Linq.JToken)
  3019. extern void JArray_IndexOfItem_mF4FB5E4C1C8344110278502ADAEF1D1797A0B5B8 (void);
  3020. // 0x00000640 System.Int32 Newtonsoft.Json.Linq.JArray::IndexOf(Newtonsoft.Json.Linq.JToken)
  3021. extern void JArray_IndexOf_m28F0CBDF36319D7AF59E3ABAA2C5123FC9DA8A38 (void);
  3022. // 0x00000641 System.Void Newtonsoft.Json.Linq.JArray::Insert(System.Int32,Newtonsoft.Json.Linq.JToken)
  3023. extern void JArray_Insert_m21AEACFD0ABABB3E4AEA7A86C8245A2AEAC2BB84 (void);
  3024. // 0x00000642 System.Void Newtonsoft.Json.Linq.JArray::RemoveAt(System.Int32)
  3025. extern void JArray_RemoveAt_m4156E8F71D40059DEBFAA24E43EC457CD2F63585 (void);
  3026. // 0x00000643 System.Collections.Generic.IEnumerator`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JArray::GetEnumerator()
  3027. extern void JArray_GetEnumerator_mB043EF6F59968E82C71A04BBEBD78A0224AFB024 (void);
  3028. // 0x00000644 System.Void Newtonsoft.Json.Linq.JArray::Add(Newtonsoft.Json.Linq.JToken)
  3029. extern void JArray_Add_m6B42FD282BBCFC0BD990DCC64845FED95893FE92 (void);
  3030. // 0x00000645 System.Void Newtonsoft.Json.Linq.JArray::Clear()
  3031. extern void JArray_Clear_mE48801B65A3347CF4B5CEA4F08A6939F5832AA53 (void);
  3032. // 0x00000646 System.Boolean Newtonsoft.Json.Linq.JArray::Contains(Newtonsoft.Json.Linq.JToken)
  3033. extern void JArray_Contains_m507CFD376DAAB313DB44652C4EB69EB4ECF36086 (void);
  3034. // 0x00000647 System.Void Newtonsoft.Json.Linq.JArray::CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)
  3035. extern void JArray_CopyTo_m9C4D1EF3C7B97C8132BEB9549D0627AA921706BE (void);
  3036. // 0x00000648 System.Boolean Newtonsoft.Json.Linq.JArray::get_IsReadOnly()
  3037. extern void JArray_get_IsReadOnly_m8F14542239062682DC12E905E6275480DC3B0EFF (void);
  3038. // 0x00000649 System.Boolean Newtonsoft.Json.Linq.JArray::Remove(Newtonsoft.Json.Linq.JToken)
  3039. extern void JArray_Remove_m881E94036B788DB51AF442B7C6B9FD5CD58C0873 (void);
  3040. // 0x0000064A System.Int32 Newtonsoft.Json.Linq.JArray::GetDeepHashCode()
  3041. extern void JArray_GetDeepHashCode_mCD598BF8A04AD5D8DFB020543500C6C158B27274 (void);
  3042. // 0x0000064B Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JTokenReader::get_CurrentToken()
  3043. extern void JTokenReader_get_CurrentToken_mF456F06D9F95D3570D0BB62D6F5AF6355F01F894 (void);
  3044. // 0x0000064C System.Void Newtonsoft.Json.Linq.JTokenReader::.ctor(Newtonsoft.Json.Linq.JToken)
  3045. extern void JTokenReader__ctor_m03B413BB58E3DDA88F4E3CD3EBE6F62E7E1ED8ED (void);
  3046. // 0x0000064D System.Boolean Newtonsoft.Json.Linq.JTokenReader::Read()
  3047. extern void JTokenReader_Read_m748D26282AE65102F373E319ECEC3EEE49FF9900 (void);
  3048. // 0x0000064E System.Boolean Newtonsoft.Json.Linq.JTokenReader::ReadOver(Newtonsoft.Json.Linq.JToken)
  3049. extern void JTokenReader_ReadOver_m4E738C5F6D007B5A260077313669BFDF73E48FCB (void);
  3050. // 0x0000064F System.Boolean Newtonsoft.Json.Linq.JTokenReader::ReadToEnd()
  3051. extern void JTokenReader_ReadToEnd_m37F75C4362329E72A8A735F19F5C4640B991987F (void);
  3052. // 0x00000650 System.Nullable`1<Newtonsoft.Json.JsonToken> Newtonsoft.Json.Linq.JTokenReader::GetEndToken(Newtonsoft.Json.Linq.JContainer)
  3053. extern void JTokenReader_GetEndToken_m5A63E5A38757F7206247A217819F6DB442DA696A (void);
  3054. // 0x00000651 System.Boolean Newtonsoft.Json.Linq.JTokenReader::ReadInto(Newtonsoft.Json.Linq.JContainer)
  3055. extern void JTokenReader_ReadInto_m84585E70E03D85F14D1A2CA866777DDD21177F2D (void);
  3056. // 0x00000652 System.Boolean Newtonsoft.Json.Linq.JTokenReader::SetEnd(Newtonsoft.Json.Linq.JContainer)
  3057. extern void JTokenReader_SetEnd_mDF29F0E1263AEFE081561557AB4A1CEC7B989538 (void);
  3058. // 0x00000653 System.Void Newtonsoft.Json.Linq.JTokenReader::SetToken(Newtonsoft.Json.Linq.JToken)
  3059. extern void JTokenReader_SetToken_mE8FA946667E5628E25613CA79295733B82B88EED (void);
  3060. // 0x00000654 System.String Newtonsoft.Json.Linq.JTokenReader::SafeToString(System.Object)
  3061. extern void JTokenReader_SafeToString_m25174BD36EEE455D7CFD5E6059F2544E344E87E4 (void);
  3062. // 0x00000655 System.Boolean Newtonsoft.Json.Linq.JTokenReader::Newtonsoft.Json.IJsonLineInfo.HasLineInfo()
  3063. extern void JTokenReader_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mD4AE46E111467A0A743BF072E0C318AF50E741BB (void);
  3064. // 0x00000656 System.Int32 Newtonsoft.Json.Linq.JTokenReader::Newtonsoft.Json.IJsonLineInfo.get_LineNumber()
  3065. extern void JTokenReader_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mEFF7D34C961B9E9D02906A433EE0387199F02B51 (void);
  3066. // 0x00000657 System.Int32 Newtonsoft.Json.Linq.JTokenReader::Newtonsoft.Json.IJsonLineInfo.get_LinePosition()
  3067. extern void JTokenReader_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mF6ECBB3E4DB2F6E4FF280C067BB67C3C7AC6014A (void);
  3068. // 0x00000658 System.String Newtonsoft.Json.Linq.JTokenReader::get_Path()
  3069. extern void JTokenReader_get_Path_m8DEF37297BEDD79297B46E3148197A1C36FB61B3 (void);
  3070. // 0x00000659 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JTokenWriter::get_Token()
  3071. extern void JTokenWriter_get_Token_m4339546A43E2B6ABE374211ED99558CA4863EC2B (void);
  3072. // 0x0000065A System.Void Newtonsoft.Json.Linq.JTokenWriter::.ctor()
  3073. extern void JTokenWriter__ctor_m3DBD4A5D531475B3267741A19B747604FE85770D (void);
  3074. // 0x0000065B System.Void Newtonsoft.Json.Linq.JTokenWriter::Close()
  3075. extern void JTokenWriter_Close_m0F0DDBCD1164196E02FB5A176AC0828619134C5F (void);
  3076. // 0x0000065C System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteStartObject()
  3077. extern void JTokenWriter_WriteStartObject_m3079C0AD6847D204F5CDFEE8F618EBB4F8FCE1FB (void);
  3078. // 0x0000065D System.Void Newtonsoft.Json.Linq.JTokenWriter::AddParent(Newtonsoft.Json.Linq.JContainer)
  3079. extern void JTokenWriter_AddParent_m8D51379E851C957F7AA3210A302C96CEAAAEF6CF (void);
  3080. // 0x0000065E System.Void Newtonsoft.Json.Linq.JTokenWriter::RemoveParent()
  3081. extern void JTokenWriter_RemoveParent_mBD0EB71E203C0749E649C881DF04EB91674C3233 (void);
  3082. // 0x0000065F System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteStartArray()
  3083. extern void JTokenWriter_WriteStartArray_mA0EA19B391935F6C34041EEA36028A09654A8E42 (void);
  3084. // 0x00000660 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteStartConstructor(System.String)
  3085. extern void JTokenWriter_WriteStartConstructor_m08BCD914D3C466255B81ED98252353F392F5CAE2 (void);
  3086. // 0x00000661 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteEnd(Newtonsoft.Json.JsonToken)
  3087. extern void JTokenWriter_WriteEnd_mC8D31C955168398F63C9DC8A8A17555E71D727AD (void);
  3088. // 0x00000662 System.Void Newtonsoft.Json.Linq.JTokenWriter::WritePropertyName(System.String)
  3089. extern void JTokenWriter_WritePropertyName_mB36B9CC19329BCD18F9DA7BD4E2136C84A4BE965 (void);
  3090. // 0x00000663 System.Void Newtonsoft.Json.Linq.JTokenWriter::AddValue(System.Object,Newtonsoft.Json.JsonToken)
  3091. extern void JTokenWriter_AddValue_m971936C741F9FD2347EF8383835C9A62F6E2EC9D (void);
  3092. // 0x00000664 System.Void Newtonsoft.Json.Linq.JTokenWriter::AddValue(Newtonsoft.Json.Linq.JValue,Newtonsoft.Json.JsonToken)
  3093. extern void JTokenWriter_AddValue_mEDE595D38B4FC137A4FE8B40845D1D53C826C865 (void);
  3094. // 0x00000665 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Object)
  3095. extern void JTokenWriter_WriteValue_mA603632FF6A05B21938D592DCBA01909363C2B39 (void);
  3096. // 0x00000666 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteNull()
  3097. extern void JTokenWriter_WriteNull_m556C4AF5879A101A7F81C831621EB3E195E193C3 (void);
  3098. // 0x00000667 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteUndefined()
  3099. extern void JTokenWriter_WriteUndefined_m6EB69DE962FDD9EE16FC609693A961F326D27AD7 (void);
  3100. // 0x00000668 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteRaw(System.String)
  3101. extern void JTokenWriter_WriteRaw_mDCC9DAA08DA0F39F412AB16690E271CFC92C235C (void);
  3102. // 0x00000669 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteComment(System.String)
  3103. extern void JTokenWriter_WriteComment_mB1DD3F92EAA174C7D49520E2CF490C15A8FC7038 (void);
  3104. // 0x0000066A System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.String)
  3105. extern void JTokenWriter_WriteValue_m5D80467F3FC2C5A3D66E3A12AD8E90303922F816 (void);
  3106. // 0x0000066B System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Int32)
  3107. extern void JTokenWriter_WriteValue_m7BD6E2565E649A0390E87611F05E3031810FDE5C (void);
  3108. // 0x0000066C System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.UInt32)
  3109. extern void JTokenWriter_WriteValue_m28948BA71BC661F6F6D9DD6EB6A9E32E6DEE089E (void);
  3110. // 0x0000066D System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Int64)
  3111. extern void JTokenWriter_WriteValue_mBA1646433C99714F23DE8B5723E98965E1592EBA (void);
  3112. // 0x0000066E System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.UInt64)
  3113. extern void JTokenWriter_WriteValue_m0BC100A64ACDD000814E1BF2CE0D34C8077A21F4 (void);
  3114. // 0x0000066F System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Single)
  3115. extern void JTokenWriter_WriteValue_mDB9523A1909DB5915E7B752EF184F75B249131AB (void);
  3116. // 0x00000670 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Double)
  3117. extern void JTokenWriter_WriteValue_m20E8AFF1FF865EBFB013D33698675B6EC2D9E3D3 (void);
  3118. // 0x00000671 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Boolean)
  3119. extern void JTokenWriter_WriteValue_mA20C4C4A488BF53E3257211E7A0E948F6B80EC65 (void);
  3120. // 0x00000672 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Int16)
  3121. extern void JTokenWriter_WriteValue_mB7FEC8DEF4D115807DAC8AAFEC1D61E675AA90D3 (void);
  3122. // 0x00000673 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.UInt16)
  3123. extern void JTokenWriter_WriteValue_m39629D3870736167B8768832D3671A624EAF4522 (void);
  3124. // 0x00000674 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Char)
  3125. extern void JTokenWriter_WriteValue_m3D66950E1570A261E7C81C687111F5796182B540 (void);
  3126. // 0x00000675 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Byte)
  3127. extern void JTokenWriter_WriteValue_m9C59CA5A105A082A7A40D9377766DAF31F16CFF0 (void);
  3128. // 0x00000676 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.SByte)
  3129. extern void JTokenWriter_WriteValue_m6A5983A4D2DD496616C3B05E1A5C3757F95DAFCA (void);
  3130. // 0x00000677 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Decimal)
  3131. extern void JTokenWriter_WriteValue_mC2474B8730CCC3B5ECDAAB9E2DC61D1F66628451 (void);
  3132. // 0x00000678 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.DateTime)
  3133. extern void JTokenWriter_WriteValue_m07A7E9074529551651D63021C2C1459488062A29 (void);
  3134. // 0x00000679 System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.DateTimeOffset)
  3135. extern void JTokenWriter_WriteValue_mEED75F6B643D9D2C91E4AF9B66A85F0958B65A1C (void);
  3136. // 0x0000067A System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Byte[])
  3137. extern void JTokenWriter_WriteValue_m2409F919FFF23EFE2D583A9D7370E9C4D0E9DBF4 (void);
  3138. // 0x0000067B System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.TimeSpan)
  3139. extern void JTokenWriter_WriteValue_m058BEEC0C0B462A518F27CA12723853C00201C0F (void);
  3140. // 0x0000067C System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Guid)
  3141. extern void JTokenWriter_WriteValue_m2600983EEF3050B91FE22C62B9234CA51F4BB447 (void);
  3142. // 0x0000067D System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteValue(System.Uri)
  3143. extern void JTokenWriter_WriteValue_m598A544D5A2D0D13EF039AF30F5E0C6D73E981E1 (void);
  3144. // 0x0000067E System.Void Newtonsoft.Json.Linq.JTokenWriter::WriteToken(Newtonsoft.Json.JsonReader,System.Boolean,System.Boolean,System.Boolean)
  3145. extern void JTokenWriter_WriteToken_mB432246F6938A1E91B8D80A0E2FCA7D4B3A2E092 (void);
  3146. // 0x0000067F Newtonsoft.Json.Linq.JContainer Newtonsoft.Json.Linq.JToken::get_Parent()
  3147. extern void JToken_get_Parent_mA56162932F57CA4728F95E7C7A5FC53BA6E21047 (void);
  3148. // 0x00000680 System.Void Newtonsoft.Json.Linq.JToken::set_Parent(Newtonsoft.Json.Linq.JContainer)
  3149. extern void JToken_set_Parent_m94681C41A4BF5A88AFB6202CF0EB85E9DB37C6C0 (void);
  3150. // 0x00000681 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::get_Root()
  3151. extern void JToken_get_Root_mE526DA2686E0BD42C4A3FA7F2ACC9423A08C1D14 (void);
  3152. // 0x00000682 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::CloneToken()
  3153. // 0x00000683 System.Boolean Newtonsoft.Json.Linq.JToken::DeepEquals(Newtonsoft.Json.Linq.JToken)
  3154. // 0x00000684 Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JToken::get_Type()
  3155. // 0x00000685 System.Boolean Newtonsoft.Json.Linq.JToken::get_HasValues()
  3156. // 0x00000686 System.Boolean Newtonsoft.Json.Linq.JToken::DeepEquals(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JToken)
  3157. extern void JToken_DeepEquals_mFE3F9E2138F788E6C01E86CDE5AB248039D9BF9C (void);
  3158. // 0x00000687 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::get_Next()
  3159. extern void JToken_get_Next_m44ABBA6AFA7E2ABEEBAF36D1DFC86B4233F92609 (void);
  3160. // 0x00000688 System.Void Newtonsoft.Json.Linq.JToken::set_Next(Newtonsoft.Json.Linq.JToken)
  3161. extern void JToken_set_Next_m96AA1C89A407E117CFBCBF74273585ADFD4DA3C1 (void);
  3162. // 0x00000689 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::get_Previous()
  3163. extern void JToken_get_Previous_m53C5EB9DF6DAF5BE72D7AB4DBC63DA5D762D5525 (void);
  3164. // 0x0000068A System.Void Newtonsoft.Json.Linq.JToken::set_Previous(Newtonsoft.Json.Linq.JToken)
  3165. extern void JToken_set_Previous_m0898C6221FA388B7F31ADBAD05E14671F5D65108 (void);
  3166. // 0x0000068B System.String Newtonsoft.Json.Linq.JToken::get_Path()
  3167. extern void JToken_get_Path_m5F6A7644954DECFC78755CD1C1D8B5CE88B85A73 (void);
  3168. // 0x0000068C System.Void Newtonsoft.Json.Linq.JToken::.ctor()
  3169. extern void JToken__ctor_m9A33E190E3C706DAAE8855FE59F7FD6138730A23 (void);
  3170. // 0x0000068D Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::get_Item(System.Object)
  3171. extern void JToken_get_Item_m4508A72C96C1C66F8C7EC215C0C723F89C46632A (void);
  3172. // 0x0000068E System.Void Newtonsoft.Json.Linq.JToken::set_Item(System.Object,Newtonsoft.Json.Linq.JToken)
  3173. extern void JToken_set_Item_mD3ECA751B669009F027A5B4F3F91B05B2189CD4C (void);
  3174. // 0x0000068F T Newtonsoft.Json.Linq.JToken::Value(System.Object)
  3175. // 0x00000690 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::get_First()
  3176. extern void JToken_get_First_m35FC03384D6D3BB03FF927106B43EAA3849D3A9A (void);
  3177. // 0x00000691 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::get_Last()
  3178. extern void JToken_get_Last_m5ED6C283D197095C527BC16E830508E150ECF87C (void);
  3179. // 0x00000692 Newtonsoft.Json.Linq.JEnumerable`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JToken::Children()
  3180. extern void JToken_Children_m4CA11C47EF29671EBF3985DCE33F7B4B25BC63B5 (void);
  3181. // 0x00000693 System.Void Newtonsoft.Json.Linq.JToken::Remove()
  3182. extern void JToken_Remove_mB38D4289F80AB38649500BA72BD8200D5E5714BC (void);
  3183. // 0x00000694 System.Void Newtonsoft.Json.Linq.JToken::Replace(Newtonsoft.Json.Linq.JToken)
  3184. extern void JToken_Replace_m83831E295B24F26ECA37DF56400004390AD5DFF8 (void);
  3185. // 0x00000695 System.Void Newtonsoft.Json.Linq.JToken::WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])
  3186. // 0x00000696 System.String Newtonsoft.Json.Linq.JToken::ToString()
  3187. extern void JToken_ToString_m731E8FCC3BF4A1B3D705D478A8B621BE3EE20468 (void);
  3188. // 0x00000697 System.String Newtonsoft.Json.Linq.JToken::ToString(Newtonsoft.Json.Formatting,Newtonsoft.Json.JsonConverter[])
  3189. extern void JToken_ToString_m9E53ED75AB4A3EF07D4C3EB0D7D44383D89F58BA (void);
  3190. // 0x00000698 Newtonsoft.Json.Linq.JValue Newtonsoft.Json.Linq.JToken::EnsureValue(Newtonsoft.Json.Linq.JToken)
  3191. extern void JToken_EnsureValue_mD9BF1931F2D2620F5766223BD28FBFCB494FD7F3 (void);
  3192. // 0x00000699 System.String Newtonsoft.Json.Linq.JToken::GetType(Newtonsoft.Json.Linq.JToken)
  3193. extern void JToken_GetType_m06519AC13F6EA239FC499AE26A1695A2B9B5A298 (void);
  3194. // 0x0000069A System.Boolean Newtonsoft.Json.Linq.JToken::ValidateToken(Newtonsoft.Json.Linq.JToken,Newtonsoft.Json.Linq.JTokenType[],System.Boolean)
  3195. extern void JToken_ValidateToken_m7320423DEF172C307C11350320BBAEEE1ECD60F9 (void);
  3196. // 0x0000069B System.Boolean Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3197. extern void JToken_op_Explicit_mB151E43F59905323634A640F2324C2C775B34661 (void);
  3198. // 0x0000069C System.DateTimeOffset Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3199. extern void JToken_op_Explicit_mDD6DCA9D08C1C324D5A0C27568447CFCE8EE4C29 (void);
  3200. // 0x0000069D System.Nullable`1<System.Boolean> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3201. extern void JToken_op_Explicit_m2F30DFABCECACB7AB712BE62217C201C61DD572C (void);
  3202. // 0x0000069E System.Int64 Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3203. extern void JToken_op_Explicit_m4E7617246CBC1C0E00D1F248C1C02ED1B25D6DEA (void);
  3204. // 0x0000069F System.Nullable`1<System.DateTime> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3205. extern void JToken_op_Explicit_m1782351556514AF927F616EA733E969AA5EC9A8C (void);
  3206. // 0x000006A0 System.Nullable`1<System.DateTimeOffset> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3207. extern void JToken_op_Explicit_m6C40F0E59766F9219D60212D2D330602820780F8 (void);
  3208. // 0x000006A1 System.Nullable`1<System.Decimal> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3209. extern void JToken_op_Explicit_m91E7B6CEB4DB81BE2CE97D42C5D9ED0235A1BF31 (void);
  3210. // 0x000006A2 System.Nullable`1<System.Double> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3211. extern void JToken_op_Explicit_m916EDCDE86ABE1AC4F6B458BF40362582941ED90 (void);
  3212. // 0x000006A3 System.Nullable`1<System.Char> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3213. extern void JToken_op_Explicit_mAA1F8A93F7F7EB1C4233246406815B04225CE918 (void);
  3214. // 0x000006A4 System.Int32 Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3215. extern void JToken_op_Explicit_m8375005A9901DF69721432BA14A6244191A70BF9 (void);
  3216. // 0x000006A5 System.Int16 Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3217. extern void JToken_op_Explicit_m5204A020C1CA93FA7A823997187A4CC8EAB6FFDF (void);
  3218. // 0x000006A6 System.UInt16 Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3219. extern void JToken_op_Explicit_m87EA6319EA3E3E1B98C1ED7424F43B238E4F987E (void);
  3220. // 0x000006A7 System.Char Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3221. extern void JToken_op_Explicit_m0590FD1039A9915EA8B693238BC461158C42529E (void);
  3222. // 0x000006A8 System.Byte Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3223. extern void JToken_op_Explicit_m5E49DBB5487D233239300D290AA67F3312547899 (void);
  3224. // 0x000006A9 System.SByte Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3225. extern void JToken_op_Explicit_m3C2674D8BCCF2148736AAF2F4CE8D80C81986941 (void);
  3226. // 0x000006AA System.Nullable`1<System.Int32> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3227. extern void JToken_op_Explicit_m4FEF9B3DBAC7F99F365CC6D9612F6B467ADA4BCF (void);
  3228. // 0x000006AB System.Nullable`1<System.Int16> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3229. extern void JToken_op_Explicit_m0A23DF8E211CBF20F2D107B9DA8E2B6DD77DD081 (void);
  3230. // 0x000006AC System.Nullable`1<System.UInt16> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3231. extern void JToken_op_Explicit_m57A0E69DB74E588DF9A080B627E951B2185DE59E (void);
  3232. // 0x000006AD System.Nullable`1<System.Byte> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3233. extern void JToken_op_Explicit_mC9E25F54EFBEBCCCC9C90E7706E8729BD88FE019 (void);
  3234. // 0x000006AE System.Nullable`1<System.SByte> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3235. extern void JToken_op_Explicit_m14D75EE97D98C9C5691B089A98248F9419FC822F (void);
  3236. // 0x000006AF System.DateTime Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3237. extern void JToken_op_Explicit_mC2EA977CBD292133B27E38447FED7B79347B1D7D (void);
  3238. // 0x000006B0 System.Nullable`1<System.Int64> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3239. extern void JToken_op_Explicit_mCC010FBC79F64CEC66EF02127D29F6B766DCAB69 (void);
  3240. // 0x000006B1 System.Nullable`1<System.Single> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3241. extern void JToken_op_Explicit_m54ACA327F16469B6847601927A1EDDDA20FF940F (void);
  3242. // 0x000006B2 System.Decimal Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3243. extern void JToken_op_Explicit_m01D0834AA83423E14AA675F1379AACABA3FEFD10 (void);
  3244. // 0x000006B3 System.Nullable`1<System.UInt32> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3245. extern void JToken_op_Explicit_mF8B3B58C0BE99BA4A281EF0DDFE378E8102D91F5 (void);
  3246. // 0x000006B4 System.Nullable`1<System.UInt64> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3247. extern void JToken_op_Explicit_mF1F831B5190980344F6053A81BFC4284551861C0 (void);
  3248. // 0x000006B5 System.Double Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3249. extern void JToken_op_Explicit_mF0B4A4DE59F877B04AB2AAFAB95A36B463263626 (void);
  3250. // 0x000006B6 System.Single Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3251. extern void JToken_op_Explicit_mD4DD55C6987A1966CB844AB222140C0BA6322C46 (void);
  3252. // 0x000006B7 System.String Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3253. extern void JToken_op_Explicit_m18EEEE9F461F450D7F7E5A49C642AA40D9CFF3C9 (void);
  3254. // 0x000006B8 System.UInt32 Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3255. extern void JToken_op_Explicit_m985B22F3DA346F51A6F582E21AB83ACC25D4A394 (void);
  3256. // 0x000006B9 System.UInt64 Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3257. extern void JToken_op_Explicit_m06B72D4DB16DC1EE4D0D5BE85D6E140219E18976 (void);
  3258. // 0x000006BA System.Guid Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3259. extern void JToken_op_Explicit_m8CBCBF71355B4B848B42C6F07E664D4F01F5A427 (void);
  3260. // 0x000006BB System.Nullable`1<System.Guid> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3261. extern void JToken_op_Explicit_m2E5E5BAFAF2F3FCF4A65BB9D822F53332B85CB19 (void);
  3262. // 0x000006BC System.TimeSpan Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3263. extern void JToken_op_Explicit_m54FA346024FF931A676EFD4F1987C90C35CB62B0 (void);
  3264. // 0x000006BD System.Nullable`1<System.TimeSpan> Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3265. extern void JToken_op_Explicit_mFA8ADA35CB594687E9F0113ED09EC6D74F17E236 (void);
  3266. // 0x000006BE System.Uri Newtonsoft.Json.Linq.JToken::op_Explicit(Newtonsoft.Json.Linq.JToken)
  3267. extern void JToken_op_Explicit_m524E51255C189ACEF140E6512CD59A3BB6F6F05B (void);
  3268. // 0x000006BF System.Collections.IEnumerator Newtonsoft.Json.Linq.JToken::System.Collections.IEnumerable.GetEnumerator()
  3269. extern void JToken_System_Collections_IEnumerable_GetEnumerator_m95599D039968E3B90C1997E6EE537C820D81BD58 (void);
  3270. // 0x000006C0 System.Collections.Generic.IEnumerator`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JToken::System.Collections.Generic.IEnumerable<Newtonsoft.Json.Linq.JToken>.GetEnumerator()
  3271. extern void JToken_System_Collections_Generic_IEnumerableU3CNewtonsoft_Json_Linq_JTokenU3E_GetEnumerator_m2F61612844C6A3DB9929667F95984D857BD8825F (void);
  3272. // 0x000006C1 System.Int32 Newtonsoft.Json.Linq.JToken::GetDeepHashCode()
  3273. // 0x000006C2 Newtonsoft.Json.JsonReader Newtonsoft.Json.Linq.JToken::CreateReader()
  3274. extern void JToken_CreateReader_m534B2D3BA2D5414584D4D85247D915D3304D71A9 (void);
  3275. // 0x000006C3 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::FromObjectInternal(System.Object,Newtonsoft.Json.JsonSerializer)
  3276. extern void JToken_FromObjectInternal_m776ECF83B95502D00BAB95CD86112ACBA43B4009 (void);
  3277. // 0x000006C4 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::FromObject(System.Object)
  3278. extern void JToken_FromObject_m6FF17C857F570212A7A76D5621D7372210960DAF (void);
  3279. // 0x000006C5 T Newtonsoft.Json.Linq.JToken::ToObject()
  3280. // 0x000006C6 System.Object Newtonsoft.Json.Linq.JToken::ToObject(System.Type)
  3281. extern void JToken_ToObject_mA45387A7E152199DAD85F9E8D6B8C1110C3BF74D (void);
  3282. // 0x000006C7 System.Object Newtonsoft.Json.Linq.JToken::ToObject(System.Type,Newtonsoft.Json.JsonSerializer)
  3283. extern void JToken_ToObject_m6A061F56639FF4FFDAACBE4EA1CE51F881369E11 (void);
  3284. // 0x000006C8 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::ReadFrom(Newtonsoft.Json.JsonReader)
  3285. extern void JToken_ReadFrom_m2CD6041109ABCAF48F0182DC70F300DBF48CC955 (void);
  3286. // 0x000006C9 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::ReadFrom(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  3287. extern void JToken_ReadFrom_mBA166B8C1113108F91C919BA658546AD7CF996A4 (void);
  3288. // 0x000006CA Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::Parse(System.String)
  3289. extern void JToken_Parse_m57448B59A8948B627F3F743E66AC26966781EF30 (void);
  3290. // 0x000006CB Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::Parse(System.String,Newtonsoft.Json.Linq.JsonLoadSettings)
  3291. extern void JToken_Parse_m7491AE9C92864A662F95BB39B009173EA7C6238C (void);
  3292. // 0x000006CC Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  3293. extern void JToken_Load_m3EB2168E3494B8E72CE77D82129041536F0D127D (void);
  3294. // 0x000006CD System.Void Newtonsoft.Json.Linq.JToken::SetLineInfo(Newtonsoft.Json.IJsonLineInfo,Newtonsoft.Json.Linq.JsonLoadSettings)
  3295. extern void JToken_SetLineInfo_m21AB71057545EBC4F1EB71B59F15CF7D20DA0D13 (void);
  3296. // 0x000006CE System.Void Newtonsoft.Json.Linq.JToken::SetLineInfo(System.Int32,System.Int32)
  3297. extern void JToken_SetLineInfo_mFCFC42EE32F895E71BB264CD716E4E250C2D3C7B (void);
  3298. // 0x000006CF System.Boolean Newtonsoft.Json.Linq.JToken::Newtonsoft.Json.IJsonLineInfo.HasLineInfo()
  3299. extern void JToken_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_m5523954BC6B3E4489527D34FB10D8D9E870E24A1 (void);
  3300. // 0x000006D0 System.Int32 Newtonsoft.Json.Linq.JToken::Newtonsoft.Json.IJsonLineInfo.get_LineNumber()
  3301. extern void JToken_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mB5CCD2275608337DC599DDB2C3DB9F8F6D99C6D3 (void);
  3302. // 0x000006D1 System.Int32 Newtonsoft.Json.Linq.JToken::Newtonsoft.Json.IJsonLineInfo.get_LinePosition()
  3303. extern void JToken_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mE5A62CD70197F1CE1BC66BFC5BC5EFD4D6C63ECB (void);
  3304. // 0x000006D2 System.Object Newtonsoft.Json.Linq.JToken::System.ICloneable.Clone()
  3305. extern void JToken_System_ICloneable_Clone_m77B689765C32B02492561F1F46CF45B73883A206 (void);
  3306. // 0x000006D3 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JToken::DeepClone()
  3307. extern void JToken_DeepClone_m697FB5CDF28554CDCA8B1292DBC2925C65842FB4 (void);
  3308. // 0x000006D4 System.Void Newtonsoft.Json.Linq.JToken::AddAnnotation(System.Object)
  3309. extern void JToken_AddAnnotation_mA05083C7F9CEE5DC9573F8A9689468C78C13C098 (void);
  3310. // 0x000006D5 T Newtonsoft.Json.Linq.JToken::Annotation()
  3311. // 0x000006D6 System.Void Newtonsoft.Json.Linq.JToken::.cctor()
  3312. extern void JToken__cctor_m53768410D48E08723E04C3E21E899C5FC7AF0BA9 (void);
  3313. // 0x000006D7 System.Void Newtonsoft.Json.Linq.JToken/LineInfoAnnotation::.ctor(System.Int32,System.Int32)
  3314. extern void LineInfoAnnotation__ctor_m45F8C31152F816EEC11212E29FCD281E0D038C34 (void);
  3315. // 0x000006D8 System.Collections.Generic.IList`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JProperty::get_ChildrenTokens()
  3316. extern void JProperty_get_ChildrenTokens_m1D9B59062020CAB7E337885811799E77FDD9ED7F (void);
  3317. // 0x000006D9 System.String Newtonsoft.Json.Linq.JProperty::get_Name()
  3318. extern void JProperty_get_Name_m4B909198F27EFED895AF6E2EFB90F2A22F86E411 (void);
  3319. // 0x000006DA Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JProperty::get_Value()
  3320. extern void JProperty_get_Value_m6E4A8DB7DF48E5C9AEB1DF22A36FC70F5B63DFB7 (void);
  3321. // 0x000006DB System.Void Newtonsoft.Json.Linq.JProperty::set_Value(Newtonsoft.Json.Linq.JToken)
  3322. extern void JProperty_set_Value_mA3BDB16555227152B2979120D5EDCEDF99112B2E (void);
  3323. // 0x000006DC System.Void Newtonsoft.Json.Linq.JProperty::.ctor(Newtonsoft.Json.Linq.JProperty)
  3324. extern void JProperty__ctor_m2D959A0252CF6CFCC7540906A5A55E37A2583AEF (void);
  3325. // 0x000006DD Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JProperty::GetItem(System.Int32)
  3326. extern void JProperty_GetItem_m8F8634BFC8A41DDD0FC2B2BFECC65FDC83BA644A (void);
  3327. // 0x000006DE System.Void Newtonsoft.Json.Linq.JProperty::SetItem(System.Int32,Newtonsoft.Json.Linq.JToken)
  3328. extern void JProperty_SetItem_m147344233F5A77DCA8D2CBBB155FEF17FEC6C844 (void);
  3329. // 0x000006DF System.Boolean Newtonsoft.Json.Linq.JProperty::RemoveItem(Newtonsoft.Json.Linq.JToken)
  3330. extern void JProperty_RemoveItem_m3A21F2B32184EBAFB03CCE4B7B4B2CE4858CBF0C (void);
  3331. // 0x000006E0 System.Void Newtonsoft.Json.Linq.JProperty::RemoveItemAt(System.Int32)
  3332. extern void JProperty_RemoveItemAt_m732393F0677A5DF19C8892064A49E68FD14E9124 (void);
  3333. // 0x000006E1 System.Int32 Newtonsoft.Json.Linq.JProperty::IndexOfItem(Newtonsoft.Json.Linq.JToken)
  3334. extern void JProperty_IndexOfItem_m3271249FE819295CA5F2C231D08846B00741D81E (void);
  3335. // 0x000006E2 System.Void Newtonsoft.Json.Linq.JProperty::InsertItem(System.Int32,Newtonsoft.Json.Linq.JToken,System.Boolean)
  3336. extern void JProperty_InsertItem_m8D86173EA0AF0E7D9A6B1932D7BAE92A8733D3D5 (void);
  3337. // 0x000006E3 System.Boolean Newtonsoft.Json.Linq.JProperty::ContainsItem(Newtonsoft.Json.Linq.JToken)
  3338. extern void JProperty_ContainsItem_mE35D596EF1E2B7CECE0D38D4BA0933FDAA51E079 (void);
  3339. // 0x000006E4 System.Void Newtonsoft.Json.Linq.JProperty::ClearItems()
  3340. extern void JProperty_ClearItems_mADE218CD57CD301EE3EAE6DB0DAA9474ADEDFD66 (void);
  3341. // 0x000006E5 System.Boolean Newtonsoft.Json.Linq.JProperty::DeepEquals(Newtonsoft.Json.Linq.JToken)
  3342. extern void JProperty_DeepEquals_m1C832DE5E2BDF2B87F6888051FCD792A100BF9F9 (void);
  3343. // 0x000006E6 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JProperty::CloneToken()
  3344. extern void JProperty_CloneToken_m03231880F3BCBD496C995F3C65228CA5EE30C26D (void);
  3345. // 0x000006E7 Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JProperty::get_Type()
  3346. extern void JProperty_get_Type_m353B8F70F0C7FFC5BBC051A82EA8ECDA49EFB308 (void);
  3347. // 0x000006E8 System.Void Newtonsoft.Json.Linq.JProperty::.ctor(System.String)
  3348. extern void JProperty__ctor_m12ECD4CE36C9400648F143806D545D70E2B5634C (void);
  3349. // 0x000006E9 System.Void Newtonsoft.Json.Linq.JProperty::.ctor(System.String,System.Object)
  3350. extern void JProperty__ctor_m4F3F0682B73D4C46950287AD595BEBE274F532A7 (void);
  3351. // 0x000006EA System.Void Newtonsoft.Json.Linq.JProperty::WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])
  3352. extern void JProperty_WriteTo_m754601C5D3FCC1D0D04D25D89608844EC046416E (void);
  3353. // 0x000006EB System.Int32 Newtonsoft.Json.Linq.JProperty::GetDeepHashCode()
  3354. extern void JProperty_GetDeepHashCode_m0CC0747152DD305AAEF30886B6556E320EBEA49F (void);
  3355. // 0x000006EC Newtonsoft.Json.Linq.JProperty Newtonsoft.Json.Linq.JProperty::Load(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Linq.JsonLoadSettings)
  3356. extern void JProperty_Load_m48205DDF35A47B789BA485710F42791682260825 (void);
  3357. // 0x000006ED System.Collections.Generic.IEnumerator`1<Newtonsoft.Json.Linq.JToken> Newtonsoft.Json.Linq.JProperty/JPropertyList::GetEnumerator()
  3358. extern void JPropertyList_GetEnumerator_m6298870EC6AF369B8C315832F172AF93EC2A6D8E (void);
  3359. // 0x000006EE System.Collections.IEnumerator Newtonsoft.Json.Linq.JProperty/JPropertyList::System.Collections.IEnumerable.GetEnumerator()
  3360. extern void JPropertyList_System_Collections_IEnumerable_GetEnumerator_mA00003A29FB9254EC0967204B5014E29F38C3AB3 (void);
  3361. // 0x000006EF System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::Add(Newtonsoft.Json.Linq.JToken)
  3362. extern void JPropertyList_Add_m837EF41C7D9BA5556766A5C22B5477454B8FAE81 (void);
  3363. // 0x000006F0 System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::Clear()
  3364. extern void JPropertyList_Clear_m03650052A7E0F5EC6547A167A7CC8761BD011A11 (void);
  3365. // 0x000006F1 System.Boolean Newtonsoft.Json.Linq.JProperty/JPropertyList::Contains(Newtonsoft.Json.Linq.JToken)
  3366. extern void JPropertyList_Contains_mD81C0C3A194305EAF6B738DC9AD99272217C6C99 (void);
  3367. // 0x000006F2 System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::CopyTo(Newtonsoft.Json.Linq.JToken[],System.Int32)
  3368. extern void JPropertyList_CopyTo_mCC957484BA57042BE9D900DD363A51BAD54A2D21 (void);
  3369. // 0x000006F3 System.Boolean Newtonsoft.Json.Linq.JProperty/JPropertyList::Remove(Newtonsoft.Json.Linq.JToken)
  3370. extern void JPropertyList_Remove_m950B0354B86312B65065ECD49D32119373F7B717 (void);
  3371. // 0x000006F4 System.Int32 Newtonsoft.Json.Linq.JProperty/JPropertyList::get_Count()
  3372. extern void JPropertyList_get_Count_mE8FCC0B8372587C49BD357673C610F0D5297CC29 (void);
  3373. // 0x000006F5 System.Boolean Newtonsoft.Json.Linq.JProperty/JPropertyList::get_IsReadOnly()
  3374. extern void JPropertyList_get_IsReadOnly_m89ABAC2E57A8D610897EC9963A1F66D7614C5080 (void);
  3375. // 0x000006F6 System.Int32 Newtonsoft.Json.Linq.JProperty/JPropertyList::IndexOf(Newtonsoft.Json.Linq.JToken)
  3376. extern void JPropertyList_IndexOf_m750A7A87FFB5F418EAAAE68B4AAC315861268917 (void);
  3377. // 0x000006F7 System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::Insert(System.Int32,Newtonsoft.Json.Linq.JToken)
  3378. extern void JPropertyList_Insert_m0FD9E5D4253A0F2669AF475FA7E3B669FF02EE61 (void);
  3379. // 0x000006F8 System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::RemoveAt(System.Int32)
  3380. extern void JPropertyList_RemoveAt_mF73C39A1FEC0869A1DF21D0A9CDCEADF55B47EF1 (void);
  3381. // 0x000006F9 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JProperty/JPropertyList::get_Item(System.Int32)
  3382. extern void JPropertyList_get_Item_m4DC467682227207DE9576A0A9FFC2A06BA039DAD (void);
  3383. // 0x000006FA System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::set_Item(System.Int32,Newtonsoft.Json.Linq.JToken)
  3384. extern void JPropertyList_set_Item_mF83B138BD7E00567EF50A00AEA712F309FC458C8 (void);
  3385. // 0x000006FB System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList::.ctor()
  3386. extern void JPropertyList__ctor_m63BD4D2D4FFEAAD459547F36CF2065452B042324 (void);
  3387. // 0x000006FC System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::.ctor(System.Int32)
  3388. extern void U3CGetEnumeratorU3Ed__1__ctor_mC49E159103879D4883943B820EDF7233CFEAD55A (void);
  3389. // 0x000006FD System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::System.IDisposable.Dispose()
  3390. extern void U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m17C4D1B2A19AAD8D5788B5E76415F986431B8498 (void);
  3391. // 0x000006FE System.Boolean Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::MoveNext()
  3392. extern void U3CGetEnumeratorU3Ed__1_MoveNext_m9C859FCA23B8E6DF1A7FBA98CD929751168FC38D (void);
  3393. // 0x000006FF Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::System.Collections.Generic.IEnumerator<Newtonsoft.Json.Linq.JToken>.get_Current()
  3394. extern void U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CNewtonsoft_Json_Linq_JTokenU3E_get_Current_m07AC2CA7D788EA56432549B7C02C0778568C61B1 (void);
  3395. // 0x00000700 System.Void Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::System.Collections.IEnumerator.Reset()
  3396. extern void U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mADE13DCBAB70A428878E701CA49C487991D70F72 (void);
  3397. // 0x00000701 System.Object Newtonsoft.Json.Linq.JProperty/JPropertyList/<GetEnumerator>d__1::System.Collections.IEnumerator.get_Current()
  3398. extern void U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m4EB98DC969BC1C587317776FAAD9DAACFDDAE32E (void);
  3399. // 0x00000702 System.Void Newtonsoft.Json.Linq.JValue::.ctor(System.Object,Newtonsoft.Json.Linq.JTokenType)
  3400. extern void JValue__ctor_m979A5EE1A72F45F5CAF6D76EEDD0990D69E00796 (void);
  3401. // 0x00000703 System.Void Newtonsoft.Json.Linq.JValue::.ctor(Newtonsoft.Json.Linq.JValue)
  3402. extern void JValue__ctor_m522D4B6EB93F27086CB92384657550E609A3167B (void);
  3403. // 0x00000704 System.Void Newtonsoft.Json.Linq.JValue::.ctor(System.Object)
  3404. extern void JValue__ctor_mC889FB1AA1B4DC300F7033A0043E065CF50AC94B (void);
  3405. // 0x00000705 System.Boolean Newtonsoft.Json.Linq.JValue::DeepEquals(Newtonsoft.Json.Linq.JToken)
  3406. extern void JValue_DeepEquals_m41CA0C8B5683A179448CAD010C2014CC047B878B (void);
  3407. // 0x00000706 System.Boolean Newtonsoft.Json.Linq.JValue::get_HasValues()
  3408. extern void JValue_get_HasValues_m6F254ED7F002D5176A396420F6E9B590B52CEF85 (void);
  3409. // 0x00000707 System.Int32 Newtonsoft.Json.Linq.JValue::Compare(Newtonsoft.Json.Linq.JTokenType,System.Object,System.Object)
  3410. extern void JValue_Compare_m01C87856578C73242F1A8083A4FC9D70E78761E2 (void);
  3411. // 0x00000708 System.Int32 Newtonsoft.Json.Linq.JValue::CompareFloat(System.Object,System.Object)
  3412. extern void JValue_CompareFloat_m3F6454CE20D33466B6EDB828011907BD88200C1B (void);
  3413. // 0x00000709 Newtonsoft.Json.Linq.JToken Newtonsoft.Json.Linq.JValue::CloneToken()
  3414. extern void JValue_CloneToken_mA6AE62DEE2E4496CDDFB417387B582705FF186E4 (void);
  3415. // 0x0000070A Newtonsoft.Json.Linq.JValue Newtonsoft.Json.Linq.JValue::CreateComment(System.String)
  3416. extern void JValue_CreateComment_mDAFAC915EC6456CF880ABF97E3E8D80679F82817 (void);
  3417. // 0x0000070B Newtonsoft.Json.Linq.JValue Newtonsoft.Json.Linq.JValue::CreateNull()
  3418. extern void JValue_CreateNull_m2230973FB1BB08630C9D248E8B6BFF8615F5B7DF (void);
  3419. // 0x0000070C Newtonsoft.Json.Linq.JValue Newtonsoft.Json.Linq.JValue::CreateUndefined()
  3420. extern void JValue_CreateUndefined_m5699186F23FE28BC8F92911F26A73D16396BD3FB (void);
  3421. // 0x0000070D Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JValue::GetValueType(System.Nullable`1<Newtonsoft.Json.Linq.JTokenType>,System.Object)
  3422. extern void JValue_GetValueType_mD4C0C87715186C2CAE9563E1D1FFA1E816F9A1DF (void);
  3423. // 0x0000070E Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JValue::GetStringValueType(System.Nullable`1<Newtonsoft.Json.Linq.JTokenType>)
  3424. extern void JValue_GetStringValueType_m0E0A9AFD650634041917D5917810EB9AD1A6D6D7 (void);
  3425. // 0x0000070F Newtonsoft.Json.Linq.JTokenType Newtonsoft.Json.Linq.JValue::get_Type()
  3426. extern void JValue_get_Type_m1BC54272E1DEEBB23EC875D4F8B07B64EF926051 (void);
  3427. // 0x00000710 System.Object Newtonsoft.Json.Linq.JValue::get_Value()
  3428. extern void JValue_get_Value_m886BB4337BAD45C2E74A27AC3D45A5D3912DB92E (void);
  3429. // 0x00000711 System.Void Newtonsoft.Json.Linq.JValue::WriteTo(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.JsonConverter[])
  3430. extern void JValue_WriteTo_m8B1DEEB90C4CF72AB25E3E9F90347F34A94C2A0A (void);
  3431. // 0x00000712 System.Int32 Newtonsoft.Json.Linq.JValue::GetDeepHashCode()
  3432. extern void JValue_GetDeepHashCode_m16D6824D213F2407B93880EF0F216FEFDC54DA98 (void);
  3433. // 0x00000713 System.Boolean Newtonsoft.Json.Linq.JValue::ValuesEquals(Newtonsoft.Json.Linq.JValue,Newtonsoft.Json.Linq.JValue)
  3434. extern void JValue_ValuesEquals_m5C86A23594A50215B2D8FFDAE8EE422615976B18 (void);
  3435. // 0x00000714 System.Boolean Newtonsoft.Json.Linq.JValue::Equals(Newtonsoft.Json.Linq.JValue)
  3436. extern void JValue_Equals_mD2988D82A7D6D842082198F6F55006923080F811 (void);
  3437. // 0x00000715 System.Boolean Newtonsoft.Json.Linq.JValue::Equals(System.Object)
  3438. extern void JValue_Equals_mC937C670D8C1C5487124A902610BE435E2D6F270 (void);
  3439. // 0x00000716 System.Int32 Newtonsoft.Json.Linq.JValue::GetHashCode()
  3440. extern void JValue_GetHashCode_m41B4033241EAC5E45950EC39692370035ECEA59D (void);
  3441. // 0x00000717 System.String Newtonsoft.Json.Linq.JValue::ToString()
  3442. extern void JValue_ToString_mDF25D0D9D445164C38661DD2377661884D0D412C (void);
  3443. // 0x00000718 System.String Newtonsoft.Json.Linq.JValue::ToString(System.IFormatProvider)
  3444. extern void JValue_ToString_m6D3A36E8CABE09921695EB6902BA424AF4F60903 (void);
  3445. // 0x00000719 System.String Newtonsoft.Json.Linq.JValue::ToString(System.String,System.IFormatProvider)
  3446. extern void JValue_ToString_mAD6013DAADD1BFF3D2C9DA3F2CE3BC6183960318 (void);
  3447. // 0x0000071A System.Int32 Newtonsoft.Json.Linq.JValue::System.IComparable.CompareTo(System.Object)
  3448. extern void JValue_System_IComparable_CompareTo_mE3FBD4020398C2945F761704E6A47CD5A8BFCD87 (void);
  3449. // 0x0000071B System.TypeCode Newtonsoft.Json.Linq.JValue::System.IConvertible.GetTypeCode()
  3450. extern void JValue_System_IConvertible_GetTypeCode_mFB78B5C9E772F5ADA3DDB3654452DC83EA853847 (void);
  3451. // 0x0000071C System.Boolean Newtonsoft.Json.Linq.JValue::System.IConvertible.ToBoolean(System.IFormatProvider)
  3452. extern void JValue_System_IConvertible_ToBoolean_mCA575F28663AE8FDCC11981604812A8D140B563F (void);
  3453. // 0x0000071D System.Char Newtonsoft.Json.Linq.JValue::System.IConvertible.ToChar(System.IFormatProvider)
  3454. extern void JValue_System_IConvertible_ToChar_m6D8C8573B926D4877A78B01950A9F79D8F7B1B7D (void);
  3455. // 0x0000071E System.SByte Newtonsoft.Json.Linq.JValue::System.IConvertible.ToSByte(System.IFormatProvider)
  3456. extern void JValue_System_IConvertible_ToSByte_m196E8B186CA7966F53154370F6754E749699D564 (void);
  3457. // 0x0000071F System.Byte Newtonsoft.Json.Linq.JValue::System.IConvertible.ToByte(System.IFormatProvider)
  3458. extern void JValue_System_IConvertible_ToByte_m63386F8EF1561A410CB5248FAFE760DDD6A37177 (void);
  3459. // 0x00000720 System.Int16 Newtonsoft.Json.Linq.JValue::System.IConvertible.ToInt16(System.IFormatProvider)
  3460. extern void JValue_System_IConvertible_ToInt16_m8D22EA36E2663E6108A594C9CC86D93D35778D82 (void);
  3461. // 0x00000721 System.UInt16 Newtonsoft.Json.Linq.JValue::System.IConvertible.ToUInt16(System.IFormatProvider)
  3462. extern void JValue_System_IConvertible_ToUInt16_mC87EF6A9FCA8A4BBE38F19F4AEBEB3D5B7B42AC1 (void);
  3463. // 0x00000722 System.Int32 Newtonsoft.Json.Linq.JValue::System.IConvertible.ToInt32(System.IFormatProvider)
  3464. extern void JValue_System_IConvertible_ToInt32_m87238F888B1F16024E0CF6A1755D6FE00BE6A028 (void);
  3465. // 0x00000723 System.UInt32 Newtonsoft.Json.Linq.JValue::System.IConvertible.ToUInt32(System.IFormatProvider)
  3466. extern void JValue_System_IConvertible_ToUInt32_m9FC52D511B9F5D8C1E3D0622008CA941EAC148E3 (void);
  3467. // 0x00000724 System.Int64 Newtonsoft.Json.Linq.JValue::System.IConvertible.ToInt64(System.IFormatProvider)
  3468. extern void JValue_System_IConvertible_ToInt64_m37A400738C3E681B248623FB49F78EE49E250304 (void);
  3469. // 0x00000725 System.UInt64 Newtonsoft.Json.Linq.JValue::System.IConvertible.ToUInt64(System.IFormatProvider)
  3470. extern void JValue_System_IConvertible_ToUInt64_m6E87A583D697A6137736CF49C2C8EE985FC354EC (void);
  3471. // 0x00000726 System.Single Newtonsoft.Json.Linq.JValue::System.IConvertible.ToSingle(System.IFormatProvider)
  3472. extern void JValue_System_IConvertible_ToSingle_m03A634324657E9B61AD2BEBCB75973F4121F82E5 (void);
  3473. // 0x00000727 System.Double Newtonsoft.Json.Linq.JValue::System.IConvertible.ToDouble(System.IFormatProvider)
  3474. extern void JValue_System_IConvertible_ToDouble_mE7A0CE8AB12C343D0467848B6202C1CEC4058185 (void);
  3475. // 0x00000728 System.Decimal Newtonsoft.Json.Linq.JValue::System.IConvertible.ToDecimal(System.IFormatProvider)
  3476. extern void JValue_System_IConvertible_ToDecimal_m5FC9282C0F2B409F941D92D65D3D59D92F0C1520 (void);
  3477. // 0x00000729 System.DateTime Newtonsoft.Json.Linq.JValue::System.IConvertible.ToDateTime(System.IFormatProvider)
  3478. extern void JValue_System_IConvertible_ToDateTime_m32B8B6610A6171003CC26AA0B37C971D8B8F0C31 (void);
  3479. // 0x0000072A System.Object Newtonsoft.Json.Linq.JValue::System.IConvertible.ToType(System.Type,System.IFormatProvider)
  3480. extern void JValue_System_IConvertible_ToType_mCB030FC240AD4252274309D7A769E28528A60185 (void);
  3481. // 0x0000072B System.Void Newtonsoft.Json.Linq.JsonPath.ArrayIndexFilter::.ctor()
  3482. extern void ArrayIndexFilter__ctor_m7274D668E9FBD2128FF98F38EDFB2B72752868E7 (void);
  3483. // 0x0000072C System.Void Newtonsoft.Json.Linq.JsonPath.ArrayMultipleIndexFilter::.ctor()
  3484. extern void ArrayMultipleIndexFilter__ctor_m4FB4475C6DA2D76AC58E08DAB9D6729CEAE62AD9 (void);
  3485. // 0x0000072D System.Void Newtonsoft.Json.Linq.JsonPath.ArraySliceFilter::.ctor()
  3486. extern void ArraySliceFilter__ctor_m4F246D5D5C3FBDFC76D3B1DC793C741F025DE3F7 (void);
  3487. // 0x0000072E System.Void Newtonsoft.Json.Linq.JsonPath.FieldFilter::.ctor()
  3488. extern void FieldFilter__ctor_mB2D7A488B4EE1FE3C2935DEAD3B7A33AAFBCB74A (void);
  3489. // 0x0000072F System.Void Newtonsoft.Json.Linq.JsonPath.FieldMultipleFilter::.ctor()
  3490. extern void FieldMultipleFilter__ctor_mAD9355ADE68D734DB77EB389B9FDFF08CDA02D0C (void);
  3491. // 0x00000730 System.Void Newtonsoft.Json.Linq.JsonPath.FieldMultipleFilter/<>c::.cctor()
  3492. extern void U3CU3Ec__cctor_m7EEF846654F2D1CFF676E42FACC541FB8B03B654 (void);
  3493. // 0x00000731 System.Void Newtonsoft.Json.Linq.JsonPath.FieldMultipleFilter/<>c::.ctor()
  3494. extern void U3CU3Ec__ctor_mA41EC449EB8039C963A52956BB235FD09D59CFD2 (void);
  3495. // 0x00000732 System.Void Newtonsoft.Json.Linq.JsonPath.PathFilter::.ctor()
  3496. extern void PathFilter__ctor_m76F162EAECA93E8DFFD31B25F05228D74FBCA235 (void);
  3497. // 0x00000733 System.Void Newtonsoft.Json.Linq.JsonPath.QueryExpression::.ctor()
  3498. extern void QueryExpression__ctor_m0A28B0D5FF9C7E7AE0F6A90BB8AE13EC99F21E6E (void);
  3499. // 0x00000734 System.Void Newtonsoft.Json.Linq.JsonPath.CompositeExpression::set_Expressions(System.Collections.Generic.List`1<Newtonsoft.Json.Linq.JsonPath.QueryExpression>)
  3500. extern void CompositeExpression_set_Expressions_m6C250B0E8169DBA36E787DC762692444EBA47039 (void);
  3501. // 0x00000735 System.Void Newtonsoft.Json.Linq.JsonPath.CompositeExpression::.ctor()
  3502. extern void CompositeExpression__ctor_mE27D8F887FAD3FFC1E45F599D77A8FD38B29D13F (void);
  3503. // 0x00000736 System.Void Newtonsoft.Json.Linq.JsonPath.BooleanQueryExpression::.ctor()
  3504. extern void BooleanQueryExpression__ctor_m7CB7FC3F5E06D03BC6442CD797E7C3894D416B03 (void);
  3505. // 0x00000737 System.Void Newtonsoft.Json.Linq.JsonPath.QueryFilter::.ctor()
  3506. extern void QueryFilter__ctor_mC98569973250FD627A6425C01473FF829D7DD7DA (void);
  3507. // 0x00000738 System.Void Newtonsoft.Json.Linq.JsonPath.ScanFilter::.ctor()
  3508. extern void ScanFilter__ctor_m3885DD40853B24F12CD50DF6F3FEF988B7A4331B (void);
  3509. // 0x00000739 System.Void Newtonsoft.Json.Converters.BinaryConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3510. extern void BinaryConverter_WriteJson_m39A15563145B721CA7FFEE1646B7447779C6F496 (void);
  3511. // 0x0000073A System.Byte[] Newtonsoft.Json.Converters.BinaryConverter::GetByteArray(System.Object)
  3512. extern void BinaryConverter_GetByteArray_mCC821D2275092F8313F363BF7C9B08807D94D8FD (void);
  3513. // 0x0000073B System.Void Newtonsoft.Json.Converters.BinaryConverter::EnsureReflectionObject(System.Type)
  3514. extern void BinaryConverter_EnsureReflectionObject_mB641D476B74BEC3031A0474C46F4B024CE6BAF51 (void);
  3515. // 0x0000073C System.Object Newtonsoft.Json.Converters.BinaryConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3516. extern void BinaryConverter_ReadJson_mF2486125CE3E6E7304801984106F1778C3790882 (void);
  3517. // 0x0000073D System.Byte[] Newtonsoft.Json.Converters.BinaryConverter::ReadByteArray(Newtonsoft.Json.JsonReader)
  3518. extern void BinaryConverter_ReadByteArray_m1630C87C5784FBF9392BDF5C1C5C993D271FE8F6 (void);
  3519. // 0x0000073E System.Boolean Newtonsoft.Json.Converters.BinaryConverter::CanConvert(System.Type)
  3520. extern void BinaryConverter_CanConvert_m1EBA2800492A96F65A955301EAA55C96FAFD6970 (void);
  3521. // 0x0000073F System.Void Newtonsoft.Json.Converters.BinaryConverter::.ctor()
  3522. extern void BinaryConverter__ctor_mEA19FB802CCFD7AFAE7D36F610E019B189625C48 (void);
  3523. // 0x00000740 System.Void Newtonsoft.Json.Converters.CustomCreationConverter`1::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3524. // 0x00000741 System.Object Newtonsoft.Json.Converters.CustomCreationConverter`1::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3525. // 0x00000742 T Newtonsoft.Json.Converters.CustomCreationConverter`1::Create(System.Type)
  3526. // 0x00000743 System.Boolean Newtonsoft.Json.Converters.CustomCreationConverter`1::CanConvert(System.Type)
  3527. // 0x00000744 System.Boolean Newtonsoft.Json.Converters.CustomCreationConverter`1::get_CanWrite()
  3528. // 0x00000745 System.Void Newtonsoft.Json.Converters.CustomCreationConverter`1::.ctor()
  3529. // 0x00000746 System.Boolean Newtonsoft.Json.Converters.DateTimeConverterBase::CanConvert(System.Type)
  3530. extern void DateTimeConverterBase_CanConvert_mA6F345DEA0F6BB573FC65359397FD7FA5FAD3F0F (void);
  3531. // 0x00000747 System.Void Newtonsoft.Json.Converters.DateTimeConverterBase::.ctor()
  3532. extern void DateTimeConverterBase__ctor_m7DD931943F1600E761A3F3A583564CDF68290A4C (void);
  3533. // 0x00000748 System.Void Newtonsoft.Json.Converters.HashSetConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3534. extern void HashSetConverter_WriteJson_mDEE0299F22CC41725B7A70136F712FC9FBCD197A (void);
  3535. // 0x00000749 System.Object Newtonsoft.Json.Converters.HashSetConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3536. extern void HashSetConverter_ReadJson_m578B65C764895909CC9619DAEE9AB3CA9B93BB53 (void);
  3537. // 0x0000074A System.Boolean Newtonsoft.Json.Converters.HashSetConverter::CanConvert(System.Type)
  3538. extern void HashSetConverter_CanConvert_m1AD5185F763C2BA8AEE87FABD070D8595B52B0F9 (void);
  3539. // 0x0000074B System.Boolean Newtonsoft.Json.Converters.HashSetConverter::get_CanWrite()
  3540. extern void HashSetConverter_get_CanWrite_mAC38FC5DE098E84E426A66D247D31B0CC7773804 (void);
  3541. // 0x0000074C System.Void Newtonsoft.Json.Converters.HashSetConverter::.ctor()
  3542. extern void HashSetConverter__ctor_m1334D78BB3B5A4AA4B8BF5875504A8E15B583D38 (void);
  3543. // 0x0000074D Newtonsoft.Json.Utilities.ReflectionObject Newtonsoft.Json.Converters.KeyValuePairConverter::InitializeReflectionObject(System.Type)
  3544. extern void KeyValuePairConverter_InitializeReflectionObject_mE2CA953A6A57FF72CCFEFBC3AE8A859EF0D3E458 (void);
  3545. // 0x0000074E System.Void Newtonsoft.Json.Converters.KeyValuePairConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3546. extern void KeyValuePairConverter_WriteJson_mE12960338B2A89551949855C40B43BCAA9E5B21A (void);
  3547. // 0x0000074F System.Object Newtonsoft.Json.Converters.KeyValuePairConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3548. extern void KeyValuePairConverter_ReadJson_mA3DBFAADBAB55A0405350CC98809DC8C0876C961 (void);
  3549. // 0x00000750 System.Boolean Newtonsoft.Json.Converters.KeyValuePairConverter::CanConvert(System.Type)
  3550. extern void KeyValuePairConverter_CanConvert_mEF6F2E364D150AE26ADB3D56CB6DCCE897B06CB3 (void);
  3551. // 0x00000751 System.Void Newtonsoft.Json.Converters.KeyValuePairConverter::.ctor()
  3552. extern void KeyValuePairConverter__ctor_mB98645861775B13F0EC9C9FBAADF2A303752B124 (void);
  3553. // 0x00000752 System.Void Newtonsoft.Json.Converters.KeyValuePairConverter::.cctor()
  3554. extern void KeyValuePairConverter__cctor_m9224B63073E8250E0428872DFB0157DFFB390E1B (void);
  3555. // 0x00000753 System.Void Newtonsoft.Json.Converters.BsonObjectIdConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3556. extern void BsonObjectIdConverter_WriteJson_mB610263213EBDA029D5C6DF15EC4462202A905ED (void);
  3557. // 0x00000754 System.Object Newtonsoft.Json.Converters.BsonObjectIdConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3558. extern void BsonObjectIdConverter_ReadJson_m58B3CE42201CC6FB9F1CF5A00714444195E75443 (void);
  3559. // 0x00000755 System.Boolean Newtonsoft.Json.Converters.BsonObjectIdConverter::CanConvert(System.Type)
  3560. extern void BsonObjectIdConverter_CanConvert_m147B27BDEAB9AA1287A0644849AC2EC917F0E533 (void);
  3561. // 0x00000756 System.Void Newtonsoft.Json.Converters.BsonObjectIdConverter::.ctor()
  3562. extern void BsonObjectIdConverter__ctor_mBBBD77C42425F473F7A91AD66F2F38A337A0F234 (void);
  3563. // 0x00000757 System.Void Newtonsoft.Json.Converters.RegexConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3564. extern void RegexConverter_WriteJson_m5BE9641D61A3042EC9BC746C675FCFCD6C225603 (void);
  3565. // 0x00000758 System.Boolean Newtonsoft.Json.Converters.RegexConverter::HasFlag(System.Text.RegularExpressions.RegexOptions,System.Text.RegularExpressions.RegexOptions)
  3566. extern void RegexConverter_HasFlag_m45C3A32ECEB42C34DDF401ED1FD2D982D0208685 (void);
  3567. // 0x00000759 System.Void Newtonsoft.Json.Converters.RegexConverter::WriteBson(Newtonsoft.Json.Bson.BsonWriter,System.Text.RegularExpressions.Regex)
  3568. extern void RegexConverter_WriteBson_mC113074297DA92E102D0941D6E0B8316009F329F (void);
  3569. // 0x0000075A System.Void Newtonsoft.Json.Converters.RegexConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Text.RegularExpressions.Regex,Newtonsoft.Json.JsonSerializer)
  3570. extern void RegexConverter_WriteJson_mA392D25972731EA22F09CE5DFFF72DEBBA7CCEFF (void);
  3571. // 0x0000075B System.Object Newtonsoft.Json.Converters.RegexConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3572. extern void RegexConverter_ReadJson_m24F1018312CB0087B2FB302211CD9C5B7673B76B (void);
  3573. // 0x0000075C System.Object Newtonsoft.Json.Converters.RegexConverter::ReadRegexString(Newtonsoft.Json.JsonReader)
  3574. extern void RegexConverter_ReadRegexString_m2C4DFF0D61B6FAA0636D859545CE9DDBEE64D722 (void);
  3575. // 0x0000075D System.Text.RegularExpressions.Regex Newtonsoft.Json.Converters.RegexConverter::ReadRegexObject(Newtonsoft.Json.JsonReader,Newtonsoft.Json.JsonSerializer)
  3576. extern void RegexConverter_ReadRegexObject_m8499C13BB3BB2593ED2243127BFEAEE3BA940B03 (void);
  3577. // 0x0000075E System.Boolean Newtonsoft.Json.Converters.RegexConverter::CanConvert(System.Type)
  3578. extern void RegexConverter_CanConvert_mE9E2BC9E0AF3C65207D6B74B592B4A636498B8CC (void);
  3579. // 0x0000075F System.Void Newtonsoft.Json.Converters.RegexConverter::.ctor()
  3580. extern void RegexConverter__ctor_m7AA5F74CE6217079CD5B1AB47344A8A40E1F0DF9 (void);
  3581. // 0x00000760 System.Boolean Newtonsoft.Json.Converters.StringEnumConverter::get_CamelCaseText()
  3582. extern void StringEnumConverter_get_CamelCaseText_m72B0E3D8BB94E5E9812BC9D8E41896F14F17D405 (void);
  3583. // 0x00000761 System.Boolean Newtonsoft.Json.Converters.StringEnumConverter::get_AllowIntegerValues()
  3584. extern void StringEnumConverter_get_AllowIntegerValues_m92EC9554D97999DC94F53E86E9E16EBBD6D59C06 (void);
  3585. // 0x00000762 System.Void Newtonsoft.Json.Converters.StringEnumConverter::set_AllowIntegerValues(System.Boolean)
  3586. extern void StringEnumConverter_set_AllowIntegerValues_m20B36927219B91130DCA4FEC27962DAE5CDEDB40 (void);
  3587. // 0x00000763 System.Void Newtonsoft.Json.Converters.StringEnumConverter::.ctor()
  3588. extern void StringEnumConverter__ctor_mA12918A557FB35F5772A0CC33CDAD7E61FE32925 (void);
  3589. // 0x00000764 System.Void Newtonsoft.Json.Converters.StringEnumConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3590. extern void StringEnumConverter_WriteJson_mDCD9ACE82C99EA8BBDEE27A12A53F8DC4F063E16 (void);
  3591. // 0x00000765 System.Object Newtonsoft.Json.Converters.StringEnumConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3592. extern void StringEnumConverter_ReadJson_mBC16B605DEF0862E1C7B9F5E0D3F60D89361B7A3 (void);
  3593. // 0x00000766 System.Boolean Newtonsoft.Json.Converters.StringEnumConverter::CanConvert(System.Type)
  3594. extern void StringEnumConverter_CanConvert_mC6923E1227CAC80E32C7D0A9713AA03EC27F75E0 (void);
  3595. // 0x00000767 System.Boolean Newtonsoft.Json.Converters.VectorConverter::get_EnableVector2()
  3596. extern void VectorConverter_get_EnableVector2_m9F0D5CAB38093848EDE67465ED5CE3A00FAA4EEB (void);
  3597. // 0x00000768 System.Void Newtonsoft.Json.Converters.VectorConverter::set_EnableVector2(System.Boolean)
  3598. extern void VectorConverter_set_EnableVector2_m409003102FC0044C9B52F2DFD0507A8FE8E74A81 (void);
  3599. // 0x00000769 System.Boolean Newtonsoft.Json.Converters.VectorConverter::get_EnableVector3()
  3600. extern void VectorConverter_get_EnableVector3_m0FDCE51268D06675E3E79977D7D29C3E8881F6D7 (void);
  3601. // 0x0000076A System.Void Newtonsoft.Json.Converters.VectorConverter::set_EnableVector3(System.Boolean)
  3602. extern void VectorConverter_set_EnableVector3_m30CD6BC592FA653D043005941F1C590E465B598C (void);
  3603. // 0x0000076B System.Boolean Newtonsoft.Json.Converters.VectorConverter::get_EnableVector4()
  3604. extern void VectorConverter_get_EnableVector4_m367A193107A5E1E279A844A7B04BD89D08D959FA (void);
  3605. // 0x0000076C System.Void Newtonsoft.Json.Converters.VectorConverter::set_EnableVector4(System.Boolean)
  3606. extern void VectorConverter_set_EnableVector4_m3B4BC98CEECCA0BB68ACCE5E061AC3FEC277B04E (void);
  3607. // 0x0000076D System.Void Newtonsoft.Json.Converters.VectorConverter::.ctor()
  3608. extern void VectorConverter__ctor_mC5FF7BEF6539320094D7CB373FB256887DE653CD (void);
  3609. // 0x0000076E System.Void Newtonsoft.Json.Converters.VectorConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3610. extern void VectorConverter_WriteJson_m7ED361C4AE04E7418107A431CE17112856046808 (void);
  3611. // 0x0000076F System.Void Newtonsoft.Json.Converters.VectorConverter::WriteVector(Newtonsoft.Json.JsonWriter,System.Single,System.Single,System.Nullable`1<System.Single>,System.Nullable`1<System.Single>)
  3612. extern void VectorConverter_WriteVector_mDEC4986F19D964C354640871E6F9C3DA09F89E1E (void);
  3613. // 0x00000770 System.Object Newtonsoft.Json.Converters.VectorConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3614. extern void VectorConverter_ReadJson_m59966E36F1AE75C036BF99B5EB228A1E137C4125 (void);
  3615. // 0x00000771 System.Boolean Newtonsoft.Json.Converters.VectorConverter::CanConvert(System.Type)
  3616. extern void VectorConverter_CanConvert_m0CBE2D892DD169F447C9F2B761B271FAA2542B7F (void);
  3617. // 0x00000772 UnityEngine.Vector2 Newtonsoft.Json.Converters.VectorConverter::PopulateVector2(Newtonsoft.Json.JsonReader)
  3618. extern void VectorConverter_PopulateVector2_m82A6E79318A30940335C292F9D09DE7F42DEF652 (void);
  3619. // 0x00000773 UnityEngine.Vector3 Newtonsoft.Json.Converters.VectorConverter::PopulateVector3(Newtonsoft.Json.JsonReader)
  3620. extern void VectorConverter_PopulateVector3_m32ECB66A24CB95E260025ED9F19729143F8F725A (void);
  3621. // 0x00000774 UnityEngine.Vector4 Newtonsoft.Json.Converters.VectorConverter::PopulateVector4(Newtonsoft.Json.JsonReader)
  3622. extern void VectorConverter_PopulateVector4_mA9E68ECC439F9BB47400DB64A8A084D22755B142 (void);
  3623. // 0x00000775 System.Void Newtonsoft.Json.Converters.VectorConverter::.cctor()
  3624. extern void VectorConverter__cctor_m56EC47609F1BCA9139F8363AA44C1127D3633746 (void);
  3625. // 0x00000776 System.Void Newtonsoft.Json.Converters.VersionConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3626. extern void VersionConverter_WriteJson_mFA1B84F54D2D945FA43710BA8D407863CE3269E2 (void);
  3627. // 0x00000777 System.Object Newtonsoft.Json.Converters.VersionConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3628. extern void VersionConverter_ReadJson_mAE54D606E8F4FC9BCBB8CD41F84254B5F9A69BC1 (void);
  3629. // 0x00000778 System.Boolean Newtonsoft.Json.Converters.VersionConverter::CanConvert(System.Type)
  3630. extern void VersionConverter_CanConvert_mDA98AF4545185944B817FB2F9E7D44D366619E20 (void);
  3631. // 0x00000779 System.Void Newtonsoft.Json.Converters.VersionConverter::.ctor()
  3632. extern void VersionConverter__ctor_m48C41A6977092746B7E357A179DF64BE44C91CA7 (void);
  3633. // 0x0000077A System.Globalization.CultureInfo Newtonsoft.Json.Converters.IsoDateTimeConverter::get_Culture()
  3634. extern void IsoDateTimeConverter_get_Culture_mB14717CF85A5FA47364D1917F8016635A7542059 (void);
  3635. // 0x0000077B System.Void Newtonsoft.Json.Converters.IsoDateTimeConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3636. extern void IsoDateTimeConverter_WriteJson_m9B6D8D4D6B95AADB10D98F4283AD2FE832256904 (void);
  3637. // 0x0000077C System.Object Newtonsoft.Json.Converters.IsoDateTimeConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3638. extern void IsoDateTimeConverter_ReadJson_mE3874B76FCAF909E82D27F007FDF13C195CC42D1 (void);
  3639. // 0x0000077D System.Void Newtonsoft.Json.Converters.IsoDateTimeConverter::.ctor()
  3640. extern void IsoDateTimeConverter__ctor_m3F81B7C6BFC3C27FC1B7D54815C1C7E4B8573058 (void);
  3641. // 0x0000077E System.Void Newtonsoft.Json.Converters.JavaScriptDateTimeConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3642. extern void JavaScriptDateTimeConverter_WriteJson_mA34AEDE37E8496974D0EEAAF82F27AF22E4469C7 (void);
  3643. // 0x0000077F System.Object Newtonsoft.Json.Converters.JavaScriptDateTimeConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3644. extern void JavaScriptDateTimeConverter_ReadJson_m4B86AAC4A496CA5C3812925A5DB7A6BB5E3BB9B3 (void);
  3645. // 0x00000780 System.Void Newtonsoft.Json.Converters.JavaScriptDateTimeConverter::.ctor()
  3646. extern void JavaScriptDateTimeConverter__ctor_m6FA01CAA6D68007B552C16B84D3CD33931EBA94A (void);
  3647. // 0x00000781 System.Void Newtonsoft.Json.Converters.XmlDocumentWrapper::.ctor(System.Xml.XmlDocument)
  3648. extern void XmlDocumentWrapper__ctor_mDADE4126D5921651DDAA3FBBE23F52C5F6BF209C (void);
  3649. // 0x00000782 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateComment(System.String)
  3650. extern void XmlDocumentWrapper_CreateComment_mC95FCEC5BA1B85D53A9ED02CD544091B42DBF66F (void);
  3651. // 0x00000783 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateTextNode(System.String)
  3652. extern void XmlDocumentWrapper_CreateTextNode_m0860A9FED2F1223DA7CAAA084AE3A2FA3299FD1C (void);
  3653. // 0x00000784 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateCDataSection(System.String)
  3654. extern void XmlDocumentWrapper_CreateCDataSection_mC73D6C127D6F4019F59959085E14573AB5A2DF0F (void);
  3655. // 0x00000785 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateWhitespace(System.String)
  3656. extern void XmlDocumentWrapper_CreateWhitespace_mBAB252685A6CCA937AE44564ACCFADF52B862376 (void);
  3657. // 0x00000786 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateSignificantWhitespace(System.String)
  3658. extern void XmlDocumentWrapper_CreateSignificantWhitespace_m12A21E457004F9D81C499621DED1DDA156A133F1 (void);
  3659. // 0x00000787 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateXmlDeclaration(System.String,System.String,System.String)
  3660. extern void XmlDocumentWrapper_CreateXmlDeclaration_m3E0067995D8A831BAE5475EE030B0BA87E0C32D1 (void);
  3661. // 0x00000788 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateXmlDocumentType(System.String,System.String,System.String,System.String)
  3662. extern void XmlDocumentWrapper_CreateXmlDocumentType_m8855093679C81DB34B8302911F0C3E2064D26226 (void);
  3663. // 0x00000789 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateProcessingInstruction(System.String,System.String)
  3664. extern void XmlDocumentWrapper_CreateProcessingInstruction_m4B3E9AA6C535C2EEC4EA330BD0696F4F88CF6BC6 (void);
  3665. // 0x0000078A Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateElement(System.String)
  3666. extern void XmlDocumentWrapper_CreateElement_m4BA54FEC9F21FBEBC2EF47DF30DC5F00203CE6E5 (void);
  3667. // 0x0000078B Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateElement(System.String,System.String)
  3668. extern void XmlDocumentWrapper_CreateElement_m41D0D7C172C1CB5858146A72F35B07D683DA152E (void);
  3669. // 0x0000078C Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateAttribute(System.String,System.String)
  3670. extern void XmlDocumentWrapper_CreateAttribute_m0331F0688A6FE571A57376093498E84282A1535C (void);
  3671. // 0x0000078D Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlDocumentWrapper::CreateAttribute(System.String,System.String,System.String)
  3672. extern void XmlDocumentWrapper_CreateAttribute_m83FE092E2EB245352DC0526BF3A724DA24E17779 (void);
  3673. // 0x0000078E Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XmlDocumentWrapper::get_DocumentElement()
  3674. extern void XmlDocumentWrapper_get_DocumentElement_m8691EF656C954AB8291AD9A9CD50DA43912C3B44 (void);
  3675. // 0x0000078F System.Void Newtonsoft.Json.Converters.XmlElementWrapper::.ctor(System.Xml.XmlElement)
  3676. extern void XmlElementWrapper__ctor_m157ADA9353970E9FAF97F67406CFF891477D8A0C (void);
  3677. // 0x00000790 System.Void Newtonsoft.Json.Converters.XmlElementWrapper::SetAttributeNode(Newtonsoft.Json.Converters.IXmlNode)
  3678. extern void XmlElementWrapper_SetAttributeNode_mAECD27528E049EE296505EA73D29560F91699C28 (void);
  3679. // 0x00000791 System.String Newtonsoft.Json.Converters.XmlElementWrapper::GetPrefixOfNamespace(System.String)
  3680. extern void XmlElementWrapper_GetPrefixOfNamespace_m8E04F649B26897A5F405F09E9B35A618B289182B (void);
  3681. // 0x00000792 System.Boolean Newtonsoft.Json.Converters.XmlElementWrapper::get_IsEmpty()
  3682. extern void XmlElementWrapper_get_IsEmpty_m7492BF73E3666302DCA25874E1FC798E924414E3 (void);
  3683. // 0x00000793 System.Void Newtonsoft.Json.Converters.XmlDeclarationWrapper::.ctor(System.Xml.XmlDeclaration)
  3684. extern void XmlDeclarationWrapper__ctor_mF51839B7636CC91F7B4CD908F24712F5913A91B4 (void);
  3685. // 0x00000794 System.String Newtonsoft.Json.Converters.XmlDeclarationWrapper::get_Version()
  3686. extern void XmlDeclarationWrapper_get_Version_mC27B96780F7D3DBC15F99C3B5CA6EA9EFCF886D1 (void);
  3687. // 0x00000795 System.String Newtonsoft.Json.Converters.XmlDeclarationWrapper::get_Encoding()
  3688. extern void XmlDeclarationWrapper_get_Encoding_m9C4D39FB30B4BC86500C3FF9BDA55D7D46F366FD (void);
  3689. // 0x00000796 System.String Newtonsoft.Json.Converters.XmlDeclarationWrapper::get_Standalone()
  3690. extern void XmlDeclarationWrapper_get_Standalone_m9053C3695CE2AC72F6D3208665C50C0C3990DB27 (void);
  3691. // 0x00000797 System.Void Newtonsoft.Json.Converters.XmlDocumentTypeWrapper::.ctor(System.Xml.XmlDocumentType)
  3692. extern void XmlDocumentTypeWrapper__ctor_m675661950897A7EF2E7EC820E79E337D2B6A307A (void);
  3693. // 0x00000798 System.String Newtonsoft.Json.Converters.XmlDocumentTypeWrapper::get_Name()
  3694. extern void XmlDocumentTypeWrapper_get_Name_mC58980187B5E95434B85ECD95EF171568E4E4BD2 (void);
  3695. // 0x00000799 System.String Newtonsoft.Json.Converters.XmlDocumentTypeWrapper::get_System()
  3696. extern void XmlDocumentTypeWrapper_get_System_m460E894C8F7190DAD08B13F6A8A93896843D091A (void);
  3697. // 0x0000079A System.String Newtonsoft.Json.Converters.XmlDocumentTypeWrapper::get_Public()
  3698. extern void XmlDocumentTypeWrapper_get_Public_m69B583B1E3D79EFCCD38D404B3914C5AD24F798E (void);
  3699. // 0x0000079B System.String Newtonsoft.Json.Converters.XmlDocumentTypeWrapper::get_InternalSubset()
  3700. extern void XmlDocumentTypeWrapper_get_InternalSubset_mA76BFB1D08D2598BAD0E6052B2178ADF68CC1A73 (void);
  3701. // 0x0000079C System.String Newtonsoft.Json.Converters.XmlDocumentTypeWrapper::get_LocalName()
  3702. extern void XmlDocumentTypeWrapper_get_LocalName_mBF82AB7C08F4A3774E298C130866BDB1ADA3EC10 (void);
  3703. // 0x0000079D System.Void Newtonsoft.Json.Converters.XmlNodeWrapper::.ctor(System.Xml.XmlNode)
  3704. extern void XmlNodeWrapper__ctor_mF3A07DBAE9040226F2311FB40CFC36E3D4A06696 (void);
  3705. // 0x0000079E System.Object Newtonsoft.Json.Converters.XmlNodeWrapper::get_WrappedNode()
  3706. extern void XmlNodeWrapper_get_WrappedNode_m468BF37D91C283502A22F72F9E3350069CAC6E2F (void);
  3707. // 0x0000079F System.Xml.XmlNodeType Newtonsoft.Json.Converters.XmlNodeWrapper::get_NodeType()
  3708. extern void XmlNodeWrapper_get_NodeType_mB544142E2A3BB418F9CE2633DD6633200EE1F9B2 (void);
  3709. // 0x000007A0 System.String Newtonsoft.Json.Converters.XmlNodeWrapper::get_LocalName()
  3710. extern void XmlNodeWrapper_get_LocalName_m07335C58A77A9F60FA2FEE2CE7C13C851BA87629 (void);
  3711. // 0x000007A1 System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XmlNodeWrapper::get_ChildNodes()
  3712. extern void XmlNodeWrapper_get_ChildNodes_m8BEC61F5C677651F0824D2187E9CCAA003036E7E (void);
  3713. // 0x000007A2 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlNodeWrapper::WrapNode(System.Xml.XmlNode)
  3714. extern void XmlNodeWrapper_WrapNode_m9C8EEDA41584745DDCF730EA4D398B7AAA5F8FCA (void);
  3715. // 0x000007A3 System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XmlNodeWrapper::get_Attributes()
  3716. extern void XmlNodeWrapper_get_Attributes_m1B7F1A6A957384108048432F5D29A737985C2272 (void);
  3717. // 0x000007A4 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlNodeWrapper::get_ParentNode()
  3718. extern void XmlNodeWrapper_get_ParentNode_mA3050973561B78E1A1E351650EA472F9ED9E20E7 (void);
  3719. // 0x000007A5 System.String Newtonsoft.Json.Converters.XmlNodeWrapper::get_Value()
  3720. extern void XmlNodeWrapper_get_Value_m3D4DFCAF37EB795F4DCABFAC1218A0F480524906 (void);
  3721. // 0x000007A6 System.Void Newtonsoft.Json.Converters.XmlNodeWrapper::set_Value(System.String)
  3722. extern void XmlNodeWrapper_set_Value_mCD70A93D6BB065E22E5B95C595760B1016F50B2B (void);
  3723. // 0x000007A7 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlNodeWrapper::AppendChild(Newtonsoft.Json.Converters.IXmlNode)
  3724. extern void XmlNodeWrapper_AppendChild_m45B56420F35A5551CAA42C7DFDF626CE89D46683 (void);
  3725. // 0x000007A8 System.String Newtonsoft.Json.Converters.XmlNodeWrapper::get_NamespaceUri()
  3726. extern void XmlNodeWrapper_get_NamespaceUri_mE0FB57B60FABD0803612C8684560DF02E96F0F1E (void);
  3727. // 0x000007A9 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateComment(System.String)
  3728. // 0x000007AA Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateTextNode(System.String)
  3729. // 0x000007AB Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateCDataSection(System.String)
  3730. // 0x000007AC Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateWhitespace(System.String)
  3731. // 0x000007AD Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateSignificantWhitespace(System.String)
  3732. // 0x000007AE Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateXmlDeclaration(System.String,System.String,System.String)
  3733. // 0x000007AF Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateXmlDocumentType(System.String,System.String,System.String,System.String)
  3734. // 0x000007B0 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateProcessingInstruction(System.String,System.String)
  3735. // 0x000007B1 Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.IXmlDocument::CreateElement(System.String)
  3736. // 0x000007B2 Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.IXmlDocument::CreateElement(System.String,System.String)
  3737. // 0x000007B3 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateAttribute(System.String,System.String)
  3738. // 0x000007B4 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlDocument::CreateAttribute(System.String,System.String,System.String)
  3739. // 0x000007B5 Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.IXmlDocument::get_DocumentElement()
  3740. // 0x000007B6 System.String Newtonsoft.Json.Converters.IXmlDeclaration::get_Version()
  3741. // 0x000007B7 System.String Newtonsoft.Json.Converters.IXmlDeclaration::get_Encoding()
  3742. // 0x000007B8 System.String Newtonsoft.Json.Converters.IXmlDeclaration::get_Standalone()
  3743. // 0x000007B9 System.String Newtonsoft.Json.Converters.IXmlDocumentType::get_Name()
  3744. // 0x000007BA System.String Newtonsoft.Json.Converters.IXmlDocumentType::get_System()
  3745. // 0x000007BB System.String Newtonsoft.Json.Converters.IXmlDocumentType::get_Public()
  3746. // 0x000007BC System.String Newtonsoft.Json.Converters.IXmlDocumentType::get_InternalSubset()
  3747. // 0x000007BD System.Void Newtonsoft.Json.Converters.IXmlElement::SetAttributeNode(Newtonsoft.Json.Converters.IXmlNode)
  3748. // 0x000007BE System.String Newtonsoft.Json.Converters.IXmlElement::GetPrefixOfNamespace(System.String)
  3749. // 0x000007BF System.Boolean Newtonsoft.Json.Converters.IXmlElement::get_IsEmpty()
  3750. // 0x000007C0 System.Xml.XmlNodeType Newtonsoft.Json.Converters.IXmlNode::get_NodeType()
  3751. // 0x000007C1 System.String Newtonsoft.Json.Converters.IXmlNode::get_LocalName()
  3752. // 0x000007C2 System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.IXmlNode::get_ChildNodes()
  3753. // 0x000007C3 System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.IXmlNode::get_Attributes()
  3754. // 0x000007C4 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlNode::get_ParentNode()
  3755. // 0x000007C5 System.String Newtonsoft.Json.Converters.IXmlNode::get_Value()
  3756. // 0x000007C6 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.IXmlNode::AppendChild(Newtonsoft.Json.Converters.IXmlNode)
  3757. // 0x000007C7 System.String Newtonsoft.Json.Converters.IXmlNode::get_NamespaceUri()
  3758. // 0x000007C8 System.Object Newtonsoft.Json.Converters.IXmlNode::get_WrappedNode()
  3759. // 0x000007C9 System.Xml.Linq.XDeclaration Newtonsoft.Json.Converters.XDeclarationWrapper::get_Declaration()
  3760. extern void XDeclarationWrapper_get_Declaration_m088E3B9D587EC2B961C88BBBCD117CA6D3103473 (void);
  3761. // 0x000007CA System.Void Newtonsoft.Json.Converters.XDeclarationWrapper::set_Declaration(System.Xml.Linq.XDeclaration)
  3762. extern void XDeclarationWrapper_set_Declaration_m5305289F2ADC283784668A45EBC7913CFE934E7C (void);
  3763. // 0x000007CB System.Void Newtonsoft.Json.Converters.XDeclarationWrapper::.ctor(System.Xml.Linq.XDeclaration)
  3764. extern void XDeclarationWrapper__ctor_m5476337823DCEF6C0D1DCC41BA6C786135E72990 (void);
  3765. // 0x000007CC System.Xml.XmlNodeType Newtonsoft.Json.Converters.XDeclarationWrapper::get_NodeType()
  3766. extern void XDeclarationWrapper_get_NodeType_mC15F2E634D67AADA770174144489D861A93C1897 (void);
  3767. // 0x000007CD System.String Newtonsoft.Json.Converters.XDeclarationWrapper::get_Version()
  3768. extern void XDeclarationWrapper_get_Version_m3D6BD865F8C60D5B752838E5EAC2E3801C25DC48 (void);
  3769. // 0x000007CE System.String Newtonsoft.Json.Converters.XDeclarationWrapper::get_Encoding()
  3770. extern void XDeclarationWrapper_get_Encoding_m788BC71AF9869203F0C327FF585E732B39490603 (void);
  3771. // 0x000007CF System.String Newtonsoft.Json.Converters.XDeclarationWrapper::get_Standalone()
  3772. extern void XDeclarationWrapper_get_Standalone_m966B714BC3DC532C2C97F825DED9BBB11D85E7ED (void);
  3773. // 0x000007D0 System.Void Newtonsoft.Json.Converters.XDocumentTypeWrapper::.ctor(System.Xml.Linq.XDocumentType)
  3774. extern void XDocumentTypeWrapper__ctor_mF9F9FC996AB634DBF2EFE7A0ACBA6AA999BDEE43 (void);
  3775. // 0x000007D1 System.String Newtonsoft.Json.Converters.XDocumentTypeWrapper::get_Name()
  3776. extern void XDocumentTypeWrapper_get_Name_m3A232C6231506BD90CCB73A374071C995F035DD3 (void);
  3777. // 0x000007D2 System.String Newtonsoft.Json.Converters.XDocumentTypeWrapper::get_System()
  3778. extern void XDocumentTypeWrapper_get_System_m5E93715FB3832C0072F3688BFF1A7C8272EA80C8 (void);
  3779. // 0x000007D3 System.String Newtonsoft.Json.Converters.XDocumentTypeWrapper::get_Public()
  3780. extern void XDocumentTypeWrapper_get_Public_m455E1824FDD949A3960E8A96916B09ABFA4A934C (void);
  3781. // 0x000007D4 System.String Newtonsoft.Json.Converters.XDocumentTypeWrapper::get_InternalSubset()
  3782. extern void XDocumentTypeWrapper_get_InternalSubset_mF0236A07F12DCF6CDBFBFFDA38EF4FDEA8240C9F (void);
  3783. // 0x000007D5 System.String Newtonsoft.Json.Converters.XDocumentTypeWrapper::get_LocalName()
  3784. extern void XDocumentTypeWrapper_get_LocalName_mC3BE4C76280083229FA8090845C475DC08C76269 (void);
  3785. // 0x000007D6 System.Xml.Linq.XDocument Newtonsoft.Json.Converters.XDocumentWrapper::get_Document()
  3786. extern void XDocumentWrapper_get_Document_mE1AA633877F833EE315345BDA7A43D9AE0E25BF2 (void);
  3787. // 0x000007D7 System.Void Newtonsoft.Json.Converters.XDocumentWrapper::.ctor(System.Xml.Linq.XDocument)
  3788. extern void XDocumentWrapper__ctor_mA40162DE79076210B0763CA5CDD39B659106DF94 (void);
  3789. // 0x000007D8 System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XDocumentWrapper::get_ChildNodes()
  3790. extern void XDocumentWrapper_get_ChildNodes_m0AC7789ADF8A7B1EFE782DBF6765C82EB85EF208 (void);
  3791. // 0x000007D9 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateComment(System.String)
  3792. extern void XDocumentWrapper_CreateComment_m125FDB57330D1FB34DC22FD189447BECE12726B1 (void);
  3793. // 0x000007DA Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateTextNode(System.String)
  3794. extern void XDocumentWrapper_CreateTextNode_mD9D8E117968292CC906E283F4E87D0D0F33F3690 (void);
  3795. // 0x000007DB Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateCDataSection(System.String)
  3796. extern void XDocumentWrapper_CreateCDataSection_m13DA76ACCBA7EE1FCD61DC549CE152304279B000 (void);
  3797. // 0x000007DC Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateWhitespace(System.String)
  3798. extern void XDocumentWrapper_CreateWhitespace_mC2AF0455A48DF27A48EA74951A39043B58714703 (void);
  3799. // 0x000007DD Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateSignificantWhitespace(System.String)
  3800. extern void XDocumentWrapper_CreateSignificantWhitespace_m6400B379E64B467598C4B1F70B8BCB2BDB5D9DEC (void);
  3801. // 0x000007DE Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateXmlDeclaration(System.String,System.String,System.String)
  3802. extern void XDocumentWrapper_CreateXmlDeclaration_m262E5F93F4AE30AE0C30467BC833484CEE12083B (void);
  3803. // 0x000007DF Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateXmlDocumentType(System.String,System.String,System.String,System.String)
  3804. extern void XDocumentWrapper_CreateXmlDocumentType_mE73AC70E0AD051FF3AC404D5ED1E51720D05454E (void);
  3805. // 0x000007E0 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateProcessingInstruction(System.String,System.String)
  3806. extern void XDocumentWrapper_CreateProcessingInstruction_mA6E7CD89664A374817D4844193025D6A684C1B35 (void);
  3807. // 0x000007E1 Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XDocumentWrapper::CreateElement(System.String)
  3808. extern void XDocumentWrapper_CreateElement_m1250CF989BD2104C7AABFFB9FCB0CCC280ADD904 (void);
  3809. // 0x000007E2 Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XDocumentWrapper::CreateElement(System.String,System.String)
  3810. extern void XDocumentWrapper_CreateElement_m88938EFEAA7D7CDBEBC41DC9B58860903CECAA51 (void);
  3811. // 0x000007E3 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateAttribute(System.String,System.String)
  3812. extern void XDocumentWrapper_CreateAttribute_m0A865E5434FC7E64282BD8EC76E6E11DC89F91A8 (void);
  3813. // 0x000007E4 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::CreateAttribute(System.String,System.String,System.String)
  3814. extern void XDocumentWrapper_CreateAttribute_mB35C555656C8A8ABD9D22B2C466D18D03DFCF18D (void);
  3815. // 0x000007E5 Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XDocumentWrapper::get_DocumentElement()
  3816. extern void XDocumentWrapper_get_DocumentElement_m591D5698B2327C29DAD0EF27C497CF27E794EFF2 (void);
  3817. // 0x000007E6 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XDocumentWrapper::AppendChild(Newtonsoft.Json.Converters.IXmlNode)
  3818. extern void XDocumentWrapper_AppendChild_mB24309C6F7776071A64655A28E638086C4626643 (void);
  3819. // 0x000007E7 System.Xml.Linq.XText Newtonsoft.Json.Converters.XTextWrapper::get_Text()
  3820. extern void XTextWrapper_get_Text_m5152221B428C9A12FEF884ED78118A3138761F8C (void);
  3821. // 0x000007E8 System.Void Newtonsoft.Json.Converters.XTextWrapper::.ctor(System.Xml.Linq.XText)
  3822. extern void XTextWrapper__ctor_mA04D7C89E83FB85B01CA8A2411408841939FE577 (void);
  3823. // 0x000007E9 System.String Newtonsoft.Json.Converters.XTextWrapper::get_Value()
  3824. extern void XTextWrapper_get_Value_m0516F61AACA331543D921AF0F015D942C17CA263 (void);
  3825. // 0x000007EA Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XTextWrapper::get_ParentNode()
  3826. extern void XTextWrapper_get_ParentNode_m7BA2502A74F9A8D7F33736CDDF09C563AC953F11 (void);
  3827. // 0x000007EB System.Xml.Linq.XComment Newtonsoft.Json.Converters.XCommentWrapper::get_Text()
  3828. extern void XCommentWrapper_get_Text_m6C168F8D8C3061B0B25AE417A4142EABC1AB2F6D (void);
  3829. // 0x000007EC System.Void Newtonsoft.Json.Converters.XCommentWrapper::.ctor(System.Xml.Linq.XComment)
  3830. extern void XCommentWrapper__ctor_mD4DF06F04148974F33593A10FBB4F1C0C32F5630 (void);
  3831. // 0x000007ED System.String Newtonsoft.Json.Converters.XCommentWrapper::get_Value()
  3832. extern void XCommentWrapper_get_Value_mA5BA32AB679C7D6499F9BE58B9C9098E7B4CAFAD (void);
  3833. // 0x000007EE Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XCommentWrapper::get_ParentNode()
  3834. extern void XCommentWrapper_get_ParentNode_m0B07C96052B20C7637DE326CFF1F65FE90A864AD (void);
  3835. // 0x000007EF System.Xml.Linq.XProcessingInstruction Newtonsoft.Json.Converters.XProcessingInstructionWrapper::get_ProcessingInstruction()
  3836. extern void XProcessingInstructionWrapper_get_ProcessingInstruction_m3EF82506DA30263EDCA9D7BE137A94F61521A916 (void);
  3837. // 0x000007F0 System.Void Newtonsoft.Json.Converters.XProcessingInstructionWrapper::.ctor(System.Xml.Linq.XProcessingInstruction)
  3838. extern void XProcessingInstructionWrapper__ctor_m87935CB1DC84DCDB5234365EE1B470EA363793F0 (void);
  3839. // 0x000007F1 System.String Newtonsoft.Json.Converters.XProcessingInstructionWrapper::get_LocalName()
  3840. extern void XProcessingInstructionWrapper_get_LocalName_m306C1AB91F82384AB6C88B4C4747405737916CDC (void);
  3841. // 0x000007F2 System.String Newtonsoft.Json.Converters.XProcessingInstructionWrapper::get_Value()
  3842. extern void XProcessingInstructionWrapper_get_Value_mAF77DC7E660432671EC5833B6FC7D3C75E972BC5 (void);
  3843. // 0x000007F3 System.Xml.Linq.XContainer Newtonsoft.Json.Converters.XContainerWrapper::get_Container()
  3844. extern void XContainerWrapper_get_Container_m3CBDD0A73C1AE4001ABAFA3D8119A8AF2F5EFCCA (void);
  3845. // 0x000007F4 System.Void Newtonsoft.Json.Converters.XContainerWrapper::.ctor(System.Xml.Linq.XContainer)
  3846. extern void XContainerWrapper__ctor_m0ADFCE10024526AFA62F73D498ADCAA302BF8832 (void);
  3847. // 0x000007F5 System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XContainerWrapper::get_ChildNodes()
  3848. extern void XContainerWrapper_get_ChildNodes_m8777D68C8963F8EBD3BB056BB2242271099C8B2E (void);
  3849. // 0x000007F6 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XContainerWrapper::get_ParentNode()
  3850. extern void XContainerWrapper_get_ParentNode_m2B0B5BFDF8CCA35729241D051FBD2446960E2418 (void);
  3851. // 0x000007F7 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XContainerWrapper::WrapNode(System.Xml.Linq.XObject)
  3852. extern void XContainerWrapper_WrapNode_mAD43B0CCDC5EE7EE828238A1C40203BAC1999858 (void);
  3853. // 0x000007F8 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XContainerWrapper::AppendChild(Newtonsoft.Json.Converters.IXmlNode)
  3854. extern void XContainerWrapper_AppendChild_m5970EF8979BC3561C2350E5A812DEFB6198AFDEA (void);
  3855. // 0x000007F9 System.Void Newtonsoft.Json.Converters.XObjectWrapper::.ctor(System.Xml.Linq.XObject)
  3856. extern void XObjectWrapper__ctor_m96912D39CD6E1F067BB445824DF4941C4CD1F377 (void);
  3857. // 0x000007FA System.Object Newtonsoft.Json.Converters.XObjectWrapper::get_WrappedNode()
  3858. extern void XObjectWrapper_get_WrappedNode_m39F13F6851B25D19B29470ABFF655450E529E06F (void);
  3859. // 0x000007FB System.Xml.XmlNodeType Newtonsoft.Json.Converters.XObjectWrapper::get_NodeType()
  3860. extern void XObjectWrapper_get_NodeType_m9195903688F1E5CAF8468FE9DABA4EA8CC9B6847 (void);
  3861. // 0x000007FC System.String Newtonsoft.Json.Converters.XObjectWrapper::get_LocalName()
  3862. extern void XObjectWrapper_get_LocalName_m7129F23747D5C3C6489FA1C32883992FD5A092A8 (void);
  3863. // 0x000007FD System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XObjectWrapper::get_ChildNodes()
  3864. extern void XObjectWrapper_get_ChildNodes_m2F2AB7F31EED1F5B0B81EA29607E1F96C7A8B6A7 (void);
  3865. // 0x000007FE System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XObjectWrapper::get_Attributes()
  3866. extern void XObjectWrapper_get_Attributes_mD1AC0774C8BE8F69E8E7B94F82F0F9EA4DFA2699 (void);
  3867. // 0x000007FF Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XObjectWrapper::get_ParentNode()
  3868. extern void XObjectWrapper_get_ParentNode_mB9AEE35EDB01942CA9C4CE3A2B0D7864C14518AB (void);
  3869. // 0x00000800 System.String Newtonsoft.Json.Converters.XObjectWrapper::get_Value()
  3870. extern void XObjectWrapper_get_Value_mF318316589D4B5481EA375338C52BC2BF2A005B9 (void);
  3871. // 0x00000801 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XObjectWrapper::AppendChild(Newtonsoft.Json.Converters.IXmlNode)
  3872. extern void XObjectWrapper_AppendChild_m14A2F44F8DDFC2F9AB76683E88A8390A3675BA30 (void);
  3873. // 0x00000802 System.String Newtonsoft.Json.Converters.XObjectWrapper::get_NamespaceUri()
  3874. extern void XObjectWrapper_get_NamespaceUri_mC93AE9F044CBA6FBDA8A61B4C37B44E4B88FBE87 (void);
  3875. // 0x00000803 System.Void Newtonsoft.Json.Converters.XObjectWrapper::.cctor()
  3876. extern void XObjectWrapper__cctor_mF74BDF7A010A5A6930BD20E18268280C4A24D6A5 (void);
  3877. // 0x00000804 System.Xml.Linq.XAttribute Newtonsoft.Json.Converters.XAttributeWrapper::get_Attribute()
  3878. extern void XAttributeWrapper_get_Attribute_m4F0DEDBEE7283F7C7D77C383040AAE807E3C3409 (void);
  3879. // 0x00000805 System.Void Newtonsoft.Json.Converters.XAttributeWrapper::.ctor(System.Xml.Linq.XAttribute)
  3880. extern void XAttributeWrapper__ctor_m31D76E884C584D16FC5D38578A03A434F1B088F9 (void);
  3881. // 0x00000806 System.String Newtonsoft.Json.Converters.XAttributeWrapper::get_Value()
  3882. extern void XAttributeWrapper_get_Value_mA31B4F2B53B410865754B0F787CEF26DDCA3D8F0 (void);
  3883. // 0x00000807 System.String Newtonsoft.Json.Converters.XAttributeWrapper::get_LocalName()
  3884. extern void XAttributeWrapper_get_LocalName_m7FB13F834AC9586CBE5D534588A9A3D807243F0D (void);
  3885. // 0x00000808 System.String Newtonsoft.Json.Converters.XAttributeWrapper::get_NamespaceUri()
  3886. extern void XAttributeWrapper_get_NamespaceUri_m62127C9CFAA86B4FE8570C359B23B8DBDDF61295 (void);
  3887. // 0x00000809 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XAttributeWrapper::get_ParentNode()
  3888. extern void XAttributeWrapper_get_ParentNode_m4AEAFA39D14653A50EBD0876AB2B7758148DB05D (void);
  3889. // 0x0000080A System.Xml.Linq.XElement Newtonsoft.Json.Converters.XElementWrapper::get_Element()
  3890. extern void XElementWrapper_get_Element_m5D69CF460EB55358B93E21DF8EDF6BD6BC35350A (void);
  3891. // 0x0000080B System.Void Newtonsoft.Json.Converters.XElementWrapper::.ctor(System.Xml.Linq.XElement)
  3892. extern void XElementWrapper__ctor_mEDAB7607CA915010D73C9FAC87EA4F81F540E245 (void);
  3893. // 0x0000080C System.Void Newtonsoft.Json.Converters.XElementWrapper::SetAttributeNode(Newtonsoft.Json.Converters.IXmlNode)
  3894. extern void XElementWrapper_SetAttributeNode_m3933671A016B70A9FF47C224F00E3B5045FE885D (void);
  3895. // 0x0000080D System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode> Newtonsoft.Json.Converters.XElementWrapper::get_Attributes()
  3896. extern void XElementWrapper_get_Attributes_mDCF98CCE573F3B2EA44155F405B88931FC7A6BE9 (void);
  3897. // 0x0000080E Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XElementWrapper::AppendChild(Newtonsoft.Json.Converters.IXmlNode)
  3898. extern void XElementWrapper_AppendChild_m978842307398B2C56916D21ACD3F0CBB423F7E1C (void);
  3899. // 0x0000080F System.String Newtonsoft.Json.Converters.XElementWrapper::get_Value()
  3900. extern void XElementWrapper_get_Value_mCDC09A1B4B83E4CF18068E2208DE7516A6EAC9A0 (void);
  3901. // 0x00000810 System.String Newtonsoft.Json.Converters.XElementWrapper::get_LocalName()
  3902. extern void XElementWrapper_get_LocalName_m6447DE23B0FC1D8473851D27459398710C5E60B0 (void);
  3903. // 0x00000811 System.String Newtonsoft.Json.Converters.XElementWrapper::get_NamespaceUri()
  3904. extern void XElementWrapper_get_NamespaceUri_m190AF0E71CD916A3FEE00790B2B3A4B44D170DA2 (void);
  3905. // 0x00000812 System.String Newtonsoft.Json.Converters.XElementWrapper::GetPrefixOfNamespace(System.String)
  3906. extern void XElementWrapper_GetPrefixOfNamespace_m8FC08AD41E95D9FE7E2AFD89E6E2E37C26778B47 (void);
  3907. // 0x00000813 System.Boolean Newtonsoft.Json.Converters.XElementWrapper::get_IsEmpty()
  3908. extern void XElementWrapper_get_IsEmpty_m79037FACA97313E7DE13786A930D4174CE232EAC (void);
  3909. // 0x00000814 System.String Newtonsoft.Json.Converters.XmlNodeConverter::get_DeserializeRootElementName()
  3910. extern void XmlNodeConverter_get_DeserializeRootElementName_mDA30476EE8892D07632EA2F0F539C3ADCFA6941B (void);
  3911. // 0x00000815 System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::get_WriteArrayAttribute()
  3912. extern void XmlNodeConverter_get_WriteArrayAttribute_m737D25004BAAC5C68D03F87F86059CAB60797492 (void);
  3913. // 0x00000816 System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::get_OmitRootObject()
  3914. extern void XmlNodeConverter_get_OmitRootObject_m71C19A6DA6F893636A53CF6948C52D8202A02777 (void);
  3915. // 0x00000817 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::WriteJson(Newtonsoft.Json.JsonWriter,System.Object,Newtonsoft.Json.JsonSerializer)
  3916. extern void XmlNodeConverter_WriteJson_mBA4C1C5629BE8E9842D5F523725653AD73DDCCF1 (void);
  3917. // 0x00000818 Newtonsoft.Json.Converters.IXmlNode Newtonsoft.Json.Converters.XmlNodeConverter::WrapXml(System.Object)
  3918. extern void XmlNodeConverter_WrapXml_m9238ECF3CD30390AC439D19AB9C2196A50DCC958 (void);
  3919. // 0x00000819 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::PushParentNamespaces(Newtonsoft.Json.Converters.IXmlNode,System.Xml.XmlNamespaceManager)
  3920. extern void XmlNodeConverter_PushParentNamespaces_m25F988DD210146A905B2FA5956E59EE40690BF54 (void);
  3921. // 0x0000081A System.String Newtonsoft.Json.Converters.XmlNodeConverter::ResolveFullName(Newtonsoft.Json.Converters.IXmlNode,System.Xml.XmlNamespaceManager)
  3922. extern void XmlNodeConverter_ResolveFullName_m8B92406BC8C58037E38BA681AECBCE629122077A (void);
  3923. // 0x0000081B System.String Newtonsoft.Json.Converters.XmlNodeConverter::GetPropertyName(Newtonsoft.Json.Converters.IXmlNode,System.Xml.XmlNamespaceManager)
  3924. extern void XmlNodeConverter_GetPropertyName_m5ED274786E622F7E388B1584E10A244D603566C8 (void);
  3925. // 0x0000081C System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::IsArray(Newtonsoft.Json.Converters.IXmlNode)
  3926. extern void XmlNodeConverter_IsArray_m93723C11D532EF6336B23994E93716222F62F1B2 (void);
  3927. // 0x0000081D System.Void Newtonsoft.Json.Converters.XmlNodeConverter::SerializeGroupedNodes(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Converters.IXmlNode,System.Xml.XmlNamespaceManager,System.Boolean)
  3928. extern void XmlNodeConverter_SerializeGroupedNodes_m7D23D156820BED141CACCDAD5E023E341E58D01F (void);
  3929. // 0x0000081E System.Void Newtonsoft.Json.Converters.XmlNodeConverter::SerializeNode(Newtonsoft.Json.JsonWriter,Newtonsoft.Json.Converters.IXmlNode,System.Xml.XmlNamespaceManager,System.Boolean)
  3930. extern void XmlNodeConverter_SerializeNode_mA16FD9512F38FD47692BCE048B7601D422BCF86F (void);
  3931. // 0x0000081F System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::AllSameName(Newtonsoft.Json.Converters.IXmlNode)
  3932. extern void XmlNodeConverter_AllSameName_mDA7292F44F9990C0BCDB3C6F7AD52B361BB00F5A (void);
  3933. // 0x00000820 System.Object Newtonsoft.Json.Converters.XmlNodeConverter::ReadJson(Newtonsoft.Json.JsonReader,System.Type,System.Object,Newtonsoft.Json.JsonSerializer)
  3934. extern void XmlNodeConverter_ReadJson_mBA8C5D49BBC513A9093FFE24EE5018EC9E21B92C (void);
  3935. // 0x00000821 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::DeserializeValue(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,System.Xml.XmlNamespaceManager,System.String,Newtonsoft.Json.Converters.IXmlNode)
  3936. extern void XmlNodeConverter_DeserializeValue_m5114B5035FE4916621192D58B721D69B0F226615 (void);
  3937. // 0x00000822 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::ReadElement(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,Newtonsoft.Json.Converters.IXmlNode,System.String,System.Xml.XmlNamespaceManager)
  3938. extern void XmlNodeConverter_ReadElement_m14BFF3357B1B67E3B60276F10BC670C73F0E0E7E (void);
  3939. // 0x00000823 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::CreateElement(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,Newtonsoft.Json.Converters.IXmlNode,System.String,System.Xml.XmlNamespaceManager,System.String,System.Collections.Generic.Dictionary`2<System.String,System.String>)
  3940. extern void XmlNodeConverter_CreateElement_m7B2ECDAC03912A479C0825975BE1E70980B96476 (void);
  3941. // 0x00000824 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::AddAttribute(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,Newtonsoft.Json.Converters.IXmlNode,System.String,System.Xml.XmlNamespaceManager,System.String)
  3942. extern void XmlNodeConverter_AddAttribute_m08696847E6BA459979494E83D903610C8C6A1001 (void);
  3943. // 0x00000825 System.String Newtonsoft.Json.Converters.XmlNodeConverter::ConvertTokenToXmlValue(Newtonsoft.Json.JsonReader)
  3944. extern void XmlNodeConverter_ConvertTokenToXmlValue_mEB28669007B09004326F17C12836C2D58DD9F8D4 (void);
  3945. // 0x00000826 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::ReadArrayElements(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,System.String,Newtonsoft.Json.Converters.IXmlNode,System.Xml.XmlNamespaceManager)
  3946. extern void XmlNodeConverter_ReadArrayElements_m9235C29CFD056C5F4B009894EF2079B0D56B0F4C (void);
  3947. // 0x00000827 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::AddJsonArrayAttribute(Newtonsoft.Json.Converters.IXmlElement,Newtonsoft.Json.Converters.IXmlDocument)
  3948. extern void XmlNodeConverter_AddJsonArrayAttribute_m9923000AAA706CC8E084166834FDD52BBBC517AA (void);
  3949. // 0x00000828 System.Collections.Generic.Dictionary`2<System.String,System.String> Newtonsoft.Json.Converters.XmlNodeConverter::ReadAttributeElements(Newtonsoft.Json.JsonReader,System.Xml.XmlNamespaceManager)
  3950. extern void XmlNodeConverter_ReadAttributeElements_mBA641B6BABCC34A71351249DF70FDBC55E0CEFD1 (void);
  3951. // 0x00000829 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::CreateInstruction(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,Newtonsoft.Json.Converters.IXmlNode,System.String)
  3952. extern void XmlNodeConverter_CreateInstruction_mD86936DAEF4F1C1E8A7060FB2AC6F2DA69CF4BDB (void);
  3953. // 0x0000082A System.Void Newtonsoft.Json.Converters.XmlNodeConverter::CreateDocumentType(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,Newtonsoft.Json.Converters.IXmlNode)
  3954. extern void XmlNodeConverter_CreateDocumentType_m2E978CCD06BAA7BA15D46ED2FB7AE16EAC53EC48 (void);
  3955. // 0x0000082B Newtonsoft.Json.Converters.IXmlElement Newtonsoft.Json.Converters.XmlNodeConverter::CreateElement(System.String,Newtonsoft.Json.Converters.IXmlDocument,System.String,System.Xml.XmlNamespaceManager)
  3956. extern void XmlNodeConverter_CreateElement_mE4370B24C648A67DC66876B51D023A6BD5F504DF (void);
  3957. // 0x0000082C System.Void Newtonsoft.Json.Converters.XmlNodeConverter::DeserializeNode(Newtonsoft.Json.JsonReader,Newtonsoft.Json.Converters.IXmlDocument,System.Xml.XmlNamespaceManager,Newtonsoft.Json.Converters.IXmlNode)
  3958. extern void XmlNodeConverter_DeserializeNode_m368070E70936DF7E2ECE03D597466948B2EFC97E (void);
  3959. // 0x0000082D System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::IsNamespaceAttribute(System.String,System.String&)
  3960. extern void XmlNodeConverter_IsNamespaceAttribute_mB7B15524CE1CEF49989BEAC2FBAB12030D788F33 (void);
  3961. // 0x0000082E System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::ValueAttributes(System.Collections.Generic.List`1<Newtonsoft.Json.Converters.IXmlNode>)
  3962. extern void XmlNodeConverter_ValueAttributes_m186E6DC3376890B15F11882CEE0B5227966B1764 (void);
  3963. // 0x0000082F System.Boolean Newtonsoft.Json.Converters.XmlNodeConverter::CanConvert(System.Type)
  3964. extern void XmlNodeConverter_CanConvert_m1BE9B59CABD7F782B6EC2281C0DFBB6ACA5518E6 (void);
  3965. // 0x00000830 System.Void Newtonsoft.Json.Converters.XmlNodeConverter::.ctor()
  3966. extern void XmlNodeConverter__ctor_mAC1F1A4A0736AD126AF65B5092ACF5CFD31DF1D7 (void);
  3967. // 0x00000831 System.Void Newtonsoft.Json.Bson.BsonBinaryWriter::.cctor()
  3968. extern void BsonBinaryWriter__cctor_m07911344800C9E35A88D5AE60B7E4D70DFE30499 (void);
  3969. // 0x00000832 System.DateTimeKind Newtonsoft.Json.Bson.BsonReader::get_DateTimeKindHandling()
  3970. extern void BsonReader_get_DateTimeKindHandling_m0595AA06CB4A94E0D2AFDE6446AC6EAE2AC4AE2E (void);
  3971. // 0x00000833 System.String Newtonsoft.Json.Bson.BsonReader::ReadElement()
  3972. extern void BsonReader_ReadElement_mDE4AFF9D407EE51432F283D9B375B024416F80B5 (void);
  3973. // 0x00000834 System.Boolean Newtonsoft.Json.Bson.BsonReader::Read()
  3974. extern void BsonReader_Read_mB388663F878286E48CF800AE33C4EF5A75391F79 (void);
  3975. // 0x00000835 System.Boolean Newtonsoft.Json.Bson.BsonReader::ReadCodeWScope()
  3976. extern void BsonReader_ReadCodeWScope_m2CA16ABE57A2F7CE5E479814D8C640426783A7CF (void);
  3977. // 0x00000836 System.Boolean Newtonsoft.Json.Bson.BsonReader::ReadReference()
  3978. extern void BsonReader_ReadReference_m64E7F080D2601F94D8F9294D3E1D05DA9752D0ED (void);
  3979. // 0x00000837 System.Boolean Newtonsoft.Json.Bson.BsonReader::ReadNormal()
  3980. extern void BsonReader_ReadNormal_m0F00D91FFF132C13D92D98BE4D075C627986506E (void);
  3981. // 0x00000838 System.Void Newtonsoft.Json.Bson.BsonReader::PopContext()
  3982. extern void BsonReader_PopContext_mBF6B48A8E75C1BB4887F36B6C29F33AA309EBD7A (void);
  3983. // 0x00000839 System.Void Newtonsoft.Json.Bson.BsonReader::PushContext(Newtonsoft.Json.Bson.BsonReader/ContainerContext)
  3984. extern void BsonReader_PushContext_m1D34A43D6E844F80C6818C3AECF45D711D69A432 (void);
  3985. // 0x0000083A System.Byte Newtonsoft.Json.Bson.BsonReader::ReadByte()
  3986. extern void BsonReader_ReadByte_mFFECD2A9F76B48A7187D309AB4C5FD74314B62E2 (void);
  3987. // 0x0000083B System.Void Newtonsoft.Json.Bson.BsonReader::ReadType(Newtonsoft.Json.Bson.BsonType)
  3988. extern void BsonReader_ReadType_m2936A16744BE5816700C3EC1597F305AB480F60D (void);
  3989. // 0x0000083C System.Byte[] Newtonsoft.Json.Bson.BsonReader::ReadBinary(Newtonsoft.Json.Bson.BsonBinaryType&)
  3990. extern void BsonReader_ReadBinary_m9CB4263EB40B9F18E509203097756E2AC98858F8 (void);
  3991. // 0x0000083D System.String Newtonsoft.Json.Bson.BsonReader::ReadString()
  3992. extern void BsonReader_ReadString_m19AD6F229CE098C85AB38B5AAD4A5A1FD516D328 (void);
  3993. // 0x0000083E System.String Newtonsoft.Json.Bson.BsonReader::ReadLengthString()
  3994. extern void BsonReader_ReadLengthString_mB37FFA27CF516253BE556AF33F0BF7A29B537D42 (void);
  3995. // 0x0000083F System.String Newtonsoft.Json.Bson.BsonReader::GetString(System.Int32)
  3996. extern void BsonReader_GetString_mF0D9F9A653BC0DA9C1664231967C83998C8039F3 (void);
  3997. // 0x00000840 System.Int32 Newtonsoft.Json.Bson.BsonReader::GetLastFullCharStop(System.Int32)
  3998. extern void BsonReader_GetLastFullCharStop_m0AFEE15BEEA99A8B82C9717E52286D212D4C86A6 (void);
  3999. // 0x00000841 System.Int32 Newtonsoft.Json.Bson.BsonReader::BytesInSequence(System.Byte)
  4000. extern void BsonReader_BytesInSequence_m8A3C2B3E9BA7F5EB7EF9E750F26BBA272F57834B (void);
  4001. // 0x00000842 System.Void Newtonsoft.Json.Bson.BsonReader::EnsureBuffers()
  4002. extern void BsonReader_EnsureBuffers_m9164C7E6A3B5B82E232AE5B1792067AD0AE3999A (void);
  4003. // 0x00000843 System.Double Newtonsoft.Json.Bson.BsonReader::ReadDouble()
  4004. extern void BsonReader_ReadDouble_mBF56F4DE96244EFB1B8023A888CA1282F9CD59A5 (void);
  4005. // 0x00000844 System.Int32 Newtonsoft.Json.Bson.BsonReader::ReadInt32()
  4006. extern void BsonReader_ReadInt32_mA95E701304583AB80CAE34F30467740FFBE5652C (void);
  4007. // 0x00000845 System.Int64 Newtonsoft.Json.Bson.BsonReader::ReadInt64()
  4008. extern void BsonReader_ReadInt64_mD603BF08D9B3BAA9B34D89F2C87BB27E903B9ADD (void);
  4009. // 0x00000846 Newtonsoft.Json.Bson.BsonType Newtonsoft.Json.Bson.BsonReader::ReadType()
  4010. extern void BsonReader_ReadType_mCE638142C2694B12143F44909A3DB0437057F59A (void);
  4011. // 0x00000847 System.Void Newtonsoft.Json.Bson.BsonReader::MovePosition(System.Int32)
  4012. extern void BsonReader_MovePosition_m0726085A8E52CF88744910114579E11ACE7F1B4E (void);
  4013. // 0x00000848 System.Byte[] Newtonsoft.Json.Bson.BsonReader::ReadBytes(System.Int32)
  4014. extern void BsonReader_ReadBytes_mB38AA084F3273E5B859330EA3B22F24BD24CC7A1 (void);
  4015. // 0x00000849 System.Void Newtonsoft.Json.Bson.BsonReader::.cctor()
  4016. extern void BsonReader__cctor_m1DA0AE3C79441D1EAD760C271A1BD38684DD6352 (void);
  4017. // 0x0000084A System.Void Newtonsoft.Json.Bson.BsonReader/ContainerContext::.ctor(Newtonsoft.Json.Bson.BsonType)
  4018. extern void ContainerContext__ctor_mF86EB449E15CDE1475F14AED4BAB8ED211B11538 (void);
  4019. // 0x0000084B Newtonsoft.Json.Bson.BsonType Newtonsoft.Json.Bson.BsonToken::get_Type()
  4020. // 0x0000084C System.Void Newtonsoft.Json.Bson.BsonToken::set_Parent(Newtonsoft.Json.Bson.BsonToken)
  4021. extern void BsonToken_set_Parent_mF1903E757DE89AD31D0FA3A5F7253E520DBA4F5D (void);
  4022. // 0x0000084D System.Void Newtonsoft.Json.Bson.BsonToken::.ctor()
  4023. extern void BsonToken__ctor_m4F48E98A0D8935D035B1F89F16D5D2AF715D0341 (void);
  4024. // 0x0000084E System.Void Newtonsoft.Json.Bson.BsonObject::Add(System.String,Newtonsoft.Json.Bson.BsonToken)
  4025. extern void BsonObject_Add_m41EE6341357A27F19CBD978A94A87613FD94AF9D (void);
  4026. // 0x0000084F Newtonsoft.Json.Bson.BsonType Newtonsoft.Json.Bson.BsonObject::get_Type()
  4027. extern void BsonObject_get_Type_m2299266669BB373185FA94AD969EAD340A3CC20E (void);
  4028. // 0x00000850 System.Collections.Generic.IEnumerator`1<Newtonsoft.Json.Bson.BsonProperty> Newtonsoft.Json.Bson.BsonObject::GetEnumerator()
  4029. extern void BsonObject_GetEnumerator_m686F0934D72BAE348298C1A05DCE7F9E32B27574 (void);
  4030. // 0x00000851 System.Collections.IEnumerator Newtonsoft.Json.Bson.BsonObject::System.Collections.IEnumerable.GetEnumerator()
  4031. extern void BsonObject_System_Collections_IEnumerable_GetEnumerator_m4AEBE8D9E4ADE694D3BFCE4DE8BAB983B1CB0CD7 (void);
  4032. // 0x00000852 System.Void Newtonsoft.Json.Bson.BsonObject::.ctor()
  4033. extern void BsonObject__ctor_m21D635FB8188D3B4ACBB55E41A21F09A2AC869A2 (void);
  4034. // 0x00000853 System.Void Newtonsoft.Json.Bson.BsonArray::Add(Newtonsoft.Json.Bson.BsonToken)
  4035. extern void BsonArray_Add_m9034C3D51CCA2A743265F8A102F3F5B3480899AA (void);
  4036. // 0x00000854 Newtonsoft.Json.Bson.BsonType Newtonsoft.Json.Bson.BsonArray::get_Type()
  4037. extern void BsonArray_get_Type_m1ED8769B228EED6CB2F7465021772208C58264BD (void);
  4038. // 0x00000855 System.Collections.Generic.IEnumerator`1<Newtonsoft.Json.Bson.BsonToken> Newtonsoft.Json.Bson.BsonArray::GetEnumerator()
  4039. extern void BsonArray_GetEnumerator_m429FEA714DAE5447F8C936E9C8D7A57E307A47D5 (void);
  4040. // 0x00000856 System.Collections.IEnumerator Newtonsoft.Json.Bson.BsonArray::System.Collections.IEnumerable.GetEnumerator()
  4041. extern void BsonArray_System_Collections_IEnumerable_GetEnumerator_mA452F4368F9F4E5D995860EA54A1BB3A91CA86F2 (void);
  4042. // 0x00000857 System.Void Newtonsoft.Json.Bson.BsonArray::.ctor()
  4043. extern void BsonArray__ctor_m026B7ED6AFF18F3675FB04D27C5DBA2F29606536 (void);
  4044. // 0x00000858 System.Void Newtonsoft.Json.Bson.BsonValue::.ctor(System.Object,Newtonsoft.Json.Bson.BsonType)
  4045. extern void BsonValue__ctor_mAC6CDAE3CEE5F862A67FC78A2A8380EE22289C1A (void);
  4046. // 0x00000859 Newtonsoft.Json.Bson.BsonType Newtonsoft.Json.Bson.BsonValue::get_Type()
  4047. extern void BsonValue_get_Type_mEEDA7D6AEE0F6D370403469B24BAFF4870BCC47F (void);
  4048. // 0x0000085A System.Void Newtonsoft.Json.Bson.BsonString::set_IncludeLength(System.Boolean)
  4049. extern void BsonString_set_IncludeLength_m9E75114EFC4A6989393AD0E192195472E2F51DC0 (void);
  4050. // 0x0000085B System.Void Newtonsoft.Json.Bson.BsonString::.ctor(System.Object,System.Boolean)
  4051. extern void BsonString__ctor_m5C4541C59E36837AE0722E26E54FA5CD4BB6CABD (void);
  4052. // 0x0000085C System.Void Newtonsoft.Json.Bson.BsonRegex::set_Pattern(Newtonsoft.Json.Bson.BsonString)
  4053. extern void BsonRegex_set_Pattern_mB160A3C21D060ADEA41779C1FD8C9FF7A2548B0D (void);
  4054. // 0x0000085D System.Void Newtonsoft.Json.Bson.BsonRegex::set_Options(Newtonsoft.Json.Bson.BsonString)
  4055. extern void BsonRegex_set_Options_m5DE974D5ED8494B152F0299FDCD84BC9A9901B3E (void);
  4056. // 0x0000085E System.Void Newtonsoft.Json.Bson.BsonRegex::.ctor(System.String,System.String)
  4057. extern void BsonRegex__ctor_mC924041903F75D3CA82ED0FB39F5D439B481F886 (void);
  4058. // 0x0000085F Newtonsoft.Json.Bson.BsonType Newtonsoft.Json.Bson.BsonRegex::get_Type()
  4059. extern void BsonRegex_get_Type_mDFDC57B2544A90E9CC1879CE497E01582FACACC5 (void);
  4060. // 0x00000860 System.Void Newtonsoft.Json.Bson.BsonProperty::set_Name(Newtonsoft.Json.Bson.BsonString)
  4061. extern void BsonProperty_set_Name_mF1364B61018186F132F7F955E7A3853660A02BDA (void);
  4062. // 0x00000861 System.Void Newtonsoft.Json.Bson.BsonProperty::set_Value(Newtonsoft.Json.Bson.BsonToken)
  4063. extern void BsonProperty_set_Value_m36476CB085BE55F31E9684DE24C78493D5565FF8 (void);
  4064. // 0x00000862 System.Void Newtonsoft.Json.Bson.BsonProperty::.ctor()
  4065. extern void BsonProperty__ctor_mA8269DDEE08A8D0120B2547DA7D26612D610A45B (void);
  4066. // 0x00000863 System.Void Newtonsoft.Json.Bson.BsonWriter::AddValue(System.Object,Newtonsoft.Json.Bson.BsonType)
  4067. extern void BsonWriter_AddValue_m1DCA23DE9224556C8D41EB982C752431F620C30B (void);
  4068. // 0x00000864 System.Void Newtonsoft.Json.Bson.BsonWriter::AddToken(Newtonsoft.Json.Bson.BsonToken)
  4069. extern void BsonWriter_AddToken_m859593957914774D110851593E2D3798C1D5B3DB (void);
  4070. // 0x00000865 System.Void Newtonsoft.Json.Bson.BsonWriter::WriteObjectId(System.Byte[])
  4071. extern void BsonWriter_WriteObjectId_m0D1E76B8032B120826F272DB2B0949217378DBC6 (void);
  4072. // 0x00000866 System.Void Newtonsoft.Json.Bson.BsonWriter::WriteRegex(System.String,System.String)
  4073. extern void BsonWriter_WriteRegex_mCB617628EA81B2B20BCD49E3C350B26B18E4535B (void);
  4074. // 0x00000867 System.Byte[] Newtonsoft.Json.Bson.BsonObjectId::get_Value()
  4075. extern void BsonObjectId_get_Value_m4A41850BE695F6CE832434CC5D2680BF05B97225 (void);
  4076. // 0x00000868 System.Void Newtonsoft.Json.Bson.BsonObjectId::set_Value(System.Byte[])
  4077. extern void BsonObjectId_set_Value_m6C376E02BB87D4A0E326085EF3E122F03FCF1D69 (void);
  4078. // 0x00000869 System.Void Newtonsoft.Json.Bson.BsonObjectId::.ctor(System.Byte[])
  4079. extern void BsonObjectId__ctor_mB846236CBD08D1F914E5B8248C50E0CAB10930E9 (void);
  4080. static Il2CppMethodPointer s_methodPointers[2153] =
  4081. {
  4082. AddingNewEventArgs_get_NewObject_m8CDAF2FF5DA636B056CCB155AE6E6BF964017ED8,
  4083. AddingNewEventArgs__ctor_m88364B901640F3C6167BDBED6B4E7C8955A07066,
  4084. AddingNewEventHandler__ctor_mFCBF17771C798B3A2AC46C40000F1F49FE19E33F,
  4085. AddingNewEventHandler_Invoke_mFF7E1696FC3C5B0C742E41EC735BA3DBB47E057D,
  4086. NotifyCollectionChangedEventHandler__ctor_mCCA7833B536F236C1DA9D0732E1E38B95B1DB404,
  4087. NotifyCollectionChangedEventHandler_Invoke_mDE4E95A6ABB7C37680CF0605BF9AC94323EFDFA3,
  4088. PropertyChangingEventArgs__ctor_m8566781D0A15DEF5C3D9CE71AFABEECF77FA11D2,
  4089. PropertyChangingEventArgs_set_PropertyName_m5B47E750B50AF495F1189E8A9581B56D05D1B9F3,
  4090. PropertyChangingEventHandler__ctor_m61E1AE21DA242FA953C04BA8BBEAE8343E09F4CB,
  4091. PropertyChangingEventHandler_Invoke_m25C8C58D60F321B949327B4A3161A2DFCBBB95C0,
  4092. NULL,
  4093. NULL,
  4094. JsonConstructorAttribute__ctor_m190C7B9013A7CD5102CE05BCEA04B262EEC1D06E,
  4095. JsonDictionaryAttribute__ctor_m9579A51EBA886F9E50CE29F037B0F7E3CBDCED31,
  4096. JsonException__ctor_m4B89CC156A90FEB6590293B8345A29C4A3AF2F61,
  4097. JsonException__ctor_mC1855E8561781A110D7242742AD17C18B1E2ACD5,
  4098. JsonException__ctor_m5BC13634D631AA9D03E3A6E50539784F6F69461D,
  4099. JsonException__ctor_mEA891D09EA66922D82EA420BC5C3A5EA1CD34429,
  4100. JsonExtensionDataAttribute_get_WriteData_m06EB62EA0887666777EEAB325DFDC0183AD29F8B,
  4101. JsonExtensionDataAttribute_set_WriteData_m0C68690434C00E441B94677723E5F3D5794AD077,
  4102. JsonExtensionDataAttribute_get_ReadData_mE8CF73A938D31EE6D74642BAFB18263FAAE478EC,
  4103. JsonExtensionDataAttribute_set_ReadData_m12AB84F205B4B7B420544E13FEF72C72C284A22D,
  4104. JsonExtensionDataAttribute__ctor_m3929383CA28F0702AFEFAFFCC04B8540ABB65A18,
  4105. JsonPosition__ctor_m4868A41B46D621B1AE7623D78E06D597F6927676,
  4106. JsonPosition_CalculateLength_m96F71F2F79B8364BFA0C784570D6CE772D156844,
  4107. JsonPosition_WriteTo_m6A3A496BA745EE52275BE810800B17DAB2B79140,
  4108. JsonPosition_TypeHasIndex_m6B45E13F519BBBBF6625EDBA3EB7374B4A33B439,
  4109. JsonPosition_BuildPath_mD1C39DF63A6A7B523814601A0AE397050B997099,
  4110. JsonPosition_FormatMessage_m67B75B828B5C6B8607C660494A4E03746A7E49C7,
  4111. JsonPosition__cctor_m33A921E69823A75BF8DF1998564A2A000D4C97D9,
  4112. JsonRequiredAttribute__ctor_mC953A8CBE5252F7A51705129DF3A33E3155DCAE8,
  4113. NULL,
  4114. NULL,
  4115. NULL,
  4116. JsonArrayAttribute__ctor_m3050D9FECB94B4CFC98B96544A2F809AC1812114,
  4117. JsonContainerAttribute_get_ItemConverterType_m77ADA5BB713A3B7B4F5F08A679FC5020DEAF8A6D,
  4118. JsonContainerAttribute_get_ItemConverterParameters_m470D1EB8AF068AEA616D811A96D61F8CE2FFE4F6,
  4119. JsonContainerAttribute__ctor_mAA82866214D75C398CF712544390ED3CB61EB282,
  4120. JsonConverterAttribute_get_ConverterType_m4493352ECD33A4991AEA2B90BE9B1A8A397A90EC,
  4121. JsonConverterAttribute_get_ConverterParameters_mC2C4BD4D4E90D3646D571C7B0F2D6EFFB93C95DA,
  4122. JsonObjectAttribute_get_MemberSerialization_mC1251A664FD1EFFB430AE5935E20DEFC5B01543A,
  4123. JsonObjectAttribute__ctor_m68C59F07EF00388CD6146750EE8A6721D9BB4B3B,
  4124. JsonSerializerSettings_get_ReferenceLoopHandling_mE0AC27809ED641B0E18CC9E536E9CD5B42CDAA4C,
  4125. JsonSerializerSettings_get_MissingMemberHandling_m6385A7576D28D9D9277816476A37769C9B27667E,
  4126. JsonSerializerSettings_get_ObjectCreationHandling_mEC581687287DADA94F0AA0545ABDAE18949D84A5,
  4127. JsonSerializerSettings_get_NullValueHandling_m1D1AC290FF9F4F390128B2327ED3F81EE979B7C2,
  4128. JsonSerializerSettings_get_DefaultValueHandling_mD2EAE09E6A671F812DDEA60DB23BCB9377534F9D,
  4129. JsonSerializerSettings_get_Converters_mA00CF4ADB3030560B25C39E09CB4E60959686B54,
  4130. JsonSerializerSettings_set_Converters_mF0693DE4BF4F0B7A8C46166C005CEEBEAF2F5020,
  4131. JsonSerializerSettings_get_PreserveReferencesHandling_m40AD87AF8549E3D4DF02321CC09D969CE331D6D2,
  4132. JsonSerializerSettings_get_TypeNameHandling_m4CB08F2D2E4CF379CFEBB3A5E686525C73DF33F3,
  4133. JsonSerializerSettings_get_MetadataPropertyHandling_m1979A9CBD9D1AA8B8A7C018A901DB13E2F730755,
  4134. JsonSerializerSettings_get_TypeNameAssemblyFormat_mE170FB6EE981C3B047B5372E8226F9DB2B42186C,
  4135. JsonSerializerSettings_get_ConstructorHandling_mF191C558F9D3DD3E6F16D1CA697A19D317983E62,
  4136. JsonSerializerSettings_get_ContractResolver_mBD4B6EB0FF6E4D2AD555D608DB4F1CC61FB008B0,
  4137. JsonSerializerSettings_get_EqualityComparer_m99252972A34785A2C5DD3E6A511B1EF1A888D308,
  4138. JsonSerializerSettings_get_ReferenceResolverProvider_m85D17CA36AF71116F9D42BB35A61CAD4D6DEEC8A,
  4139. JsonSerializerSettings_get_TraceWriter_m77632A4CC8BEAE58EC2A46E9A68B6DD3381E374B,
  4140. JsonSerializerSettings_get_Binder_m1621198D4CA03E3E4ED0D8E8C55D1A1265D25E72,
  4141. JsonSerializerSettings_get_Error_mB587C84D7EA7E875E78FF03979FF29325877B5F0,
  4142. JsonSerializerSettings_get_Context_m9ACE6D1551F69B989DCB35A6BAAE8F036C02DAA7,
  4143. JsonSerializerSettings__cctor_mF3F8EA348A4FB2F3B66BB67E1108680375E6053C,
  4144. JsonSerializerSettings__ctor_m860202A96247500DEA27E99173C924933C9D14C5,
  4145. U3CU3Ec__DisplayClass90_0__ctor_mEB76F3955B036C72D1DEC286FDAE082BE9823736,
  4146. JsonTextReader__ctor_m4EA779A439E3279744CC5975F082A72FA7C4F9F6,
  4147. JsonTextReader_EnsureBufferNotEmpty_m2010CFC68DD51BA2EF265A7D97E6D733DAAB6FC6,
  4148. JsonTextReader_OnNewLine_mB2C9F4B2B36BCE296F9AB9664B34C37E1438EE27,
  4149. JsonTextReader_ParseString_m89A6EFC87E4098931A4D9E4729CF05D84E915710,
  4150. JsonTextReader_BlockCopyChars_mA4C2C133F6182DF026ABA40A8962E7044C49F029,
  4151. JsonTextReader_ShiftBufferIfNeeded_m77440A8B645FD2624AF5CD9FDE89D5A2E5222C3E,
  4152. JsonTextReader_ReadData_mC0700121E006F38F0105E57C24A32793EC141064,
  4153. JsonTextReader_ReadData_m1215C69C79CE9CCFE01EEF5CA79F49E5FD26BD2F,
  4154. JsonTextReader_EnsureChars_mB9E3A34D5317A994C6B2D83B6E9F4AC5D02FD8B5,
  4155. JsonTextReader_ReadChars_mB330832AC3779C561DCD8962A51A9D3D3DCBB5AD,
  4156. JsonTextReader_Read_m599FFBCC9B6EACBEA2625BE77D02254B5B9D711F,
  4157. JsonTextReader_ReadAsInt32_m9A464F41F8BFF7F5B596D2D5D96299A2AAC00D6F,
  4158. JsonTextReader_ReadAsDateTime_m77FAC98EFA411E73488F4AC72442E9D457BBB413,
  4159. JsonTextReader_ReadAsString_m0883EBE386AF7F180006694C47E8771DBED61FE6,
  4160. JsonTextReader_ReadAsBytes_m4DDA04D764CF6DCA921F25B73C1A40C10C08C17C,
  4161. JsonTextReader_ReadStringValue_mD53E0B00528762928C4C09571D6FD13F095D51A6,
  4162. JsonTextReader_CreateUnexpectedCharacterException_m771032A05177B519414F662097A33C7073DE7442,
  4163. JsonTextReader_ReadAsBoolean_m7F1BC542958BA212D808297FE7F18C6F1CEBF53A,
  4164. JsonTextReader_ProcessValueComma_m433230420DD9DFC98CAA3783952C8B375F1CE937,
  4165. JsonTextReader_ReadNumberValue_m360026532BB5DE16AED9F2B2F131A63FB1E12FCC,
  4166. JsonTextReader_ReadAsDateTimeOffset_m0BE5CC8DB46CE8AA0C195ABB21D012F7D0BC4557,
  4167. JsonTextReader_ReadAsDecimal_m8FAFCFB2F2320A3A24314410AA0F70D0439006FB,
  4168. JsonTextReader_ReadAsDouble_mF13545134B6C0AA6E734FF38DF6AD52BB146A60A,
  4169. JsonTextReader_HandleNull_m3BCD5FC00622DE82A4C9B837DE671C33655432BC,
  4170. JsonTextReader_ReadFinished_m50B733FF9915FD46E8A6564334BF7710280933F6,
  4171. JsonTextReader_ReadNullChar_m0A40E1F44133DA978CB0D8307852C6301EFDE525,
  4172. JsonTextReader_EnsureBuffer_m92C6BCBFD83E0E18BEB0E4DCA4447BACBC1A67C8,
  4173. JsonTextReader_ReadStringIntoBuffer_mA62F7BA4CD568DCBBD493AF3E5D83670CA84B099,
  4174. JsonTextReader_WriteCharToBuffer_m7E2ECACAA13B268E4575774FC9954BB7823AD125,
  4175. JsonTextReader_ParseUnicode_mC97CBFD819724BEEB1EDB16C34E61FBD440AF33F,
  4176. JsonTextReader_ReadNumberIntoBuffer_m0F17D644594B318404ACE4A2B0D77F6AD14743DF,
  4177. JsonTextReader_ClearRecentString_mD8D348DED3D630F08A031683301B45629B6CAB40,
  4178. JsonTextReader_ParsePostValue_m32C7D5C870A4D6D09A11A6DB6FC15C08D7190134,
  4179. JsonTextReader_ParseObject_mF375CFCBBF8BA0AF2DAA492C3F6A229A30111E30,
  4180. JsonTextReader_ParseProperty_m6412AE24E701B94414B68D10C4F7FA04D5BA21E4,
  4181. JsonTextReader_ValidIdentifierChar_mC45BC6949B19E9C6D4D8A6632F43C7BF2BA88806,
  4182. JsonTextReader_ParseUnquotedProperty_m36F0B486DB5317E95179BE3AD10DC8884494B208,
  4183. JsonTextReader_ParseValue_mE51E6DB53C71E5545B2DF77C3E0ECF504A3731B5,
  4184. JsonTextReader_ProcessLineFeed_m7179533A538E37EC9E5CBEB161368CEFC0B591E4,
  4185. JsonTextReader_ProcessCarriageReturn_m45BE0E72684A56330C805F91F9C38C667E02FF5F,
  4186. JsonTextReader_EatWhitespace_m5286AF86A88809BB516341B787AEAFE21FF37B46,
  4187. JsonTextReader_ParseConstructor_mAAF77FD42B708414CC398777163ECBD17D1D598F,
  4188. JsonTextReader_ParseNumber_m32EF5E0773E2376EF80A9A69630AD4B280D7F21B,
  4189. JsonTextReader_ParseComment_mA71954C1BA3E82D22D0884F40A9A0D54ECDAF9D8,
  4190. JsonTextReader_EndComment_m0E736C0EEE0E09AF55826F3DBC15327D797A256E,
  4191. JsonTextReader_MatchValue_m3F1039064A846D85D1C5F9CE3DE357DB491E166B,
  4192. JsonTextReader_MatchValueWithTrailingSeparator_m7614543471055DB2B8B55EA7EF33788AE264480B,
  4193. JsonTextReader_IsSeparator_mE5BB03D7223758BDF62292C085F475FD3194827A,
  4194. JsonTextReader_ParseTrue_mA277074BE6CFCC133BC5ABF98546D23AFC18591A,
  4195. JsonTextReader_ParseNull_m04BE9B77A27716EFD7DA1A97D0B19965AE730DF4,
  4196. JsonTextReader_ParseUndefined_m899AF32F3F3E68269F375795991D660BA72A60AE,
  4197. JsonTextReader_ParseFalse_mDC74059B07E573550C0C378F7AA142DD014A7ECA,
  4198. JsonTextReader_ParseNumberNegativeInfinity_mB6CA091B0D139C81626AC2B856B4C6914139B628,
  4199. JsonTextReader_ParseNumberPositiveInfinity_m8E63874F3FDB7182342069FCFE99FC3380BA3056,
  4200. JsonTextReader_ParseNumberNaN_mF424378A04C9FF2FF956DAA38BDB0BE86308FDA7,
  4201. JsonTextReader_Close_mB26DB329C3CC60E3BCD7338BC508EAAF4F99D501,
  4202. JsonTextReader_HasLineInfo_m114A3878890916AFE81628A55CCEBC5AF0D73CA3,
  4203. JsonTextReader_get_LineNumber_m733E76FB72F6C58AFF8988391A97067ABBBF11E1,
  4204. JsonTextReader_get_LinePosition_m7D0E89005BE778577AE9284006F7CFE2903DEF8C,
  4205. JsonPropertyAttribute_get_ItemConverterType_mAF933B5D8DDA82F16FA6C0C913011F51599225C4,
  4206. JsonPropertyAttribute_get_ItemConverterParameters_m99B1731F2F52670ECF7AC47E89EDFB76FA2DFE06,
  4207. JsonPropertyAttribute_get_PropertyName_mDD706D7EC82D671615F110B8167E2319169FE175,
  4208. JsonPropertyAttribute__ctor_m370AFADE62BF3CFAB5E8E26112EC34EE95C3A242,
  4209. JsonIgnoreAttribute__ctor_m087D7BF8CFF19ADDFF923EE01EFCDD1140E102F7,
  4210. JsonTextWriter_get_Base64Encoder_mDFA6C2C7D165D830AA5D436E3C08098DC8D9AF23,
  4211. JsonTextWriter_get_QuoteChar_m80EB6DFE5F61608DDC1645593F126A30FABC0071,
  4212. JsonTextWriter__ctor_mA83D58BF6519B55B57C479F293E3643EA6935D3A,
  4213. JsonTextWriter_Close_m786614F24E99BD26BA8A6DB88593547ED5FE5781,
  4214. JsonTextWriter_WriteStartObject_mC2528B9248DF7491103F098A9A5A71192C35AC79,
  4215. JsonTextWriter_WriteStartArray_mF0DDF658F69DD3F081729B6CE36AB173D8EA6152,
  4216. JsonTextWriter_WriteStartConstructor_m4DA15F20CD8A962085BCF4C4DABD7C3478A5A3B6,
  4217. JsonTextWriter_WriteEnd_m492C5EA658E05A68346AA13C4C85563D813E80ED,
  4218. JsonTextWriter_WritePropertyName_mABFC4B1E03233FD192636DCB32B5A062DEBCDA20,
  4219. JsonTextWriter_WritePropertyName_m6186077E4ADB40A6B81C50C77581BCFD95BBB991,
  4220. JsonTextWriter_OnStringEscapeHandlingChanged_m92AE9564120DF80AAD7B9B20C8B32B9F4BFD95A2,
  4221. JsonTextWriter_UpdateCharEscapeFlags_mE255E5131169B0ED48002B3AE564A3C37FE15243,
  4222. JsonTextWriter_WriteIndent_mBD11CBAFE1C28AE89580CDE3D4F48EA6D1E0B530,
  4223. JsonTextWriter_WriteValueDelimiter_mF7949EEB7A978E2EB2E5C3799BB069428B7F0D01,
  4224. JsonTextWriter_WriteIndentSpace_m9F1FB356F35F766D088B61DE700F0CB5D4FFDCD2,
  4225. JsonTextWriter_WriteValueInternal_mFD5B4BF541B85770C7A072BC610FEA5DAEFCE2B9,
  4226. JsonTextWriter_WriteValue_mB294E00A9164EC218D4AE79C3A17C8802A814FD4,
  4227. JsonTextWriter_WriteNull_m4C142F71CBBAFD920F2163CF6B75CA5B2BCCAAB6,
  4228. JsonTextWriter_WriteUndefined_mD9FF7667F45E7F251B28F09420D81768BE5E1A0F,
  4229. JsonTextWriter_WriteRaw_m4F2463662FB06513FF2443E858A4DCCB6474DB88,
  4230. JsonTextWriter_WriteValue_m7B5E8E789B1988179BB5316ABA12E613EBD11F51,
  4231. JsonTextWriter_WriteEscapedString_m6F65B51628AE4DE30FB87B6DD90010EAD90F6E41,
  4232. JsonTextWriter_WriteValue_mE62C8256B429832C4B881507B19F42CF1CD9C108,
  4233. JsonTextWriter_WriteValue_m3981F870E8AAE30E7AF1ECED246145F064A241C8,
  4234. JsonTextWriter_WriteValue_m1BCF99B171CFD1DF066955A7905CE0163174529C,
  4235. JsonTextWriter_WriteValue_mE2BF2C318D26E13AC0E2CCFB2C7EDEE972DE0450,
  4236. JsonTextWriter_WriteValue_m8FD356BDDB595FA685BA219ECA78F3A5935BEB85,
  4237. JsonTextWriter_WriteValue_mD9013751FD25BC0F0F771BFFDA7765C2701B4ED8,
  4238. JsonTextWriter_WriteValue_m77176BA4ABE844C5C729729C825CD7098204279A,
  4239. JsonTextWriter_WriteValue_mF9BC04F3F3C701AC0BBA369FC1671DBDD257B9CF,
  4240. JsonTextWriter_WriteValue_mAE38412EA7638942449BA9DEA0901FBA480A67B1,
  4241. JsonTextWriter_WriteValue_m1E85C44C806CA469F47AA9DEAE7C40B71E3FAC9C,
  4242. JsonTextWriter_WriteValue_m665A93E51A94D73D6C977F1FE7D87AE86A7EDDF4,
  4243. JsonTextWriter_WriteValue_m3E64AFA11A5C90F459A7975D590E25BF7CC25E3C,
  4244. JsonTextWriter_WriteValue_m8EB07EE36B82AFD42EF9C9C6D44CF747497572BC,
  4245. JsonTextWriter_WriteValue_m589E9409A9A6FA78B00CF0B4F5905269AE59C6D6,
  4246. JsonTextWriter_WriteValue_mECD5873984F2C1A6BED51DA62FA05C0C9029E2B6,
  4247. JsonTextWriter_WriteValue_m3032AF39DBB5E7305229E381599F5472372A2B1D,
  4248. JsonTextWriter_WriteValue_m658AF7AB1CBB224B0C8DB53F4AC40DC7530BEEA2,
  4249. JsonTextWriter_WriteValue_m5C7E5225F586609EF7B2A4731E40782F922DDD24,
  4250. JsonTextWriter_WriteValue_m14B06DA1BE50AF4AE3A0CCE7A2AEF49C76F56F88,
  4251. JsonTextWriter_WriteValue_m881F2B43CDD9B5ED27CAADE54945B6F51667AC9A,
  4252. JsonTextWriter_WriteValue_m6E2706D9D1A808E7E484152642ED0596B5A85DCA,
  4253. JsonTextWriter_WriteComment_m0D21CD3970ED60CC6672A89209BD602EDA1D50AD,
  4254. JsonTextWriter_EnsureWriteBuffer_m4EA17A57A99A1E9CDF311FC215B9ECC366B28E71,
  4255. JsonTextWriter_WriteIntegerValue_m36FA103CCF2F839CD6A5158E31F02D606BADDEE4,
  4256. JsonTextWriter_WriteIntegerValue_mED385338B08D18ECC16577A5C36EB6817057FC2C,
  4257. JsonWriterException_set_Path_m7730DE4BEE3E03B961C923F211E0400903ED55F5,
  4258. JsonWriterException__ctor_m582E63E220A880E3339B907F1F23E5DF6E6D3794,
  4259. JsonWriterException__ctor_m9AD7F0F4F15DE6C01D98F6A5EFFA7025DAFFF955,
  4260. JsonWriterException__ctor_m2BE8EB30C7FB5E93CC76E8F071B976DC9690D1E5,
  4261. JsonWriterException_Create_m75343047EA3BC755156B034B868E1939F4A3ABED,
  4262. JsonWriterException_Create_m84A38EFC0C4066A1DE5C6736BB7910633DF11679,
  4263. JsonReaderException_set_LineNumber_m58D7F78EDF8E50EF1FABED396E0937E90FEB80E0,
  4264. JsonReaderException_set_LinePosition_mCA678F4B877AA9280AABE8360DC6FDF7A9767E35,
  4265. JsonReaderException_set_Path_m6B817BB33F36B9E8A46FB5E1BF5A9870C07D52F7,
  4266. JsonReaderException__ctor_mF7E8BD1AEBA6CB286A4143011880174D92DE07A9,
  4267. JsonReaderException__ctor_m162E25E41E4D4D1A6473A86EBDCC9A46C342100E,
  4268. JsonReaderException__ctor_mD43CD8B54C34BC62AFEAA8E35DC1C3D7C718E0FF,
  4269. JsonReaderException_Create_mA3B5AC4B595CA5539698FBC01F023F96AE187C10,
  4270. JsonReaderException_Create_m785CC1EA2CBB4B7DBB386ACDE459E35AF16A4578,
  4271. JsonReaderException_Create_mA5943063A731BCB5236B473BB1AC072EFF047E03,
  4272. NULL,
  4273. NULL,
  4274. NULL,
  4275. JsonConverter_get_CanRead_mE27FF46F007AF1F5D8AEEFA0776951CA82162072,
  4276. JsonConverter_get_CanWrite_mB4CAC742067B226F7C64D921FC94F53A31C9E571,
  4277. JsonConverter__ctor_m1A367AC36D92A6AD8CD5709145E88E0AA1571CAD,
  4278. JsonConverterCollection__ctor_mAB670A818B8439ADBF061CFA546139E16F323999,
  4279. JsonReader_get_CurrentState_m8FB45730B1CE10F0AE9896B9C3E1E41B6C744DAA,
  4280. JsonReader_get_CloseInput_mFC9D087DE0F24153A60267D29D68BC0029EE18CA,
  4281. JsonReader_set_CloseInput_m64F0E74600999FED53AAF37BC94032A112300D03,
  4282. JsonReader_get_SupportMultipleContent_mA0C1CF6F9F76F9F0264C1BA6ED94E6851BC82E1C,
  4283. JsonReader_set_SupportMultipleContent_mED9449233F147DC638CFAA3E5A5E61458141DF76,
  4284. JsonReader_get_DateTimeZoneHandling_mE150930B04BCF2BB8D51CD78B6E996AF6B303E55,
  4285. JsonReader_set_DateTimeZoneHandling_mB7395F060FAE13042375F808471D829F5BD3B78C,
  4286. JsonReader_get_DateParseHandling_mF03602DC0001F690202783AFEC907821E8EC5A9B,
  4287. JsonReader_set_DateParseHandling_m7DFBEDC3F1D148580848E7DA5D1D6896DCD34DFC,
  4288. JsonReader_get_FloatParseHandling_m7C53D98F88660340A0AF9842095A63664FC2AE90,
  4289. JsonReader_set_FloatParseHandling_m2E62EBC5DCA3F030C505E97A0DC12B66B15F6B68,
  4290. JsonReader_get_DateFormatString_m83150543948622351B852EA3A62907F90B3D73E6,
  4291. JsonReader_set_DateFormatString_mA1C14FA75F97E6E4DF12C0258AA7F1D8C74B39E7,
  4292. JsonReader_get_MaxDepth_mFE34316F52E4A76699B7B9E6439F3E8F564E7C88,
  4293. JsonReader_set_MaxDepth_m278051DCF6AF3982CD5F1F2FA6479E75D74D2EBA,
  4294. JsonReader_get_TokenType_mB0DF30D932B762B3ED6EC01EF3686AB73796BAC6,
  4295. JsonReader_get_Value_m94A77F5DE81D7C5A2D397CF41FE760760C096B93,
  4296. JsonReader_get_ValueType_m649EE8EC7DD3848AAEB0576D4C6A52DBE01CC314,
  4297. JsonReader_get_Depth_mB284B9E1E66D948D2ABA5CB3F9FBB5336441EF51,
  4298. JsonReader_get_Path_m7694F5F8581904EF1CC9B30CCBBD346FDBFD5305,
  4299. JsonReader_get_Culture_m5DBE4EA91621F8C845D76B9AF5348AB783A556F9,
  4300. JsonReader_set_Culture_mAF4C2967EC24FB1ED928136610AFDA204EEE715C,
  4301. JsonReader_GetPosition_m2BB5E5132A226A2D159A56323A439C9A71662E51,
  4302. JsonReader__ctor_mD15B973149B223A450420E1E3EC7C5648FF3070D,
  4303. JsonReader_Push_mE631FDAA728547741765EAA86B6687EFA7AFA315,
  4304. JsonReader_Pop_m5281B5CA4372F88DBC890923CA4114C2AB5C785B,
  4305. JsonReader_Peek_m72E5AC6AA0CCA5D8249CB75A4E70542968067167,
  4306. NULL,
  4307. JsonReader_ReadAsInt32_m4CFA54D7363F85EEDA2C5A45D01CF27972D5A0BA,
  4308. JsonReader_ReadInt32String_m241E4FF95FC6222BA903B9D563F369E8BBC9A9E6,
  4309. JsonReader_ReadAsString_m91D2388CFCD4F42F64FE058368079E2392C94506,
  4310. JsonReader_ReadAsBytes_m8F20E49BCB3FB058516C412CEE2D57D0A4AAF30A,
  4311. JsonReader_ReadArrayIntoByteArray_m453E3BA75FF4D078C59A30094A359C7799BC0DA9,
  4312. JsonReader_ReadAsDouble_m326759998E44B0658F15E29BFEB5E36A8F96509D,
  4313. JsonReader_ReadDoubleString_m01EC3D33CE23EF2807C80A19B95B2AE80D3943CF,
  4314. JsonReader_ReadAsBoolean_mE3ED026E5B82B12271012625C0577398A2842091,
  4315. JsonReader_ReadBooleanString_m998D6921BCA3EEC65EA1D7DD2AFC0148774C6203,
  4316. JsonReader_ReadAsDecimal_m09150AF2288181DEC69092C6007D4227009FE6EC,
  4317. JsonReader_ReadDecimalString_mCF97D3A26C5A87A23A4E188126E2DAD58D0E4977,
  4318. JsonReader_ReadAsDateTime_m2544BB943DBF9A881A6E01F6F91D064530FFFDC7,
  4319. JsonReader_ReadDateTimeString_m247F86C9E5CC7EC4938C0424B3705AA6C93D2B49,
  4320. JsonReader_ReadAsDateTimeOffset_m05F1C463823DF04AE1785C94BC4BBDEC0C3D090E,
  4321. JsonReader_ReadDateTimeOffsetString_m6D7DC0DF38660A1841B7428B7713CE169C80F9D1,
  4322. JsonReader_ReaderReadAndAssert_mC990E3530531FFFDACE7EC419B8726E38F0F8847,
  4323. JsonReader_CreateUnexpectedEndException_m2B2FD292C4D0A93BE6F6C3CEEBAB6524E6D13D71,
  4324. JsonReader_ReadIntoWrappedTypeObject_mD531D84D3842329588FAB3666617D214BDDC681B,
  4325. JsonReader_Skip_m4269EDBD8AA592F523D6CD9A11E92B389713F717,
  4326. JsonReader_SetToken_m596B254D54E8510EFD2B55B90DBD91F508663DE7,
  4327. JsonReader_SetToken_mBA3EAD6F04130BB8DF56F97EB322FFA4B6AEE114,
  4328. JsonReader_SetToken_m91056EA9CA00F200C74A57944B0866183FC3452B,
  4329. JsonReader_SetPostValueState_mBBE40EE10F5C478C49AED7CD5BAB1674A4AE40FC,
  4330. JsonReader_UpdateScopeWithFinishedValue_m0026054429C354875B302E727E016CCF0CD2E21A,
  4331. JsonReader_ValidateEnd_mC29C9307AF96EDAA4B095A2EC90F7156D8F6BDA3,
  4332. JsonReader_SetStateBasedOnCurrent_m5038313256A52E9761A30951BCEA0E025B32D65B,
  4333. JsonReader_SetFinished_m727ACF7589AD4C81D82FAF4FCA0D0899157D95A0,
  4334. JsonReader_GetTypeForCloseToken_mAD289260793FC33C6591C760106313A8FF49C81D,
  4335. JsonReader_System_IDisposable_Dispose_mEDB416B4AA7D52B17568BCEE029C0E74456622AE,
  4336. JsonReader_Dispose_m08971695B49BDE8C2BF675C8FA6FC1F7D9C98927,
  4337. JsonReader_Close_m4E8C8BA343F029A92185BE9700D040DC0D64DA63,
  4338. JsonReader_ReadAndAssert_m76D2D5B12749D2C22654F73EED1CD0732FF6F325,
  4339. JsonReader_ReadAndMoveToContent_mF757D383C9D101224600F9C1583F0D0259A92D9A,
  4340. JsonReader_MoveToContent_m13B5E0F451D9375FE8426E8607123D4B1BB5FAFF,
  4341. JsonReader_GetContentToken_m00E60F100E8E96037D7EEBC58ABB10ABFCD51425,
  4342. JsonConvert_get_DefaultSettings_m45F17C3434357C179C0A48E5AB5F9914AD8DDC82,
  4343. JsonConvert_set_DefaultSettings_m37450FF21FB1B80C0AD4AA04A66CD387EA8F455F,
  4344. JsonConvert__cctor_mF1FC074719ABB3F48F8F9AB0E78FC19B3B352D42,
  4345. JsonConvert_GetDefaultSettings_m2B67ED38FB0FBC26D71FEDB6EBF8D1BE78BBED4D,
  4346. JsonConvert_ToString_m7DCA3A15EA44561ED4ADADBB35765CA716CC336F,
  4347. JsonConvert_ToString_mBE9774F36AB274A978D11A232C8579CF5F86CFDC,
  4348. JsonConvert_ToString_m36C5B34B7B524EEB5090F5633F11BC41AA73D8BD,
  4349. JsonConvert_EnsureFloatFormat_m96B4311693355E210F453D8680CA6229337236B3,
  4350. JsonConvert_ToString_m1D2BB94ABF6D69865A24C2C2D1A6F3038C6BA800,
  4351. JsonConvert_EnsureDecimalPlace_m936FEBF64E81CF7F992E2E3D3AAFC3C917AED8F5,
  4352. JsonConvert_EnsureDecimalPlace_m221E2EA48EB5335E07BD64CC99E42A5F4E90C7EA,
  4353. JsonConvert_ToString_m3FC09486E5A8EE6ECB029D0555F8AF30F82F237D,
  4354. JsonConvert_ToString_mD4A1E994E2E91E504564E6E3758DADCFC5D9404F,
  4355. JsonConvert_ToString_m172304687C39A3C677D02356412D882024DE3905,
  4356. JsonConvert_ToString_mB43B2CA1ACF2E179563334C501659EF8995D8A02,
  4357. JsonConvert_SerializeObject_mA1CE7826146AD4F03BAEC589ED87E3DB5C2182F0,
  4358. JsonConvert_SerializeObject_mB6325BCF37763104414D86846714425CFEBC564E,
  4359. JsonConvert_SerializeObject_m6E40D5192A03BE76571C14398BABBBB1C0F317C4,
  4360. JsonConvert_SerializeObjectInternal_m889EAF72D828AC857B24141B816E3F888996CBCE,
  4361. JsonConvert_DeserializeObject_m58127A8F506810479AC68C5172DD493619DDE112,
  4362. NULL,
  4363. NULL,
  4364. NULL,
  4365. JsonConvert_DeserializeObject_mA831B6913A754DED6786870F4B9AA10351A39D12,
  4366. JsonConvert_DeserializeObject_m5F3A17B1C9501B1BB69FFD846811A2DC1A34455B,
  4367. JsonSerializationException__ctor_m9C747242009145B556038262A6D15A24F20D3403,
  4368. JsonSerializationException__ctor_mE0EA4480BC4246503121539E1D97555D480D016A,
  4369. JsonSerializationException__ctor_m4B135F45D0D5B7340A79511A46B89E0C6028E8F5,
  4370. JsonSerializationException__ctor_m1D3E38D973ACAD6C35D819E27050446FFD4A912A,
  4371. JsonSerializationException_Create_mD9A18483FE8F8CBEDFADA46CA0DC688AF9A4CAB1,
  4372. JsonSerializationException_Create_mCF8746FC844DE08A48F21AA2FBB051BBECE58228,
  4373. JsonSerializationException_Create_m163D03CFC17934D8181072F94DE5D8FBC674847E,
  4374. JsonSerializer_add_Error_m136B8C87AFB69A32E77725188F5041747EAB2CC5,
  4375. JsonSerializer_remove_Error_mD595D74F07DC33EBC5D4822062A8E117B365651D,
  4376. JsonSerializer_set_ReferenceResolver_mD3C2A1B634ABC9F2BF2E6FAB6109069EAB03AC9D,
  4377. JsonSerializer_set_Binder_m7E06D4CB1C7F59D3FA7E29FA1886AA94C25DBF72,
  4378. JsonSerializer_get_TraceWriter_m32A55EF6A296117BB51444D5B91203C610AE32F5,
  4379. JsonSerializer_set_TraceWriter_mE25689D7A3A7E33DD93F47B89C9C1149CAB7D019,
  4380. JsonSerializer_set_EqualityComparer_mB8FCB07FD08065F2366421FB99412B43387CCDB9,
  4381. JsonSerializer_set_TypeNameHandling_m46F4935848B54A7E94AEB9673772AC5841A0325A,
  4382. JsonSerializer_set_TypeNameAssemblyFormat_m6BC30A81C47835FFADD986CA947950DA2372D4C5,
  4383. JsonSerializer_set_PreserveReferencesHandling_m161316AF11381FFE737F5723260F589523B6B72D,
  4384. JsonSerializer_set_ReferenceLoopHandling_mD785BE5461A2B2CFD06135C705663EA03A48B941,
  4385. JsonSerializer_set_MissingMemberHandling_mF2977B5D3B3A3C2AB6022E953C59F1EB9DCA80B6,
  4386. JsonSerializer_set_NullValueHandling_m6C04322512F3327945BE96643FB7D73F29F49728,
  4387. JsonSerializer_set_DefaultValueHandling_m2314487781B4564F15749A9EBC40E82F38583EE0,
  4388. JsonSerializer_get_ObjectCreationHandling_m449A2FB0FE5DCA2FB6336EBC6C94205882DBCA2C,
  4389. JsonSerializer_set_ObjectCreationHandling_mC8AC2C0A1F13E47C8FC2187C7F6034E016E53883,
  4390. JsonSerializer_set_ConstructorHandling_m3D7BB6B7EEC94E2483876028E043FD2C5AB16AF6,
  4391. JsonSerializer_get_MetadataPropertyHandling_m9CE77DBC6F00B04E5896AF5F63E04C2DE4A45682,
  4392. JsonSerializer_set_MetadataPropertyHandling_m6A97B28D50BA612902F6184D48BF340D591C12E3,
  4393. JsonSerializer_get_Converters_m4BACB468E417A63594FDAF97CC887FCE0BA11D63,
  4394. JsonSerializer_get_ContractResolver_m685FD586C3CCDC826656391197132D1BA8BE9C01,
  4395. JsonSerializer_set_ContractResolver_mE653319EAA8E9D08DEFD578573DA158099C75BB8,
  4396. JsonSerializer_get_Context_m3F59C4B0B76C47CC313C5547078B7508C9321033,
  4397. JsonSerializer_set_Context_m612B36A9ED78858EFC029EAB6CAC485329D482DF,
  4398. JsonSerializer_get_Formatting_m8C27A28C736F2C591DDD467EB420EE8FD740A219,
  4399. JsonSerializer_get_CheckAdditionalContent_m54805A2237B182F97A39261349E03DA4E68FA26E,
  4400. JsonSerializer_set_CheckAdditionalContent_m64B92786343D36B07367275221F7AF1799A63175,
  4401. JsonSerializer_IsCheckAdditionalContentSet_m9C86FC26E84A54AA3795898DB49433F8192044B4,
  4402. JsonSerializer__ctor_m0913ACE6CF06014B5A2431243D42205F803A54C6,
  4403. JsonSerializer_Create_m343A80A2583E9C591E032DC8D16A28D2262F3FE9,
  4404. JsonSerializer_Create_mA5B10CA3D061D3D447A6EEAAB8551013CD8C2D1A,
  4405. JsonSerializer_CreateDefault_mFBB356F39223E41BD12796A4A4EAC0128D73B629,
  4406. JsonSerializer_CreateDefault_mB0A448158979A4FDBA636DCBAFA44F4AC7A97A77,
  4407. JsonSerializer_ApplySerializerSettings_mB017C3FC163387EC018E84E6F0FEE2F83A5E7D7B,
  4408. JsonSerializer_Populate_mF96A10F379614E104FC83A7972D5D8F4E74301FD,
  4409. JsonSerializer_PopulateInternal_m0441E1A6F6D3138F824C954D662B7C72A1A912F9,
  4410. NULL,
  4411. JsonSerializer_Deserialize_mD1BD9A4F7C7739A071B90DD9BC9E8908D66E11C0,
  4412. JsonSerializer_DeserializeInternal_mF3BDC8E8797408EFBFC4E2FB3E276502A6911319,
  4413. JsonSerializer_SetupReader_m935C0F8122F3D44AB3BC9B29641AA12A0FB27310,
  4414. JsonSerializer_ResetReader_m5B78E38B42AAAE44A6258DD42EADB3CE83C62789,
  4415. JsonSerializer_Serialize_m9D15A1412E5150796621B32F4A591FAA10BB76F1,
  4416. JsonSerializer_Serialize_m9EA64D9079D4A2844D377A556D7D815B301BBC1D,
  4417. JsonSerializer_SerializeInternal_mE98D166DDB884697A15B10AA904D78611A0AF14E,
  4418. JsonSerializer_GetReferenceResolver_mED3C727D7B702A0ED891E5C3663842FB69A889F3,
  4419. JsonSerializer_GetMatchingConverter_mAF04EFA2A8C791828B6AA3903518512CAD60CD07,
  4420. JsonSerializer_GetMatchingConverter_mC76FD1596C5E0534C45A05F3A5CFB8585C35C962,
  4421. JsonSerializer_OnError_m94489587ABFC2BBCB076B85965C1BF7372EA063E,
  4422. JsonWriter_BuildStateArray_mA0E6E0810E8CB4591CF04BDFF536E021072DA424,
  4423. JsonWriter__cctor_m0163CA97BDB66CB3988DCE7D5B2DE35A4DA1D96E,
  4424. JsonWriter_get_CloseOutput_m35735FF8248038300093B2107F3CF2B9DFECE1F5,
  4425. JsonWriter_set_CloseOutput_m4FA46ECC4D7B67D37299F937FD7CF1819D505706,
  4426. JsonWriter_get_Top_mE9BB5BDB5A64540B7C1108AF30401F89AF772D79,
  4427. JsonWriter_get_WriteState_m23CD3D22D1976D61D92BF6729EB6353ACB9A6CA3,
  4428. JsonWriter_get_ContainerPath_mADC497503051A4C9B6EC6078215DB4E107D54FDD,
  4429. JsonWriter_get_Path_m7796CF0B7E28CD378C10E70351798A442084BAAE,
  4430. JsonWriter_get_Formatting_mC18D9155ED938AFD5F1DCEF125118019457CD544,
  4431. JsonWriter_set_Formatting_mD0CD79552C13280507FC97D3F2B4B9A34DCFDF44,
  4432. JsonWriter_get_DateFormatHandling_mE942350A97B2D29BCA6E4B1625F1668E9C32A9AF,
  4433. JsonWriter_set_DateFormatHandling_m71DBA6BB91BB3ACF47221BFA38FDC7680E5A659C,
  4434. JsonWriter_get_DateTimeZoneHandling_mCEE504BF434BD0DD1360A9E534ACCE5CAB4233C9,
  4435. JsonWriter_set_DateTimeZoneHandling_mDDCFF82A68776C61999A2526452B14C401592BB8,
  4436. JsonWriter_get_StringEscapeHandling_m8E8D78C834F1EFE5D11D77F7F58151DFABA04FF1,
  4437. JsonWriter_set_StringEscapeHandling_m2CDFE1FCC0BEC2417F5DF10FC5CDFA046CD3497C,
  4438. JsonWriter_OnStringEscapeHandlingChanged_m26130642889FB5535577206D1B42F98E150C1600,
  4439. JsonWriter_get_FloatFormatHandling_m3B2A583300BF25FE39C38E75C995AAB565CF1912,
  4440. JsonWriter_set_FloatFormatHandling_m561821C81F0C0BDA1926DF11F97BC8AAC8BCD3DD,
  4441. JsonWriter_get_DateFormatString_mC1855B2F2BF9A5776B62B0607E10C7ECB0C9BDD0,
  4442. JsonWriter_set_DateFormatString_mC549E4965DA9E4C5DE42C3C4EFB04B490547F5F4,
  4443. JsonWriter_get_Culture_mAD5635D6A004DFDE1659D9BB23BDBA76E64775F4,
  4444. JsonWriter_set_Culture_mB06618F77452FC9C46BA4C72B50DD1EA30A9D7A7,
  4445. JsonWriter__ctor_m33E6C940737895931A28DA2F07D78F0997612340,
  4446. JsonWriter_UpdateScopeWithFinishedValue_mC963AA612FC5884DD7FB41F8CDE0CF5701614B94,
  4447. JsonWriter_Push_m1F88E3CC8E95814572800A4D4C2711583C8DA614,
  4448. JsonWriter_Pop_m6E215C64A1DDFDFABFD23A49F1B4507ACBB2D8E4,
  4449. JsonWriter_Peek_m5D92719BB030AA19751F29364F134D2F3350E602,
  4450. JsonWriter_Close_mBA7ED54867CFF21151735D1666E706A085331904,
  4451. JsonWriter_WriteStartObject_mA8E43167628604D813212CAFF32D9B7CD3EB4913,
  4452. JsonWriter_WriteEndObject_mCF63E3221040461984DC7DBDFD106CDB920171C4,
  4453. JsonWriter_WriteStartArray_m55F6DCD1D2575341B2A76BCDFA8527221C10EC4D,
  4454. JsonWriter_WriteEndArray_mA517593618A52B60BF52B928EF5C960B9034353F,
  4455. JsonWriter_WriteStartConstructor_m20481E29ACCAE010A24BA2926E18E52D09A3727F,
  4456. JsonWriter_WriteEndConstructor_m1EEE40EE365CB194329A6B648B5F32F79FD9485B,
  4457. JsonWriter_WritePropertyName_m6282FE6332B919E03C780BE412456BF75A6FC7C8,
  4458. JsonWriter_WritePropertyName_m9C734C9BC2A017692CCCA600DC3E206B8D3D1C19,
  4459. JsonWriter_WriteEnd_m925144DAE6F6588B557AE52E1F5E48A266464CAA,
  4460. JsonWriter_WriteToken_mDB4120EA9CDDE4A793B0EC6CC00A0C2AA539258D,
  4461. JsonWriter_WriteToken_m73D08B2FBC9DBC4027C9BF986BBDDA44FCC8C926,
  4462. JsonWriter_WriteToken_m0E530768DEFE81C78F8A96746254BF1926FFB7F7,
  4463. JsonWriter_WriteToken_mE0EE772566A273EB906D47F9FA1A6221DFB14DFA,
  4464. JsonWriter_WriteConstructorDate_m0F9E70D5BD8696F65EBCEF119E92BCB238DAC03D,
  4465. JsonWriter_WriteEnd_m04DD651F7158F913327B4B44A83E6398E464049C,
  4466. JsonWriter_AutoCompleteAll_m90BB40B1F249CDEF9FE9393E85483F21B90F58D2,
  4467. JsonWriter_GetCloseTokenForType_mB09609832B8A3BFCA123BFDC6FDA53B419AE5941,
  4468. JsonWriter_AutoCompleteClose_m4AD461C15C7A9E77987D0D34F157E2CA9AE196EC,
  4469. JsonWriter_WriteEnd_m30634EF8F195AAC954C12ECDFB5DC751B4F08AA2,
  4470. JsonWriter_WriteIndent_mA92BE774008482499674A340FB09F165D42536E1,
  4471. JsonWriter_WriteValueDelimiter_m1ACB4AB5AF4658B61F6EF01CD2AF4755BE9A8C2E,
  4472. JsonWriter_WriteIndentSpace_m151F9160694A7EC803A54B7D3B3A808DFDFFB899,
  4473. JsonWriter_AutoComplete_m8BC2E4659CD48CE43093578246520EFA1CE0A21B,
  4474. JsonWriter_WriteNull_m5C6B7A818F167C7AD5846C0B66634444624C7294,
  4475. JsonWriter_WriteUndefined_mFE1DC4B2CFD5992C2D39D7B138E76918FDFA886C,
  4476. JsonWriter_WriteRaw_mEB4130437F7C7FFDAD095A67CB948524A7F651B5,
  4477. JsonWriter_WriteRawValue_m0EA2A8A5E6BEC2DFA260294AECBAF730784A103C,
  4478. JsonWriter_WriteValue_mCEEBA5B0C394500340F6C32E24FEBD327ED85006,
  4479. JsonWriter_WriteValue_m3272CDA2D49600CEDC28BCA9655D967F0F2A58F8,
  4480. JsonWriter_WriteValue_mAA9CA5579DEB1985F70702C9D714A208977CCD63,
  4481. JsonWriter_WriteValue_m56B6607C1D74A21FB75945C92B57D83FD4419E1C,
  4482. JsonWriter_WriteValue_m7307E600DEE61DC628FE0A25124E55635AE81B31,
  4483. JsonWriter_WriteValue_mE37191ACB24107E7C88B4EBDA034418AAF7E7A71,
  4484. JsonWriter_WriteValue_mC64B161E67A79957FE19EE209CA9543F3CB02267,
  4485. JsonWriter_WriteValue_mA6C47BFFF0A3BD4367BAC58A59711A873F44B2D8,
  4486. JsonWriter_WriteValue_m7573324F0A6837B35CA08BD12695B59BDAF319A0,
  4487. JsonWriter_WriteValue_m86E02F18462B68408F56664160AA8EE14FBCB847,
  4488. JsonWriter_WriteValue_m3E13762ABAA97E3B6E5512719A9C20110690867B,
  4489. JsonWriter_WriteValue_mCA89BB907A0514BB3C7CF72A3B5DBEB80B601D8B,
  4490. JsonWriter_WriteValue_mFB2A849F1CB5FDC6B1A0228F0DCB93CE92F6A974,
  4491. JsonWriter_WriteValue_mD5F5DD5F9A475E329A9F63DF6E2610C9E4CA5E47,
  4492. JsonWriter_WriteValue_m88A4103C8515DDFFBFAD5F2C27CAC3192CDAA667,
  4493. JsonWriter_WriteValue_m33E9E1916850836BA29C86ADE3FECA716729AB60,
  4494. JsonWriter_WriteValue_m9191D561BCBFD43DDEE7E237191C20371C411DC8,
  4495. JsonWriter_WriteValue_mD4355674521311D84F4B8CBC86DA96C39C338622,
  4496. JsonWriter_WriteValue_mA60C1255513DC8ADED8E8C8054E8B65D4989966A,
  4497. JsonWriter_WriteValue_mE2F23E05460ECD9C167A95F653416EAC59A3A60D,
  4498. JsonWriter_WriteValue_m31E9729AA9DDB1D9FA29C50F81C05ADFA5DCCFA9,
  4499. JsonWriter_WriteValue_mC1E14DAA2E451C20365DA9B843028DE31DFBF746,
  4500. JsonWriter_WriteValue_mA661A9CDC990E9966FBCE44F70943E217DA8AA50,
  4501. JsonWriter_WriteValue_m983831AD6DB0B35FDC8C8FB61A8BB5986607D5DA,
  4502. JsonWriter_WriteValue_mF416DE127062CE8485646744B9BE46BB033B49CA,
  4503. JsonWriter_WriteValue_m9B2CD4BB01AA1840AA6C17A8C5FA56E1AB65292C,
  4504. JsonWriter_WriteValue_m3EC3F0E59E9BD3B73EE85482D51855361343DD80,
  4505. JsonWriter_WriteValue_m6221D7393F33F9BC3B8A783447F0D5FF5FA35F09,
  4506. JsonWriter_WriteValue_mC02EF217E1C8832B4F6A67B213156AF0398973C3,
  4507. JsonWriter_WriteValue_mE04452BF49A47378258A35FF00A77269EEF3E962,
  4508. JsonWriter_WriteValue_mD3BAB76446972CAA116D03A3967878D10F8EA515,
  4509. JsonWriter_WriteValue_m52B4702F2349167842323A92E98838E6FDCBA052,
  4510. JsonWriter_WriteValue_mE669D41AD0EAB18DD1538DD834F5509BAAC028C3,
  4511. JsonWriter_WriteValue_m44CD9A8BFF0E498FDEB595A40578EA4E4F802C28,
  4512. JsonWriter_WriteValue_mE6CC066FF91E81E7CBD9AD7D578907944EDD8602,
  4513. JsonWriter_WriteValue_mD3F58DE13B6A261C21A09EDAF057E80B2B465239,
  4514. JsonWriter_WriteValue_mFA34221E6FC1DAA2AEB96B267A29701DF84A4593,
  4515. JsonWriter_WriteValue_m2C50EEBAAC598756A7D400689FDEACBA83EE9077,
  4516. JsonWriter_WriteComment_m0D55F7EE368A992D6BB35051A3FACD07708FF2A8,
  4517. JsonWriter_System_IDisposable_Dispose_m30B5028E55E62884E68B69C596B7A727D2F4D5E0,
  4518. JsonWriter_Dispose_m72432FEC60AAAAB0979A13B09A46243C6C93A627,
  4519. JsonWriter_WriteValue_mE301B8283C59CFADB643EC00F82228CAD1D7B5D0,
  4520. JsonWriter_CreateUnsupportedTypeException_m1AECC8B9FEAA0021A41B59EDD0ADA56914076E25,
  4521. JsonWriter_InternalWriteEnd_mA7DE12A8EB6FA11CBAA51A69C050620C8846A56A,
  4522. JsonWriter_InternalWritePropertyName_mA5078374DB3E45D9C2360AA3F6613310578990DA,
  4523. JsonWriter_InternalWriteRaw_m4B4503688B7FFAF1A1D38C66BE1C0E591682D843,
  4524. JsonWriter_InternalWriteStart_m00F313BA1C3B5EAA4BAE3C4AEEB2496F014DECAC,
  4525. JsonWriter_InternalWriteValue_m12C7E66156140AAA2282D4855008FCB93CD65FCA,
  4526. JsonWriter_InternalWriteComment_m27747B82A2A11FF906A29C8339FBE933A07E8CBC,
  4527. DateTimeParser__cctor_mA5E4F681D4E2088BB81C4E45AE06B856F0862A9A,
  4528. DateTimeParser_Parse_m19153DE29C9BFA6EEE75C87F50E857EA2EEB12F0,
  4529. DateTimeParser_ParseDate_mD991BBF95D49CDBD82809A52A9997C631781FB9E,
  4530. DateTimeParser_ParseTimeAndZoneAndWhitespace_m1E4EC8F64D029698F37D009AC5A60E92A024ACF0,
  4531. DateTimeParser_ParseTime_m4A5ADC9B09ACE044223CB8BED1393B853F5AEA71,
  4532. DateTimeParser_ParseZone_m9E38ED674C6FDE851784C5CE5455BECCDADEB43C,
  4533. DateTimeParser_Parse4Digit_m448AA776A3869D29D689B3593A67AE7388536658,
  4534. DateTimeParser_Parse2Digit_m05E9CA2B2F3EBA8DCA5BD96304BFECF2ADE228B6,
  4535. DateTimeParser_ParseChar_m3D13D60FEED649629F61D7F98E6D6306815B23CF,
  4536. Base64Encoder__ctor_m8CC7CF4E7999D8752CB981EE5D88B015112B70E5,
  4537. Base64Encoder_Encode_m1F2E3887264627B5EE46962BF692449C3BB79D3F,
  4538. Base64Encoder_Flush_mB4309CBAD0328D6923932E117E4EF1AAD01A8AF3,
  4539. Base64Encoder_WriteChars_m83CDF7CFAFCEE4B7ADE3B243F8298743FB4661B3,
  4540. JsonTokenUtils_IsEndToken_m77818736EF8F5E9FBC2CE1AF4EAB6AE7DF1FCA7A,
  4541. JsonTokenUtils_IsStartToken_m5A83098412B0ABABE4995D3716392287590A0486,
  4542. JsonTokenUtils_IsPrimitiveToken_m4396C2BB487CEC938F4EEC59C53C0BDF8F72EB0F,
  4543. PropertyNameTable__cctor_m0D68E1A9634F68B0A686F4DE73B5889802A81B1A,
  4544. PropertyNameTable__ctor_m25D60FFF70470EBA0E91683E9B8FC5029B3639E2,
  4545. PropertyNameTable_Get_m4B3B6618C297611B46EF6ABA9ABF0ECABEF73342,
  4546. PropertyNameTable_Add_mB12AEDC24D9C264E460A8C2AFB6FBE759070E18C,
  4547. PropertyNameTable_AddEntry_m94844BDDC50C0A1583128A65D17B63B50251FFC4,
  4548. PropertyNameTable_Grow_m83701A60E86FDA9E76229DA1927BC3E433BD8D45,
  4549. PropertyNameTable_TextEquals_m68A66BFD455B3C6D459F3EFB5977CB2313A5ADEA,
  4550. Entry__ctor_mD29E897D893C91A2933F87A8F1CC9D6BE8DF16D6,
  4551. NULL,
  4552. NULL,
  4553. NULL,
  4554. NULL,
  4555. NULL,
  4556. NULL,
  4557. NULL,
  4558. NULL,
  4559. NULL,
  4560. ReflectionDelegateFactory__ctor_mEFA41B73330DF9F63BB3E43AD2781A2F65A6957E,
  4561. LateBoundReflectionDelegateFactory_get_Instance_m92BBB285AD2E4C07E1E23F84EE40A04E39208EF0,
  4562. LateBoundReflectionDelegateFactory_CreateParameterizedConstructor_mC292138ADFC6A018C3EAB2AEC01F3020F51D3A45,
  4563. NULL,
  4564. NULL,
  4565. NULL,
  4566. NULL,
  4567. NULL,
  4568. NULL,
  4569. LateBoundReflectionDelegateFactory__ctor_m7AC46404AA17DECE59248DE0994B7A2987A059E0,
  4570. LateBoundReflectionDelegateFactory__cctor_mE60B4A6094231063FABC9338F11A4993C24BC9E5,
  4571. U3CU3Ec__DisplayClass3_0__ctor_m284ADEC97F298D777146D5B676D3E4E2DF017CB1,
  4572. U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__0_m10158FA5080CF58CD0869216D25D4EA37301748D,
  4573. U3CU3Ec__DisplayClass3_0_U3CCreateParameterizedConstructorU3Eb__1_m3CAAE331CBBB15539A0E2A2AA6410252DD05844C,
  4574. NULL,
  4575. NULL,
  4576. NULL,
  4577. NULL,
  4578. NULL,
  4579. NULL,
  4580. NULL,
  4581. NULL,
  4582. NULL,
  4583. NULL,
  4584. NULL,
  4585. NULL,
  4586. NULL,
  4587. NULL,
  4588. NULL,
  4589. NULL,
  4590. ReflectionMember_get_MemberType_mAB2177907FD7B4A95EA3A38F2C1F96596F7C2BEB,
  4591. ReflectionMember_set_MemberType_m3CED73888761B9A9C936E74EF0539C2D4C6C8788,
  4592. ReflectionMember_get_Getter_m8C14F3F9760AF6EB89E9644C042D7049187D9E65,
  4593. ReflectionMember_set_Getter_mED0BE46DBB1B84D9A1633BE35516882059E7F625,
  4594. ReflectionMember_set_Setter_m353D076CBC189D2F05EDBCF664D18A4A111610A7,
  4595. ReflectionMember__ctor_mAE0A1EF86EDC37BAFB1CFAA6C520ABDCB5C28D51,
  4596. ReflectionObject_get_Creator_mC785DF954A61E93038A8240F811DF299DACFAB12,
  4597. ReflectionObject_set_Creator_m1162363E03BF9F1667F813FE749F2BA4E36FBB45,
  4598. ReflectionObject_get_Members_m3FD4398FA99B15DEE50DCE640C9B61338ADCF380,
  4599. ReflectionObject_set_Members_m51F84C609F669FBAF384A240340AEB2DCADDD09E,
  4600. ReflectionObject__ctor_m82D4F7F06E74932622484FCD77F3E99DDBA29732,
  4601. ReflectionObject_GetValue_mA0ADA6BB26A0AC4EF2B50FCDCA02E558B54AE764,
  4602. ReflectionObject_GetType_m9FDB5E15514D65866CC19EE2CF34898CE61F3FB1,
  4603. ReflectionObject_Create_mD57686249D5EB10C492E55F70C03381DDF4942DD,
  4604. ReflectionObject_Create_m75CFA86342B16675373753762F21ABD5E3C9C534,
  4605. U3CU3Ec__DisplayClass13_0__ctor_m5BEC8931A7CFA6F2562DF252E1D0557042E856D7,
  4606. U3CU3Ec__DisplayClass13_0_U3CCreateU3Eb__0_m94CD2B6E95976B8BB1C937BBAF665334662288FA,
  4607. U3CU3Ec__DisplayClass13_1__ctor_mE629E8AA7BF56EEEF814F151A65A4B1D6AFA7806,
  4608. U3CU3Ec__DisplayClass13_1_U3CCreateU3Eb__1_mA4CEB8DCDB87B0B62F376E8761712FA105337E9B,
  4609. U3CU3Ec__DisplayClass13_2__ctor_m7942108C02C4C534B2E24DFCAF50C1365918A8FD,
  4610. U3CU3Ec__DisplayClass13_2_U3CCreateU3Eb__2_m1AD4537D3CE56E60192F194146C0DFF6CF9F0A26,
  4611. StringReference_get_Item_mCC414598F34A78B379103674D338A77EA6136E83,
  4612. StringReference_get_Chars_m020702CA028004E195E6E0002693F1DB29042EAD,
  4613. StringReference_get_StartIndex_m727F6D326DD23296FA4DDAFDF36625384ECEC40B,
  4614. StringReference_get_Length_m0DEC973AB0ADF3CF947C80924F1BF348FBE5C204,
  4615. StringReference__ctor_m01DDD5ECD8174F6669AAE9F63E50131B36E68A6F,
  4616. StringReference_ToString_m2547C9D86B566C13C2FB5483B3FFD878B37F9A91,
  4617. StringReferenceExtensions_IndexOf_m2412AACFB049AC560FA1416E1BD5BBC8C90AF00E,
  4618. StringReferenceExtensions_StartsWith_m672750CAA2EFFAE18DF5F82CAE441F601E134238,
  4619. StringReferenceExtensions_EndsWith_m887C4E2053F5128C75F4D80074B01713BCDAB5CF,
  4620. NULL,
  4621. NULL,
  4622. NULL,
  4623. NULL,
  4624. NULL,
  4625. NULL,
  4626. NULL,
  4627. NULL,
  4628. NULL,
  4629. TypeInformation_get_Type_m101C4515BF4ECD310CDF20BC2C059D112341D2FF,
  4630. TypeInformation_set_Type_mDBEF815E9DB934A14E922CFA5DE83E7C3E5242CE,
  4631. TypeInformation_get_TypeCode_mCF198DEDB64134D93B798F875D79B6FF94F4EF1E,
  4632. TypeInformation_set_TypeCode_m56B7A4BF0AA5C3B94D522527D1BD03E5D770AFB5,
  4633. TypeInformation__ctor_mEF95855DF0C827208EC3B71BC8B9428253308DD5,
  4634. ConvertUtils_GetTypeCode_mA069AACCE3282593CE46A33C491380274F0855C7,
  4635. ConvertUtils_GetTypeCode_m24C505D250D4660941EF7F67200DAADAE9CE900A,
  4636. ConvertUtils_GetTypeInformation_mDC1A3965113C58B39741350A98D3444A1B4832D3,
  4637. ConvertUtils_IsConvertible_m7846788DF4E430D8CB8816322DD72FBBF0A111B3,
  4638. ConvertUtils_ParseTimeSpan_m9E697B3AB3DB73C76A1FC1BA18D7ED949B9DAFB8,
  4639. ConvertUtils_CreateCastConverter_mC4FC20A152D0583964ABEF5C6E8CE1EF73F98CB0,
  4640. ConvertUtils_TryConvert_mF23E4A4E3370EE0CF43F00A4D13EF82FB6FB8EA1,
  4641. ConvertUtils_TryConvertInternal_mFCA82EAAF3A945C4D6C9E8037D56ED1E31BD848E,
  4642. ConvertUtils_ConvertOrCast_m5342EFB8ECBE5EE70DBEEA230D1CFC63198768F5,
  4643. ConvertUtils_EnsureTypeAssignable_m7A82659316500E70547421B8ACD6B6ED33C097B9,
  4644. ConvertUtils_GetConverter_m3A78C47F2CF7D9A593F874830E240144B13EB8F9,
  4645. ConvertUtils_VersionTryParse_m951CD31D6B9816FBFA27309397812D8D83E0C218,
  4646. ConvertUtils_IsInteger_m112556CA336C9B7BC658835DCD79DF97C62F0EF0,
  4647. ConvertUtils_Int32TryParse_m79EC579B93ED23CAE486E802ECB57836B5577175,
  4648. ConvertUtils_Int64TryParse_mD1CA1A608FDF391E70C4C8E54A24CF7EB52A3EDA,
  4649. ConvertUtils_TryConvertGuid_m6407FC5DAE151CAA6A31C1FE13261C6999EE098B,
  4650. ConvertUtils_HexTextToInt_m152878747FB1D413DC5A86A004ED615CDBF711E4,
  4651. ConvertUtils_HexCharToInt_m169F82A56A06CBD2F22E4D76E46B5C35F9F3956A,
  4652. ConvertUtils__cctor_mE5454E60C4CDD8511B2E158013A1068FA28C920A,
  4653. TypeConvertKey_get_InitialType_m2672D4C423F105D7036F00FCF1A8C9FF7141292D,
  4654. TypeConvertKey_get_TargetType_m42A90982418CA92A7CC99C23007A9F0A8D9353C4,
  4655. TypeConvertKey__ctor_mE7D0FEEB17A875CA3F8E0180A6E2F811F076097E,
  4656. TypeConvertKey_GetHashCode_m53EEF50076A23F2DD2069C13D70FE12480A72EC6,
  4657. TypeConvertKey_Equals_mBEC43674C2C9C1B78030AD4CC1715062E0DD09CC,
  4658. TypeConvertKey_Equals_mCFB617A4360BB185698B4EC5B25BEC2BD0876D79,
  4659. U3CU3Ec__DisplayClass9_0__ctor_m4653E8351F4D11A3B08E53288804CEE1426865AE,
  4660. U3CU3Ec__DisplayClass9_0_U3CCreateCastConverterU3Eb__0_m975EB3858A619504CD18AD42480412E4AE43087F,
  4661. NULL,
  4662. NULL,
  4663. NULL,
  4664. NULL,
  4665. NULL,
  4666. NULL,
  4667. NULL,
  4668. NULL,
  4669. NULL,
  4670. NULL,
  4671. NULL,
  4672. NULL,
  4673. NULL,
  4674. NULL,
  4675. NULL,
  4676. NULL,
  4677. NULL,
  4678. NULL,
  4679. NULL,
  4680. NULL,
  4681. NULL,
  4682. NULL,
  4683. NULL,
  4684. NULL,
  4685. NULL,
  4686. DateTimeUtils__cctor_m5AFBE6D991F5C3C74723F951DB8DDF732BED871E,
  4687. DateTimeUtils_GetUtcOffset_m0BA1150CF6D6788D0DB48F9E8F2315D3715325BC,
  4688. DateTimeUtils_ToSerializationMode_m62688A4C52F864A8A3A098E3619EFD5F001277CF,
  4689. DateTimeUtils_EnsureDateTime_mA9C81B70265DE2FF1B81DB8C98C807371F3BD6F2,
  4690. DateTimeUtils_SwitchToLocalTime_m644166BB5495A572C0BE081B624E74A786A35A0B,
  4691. DateTimeUtils_SwitchToUtcTime_m6C872D71658CF80A9E86BD46316CB66709686E8B,
  4692. DateTimeUtils_ToUniversalTicks_mE2F9BF4AD99DC897FF3E887815F1FA88B6A58055,
  4693. DateTimeUtils_ToUniversalTicks_mF49B89CCEA02BCDD7664860439B5D2E3EF016C1B,
  4694. DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m908DDC9C6C8BF5A612CB03EB8D92ADB37B55E413,
  4695. DateTimeUtils_ConvertDateTimeToJavaScriptTicks_m9529F1BB601C2BAADFB2DC9CF539D74C1D066A3D,
  4696. DateTimeUtils_ConvertDateTimeToJavaScriptTicks_mFE7CD69E1478C1C17C52E5A508E8EF5ACA27985C,
  4697. DateTimeUtils_UniversialTicksToJavaScriptTicks_m565EB3DB2ED113380F278163C960509D208209AC,
  4698. DateTimeUtils_ConvertJavaScriptTicksToDateTime_mF85E32259FE37728425C732C39889B16A73BE9D5,
  4699. DateTimeUtils_TryParseDateTimeIso_m7806DF7A51BDEFA9D50BA4A993E9B8D97EE0AB3D,
  4700. DateTimeUtils_TryParseDateTimeOffsetIso_mFF737B4C6F2EB72F467997A7AADEBF25DC3F6336,
  4701. DateTimeUtils_CreateDateTime_mA0B2A67ADC65C233BCF0A7025B5DFEAB58C4BA30,
  4702. DateTimeUtils_TryParseDateTime_mCEB26B83D801FFA9F6DB95A28F3A6ED32F104554,
  4703. DateTimeUtils_TryParseDateTime_mD4CDAE4B70AEF627B730050371E76DF03D85AA2E,
  4704. DateTimeUtils_TryParseDateTimeOffset_m9CF9DE65CBC4D965F54B811A4088B1BFE1AADB0A,
  4705. DateTimeUtils_TryParseDateTimeOffset_m897C8372ED1E1537E51C1E1135DFE1ABB62E4FC7,
  4706. DateTimeUtils_TryParseMicrosoftDate_m025C57B42BD8AFD8B3418FD515C076BC94CDF59D,
  4707. DateTimeUtils_TryParseDateTimeMicrosoft_m885A3BC853E81284B05B0F81840BCDB99B9DF542,
  4708. DateTimeUtils_TryParseDateTimeExact_mB472AE59F30A5DA5C9D25886503BD11E54EE9800,
  4709. DateTimeUtils_TryParseDateTimeOffsetMicrosoft_mC3FD84162A4F5ADA3CC34C754BC6FF94AA7A6A0C,
  4710. DateTimeUtils_TryParseDateTimeOffsetExact_m36A41717F3FA6733B1ADCC8DBF6E4B20155A140F,
  4711. DateTimeUtils_TryReadOffset_m237AF52E8220DAE6C8F8D84D6716360B51DBC433,
  4712. DateTimeUtils_WriteDateTimeString_m885575A8116AAC5F71C6B37CA9D24B7B62A11502,
  4713. DateTimeUtils_WriteDateTimeString_mC9D544EB5C0D8E491CFCB28FA4D148BB91A49A0F,
  4714. DateTimeUtils_WriteDefaultIsoDate_m92CFB95DF817B99015644ADA1D138893D8630DC6,
  4715. DateTimeUtils_CopyIntToCharArray_mE2577B0ADDEE8F2C0368228A30A6CFEC7E16A4B0,
  4716. DateTimeUtils_WriteDateTimeOffset_m647C83899A3F870709FCDE7BFD62272A387F438A,
  4717. DateTimeUtils_WriteDateTimeOffsetString_m742639F14A65B8FDEEDEFBAFAE6AD16C89F5CB23,
  4718. DateTimeUtils_GetDateValues_m5C12A40C7AD3C1DABFFAB67AA880EC4C32582A8D,
  4719. NULL,
  4720. NULL,
  4721. NULL,
  4722. NULL,
  4723. NULL,
  4724. NULL,
  4725. NULL,
  4726. NULL,
  4727. NULL,
  4728. NULL,
  4729. NULL,
  4730. NULL,
  4731. NULL,
  4732. NULL,
  4733. NULL,
  4734. NULL,
  4735. NULL,
  4736. NULL,
  4737. NULL,
  4738. NULL,
  4739. NULL,
  4740. NULL,
  4741. NULL,
  4742. NULL,
  4743. NULL,
  4744. NULL,
  4745. NULL,
  4746. NULL,
  4747. NULL,
  4748. NULL,
  4749. NULL,
  4750. NULL,
  4751. NULL,
  4752. NULL,
  4753. NULL,
  4754. NULL,
  4755. NULL,
  4756. NULL,
  4757. NULL,
  4758. NULL,
  4759. NULL,
  4760. EnumUtils_InitializeEnumType_m713B5D6AFD555A85F9EF8B71D5529E704AC37846,
  4761. EnumUtils_GetValues_m0B62C0CEF1CAE80FC9F722D84F1D7D5AA56C7D58,
  4762. EnumUtils_ParseEnumName_m98F7C54DE44CCE14BB7F682B7B8B5AB16730FEDE,
  4763. EnumUtils_ToEnumName_m044649ACED3B32011FBA4D6A0F46D51BC38095B2,
  4764. EnumUtils_ResolvedEnumName_mAD7EA279305E7685F5EBB60E198A571E21ADF120,
  4765. EnumUtils__cctor_m963D0CEA5E94E2E98C5AF08C50C7D57DD19D819A,
  4766. U3CU3Ec__cctor_m3E691EABF39DFA96C9C95DF752360C493D82BAFF,
  4767. U3CU3Ec__ctor_m44DED9A94D6B8FEE56E0C7D65018B05371398247,
  4768. U3CU3Ec_U3CInitializeEnumTypeU3Eb__1_0_mF3B966590EAA425C2876209B94A65D2055AE4A46,
  4769. U3CU3Ec_U3CGetValuesU3Eb__5_0_m8821A781D3A878CF0320AB0157C69CDE323A4B59,
  4770. NULL,
  4771. NULL,
  4772. BufferUtils_RentBuffer_mAA330DE168C66ECDC06B75C6832C4B2FEFF31BEF,
  4773. BufferUtils_ReturnBuffer_mD8347E5FB054A320D755A11EA92263A6E8BAC494,
  4774. BufferUtils_EnsureBufferSize_m422B0C50E181D98372CB02E1596FE80E845ED44D,
  4775. JavaScriptUtils__cctor_m38F1787BA34FE254C001E0871F1B8A47F53E93F1,
  4776. JavaScriptUtils_GetCharEscapeFlags_mF11B28D71DA1AEC43670A3D0380FF6151BD7E134,
  4777. JavaScriptUtils_ShouldEscapeJavaScriptString_mB22ED650CCB389F31922358027D872C1970895D4,
  4778. JavaScriptUtils_WriteEscapedJavaScriptString_mF996F5B009DFE5F76A8F966BF531C9B1045A718B,
  4779. JavaScriptUtils_ToEscapedJavaScriptString_mCCF653C43DCE50A3BF1A8EAC20422C22FC3BF56C,
  4780. StringBuffer_get_Position_m50180D85B49F259316CFFA19E69FAC2DFEE07E1A,
  4781. StringBuffer_set_Position_m9EAB48EB3E1072B0C51957B5B57534A47936B6F0,
  4782. StringBuffer_get_IsEmpty_mA9327C7B60B8C4EABD2FA9855F915B21B3E1826A,
  4783. StringBuffer__ctor_m08F0B2D8BB62799D7A9F96A04B8B558A8C870BF7,
  4784. StringBuffer__ctor_m44E883E835181DBEF9FA86E3294D91042A914544,
  4785. StringBuffer_Append_mEB587A612A423C0EEA858CF2F855623B6CFAAD6C,
  4786. StringBuffer_Append_mB7D099F26B74FF44D0062E65145EC09AAA68C582,
  4787. StringBuffer_Clear_m16AE9943CA16BE8D3F273FF14AAAF90DA2333DC6,
  4788. StringBuffer_EnsureSize_mFC7C6C8641DA97CA1E33FEFA3E2356BEE2A38CE7,
  4789. StringBuffer_ToString_mB30A25624FBAFD98074B4A62E17FF44026FB6A2F,
  4790. StringBuffer_ToString_mE358A765D39BC6A53424A5E24CFC95B0E1440A0F,
  4791. StringBuffer_get_InternalBuffer_mF2FB70B40A70E2D2ABE71242031EE4AB957D41C1,
  4792. NULL,
  4793. NULL,
  4794. NULL,
  4795. CollectionUtils_IsDictionaryType_mCEBF4924207058D598A85B7212DF64081C8223B1,
  4796. CollectionUtils_ResolveEnumerableCollectionConstructor_mF47E2465D637C2E2A546D64D1704AD3DEAFF690F,
  4797. CollectionUtils_ResolveEnumerableCollectionConstructor_m9A580D7686D6FF8EF47068D66850BF97018F25D0,
  4798. NULL,
  4799. NULL,
  4800. NULL,
  4801. CollectionUtils_GetDimensions_m9B973A4F638E04E6D1BA430D4C46108C0F494D2C,
  4802. CollectionUtils_CopyFromJaggedToMultidimensionalArray_mB2E42969755789C966820C100174C84C9D19A3D2,
  4803. CollectionUtils_JaggedArrayGetValue_m662751C0A714033110043FDCB6AF04079DB0564C,
  4804. CollectionUtils_ToMultidimensionalArray_mEF33A26A2B907B40AD3479F6058BDDC2AE1F50F7,
  4805. MathUtils_IntLength_m3CA8B0EF3B9D2007346BB2F1199B4B689B241AE4,
  4806. MathUtils_IntToHex_m08096A8BF367E08EC0F0BE10D22FD5F167E5030D,
  4807. MathUtils_ApproxEquals_mB0A475E4963DE685D914DE0AF9992A6456863989,
  4808. NULL,
  4809. NULL,
  4810. MiscellaneousUtils_ValueEquals_m8749F7268F821E23B71CFCE98F2F5DD0C1EBE144,
  4811. MiscellaneousUtils_CreateArgumentOutOfRangeException_m3ABA61F92D22277F24C19EA1D9B8E0EC56D955DE,
  4812. MiscellaneousUtils_ToString_m2D126679C19F182E38EE06CF852B8DE7B872A40B,
  4813. MiscellaneousUtils_ByteArrayCompare_m8CE377C6213B857025B57C4C46F4B21E49CC77EC,
  4814. MiscellaneousUtils_GetPrefix_mA69C5A131357489B6BAA32B88B09219F862DD337,
  4815. MiscellaneousUtils_GetLocalName_m937BEFD1B1D5E23441DED4A9FD78F10D83176F73,
  4816. MiscellaneousUtils_GetQualifiedNameParts_m4FD35EE1420185E2AC8A3FC5224FFE9D2F8C7742,
  4817. MiscellaneousUtils_FormatValueForPrint_m4A7E1EBA219444902294E98F427D5EB44B599C0F,
  4818. ReflectionUtils__cctor_m6818590DEFAD41CF4222277D603049063300049E,
  4819. ReflectionUtils_IsVirtual_m5E3C3F5E5935BFE21832F5B3445C3AC12F3855E9,
  4820. ReflectionUtils_GetBaseDefinition_m67824E17C1BBD63AB035FB49B76229EC0560677E,
  4821. ReflectionUtils_IsPublic_m2C0A4E6CA4D843C494B93AEB4F2B5B22E40A028F,
  4822. ReflectionUtils_GetObjectType_m61F92E702AAAC35CC8EF0B094FC71656E292E5C9,
  4823. ReflectionUtils_GetTypeName_mAE9186A1EE728CB6DD3A5CD54597C908BFFE5BF3,
  4824. ReflectionUtils_RemoveAssemblyDetails_m3408042C07101E511DB26E006F5FFFFD154DE033,
  4825. ReflectionUtils_HasDefaultConstructor_mEE25FD0D3849116D9A71E3119522AF925FA3DDA2,
  4826. ReflectionUtils_GetDefaultConstructor_m50B91B72CF6116D8900DB553DF4ABDAA4D0DD8B1,
  4827. ReflectionUtils_GetDefaultConstructor_m4C6572BA56D0BC153622364430A50457316A8E00,
  4828. ReflectionUtils_IsNullable_m3314964E30F10876E7FD20D668ACA2F67323B2EE,
  4829. ReflectionUtils_IsNullableType_m76171BDB57C5ABC45FA8E149B6B5688ED314E8F5,
  4830. ReflectionUtils_EnsureNotNullableType_mA821D80FE01893A4FC960623809AE370B4C10742,
  4831. ReflectionUtils_IsGenericDefinition_mA2F1D3F5BC69158AF227C5689CC39F5FDA2FC4E3,
  4832. ReflectionUtils_ImplementsGenericDefinition_m6207F2FEED7C5DE7A6706D26040656D8B3B635DF,
  4833. ReflectionUtils_ImplementsGenericDefinition_m348F17ADEBDFF0EFE2B1C14356A9487DA04E53A8,
  4834. ReflectionUtils_InheritsGenericDefinition_mC48B0831A355520CA35E8A1F92B5E7F2AD6047C3,
  4835. ReflectionUtils_InheritsGenericDefinition_m8276B12C2F328359F88CE33F496A8EEA62B18C9A,
  4836. ReflectionUtils_InheritsGenericDefinitionInternal_mE86B1B9669D7240D201F35EB6D7791A246EE44E0,
  4837. ReflectionUtils_GetCollectionItemType_m8EC46416C4FDC314E1B9B1C4059195A864C9F111,
  4838. ReflectionUtils_GetDictionaryKeyValueTypes_mB9EBB6B6470ADED2CD2EEA6AC2A1AB37EC98DC39,
  4839. ReflectionUtils_GetMemberUnderlyingType_m94F1EB793484B7FADC83A1AF36E98862918E00BA,
  4840. ReflectionUtils_IsIndexedProperty_m45D58103C9DC9D7A573E63801BBCCF19EFA61BDA,
  4841. ReflectionUtils_IsIndexedProperty_m5D2A51E91596925FA727A58741B95B65866E8162,
  4842. ReflectionUtils_GetMemberValue_m75D69FFAC261AFBE7EE8F952FD828B41E131BFD6,
  4843. ReflectionUtils_SetMemberValue_m2932AB649EE9B56618E6EDEF9C49C6E89560777A,
  4844. ReflectionUtils_CanReadMemberValue_m924E5AE82FD3A6F3168CC7A977C329F15D7B8B7C,
  4845. ReflectionUtils_CanSetMemberValue_m767131759A73EBDE5E3E09A71BAB84D1F0BD7087,
  4846. ReflectionUtils_GetFieldsAndProperties_m211CDF828C219605B15E088B613A1C923D67FAE4,
  4847. ReflectionUtils_IsOverridenGenericMember_m8169762CBFAA28B9D10A92E2AA9CA5D01152AD1B,
  4848. NULL,
  4849. NULL,
  4850. NULL,
  4851. ReflectionUtils_GetAttributes_m83F5A3C879E6FCB9CEA8A7C258D8CEE723D72224,
  4852. ReflectionUtils_SplitFullyQualifiedTypeName_m92BD778731848AE37C27FB4AFFFBFD7536FE2FEB,
  4853. ReflectionUtils_GetAssemblyDelimiterIndex_m14990078E824FFB48C3BFD9C2840EFA8C5CE6944,
  4854. ReflectionUtils_GetMemberInfoFromType_m67086420E1ED4E5848D76D1DAA6EB1D5EDDF26B3,
  4855. ReflectionUtils_GetFields_mCDB38A13357C9B711FC579D3F667C42082F1834C,
  4856. ReflectionUtils_GetChildPrivateFields_m7EF77F114CD7B4B236983F281B96DD0D731C1F8F,
  4857. ReflectionUtils_GetProperties_mFEDD991ABAD2CCDF09676FCC70B49522C42DE5F2,
  4858. ReflectionUtils_RemoveFlag_m36A4700E23561A8CED0621777255A9667DCE79FA,
  4859. ReflectionUtils_GetChildPrivateProperties_mB9506DBA4650528387181DD7E43AFB706CA21AA3,
  4860. ReflectionUtils_GetDefaultValue_mBDDA7D5EB81537EE3840C3B1867D35C442E72927,
  4861. U3CU3Ec__cctor_mCF4C3631A1BD5C3B61ED05E30940B5E361B28828,
  4862. U3CU3Ec__ctor_mDA33AA8E118D1D8277E3467575C9E5B9AB628E46,
  4863. U3CU3Ec_U3CGetDefaultConstructorU3Eb__10_0_m17815478D5DCADBBD2A6AA34250EDF5A111E5B78,
  4864. U3CU3Ec_U3CGetFieldsAndPropertiesU3Eb__29_0_m916E1FDF7C53DFA1D4BD32052B264443CE1E94CA,
  4865. U3CU3Ec_U3CGetMemberInfoFromTypeU3Eb__37_0_m06E1B0E80F071C82CF50F5817F9AAF8FD3A56E8A,
  4866. U3CU3Ec_U3CGetChildPrivateFieldsU3Eb__39_0_m8AC377D32B6BAC80570452D84F2D48EB9E7BE7DD,
  4867. U3CU3Ec__DisplayClass42_0__ctor_mEF8413C4DF73A6067FF49DE2D7778969478194EE,
  4868. U3CU3Ec__DisplayClass42_0_U3CGetChildPrivatePropertiesU3Eb__0_m39CF962B54FA7C2F29532D4648AA7C5B39F1BED0,
  4869. U3CU3Ec__DisplayClass42_0_U3CGetChildPrivatePropertiesU3Eb__1_m6AB570883720965760F59B80DD4EB93F25C2329D,
  4870. U3CU3Ec__DisplayClass42_0_U3CGetChildPrivatePropertiesU3Eb__2_mD5D8631346ECB05F7F0494A567ADDC31ABE42E70,
  4871. U3CU3Ec__DisplayClass43_0__ctor_m5138CDE6D850BD643FC997D06EA4D21B6DD22739,
  4872. StringUtils_FormatWith_mA88108ED0CDF74A30989A7B14A393D7A5292DFDD,
  4873. StringUtils_FormatWith_mA780395FEF887F07DE6C1018243B910B911A87D5,
  4874. StringUtils_FormatWith_m01AD6F89B06DD120C887C16E61C94E8B04D3D2C6,
  4875. StringUtils_FormatWith_m1D59CA5065908DF48693905A40E5CCA7F1A91B70,
  4876. StringUtils_FormatWith_mFCC6AB6A81ECA4D02B5C193901D0E734E138741A,
  4877. StringUtils_CreateStringWriter_mCDE2FADE409388D61DD95C44D6ABC067D180B0D0,
  4878. StringUtils_GetLength_m5250F4258D52261B9967806CFF474853BC503760,
  4879. StringUtils_ToCharAsUnicode_m08ECAC8F4B2F09E569C3DAABB3DBC8245A410E58,
  4880. NULL,
  4881. StringUtils_ToCamelCase_m874D79971CEE162C0415EF7593B20819D29ADF63,
  4882. StringUtils_IsHighSurrogate_mE0AEA3748F379B551DFFE95F91A4FF251B09CCEC,
  4883. StringUtils_IsLowSurrogate_m4C663533AD7DA12D50F6820EFAD3723CB5524E8B,
  4884. StringUtils_StartsWith_mBAC5E0DBF7C1136DAA94EDD25F6CD2D51699F0E8,
  4885. StringUtils_EndsWith_m6FC01C84F3118887A568BB4FBE2DF010F95D2074,
  4886. NULL,
  4887. NULL,
  4888. NULL,
  4889. TypeExtensions_MemberType_m6169F34B91C472E863D8B0040EC001B9B7A8300A,
  4890. TypeExtensions_ContainsGenericParameters_m30D8EB328384CD4988693E35CA82635781F580BC,
  4891. TypeExtensions_IsInterface_m70BD081C0C596FD1B176C55FD94D6245288599AA,
  4892. TypeExtensions_IsGenericType_m7A76DBF2CA0DA4227470F876CB2502D75412B863,
  4893. TypeExtensions_IsGenericTypeDefinition_m5F8893A76A73A02E94344344537018775AF8342F,
  4894. TypeExtensions_BaseType_mA9DD68BC66845DF4806A67AC1C02F3C5741B4CD4,
  4895. TypeExtensions_IsEnum_m8CA2DB04CBF02DC0D062C6B0732EBA95D77FF7CD,
  4896. TypeExtensions_IsClass_m9D47CA72372812118E70511BD72FE982B3BC893B,
  4897. TypeExtensions_IsSealed_m1FF181A71CEE57C877BDCA959D0B088BC51E8205,
  4898. TypeExtensions_IsAbstract_m6A160B0ED4AE6632B36E4D780B1051F16525F9A0,
  4899. TypeExtensions_IsValueType_mA1E9908F63522A14D50D62ABA662EF4763BF5C9A,
  4900. TypeExtensions_AssignableToTypeName_m0D1D33469CA7EB968A75A6F0E9273F882454495D,
  4901. TypeExtensions_AssignableToTypeName_m4B5338B11FEA2F13490A5A1DD81EE94985E868E3,
  4902. TypeExtensions_ImplementInterface_m959AF4C81832013C19D1377F0476215865D5F7E3,
  4903. ValidationUtils_ArgumentNotNull_m9332A1307FA17A704CD312343FB5E20612B5F386,
  4904. PreserveAttribute__ctor_mB2ECDF8B6BB50A37CF5A535FE2C892A03DF78A41,
  4905. DiagnosticsTraceWriter_get_LevelFilter_mE8756C49701D816188F0701B8BB2D00CF3DEDB3B,
  4906. DiagnosticsTraceWriter_GetTraceEventType_m092B6043463DFD87EE95D63C901EBF3104F0801E,
  4907. DiagnosticsTraceWriter_Trace_m680EBE0C01D55B29AF709842D111928B531B1707,
  4908. DiagnosticsTraceWriter__ctor_m36141DE05BD293EC446C1150099E5E22ABF327CC,
  4909. NULL,
  4910. NULL,
  4911. JsonContainerContract_get_ItemContract_mD598471E3E30734493C2D3718582CF2CE6DAF179,
  4912. JsonContainerContract_set_ItemContract_m54ABE19CFE3130634FFA76C0A8FAF143015E0BDC,
  4913. JsonContainerContract_get_FinalItemContract_m9A966EBCD362344DED8BD92BC9FDCD819CECB320,
  4914. JsonContainerContract_get_ItemConverter_mFACA42EAFFCCBB01401B3FA24E7A4EC00F539347,
  4915. JsonContainerContract_set_ItemConverter_mA1371FF652F4B551CDD5C458DF37F6D30F2E7890,
  4916. JsonContainerContract_get_ItemIsReference_m0E9C290FA2933C5566F26E530815B051F7797BC4,
  4917. JsonContainerContract_set_ItemIsReference_m663294207383D91A14CCF28A5FF79EFFDE87859B,
  4918. JsonContainerContract_get_ItemReferenceLoopHandling_m87CD2B46CB4168BC086A0BDACE1F7D29601FD6F1,
  4919. JsonContainerContract_set_ItemReferenceLoopHandling_mF2F38DFBEC5893B28B696188AD578B2B10AA8C6F,
  4920. JsonContainerContract_get_ItemTypeNameHandling_mB7435D8621891FCAFEC648199E0C68AFB49402FD,
  4921. JsonContainerContract_set_ItemTypeNameHandling_mC69F55CA9D424520C0640F1ABAC4B0E23DFDBB19,
  4922. JsonContainerContract__ctor_m48265CFFDF6A85E2DE51D6C25F9EC2277A47D8BB,
  4923. MemoryTraceWriter_get_LevelFilter_mDCC6F41E5C5A65727EA283AD52869B9813D29387,
  4924. MemoryTraceWriter_set_LevelFilter_mFDD4C8ECCC1F3EA622509414E2D76338B27B731A,
  4925. MemoryTraceWriter__ctor_mFB09401F4B0613E030840BE78B70238D1C70C616,
  4926. MemoryTraceWriter_Trace_mF36440FE4D701E06F5A64A3D0A58FA758D857FC8,
  4927. MemoryTraceWriter_ToString_m5E2C9C7F1475671984844E59C14DFE3404A40524,
  4928. ReflectionAttributeProvider__ctor_m3752523B8F38E4663AC689FC3044623D755F3BDE,
  4929. TraceJsonReader__ctor_m7AFF0629970B5C3EDF27A86E188214E818BE9B37,
  4930. TraceJsonReader_GetDeserializedJsonMessage_m25D29E496537624A1281CC1396FE1C22B9B6CE54,
  4931. TraceJsonReader_Read_mC7AE4725ED71DA99A9C3890E59C3A550C7797158,
  4932. TraceJsonReader_ReadAsInt32_m07CD6C54DA64337DB5363584A4002A28C54D0B9C,
  4933. TraceJsonReader_ReadAsString_mFC7D0A41CC73967C0288DB53D181B18AF179A52A,
  4934. TraceJsonReader_ReadAsBytes_m9E530706E2E02D02A5DF1B9C7BEF93381C47825C,
  4935. TraceJsonReader_ReadAsDecimal_m62ED843F7D4925C83FE1F1A2B03443F43E1E3F19,
  4936. TraceJsonReader_ReadAsDouble_m9FCCAEBEC300DF2A5882F5ADD72AA389D89548A2,
  4937. TraceJsonReader_ReadAsBoolean_m4731F9C0183FFA311D9FBF1A2ABA969CF168B172,
  4938. TraceJsonReader_ReadAsDateTime_mC3EE6BEA702A0F37CA70096B3ADDA4D6F4E35FC9,
  4939. TraceJsonReader_ReadAsDateTimeOffset_mF5834EABBBD0F2F658583D0D636902F507045570,
  4940. TraceJsonReader_get_Depth_mA7E8B79B7C952D629399501AD3B79EC9C5B6598D,
  4941. TraceJsonReader_get_Path_m3C73E7145B933C2D576BFD160898ADFA1B475A12,
  4942. TraceJsonReader_get_TokenType_m158C509F0475A1AD2C74DB46D375E86D3D7D7178,
  4943. TraceJsonReader_get_Value_m8801B1D5B7D874C8577FF545DA396856217FB171,
  4944. TraceJsonReader_get_ValueType_m2B84530928F4EFC20F09CA8D0F2B67AA664C1F74,
  4945. TraceJsonReader_Close_mB17DCE6EBE087F09EDC684090B2BDA9D11EF2DB9,
  4946. TraceJsonReader_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mBD5F042BF6F3B8954DD1E3E814BAA91A32106603,
  4947. TraceJsonReader_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_m3A27FBA70CAE1B984C4BFB2A43AF029E95DE4C33,
  4948. TraceJsonReader_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mEA5E492B3FAC45038DF27B5E10DB4597C672FDCB,
  4949. TraceJsonWriter__ctor_m5B7D770660090E6AF7C84A478456F35FEDFAB45E,
  4950. TraceJsonWriter_GetSerializedJsonMessage_mE1374279904FA737311526BB7A0DCFAA4181820F,
  4951. TraceJsonWriter_WriteValue_mDECD0946BE8CDB73756A4A2EAB61632665360C34,
  4952. TraceJsonWriter_WriteValue_m90F852D7AA5EE7805A8D74201A3D05694274F5D5,
  4953. TraceJsonWriter_WriteValue_mA2CDA976D12C4C2C803608CFF064C4FD8C2FC707,
  4954. TraceJsonWriter_WriteValue_m2238E223301E1DD85493354CC670BC3E20379023,
  4955. TraceJsonWriter_WriteValue_m3053129F8DDA7AE7110E4F3325CBF316F1F82552,
  4956. TraceJsonWriter_WriteValue_m38454F8C72D80C6FF246E90D3A78B09BA11E01CA,
  4957. TraceJsonWriter_WriteValue_m1EF340B78E591D4ECECA5BCBA599699D12786B9B,
  4958. TraceJsonWriter_WriteValue_mF0040AE090181DC931089841F3D8044875B1D2DA,
  4959. TraceJsonWriter_WriteValue_m2B8FB54016869068716BDE4B9612760CF300C82A,
  4960. TraceJsonWriter_WriteUndefined_m573E51ECBE7E1451773E8DCF1DD574AAC3FBF980,
  4961. TraceJsonWriter_WriteNull_mD0D94D99E65D9FBDB39701E7E0D6E461D06B8000,
  4962. TraceJsonWriter_WriteValue_m681B9B8804F2DA0023A6BFBF1DB6B9BEAF4F37D5,
  4963. TraceJsonWriter_WriteValue_m42C7B07F46E06D297BDA8DF2AFB1EEE54CA233E8,
  4964. TraceJsonWriter_WriteValue_m9CF04776A17A8D6A45A77314B703202C8C51689D,
  4965. TraceJsonWriter_WriteValue_mA81E6EE07CD3F87A280FB58A82A70A2BC05FBF28,
  4966. TraceJsonWriter_WriteValue_mC05850E722E59146033CBA2B72F39C39B45B89B3,
  4967. TraceJsonWriter_WriteValue_m2C6C5FDD9431692B9261C8A70BA23AC9A3D002CC,
  4968. TraceJsonWriter_WriteValue_m98EFA633CBF4C9EC539C0B88D7780AAB817D47BF,
  4969. TraceJsonWriter_WriteValue_mAF7D8F204CBF963F44BA3DDB378A6FA00F9DFF37,
  4970. TraceJsonWriter_WriteValue_m432E179DA93FD4125AF43B93CF564ED818373C73,
  4971. TraceJsonWriter_WriteValue_m281F8200888983A0B0DB063F241E796A69957C33,
  4972. TraceJsonWriter_WriteValue_m4AD41E1ECE64552FF9D631DB2CA092FFF3A6B698,
  4973. TraceJsonWriter_WriteValue_m995E3B8E66AB938E18322D4A959C86DBA5B430C2,
  4974. TraceJsonWriter_WriteValue_m25324644AF8F2C10C1E59CC48DA54A5121E5A5E0,
  4975. TraceJsonWriter_WriteComment_m48B3C1FD7822CC31AB30212F8A107C651CAFAEDB,
  4976. TraceJsonWriter_WriteStartArray_mC981B74610B3F6ACAB57584E785465104AD9CF4B,
  4977. TraceJsonWriter_WriteEndArray_mBBF22A7B32751C85D30939A8D52808AC14C35EA4,
  4978. TraceJsonWriter_WriteStartConstructor_m608E3608BAA8FE498CD760625728C592BDEA8DD8,
  4979. TraceJsonWriter_WriteEndConstructor_m9E4F093C1721A0DE232F59F6494720B202DC18B2,
  4980. TraceJsonWriter_WritePropertyName_mFD01B971FC589B08F1C7F1472AACDD1977294198,
  4981. TraceJsonWriter_WritePropertyName_mCB090A88DE23BAA4304BA8FF8C117642620E3BEC,
  4982. TraceJsonWriter_WriteStartObject_m081D83A364446B0E66C00AEC39864A5A39CD7097,
  4983. TraceJsonWriter_WriteEndObject_mA6A1F68C94093B6373C3C2C8A5C87A888A39DD93,
  4984. TraceJsonWriter_WriteRawValue_mB0875609CF6E5720FDCC6D91EE1D3C3B4BE32640,
  4985. TraceJsonWriter_WriteRaw_m525C4C27D010AEB69C181DE938B939C74C8B5BE9,
  4986. TraceJsonWriter_Close_mD7F5FBE3C973290F78C457B74AD1AB99BC1D58A3,
  4987. JsonFormatterConverter__ctor_m146CC0BCD989ECBCA0DB94F0F898D1C0F7275D37,
  4988. NULL,
  4989. JsonFormatterConverter_Convert_m121005D2680232FA8E91735481504753A24E8A3E,
  4990. JsonFormatterConverter_ToBoolean_m5D53A7D4C6082713F370A8774BE5E573AD7CDF4E,
  4991. JsonFormatterConverter_ToInt32_m73485AED91E0F0F2FF63D38BFBF5C5C6E877A2C7,
  4992. JsonFormatterConverter_ToInt64_m9F77AC264FD61704CF352EF5761094B9093B7465,
  4993. JsonFormatterConverter_ToSingle_m90077B8B5694657DAA61D82EFD79A6962EC33729,
  4994. JsonFormatterConverter_ToString_mC3493943218E47C48BE6C023BC3B234195516B22,
  4995. JsonISerializableContract_get_ISerializableCreator_mADA185D9E95FCDA15996426673FD6E2F6C725190,
  4996. JsonISerializableContract_set_ISerializableCreator_m50D5769B5D94DE751572197CED0415AF7BBBB629,
  4997. JsonISerializableContract__ctor_m57B1A580FC0BDD3FC9B0143631D7BEE981714FC1,
  4998. JsonLinqContract__ctor_m8BCAA67AF116E235712C5CFEFDD3C3D6102535DC,
  4999. JsonPrimitiveContract_get_TypeCode_m9F938E411AFCC686F51591B8094111BE241D8CE4,
  5000. JsonPrimitiveContract_set_TypeCode_mC400A566DC3ED2195AA91F8302423EA00BC5898F,
  5001. JsonPrimitiveContract__ctor_m26C2556779C3B5C80DDCCDFE0B60A3294BD8D50A,
  5002. JsonPrimitiveContract__cctor_mB70138F7F7EEB59DB608604CCA86BFCCB0A4366C,
  5003. ErrorEventArgs_set_CurrentObject_mD942DD678863D48DB12217E473F0DEA7D8B31AFD,
  5004. ErrorEventArgs_set_ErrorContext_mFCF9E619D2E91651CE1C1CC9C9DC504C8E75BD14,
  5005. ErrorEventArgs__ctor_m5627999666EE75E0282BB51CA27CBFA1CE12EEAD,
  5006. DefaultReferenceResolver_GetMappings_mF96C2D6D19FBE8FA1410EE26454881D4D7B2CE75,
  5007. DefaultReferenceResolver_ResolveReference_mC94430A6B5EF11FA1909E2A89E70D5D7C4B96C6E,
  5008. DefaultReferenceResolver_GetReference_m7E47A23532CAEC1305B0EB4D0D7F5AD2A02E98C6,
  5009. DefaultReferenceResolver_AddReference_mFF376FDB774C86C7B0DF552404EF437BEDFD5FB4,
  5010. DefaultReferenceResolver_IsReferenced_mB6A01C462DF33E1036903D3EB102405558156714,
  5011. DefaultReferenceResolver__ctor_m4AA5B6BADDB120DDC5F16A1B2B15C45E3AF85757,
  5012. CamelCasePropertyNamesContractResolver__ctor_m48F6D1B0927EE1F00391C5811D523946C1C62D0A,
  5013. CamelCasePropertyNamesContractResolver_ResolvePropertyName_m429156924F81C13FE65FAD2ED52E40F023BE861C,
  5014. ResolverContractKey__ctor_m968636309AE4253BA8F077FF7ECB81DF1AF084EB,
  5015. ResolverContractKey_GetHashCode_mD441ABBFA2338FEDF3997A3AA948F21BD49F42F2,
  5016. ResolverContractKey_Equals_m0E63CED51A9B59D23AA8EDFD3B968923D925D8FE,
  5017. ResolverContractKey_Equals_m46DB921C8C1F68636C1726443195B8525F686A86,
  5018. DefaultContractResolverState__ctor_m0A0B581B6AF8A4E05E5AD4946F154A2C9E078ED1,
  5019. DefaultContractResolver_get_Instance_mA523B467C8E9CBF3304FF0B4D98E79F40731A381,
  5020. DefaultContractResolver_get_DefaultMembersSearchFlags_m7E3F665EDE2333E5C09F959160782582C95F2260,
  5021. DefaultContractResolver_set_DefaultMembersSearchFlags_m682B9E9BAA1DD334C8E6C3E0327F322947BDB58C,
  5022. DefaultContractResolver_get_SerializeCompilerGeneratedMembers_mA91C3B570EF0F8C8F612E0578154842266EB5E59,
  5023. DefaultContractResolver_get_IgnoreSerializableInterface_m28404CA32E8F1F00FC98B38EAE0C42D8FE06FF3F,
  5024. DefaultContractResolver_get_IgnoreSerializableAttribute_m58B9D44EBCB6F31E38305E81FFC9E5E1A3F92F62,
  5025. DefaultContractResolver_set_IgnoreSerializableAttribute_mD03C0CD2DA303BD0322A2DF86F86127E3CEA09DC,
  5026. DefaultContractResolver__ctor_mAFA2A605045F462A193939691773DFE35F8A4503,
  5027. DefaultContractResolver__ctor_m7A48906A61362FC01ACD44BACDCB7207D13AB6B3,
  5028. DefaultContractResolver_GetState_m248977BF071A30F2CF65149D8E326EEF58D73158,
  5029. DefaultContractResolver_ResolveContract_mD98E625823D91A9C539754CBF6C8876CC8BCA246,
  5030. DefaultContractResolver_GetSerializableMembers_m27B4BCA35F4E8E44390A9A8BC8510F21DCA9BB8D,
  5031. DefaultContractResolver_ShouldSerializeEntityMember_m4FF2BC429CB82EA5F49FB0B3F5ADEF99DFD896D1,
  5032. DefaultContractResolver_CreateObjectContract_m4644B7AEECE9A63E8F0FC340B86D3FB0034A486C,
  5033. DefaultContractResolver_GetExtensionDataMemberForType_mCAEDF8938DC97DE6E4ABE62422E483A8EC2CAECB,
  5034. DefaultContractResolver_SetExtensionDataDelegates_mACDDF5D8BA1E7C6CADB5F69EC6E785869BED8C86,
  5035. DefaultContractResolver_GetAttributeConstructor_m8BCC82D5583A38DC379C590F5103AEFAE604B58C,
  5036. DefaultContractResolver_GetParameterizedConstructor_m2188DCB311817CD8C274E17C5E4768262B3D2A87,
  5037. DefaultContractResolver_CreateConstructorParameters_mE237183B5946975BD9F04522B0FA72393310E7F9,
  5038. DefaultContractResolver_CreatePropertyFromConstructorParameter_m94CBAEEF20C09EB3F9917F968ABC5E9C3AC3E2F3,
  5039. DefaultContractResolver_ResolveContractConverter_m397D37ED4131E91008A07323C9748F29D03AAD19,
  5040. DefaultContractResolver_GetDefaultCreator_mD54805590E4FE3940B7A5F58961D09CD5296FD05,
  5041. DefaultContractResolver_InitializeContract_m7AF6A4A4D8B960309E89850ADD465705F2C23944,
  5042. DefaultContractResolver_ResolveCallbackMethods_mD10B9C21AA296680370B8EBEB84F34257E159B9F,
  5043. DefaultContractResolver_GetCallbackMethodsForType_m2FA8DBC33C57C3956EE942474F80441F2AA6102D,
  5044. DefaultContractResolver_ShouldSkipDeserialized_m13D16431013E85ECC9DDA900C4D1947B402F7947,
  5045. DefaultContractResolver_ShouldSkipSerializing_mEB54B48250CA20CF0CC1CE24A4A2D31511EC71CD,
  5046. DefaultContractResolver_GetClassHierarchyForType_m5348D41320C848BBB768F731730BE88F9787C2C7,
  5047. DefaultContractResolver_CreateDictionaryContract_m2C05EB7C47DC525E2162758E32943A6CB8DD5B66,
  5048. DefaultContractResolver_CreateArrayContract_m0E97C8A2C388F003C9E5F390002996B9872506D8,
  5049. DefaultContractResolver_CreatePrimitiveContract_m1568CF9A954BA356CCD2F35F80C8E7CBE3933456,
  5050. DefaultContractResolver_CreateLinqContract_mB0582C162176DFB0F2F231D16D65604C3A7EB382,
  5051. DefaultContractResolver_CreateISerializableContract_m1501DBACC405F675F67A136B6034DBE8DB111927,
  5052. DefaultContractResolver_CreateStringContract_m31FB27D556FCEA945BAE2B927A12CE10E23BF153,
  5053. DefaultContractResolver_CreateContract_m074D213659E889D77E46B829BC8C115A16F9691F,
  5054. DefaultContractResolver_IsJsonPrimitiveType_mD9CCEEF3A161B084AB4FD40F8E884779BF03DD7D,
  5055. DefaultContractResolver_IsIConvertible_m7E9D668172404E24BEE7ECB6697F931BB1E379D4,
  5056. DefaultContractResolver_CanConvertToString_m2C1BCEF0BE65626A070E55A6EC5B864EFF19BF48,
  5057. DefaultContractResolver_IsValidCallback_m96E973783BD8DC95FB511DD2C9D6D3DFCF1C1B32,
  5058. DefaultContractResolver_GetClrTypeFullName_m2BEF05EC12DB3ADEEC64C96CB5DC3BA6C7317B80,
  5059. DefaultContractResolver_CreateProperties_mCA921C44C5F439158136489EDEB6C461B4B820BC,
  5060. DefaultContractResolver_CreateMemberValueProvider_m04A8DACB4600B7E1687B23641816CF74ACC8B16F,
  5061. DefaultContractResolver_CreateProperty_m14E19D4C353FA047C626C179791B86D8A6D7B5F1,
  5062. DefaultContractResolver_SetPropertySettingsFromAttributes_mAD2F3F089E4AF01FEB25C039F57F739631E5F7DD,
  5063. DefaultContractResolver_CreateShouldSerializeTest_m2A4FFB38B7E8BB3A99B9E4D941524A78A332D8E1,
  5064. DefaultContractResolver_SetIsSpecifiedActions_m29A33D3E6CE00C1C13D8965A2CBF124CEA02E865,
  5065. DefaultContractResolver_ResolvePropertyName_mB5F93465D7D5DDFFE0813ED1D9C4758C489ADAF7,
  5066. DefaultContractResolver_ResolveDictionaryKey_mC492C711CA8E10C8EBFDDB4C41145386B86130A6,
  5067. DefaultContractResolver_GetResolvedPropertyName_mFC2B40EE06D1B0DC9E19FFA91DFC20693F066578,
  5068. DefaultContractResolver__cctor_m8608D6E0158D2232F50C323B6E51D6E2202A84D9,
  5069. NULL,
  5070. NULL,
  5071. NULL,
  5072. NULL,
  5073. NULL,
  5074. NULL,
  5075. NULL,
  5076. NULL,
  5077. NULL,
  5078. NULL,
  5079. U3CU3Ec__cctor_m9EC269757B26B4813E589B1123CE120B3A497D63,
  5080. U3CU3Ec__ctor_m2C5546AB35B398F2D78330D6129B7BBCC3203F68,
  5081. U3CU3Ec_U3CGetSerializableMembersU3Eb__30_0_m791D70C99D4E33A1E15062413EEE62AD562037B9,
  5082. U3CU3Ec_U3CGetSerializableMembersU3Eb__30_1_m96B3B053393D6561BAF8CF797FECE97F4449E526,
  5083. U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__33_0_m6EB667E080CF02AC04A3F1034A99CDBA75721A2D,
  5084. U3CU3Ec_U3CGetExtensionDataMemberForTypeU3Eb__33_1_m85DF46087A841A2D787F963CFAEFE18A13A78746,
  5085. U3CU3Ec_U3CGetAttributeConstructorU3Eb__36_0_mF5A8F2BF2D689DB11587DF0ED6EEFB1FEA5528CF,
  5086. U3CU3Ec_U3CCreatePropertiesU3Eb__60_0_m548D20C07CB10339108D20AA39BC742B50214E47,
  5087. U3CU3Ec__DisplayClass34_0__ctor_m393BA3E0F7DE7A199719ABD4F8F001A2A5EE5BA3,
  5088. U3CU3Ec__DisplayClass34_1__ctor_m80069CCCBF43FC0EFE8DA673B7272EF997504808,
  5089. U3CU3Ec__DisplayClass34_1_U3CSetExtensionDataDelegatesU3Eb__0_mBDE9A222B6950113F7F7AFE0F2E87069E77F77BD,
  5090. U3CU3Ec__DisplayClass34_2__ctor_m0B6F49294BD09EE559FB8374BE7D9603696A0FC0,
  5091. U3CU3Ec__DisplayClass34_2_U3CSetExtensionDataDelegatesU3Eb__1_mB7F0EF1B70A312CCEFBF0080B26B017BF9A7BCC4,
  5092. U3CU3Ec__DisplayClass64_0__ctor_m0304B49F10D0EA4482684904DA5523E733F54C4F,
  5093. U3CU3Ec__DisplayClass64_0_U3CCreateShouldSerializeTestU3Eb__0_mC859EFE3BD0D275D1A42806AFD781A5DE407DD1C,
  5094. U3CU3Ec__DisplayClass65_0__ctor_m317EFA126E76F58FDB02D5BF3FCD6EDE1549226C,
  5095. U3CU3Ec__DisplayClass65_0_U3CSetIsSpecifiedActionsU3Eb__0_m8D10BDDA860CF015E1ABC8B45CD874BF48ACB8A6,
  5096. DefaultSerializationBinder_GetTypeFromTypeNameKey_m9C11DADB434B0AA3A72B8AFFE20FE58EBBF6E9F9,
  5097. DefaultSerializationBinder_BindToType_mD961DBB73B7EA10E26645656194EC574B9446C1C,
  5098. DefaultSerializationBinder__ctor_mF2F29057B0BF9EFF86183CBA88CB48DA3E41FE1D,
  5099. DefaultSerializationBinder__cctor_m8E3A2AB157EA691CC0314C91895137543E957BA8,
  5100. TypeNameKey__ctor_mD4B4C258C07B7B90E3DF9FF8E544F235DEF91414,
  5101. TypeNameKey_GetHashCode_m39B4CC4974DA019307688EB5C98DF95C979DE6DB,
  5102. TypeNameKey_Equals_mA8F9631B58F24FA621BC3773D773F504CD394476,
  5103. TypeNameKey_Equals_mF640FAB58FACF8E193583786EE162430F96E7037,
  5104. ErrorContext__ctor_mAB6B600BA9BB98E71B9FFF1B9DE4FAC4B5D04826,
  5105. ErrorContext_get_Traced_mB5B1E18305F17E84FB66AB2206B5D93F6A02B84C,
  5106. ErrorContext_set_Traced_mC054F18B762D95CC9C7152D6F320CDECCC832819,
  5107. ErrorContext_get_Error_m5833295E6BE4A4CAD540D3C1B80CF06E71B87A7A,
  5108. ErrorContext_set_Error_m75DF55A3439C3DEB05C71A542D23B3E8C3129E0E,
  5109. ErrorContext_set_OriginalObject_m4CA8303766288428B25A40D3B1BB22A43A42BBAB,
  5110. ErrorContext_set_Member_m1634A9D7F1819AD9369EEEB299B9006C2C5DBE8C,
  5111. ErrorContext_set_Path_m19C423B7C393619E551184BA867D3F04187922C6,
  5112. ErrorContext_get_Handled_m0149225F7BF0BA835D20FB8F86833149BF445DE0,
  5113. NULL,
  5114. NULL,
  5115. NULL,
  5116. JsonArrayContract_get_CollectionItemType_m30274DD94F90DAAC9988F9626A2A30D9F16ABCF9,
  5117. JsonArrayContract_set_CollectionItemType_mC33A98A3D84DC39307F612E097A6B3871375405E,
  5118. JsonArrayContract_get_IsMultidimensionalArray_m77B5B57593E4AD11FF9BD276C695E2FE4BE6507F,
  5119. JsonArrayContract_set_IsMultidimensionalArray_mA55D34224E5FEA51CD59BF4AC74556D0C704E733,
  5120. JsonArrayContract_get_IsArray_m14EF8A42187D59A9883FAD499456080F81A55124,
  5121. JsonArrayContract_set_IsArray_m3E4DEA93294EC3AAFD7147809DF576874E4FA709,
  5122. JsonArrayContract_get_ShouldCreateWrapper_m4484732675B96A4610566CFBD5A789C838E0D38B,
  5123. JsonArrayContract_set_ShouldCreateWrapper_m5565E91364A725C1EEAB9E50F561FF8B0F9F890E,
  5124. JsonArrayContract_get_CanDeserialize_m0DACE2FEB9B4F65909E2F327C6AAF8C381A9FFA7,
  5125. JsonArrayContract_set_CanDeserialize_m7D6073D8DAD68092D951ADC1DD1F8DAEDA4D6DC0,
  5126. JsonArrayContract_get_ParameterizedCreator_m1C2B63A7855ED9BE487BC5FCB0AF10C658666EA1,
  5127. JsonArrayContract_get_OverrideCreator_m73B0CD796CFF0962928C44FBD24A27AE3FEF4A34,
  5128. JsonArrayContract_set_OverrideCreator_mFD1815C37617FDE228F9E3EA7AEDF446ED6FF9A1,
  5129. JsonArrayContract_get_HasParameterizedCreator_mB012930557F741C94C7772EF7B3AE379B9B0E6E3,
  5130. JsonArrayContract_set_HasParameterizedCreator_m80CE10D322AC9BD72426BFCBA0655AC715945CFD,
  5131. JsonArrayContract_get_HasParameterizedCreatorInternal_m752BEE849B8912315429820CA092E58187D557B7,
  5132. JsonArrayContract__ctor_m3F1C09964B4D30DBAA46A7858FA8FCA491313852,
  5133. JsonArrayContract_CreateWrapper_mBAE632B061E0C835014B6A045D1A05BCBE5D6521,
  5134. JsonArrayContract_CreateTemporaryCollection_m3BD33241ED5305EC0677EBD3D11B559BC0802081,
  5135. SerializationCallback__ctor_mDE4947F5981E7D67B975242ED555E26029137241,
  5136. SerializationCallback_Invoke_m4495BBA7CA0B4135976F01A835B56D229494EC42,
  5137. SerializationErrorCallback__ctor_mD91F59657130468C271499528953D1B881CC010B,
  5138. SerializationErrorCallback_Invoke_mA86CDA7529D889C03FEF849E3BA468D6E66389EF,
  5139. ExtensionDataSetter__ctor_m896A6A7E6F7514AEC5888EEAA1519F104A8DD545,
  5140. ExtensionDataSetter_Invoke_mB600B717D8F7343C62D8BD772906FBD41346AC7C,
  5141. ExtensionDataGetter__ctor_m391280C57AA4255A0A67C3E07F818E9DD44129DF,
  5142. ExtensionDataGetter_Invoke_m19FD222F139E1EA80186A95638F8BBBEDC176622,
  5143. JsonContract_get_UnderlyingType_mEE45BC58C7DBE15FC705E9BE8AFB0CB244595B2F,
  5144. JsonContract_set_UnderlyingType_m5FA996DFD7944189FFB4A39769AFAC62531A1974,
  5145. JsonContract_get_CreatedType_m20F29589291CEE8652ECCCE92B5BC1406FD872CD,
  5146. JsonContract_set_CreatedType_m804529BD33FCA51AA61694C36D820F544C975706,
  5147. JsonContract_get_IsReference_m4963062DFCD73CBC3EABBDB4CEFA62A4C574F748,
  5148. JsonContract_set_IsReference_m647AD1AA63A19A316E5952A940375FF683203DD4,
  5149. JsonContract_get_Converter_mC40FC145658D9B3F1FBFDB725A014C1F6CA395F2,
  5150. JsonContract_set_Converter_m42066557973B76FA60A5C1B169E2E051CA48E67F,
  5151. JsonContract_get_InternalConverter_m5B61143DF4001DB6DDE36A1557F75CFE1146AA17,
  5152. JsonContract_set_InternalConverter_mD6CF59AB4347754DC9CF40B5E815F6279C7E97CE,
  5153. JsonContract_get_OnDeserializedCallbacks_m136433782A70F48146D339B97CFB45EBD925EC6C,
  5154. JsonContract_get_OnDeserializingCallbacks_m4303B7B38E9C06BBC04AD8F723B1F57B0F1477C1,
  5155. JsonContract_get_OnSerializedCallbacks_mCA83E6C54200DB80FB4B4BBEE7BDA2294823FF65,
  5156. JsonContract_get_OnSerializingCallbacks_mCF98CA2D34B5F11C62492C0C112A58A9B8F0CB32,
  5157. JsonContract_get_OnErrorCallbacks_m50AAA1748E89BC1F97C25904189E999BC03EB2A5,
  5158. JsonContract_get_DefaultCreator_mAC359884E3D6135F81ACCE9FCC8CDE50BC4D7307,
  5159. JsonContract_set_DefaultCreator_m58A325FBB24631FED3600957D5FF1A17A22B6FE7,
  5160. JsonContract_get_DefaultCreatorNonPublic_m0C9C608E85A89198C900A2F7033BB06C02B6A3C9,
  5161. JsonContract_set_DefaultCreatorNonPublic_m0FFB3F071DAC8B35694B33BDC7D589512E918018,
  5162. JsonContract__ctor_m619BFFA1C4ADB2EDB7C4614619134D23B671CA5D,
  5163. JsonContract_InvokeOnSerializing_m247E44B94413E2FB9776BBF052C1F10F56E63DFA,
  5164. JsonContract_InvokeOnSerialized_m6FB294150CF04E288FB96D33A5801099B6D522D4,
  5165. JsonContract_InvokeOnDeserializing_m8AABD483D7FDB54D48990A067BB8078A9EC1601F,
  5166. JsonContract_InvokeOnDeserialized_mEDB0C8FD5D88D4702C4178B3961C8A213EA44C0B,
  5167. JsonContract_InvokeOnError_mF3594B4D652564F6609743EA297BCA1DD786DFF1,
  5168. JsonContract_CreateSerializationCallback_m6657696172BA44D3931A54C4E1F541D65C0F7016,
  5169. JsonContract_CreateSerializationErrorCallback_m692EAA81939A49A65DA726D5DA284F24C3926349,
  5170. U3CU3Ec__DisplayClass73_0__ctor_mDE3BBA79D3D24F07C649FFFC6EA9050BAF9E0F1C,
  5171. U3CU3Ec__DisplayClass73_0_U3CCreateSerializationCallbackU3Eb__0_m0CCC486045F01CB1ABC8F6D058C7AEB3FB9938B9,
  5172. U3CU3Ec__DisplayClass74_0__ctor_m2039C4E4C4667BFA834AF8CBA55F60AC674ED227,
  5173. U3CU3Ec__DisplayClass74_0_U3CCreateSerializationErrorCallbackU3Eb__0_m6FE49A01A57F2D55E9C05CD142AEB158F2F19452,
  5174. JsonDictionaryContract_get_DictionaryKeyResolver_m9225A525A1C6A753AB9522BFF818561E892BAAD8,
  5175. JsonDictionaryContract_set_DictionaryKeyResolver_m019490E4A2A00A3C8A7D2315AC19031B87FC31BB,
  5176. JsonDictionaryContract_get_DictionaryKeyType_m00849788AAE3E7EDACE6243991F26E26B34757BA,
  5177. JsonDictionaryContract_set_DictionaryKeyType_m0F83C007A6211881A50529082104B52CA20AA8D6,
  5178. JsonDictionaryContract_get_DictionaryValueType_m8446A8DFE541FAEE9158A91818E3AFC2AAE94E35,
  5179. JsonDictionaryContract_set_DictionaryValueType_mCEA92A7854F7961668048449778E4CEE1D3E124F,
  5180. JsonDictionaryContract_get_KeyContract_m06A90ADAEBBBC7EF992EA3823733301448E61332,
  5181. JsonDictionaryContract_set_KeyContract_m83E7AC51A330E5E28E4F2EF51FF48B6771133AFE,
  5182. JsonDictionaryContract_get_ShouldCreateWrapper_m9EA26FC10FE48F17280E7F1530A4F3EBA1D6BD38,
  5183. JsonDictionaryContract_set_ShouldCreateWrapper_mA3D0E15FE2E7847519192FF16A50EA819D66A890,
  5184. JsonDictionaryContract_get_ParameterizedCreator_m933AC2CD9EF35EF03C1F5CC3E3B3DE0AE33042B7,
  5185. JsonDictionaryContract_get_OverrideCreator_m5B50A78FA760B48BFB6439797E70446E50265FE5,
  5186. JsonDictionaryContract_set_OverrideCreator_m273980C81B3AE9E0857B378AD1F0C9BABBF55AD5,
  5187. JsonDictionaryContract_get_HasParameterizedCreator_m658DB0958B4E3300EBEE1E0887A86DCB11AAC91D,
  5188. JsonDictionaryContract_set_HasParameterizedCreator_m1F1CFE2190BAEF14F221CB7C4D545BCD770B1563,
  5189. JsonDictionaryContract_get_HasParameterizedCreatorInternal_m11406714825D90112221DE61151E1B08CD4A5E6A,
  5190. JsonDictionaryContract__ctor_m2448E2CCF89D8776D1613AE6D9A688FE0961FCA2,
  5191. JsonDictionaryContract_CreateWrapper_m25273B5BB59F9FD254C6C76FD0C33C0602A85985,
  5192. JsonDictionaryContract_CreateTemporaryDictionary_m2A4CC03FFCDD8B141FD8ED7FB61D82984FD02ED6,
  5193. JsonProperty_get_PropertyContract_mE5C74515EB33A4F8325773FF4541BCACEABEF1C9,
  5194. JsonProperty_set_PropertyContract_mA2C3CEA87F72E86F7023B7E0D37AFB349DA2C2B3,
  5195. JsonProperty_get_PropertyName_m851570734464B93D7F2246206C28968FC26D6505,
  5196. JsonProperty_set_PropertyName_m0C03EC9AEA61A658F14F47E9A73CED7AFFA6EC94,
  5197. JsonProperty_get_DeclaringType_mEDA9D0497A5A3F73112C02C54DB77D61F497604B,
  5198. JsonProperty_set_DeclaringType_m3B9596397413835A0BCBD40EF0D7C13D6DC174AA,
  5199. JsonProperty_get_Order_m8DC4EBE07E682CD6208BD1A39A244DE3BAB93D2A,
  5200. JsonProperty_set_Order_mA8B64035411AA95B804E37B0E4B3606C4774A531,
  5201. JsonProperty_get_UnderlyingName_mB4E3E77F581F6EB1AFB9911DF29D48D7FF3D286F,
  5202. JsonProperty_set_UnderlyingName_m54B7F3DC51324C6E7E665B4118283524D852F9CF,
  5203. JsonProperty_get_ValueProvider_m576A4EF4D1E1ED28C35389893FB16F0385BE2C74,
  5204. JsonProperty_set_ValueProvider_m6AF812A711E436F0EF86E9440821EB49F8E0F305,
  5205. JsonProperty_set_AttributeProvider_m81B9C478B7AD414C11B9FE6B92A9992954054A4C,
  5206. JsonProperty_get_PropertyType_mA8189F0E90030BC557BA04E69C7C7B9FDE22158D,
  5207. JsonProperty_set_PropertyType_m4B0DA5746ADD7B8C0BB3C081AEF730BEBDE1BAE2,
  5208. JsonProperty_get_Converter_mF593A894B88EC9D726FAC393819855A76C44BA71,
  5209. JsonProperty_set_Converter_m78DBAB2EDD871626D34E10EC0576E8BE764C6EA6,
  5210. JsonProperty_get_MemberConverter_m0440F83951A37CD6E3011615B58DF2153105D5EF,
  5211. JsonProperty_set_MemberConverter_m0CC95C7001339F065F8E0B4459A5E2978642AE80,
  5212. JsonProperty_get_Ignored_m01CFD3C673171DB008F1D7AA6BD52A8C6617CEE8,
  5213. JsonProperty_set_Ignored_mF542BBDAEB126FCEA37EC52BB80A360E4693302F,
  5214. JsonProperty_get_Readable_m9626EAB32A0CEB68C6B5D807C676FC4712381C99,
  5215. JsonProperty_set_Readable_m1E24E2B08629CC42CBBFEFF82A39BC7E8C0C194C,
  5216. JsonProperty_get_Writable_m7968E6822DCD4501B182618778166C23A99A2680,
  5217. JsonProperty_set_Writable_mECE9F7D38A6EBC91A48EC1F2BE7B1F0F664A137E,
  5218. JsonProperty_get_HasMemberAttribute_m35D7AD307D8AB77E2FA067D509D301FD53200E8E,
  5219. JsonProperty_set_HasMemberAttribute_m0F180CF7D80EB359016487BEA18E9F410155EA70,
  5220. JsonProperty_get_DefaultValue_mB9C7CE821E89D2B6A883101E37C2CCBE687FF142,
  5221. JsonProperty_set_DefaultValue_mCF8C783AD2C0CF6E7F4177DE6CA0F48CDFAFD76F,
  5222. JsonProperty_GetResolvedDefaultValue_m7DA1F4D4DBC278A3C3B04EC95AF99B32E212649F,
  5223. JsonProperty_get_Required_m7D663FFD03D0FFD660D0334F9CA9E4526ECF3D68,
  5224. JsonProperty_get_IsReference_mFE510C42699FB154AF54E4A01F2FF9B6D29C687B,
  5225. JsonProperty_set_IsReference_m3287EA93B063AC7B3B881E0DAE3C661F99848617,
  5226. JsonProperty_get_NullValueHandling_m1E5CD9BFF0ECF2BA724A76E76727BC968AD20D21,
  5227. JsonProperty_set_NullValueHandling_mFEA55CC4E02A62C553F9F3E8FA30D2ABE38020BE,
  5228. JsonProperty_get_DefaultValueHandling_mC75EB106FBF28841D5AA1B9DCB3CCFA742C59860,
  5229. JsonProperty_set_DefaultValueHandling_m9391E3C05C6D95E5BE0A4A6F1919B3406874CE8D,
  5230. JsonProperty_get_ReferenceLoopHandling_mC496ABEDE0E6A4F529B597DDE618D9699D408E02,
  5231. JsonProperty_set_ReferenceLoopHandling_mA35889121950D7FD01B6A122CE9701EC7FFE6D37,
  5232. JsonProperty_get_ObjectCreationHandling_m141D6AAC67FABF3CA6A5D862F03A85B9DDCB4035,
  5233. JsonProperty_set_ObjectCreationHandling_mF4120F246285A07FE3A2CE6F848DC68BD57C47C2,
  5234. JsonProperty_get_TypeNameHandling_m2F9E3B5433A10E4CD72C92202DD1585CAD469CE1,
  5235. JsonProperty_set_TypeNameHandling_m3FADC60F2285A7ED7DE2E54C0B2494D9769B6818,
  5236. JsonProperty_get_ShouldSerialize_m19D4CEE618223380ED42C125E4D24AAEEC7C37F9,
  5237. JsonProperty_set_ShouldSerialize_m08D48F1C2D7C3892184861BFC8F3A1AF21171F65,
  5238. JsonProperty_get_ShouldDeserialize_m98852F15A8A81FF71DE9C9AE4176F8989474D926,
  5239. JsonProperty_get_GetIsSpecified_m98832BC1773557CFD71CCB2430D4EF109A6CEEE7,
  5240. JsonProperty_set_GetIsSpecified_m5524EC169BCF611A057633E87DBC3C8353F93F49,
  5241. JsonProperty_get_SetIsSpecified_m7A84F2242BEB91E7B1DB338CC9E139039F01CE46,
  5242. JsonProperty_set_SetIsSpecified_mA3076D9595079E61942368A41AF0985C51B2BA60,
  5243. JsonProperty_ToString_mB4F98FD132C640919152F33249EE708DB00D3AE3,
  5244. JsonProperty_get_ItemConverter_m848F229776550F9D3338BDE53465F8456DE11BD8,
  5245. JsonProperty_set_ItemConverter_mC6A4177099B43B9E51CEC2A9DFBB1E0E3345D166,
  5246. JsonProperty_get_ItemIsReference_mB4453D6036A58098DDF1A6A0CFD802433AC201D1,
  5247. JsonProperty_set_ItemIsReference_mCDD468EA0E2D91F52B5A305D90E89D9F8C9A7AF4,
  5248. JsonProperty_get_ItemTypeNameHandling_m3173F46808E37A3CC6DB4970C2042347053FFEDD,
  5249. JsonProperty_set_ItemTypeNameHandling_mFF4E69972F1A1F9BEE22D8544C95DB776716862C,
  5250. JsonProperty_get_ItemReferenceLoopHandling_m6C4DB687F424B866C59DB0885A9A6CAD9EC53244,
  5251. JsonProperty_set_ItemReferenceLoopHandling_m0C489B878D976FFB8D7C9C79ECBFBA4BD1334297,
  5252. JsonProperty_WritePropertyName_m9D72E5BB782435EBD9EF33074F93C53037BFCF38,
  5253. JsonProperty__ctor_mE37299FE12F57AA239ED22B3101BF3F8E6E9AC82,
  5254. JsonPropertyCollection__ctor_mC2AC668AE0D739537085835F4EE851C2A453A765,
  5255. JsonPropertyCollection_GetKeyForItem_m446CE128D27EB33E9C6222C50AB1393A4692B2EC,
  5256. JsonPropertyCollection_AddProperty_mED53D52E7A02CE801B52BF0DA9B107E50ED68A19,
  5257. JsonPropertyCollection_GetClosestMatchProperty_m9F4FB841CB058642A7FF2BA1F75BA39083E8684C,
  5258. JsonPropertyCollection_TryGetValue_mFAE5832EBDBB5AF2C8045AFAE86B0ED5844F2CC1,
  5259. JsonPropertyCollection_GetProperty_m8A75953BF42F4D06CD800A1E873DE88454CA801B,
  5260. NULL,
  5261. NULL,
  5262. NULL,
  5263. NULL,
  5264. JsonObjectContract_get_MemberSerialization_m1A3F6FC6C0539EA0B9110102D6234C3A2B229EF3,
  5265. JsonObjectContract_set_MemberSerialization_mD9B050351BAD2F50F228CD304B0794051D91DF3D,
  5266. JsonObjectContract_get_ItemRequired_m6F8D026FFD2E17C94562660484489C53F9EF093C,
  5267. JsonObjectContract_set_ItemRequired_mC242D99E863066A9AF7B0FFF2A47D51B098EA633,
  5268. JsonObjectContract_get_Properties_mA2FE17E3A8F32EBEA986F7959A630584665F9FAF,
  5269. JsonObjectContract_set_Properties_m271758DCBDD95F1F27AF08E1770DE408FD868CA6,
  5270. JsonObjectContract_get_CreatorParameters_mB82FF8E05518A820AC46E8458586AA172FDD902F,
  5271. JsonObjectContract_set_OverrideConstructor_m2D710816841306A19C76988A4B71E34EEB846AD0,
  5272. JsonObjectContract_set_ParametrizedConstructor_m0260A9A40ADDC2C67005F60F74298B9D13E9DE58,
  5273. JsonObjectContract_get_OverrideCreator_m157D862BED71DDEFEFBA9797EDAF488023FEB95E,
  5274. JsonObjectContract_get_ParameterizedCreator_mCE636445DC710675BA24F84ECA1564D57E19B14C,
  5275. JsonObjectContract_get_ExtensionDataSetter_mAA57BAED60DC7A3454CA2C6726082552F913FBF5,
  5276. JsonObjectContract_set_ExtensionDataSetter_m0569DC3D7CBA298C858F17DF14123A088EDFA1D8,
  5277. JsonObjectContract_get_ExtensionDataGetter_m93561BA532A7F0A6FE044EE23305DA08F6C93699,
  5278. JsonObjectContract_set_ExtensionDataGetter_m0D6330E331D0EA5B70BEFB451A6A754FFA0860FB,
  5279. JsonObjectContract_set_ExtensionDataValueType_m7CAAB1515668A471D1B420212F505C5CF8624608,
  5280. JsonObjectContract_get_HasRequiredOrDefaultValueProperties_mEFA1F1A0ECCC748D0B4DBC81D55C3E3FC71AB68E,
  5281. JsonObjectContract__ctor_mC60D6E7311D36564DD6D57B00FF789D67A25C643,
  5282. JsonObjectContract_GetUninitializedObject_m7F5FF3453D03F893AA58B6975DCC0EB36FDCED76,
  5283. JsonSerializerInternalBase__ctor_m4F3E9199729B2D3321F81F156EFECA1102BB8390,
  5284. JsonSerializerInternalBase_get_DefaultReferenceMappings_mAE5A117EE09C168E28D63C7F9FA931A9F0002F00,
  5285. JsonSerializerInternalBase_GetErrorContext_mF2DFA914B53883ACF7E450271F7F0A302C3B6BFB,
  5286. JsonSerializerInternalBase_ClearErrorContext_m55B48F84470677BA5EFD84043897B7F8F5E7EE32,
  5287. JsonSerializerInternalBase_IsErrorHandled_m9DD64164F46D5AF6A545C4ED87D53B37C3BBD605,
  5288. ReferenceEqualsEqualityComparer_System_Collections_Generic_IEqualityComparerU3CSystem_ObjectU3E_Equals_mBE0FDE09DEFB94D4A18D89BE52FAA99C2C8784AC,
  5289. ReferenceEqualsEqualityComparer_System_Collections_Generic_IEqualityComparerU3CSystem_ObjectU3E_GetHashCode_mA70F644AB9839D31065574E6EFC2F39CEABC3D81,
  5290. ReferenceEqualsEqualityComparer__ctor_m53539D43C1367A9014A0D5AE7C1BA9006444C47B,
  5291. JsonSerializerInternalReader__ctor_m9DACB01CB633FF3EEC4C7D4B258525BE6506C677,
  5292. JsonSerializerInternalReader_Populate_m07F213FF7404357508701D7C9FF2D431A9A67311,
  5293. JsonSerializerInternalReader_GetContractSafe_mB7ED9B6126C27E9981E12F117815D07F1D8BF733,
  5294. JsonSerializerInternalReader_Deserialize_m16DFFFB210E3254DD51BE773ABE174A1A3D2969A,
  5295. JsonSerializerInternalReader_GetInternalSerializer_mD1D98FBB43848960ACB9928C52FD3CADC16A7F54,
  5296. JsonSerializerInternalReader_CreateJToken_m6481A67B1AAA41CF25255BDC33DCCE914519A31E,
  5297. JsonSerializerInternalReader_CreateJObject_m8630E649F04EDBE99DD15CD15A76F67E7DFF1D3E,
  5298. JsonSerializerInternalReader_CreateValueInternal_mDE0017174F922EADF6F608D710D3614029D473DA,
  5299. JsonSerializerInternalReader_CoerceEmptyStringToNull_mC4362D4711EDFC5B8DDCC6F8962EB87BC82D2976,
  5300. JsonSerializerInternalReader_GetExpectedDescription_m9EC87972C785039ADC8104363E44A81C970C5467,
  5301. JsonSerializerInternalReader_GetConverter_mEC2A4C125E42D36039D6978FB270F94A34F3AB4D,
  5302. JsonSerializerInternalReader_CreateObject_m8354AB041B8FCB5A60DAD4DA2A19E1E493740BC7,
  5303. JsonSerializerInternalReader_ReadMetadataPropertiesToken_mF20F10EFAFC3788E30A2B63D5C75294973467B09,
  5304. JsonSerializerInternalReader_ReadMetadataProperties_m1FB0A9442D566EF09AFC94BC9CC83EF9F5EF78C4,
  5305. JsonSerializerInternalReader_ResolveTypeName_mC4C6F9C9F37CAAEB99D1A05D28B3E6621013EF02,
  5306. JsonSerializerInternalReader_EnsureArrayContract_mB4F72197980B5F8E74C27FE6883AF251791FFD49,
  5307. JsonSerializerInternalReader_CreateList_m05A6AF6A29A3FB14E637A65CA0DD561736EDBDCB,
  5308. JsonSerializerInternalReader_HasNoDefinedType_m062E7C1D82507BCFDFC76D7761459206CAA982C6,
  5309. JsonSerializerInternalReader_EnsureType_m393B24D57CD3AC4CDAE437E6BBC293BF32531513,
  5310. JsonSerializerInternalReader_SetPropertyValue_mA34C6A79B07769705DC5B440B711EE9C0F4E6D95,
  5311. JsonSerializerInternalReader_CalculatePropertyDetails_mBDE8B9CB99D99C5C3360CCE39391836271F631D4,
  5312. JsonSerializerInternalReader_AddReference_m86B624709AABBA04282FA93D51FC8D30B17D5531,
  5313. JsonSerializerInternalReader_HasFlag_mDFEE16CF94BC7AF387C966073A5A7B5102BF536A,
  5314. JsonSerializerInternalReader_ShouldSetPropertyValue_m5A1B522F640821480ADD97462BD20BFB08518370,
  5315. JsonSerializerInternalReader_CreateNewList_m08A79263E135DCA0BED5EA4CE59AF908BFEA13A3,
  5316. JsonSerializerInternalReader_CreateNewDictionary_m9C3DE0D4B71C3BF5D1F372B3462E65677E149629,
  5317. JsonSerializerInternalReader_OnDeserializing_mF249B6FA9CA274DC859E36AA022499644E497024,
  5318. JsonSerializerInternalReader_OnDeserialized_m5784F6D5FEEBCA34D1C5DD3E32EA6C16876D64C0,
  5319. JsonSerializerInternalReader_PopulateDictionary_mCD1EA604EFDED1732CE66B6645FFBF6206528731,
  5320. JsonSerializerInternalReader_PopulateMultidimensionalArray_m45EBF882FBBDBF02AB5F9ED3532E82837A461531,
  5321. JsonSerializerInternalReader_ThrowUnexpectedEndException_mE115BE356C3B658231E173F8F8C825D43F8E2E2D,
  5322. JsonSerializerInternalReader_PopulateList_m2E28F2C7CF964D072B5FFDBD3B37C8F3833C6355,
  5323. JsonSerializerInternalReader_CreateISerializable_m5F06F1574A49C5AF6B360D5E64EBE9956531E7F4,
  5324. JsonSerializerInternalReader_CreateISerializableItem_m041B4274C31E46A8C19D000395F75C0BE74B7FD6,
  5325. JsonSerializerInternalReader_CreateObjectUsingCreatorWithParameters_m1352A665B9F49EFD67D1520117044287AC331D37,
  5326. JsonSerializerInternalReader_DeserializeConvertable_m7839ED49B9328DE3E071627E165391EDCBDC85F0,
  5327. JsonSerializerInternalReader_ResolvePropertyAndCreatorValues_m3F1EACBF06BEB4AA8F997D9C284F50BBC4EA2F66,
  5328. JsonSerializerInternalReader_ReadForType_m68679FB820665472589490AC15174FE8C7FD5548,
  5329. JsonSerializerInternalReader_CreateNewObject_m84909560F0A7B7CFA1B96A179726D3B13B897317,
  5330. JsonSerializerInternalReader_PopulateObject_mB67FD5A5AB4BA1BDEA46A46FB82993F5F742FDD9,
  5331. JsonSerializerInternalReader_ShouldDeserialize_mB873598FB2971866E9EF3D7DFCBEB22E305616D4,
  5332. JsonSerializerInternalReader_CheckPropertyName_m731ABE465597939C28A151590ED0DEF2D4CF49B2,
  5333. JsonSerializerInternalReader_SetExtensionData_m7A2CECC47DCCAC05A9AFB441BBA6C62D60B551E4,
  5334. JsonSerializerInternalReader_ReadExtensionDataValue_mC61158AF848D9194AA0BF66C3D7362DCE9D24A6E,
  5335. JsonSerializerInternalReader_EndProcessProperty_m72F73F16358CBCB4DBE94E83108E615F54C723D5,
  5336. JsonSerializerInternalReader_SetPropertyPresence_mAE1B2E093A35AC97CF2A5B4E68217CE9834EB30B,
  5337. JsonSerializerInternalReader_HandleError_m56A745F5B279119045A3B25F0BBB693A6A775D44,
  5338. CreatorPropertyContext__ctor_m866EFFCAF18327FBC0189EDE0DACE665F154DA56,
  5339. U3CU3Ec__DisplayClass36_0__ctor_mC863D859C9704D6D335339502E8C991324810635,
  5340. U3CU3Ec__DisplayClass36_0_U3CCreateObjectUsingCreatorWithParametersU3Eb__1_mF669F8BFE84823AA5FE418E1474EC2DDC62133E6,
  5341. U3CU3Ec__cctor_m3C3094F0A38E4065FE127CDA58174DBD9E4F7CDB,
  5342. U3CU3Ec__ctor_m197909213DCD3EA6A9B847D52B274909ADB01C0B,
  5343. U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__36_0_m54E3311FDB8CCB7E64803F09F014E12333C4ECE2,
  5344. U3CU3Ec_U3CCreateObjectUsingCreatorWithParametersU3Eb__36_2_m9C87A724A2224B19E8AD4BCCF6D0633E61FCBA3B,
  5345. U3CU3Ec_U3CPopulateObjectU3Eb__41_0_mD7A16E3DA463CEA1F861A6607449112C70B509CE,
  5346. U3CU3Ec_U3CPopulateObjectU3Eb__41_1_mF4BCEE23113F422519BD0DFDC812DFE65FD69F48,
  5347. JsonSerializerInternalWriter__ctor_mD7292E391C20932E7B7D3C0821993300C11805B9,
  5348. JsonSerializerInternalWriter_Serialize_m5CF99C46876EC006AE08EF6F70774C05352D7EBB,
  5349. JsonSerializerInternalWriter_GetInternalSerializer_m36B6DD190A949C3BED06F480CF095AD339DD8149,
  5350. JsonSerializerInternalWriter_GetContractSafe_m16A8B7AE32824871182C3927D9F9195CDC81FC16,
  5351. JsonSerializerInternalWriter_SerializePrimitive_m5CBBF50ADAACCDC710A46BF723C4F228C26E6F0B,
  5352. JsonSerializerInternalWriter_SerializeValue_m18EF5541EB7C626DBD6EE9C7B131B5A553F9647B,
  5353. JsonSerializerInternalWriter_ResolveIsReference_mF14D369978F754687AD5A55FE9D55F893559A355,
  5354. JsonSerializerInternalWriter_ShouldWriteReference_m5E0E55A1858C9769DDE9CC98B5FA05A7E37F1564,
  5355. JsonSerializerInternalWriter_ShouldWriteProperty_m4F43DB6C3A0FE2A97F161BE8E81D160D13207A1B,
  5356. JsonSerializerInternalWriter_CheckForCircularReference_mA2E781693FEDDA91A1D5BEC386C08FCA779FC0E5,
  5357. JsonSerializerInternalWriter_WriteReference_mBC4B20B185D7AD9F45A65921A74646E96C707EC0,
  5358. JsonSerializerInternalWriter_GetReference_m04C782617161FBC8561FD6919539BDD5F124A44D,
  5359. JsonSerializerInternalWriter_TryConvertToString_m00893ED07366844F4942D9D2E2C2D298E41D2354,
  5360. JsonSerializerInternalWriter_SerializeString_m00F6A4369D32A4D6A5262E116FA66FED933B6808,
  5361. JsonSerializerInternalWriter_OnSerializing_m86CCE4A240CF696B55B651FFA21341A913237204,
  5362. JsonSerializerInternalWriter_OnSerialized_m6536356D16C9FD4878BB5FB335A6B6C399E32813,
  5363. JsonSerializerInternalWriter_SerializeObject_m0DDE5F1CCEED094CD75F03BE50D337C7BC10B175,
  5364. JsonSerializerInternalWriter_CalculatePropertyValues_mE916D9AAF41458580041F0D68B5255F5347A8B3D,
  5365. JsonSerializerInternalWriter_WriteObjectStart_mFFBBFAB80935976F3642D64F2E16D267EA85D969,
  5366. JsonSerializerInternalWriter_WriteReferenceIdProperty_mB1BAD36D9065F7864BB8A0900D6E4E31B5E0CCF3,
  5367. JsonSerializerInternalWriter_WriteTypeProperty_mDFDE7354356EAA21166F53CF6F9E46722537BC19,
  5368. JsonSerializerInternalWriter_HasFlag_mB2A9B39854B9606643BC1F20800B80A0B86270BA,
  5369. JsonSerializerInternalWriter_HasFlag_mBB94657B6DBF4933485C14D9AB8F0A040EB634DE,
  5370. JsonSerializerInternalWriter_HasFlag_m11060544A799A7E7FFD9875C2A4FF232C595EF16,
  5371. JsonSerializerInternalWriter_SerializeConvertable_m20C8409B3CF7AFE8DD8DD70B043D2896D57199A9,
  5372. JsonSerializerInternalWriter_SerializeList_m9682B23D853E42333819D6F1D59CB312B35C0AD1,
  5373. JsonSerializerInternalWriter_SerializeMultidimensionalArray_m04816CEBDBB1BF2EB8E5664B66CF7DD7950DEC64,
  5374. JsonSerializerInternalWriter_SerializeMultidimensionalArray_m85A8FB138A98BEFD4BFC4FB2067B3E3B80B0A1A7,
  5375. JsonSerializerInternalWriter_WriteStartArray_m7528A45B45F9E37133F6643085BF52BA89E28D59,
  5376. JsonSerializerInternalWriter_SerializeISerializable_mB2E603FCFEBFDE3A46FE1C53C80BDD3B3D032F82,
  5377. JsonSerializerInternalWriter_ShouldWriteType_mD28C6588F63992E4998AA90BC3470E0F46BF038F,
  5378. JsonSerializerInternalWriter_SerializeDictionary_mBF061F47CB497A2368D9ADFE8D2A08C05326D1D2,
  5379. JsonSerializerInternalWriter_GetPropertyName_m247526DFDA0596DB0D5DCF2BDF7DA510973A2B25,
  5380. JsonSerializerInternalWriter_HandleError_mEE5EE284E87D16FE00325D3E09C07F59963DA729,
  5381. JsonSerializerInternalWriter_ShouldSerialize_mC3B6E813DCE7BE5E13670B66CC562937B47C8F6C,
  5382. JsonSerializerInternalWriter_IsSpecified_m7AF42B226A4D573BAB0E03CA698004B808C1FE97,
  5383. JsonSerializerProxy_add_Error_mB758D062EFD682C31D15DF5DD3B7D5A69FBF22C7,
  5384. JsonSerializerProxy_remove_Error_mC6C09841B47A64D20D3A04DDAFBF077A6A756AB4,
  5385. JsonSerializerProxy_set_ReferenceResolver_m01F71340E3CD0B79DD6582F56AFA2E78BBD5F420,
  5386. JsonSerializerProxy_get_TraceWriter_mD978AEDBAD9C5E20CF26972EED9C795570F8A31B,
  5387. JsonSerializerProxy_set_TraceWriter_m2CAA4ACE553BD99B82E699C8E4ADB899D34EAAF4,
  5388. JsonSerializerProxy_set_EqualityComparer_mC2D4CC530C83FDF91E8FE3CAA9753D7D399642A3,
  5389. JsonSerializerProxy_get_Converters_m9E390D5E8A9D233EF8C2A0B964956F27B4BEED2E,
  5390. JsonSerializerProxy_set_DefaultValueHandling_m4B3292A1D106277D8C98CAF09A9336AAC2A2D193,
  5391. JsonSerializerProxy_get_ContractResolver_m0F02BC66EBE05DA832AF7E68090412A9E84B8C85,
  5392. JsonSerializerProxy_set_ContractResolver_m2F75F3755FA791B66F41901962E380AB9C6EC99D,
  5393. JsonSerializerProxy_set_MissingMemberHandling_mDF01119D79E9C662234FC23237BC689FCD779362,
  5394. JsonSerializerProxy_set_NullValueHandling_mD3845BADF9B98956CE407E9CA156B2E92BE7C3E8,
  5395. JsonSerializerProxy_get_ObjectCreationHandling_m0C52E0CE93590403EC273A0B239B7786CA83A65F,
  5396. JsonSerializerProxy_set_ObjectCreationHandling_mD4323D082B83CC6C720CCC4DD3A621AE52B5BF90,
  5397. JsonSerializerProxy_set_ReferenceLoopHandling_mF557D5F61FE95CC95CA81F51748AE99CF937EF88,
  5398. JsonSerializerProxy_set_PreserveReferencesHandling_m384777B7F2E5D140F46EE980F62B95F3B38CB5D6,
  5399. JsonSerializerProxy_set_TypeNameHandling_m9B0565444222D4A0CCA968902DF066C0151896DA,
  5400. JsonSerializerProxy_get_MetadataPropertyHandling_mD8AA501C06C646401A6D38D76A1D4B6028A09DA6,
  5401. JsonSerializerProxy_set_MetadataPropertyHandling_m6DA26E4CC254DAC91FFA9496EC901EDC1449F109,
  5402. JsonSerializerProxy_set_TypeNameAssemblyFormat_mDA3029524EBA8CCF066DDBD9ABD3CF109952333B,
  5403. JsonSerializerProxy_set_ConstructorHandling_m12385808CBDFE9AB2967021E48E84D0F1D66870D,
  5404. JsonSerializerProxy_set_Binder_mB68CEBE202076807D4FD3BB554C44B0E2AE07A9A,
  5405. JsonSerializerProxy_get_Context_m1C74B51A3B56B8B33077D7B24D7AA5751DB5941C,
  5406. JsonSerializerProxy_set_Context_m56D4CB781B98CF71CB9B714D0A98FE9BC4D0454A,
  5407. JsonSerializerProxy_get_Formatting_m0C3D6BA78C912B50A6D99FFB4918085569207B42,
  5408. JsonSerializerProxy_get_CheckAdditionalContent_mD3767F34E264139A825BF9F7BB1C7277A551FB55,
  5409. JsonSerializerProxy_set_CheckAdditionalContent_mBB3420399C378C24B1408B4D92056945374D04F1,
  5410. JsonSerializerProxy_GetInternalSerializer_mAAB4BAF11476A9F005E776CAEB091C65026F0CF3,
  5411. JsonSerializerProxy__ctor_m0F0A6C158CFC76D08D1C3700A0E3A705B1762196,
  5412. JsonSerializerProxy__ctor_m5DE272E9EA4CD463018EACC4F038A2B45BB6A463,
  5413. JsonSerializerProxy_DeserializeInternal_mA0D60BE044BFD320A0C3A302556059FB7E5DB0E2,
  5414. JsonSerializerProxy_PopulateInternal_m326CF8C6609620D802E10A2B2D732DADA61A0C4A,
  5415. JsonSerializerProxy_SerializeInternal_mC9501A6E4518384C0C4D0E474C6C9DB2BE3025FF,
  5416. JsonStringContract__ctor_m52D904B991177D4AD5BD45EC39A9E954C6E1B475,
  5417. NULL,
  5418. JsonTypeReflector_GetDataContractAttribute_m48F91A6D2BD1F8C2A6D7463A79F9E6446578483F,
  5419. JsonTypeReflector_GetDataMemberAttribute_mD7A512F4E2EF106DAF4F19EC1EAF3BEBFE316DBE,
  5420. JsonTypeReflector_GetObjectMemberSerialization_m3DC21F03684180675A46D979B16BB872DD88BFD1,
  5421. JsonTypeReflector_GetJsonConverter_mE68AEC43C19B8988E4A6948883309C98B1F30E0F,
  5422. JsonTypeReflector_CreateJsonConverterInstance_mDF0424F58E723B02AE2DBB3BA645999A29DA1663,
  5423. JsonTypeReflector_GetJsonConverterCreator_m06E11E39875F4321EBD0CC6D135D494A26C9B009,
  5424. JsonTypeReflector_GetTypeConverter_m7D659499F4B84508083C68F3EEC338869B254B12,
  5425. JsonTypeReflector_GetAssociatedMetadataType_m39210AE48FC3D02B20B519C0EC4F12AD644D3196,
  5426. JsonTypeReflector_GetAssociateMetadataTypeFromAttribute_m4FE6AE750C505BD0B3DCBC2C3078B0AC8F685E8A,
  5427. NULL,
  5428. NULL,
  5429. NULL,
  5430. JsonTypeReflector_get_FullyTrusted_m76F5CED9C892E1A74F1AE15DEA44F251E6B44EE7,
  5431. JsonTypeReflector_get_ReflectionDelegateFactory_m51141B018BF3854A0C3236A7DD6247C719B868D0,
  5432. JsonTypeReflector__cctor_mB7E3E6770A52D24A0FB4A3259622873E8EFB250D,
  5433. U3CU3Ec__DisplayClass18_0__ctor_m891E1B133F71FB2FD7A7A98E7322328B3B1BA7B5,
  5434. U3CU3Ec__DisplayClass18_0_U3CGetJsonConverterCreatorU3Eb__0_m5DBE4619CA16BD48EF1F50A1E2A83F922159BEA6,
  5435. U3CU3Ec__cctor_m49395C8BF101A655C64A8A6DB02E5483378EB255,
  5436. U3CU3Ec__ctor_m33C772708BBE9354F6F02B61BFABCCF96CE85045,
  5437. U3CU3Ec_U3CGetJsonConverterCreatorU3Eb__18_1_m10633A41FD86AC5D98E39BEA3E6C9B21369C6D8F,
  5438. NULL,
  5439. NULL,
  5440. ReflectionValueProvider__ctor_m7A6A278A883E18E4902FC377A3AAFDF1DD3E37A0,
  5441. ReflectionValueProvider_SetValue_m2E6A426BC3002D958D06C377276BFFA666D94E63,
  5442. ReflectionValueProvider_GetValue_mD11A35EE4B765069DE2034CBCED9C98B36F29B7E,
  5443. OnErrorAttribute__ctor_m4AB187448D1BD857D4747F3936DC73B1F722D6B0,
  5444. NULL,
  5445. NULL,
  5446. JPropertyDescriptor__ctor_m09AF4E883CBA010F1CE77036743FB5B55E63EACF,
  5447. JPropertyDescriptor_CastInstance_m3A5B473387EDF4C0AED554652421098A9693C518,
  5448. JPropertyDescriptor_CanResetValue_m877A6563E66DEE7A378A04C443C6A26B82D892A3,
  5449. JPropertyDescriptor_GetValue_m248CD8346CE78D89074F6E263BCC0002B0D95420,
  5450. JPropertyDescriptor_ResetValue_m3B17AB4AE529D0073321ED55CBDED5D474DBB44D,
  5451. JPropertyDescriptor_SetValue_mDAFFD8AD2C653D6DDAC2A350C0ABD5B9D0B56043,
  5452. JPropertyDescriptor_ShouldSerializeValue_mEA7198D95CF1C1590FB1AB58C5BBBA164D75C315,
  5453. JPropertyDescriptor_get_ComponentType_mD5FF1837C56B5E71370CF1C9FDB2EAAF76EB5981,
  5454. JPropertyDescriptor_get_IsReadOnly_m60E1E65E71764AACA8F968AEFF3ADC9F92176D29,
  5455. JPropertyDescriptor_get_PropertyType_m6CE3A1A064F6C7647759249F39865F0C4328F73C,
  5456. JPropertyDescriptor_get_NameHashCode_m0BB1BC25D5790FCCC44A72862F2905C4C0342B54,
  5457. JPropertyKeyedCollection__ctor_m2271DB77C116549739556CC423E6C093E15C0631,
  5458. JPropertyKeyedCollection_AddKey_mEE9D222E064EF65670294217AE072F20C02A8878,
  5459. JPropertyKeyedCollection_ClearItems_m17B4A043B84B5D0261DD29578C2F989729958C10,
  5460. JPropertyKeyedCollection_Contains_m0E0B909D3C60358B58FAABCC6278E87E7B000A9A,
  5461. JPropertyKeyedCollection_EnsureDictionary_m447B701FA5EFCED3B0B73E7FE78F3998B07155DF,
  5462. JPropertyKeyedCollection_GetKeyForItem_m012BD1293751F2AF1C49F84A4DA4EACAB010BBAD,
  5463. JPropertyKeyedCollection_InsertItem_mF71A3CA4CFF94D790BA1EADF08F53AA710357AF2,
  5464. JPropertyKeyedCollection_RemoveItem_m73E4CE3D9913DBE3092AD70299252F210C74BDFB,
  5465. JPropertyKeyedCollection_RemoveKey_mB6DEC2A6E4990B7FA59F4B7E27757E6ED4CC60D0,
  5466. JPropertyKeyedCollection_SetItem_m28E2DE685AE82889FCB5733179615AA927D1E17D,
  5467. JPropertyKeyedCollection_TryGetValue_m20E12F57DCC60A7C75103FF8B0D516CE4647C6D9,
  5468. JPropertyKeyedCollection_get_Keys_mC5819B8822C090703E5C7C5E781FA2C3F2288E59,
  5469. JPropertyKeyedCollection_IndexOfReference_m99EA03F22122641DF3864E7613700B9460D165C1,
  5470. JPropertyKeyedCollection_Compare_m0068ADFEEF0D2CC508FBA93912E00CFE00268A1D,
  5471. JPropertyKeyedCollection__cctor_mC46B8292DD49129C3253A1AC3B4E7F1B3090A5C9,
  5472. JsonLoadSettings_get_CommentHandling_m826835E5AE01E9F77464D74FED529372995B6D13,
  5473. JsonLoadSettings_get_LineInfoHandling_mFC5C51D0F639F243E9E9FC0AD58065CF5F20DF18,
  5474. JsonLoadSettings__ctor_mF71B78CB3ED1F95048307736970338D52B2E5A2C,
  5475. JsonMergeSettings__ctor_m6ACB9D8AC772EC69E2C26EBDA84B4271FA763093,
  5476. JRaw__ctor_m0C15E0FCD510E8B5BD3862491730D1FAA158BBA8,
  5477. JRaw__ctor_m9F35CC695B1A9423ECB6CE9D908BA895937B45BA,
  5478. JRaw_Create_mA849B3DCFA5DC6EE251212E595069E7DB280F7A7,
  5479. JRaw_CloneToken_mE4EA25DCCE8607F61C67A746D9AD49A20DC85126,
  5480. JTokenEqualityComparer_Equals_m5654697807DB991A25B7B46695D00D779910F727,
  5481. JTokenEqualityComparer_GetHashCode_m2A9A5D7A0E13D632D1D5A4A98CDD7A7F3DBF792C,
  5482. JTokenEqualityComparer__ctor_m34ACE1D0D576A5E3BB9E08155157BBE964A3C229,
  5483. NULL,
  5484. NULL,
  5485. NULL,
  5486. NULL,
  5487. NULL,
  5488. NULL,
  5489. NULL,
  5490. NULL,
  5491. NULL,
  5492. NULL,
  5493. NULL,
  5494. U3CU3Ec__cctor_mD2443C2152213F30596C36B27A4E005EC6D82A1C,
  5495. U3CU3Ec__ctor_m891AF27D89FAD73E6AA355C447B81716A36E9662,
  5496. NULL,
  5497. NULL,
  5498. JConstructor_get_ChildrenTokens_mB5FD9E1270D4E1106B9A35E5BE405A4D0284E836,
  5499. JConstructor_IndexOfItem_m36BE519C38D5DEBD392C055AC0CB57E77D6798C6,
  5500. JConstructor_get_Name_m2368E84C243C18D25F92205F87F54CB0CAF56820,
  5501. JConstructor_get_Type_m23D3B8E365E9D8E190B2CBE17D2F5B6E8EEFD592,
  5502. JConstructor__ctor_mB67152A987C528F77BEE51A5C52ECFF9D738D960,
  5503. JConstructor__ctor_m76D2E9AC282AE6136D881B53AD1CD53E0573C02A,
  5504. JConstructor__ctor_m3A59ED81616B52047AB5ECE65C6D762AD1BA1178,
  5505. JConstructor_DeepEquals_m5B681BC81A719FC380850DB2CE39E2115974237B,
  5506. JConstructor_CloneToken_mBE494826296161291FD8BA0152CD7B66E8A74330,
  5507. JConstructor_WriteTo_mDAACB53E1ABFCC2F2335975EB7423FEEE96B1232,
  5508. JConstructor_get_Item_m61304DCFC3F414EC9ED65CB3555CD80679DC94EB,
  5509. JConstructor_set_Item_m34B21DA2B47A26B0DC281B73390C3B4FDE54AA19,
  5510. JConstructor_GetDeepHashCode_mC6C3C189F6A432D96FEACFB6BD60E3571BF32E20,
  5511. JConstructor_Load_m39A3E97A1ACDD09183F689F5069B56D3E412793F,
  5512. JContainer_add_ListChanged_m0A450B0DE2D3E0C2E54C626A9C66C1DF11DB0775,
  5513. JContainer_remove_ListChanged_mEC97E0E1F980D228828CEDBCEDB67360E4E349C2,
  5514. NULL,
  5515. JContainer__ctor_m77F975A85A4100E67601AF0212336AEF2157E293,
  5516. JContainer__ctor_mF69CACF53E411CB092CF59DE7F6824CBE5B90A81,
  5517. JContainer_CheckReentrancy_m27A270AB53B9424A4AB78BE999A6A26CB0C31085,
  5518. JContainer_OnAddingNew_mA2115DA3683B492660C1EA73ABB766EFD9A49145,
  5519. JContainer_OnListChanged_mB59712E5A95139B832AD581C86B5AC27DDADC992,
  5520. JContainer_get_HasValues_m7471FF9D6F4C57FC054E39D2DDD32110AA749E4E,
  5521. JContainer_ContentsEqual_mDBB8F5F38989EEE3A962E746AB5C31B7DE84EEF2,
  5522. JContainer_get_First_m73FE14BC1D7DBDA73514DBC8606FC8F6EB0F43AF,
  5523. JContainer_get_Last_m4EFB6099737BBC290AE430778C640B16854A534F,
  5524. JContainer_Children_mE71E7201EAE29C860B975B586BBA616DEB25B824,
  5525. JContainer_IsMultiContent_m5F1BDE325938E41337AC52B89AD71859AF2240EE,
  5526. JContainer_EnsureParentToken_mF6E3F346B0A7EBEB48AC164748748233D626CFDB,
  5527. NULL,
  5528. JContainer_InsertItem_m6238452B9828079E1197E716798B7C5B88907DA1,
  5529. JContainer_RemoveItemAt_mB419C752BFEFE4E7B2FB18CF1F6AE569DCFB9CE8,
  5530. JContainer_RemoveItem_m04AFAC7F3A533AF828A4BFE19534A8ACC344A8EA,
  5531. JContainer_GetItem_mF3AC45F737D5C0681FB41E778D31B138B13C84CE,
  5532. JContainer_SetItem_mF1EE45E33AAE97CB8B042D2D3B6B9D02D4BDF5A9,
  5533. JContainer_ClearItems_m93861485A4CD96B9B9432A3A03DBE8CF32F4FF03,
  5534. JContainer_ReplaceItem_m2F3FE7D854B4848734157727071A0EA32AC20039,
  5535. JContainer_ContainsItem_m626BE0F72BF056DF7DEECDA90C33516D743BFA34,
  5536. JContainer_CopyItemsTo_mC979188B5DA0917650F688992E06A63C79DEDC7B,
  5537. JContainer_IsTokenUnchanged_mF1D03C6D37BD93A9F6C78EA12B66EBC9246022AD,
  5538. JContainer_ValidateToken_m3B36AD51335D11572DB1DA2B02EB16F20116D299,
  5539. JContainer_Add_mDAF958AC76F8EB22BBB072FE3B73556DD28773DB,
  5540. JContainer_AddAndSkipParentCheck_m990C8350B9021ED43798E0958FF662B7F7BB3259,
  5541. JContainer_AddInternal_mDEAC3FF6850A0787B3C1810F39134FD7B1F10610,
  5542. JContainer_CreateFromContent_m14327B80380C4835EAB72F4DE19399280B3F33C6,
  5543. JContainer_RemoveAll_mB2809BEC57F97D805A90A56483F022E83D12FAAF,
  5544. JContainer_ReadTokenFrom_mF5EB04B347272C837DDE4158DD66610BAD00250F,
  5545. JContainer_ReadContentFrom_m312372631C83DBF75004976E703EC6FA8F63C67B,
  5546. JContainer_ContentsHashCode_m25FD405A8246B8DC9650EF8190FEADA56CFF6B57,
  5547. JContainer_System_ComponentModel_ITypedList_GetListName_mE437C96468BEFAF3BBA40E19B01FF650AAC6B9C0,
  5548. JContainer_System_ComponentModel_ITypedList_GetItemProperties_mFB22E94CA47E890D196606B1A7569719D8D83121,
  5549. JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_IndexOf_mD53E6B241E87D2E99214A81D62902232A6B412DD,
  5550. JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_Insert_m150C3C4EB9B8B7415572C1A6B676D6FBC239C64D,
  5551. JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_RemoveAt_mFA75EBEC4A8FB9CC4BF6A212811E381B75E96CFF,
  5552. JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_get_Item_mD4F6DA8A72773E7E03B1261F43ADA8D15723A5CB,
  5553. JContainer_System_Collections_Generic_IListU3CNewtonsoft_Json_Linq_JTokenU3E_set_Item_m0768F0951898A270B83AE36BDE1AAFDAE0C77A94,
  5554. JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Add_m88B7976C3C8E899E61DF244B8306DE9AEB6F443D,
  5555. JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Clear_mF44FE44CB4DB93FA72B1CC415C12F704F97F0BD6,
  5556. JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Contains_m978A2D67517F7D2DE51692035F19CAC58A17F697,
  5557. JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_CopyTo_mE94B2B4CFD1B79061641A2497CEFD0477445DB79,
  5558. JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_get_IsReadOnly_mF13567B79AF4967E63C517E5DD331AD41FD51324,
  5559. JContainer_System_Collections_Generic_ICollectionU3CNewtonsoft_Json_Linq_JTokenU3E_Remove_mF7B76812D91B73CAC2D2139D12848566CB628798,
  5560. JContainer_EnsureValue_mFBF5C582610C3CB4A7094D0AF8E8E8B9BB930E0B,
  5561. JContainer_System_Collections_IList_Add_m870AF3D3CA924B4EE53B2AF57C991799F4D071CA,
  5562. JContainer_System_Collections_IList_Clear_mB50562841DDA3ABEB89E1319C4C247AB693C7C08,
  5563. JContainer_System_Collections_IList_Contains_mEF9CF39953FC1A3683E2DA8A4848893A4E75973C,
  5564. JContainer_System_Collections_IList_IndexOf_mA6587C1147A673FC7B50BEE3973E6B7D264DD0A6,
  5565. JContainer_System_Collections_IList_Insert_m68BB562D814889360FF51CACCFA061B86E0AA034,
  5566. JContainer_System_Collections_IList_get_IsFixedSize_mC125808FD714ACA6D37EBE3B7950058AD56D22E4,
  5567. JContainer_System_Collections_IList_get_IsReadOnly_m2B935D9E1147ACB4A383F772EB60A931F3B383A4,
  5568. JContainer_System_Collections_IList_Remove_m3A7D2F1220179E142AC3D57D12A77F2DAAB74ED1,
  5569. JContainer_System_Collections_IList_RemoveAt_m90A327557DBE759D044D48779B49E53083F70711,
  5570. JContainer_System_Collections_IList_get_Item_mA6E3436C79A435FEF466D4499418005268264E31,
  5571. JContainer_System_Collections_IList_set_Item_mD4641B3D2DFB8CB8CD34D231DDCD1C689D1BF6BC,
  5572. JContainer_System_Collections_ICollection_CopyTo_m803A98DDDDE2718C4778C4FD525B88D7B34880CE,
  5573. JContainer_get_Count_m7BE891DAF5EFE794306F13D1A35164AA28287ABD,
  5574. JContainer_System_Collections_ICollection_get_IsSynchronized_m6BF42F1D7A779F15A853D495B8F96A1ABA822C1F,
  5575. JContainer_System_Collections_ICollection_get_SyncRoot_m8A1614D262240D3827F775300FFCFD17ACD5292D,
  5576. JContainer_System_ComponentModel_IBindingList_AddIndex_mC2F780738F4815A48B2DDDCF4634376FC6B532CC,
  5577. JContainer_System_ComponentModel_IBindingList_AddNew_mBCBAC026942A9B2BAC683C3A54A2BC8163B7AD01,
  5578. JContainer_System_ComponentModel_IBindingList_get_AllowEdit_mB8CC5D02B6DCAE05CC53ABE6B046961D14F1FDE3,
  5579. JContainer_System_ComponentModel_IBindingList_get_AllowNew_m59EE6CE41D4F3129E74B3984037DEF274EC93976,
  5580. JContainer_System_ComponentModel_IBindingList_get_AllowRemove_m02B0026E0FC87841FE7C637041350B3D8142BB5B,
  5581. JContainer_System_ComponentModel_IBindingList_ApplySort_m7ABC1ED883335B2F3370A5BBED73C34010AAB055,
  5582. JContainer_System_ComponentModel_IBindingList_Find_mD7B70FBC342EBED5CC16C412269F1F8CF4E25A2E,
  5583. JContainer_System_ComponentModel_IBindingList_get_IsSorted_mC4FCE3A7E2723904B6B84D1BEE4391D56A02C6C8,
  5584. JContainer_System_ComponentModel_IBindingList_RemoveIndex_mE424C19D4B5C314EF39E46820DFDE0678BA7085C,
  5585. JContainer_System_ComponentModel_IBindingList_RemoveSort_m13C303F0FB048BEBA583B704465D52E66EC664CD,
  5586. JContainer_System_ComponentModel_IBindingList_get_SortDirection_m496810711CA34E0F3BC8349EB2C096DEE3D23880,
  5587. JContainer_System_ComponentModel_IBindingList_get_SortProperty_mB07C87D34B874AC28627C3022D65FE3941E8445A,
  5588. JContainer_System_ComponentModel_IBindingList_get_SupportsChangeNotification_m6225E5079974EA86270A6EA2C1F937B7B09DC730,
  5589. JContainer_System_ComponentModel_IBindingList_get_SupportsSearching_mC10733C41BEA9A33CA4158322DA8C27B9F99E6A9,
  5590. JContainer_System_ComponentModel_IBindingList_get_SupportsSorting_m486FE49E9AB379E873955D96B788ACCC0C0E7D72,
  5591. NULL,
  5592. NULL,
  5593. NULL,
  5594. NULL,
  5595. NULL,
  5596. NULL,
  5597. NULL,
  5598. JObject_get_ChildrenTokens_m6A2EDA3922D051F0F0BC7614E92384F34829DB35,
  5599. JObject_add_PropertyChanged_mB83856D5DE35B67F409E3EA1E6B21C6E362095E0,
  5600. JObject_remove_PropertyChanged_mE072EC2DBF5C6A0BE20E4FE1916A2CFD9A77C87B,
  5601. JObject__ctor_mC2ABF535613F5B0CCD040EA2133F29AA868F84B6,
  5602. JObject__ctor_m2BB4B9FE534141BFF21D6B5512781100AA60D000,
  5603. JObject_DeepEquals_m19AD39992675E2F132F33A698FD565A8C4616C80,
  5604. JObject_IndexOfItem_m021625E203B49643DEAB0A18C864231118BE65EA,
  5605. JObject_InsertItem_mA48096B5961D85580F56EFC34DA3135E7983CE2A,
  5606. JObject_ValidateToken_m1D16576AFFA35E6BF6AAE7746E1C36A70A21E799,
  5607. JObject_InternalPropertyChanged_mD71E38678812D721847A45DA36E50E9341142366,
  5608. JObject_InternalPropertyChanging_m5AAAB727E5485BFB58AEE7DD6C707C999209B22F,
  5609. JObject_CloneToken_mE0EEDB50A385853C3FA3E898F5B1A3D919D60815,
  5610. JObject_get_Type_m28AA64D0F20318B46EA07547F5286327F30D11F5,
  5611. JObject_Property_mAC035EB5A7503C18850A12AB6AF50D3963A5DE4C,
  5612. JObject_get_Item_m20AA659AB303A656657881803E072E9F491E02EB,
  5613. JObject_set_Item_mC5D002DCBC5E76E763C67B1FEC7E9E844B12CFC2,
  5614. JObject_get_Item_m80363C48702BA72846A041E62E790E9E7392B0F3,
  5615. JObject_set_Item_m079791F9D444829F3FC1A8E698AE3BC0B3799023,
  5616. JObject_Load_mE10712B20CE007984F2A9066F620D55342CD961E,
  5617. JObject_Load_m23C5D243B879AC4B91FA887FDEB3E89C678835FE,
  5618. JObject_Parse_mA2260CFB81694E96A188F3FC5B9B60BA69F2AE74,
  5619. JObject_Parse_mE880AB67CA7CFFCD4656CD273435C4129C6AF35C,
  5620. JObject_FromObject_m084AF0C231311BFEBCA73D333450C8413CE0C426,
  5621. JObject_FromObject_m927B3EAD5B6664A25BBEEDD5E2BB7150DAB242A3,
  5622. JObject_WriteTo_m7E545216C7299B3B72CEE915D71B3A3FD3094C1B,
  5623. JObject_GetValue_mCC9DA25500AF2DDE4A6A3F0D8DF9BCC9D53612E0,
  5624. JObject_GetValue_m8719E5583D473F4909D0B9479A8D02E062ED99AC,
  5625. JObject_Add_m7C41853ADC4162C317C1C443A777594AC5760F42,
  5626. JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3E_ContainsKey_m292AB486548276FB0534088D0D31FC2882F570D4,
  5627. JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3E_get_Keys_mEB75A6150B7CA8696A283FA179BA6455DB5EC36E,
  5628. JObject_Remove_mA783B0CD5AD9875E541A86815E7E85111863374D,
  5629. JObject_TryGetValue_m7675069C2FAF25EA6EE4EAD8C3B54037BB3F0DF7,
  5630. JObject_System_Collections_Generic_IDictionaryU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3E_get_Values_m56D179E846C00CE5D2E2934371B4C03DEF960982,
  5631. JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Add_mEB21654E9B5ED3BC77F31F5121F00ED6341A7E3B,
  5632. JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Clear_mEDD65A3BFEF7227B032F9B0967273BA69DFE49C8,
  5633. JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Contains_m8BCEA5499FF6B451151E01100DD0B16150E745FA,
  5634. JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_CopyTo_m3E69207E748B2C640C74033855783745FEDEB709,
  5635. JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_get_IsReadOnly_m42F771C84EB574FD4F3E3C5ECA1C2C40954DEB0D,
  5636. JObject_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_Remove_m8DA7D64848FF08A590D98AD9CB138C0DA184EADB,
  5637. JObject_GetDeepHashCode_m8BE01DF899B6491A9E81D8AD09F9537302448CD8,
  5638. JObject_GetEnumerator_mF207EDD82CCC844FBE21B3C189FC8E4DA116FA0B,
  5639. JObject_OnPropertyChanged_m0C1E8EC443C08F9EC36E42A5845497728E0AE5DC,
  5640. JObject_OnPropertyChanging_m889B7E8AC50C907C9C9A634725AC786214176E5E,
  5641. JObject_System_ComponentModel_ICustomTypeDescriptor_GetProperties_m029750BFBCD1786D47DD5E5AB877022CCADF54BC,
  5642. JObject_System_ComponentModel_ICustomTypeDescriptor_GetProperties_mC12852B48D16176890C7CBBD71E69727DBE46F69,
  5643. JObject_System_ComponentModel_ICustomTypeDescriptor_GetAttributes_mC952D6679E5F6F8CD12932EA88D18C31B39FCB0B,
  5644. JObject_System_ComponentModel_ICustomTypeDescriptor_GetClassName_m6A1D03E34649F3A0D703CA526999B7A3F2E99AEF,
  5645. JObject_System_ComponentModel_ICustomTypeDescriptor_GetComponentName_m0133AFECCE3F0BFD61972916024CC78108C8AE77,
  5646. JObject_System_ComponentModel_ICustomTypeDescriptor_GetConverter_m018EEE94D859161BBBF152D74607584745D5EC71,
  5647. JObject_System_ComponentModel_ICustomTypeDescriptor_GetDefaultEvent_mDCFA3D51B79883482C5722010209922667AD1DC7,
  5648. JObject_System_ComponentModel_ICustomTypeDescriptor_GetDefaultProperty_m6E0E787CEAF2AF072240004A16C8CDD1F3CDBE78,
  5649. JObject_System_ComponentModel_ICustomTypeDescriptor_GetEditor_mCAF6620394D04C58C3702458BE4D849546CFBB7A,
  5650. JObject_System_ComponentModel_ICustomTypeDescriptor_GetEvents_m12D967FC49DE35ACD920D9F3C7C1FCC806929A46,
  5651. JObject_System_ComponentModel_ICustomTypeDescriptor_GetEvents_m0B1BB39E2BCB1066A9B1E79E27162609498A337C,
  5652. JObject_System_ComponentModel_ICustomTypeDescriptor_GetPropertyOwner_m378F2283E2C7FAA9693970E765C912D070136666,
  5653. U3CU3Ec__cctor_m7061F0865CB68A5E9071B17B024354074CC40FCA,
  5654. U3CU3Ec__ctor_m12583814D2DBDF9197EF3849980DBCDC5C608CE3,
  5655. U3CGetEnumeratorU3Ed__58__ctor_m872F5FDD4EEEE735615237623B5CBA293F6850F5,
  5656. U3CGetEnumeratorU3Ed__58_System_IDisposable_Dispose_m86F73AE814F57F2B03CF9B5B80042C9F90C62135,
  5657. U3CGetEnumeratorU3Ed__58_MoveNext_m1297E0B4E2DF44667D5B78C3F6BB3FBDCB9DA966,
  5658. U3CGetEnumeratorU3Ed__58_U3CU3Em__Finally1_m55F7EF214234CB5AE172B1391E27AD0C2B53C1CC,
  5659. U3CGetEnumeratorU3Ed__58_System_Collections_Generic_IEnumeratorU3CSystem_Collections_Generic_KeyValuePairU3CSystem_StringU2CNewtonsoft_Json_Linq_JTokenU3EU3E_get_Current_m71CBA61881E0B0809CE43CC3D24F2D3B9F389468,
  5660. U3CGetEnumeratorU3Ed__58_System_Collections_IEnumerator_Reset_m26EE8DC5BDCE81F7E904EF44D29ACA1208AC16BF,
  5661. U3CGetEnumeratorU3Ed__58_System_Collections_IEnumerator_get_Current_mCB0A9772FABE1AEF2AE58CC5E7AFEFB9D67A6A3B,
  5662. JArray_get_ChildrenTokens_m7C614231C0400EB3532C67D4AD2D6207BA7CA2CF,
  5663. JArray_get_Type_m59C767FB485C1739DC89F30C0B2BC7FF7E726701,
  5664. JArray__ctor_m51883217505C9A06E7CFEFF7E7F5AE9172281F0F,
  5665. JArray__ctor_m74765E1657F8FF449A776BEED717BFE2DDE6DBB9,
  5666. JArray__ctor_mB3106162861C77EC2D96BED0E042C02C9D348721,
  5667. JArray_DeepEquals_m186E40D4F68AB7B94AF62F5934D3E8018D449467,
  5668. JArray_CloneToken_m28BB710394BA7509DC51B8534F987B374A11E76C,
  5669. JArray_Load_mA758323FC39D3D2C56C9A4A72029656E8E618E06,
  5670. JArray_Load_m69EDDA73070D77FBF88C38CC14C9160F0D0D6141,
  5671. JArray_Parse_m439C04275F3CBF55608B03C052B7D823E7D8E764,
  5672. JArray_Parse_mE597CC9FC4B702F6B2A7A62875820B9ABA95763C,
  5673. JArray_FromObject_m841DC4F6F38D049C725FDF17AA2CE31DFC56F953,
  5674. JArray_FromObject_mD5CE7D9A39AADC17F40A40CB16A4EE4543B3C9F4,
  5675. JArray_WriteTo_mA91A532DD89FB33CF5E983AAB6C2D438BA4476C2,
  5676. JArray_get_Item_m686549F46A9C49FFBA3F123896559403B4CAE91E,
  5677. JArray_set_Item_m3A96DED6E2CFF0948B24FF9D65F2578318242A42,
  5678. JArray_get_Item_m181FAC862BC79F68F7712C837E37016B91AF9EA6,
  5679. JArray_set_Item_m425B9606BBC427BA3D7CD0B5F490FEB861D8F36B,
  5680. JArray_IndexOfItem_mF4FB5E4C1C8344110278502ADAEF1D1797A0B5B8,
  5681. JArray_IndexOf_m28F0CBDF36319D7AF59E3ABAA2C5123FC9DA8A38,
  5682. JArray_Insert_m21AEACFD0ABABB3E4AEA7A86C8245A2AEAC2BB84,
  5683. JArray_RemoveAt_m4156E8F71D40059DEBFAA24E43EC457CD2F63585,
  5684. JArray_GetEnumerator_mB043EF6F59968E82C71A04BBEBD78A0224AFB024,
  5685. JArray_Add_m6B42FD282BBCFC0BD990DCC64845FED95893FE92,
  5686. JArray_Clear_mE48801B65A3347CF4B5CEA4F08A6939F5832AA53,
  5687. JArray_Contains_m507CFD376DAAB313DB44652C4EB69EB4ECF36086,
  5688. JArray_CopyTo_m9C4D1EF3C7B97C8132BEB9549D0627AA921706BE,
  5689. JArray_get_IsReadOnly_m8F14542239062682DC12E905E6275480DC3B0EFF,
  5690. JArray_Remove_m881E94036B788DB51AF442B7C6B9FD5CD58C0873,
  5691. JArray_GetDeepHashCode_mCD598BF8A04AD5D8DFB020543500C6C158B27274,
  5692. JTokenReader_get_CurrentToken_mF456F06D9F95D3570D0BB62D6F5AF6355F01F894,
  5693. JTokenReader__ctor_m03B413BB58E3DDA88F4E3CD3EBE6F62E7E1ED8ED,
  5694. JTokenReader_Read_m748D26282AE65102F373E319ECEC3EEE49FF9900,
  5695. JTokenReader_ReadOver_m4E738C5F6D007B5A260077313669BFDF73E48FCB,
  5696. JTokenReader_ReadToEnd_m37F75C4362329E72A8A735F19F5C4640B991987F,
  5697. JTokenReader_GetEndToken_m5A63E5A38757F7206247A217819F6DB442DA696A,
  5698. JTokenReader_ReadInto_m84585E70E03D85F14D1A2CA866777DDD21177F2D,
  5699. JTokenReader_SetEnd_mDF29F0E1263AEFE081561557AB4A1CEC7B989538,
  5700. JTokenReader_SetToken_mE8FA946667E5628E25613CA79295733B82B88EED,
  5701. JTokenReader_SafeToString_m25174BD36EEE455D7CFD5E6059F2544E344E87E4,
  5702. JTokenReader_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_mD4AE46E111467A0A743BF072E0C318AF50E741BB,
  5703. JTokenReader_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mEFF7D34C961B9E9D02906A433EE0387199F02B51,
  5704. JTokenReader_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mF6ECBB3E4DB2F6E4FF280C067BB67C3C7AC6014A,
  5705. JTokenReader_get_Path_m8DEF37297BEDD79297B46E3148197A1C36FB61B3,
  5706. JTokenWriter_get_Token_m4339546A43E2B6ABE374211ED99558CA4863EC2B,
  5707. JTokenWriter__ctor_m3DBD4A5D531475B3267741A19B747604FE85770D,
  5708. JTokenWriter_Close_m0F0DDBCD1164196E02FB5A176AC0828619134C5F,
  5709. JTokenWriter_WriteStartObject_m3079C0AD6847D204F5CDFEE8F618EBB4F8FCE1FB,
  5710. JTokenWriter_AddParent_m8D51379E851C957F7AA3210A302C96CEAAAEF6CF,
  5711. JTokenWriter_RemoveParent_mBD0EB71E203C0749E649C881DF04EB91674C3233,
  5712. JTokenWriter_WriteStartArray_mA0EA19B391935F6C34041EEA36028A09654A8E42,
  5713. JTokenWriter_WriteStartConstructor_m08BCD914D3C466255B81ED98252353F392F5CAE2,
  5714. JTokenWriter_WriteEnd_mC8D31C955168398F63C9DC8A8A17555E71D727AD,
  5715. JTokenWriter_WritePropertyName_mB36B9CC19329BCD18F9DA7BD4E2136C84A4BE965,
  5716. JTokenWriter_AddValue_m971936C741F9FD2347EF8383835C9A62F6E2EC9D,
  5717. JTokenWriter_AddValue_mEDE595D38B4FC137A4FE8B40845D1D53C826C865,
  5718. JTokenWriter_WriteValue_mA603632FF6A05B21938D592DCBA01909363C2B39,
  5719. JTokenWriter_WriteNull_m556C4AF5879A101A7F81C831621EB3E195E193C3,
  5720. JTokenWriter_WriteUndefined_m6EB69DE962FDD9EE16FC609693A961F326D27AD7,
  5721. JTokenWriter_WriteRaw_mDCC9DAA08DA0F39F412AB16690E271CFC92C235C,
  5722. JTokenWriter_WriteComment_mB1DD3F92EAA174C7D49520E2CF490C15A8FC7038,
  5723. JTokenWriter_WriteValue_m5D80467F3FC2C5A3D66E3A12AD8E90303922F816,
  5724. JTokenWriter_WriteValue_m7BD6E2565E649A0390E87611F05E3031810FDE5C,
  5725. JTokenWriter_WriteValue_m28948BA71BC661F6F6D9DD6EB6A9E32E6DEE089E,
  5726. JTokenWriter_WriteValue_mBA1646433C99714F23DE8B5723E98965E1592EBA,
  5727. JTokenWriter_WriteValue_m0BC100A64ACDD000814E1BF2CE0D34C8077A21F4,
  5728. JTokenWriter_WriteValue_mDB9523A1909DB5915E7B752EF184F75B249131AB,
  5729. JTokenWriter_WriteValue_m20E8AFF1FF865EBFB013D33698675B6EC2D9E3D3,
  5730. JTokenWriter_WriteValue_mA20C4C4A488BF53E3257211E7A0E948F6B80EC65,
  5731. JTokenWriter_WriteValue_mB7FEC8DEF4D115807DAC8AAFEC1D61E675AA90D3,
  5732. JTokenWriter_WriteValue_m39629D3870736167B8768832D3671A624EAF4522,
  5733. JTokenWriter_WriteValue_m3D66950E1570A261E7C81C687111F5796182B540,
  5734. JTokenWriter_WriteValue_m9C59CA5A105A082A7A40D9377766DAF31F16CFF0,
  5735. JTokenWriter_WriteValue_m6A5983A4D2DD496616C3B05E1A5C3757F95DAFCA,
  5736. JTokenWriter_WriteValue_mC2474B8730CCC3B5ECDAAB9E2DC61D1F66628451,
  5737. JTokenWriter_WriteValue_m07A7E9074529551651D63021C2C1459488062A29,
  5738. JTokenWriter_WriteValue_mEED75F6B643D9D2C91E4AF9B66A85F0958B65A1C,
  5739. JTokenWriter_WriteValue_m2409F919FFF23EFE2D583A9D7370E9C4D0E9DBF4,
  5740. JTokenWriter_WriteValue_m058BEEC0C0B462A518F27CA12723853C00201C0F,
  5741. JTokenWriter_WriteValue_m2600983EEF3050B91FE22C62B9234CA51F4BB447,
  5742. JTokenWriter_WriteValue_m598A544D5A2D0D13EF039AF30F5E0C6D73E981E1,
  5743. JTokenWriter_WriteToken_mB432246F6938A1E91B8D80A0E2FCA7D4B3A2E092,
  5744. JToken_get_Parent_mA56162932F57CA4728F95E7C7A5FC53BA6E21047,
  5745. JToken_set_Parent_m94681C41A4BF5A88AFB6202CF0EB85E9DB37C6C0,
  5746. JToken_get_Root_mE526DA2686E0BD42C4A3FA7F2ACC9423A08C1D14,
  5747. NULL,
  5748. NULL,
  5749. NULL,
  5750. NULL,
  5751. JToken_DeepEquals_mFE3F9E2138F788E6C01E86CDE5AB248039D9BF9C,
  5752. JToken_get_Next_m44ABBA6AFA7E2ABEEBAF36D1DFC86B4233F92609,
  5753. JToken_set_Next_m96AA1C89A407E117CFBCBF74273585ADFD4DA3C1,
  5754. JToken_get_Previous_m53C5EB9DF6DAF5BE72D7AB4DBC63DA5D762D5525,
  5755. JToken_set_Previous_m0898C6221FA388B7F31ADBAD05E14671F5D65108,
  5756. JToken_get_Path_m5F6A7644954DECFC78755CD1C1D8B5CE88B85A73,
  5757. JToken__ctor_m9A33E190E3C706DAAE8855FE59F7FD6138730A23,
  5758. JToken_get_Item_m4508A72C96C1C66F8C7EC215C0C723F89C46632A,
  5759. JToken_set_Item_mD3ECA751B669009F027A5B4F3F91B05B2189CD4C,
  5760. NULL,
  5761. JToken_get_First_m35FC03384D6D3BB03FF927106B43EAA3849D3A9A,
  5762. JToken_get_Last_m5ED6C283D197095C527BC16E830508E150ECF87C,
  5763. JToken_Children_m4CA11C47EF29671EBF3985DCE33F7B4B25BC63B5,
  5764. JToken_Remove_mB38D4289F80AB38649500BA72BD8200D5E5714BC,
  5765. JToken_Replace_m83831E295B24F26ECA37DF56400004390AD5DFF8,
  5766. NULL,
  5767. JToken_ToString_m731E8FCC3BF4A1B3D705D478A8B621BE3EE20468,
  5768. JToken_ToString_m9E53ED75AB4A3EF07D4C3EB0D7D44383D89F58BA,
  5769. JToken_EnsureValue_mD9BF1931F2D2620F5766223BD28FBFCB494FD7F3,
  5770. JToken_GetType_m06519AC13F6EA239FC499AE26A1695A2B9B5A298,
  5771. JToken_ValidateToken_m7320423DEF172C307C11350320BBAEEE1ECD60F9,
  5772. JToken_op_Explicit_mB151E43F59905323634A640F2324C2C775B34661,
  5773. JToken_op_Explicit_mDD6DCA9D08C1C324D5A0C27568447CFCE8EE4C29,
  5774. JToken_op_Explicit_m2F30DFABCECACB7AB712BE62217C201C61DD572C,
  5775. JToken_op_Explicit_m4E7617246CBC1C0E00D1F248C1C02ED1B25D6DEA,
  5776. JToken_op_Explicit_m1782351556514AF927F616EA733E969AA5EC9A8C,
  5777. JToken_op_Explicit_m6C40F0E59766F9219D60212D2D330602820780F8,
  5778. JToken_op_Explicit_m91E7B6CEB4DB81BE2CE97D42C5D9ED0235A1BF31,
  5779. JToken_op_Explicit_m916EDCDE86ABE1AC4F6B458BF40362582941ED90,
  5780. JToken_op_Explicit_mAA1F8A93F7F7EB1C4233246406815B04225CE918,
  5781. JToken_op_Explicit_m8375005A9901DF69721432BA14A6244191A70BF9,
  5782. JToken_op_Explicit_m5204A020C1CA93FA7A823997187A4CC8EAB6FFDF,
  5783. JToken_op_Explicit_m87EA6319EA3E3E1B98C1ED7424F43B238E4F987E,
  5784. JToken_op_Explicit_m0590FD1039A9915EA8B693238BC461158C42529E,
  5785. JToken_op_Explicit_m5E49DBB5487D233239300D290AA67F3312547899,
  5786. JToken_op_Explicit_m3C2674D8BCCF2148736AAF2F4CE8D80C81986941,
  5787. JToken_op_Explicit_m4FEF9B3DBAC7F99F365CC6D9612F6B467ADA4BCF,
  5788. JToken_op_Explicit_m0A23DF8E211CBF20F2D107B9DA8E2B6DD77DD081,
  5789. JToken_op_Explicit_m57A0E69DB74E588DF9A080B627E951B2185DE59E,
  5790. JToken_op_Explicit_mC9E25F54EFBEBCCCC9C90E7706E8729BD88FE019,
  5791. JToken_op_Explicit_m14D75EE97D98C9C5691B089A98248F9419FC822F,
  5792. JToken_op_Explicit_mC2EA977CBD292133B27E38447FED7B79347B1D7D,
  5793. JToken_op_Explicit_mCC010FBC79F64CEC66EF02127D29F6B766DCAB69,
  5794. JToken_op_Explicit_m54ACA327F16469B6847601927A1EDDDA20FF940F,
  5795. JToken_op_Explicit_m01D0834AA83423E14AA675F1379AACABA3FEFD10,
  5796. JToken_op_Explicit_mF8B3B58C0BE99BA4A281EF0DDFE378E8102D91F5,
  5797. JToken_op_Explicit_mF1F831B5190980344F6053A81BFC4284551861C0,
  5798. JToken_op_Explicit_mF0B4A4DE59F877B04AB2AAFAB95A36B463263626,
  5799. JToken_op_Explicit_mD4DD55C6987A1966CB844AB222140C0BA6322C46,
  5800. JToken_op_Explicit_m18EEEE9F461F450D7F7E5A49C642AA40D9CFF3C9,
  5801. JToken_op_Explicit_m985B22F3DA346F51A6F582E21AB83ACC25D4A394,
  5802. JToken_op_Explicit_m06B72D4DB16DC1EE4D0D5BE85D6E140219E18976,
  5803. JToken_op_Explicit_m8CBCBF71355B4B848B42C6F07E664D4F01F5A427,
  5804. JToken_op_Explicit_m2E5E5BAFAF2F3FCF4A65BB9D822F53332B85CB19,
  5805. JToken_op_Explicit_m54FA346024FF931A676EFD4F1987C90C35CB62B0,
  5806. JToken_op_Explicit_mFA8ADA35CB594687E9F0113ED09EC6D74F17E236,
  5807. JToken_op_Explicit_m524E51255C189ACEF140E6512CD59A3BB6F6F05B,
  5808. JToken_System_Collections_IEnumerable_GetEnumerator_m95599D039968E3B90C1997E6EE537C820D81BD58,
  5809. JToken_System_Collections_Generic_IEnumerableU3CNewtonsoft_Json_Linq_JTokenU3E_GetEnumerator_m2F61612844C6A3DB9929667F95984D857BD8825F,
  5810. NULL,
  5811. JToken_CreateReader_m534B2D3BA2D5414584D4D85247D915D3304D71A9,
  5812. JToken_FromObjectInternal_m776ECF83B95502D00BAB95CD86112ACBA43B4009,
  5813. JToken_FromObject_m6FF17C857F570212A7A76D5621D7372210960DAF,
  5814. NULL,
  5815. JToken_ToObject_mA45387A7E152199DAD85F9E8D6B8C1110C3BF74D,
  5816. JToken_ToObject_m6A061F56639FF4FFDAACBE4EA1CE51F881369E11,
  5817. JToken_ReadFrom_m2CD6041109ABCAF48F0182DC70F300DBF48CC955,
  5818. JToken_ReadFrom_mBA166B8C1113108F91C919BA658546AD7CF996A4,
  5819. JToken_Parse_m57448B59A8948B627F3F743E66AC26966781EF30,
  5820. JToken_Parse_m7491AE9C92864A662F95BB39B009173EA7C6238C,
  5821. JToken_Load_m3EB2168E3494B8E72CE77D82129041536F0D127D,
  5822. JToken_SetLineInfo_m21AB71057545EBC4F1EB71B59F15CF7D20DA0D13,
  5823. JToken_SetLineInfo_mFCFC42EE32F895E71BB264CD716E4E250C2D3C7B,
  5824. JToken_Newtonsoft_Json_IJsonLineInfo_HasLineInfo_m5523954BC6B3E4489527D34FB10D8D9E870E24A1,
  5825. JToken_Newtonsoft_Json_IJsonLineInfo_get_LineNumber_mB5CCD2275608337DC599DDB2C3DB9F8F6D99C6D3,
  5826. JToken_Newtonsoft_Json_IJsonLineInfo_get_LinePosition_mE5A62CD70197F1CE1BC66BFC5BC5EFD4D6C63ECB,
  5827. JToken_System_ICloneable_Clone_m77B689765C32B02492561F1F46CF45B73883A206,
  5828. JToken_DeepClone_m697FB5CDF28554CDCA8B1292DBC2925C65842FB4,
  5829. JToken_AddAnnotation_mA05083C7F9CEE5DC9573F8A9689468C78C13C098,
  5830. NULL,
  5831. JToken__cctor_m53768410D48E08723E04C3E21E899C5FC7AF0BA9,
  5832. LineInfoAnnotation__ctor_m45F8C31152F816EEC11212E29FCD281E0D038C34,
  5833. JProperty_get_ChildrenTokens_m1D9B59062020CAB7E337885811799E77FDD9ED7F,
  5834. JProperty_get_Name_m4B909198F27EFED895AF6E2EFB90F2A22F86E411,
  5835. JProperty_get_Value_m6E4A8DB7DF48E5C9AEB1DF22A36FC70F5B63DFB7,
  5836. JProperty_set_Value_mA3BDB16555227152B2979120D5EDCEDF99112B2E,
  5837. JProperty__ctor_m2D959A0252CF6CFCC7540906A5A55E37A2583AEF,
  5838. JProperty_GetItem_m8F8634BFC8A41DDD0FC2B2BFECC65FDC83BA644A,
  5839. JProperty_SetItem_m147344233F5A77DCA8D2CBBB155FEF17FEC6C844,
  5840. JProperty_RemoveItem_m3A21F2B32184EBAFB03CCE4B7B4B2CE4858CBF0C,
  5841. JProperty_RemoveItemAt_m732393F0677A5DF19C8892064A49E68FD14E9124,
  5842. JProperty_IndexOfItem_m3271249FE819295CA5F2C231D08846B00741D81E,
  5843. JProperty_InsertItem_m8D86173EA0AF0E7D9A6B1932D7BAE92A8733D3D5,
  5844. JProperty_ContainsItem_mE35D596EF1E2B7CECE0D38D4BA0933FDAA51E079,
  5845. JProperty_ClearItems_mADE218CD57CD301EE3EAE6DB0DAA9474ADEDFD66,
  5846. JProperty_DeepEquals_m1C832DE5E2BDF2B87F6888051FCD792A100BF9F9,
  5847. JProperty_CloneToken_m03231880F3BCBD496C995F3C65228CA5EE30C26D,
  5848. JProperty_get_Type_m353B8F70F0C7FFC5BBC051A82EA8ECDA49EFB308,
  5849. JProperty__ctor_m12ECD4CE36C9400648F143806D545D70E2B5634C,
  5850. JProperty__ctor_m4F3F0682B73D4C46950287AD595BEBE274F532A7,
  5851. JProperty_WriteTo_m754601C5D3FCC1D0D04D25D89608844EC046416E,
  5852. JProperty_GetDeepHashCode_m0CC0747152DD305AAEF30886B6556E320EBEA49F,
  5853. JProperty_Load_m48205DDF35A47B789BA485710F42791682260825,
  5854. JPropertyList_GetEnumerator_m6298870EC6AF369B8C315832F172AF93EC2A6D8E,
  5855. JPropertyList_System_Collections_IEnumerable_GetEnumerator_mA00003A29FB9254EC0967204B5014E29F38C3AB3,
  5856. JPropertyList_Add_m837EF41C7D9BA5556766A5C22B5477454B8FAE81,
  5857. JPropertyList_Clear_m03650052A7E0F5EC6547A167A7CC8761BD011A11,
  5858. JPropertyList_Contains_mD81C0C3A194305EAF6B738DC9AD99272217C6C99,
  5859. JPropertyList_CopyTo_mCC957484BA57042BE9D900DD363A51BAD54A2D21,
  5860. JPropertyList_Remove_m950B0354B86312B65065ECD49D32119373F7B717,
  5861. JPropertyList_get_Count_mE8FCC0B8372587C49BD357673C610F0D5297CC29,
  5862. JPropertyList_get_IsReadOnly_m89ABAC2E57A8D610897EC9963A1F66D7614C5080,
  5863. JPropertyList_IndexOf_m750A7A87FFB5F418EAAAE68B4AAC315861268917,
  5864. JPropertyList_Insert_m0FD9E5D4253A0F2669AF475FA7E3B669FF02EE61,
  5865. JPropertyList_RemoveAt_mF73C39A1FEC0869A1DF21D0A9CDCEADF55B47EF1,
  5866. JPropertyList_get_Item_m4DC467682227207DE9576A0A9FFC2A06BA039DAD,
  5867. JPropertyList_set_Item_mF83B138BD7E00567EF50A00AEA712F309FC458C8,
  5868. JPropertyList__ctor_m63BD4D2D4FFEAAD459547F36CF2065452B042324,
  5869. U3CGetEnumeratorU3Ed__1__ctor_mC49E159103879D4883943B820EDF7233CFEAD55A,
  5870. U3CGetEnumeratorU3Ed__1_System_IDisposable_Dispose_m17C4D1B2A19AAD8D5788B5E76415F986431B8498,
  5871. U3CGetEnumeratorU3Ed__1_MoveNext_m9C859FCA23B8E6DF1A7FBA98CD929751168FC38D,
  5872. U3CGetEnumeratorU3Ed__1_System_Collections_Generic_IEnumeratorU3CNewtonsoft_Json_Linq_JTokenU3E_get_Current_m07AC2CA7D788EA56432549B7C02C0778568C61B1,
  5873. U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_Reset_mADE13DCBAB70A428878E701CA49C487991D70F72,
  5874. U3CGetEnumeratorU3Ed__1_System_Collections_IEnumerator_get_Current_m4EB98DC969BC1C587317776FAAD9DAACFDDAE32E,
  5875. JValue__ctor_m979A5EE1A72F45F5CAF6D76EEDD0990D69E00796,
  5876. JValue__ctor_m522D4B6EB93F27086CB92384657550E609A3167B,
  5877. JValue__ctor_mC889FB1AA1B4DC300F7033A0043E065CF50AC94B,
  5878. JValue_DeepEquals_m41CA0C8B5683A179448CAD010C2014CC047B878B,
  5879. JValue_get_HasValues_m6F254ED7F002D5176A396420F6E9B590B52CEF85,
  5880. JValue_Compare_m01C87856578C73242F1A8083A4FC9D70E78761E2,
  5881. JValue_CompareFloat_m3F6454CE20D33466B6EDB828011907BD88200C1B,
  5882. JValue_CloneToken_mA6AE62DEE2E4496CDDFB417387B582705FF186E4,
  5883. JValue_CreateComment_mDAFAC915EC6456CF880ABF97E3E8D80679F82817,
  5884. JValue_CreateNull_m2230973FB1BB08630C9D248E8B6BFF8615F5B7DF,
  5885. JValue_CreateUndefined_m5699186F23FE28BC8F92911F26A73D16396BD3FB,
  5886. JValue_GetValueType_mD4C0C87715186C2CAE9563E1D1FFA1E816F9A1DF,
  5887. JValue_GetStringValueType_m0E0A9AFD650634041917D5917810EB9AD1A6D6D7,
  5888. JValue_get_Type_m1BC54272E1DEEBB23EC875D4F8B07B64EF926051,
  5889. JValue_get_Value_m886BB4337BAD45C2E74A27AC3D45A5D3912DB92E,
  5890. JValue_WriteTo_m8B1DEEB90C4CF72AB25E3E9F90347F34A94C2A0A,
  5891. JValue_GetDeepHashCode_m16D6824D213F2407B93880EF0F216FEFDC54DA98,
  5892. JValue_ValuesEquals_m5C86A23594A50215B2D8FFDAE8EE422615976B18,
  5893. JValue_Equals_mD2988D82A7D6D842082198F6F55006923080F811,
  5894. JValue_Equals_mC937C670D8C1C5487124A902610BE435E2D6F270,
  5895. JValue_GetHashCode_m41B4033241EAC5E45950EC39692370035ECEA59D,
  5896. JValue_ToString_mDF25D0D9D445164C38661DD2377661884D0D412C,
  5897. JValue_ToString_m6D3A36E8CABE09921695EB6902BA424AF4F60903,
  5898. JValue_ToString_mAD6013DAADD1BFF3D2C9DA3F2CE3BC6183960318,
  5899. JValue_System_IComparable_CompareTo_mE3FBD4020398C2945F761704E6A47CD5A8BFCD87,
  5900. JValue_System_IConvertible_GetTypeCode_mFB78B5C9E772F5ADA3DDB3654452DC83EA853847,
  5901. JValue_System_IConvertible_ToBoolean_mCA575F28663AE8FDCC11981604812A8D140B563F,
  5902. JValue_System_IConvertible_ToChar_m6D8C8573B926D4877A78B01950A9F79D8F7B1B7D,
  5903. JValue_System_IConvertible_ToSByte_m196E8B186CA7966F53154370F6754E749699D564,
  5904. JValue_System_IConvertible_ToByte_m63386F8EF1561A410CB5248FAFE760DDD6A37177,
  5905. JValue_System_IConvertible_ToInt16_m8D22EA36E2663E6108A594C9CC86D93D35778D82,
  5906. JValue_System_IConvertible_ToUInt16_mC87EF6A9FCA8A4BBE38F19F4AEBEB3D5B7B42AC1,
  5907. JValue_System_IConvertible_ToInt32_m87238F888B1F16024E0CF6A1755D6FE00BE6A028,
  5908. JValue_System_IConvertible_ToUInt32_m9FC52D511B9F5D8C1E3D0622008CA941EAC148E3,
  5909. JValue_System_IConvertible_ToInt64_m37A400738C3E681B248623FB49F78EE49E250304,
  5910. JValue_System_IConvertible_ToUInt64_m6E87A583D697A6137736CF49C2C8EE985FC354EC,
  5911. JValue_System_IConvertible_ToSingle_m03A634324657E9B61AD2BEBCB75973F4121F82E5,
  5912. JValue_System_IConvertible_ToDouble_mE7A0CE8AB12C343D0467848B6202C1CEC4058185,
  5913. JValue_System_IConvertible_ToDecimal_m5FC9282C0F2B409F941D92D65D3D59D92F0C1520,
  5914. JValue_System_IConvertible_ToDateTime_m32B8B6610A6171003CC26AA0B37C971D8B8F0C31,
  5915. JValue_System_IConvertible_ToType_mCB030FC240AD4252274309D7A769E28528A60185,
  5916. ArrayIndexFilter__ctor_m7274D668E9FBD2128FF98F38EDFB2B72752868E7,
  5917. ArrayMultipleIndexFilter__ctor_m4FB4475C6DA2D76AC58E08DAB9D6729CEAE62AD9,
  5918. ArraySliceFilter__ctor_m4F246D5D5C3FBDFC76D3B1DC793C741F025DE3F7,
  5919. FieldFilter__ctor_mB2D7A488B4EE1FE3C2935DEAD3B7A33AAFBCB74A,
  5920. FieldMultipleFilter__ctor_mAD9355ADE68D734DB77EB389B9FDFF08CDA02D0C,
  5921. U3CU3Ec__cctor_m7EEF846654F2D1CFF676E42FACC541FB8B03B654,
  5922. U3CU3Ec__ctor_mA41EC449EB8039C963A52956BB235FD09D59CFD2,
  5923. PathFilter__ctor_m76F162EAECA93E8DFFD31B25F05228D74FBCA235,
  5924. QueryExpression__ctor_m0A28B0D5FF9C7E7AE0F6A90BB8AE13EC99F21E6E,
  5925. CompositeExpression_set_Expressions_m6C250B0E8169DBA36E787DC762692444EBA47039,
  5926. CompositeExpression__ctor_mE27D8F887FAD3FFC1E45F599D77A8FD38B29D13F,
  5927. BooleanQueryExpression__ctor_m7CB7FC3F5E06D03BC6442CD797E7C3894D416B03,
  5928. QueryFilter__ctor_mC98569973250FD627A6425C01473FF829D7DD7DA,
  5929. ScanFilter__ctor_m3885DD40853B24F12CD50DF6F3FEF988B7A4331B,
  5930. BinaryConverter_WriteJson_m39A15563145B721CA7FFEE1646B7447779C6F496,
  5931. BinaryConverter_GetByteArray_mCC821D2275092F8313F363BF7C9B08807D94D8FD,
  5932. BinaryConverter_EnsureReflectionObject_mB641D476B74BEC3031A0474C46F4B024CE6BAF51,
  5933. BinaryConverter_ReadJson_mF2486125CE3E6E7304801984106F1778C3790882,
  5934. BinaryConverter_ReadByteArray_m1630C87C5784FBF9392BDF5C1C5C993D271FE8F6,
  5935. BinaryConverter_CanConvert_m1EBA2800492A96F65A955301EAA55C96FAFD6970,
  5936. BinaryConverter__ctor_mEA19FB802CCFD7AFAE7D36F610E019B189625C48,
  5937. NULL,
  5938. NULL,
  5939. NULL,
  5940. NULL,
  5941. NULL,
  5942. NULL,
  5943. DateTimeConverterBase_CanConvert_mA6F345DEA0F6BB573FC65359397FD7FA5FAD3F0F,
  5944. DateTimeConverterBase__ctor_m7DD931943F1600E761A3F3A583564CDF68290A4C,
  5945. HashSetConverter_WriteJson_mDEE0299F22CC41725B7A70136F712FC9FBCD197A,
  5946. HashSetConverter_ReadJson_m578B65C764895909CC9619DAEE9AB3CA9B93BB53,
  5947. HashSetConverter_CanConvert_m1AD5185F763C2BA8AEE87FABD070D8595B52B0F9,
  5948. HashSetConverter_get_CanWrite_mAC38FC5DE098E84E426A66D247D31B0CC7773804,
  5949. HashSetConverter__ctor_m1334D78BB3B5A4AA4B8BF5875504A8E15B583D38,
  5950. KeyValuePairConverter_InitializeReflectionObject_mE2CA953A6A57FF72CCFEFBC3AE8A859EF0D3E458,
  5951. KeyValuePairConverter_WriteJson_mE12960338B2A89551949855C40B43BCAA9E5B21A,
  5952. KeyValuePairConverter_ReadJson_mA3DBFAADBAB55A0405350CC98809DC8C0876C961,
  5953. KeyValuePairConverter_CanConvert_mEF6F2E364D150AE26ADB3D56CB6DCCE897B06CB3,
  5954. KeyValuePairConverter__ctor_mB98645861775B13F0EC9C9FBAADF2A303752B124,
  5955. KeyValuePairConverter__cctor_m9224B63073E8250E0428872DFB0157DFFB390E1B,
  5956. BsonObjectIdConverter_WriteJson_mB610263213EBDA029D5C6DF15EC4462202A905ED,
  5957. BsonObjectIdConverter_ReadJson_m58B3CE42201CC6FB9F1CF5A00714444195E75443,
  5958. BsonObjectIdConverter_CanConvert_m147B27BDEAB9AA1287A0644849AC2EC917F0E533,
  5959. BsonObjectIdConverter__ctor_mBBBD77C42425F473F7A91AD66F2F38A337A0F234,
  5960. RegexConverter_WriteJson_m5BE9641D61A3042EC9BC746C675FCFCD6C225603,
  5961. RegexConverter_HasFlag_m45C3A32ECEB42C34DDF401ED1FD2D982D0208685,
  5962. RegexConverter_WriteBson_mC113074297DA92E102D0941D6E0B8316009F329F,
  5963. RegexConverter_WriteJson_mA392D25972731EA22F09CE5DFFF72DEBBA7CCEFF,
  5964. RegexConverter_ReadJson_m24F1018312CB0087B2FB302211CD9C5B7673B76B,
  5965. RegexConverter_ReadRegexString_m2C4DFF0D61B6FAA0636D859545CE9DDBEE64D722,
  5966. RegexConverter_ReadRegexObject_m8499C13BB3BB2593ED2243127BFEAEE3BA940B03,
  5967. RegexConverter_CanConvert_mE9E2BC9E0AF3C65207D6B74B592B4A636498B8CC,
  5968. RegexConverter__ctor_m7AA5F74CE6217079CD5B1AB47344A8A40E1F0DF9,
  5969. StringEnumConverter_get_CamelCaseText_m72B0E3D8BB94E5E9812BC9D8E41896F14F17D405,
  5970. StringEnumConverter_get_AllowIntegerValues_m92EC9554D97999DC94F53E86E9E16EBBD6D59C06,
  5971. StringEnumConverter_set_AllowIntegerValues_m20B36927219B91130DCA4FEC27962DAE5CDEDB40,
  5972. StringEnumConverter__ctor_mA12918A557FB35F5772A0CC33CDAD7E61FE32925,
  5973. StringEnumConverter_WriteJson_mDCD9ACE82C99EA8BBDEE27A12A53F8DC4F063E16,
  5974. StringEnumConverter_ReadJson_mBC16B605DEF0862E1C7B9F5E0D3F60D89361B7A3,
  5975. StringEnumConverter_CanConvert_mC6923E1227CAC80E32C7D0A9713AA03EC27F75E0,
  5976. VectorConverter_get_EnableVector2_m9F0D5CAB38093848EDE67465ED5CE3A00FAA4EEB,
  5977. VectorConverter_set_EnableVector2_m409003102FC0044C9B52F2DFD0507A8FE8E74A81,
  5978. VectorConverter_get_EnableVector3_m0FDCE51268D06675E3E79977D7D29C3E8881F6D7,
  5979. VectorConverter_set_EnableVector3_m30CD6BC592FA653D043005941F1C590E465B598C,
  5980. VectorConverter_get_EnableVector4_m367A193107A5E1E279A844A7B04BD89D08D959FA,
  5981. VectorConverter_set_EnableVector4_m3B4BC98CEECCA0BB68ACCE5E061AC3FEC277B04E,
  5982. VectorConverter__ctor_mC5FF7BEF6539320094D7CB373FB256887DE653CD,
  5983. VectorConverter_WriteJson_m7ED361C4AE04E7418107A431CE17112856046808,
  5984. VectorConverter_WriteVector_mDEC4986F19D964C354640871E6F9C3DA09F89E1E,
  5985. VectorConverter_ReadJson_m59966E36F1AE75C036BF99B5EB228A1E137C4125,
  5986. VectorConverter_CanConvert_m0CBE2D892DD169F447C9F2B761B271FAA2542B7F,
  5987. VectorConverter_PopulateVector2_m82A6E79318A30940335C292F9D09DE7F42DEF652,
  5988. VectorConverter_PopulateVector3_m32ECB66A24CB95E260025ED9F19729143F8F725A,
  5989. VectorConverter_PopulateVector4_mA9E68ECC439F9BB47400DB64A8A084D22755B142,
  5990. VectorConverter__cctor_m56EC47609F1BCA9139F8363AA44C1127D3633746,
  5991. VersionConverter_WriteJson_mFA1B84F54D2D945FA43710BA8D407863CE3269E2,
  5992. VersionConverter_ReadJson_mAE54D606E8F4FC9BCBB8CD41F84254B5F9A69BC1,
  5993. VersionConverter_CanConvert_mDA98AF4545185944B817FB2F9E7D44D366619E20,
  5994. VersionConverter__ctor_m48C41A6977092746B7E357A179DF64BE44C91CA7,
  5995. IsoDateTimeConverter_get_Culture_mB14717CF85A5FA47364D1917F8016635A7542059,
  5996. IsoDateTimeConverter_WriteJson_m9B6D8D4D6B95AADB10D98F4283AD2FE832256904,
  5997. IsoDateTimeConverter_ReadJson_mE3874B76FCAF909E82D27F007FDF13C195CC42D1,
  5998. IsoDateTimeConverter__ctor_m3F81B7C6BFC3C27FC1B7D54815C1C7E4B8573058,
  5999. JavaScriptDateTimeConverter_WriteJson_mA34AEDE37E8496974D0EEAAF82F27AF22E4469C7,
  6000. JavaScriptDateTimeConverter_ReadJson_m4B86AAC4A496CA5C3812925A5DB7A6BB5E3BB9B3,
  6001. JavaScriptDateTimeConverter__ctor_m6FA01CAA6D68007B552C16B84D3CD33931EBA94A,
  6002. XmlDocumentWrapper__ctor_mDADE4126D5921651DDAA3FBBE23F52C5F6BF209C,
  6003. XmlDocumentWrapper_CreateComment_mC95FCEC5BA1B85D53A9ED02CD544091B42DBF66F,
  6004. XmlDocumentWrapper_CreateTextNode_m0860A9FED2F1223DA7CAAA084AE3A2FA3299FD1C,
  6005. XmlDocumentWrapper_CreateCDataSection_mC73D6C127D6F4019F59959085E14573AB5A2DF0F,
  6006. XmlDocumentWrapper_CreateWhitespace_mBAB252685A6CCA937AE44564ACCFADF52B862376,
  6007. XmlDocumentWrapper_CreateSignificantWhitespace_m12A21E457004F9D81C499621DED1DDA156A133F1,
  6008. XmlDocumentWrapper_CreateXmlDeclaration_m3E0067995D8A831BAE5475EE030B0BA87E0C32D1,
  6009. XmlDocumentWrapper_CreateXmlDocumentType_m8855093679C81DB34B8302911F0C3E2064D26226,
  6010. XmlDocumentWrapper_CreateProcessingInstruction_m4B3E9AA6C535C2EEC4EA330BD0696F4F88CF6BC6,
  6011. XmlDocumentWrapper_CreateElement_m4BA54FEC9F21FBEBC2EF47DF30DC5F00203CE6E5,
  6012. XmlDocumentWrapper_CreateElement_m41D0D7C172C1CB5858146A72F35B07D683DA152E,
  6013. XmlDocumentWrapper_CreateAttribute_m0331F0688A6FE571A57376093498E84282A1535C,
  6014. XmlDocumentWrapper_CreateAttribute_m83FE092E2EB245352DC0526BF3A724DA24E17779,
  6015. XmlDocumentWrapper_get_DocumentElement_m8691EF656C954AB8291AD9A9CD50DA43912C3B44,
  6016. XmlElementWrapper__ctor_m157ADA9353970E9FAF97F67406CFF891477D8A0C,
  6017. XmlElementWrapper_SetAttributeNode_mAECD27528E049EE296505EA73D29560F91699C28,
  6018. XmlElementWrapper_GetPrefixOfNamespace_m8E04F649B26897A5F405F09E9B35A618B289182B,
  6019. XmlElementWrapper_get_IsEmpty_m7492BF73E3666302DCA25874E1FC798E924414E3,
  6020. XmlDeclarationWrapper__ctor_mF51839B7636CC91F7B4CD908F24712F5913A91B4,
  6021. XmlDeclarationWrapper_get_Version_mC27B96780F7D3DBC15F99C3B5CA6EA9EFCF886D1,
  6022. XmlDeclarationWrapper_get_Encoding_m9C4D39FB30B4BC86500C3FF9BDA55D7D46F366FD,
  6023. XmlDeclarationWrapper_get_Standalone_m9053C3695CE2AC72F6D3208665C50C0C3990DB27,
  6024. XmlDocumentTypeWrapper__ctor_m675661950897A7EF2E7EC820E79E337D2B6A307A,
  6025. XmlDocumentTypeWrapper_get_Name_mC58980187B5E95434B85ECD95EF171568E4E4BD2,
  6026. XmlDocumentTypeWrapper_get_System_m460E894C8F7190DAD08B13F6A8A93896843D091A,
  6027. XmlDocumentTypeWrapper_get_Public_m69B583B1E3D79EFCCD38D404B3914C5AD24F798E,
  6028. XmlDocumentTypeWrapper_get_InternalSubset_mA76BFB1D08D2598BAD0E6052B2178ADF68CC1A73,
  6029. XmlDocumentTypeWrapper_get_LocalName_mBF82AB7C08F4A3774E298C130866BDB1ADA3EC10,
  6030. XmlNodeWrapper__ctor_mF3A07DBAE9040226F2311FB40CFC36E3D4A06696,
  6031. XmlNodeWrapper_get_WrappedNode_m468BF37D91C283502A22F72F9E3350069CAC6E2F,
  6032. XmlNodeWrapper_get_NodeType_mB544142E2A3BB418F9CE2633DD6633200EE1F9B2,
  6033. XmlNodeWrapper_get_LocalName_m07335C58A77A9F60FA2FEE2CE7C13C851BA87629,
  6034. XmlNodeWrapper_get_ChildNodes_m8BEC61F5C677651F0824D2187E9CCAA003036E7E,
  6035. XmlNodeWrapper_WrapNode_m9C8EEDA41584745DDCF730EA4D398B7AAA5F8FCA,
  6036. XmlNodeWrapper_get_Attributes_m1B7F1A6A957384108048432F5D29A737985C2272,
  6037. XmlNodeWrapper_get_ParentNode_mA3050973561B78E1A1E351650EA472F9ED9E20E7,
  6038. XmlNodeWrapper_get_Value_m3D4DFCAF37EB795F4DCABFAC1218A0F480524906,
  6039. XmlNodeWrapper_set_Value_mCD70A93D6BB065E22E5B95C595760B1016F50B2B,
  6040. XmlNodeWrapper_AppendChild_m45B56420F35A5551CAA42C7DFDF626CE89D46683,
  6041. XmlNodeWrapper_get_NamespaceUri_mE0FB57B60FABD0803612C8684560DF02E96F0F1E,
  6042. NULL,
  6043. NULL,
  6044. NULL,
  6045. NULL,
  6046. NULL,
  6047. NULL,
  6048. NULL,
  6049. NULL,
  6050. NULL,
  6051. NULL,
  6052. NULL,
  6053. NULL,
  6054. NULL,
  6055. NULL,
  6056. NULL,
  6057. NULL,
  6058. NULL,
  6059. NULL,
  6060. NULL,
  6061. NULL,
  6062. NULL,
  6063. NULL,
  6064. NULL,
  6065. NULL,
  6066. NULL,
  6067. NULL,
  6068. NULL,
  6069. NULL,
  6070. NULL,
  6071. NULL,
  6072. NULL,
  6073. NULL,
  6074. XDeclarationWrapper_get_Declaration_m088E3B9D587EC2B961C88BBBCD117CA6D3103473,
  6075. XDeclarationWrapper_set_Declaration_m5305289F2ADC283784668A45EBC7913CFE934E7C,
  6076. XDeclarationWrapper__ctor_m5476337823DCEF6C0D1DCC41BA6C786135E72990,
  6077. XDeclarationWrapper_get_NodeType_mC15F2E634D67AADA770174144489D861A93C1897,
  6078. XDeclarationWrapper_get_Version_m3D6BD865F8C60D5B752838E5EAC2E3801C25DC48,
  6079. XDeclarationWrapper_get_Encoding_m788BC71AF9869203F0C327FF585E732B39490603,
  6080. XDeclarationWrapper_get_Standalone_m966B714BC3DC532C2C97F825DED9BBB11D85E7ED,
  6081. XDocumentTypeWrapper__ctor_mF9F9FC996AB634DBF2EFE7A0ACBA6AA999BDEE43,
  6082. XDocumentTypeWrapper_get_Name_m3A232C6231506BD90CCB73A374071C995F035DD3,
  6083. XDocumentTypeWrapper_get_System_m5E93715FB3832C0072F3688BFF1A7C8272EA80C8,
  6084. XDocumentTypeWrapper_get_Public_m455E1824FDD949A3960E8A96916B09ABFA4A934C,
  6085. XDocumentTypeWrapper_get_InternalSubset_mF0236A07F12DCF6CDBFBFFDA38EF4FDEA8240C9F,
  6086. XDocumentTypeWrapper_get_LocalName_mC3BE4C76280083229FA8090845C475DC08C76269,
  6087. XDocumentWrapper_get_Document_mE1AA633877F833EE315345BDA7A43D9AE0E25BF2,
  6088. XDocumentWrapper__ctor_mA40162DE79076210B0763CA5CDD39B659106DF94,
  6089. XDocumentWrapper_get_ChildNodes_m0AC7789ADF8A7B1EFE782DBF6765C82EB85EF208,
  6090. XDocumentWrapper_CreateComment_m125FDB57330D1FB34DC22FD189447BECE12726B1,
  6091. XDocumentWrapper_CreateTextNode_mD9D8E117968292CC906E283F4E87D0D0F33F3690,
  6092. XDocumentWrapper_CreateCDataSection_m13DA76ACCBA7EE1FCD61DC549CE152304279B000,
  6093. XDocumentWrapper_CreateWhitespace_mC2AF0455A48DF27A48EA74951A39043B58714703,
  6094. XDocumentWrapper_CreateSignificantWhitespace_m6400B379E64B467598C4B1F70B8BCB2BDB5D9DEC,
  6095. XDocumentWrapper_CreateXmlDeclaration_m262E5F93F4AE30AE0C30467BC833484CEE12083B,
  6096. XDocumentWrapper_CreateXmlDocumentType_mE73AC70E0AD051FF3AC404D5ED1E51720D05454E,
  6097. XDocumentWrapper_CreateProcessingInstruction_mA6E7CD89664A374817D4844193025D6A684C1B35,
  6098. XDocumentWrapper_CreateElement_m1250CF989BD2104C7AABFFB9FCB0CCC280ADD904,
  6099. XDocumentWrapper_CreateElement_m88938EFEAA7D7CDBEBC41DC9B58860903CECAA51,
  6100. XDocumentWrapper_CreateAttribute_m0A865E5434FC7E64282BD8EC76E6E11DC89F91A8,
  6101. XDocumentWrapper_CreateAttribute_mB35C555656C8A8ABD9D22B2C466D18D03DFCF18D,
  6102. XDocumentWrapper_get_DocumentElement_m591D5698B2327C29DAD0EF27C497CF27E794EFF2,
  6103. XDocumentWrapper_AppendChild_mB24309C6F7776071A64655A28E638086C4626643,
  6104. XTextWrapper_get_Text_m5152221B428C9A12FEF884ED78118A3138761F8C,
  6105. XTextWrapper__ctor_mA04D7C89E83FB85B01CA8A2411408841939FE577,
  6106. XTextWrapper_get_Value_m0516F61AACA331543D921AF0F015D942C17CA263,
  6107. XTextWrapper_get_ParentNode_m7BA2502A74F9A8D7F33736CDDF09C563AC953F11,
  6108. XCommentWrapper_get_Text_m6C168F8D8C3061B0B25AE417A4142EABC1AB2F6D,
  6109. XCommentWrapper__ctor_mD4DF06F04148974F33593A10FBB4F1C0C32F5630,
  6110. XCommentWrapper_get_Value_mA5BA32AB679C7D6499F9BE58B9C9098E7B4CAFAD,
  6111. XCommentWrapper_get_ParentNode_m0B07C96052B20C7637DE326CFF1F65FE90A864AD,
  6112. XProcessingInstructionWrapper_get_ProcessingInstruction_m3EF82506DA30263EDCA9D7BE137A94F61521A916,
  6113. XProcessingInstructionWrapper__ctor_m87935CB1DC84DCDB5234365EE1B470EA363793F0,
  6114. XProcessingInstructionWrapper_get_LocalName_m306C1AB91F82384AB6C88B4C4747405737916CDC,
  6115. XProcessingInstructionWrapper_get_Value_mAF77DC7E660432671EC5833B6FC7D3C75E972BC5,
  6116. XContainerWrapper_get_Container_m3CBDD0A73C1AE4001ABAFA3D8119A8AF2F5EFCCA,
  6117. XContainerWrapper__ctor_m0ADFCE10024526AFA62F73D498ADCAA302BF8832,
  6118. XContainerWrapper_get_ChildNodes_m8777D68C8963F8EBD3BB056BB2242271099C8B2E,
  6119. XContainerWrapper_get_ParentNode_m2B0B5BFDF8CCA35729241D051FBD2446960E2418,
  6120. XContainerWrapper_WrapNode_mAD43B0CCDC5EE7EE828238A1C40203BAC1999858,
  6121. XContainerWrapper_AppendChild_m5970EF8979BC3561C2350E5A812DEFB6198AFDEA,
  6122. XObjectWrapper__ctor_m96912D39CD6E1F067BB445824DF4941C4CD1F377,
  6123. XObjectWrapper_get_WrappedNode_m39F13F6851B25D19B29470ABFF655450E529E06F,
  6124. XObjectWrapper_get_NodeType_m9195903688F1E5CAF8468FE9DABA4EA8CC9B6847,
  6125. XObjectWrapper_get_LocalName_m7129F23747D5C3C6489FA1C32883992FD5A092A8,
  6126. XObjectWrapper_get_ChildNodes_m2F2AB7F31EED1F5B0B81EA29607E1F96C7A8B6A7,
  6127. XObjectWrapper_get_Attributes_mD1AC0774C8BE8F69E8E7B94F82F0F9EA4DFA2699,
  6128. XObjectWrapper_get_ParentNode_mB9AEE35EDB01942CA9C4CE3A2B0D7864C14518AB,
  6129. XObjectWrapper_get_Value_mF318316589D4B5481EA375338C52BC2BF2A005B9,
  6130. XObjectWrapper_AppendChild_m14A2F44F8DDFC2F9AB76683E88A8390A3675BA30,
  6131. XObjectWrapper_get_NamespaceUri_mC93AE9F044CBA6FBDA8A61B4C37B44E4B88FBE87,
  6132. XObjectWrapper__cctor_mF74BDF7A010A5A6930BD20E18268280C4A24D6A5,
  6133. XAttributeWrapper_get_Attribute_m4F0DEDBEE7283F7C7D77C383040AAE807E3C3409,
  6134. XAttributeWrapper__ctor_m31D76E884C584D16FC5D38578A03A434F1B088F9,
  6135. XAttributeWrapper_get_Value_mA31B4F2B53B410865754B0F787CEF26DDCA3D8F0,
  6136. XAttributeWrapper_get_LocalName_m7FB13F834AC9586CBE5D534588A9A3D807243F0D,
  6137. XAttributeWrapper_get_NamespaceUri_m62127C9CFAA86B4FE8570C359B23B8DBDDF61295,
  6138. XAttributeWrapper_get_ParentNode_m4AEAFA39D14653A50EBD0876AB2B7758148DB05D,
  6139. XElementWrapper_get_Element_m5D69CF460EB55358B93E21DF8EDF6BD6BC35350A,
  6140. XElementWrapper__ctor_mEDAB7607CA915010D73C9FAC87EA4F81F540E245,
  6141. XElementWrapper_SetAttributeNode_m3933671A016B70A9FF47C224F00E3B5045FE885D,
  6142. XElementWrapper_get_Attributes_mDCF98CCE573F3B2EA44155F405B88931FC7A6BE9,
  6143. XElementWrapper_AppendChild_m978842307398B2C56916D21ACD3F0CBB423F7E1C,
  6144. XElementWrapper_get_Value_mCDC09A1B4B83E4CF18068E2208DE7516A6EAC9A0,
  6145. XElementWrapper_get_LocalName_m6447DE23B0FC1D8473851D27459398710C5E60B0,
  6146. XElementWrapper_get_NamespaceUri_m190AF0E71CD916A3FEE00790B2B3A4B44D170DA2,
  6147. XElementWrapper_GetPrefixOfNamespace_m8FC08AD41E95D9FE7E2AFD89E6E2E37C26778B47,
  6148. XElementWrapper_get_IsEmpty_m79037FACA97313E7DE13786A930D4174CE232EAC,
  6149. XmlNodeConverter_get_DeserializeRootElementName_mDA30476EE8892D07632EA2F0F539C3ADCFA6941B,
  6150. XmlNodeConverter_get_WriteArrayAttribute_m737D25004BAAC5C68D03F87F86059CAB60797492,
  6151. XmlNodeConverter_get_OmitRootObject_m71C19A6DA6F893636A53CF6948C52D8202A02777,
  6152. XmlNodeConverter_WriteJson_mBA4C1C5629BE8E9842D5F523725653AD73DDCCF1,
  6153. XmlNodeConverter_WrapXml_m9238ECF3CD30390AC439D19AB9C2196A50DCC958,
  6154. XmlNodeConverter_PushParentNamespaces_m25F988DD210146A905B2FA5956E59EE40690BF54,
  6155. XmlNodeConverter_ResolveFullName_m8B92406BC8C58037E38BA681AECBCE629122077A,
  6156. XmlNodeConverter_GetPropertyName_m5ED274786E622F7E388B1584E10A244D603566C8,
  6157. XmlNodeConverter_IsArray_m93723C11D532EF6336B23994E93716222F62F1B2,
  6158. XmlNodeConverter_SerializeGroupedNodes_m7D23D156820BED141CACCDAD5E023E341E58D01F,
  6159. XmlNodeConverter_SerializeNode_mA16FD9512F38FD47692BCE048B7601D422BCF86F,
  6160. XmlNodeConverter_AllSameName_mDA7292F44F9990C0BCDB3C6F7AD52B361BB00F5A,
  6161. XmlNodeConverter_ReadJson_mBA8C5D49BBC513A9093FFE24EE5018EC9E21B92C,
  6162. XmlNodeConverter_DeserializeValue_m5114B5035FE4916621192D58B721D69B0F226615,
  6163. XmlNodeConverter_ReadElement_m14BFF3357B1B67E3B60276F10BC670C73F0E0E7E,
  6164. XmlNodeConverter_CreateElement_m7B2ECDAC03912A479C0825975BE1E70980B96476,
  6165. XmlNodeConverter_AddAttribute_m08696847E6BA459979494E83D903610C8C6A1001,
  6166. XmlNodeConverter_ConvertTokenToXmlValue_mEB28669007B09004326F17C12836C2D58DD9F8D4,
  6167. XmlNodeConverter_ReadArrayElements_m9235C29CFD056C5F4B009894EF2079B0D56B0F4C,
  6168. XmlNodeConverter_AddJsonArrayAttribute_m9923000AAA706CC8E084166834FDD52BBBC517AA,
  6169. XmlNodeConverter_ReadAttributeElements_mBA641B6BABCC34A71351249DF70FDBC55E0CEFD1,
  6170. XmlNodeConverter_CreateInstruction_mD86936DAEF4F1C1E8A7060FB2AC6F2DA69CF4BDB,
  6171. XmlNodeConverter_CreateDocumentType_m2E978CCD06BAA7BA15D46ED2FB7AE16EAC53EC48,
  6172. XmlNodeConverter_CreateElement_mE4370B24C648A67DC66876B51D023A6BD5F504DF,
  6173. XmlNodeConverter_DeserializeNode_m368070E70936DF7E2ECE03D597466948B2EFC97E,
  6174. XmlNodeConverter_IsNamespaceAttribute_mB7B15524CE1CEF49989BEAC2FBAB12030D788F33,
  6175. XmlNodeConverter_ValueAttributes_m186E6DC3376890B15F11882CEE0B5227966B1764,
  6176. XmlNodeConverter_CanConvert_m1BE9B59CABD7F782B6EC2281C0DFBB6ACA5518E6,
  6177. XmlNodeConverter__ctor_mAC1F1A4A0736AD126AF65B5092ACF5CFD31DF1D7,
  6178. BsonBinaryWriter__cctor_m07911344800C9E35A88D5AE60B7E4D70DFE30499,
  6179. BsonReader_get_DateTimeKindHandling_m0595AA06CB4A94E0D2AFDE6446AC6EAE2AC4AE2E,
  6180. BsonReader_ReadElement_mDE4AFF9D407EE51432F283D9B375B024416F80B5,
  6181. BsonReader_Read_mB388663F878286E48CF800AE33C4EF5A75391F79,
  6182. BsonReader_ReadCodeWScope_m2CA16ABE57A2F7CE5E479814D8C640426783A7CF,
  6183. BsonReader_ReadReference_m64E7F080D2601F94D8F9294D3E1D05DA9752D0ED,
  6184. BsonReader_ReadNormal_m0F00D91FFF132C13D92D98BE4D075C627986506E,
  6185. BsonReader_PopContext_mBF6B48A8E75C1BB4887F36B6C29F33AA309EBD7A,
  6186. BsonReader_PushContext_m1D34A43D6E844F80C6818C3AECF45D711D69A432,
  6187. BsonReader_ReadByte_mFFECD2A9F76B48A7187D309AB4C5FD74314B62E2,
  6188. BsonReader_ReadType_m2936A16744BE5816700C3EC1597F305AB480F60D,
  6189. BsonReader_ReadBinary_m9CB4263EB40B9F18E509203097756E2AC98858F8,
  6190. BsonReader_ReadString_m19AD6F229CE098C85AB38B5AAD4A5A1FD516D328,
  6191. BsonReader_ReadLengthString_mB37FFA27CF516253BE556AF33F0BF7A29B537D42,
  6192. BsonReader_GetString_mF0D9F9A653BC0DA9C1664231967C83998C8039F3,
  6193. BsonReader_GetLastFullCharStop_m0AFEE15BEEA99A8B82C9717E52286D212D4C86A6,
  6194. BsonReader_BytesInSequence_m8A3C2B3E9BA7F5EB7EF9E750F26BBA272F57834B,
  6195. BsonReader_EnsureBuffers_m9164C7E6A3B5B82E232AE5B1792067AD0AE3999A,
  6196. BsonReader_ReadDouble_mBF56F4DE96244EFB1B8023A888CA1282F9CD59A5,
  6197. BsonReader_ReadInt32_mA95E701304583AB80CAE34F30467740FFBE5652C,
  6198. BsonReader_ReadInt64_mD603BF08D9B3BAA9B34D89F2C87BB27E903B9ADD,
  6199. BsonReader_ReadType_mCE638142C2694B12143F44909A3DB0437057F59A,
  6200. BsonReader_MovePosition_m0726085A8E52CF88744910114579E11ACE7F1B4E,
  6201. BsonReader_ReadBytes_mB38AA084F3273E5B859330EA3B22F24BD24CC7A1,
  6202. BsonReader__cctor_m1DA0AE3C79441D1EAD760C271A1BD38684DD6352,
  6203. ContainerContext__ctor_mF86EB449E15CDE1475F14AED4BAB8ED211B11538,
  6204. NULL,
  6205. BsonToken_set_Parent_mF1903E757DE89AD31D0FA3A5F7253E520DBA4F5D,
  6206. BsonToken__ctor_m4F48E98A0D8935D035B1F89F16D5D2AF715D0341,
  6207. BsonObject_Add_m41EE6341357A27F19CBD978A94A87613FD94AF9D,
  6208. BsonObject_get_Type_m2299266669BB373185FA94AD969EAD340A3CC20E,
  6209. BsonObject_GetEnumerator_m686F0934D72BAE348298C1A05DCE7F9E32B27574,
  6210. BsonObject_System_Collections_IEnumerable_GetEnumerator_m4AEBE8D9E4ADE694D3BFCE4DE8BAB983B1CB0CD7,
  6211. BsonObject__ctor_m21D635FB8188D3B4ACBB55E41A21F09A2AC869A2,
  6212. BsonArray_Add_m9034C3D51CCA2A743265F8A102F3F5B3480899AA,
  6213. BsonArray_get_Type_m1ED8769B228EED6CB2F7465021772208C58264BD,
  6214. BsonArray_GetEnumerator_m429FEA714DAE5447F8C936E9C8D7A57E307A47D5,
  6215. BsonArray_System_Collections_IEnumerable_GetEnumerator_mA452F4368F9F4E5D995860EA54A1BB3A91CA86F2,
  6216. BsonArray__ctor_m026B7ED6AFF18F3675FB04D27C5DBA2F29606536,
  6217. BsonValue__ctor_mAC6CDAE3CEE5F862A67FC78A2A8380EE22289C1A,
  6218. BsonValue_get_Type_mEEDA7D6AEE0F6D370403469B24BAFF4870BCC47F,
  6219. BsonString_set_IncludeLength_m9E75114EFC4A6989393AD0E192195472E2F51DC0,
  6220. BsonString__ctor_m5C4541C59E36837AE0722E26E54FA5CD4BB6CABD,
  6221. BsonRegex_set_Pattern_mB160A3C21D060ADEA41779C1FD8C9FF7A2548B0D,
  6222. BsonRegex_set_Options_m5DE974D5ED8494B152F0299FDCD84BC9A9901B3E,
  6223. BsonRegex__ctor_mC924041903F75D3CA82ED0FB39F5D439B481F886,
  6224. BsonRegex_get_Type_mDFDC57B2544A90E9CC1879CE497E01582FACACC5,
  6225. BsonProperty_set_Name_mF1364B61018186F132F7F955E7A3853660A02BDA,
  6226. BsonProperty_set_Value_m36476CB085BE55F31E9684DE24C78493D5565FF8,
  6227. BsonProperty__ctor_mA8269DDEE08A8D0120B2547DA7D26612D610A45B,
  6228. BsonWriter_AddValue_m1DCA23DE9224556C8D41EB982C752431F620C30B,
  6229. BsonWriter_AddToken_m859593957914774D110851593E2D3798C1D5B3DB,
  6230. BsonWriter_WriteObjectId_m0D1E76B8032B120826F272DB2B0949217378DBC6,
  6231. BsonWriter_WriteRegex_mCB617628EA81B2B20BCD49E3C350B26B18E4535B,
  6232. BsonObjectId_get_Value_m4A41850BE695F6CE832434CC5D2680BF05B97225,
  6233. BsonObjectId_set_Value_m6C376E02BB87D4A0E326085EF3E122F03FCF1D69,
  6234. BsonObjectId__ctor_mB846236CBD08D1F914E5B8248C50E0CAB10930E9,
  6235. };
  6236. extern void JsonPosition__ctor_m4868A41B46D621B1AE7623D78E06D597F6927676_AdjustorThunk (void);
  6237. extern void JsonPosition_CalculateLength_m96F71F2F79B8364BFA0C784570D6CE772D156844_AdjustorThunk (void);
  6238. extern void JsonPosition_WriteTo_m6A3A496BA745EE52275BE810800B17DAB2B79140_AdjustorThunk (void);
  6239. extern void DateTimeParser_Parse_m19153DE29C9BFA6EEE75C87F50E857EA2EEB12F0_AdjustorThunk (void);
  6240. extern void DateTimeParser_ParseDate_mD991BBF95D49CDBD82809A52A9997C631781FB9E_AdjustorThunk (void);
  6241. extern void DateTimeParser_ParseTimeAndZoneAndWhitespace_m1E4EC8F64D029698F37D009AC5A60E92A024ACF0_AdjustorThunk (void);
  6242. extern void DateTimeParser_ParseTime_m4A5ADC9B09ACE044223CB8BED1393B853F5AEA71_AdjustorThunk (void);
  6243. extern void DateTimeParser_ParseZone_m9E38ED674C6FDE851784C5CE5455BECCDADEB43C_AdjustorThunk (void);
  6244. extern void DateTimeParser_Parse4Digit_m448AA776A3869D29D689B3593A67AE7388536658_AdjustorThunk (void);
  6245. extern void DateTimeParser_Parse2Digit_m05E9CA2B2F3EBA8DCA5BD96304BFECF2ADE228B6_AdjustorThunk (void);
  6246. extern void DateTimeParser_ParseChar_m3D13D60FEED649629F61D7F98E6D6306815B23CF_AdjustorThunk (void);
  6247. extern void StringReference_get_Item_mCC414598F34A78B379103674D338A77EA6136E83_AdjustorThunk (void);
  6248. extern void StringReference_get_Chars_m020702CA028004E195E6E0002693F1DB29042EAD_AdjustorThunk (void);
  6249. extern void StringReference_get_StartIndex_m727F6D326DD23296FA4DDAFDF36625384ECEC40B_AdjustorThunk (void);
  6250. extern void StringReference_get_Length_m0DEC973AB0ADF3CF947C80924F1BF348FBE5C204_AdjustorThunk (void);
  6251. extern void StringReference__ctor_m01DDD5ECD8174F6669AAE9F63E50131B36E68A6F_AdjustorThunk (void);
  6252. extern void StringReference_ToString_m2547C9D86B566C13C2FB5483B3FFD878B37F9A91_AdjustorThunk (void);
  6253. extern void TypeConvertKey_get_InitialType_m2672D4C423F105D7036F00FCF1A8C9FF7141292D_AdjustorThunk (void);
  6254. extern void TypeConvertKey_get_TargetType_m42A90982418CA92A7CC99C23007A9F0A8D9353C4_AdjustorThunk (void);
  6255. extern void TypeConvertKey__ctor_mE7D0FEEB17A875CA3F8E0180A6E2F811F076097E_AdjustorThunk (void);
  6256. extern void TypeConvertKey_GetHashCode_m53EEF50076A23F2DD2069C13D70FE12480A72EC6_AdjustorThunk (void);
  6257. extern void TypeConvertKey_Equals_mBEC43674C2C9C1B78030AD4CC1715062E0DD09CC_AdjustorThunk (void);
  6258. extern void TypeConvertKey_Equals_mCFB617A4360BB185698B4EC5B25BEC2BD0876D79_AdjustorThunk (void);
  6259. extern void StringBuffer_get_Position_m50180D85B49F259316CFFA19E69FAC2DFEE07E1A_AdjustorThunk (void);
  6260. extern void StringBuffer_set_Position_m9EAB48EB3E1072B0C51957B5B57534A47936B6F0_AdjustorThunk (void);
  6261. extern void StringBuffer_get_IsEmpty_mA9327C7B60B8C4EABD2FA9855F915B21B3E1826A_AdjustorThunk (void);
  6262. extern void StringBuffer__ctor_m08F0B2D8BB62799D7A9F96A04B8B558A8C870BF7_AdjustorThunk (void);
  6263. extern void StringBuffer__ctor_m44E883E835181DBEF9FA86E3294D91042A914544_AdjustorThunk (void);
  6264. extern void StringBuffer_Append_mEB587A612A423C0EEA858CF2F855623B6CFAAD6C_AdjustorThunk (void);
  6265. extern void StringBuffer_Append_mB7D099F26B74FF44D0062E65145EC09AAA68C582_AdjustorThunk (void);
  6266. extern void StringBuffer_Clear_m16AE9943CA16BE8D3F273FF14AAAF90DA2333DC6_AdjustorThunk (void);
  6267. extern void StringBuffer_EnsureSize_mFC7C6C8641DA97CA1E33FEFA3E2356BEE2A38CE7_AdjustorThunk (void);
  6268. extern void StringBuffer_ToString_mB30A25624FBAFD98074B4A62E17FF44026FB6A2F_AdjustorThunk (void);
  6269. extern void StringBuffer_ToString_mE358A765D39BC6A53424A5E24CFC95B0E1440A0F_AdjustorThunk (void);
  6270. extern void StringBuffer_get_InternalBuffer_mF2FB70B40A70E2D2ABE71242031EE4AB957D41C1_AdjustorThunk (void);
  6271. extern void ResolverContractKey__ctor_m968636309AE4253BA8F077FF7ECB81DF1AF084EB_AdjustorThunk (void);
  6272. extern void ResolverContractKey_GetHashCode_mD441ABBFA2338FEDF3997A3AA948F21BD49F42F2_AdjustorThunk (void);
  6273. extern void ResolverContractKey_Equals_m0E63CED51A9B59D23AA8EDFD3B968923D925D8FE_AdjustorThunk (void);
  6274. extern void ResolverContractKey_Equals_m46DB921C8C1F68636C1726443195B8525F686A86_AdjustorThunk (void);
  6275. extern void TypeNameKey__ctor_mD4B4C258C07B7B90E3DF9FF8E544F235DEF91414_AdjustorThunk (void);
  6276. extern void TypeNameKey_GetHashCode_m39B4CC4974DA019307688EB5C98DF95C979DE6DB_AdjustorThunk (void);
  6277. extern void TypeNameKey_Equals_mA8F9631B58F24FA621BC3773D773F504CD394476_AdjustorThunk (void);
  6278. extern void TypeNameKey_Equals_mF640FAB58FACF8E193583786EE162430F96E7037_AdjustorThunk (void);
  6279. static Il2CppTokenAdjustorThunkPair s_adjustorThunks[43] =
  6280. {
  6281. { 0x06000018, JsonPosition__ctor_m4868A41B46D621B1AE7623D78E06D597F6927676_AdjustorThunk },
  6282. { 0x06000019, JsonPosition_CalculateLength_m96F71F2F79B8364BFA0C784570D6CE772D156844_AdjustorThunk },
  6283. { 0x0600001A, JsonPosition_WriteTo_m6A3A496BA745EE52275BE810800B17DAB2B79140_AdjustorThunk },
  6284. { 0x060001BF, DateTimeParser_Parse_m19153DE29C9BFA6EEE75C87F50E857EA2EEB12F0_AdjustorThunk },
  6285. { 0x060001C0, DateTimeParser_ParseDate_mD991BBF95D49CDBD82809A52A9997C631781FB9E_AdjustorThunk },
  6286. { 0x060001C1, DateTimeParser_ParseTimeAndZoneAndWhitespace_m1E4EC8F64D029698F37D009AC5A60E92A024ACF0_AdjustorThunk },
  6287. { 0x060001C2, DateTimeParser_ParseTime_m4A5ADC9B09ACE044223CB8BED1393B853F5AEA71_AdjustorThunk },
  6288. { 0x060001C3, DateTimeParser_ParseZone_m9E38ED674C6FDE851784C5CE5455BECCDADEB43C_AdjustorThunk },
  6289. { 0x060001C4, DateTimeParser_Parse4Digit_m448AA776A3869D29D689B3593A67AE7388536658_AdjustorThunk },
  6290. { 0x060001C5, DateTimeParser_Parse2Digit_m05E9CA2B2F3EBA8DCA5BD96304BFECF2ADE228B6_AdjustorThunk },
  6291. { 0x060001C6, DateTimeParser_ParseChar_m3D13D60FEED649629F61D7F98E6D6306815B23CF_AdjustorThunk },
  6292. { 0x06000212, StringReference_get_Item_mCC414598F34A78B379103674D338A77EA6136E83_AdjustorThunk },
  6293. { 0x06000213, StringReference_get_Chars_m020702CA028004E195E6E0002693F1DB29042EAD_AdjustorThunk },
  6294. { 0x06000214, StringReference_get_StartIndex_m727F6D326DD23296FA4DDAFDF36625384ECEC40B_AdjustorThunk },
  6295. { 0x06000215, StringReference_get_Length_m0DEC973AB0ADF3CF947C80924F1BF348FBE5C204_AdjustorThunk },
  6296. { 0x06000216, StringReference__ctor_m01DDD5ECD8174F6669AAE9F63E50131B36E68A6F_AdjustorThunk },
  6297. { 0x06000217, StringReference_ToString_m2547C9D86B566C13C2FB5483B3FFD878B37F9A91_AdjustorThunk },
  6298. { 0x0600023C, TypeConvertKey_get_InitialType_m2672D4C423F105D7036F00FCF1A8C9FF7141292D_AdjustorThunk },
  6299. { 0x0600023D, TypeConvertKey_get_TargetType_m42A90982418CA92A7CC99C23007A9F0A8D9353C4_AdjustorThunk },
  6300. { 0x0600023E, TypeConvertKey__ctor_mE7D0FEEB17A875CA3F8E0180A6E2F811F076097E_AdjustorThunk },
  6301. { 0x0600023F, TypeConvertKey_GetHashCode_m53EEF50076A23F2DD2069C13D70FE12480A72EC6_AdjustorThunk },
  6302. { 0x06000240, TypeConvertKey_Equals_mBEC43674C2C9C1B78030AD4CC1715062E0DD09CC_AdjustorThunk },
  6303. { 0x06000241, TypeConvertKey_Equals_mCFB617A4360BB185698B4EC5B25BEC2BD0876D79_AdjustorThunk },
  6304. { 0x060002BB, StringBuffer_get_Position_m50180D85B49F259316CFFA19E69FAC2DFEE07E1A_AdjustorThunk },
  6305. { 0x060002BC, StringBuffer_set_Position_m9EAB48EB3E1072B0C51957B5B57534A47936B6F0_AdjustorThunk },
  6306. { 0x060002BD, StringBuffer_get_IsEmpty_mA9327C7B60B8C4EABD2FA9855F915B21B3E1826A_AdjustorThunk },
  6307. { 0x060002BE, StringBuffer__ctor_m08F0B2D8BB62799D7A9F96A04B8B558A8C870BF7_AdjustorThunk },
  6308. { 0x060002BF, StringBuffer__ctor_m44E883E835181DBEF9FA86E3294D91042A914544_AdjustorThunk },
  6309. { 0x060002C0, StringBuffer_Append_mEB587A612A423C0EEA858CF2F855623B6CFAAD6C_AdjustorThunk },
  6310. { 0x060002C1, StringBuffer_Append_mB7D099F26B74FF44D0062E65145EC09AAA68C582_AdjustorThunk },
  6311. { 0x060002C2, StringBuffer_Clear_m16AE9943CA16BE8D3F273FF14AAAF90DA2333DC6_AdjustorThunk },
  6312. { 0x060002C3, StringBuffer_EnsureSize_mFC7C6C8641DA97CA1E33FEFA3E2356BEE2A38CE7_AdjustorThunk },
  6313. { 0x060002C4, StringBuffer_ToString_mB30A25624FBAFD98074B4A62E17FF44026FB6A2F_AdjustorThunk },
  6314. { 0x060002C5, StringBuffer_ToString_mE358A765D39BC6A53424A5E24CFC95B0E1440A0F_AdjustorThunk },
  6315. { 0x060002C6, StringBuffer_get_InternalBuffer_mF2FB70B40A70E2D2ABE71242031EE4AB957D41C1_AdjustorThunk },
  6316. { 0x060003A5, ResolverContractKey__ctor_m968636309AE4253BA8F077FF7ECB81DF1AF084EB_AdjustorThunk },
  6317. { 0x060003A6, ResolverContractKey_GetHashCode_mD441ABBFA2338FEDF3997A3AA948F21BD49F42F2_AdjustorThunk },
  6318. { 0x060003A7, ResolverContractKey_Equals_m0E63CED51A9B59D23AA8EDFD3B968923D925D8FE_AdjustorThunk },
  6319. { 0x060003A8, ResolverContractKey_Equals_m46DB921C8C1F68636C1726443195B8525F686A86_AdjustorThunk },
  6320. { 0x060003FB, TypeNameKey__ctor_mD4B4C258C07B7B90E3DF9FF8E544F235DEF91414_AdjustorThunk },
  6321. { 0x060003FC, TypeNameKey_GetHashCode_m39B4CC4974DA019307688EB5C98DF95C979DE6DB_AdjustorThunk },
  6322. { 0x060003FD, TypeNameKey_Equals_mA8F9631B58F24FA621BC3773D773F504CD394476_AdjustorThunk },
  6323. { 0x060003FE, TypeNameKey_Equals_mF640FAB58FACF8E193583786EE162430F96E7037_AdjustorThunk },
  6324. };
  6325. static const int32_t s_InvokerIndices[2153] =
  6326. {
  6327. 8496,
  6328. 8589,
  6329. 4427,
  6330. 4431,
  6331. 4427,
  6332. 4431,
  6333. 7394,
  6334. 7394,
  6335. 4427,
  6336. 4431,
  6337. -1,
  6338. -1,
  6339. 8589,
  6340. 8589,
  6341. 8589,
  6342. 7394,
  6343. 4431,
  6344. 4440,
  6345. 8543,
  6346. 7434,
  6347. 8543,
  6348. 7434,
  6349. 8589,
  6350. 7369,
  6351. 8467,
  6352. 7394,
  6353. 14413,
  6354. 12525,
  6355. 10679,
  6356. 14700,
  6357. 8589,
  6358. 8543,
  6359. 8467,
  6360. 8467,
  6361. 8589,
  6362. 8496,
  6363. 8496,
  6364. 8589,
  6365. 8496,
  6366. 8496,
  6367. 8467,
  6368. 8589,
  6369. 8467,
  6370. 8467,
  6371. 8467,
  6372. 8467,
  6373. 8467,
  6374. 8496,
  6375. 7394,
  6376. 8467,
  6377. 8467,
  6378. 8467,
  6379. 8467,
  6380. 8467,
  6381. 8496,
  6382. 8496,
  6383. 8496,
  6384. 8496,
  6385. 8496,
  6386. 8496,
  6387. 8552,
  6388. 14700,
  6389. 8589,
  6390. 8589,
  6391. 7394,
  6392. 8589,
  6393. 7369,
  6394. 3872,
  6395. 9704,
  6396. 8589,
  6397. 5669,
  6398. 3418,
  6399. 3622,
  6400. 3622,
  6401. 8543,
  6402. 8100,
  6403. 8093,
  6404. 8496,
  6405. 8496,
  6406. 5817,
  6407. 5816,
  6408. 8092,
  6409. 8589,
  6410. 5817,
  6411. 8094,
  6412. 8095,
  6413. 8098,
  6414. 8589,
  6415. 8589,
  6416. 8543,
  6417. 8589,
  6418. 7368,
  6419. 1832,
  6420. 8466,
  6421. 8589,
  6422. 8589,
  6423. 8543,
  6424. 8543,
  6425. 8543,
  6426. 6532,
  6427. 8589,
  6428. 8543,
  6429. 8589,
  6430. 7434,
  6431. 6607,
  6432. 8589,
  6433. 7369,
  6434. 7434,
  6435. 2982,
  6436. 6565,
  6437. 6565,
  6438. 6532,
  6439. 8589,
  6440. 8589,
  6441. 8589,
  6442. 8589,
  6443. 5817,
  6444. 5817,
  6445. 5817,
  6446. 8589,
  6447. 8543,
  6448. 8467,
  6449. 8467,
  6450. 8496,
  6451. 8496,
  6452. 8496,
  6453. 8589,
  6454. 8589,
  6455. 8496,
  6456. 8466,
  6457. 7394,
  6458. 8589,
  6459. 8589,
  6460. 8589,
  6461. 7394,
  6462. 7369,
  6463. 7394,
  6464. 4438,
  6465. 8589,
  6466. 8589,
  6467. 8589,
  6468. 8589,
  6469. 8589,
  6470. 4425,
  6471. 7394,
  6472. 8589,
  6473. 8589,
  6474. 7394,
  6475. 7394,
  6476. 4438,
  6477. 7369,
  6478. 7369,
  6479. 7370,
  6480. 7370,
  6481. 7440,
  6482. 7021,
  6483. 7316,
  6484. 7000,
  6485. 7434,
  6486. 7368,
  6487. 7368,
  6488. 7368,
  6489. 7434,
  6490. 7434,
  6491. 7313,
  6492. 7311,
  6493. 7394,
  6494. 7312,
  6495. 7340,
  6496. 7461,
  6497. 7394,
  6498. 7394,
  6499. 8589,
  6500. 7370,
  6501. 7370,
  6502. 7394,
  6503. 8589,
  6504. 4440,
  6505. 2938,
  6506. 10679,
  6507. 10679,
  6508. 7369,
  6509. 7369,
  6510. 7394,
  6511. 8589,
  6512. 4440,
  6513. 838,
  6514. 12540,
  6515. 10679,
  6516. 10027,
  6517. 2938,
  6518. 1025,
  6519. 6565,
  6520. 8543,
  6521. 8543,
  6522. 8589,
  6523. 8589,
  6524. 8467,
  6525. 8543,
  6526. 7434,
  6527. 8543,
  6528. 7434,
  6529. 8467,
  6530. 7369,
  6531. 8467,
  6532. 7369,
  6533. 8467,
  6534. 7369,
  6535. 8496,
  6536. 7394,
  6537. 8100,
  6538. 7003,
  6539. 8467,
  6540. 8496,
  6541. 8496,
  6542. 8467,
  6543. 8496,
  6544. 8496,
  6545. 7394,
  6546. 5761,
  6547. 8589,
  6548. 7369,
  6549. 8467,
  6550. 8467,
  6551. 8543,
  6552. 8100,
  6553. 4806,
  6554. 8496,
  6555. 8496,
  6556. 8496,
  6557. 8098,
  6558. 4805,
  6559. 8092,
  6560. 4801,
  6561. 8095,
  6562. 4804,
  6563. 8093,
  6564. 4802,
  6565. 8094,
  6566. 4803,
  6567. 8589,
  6568. 8496,
  6569. 8589,
  6570. 8589,
  6571. 7369,
  6572. 4264,
  6573. 1880,
  6574. 7434,
  6575. 8589,
  6576. 7369,
  6577. 8589,
  6578. 8589,
  6579. 5618,
  6580. 8589,
  6581. 7434,
  6582. 8589,
  6583. 8589,
  6584. 8543,
  6585. 8543,
  6586. 8467,
  6587. 14676,
  6588. 14512,
  6589. 14700,
  6590. 14676,
  6591. 14373,
  6592. 14361,
  6593. 10076,
  6594. 9439,
  6595. 9942,
  6596. 12507,
  6597. 14365,
  6598. 14355,
  6599. 14365,
  6600. 12534,
  6601. 10668,
  6602. 14365,
  6603. 12540,
  6604. 10679,
  6605. 10679,
  6606. 12540,
  6607. -1,
  6608. -1,
  6609. -1,
  6610. 10679,
  6611. 10679,
  6612. 8589,
  6613. 7394,
  6614. 4431,
  6615. 4440,
  6616. 12540,
  6617. 10679,
  6618. 10027,
  6619. 7394,
  6620. 7394,
  6621. 7394,
  6622. 7394,
  6623. 8496,
  6624. 7394,
  6625. 7394,
  6626. 7369,
  6627. 7369,
  6628. 7369,
  6629. 7369,
  6630. 7369,
  6631. 7369,
  6632. 7369,
  6633. 8467,
  6634. 7369,
  6635. 7369,
  6636. 8467,
  6637. 7369,
  6638. 8496,
  6639. 8496,
  6640. 7394,
  6641. 8552,
  6642. 7443,
  6643. 8467,
  6644. 8543,
  6645. 7434,
  6646. 8543,
  6647. 8589,
  6648. 14676,
  6649. 14365,
  6650. 14676,
  6651. 14365,
  6652. 13158,
  6653. 4431,
  6654. 4431,
  6655. -1,
  6656. 3503,
  6657. 3503,
  6658. 288,
  6659. 302,
  6660. 2938,
  6661. 4431,
  6662. 2938,
  6663. 8496,
  6664. 5822,
  6665. 12540,
  6666. 7394,
  6667. 14676,
  6668. 14700,
  6669. 8543,
  6670. 7434,
  6671. 8467,
  6672. 8467,
  6673. 8496,
  6674. 8496,
  6675. 8467,
  6676. 7369,
  6677. 8467,
  6678. 7369,
  6679. 8467,
  6680. 7369,
  6681. 8467,
  6682. 7369,
  6683. 8589,
  6684. 8467,
  6685. 7369,
  6686. 8496,
  6687. 7394,
  6688. 8496,
  6689. 7394,
  6690. 8589,
  6691. 8589,
  6692. 7369,
  6693. 8467,
  6694. 8467,
  6695. 8589,
  6696. 8589,
  6697. 8589,
  6698. 8589,
  6699. 8589,
  6700. 7394,
  6701. 8589,
  6702. 7394,
  6703. 4438,
  6704. 8589,
  6705. 7394,
  6706. 4438,
  6707. 4264,
  6708. 1403,
  6709. 7394,
  6710. 7369,
  6711. 8589,
  6712. 5618,
  6713. 7369,
  6714. 7369,
  6715. 8589,
  6716. 8589,
  6717. 8589,
  6718. 7369,
  6719. 8589,
  6720. 8589,
  6721. 7394,
  6722. 7394,
  6723. 7394,
  6724. 7369,
  6725. 7369,
  6726. 7370,
  6727. 7370,
  6728. 7440,
  6729. 7316,
  6730. 7434,
  6731. 7368,
  6732. 7368,
  6733. 7368,
  6734. 7434,
  6735. 7434,
  6736. 7313,
  6737. 7311,
  6738. 7312,
  6739. 7340,
  6740. 7461,
  6741. 7003,
  6742. 7032,
  6743. 7004,
  6744. 7033,
  6745. 7021,
  6746. 7000,
  6747. 6993,
  6748. 7002,
  6749. 7031,
  6750. 6995,
  6751. 6994,
  6752. 7020,
  6753. 6998,
  6754. 6996,
  6755. 6997,
  6756. 7001,
  6757. 7028,
  6758. 7394,
  6759. 7394,
  6760. 7394,
  6761. 7394,
  6762. 8589,
  6763. 7434,
  6764. 11938,
  6765. 12540,
  6766. 7369,
  6767. 7394,
  6768. 8589,
  6769. 4241,
  6770. 7369,
  6771. 8589,
  6772. 14700,
  6773. 1669,
  6774. 6533,
  6775. 6533,
  6776. 6417,
  6777. 6533,
  6778. 3614,
  6779. 3614,
  6780. 3617,
  6781. 7394,
  6782. 2891,
  6783. 8589,
  6784. 2891,
  6785. 14413,
  6786. 14413,
  6787. 14413,
  6788. 14700,
  6789. 8589,
  6790. 1565,
  6791. 5822,
  6792. 3502,
  6793. 8589,
  6794. 10141,
  6795. 2893,
  6796. -1,
  6797. -1,
  6798. -1,
  6799. 5822,
  6800. -1,
  6801. -1,
  6802. -1,
  6803. -1,
  6804. -1,
  6805. 8589,
  6806. 14676,
  6807. 5822,
  6808. -1,
  6809. -1,
  6810. -1,
  6811. -1,
  6812. -1,
  6813. -1,
  6814. 8589,
  6815. 14700,
  6816. 8589,
  6817. 5822,
  6818. 5822,
  6819. -1,
  6820. -1,
  6821. -1,
  6822. -1,
  6823. -1,
  6824. -1,
  6825. -1,
  6826. -1,
  6827. -1,
  6828. -1,
  6829. -1,
  6830. -1,
  6831. -1,
  6832. -1,
  6833. -1,
  6834. -1,
  6835. 8496,
  6836. 7394,
  6837. 8496,
  6838. 7394,
  6839. 7394,
  6840. 8589,
  6841. 8496,
  6842. 7394,
  6843. 8496,
  6844. 7394,
  6845. 8589,
  6846. 3503,
  6847. 5822,
  6848. 12540,
  6849. 10679,
  6850. 8589,
  6851. 5822,
  6852. 8589,
  6853. 5822,
  6854. 8589,
  6855. 4431,
  6856. 5265,
  6857. 8496,
  6858. 8467,
  6859. 8467,
  6860. 2891,
  6861. 8496,
  6862. 9904,
  6863. 12894,
  6864. 12894,
  6865. -1,
  6866. -1,
  6867. -1,
  6868. -1,
  6869. -1,
  6870. -1,
  6871. -1,
  6872. -1,
  6873. -1,
  6874. 8496,
  6875. 7394,
  6876. 8467,
  6877. 7369,
  6878. 8589,
  6879. 14261,
  6880. 12419,
  6881. 14365,
  6882. 14418,
  6883. 14447,
  6884. 14379,
  6885. 10143,
  6886. 9863,
  6887. 10679,
  6888. 10679,
  6889. 14365,
  6890. 12870,
  6891. 14418,
  6892. 9850,
  6893. 9850,
  6894. 12870,
  6895. 10565,
  6896. 14247,
  6897. 14700,
  6898. 8496,
  6899. 8496,
  6900. 4431,
  6901. 8467,
  6902. 6565,
  6903. 6667,
  6904. 8589,
  6905. 5822,
  6906. 8496,
  6907. -1,
  6908. -1,
  6909. -1,
  6910. -1,
  6911. -1,
  6912. -1,
  6913. -1,
  6914. -1,
  6915. -1,
  6916. -1,
  6917. -1,
  6918. -1,
  6919. -1,
  6920. -1,
  6921. -1,
  6922. -1,
  6923. -1,
  6924. -1,
  6925. -1,
  6926. -1,
  6927. -1,
  6928. -1,
  6929. -1,
  6930. -1,
  6931. 14700,
  6932. 14444,
  6933. 14248,
  6934. 12306,
  6935. 14161,
  6936. 14161,
  6937. 14279,
  6938. 12447,
  6939. 12447,
  6940. 14279,
  6941. 12446,
  6942. 14284,
  6943. 14164,
  6944. 10788,
  6945. 12893,
  6946. 14163,
  6947. 9553,
  6948. 9539,
  6949. 10160,
  6950. 10143,
  6951. 10159,
  6952. 10788,
  6953. 9539,
  6954. 12893,
  6955. 10143,
  6956. 10788,
  6957. 9686,
  6958. 9055,
  6959. 10563,
  6960. 10274,
  6961. 9856,
  6962. 9687,
  6963. 10241,
  6964. 8496,
  6965. -1,
  6966. -1,
  6967. -1,
  6968. -1,
  6969. -1,
  6970. -1,
  6971. -1,
  6972. -1,
  6973. -1,
  6974. -1,
  6975. -1,
  6976. -1,
  6977. -1,
  6978. -1,
  6979. -1,
  6980. -1,
  6981. -1,
  6982. -1,
  6983. -1,
  6984. -1,
  6985. -1,
  6986. -1,
  6987. -1,
  6988. -1,
  6989. -1,
  6990. -1,
  6991. -1,
  6992. -1,
  6993. -1,
  6994. -1,
  6995. -1,
  6996. -1,
  6997. -1,
  6998. -1,
  6999. -1,
  7000. -1,
  7001. -1,
  7002. -1,
  7003. -1,
  7004. -1,
  7005. 14365,
  7006. 14365,
  7007. 10687,
  7008. 10682,
  7009. 12540,
  7010. 14700,
  7011. 14700,
  7012. 8589,
  7013. 5822,
  7014. 6565,
  7015. -1,
  7016. -1,
  7017. 12535,
  7018. 13158,
  7019. 10671,
  7020. 14700,
  7021. 12515,
  7022. 12873,
  7023. 8894,
  7024. 9996,
  7025. 8467,
  7026. 7369,
  7027. 8543,
  7028. 4425,
  7029. 7394,
  7030. 4424,
  7031. 1375,
  7032. 7394,
  7033. 4425,
  7034. 8496,
  7035. 3489,
  7036. 8496,
  7037. -1,
  7038. -1,
  7039. -1,
  7040. 14418,
  7041. 12540,
  7042. 10679,
  7043. -1,
  7044. -1,
  7045. -1,
  7046. 12535,
  7047. 11948,
  7048. 12540,
  7049. 10678,
  7050. 14249,
  7051. 14213,
  7052. 12842,
  7053. -1,
  7054. -1,
  7055. 12873,
  7056. 10679,
  7057. 14365,
  7058. 12424,
  7059. 14365,
  7060. 14365,
  7061. 11931,
  7062. 14365,
  7063. 14700,
  7064. 14418,
  7065. 14365,
  7066. 14418,
  7067. 14365,
  7068. 10671,
  7069. 14365,
  7070. 12874,
  7071. 14365,
  7072. 12541,
  7073. 14418,
  7074. 14418,
  7075. 14365,
  7076. 12873,
  7077. 12873,
  7078. 10769,
  7079. 12873,
  7080. 10769,
  7081. 10769,
  7082. 14365,
  7083. 11931,
  7084. 14365,
  7085. 14418,
  7086. 14418,
  7087. 12540,
  7088. 11948,
  7089. 12874,
  7090. 10775,
  7091. 12535,
  7092. 12872,
  7093. -1,
  7094. -1,
  7095. -1,
  7096. 10682,
  7097. 11931,
  7098. 13310,
  7099. 12540,
  7100. 12535,
  7101. 11946,
  7102. 12535,
  7103. 12402,
  7104. 11946,
  7105. 14365,
  7106. 14700,
  7107. 8589,
  7108. 6565,
  7109. 5822,
  7110. 5822,
  7111. 6565,
  7112. 8589,
  7113. 6565,
  7114. 6565,
  7115. 6565,
  7116. 8589,
  7117. 10679,
  7118. 10027,
  7119. 9472,
  7120. 9095,
  7121. 10679,
  7122. 14362,
  7123. 13310,
  7124. 13095,
  7125. -1,
  7126. 14365,
  7127. 14412,
  7128. 14412,
  7129. 12871,
  7130. 12871,
  7131. -1,
  7132. -1,
  7133. -1,
  7134. 14261,
  7135. 14418,
  7136. 14418,
  7137. 14418,
  7138. 14418,
  7139. 14365,
  7140. 14418,
  7141. 14418,
  7142. 14418,
  7143. 14418,
  7144. 14418,
  7145. 10769,
  7146. 12873,
  7147. 12873,
  7148. 13158,
  7149. 8589,
  7150. 8467,
  7151. 5618,
  7152. 1879,
  7153. 8589,
  7154. 8467,
  7155. 1879,
  7156. 8496,
  7157. 7394,
  7158. 8496,
  7159. 8496,
  7160. 7394,
  7161. 8092,
  7162. 6993,
  7163. 8116,
  7164. 7016,
  7165. 8130,
  7166. 7030,
  7167. 7394,
  7168. 8467,
  7169. 7369,
  7170. 8589,
  7171. 1879,
  7172. 8496,
  7173. 7394,
  7174. 7394,
  7175. 8496,
  7176. 8543,
  7177. 8100,
  7178. 8496,
  7179. 8496,
  7180. 8095,
  7181. 8098,
  7182. 8092,
  7183. 8093,
  7184. 8094,
  7185. 8467,
  7186. 8496,
  7187. 8467,
  7188. 8496,
  7189. 8496,
  7190. 8589,
  7191. 8543,
  7192. 8467,
  7193. 8467,
  7194. 7394,
  7195. 8496,
  7196. 7313,
  7197. 7434,
  7198. 7434,
  7199. 6994,
  7200. 7368,
  7201. 7394,
  7202. 7311,
  7203. 7312,
  7204. 7316,
  7205. 8589,
  7206. 8589,
  7207. 7440,
  7208. 7340,
  7209. 7369,
  7210. 7370,
  7211. 7394,
  7212. 7434,
  7213. 7368,
  7214. 7394,
  7215. 7461,
  7216. 7369,
  7217. 7370,
  7218. 7394,
  7219. 7368,
  7220. 7394,
  7221. 8589,
  7222. 8589,
  7223. 7394,
  7224. 8589,
  7225. 7394,
  7226. 4438,
  7227. 8589,
  7228. 8589,
  7229. 7394,
  7230. 7394,
  7231. 8589,
  7232. 2938,
  7233. -1,
  7234. 3503,
  7235. 6565,
  7236. 5640,
  7237. 5751,
  7238. 6716,
  7239. 5822,
  7240. 8496,
  7241. 7394,
  7242. 7394,
  7243. 7394,
  7244. 8467,
  7245. 7369,
  7246. 7394,
  7247. 14700,
  7248. 7394,
  7249. 7394,
  7250. 4431,
  7251. 5822,
  7252. 3503,
  7253. 3503,
  7254. 2938,
  7255. 3650,
  7256. 8589,
  7257. 8589,
  7258. 5822,
  7259. 4431,
  7260. 8467,
  7261. 6565,
  7262. 6595,
  7263. 8589,
  7264. 14676,
  7265. 8467,
  7266. 7369,
  7267. 8543,
  7268. 8543,
  7269. 8543,
  7270. 7434,
  7271. 8589,
  7272. 7434,
  7273. 8496,
  7274. 5822,
  7275. 5822,
  7276. 6565,
  7277. 5822,
  7278. 5822,
  7279. 13158,
  7280. 5822,
  7281. 5822,
  7282. 3503,
  7283. 3503,
  7284. 5822,
  7285. 5822,
  7286. 7394,
  7287. 4431,
  7288. 436,
  7289. 14418,
  7290. 14418,
  7291. 5822,
  7292. 5822,
  7293. 5822,
  7294. 5822,
  7295. 5822,
  7296. 5822,
  7297. 5822,
  7298. 5822,
  7299. 14418,
  7300. 14418,
  7301. 14418,
  7302. 9547,
  7303. 14365,
  7304. 3502,
  7305. 5822,
  7306. 3502,
  7307. 468,
  7308. 5822,
  7309. 2940,
  7310. 5822,
  7311. 5822,
  7312. 5822,
  7313. 14700,
  7314. -1,
  7315. -1,
  7316. -1,
  7317. -1,
  7318. -1,
  7319. -1,
  7320. -1,
  7321. -1,
  7322. -1,
  7323. -1,
  7324. 14700,
  7325. 8589,
  7326. 6565,
  7327. 6565,
  7328. 5822,
  7329. 6565,
  7330. 6565,
  7331. 5640,
  7332. 8589,
  7333. 8589,
  7334. 2938,
  7335. 8589,
  7336. 5822,
  7337. 8589,
  7338. 6565,
  7339. 8589,
  7340. 6565,
  7341. 14381,
  7342. 3503,
  7343. 8589,
  7344. 14700,
  7345. 4431,
  7346. 8467,
  7347. 6565,
  7348. 6669,
  7349. 1381,
  7350. 8543,
  7351. 7434,
  7352. 8496,
  7353. 7394,
  7354. 7394,
  7355. 7394,
  7356. 7394,
  7357. 8543,
  7358. 5822,
  7359. 4431,
  7360. 5822,
  7361. 8496,
  7362. 7394,
  7363. 8543,
  7364. 7434,
  7365. 8543,
  7366. 7434,
  7367. 8543,
  7368. 7434,
  7369. 8543,
  7370. 7434,
  7371. 8496,
  7372. 8496,
  7373. 7394,
  7374. 8543,
  7375. 7434,
  7376. 8543,
  7377. 7394,
  7378. 5822,
  7379. 8496,
  7380. 4427,
  7381. 4440,
  7382. 4427,
  7383. 2957,
  7384. 4427,
  7385. 2938,
  7386. 4427,
  7387. 5822,
  7388. 8496,
  7389. 7394,
  7390. 8496,
  7391. 7394,
  7392. 8092,
  7393. 6993,
  7394. 8496,
  7395. 7394,
  7396. 8496,
  7397. 7394,
  7398. 8496,
  7399. 8496,
  7400. 8496,
  7401. 8496,
  7402. 8496,
  7403. 8496,
  7404. 7394,
  7405. 8543,
  7406. 7434,
  7407. 7394,
  7408. 4440,
  7409. 4440,
  7410. 4440,
  7411. 4440,
  7412. 2957,
  7413. 14365,
  7414. 14365,
  7415. 8589,
  7416. 4440,
  7417. 8589,
  7418. 2957,
  7419. 8496,
  7420. 7394,
  7421. 8496,
  7422. 7394,
  7423. 8496,
  7424. 7394,
  7425. 8496,
  7426. 7394,
  7427. 8543,
  7428. 7434,
  7429. 8496,
  7430. 8496,
  7431. 7394,
  7432. 8543,
  7433. 7434,
  7434. 8543,
  7435. 7394,
  7436. 5822,
  7437. 8496,
  7438. 8496,
  7439. 7394,
  7440. 8496,
  7441. 7394,
  7442. 8496,
  7443. 7394,
  7444. 8100,
  7445. 7003,
  7446. 8496,
  7447. 7394,
  7448. 8496,
  7449. 7394,
  7450. 7394,
  7451. 8496,
  7452. 7394,
  7453. 8496,
  7454. 7394,
  7455. 8496,
  7456. 7394,
  7457. 8543,
  7458. 7434,
  7459. 8543,
  7460. 7434,
  7461. 8543,
  7462. 7434,
  7463. 8543,
  7464. 7434,
  7465. 8496,
  7466. 7394,
  7467. 8496,
  7468. 8467,
  7469. 8092,
  7470. 6993,
  7471. 8105,
  7472. 7009,
  7473. 8096,
  7474. 6999,
  7475. 8116,
  7476. 7016,
  7477. 8106,
  7478. 7010,
  7479. 8130,
  7480. 7030,
  7481. 8496,
  7482. 7394,
  7483. 8496,
  7484. 8496,
  7485. 7394,
  7486. 8496,
  7487. 7394,
  7488. 8496,
  7489. 8496,
  7490. 7394,
  7491. 8092,
  7492. 6993,
  7493. 8130,
  7494. 7030,
  7495. 8116,
  7496. 7016,
  7497. 7394,
  7498. 8589,
  7499. 7394,
  7500. 5822,
  7501. 7394,
  7502. 5822,
  7503. 3642,
  7504. 3502,
  7505. 3503,
  7506. 3503,
  7507. 3650,
  7508. 2938,
  7509. 8467,
  7510. 7369,
  7511. 8117,
  7512. 7017,
  7513. 8496,
  7514. 7394,
  7515. 8496,
  7516. 7394,
  7517. 7394,
  7518. 8496,
  7519. 8496,
  7520. 8496,
  7521. 7394,
  7522. 8496,
  7523. 7394,
  7524. 7394,
  7525. 8543,
  7526. 7394,
  7527. 8496,
  7528. 7394,
  7529. 8496,
  7530. 1025,
  7531. 8589,
  7532. 370,
  7533. 3650,
  7534. 5640,
  7535. 8589,
  7536. 7394,
  7537. 4431,
  7538. 5822,
  7539. 1575,
  7540. 8496,
  7541. 3503,
  7542. 5822,
  7543. 204,
  7544. 10771,
  7545. 5822,
  7546. 1025,
  7547. 204,
  7548. 100,
  7549. 100,
  7550. 289,
  7551. 1572,
  7552. 354,
  7553. 6565,
  7554. 560,
  7555. 370,
  7556. 54,
  7557. 2938,
  7558. 3618,
  7559. 3650,
  7560. 1568,
  7561. 1568,
  7562. 2938,
  7563. 2938,
  7564. 560,
  7565. 560,
  7566. 1381,
  7567. 560,
  7568. 1025,
  7569. 1025,
  7570. 560,
  7571. 1025,
  7572. 1025,
  7573. 1677,
  7574. 352,
  7575. 560,
  7576. 1676,
  7577. 3650,
  7578. 843,
  7579. 1572,
  7580. 308,
  7581. 2938,
  7582. 2948,
  7583. 8589,
  7584. 8589,
  7585. 6565,
  7586. 14700,
  7587. 8589,
  7588. 5822,
  7589. 5822,
  7590. 5822,
  7591. 5640,
  7592. 7394,
  7593. 2938,
  7594. 8496,
  7595. 5822,
  7596. 472,
  7597. 472,
  7598. 877,
  7599. 586,
  7600. 3650,
  7601. 370,
  7602. 4431,
  7603. 3503,
  7604. 10769,
  7605. 2938,
  7606. 2938,
  7607. 2938,
  7608. 472,
  7609. 217,
  7610. 472,
  7611. 2938,
  7612. 4431,
  7613. 3618,
  7614. 3618,
  7615. 3618,
  7616. 472,
  7617. 472,
  7618. 472,
  7619. 470,
  7620. 370,
  7621. 472,
  7622. 577,
  7623. 472,
  7624. 1022,
  7625. 4425,
  7626. 1676,
  7627. 1676,
  7628. 7394,
  7629. 7394,
  7630. 7394,
  7631. 8496,
  7632. 7394,
  7633. 7394,
  7634. 8496,
  7635. 7369,
  7636. 8496,
  7637. 7394,
  7638. 7369,
  7639. 7369,
  7640. 8467,
  7641. 7369,
  7642. 7369,
  7643. 7369,
  7644. 7369,
  7645. 8467,
  7646. 7369,
  7647. 7369,
  7648. 7369,
  7649. 7394,
  7650. 8552,
  7651. 7443,
  7652. 8467,
  7653. 8543,
  7654. 7434,
  7655. 8496,
  7656. 7394,
  7657. 7394,
  7658. 3503,
  7659. 4431,
  7660. 2938,
  7661. 7394,
  7662. -1,
  7663. 14365,
  7664. 14365,
  7665. 12425,
  7666. 14365,
  7667. 12540,
  7668. 14365,
  7669. 14365,
  7670. 14365,
  7671. 14365,
  7672. -1,
  7673. -1,
  7674. -1,
  7675. 14687,
  7676. 14676,
  7677. 14700,
  7678. 8589,
  7679. 5822,
  7680. 14700,
  7681. 8589,
  7682. 5822,
  7683. -1,
  7684. -1,
  7685. 7394,
  7686. 4431,
  7687. 5822,
  7688. 8589,
  7689. -1,
  7690. -1,
  7691. 7394,
  7692. 14365,
  7693. 6565,
  7694. 5822,
  7695. 7394,
  7696. 4431,
  7697. 6565,
  7698. 8496,
  7699. 8543,
  7700. 8496,
  7701. 8467,
  7702. 8589,
  7703. 4431,
  7704. 8589,
  7705. 6565,
  7706. 8589,
  7707. 5822,
  7708. 4264,
  7709. 7369,
  7710. 7394,
  7711. 4264,
  7712. 3642,
  7713. 8496,
  7714. 5640,
  7715. 6565,
  7716. 14700,
  7717. 8467,
  7718. 8467,
  7719. 8589,
  7720. 8589,
  7721. 7394,
  7722. 7394,
  7723. 14365,
  7724. 8496,
  7725. 3650,
  7726. 5640,
  7727. 8589,
  7728. -1,
  7729. -1,
  7730. -1,
  7731. -1,
  7732. -1,
  7733. -1,
  7734. -1,
  7735. -1,
  7736. -1,
  7737. -1,
  7738. -1,
  7739. 14700,
  7740. 8589,
  7741. -1,
  7742. -1,
  7743. 8496,
  7744. 5640,
  7745. 8496,
  7746. 8467,
  7747. 8589,
  7748. 7394,
  7749. 7394,
  7750. 6565,
  7751. 8496,
  7752. 4431,
  7753. 5822,
  7754. 4431,
  7755. 8467,
  7756. 12540,
  7757. 7394,
  7758. 7394,
  7759. 8496,
  7760. 8589,
  7761. 7394,
  7762. 8589,
  7763. 7394,
  7764. 7394,
  7765. 8543,
  7766. 6565,
  7767. 8496,
  7768. 8496,
  7769. 7904,
  7770. 6565,
  7771. 3505,
  7772. 5640,
  7773. 1880,
  7774. 7369,
  7775. 6565,
  7776. 5817,
  7777. 4264,
  7778. 8589,
  7779. 4431,
  7780. 6565,
  7781. 4425,
  7782. 12873,
  7783. 4431,
  7784. 7394,
  7785. 7394,
  7786. 1880,
  7787. 14365,
  7788. 8589,
  7789. 4431,
  7790. 4431,
  7791. 8467,
  7792. 5822,
  7793. 5822,
  7794. 5640,
  7795. 4264,
  7796. 7369,
  7797. 5817,
  7798. 4264,
  7799. 7394,
  7800. 8589,
  7801. 6565,
  7802. 4425,
  7803. 8543,
  7804. 6565,
  7805. 5822,
  7806. 5640,
  7807. 8589,
  7808. 6565,
  7809. 5640,
  7810. 4264,
  7811. 8543,
  7812. 8543,
  7813. 7394,
  7814. 7369,
  7815. 5817,
  7816. 4264,
  7817. 4425,
  7818. 8467,
  7819. 8543,
  7820. 8496,
  7821. 7394,
  7822. 8496,
  7823. 8543,
  7824. 8543,
  7825. 8543,
  7826. 4425,
  7827. 3397,
  7828. 8543,
  7829. 7394,
  7830. 8589,
  7831. 8467,
  7832. 8496,
  7833. 8543,
  7834. 8543,
  7835. 8543,
  7836. -1,
  7837. -1,
  7838. -1,
  7839. -1,
  7840. -1,
  7841. -1,
  7842. -1,
  7843. 8496,
  7844. 7394,
  7845. 7394,
  7846. 8589,
  7847. 7394,
  7848. 6565,
  7849. 5640,
  7850. 1880,
  7851. 4431,
  7852. 7394,
  7853. 7394,
  7854. 8496,
  7855. 8467,
  7856. 5822,
  7857. 5822,
  7858. 4431,
  7859. 5822,
  7860. 4431,
  7861. 14365,
  7862. 12540,
  7863. 14365,
  7864. 12540,
  7865. 14365,
  7866. 12540,
  7867. 4431,
  7868. 5822,
  7869. 3502,
  7870. 4431,
  7871. 6565,
  7872. 8496,
  7873. 6565,
  7874. 3642,
  7875. 8496,
  7876. 6915,
  7877. 8589,
  7878. 6030,
  7879. 4425,
  7880. 8543,
  7881. 6030,
  7882. 8467,
  7883. 8496,
  7884. 7394,
  7885. 7394,
  7886. 8496,
  7887. 5822,
  7888. 8496,
  7889. 8496,
  7890. 8496,
  7891. 8496,
  7892. 8496,
  7893. 8496,
  7894. 5822,
  7895. 5822,
  7896. 8496,
  7897. 5822,
  7898. 14700,
  7899. 8589,
  7900. 7369,
  7901. 8589,
  7902. 8543,
  7903. 8589,
  7904. 7939,
  7905. 8589,
  7906. 8496,
  7907. 8496,
  7908. 8467,
  7909. 8589,
  7910. 7394,
  7911. 7394,
  7912. 6565,
  7913. 8496,
  7914. 14365,
  7915. 12540,
  7916. 14365,
  7917. 12540,
  7918. 14365,
  7919. 12540,
  7920. 4431,
  7921. 5822,
  7922. 4431,
  7923. 5817,
  7924. 4264,
  7925. 5640,
  7926. 5640,
  7927. 4264,
  7928. 7369,
  7929. 8496,
  7930. 7394,
  7931. 8589,
  7932. 6565,
  7933. 4425,
  7934. 8543,
  7935. 6565,
  7936. 8467,
  7937. 8496,
  7938. 7394,
  7939. 8543,
  7940. 6565,
  7941. 8543,
  7942. 4808,
  7943. 6565,
  7944. 6565,
  7945. 7394,
  7946. 5822,
  7947. 8543,
  7948. 8467,
  7949. 8467,
  7950. 8496,
  7951. 8496,
  7952. 8589,
  7953. 8589,
  7954. 8589,
  7955. 7394,
  7956. 8589,
  7957. 8589,
  7958. 7394,
  7959. 7369,
  7960. 7394,
  7961. 4425,
  7962. 4425,
  7963. 7394,
  7964. 8589,
  7965. 8589,
  7966. 7394,
  7967. 7394,
  7968. 7394,
  7969. 7369,
  7970. 7369,
  7971. 7370,
  7972. 7370,
  7973. 7440,
  7974. 7316,
  7975. 7434,
  7976. 7368,
  7977. 7368,
  7978. 7368,
  7979. 7434,
  7980. 7434,
  7981. 7313,
  7982. 7311,
  7983. 7312,
  7984. 7394,
  7985. 7461,
  7986. 7340,
  7987. 7394,
  7988. 1403,
  7989. 8496,
  7990. 7394,
  7991. 8496,
  7992. 8496,
  7993. 6565,
  7994. 8467,
  7995. 8543,
  7996. 12873,
  7997. 8496,
  7998. 7394,
  7999. 8496,
  8000. 7394,
  8001. 8496,
  8002. 8589,
  8003. 5822,
  8004. 4431,
  8005. -1,
  8006. 8496,
  8007. 8496,
  8008. 7904,
  8009. 8589,
  8010. 7394,
  8011. 4431,
  8012. 8496,
  8013. 3490,
  8014. 14365,
  8015. 14365,
  8016. 10772,
  8017. 14418,
  8018. 14168,
  8019. 13298,
  8020. 14286,
  8021. 13303,
  8022. 13304,
  8023. 13305,
  8024. 13306,
  8025. 13301,
  8026. 14261,
  8027. 14217,
  8028. 14217,
  8029. 14217,
  8030. 14418,
  8031. 14418,
  8032. 13310,
  8033. 13308,
  8034. 13328,
  8035. 13299,
  8036. 13323,
  8037. 14165,
  8038. 13312,
  8039. 13324,
  8040. 14176,
  8041. 13330,
  8042. 13331,
  8043. 14188,
  8044. 14434,
  8045. 14365,
  8046. 14261,
  8047. 14286,
  8048. 14205,
  8049. 13307,
  8050. 14447,
  8051. 13327,
  8052. 14365,
  8053. 8496,
  8054. 8496,
  8055. 8467,
  8056. 8496,
  8057. 12540,
  8058. 14365,
  8059. -1,
  8060. 5822,
  8061. 3503,
  8062. 14365,
  8063. 12540,
  8064. 14365,
  8065. 12540,
  8066. 12540,
  8067. 4431,
  8068. 4241,
  8069. 8543,
  8070. 8467,
  8071. 8467,
  8072. 8496,
  8073. 8496,
  8074. 7394,
  8075. -1,
  8076. 14700,
  8077. 4241,
  8078. 8496,
  8079. 8496,
  8080. 8496,
  8081. 7394,
  8082. 7394,
  8083. 5817,
  8084. 4264,
  8085. 6565,
  8086. 7369,
  8087. 5640,
  8088. 1880,
  8089. 6565,
  8090. 8589,
  8091. 6565,
  8092. 8496,
  8093. 8467,
  8094. 7394,
  8095. 4431,
  8096. 4431,
  8097. 8467,
  8098. 12540,
  8099. 8496,
  8100. 8496,
  8101. 7394,
  8102. 8589,
  8103. 6565,
  8104. 4425,
  8105. 6565,
  8106. 8467,
  8107. 8543,
  8108. 5640,
  8109. 4264,
  8110. 7369,
  8111. 5817,
  8112. 4264,
  8113. 8589,
  8114. 7369,
  8115. 8589,
  8116. 8543,
  8117. 8496,
  8118. 8589,
  8119. 8496,
  8120. 4425,
  8121. 7394,
  8122. 7394,
  8123. 6565,
  8124. 8543,
  8125. 10554,
  8126. 12424,
  8127. 8496,
  8128. 14365,
  8129. 14676,
  8130. 14676,
  8131. 12358,
  8132. 14222,
  8133. 8467,
  8134. 8496,
  8135. 4431,
  8136. 8467,
  8137. 12873,
  8138. 6565,
  8139. 6565,
  8140. 8467,
  8141. 8496,
  8142. 5822,
  8143. 3503,
  8144. 5640,
  8145. 8467,
  8146. 6565,
  8147. 5267,
  8148. 6565,
  8149. 6565,
  8150. 5267,
  8151. 5267,
  8152. 5640,
  8153. 5640,
  8154. 5751,
  8155. 5751,
  8156. 6716,
  8157. 5206,
  8158. 5193,
  8159. 5184,
  8160. 3503,
  8161. 8589,
  8162. 8589,
  8163. 8589,
  8164. 8589,
  8165. 8589,
  8166. 14700,
  8167. 8589,
  8168. 8589,
  8169. 8589,
  8170. 7394,
  8171. 8589,
  8172. 8589,
  8173. 8589,
  8174. 8589,
  8175. 2938,
  8176. 5822,
  8177. 7394,
  8178. 1025,
  8179. 5822,
  8180. 6565,
  8181. 8589,
  8182. -1,
  8183. -1,
  8184. -1,
  8185. -1,
  8186. -1,
  8187. -1,
  8188. 6565,
  8189. 8589,
  8190. 2938,
  8191. 1025,
  8192. 6565,
  8193. 8543,
  8194. 8589,
  8195. 14365,
  8196. 2938,
  8197. 1025,
  8198. 6565,
  8199. 8589,
  8200. 14700,
  8201. 2938,
  8202. 1025,
  8203. 6565,
  8204. 8589,
  8205. 2938,
  8206. 3618,
  8207. 4431,
  8208. 2938,
  8209. 1025,
  8210. 5822,
  8211. 3503,
  8212. 6565,
  8213. 8589,
  8214. 8543,
  8215. 8543,
  8216. 7434,
  8217. 8589,
  8218. 2938,
  8219. 1025,
  8220. 6565,
  8221. 8543,
  8222. 7434,
  8223. 8543,
  8224. 7434,
  8225. 8543,
  8226. 7434,
  8227. 8589,
  8228. 2938,
  8229. 9732,
  8230. 1025,
  8231. 6565,
  8232. 14454,
  8233. 14460,
  8234. 14467,
  8235. 14700,
  8236. 2938,
  8237. 1025,
  8238. 6565,
  8239. 8589,
  8240. 8496,
  8241. 2938,
  8242. 1025,
  8243. 8589,
  8244. 2938,
  8245. 1025,
  8246. 8589,
  8247. 7394,
  8248. 5822,
  8249. 5822,
  8250. 5822,
  8251. 5822,
  8252. 5822,
  8253. 1572,
  8254. 1025,
  8255. 3503,
  8256. 5822,
  8257. 3503,
  8258. 3503,
  8259. 1572,
  8260. 8496,
  8261. 7394,
  8262. 7394,
  8263. 5822,
  8264. 8543,
  8265. 7394,
  8266. 8496,
  8267. 8496,
  8268. 8496,
  8269. 7394,
  8270. 8496,
  8271. 8496,
  8272. 8496,
  8273. 8496,
  8274. 8496,
  8275. 7394,
  8276. 8496,
  8277. 8467,
  8278. 8496,
  8279. 8496,
  8280. 14365,
  8281. 8496,
  8282. 8496,
  8283. 8496,
  8284. 7394,
  8285. 5822,
  8286. 8496,
  8287. 5822,
  8288. 5822,
  8289. 5822,
  8290. 5822,
  8291. 5822,
  8292. 1572,
  8293. 1025,
  8294. 3503,
  8295. 5822,
  8296. 3503,
  8297. 3503,
  8298. 1572,
  8299. 8496,
  8300. 8496,
  8301. 8496,
  8302. 8496,
  8303. 8496,
  8304. 8496,
  8305. 8496,
  8306. 8496,
  8307. 7394,
  8308. 5822,
  8309. 8543,
  8310. 8467,
  8311. 8496,
  8312. 8496,
  8313. 8496,
  8314. 8496,
  8315. 8496,
  8316. 5822,
  8317. 8496,
  8318. 8496,
  8319. 8496,
  8320. 7394,
  8321. 7394,
  8322. 8467,
  8323. 8496,
  8324. 8496,
  8325. 8496,
  8326. 7394,
  8327. 8496,
  8328. 8496,
  8329. 8496,
  8330. 8496,
  8331. 8496,
  8332. 8496,
  8333. 7394,
  8334. 8496,
  8335. 5822,
  8336. 5822,
  8337. 5822,
  8338. 5822,
  8339. 5822,
  8340. 1572,
  8341. 1025,
  8342. 3503,
  8343. 5822,
  8344. 3503,
  8345. 3503,
  8346. 1572,
  8347. 8496,
  8348. 5822,
  8349. 8496,
  8350. 7394,
  8351. 8496,
  8352. 8496,
  8353. 8496,
  8354. 7394,
  8355. 8496,
  8356. 8496,
  8357. 8496,
  8358. 7394,
  8359. 8496,
  8360. 8496,
  8361. 8496,
  8362. 7394,
  8363. 8496,
  8364. 8496,
  8365. 14365,
  8366. 5822,
  8367. 7394,
  8368. 8496,
  8369. 8467,
  8370. 8496,
  8371. 8496,
  8372. 8496,
  8373. 8496,
  8374. 8496,
  8375. 5822,
  8376. 8496,
  8377. 14700,
  8378. 8496,
  8379. 7394,
  8380. 8496,
  8381. 8496,
  8382. 8496,
  8383. 8496,
  8384. 8496,
  8385. 7394,
  8386. 7394,
  8387. 8496,
  8388. 5822,
  8389. 8496,
  8390. 8496,
  8391. 8496,
  8392. 5822,
  8393. 8543,
  8394. 8496,
  8395. 8543,
  8396. 8543,
  8397. 2938,
  8398. 5822,
  8399. 4431,
  8400. 3503,
  8401. 3503,
  8402. 6565,
  8403. 1383,
  8404. 1383,
  8405. 14418,
  8406. 1025,
  8407. 843,
  8408. 843,
  8409. 317,
  8410. 9257,
  8411. 5822,
  8412. 843,
  8413. 4431,
  8414. 3503,
  8415. 1381,
  8416. 2938,
  8417. 1025,
  8418. 1381,
  8419. 3642,
  8420. 6565,
  8421. 6565,
  8422. 8589,
  8423. 14700,
  8424. 8467,
  8425. 8496,
  8426. 8543,
  8427. 8543,
  8428. 8543,
  8429. 8543,
  8430. 8589,
  8431. 7394,
  8432. 8543,
  8433. 7434,
  8434. 5801,
  8435. 8496,
  8436. 8496,
  8437. 5817,
  8438. 5618,
  8439. 5669,
  8440. 8589,
  8441. 8411,
  8442. 8467,
  8443. 8468,
  8444. 8543,
  8445. 7369,
  8446. 5817,
  8447. 14700,
  8448. 7434,
  8449. 8543,
  8450. 7394,
  8451. 8589,
  8452. 4431,
  8453. 8543,
  8454. 8496,
  8455. 8496,
  8456. 8589,
  8457. 7394,
  8458. 8543,
  8459. 8496,
  8460. 8496,
  8461. 8589,
  8462. 4438,
  8463. 8543,
  8464. 7434,
  8465. 4438,
  8466. 7394,
  8467. 7394,
  8468. 4431,
  8469. 8543,
  8470. 7394,
  8471. 7394,
  8472. 8589,
  8473. 4438,
  8474. 7394,
  8475. 7394,
  8476. 4431,
  8477. 8496,
  8478. 7394,
  8479. 7394,
  8480. };
  8481. static const Il2CppTokenRangePair s_rgctxIndices[57] =
  8482. {
  8483. { 0x02000047, { 43, 1 } },
  8484. { 0x02000048, { 44, 1 } },
  8485. { 0x02000049, { 45, 1 } },
  8486. { 0x0200004A, { 46, 1 } },
  8487. { 0x0200004B, { 47, 1 } },
  8488. { 0x0200004C, { 48, 1 } },
  8489. { 0x02000055, { 49, 7 } },
  8490. { 0x02000056, { 56, 14 } },
  8491. { 0x0200005F, { 70, 14 } },
  8492. { 0x02000062, { 84, 22 } },
  8493. { 0x02000063, { 106, 7 } },
  8494. { 0x02000064, { 113, 7 } },
  8495. { 0x02000067, { 120, 3 } },
  8496. { 0x02000075, { 154, 1 } },
  8497. { 0x0200008B, { 157, 3 } },
  8498. { 0x0200008C, { 160, 8 } },
  8499. { 0x020000B3, { 177, 7 } },
  8500. { 0x020000C3, { 190, 3 } },
  8501. { 0x020000C4, { 193, 3 } },
  8502. { 0x020000C5, { 196, 3 } },
  8503. { 0x020000C6, { 199, 3 } },
  8504. { 0x020000C9, { 202, 3 } },
  8505. { 0x020000CE, { 205, 7 } },
  8506. { 0x020000F7, { 216, 3 } },
  8507. { 0x06000119, { 0, 1 } },
  8508. { 0x0600011A, { 1, 2 } },
  8509. { 0x0600011B, { 3, 2 } },
  8510. { 0x06000149, { 5, 2 } },
  8511. { 0x060001D6, { 7, 2 } },
  8512. { 0x060001D7, { 9, 2 } },
  8513. { 0x060001E2, { 11, 6 } },
  8514. { 0x060001E3, { 17, 6 } },
  8515. { 0x060001E4, { 23, 5 } },
  8516. { 0x060001E5, { 28, 5 } },
  8517. { 0x060001E6, { 33, 5 } },
  8518. { 0x060001E7, { 38, 5 } },
  8519. { 0x060002C7, { 123, 1 } },
  8520. { 0x060002C8, { 124, 3 } },
  8521. { 0x060002C9, { 127, 2 } },
  8522. { 0x060002CD, { 129, 3 } },
  8523. { 0x060002CE, { 132, 3 } },
  8524. { 0x060002CF, { 135, 3 } },
  8525. { 0x060002FF, { 138, 1 } },
  8526. { 0x06000300, { 139, 2 } },
  8527. { 0x06000301, { 141, 4 } },
  8528. { 0x0600031F, { 145, 9 } },
  8529. { 0x0600038B, { 155, 2 } },
  8530. { 0x06000538, { 168, 2 } },
  8531. { 0x06000542, { 170, 2 } },
  8532. { 0x06000543, { 172, 2 } },
  8533. { 0x06000544, { 174, 3 } },
  8534. { 0x0600057A, { 184, 1 } },
  8535. { 0x0600057B, { 185, 1 } },
  8536. { 0x0600057C, { 186, 4 } },
  8537. { 0x0600068F, { 212, 1 } },
  8538. { 0x060006C5, { 213, 2 } },
  8539. { 0x060006D5, { 215, 1 } },
  8540. };
  8541. extern const uint32_t g_rgctx_JsonConvert_DeserializeObject_TisT_t1D0339976A733019BFEB840F6A4B52D4B916D034_m27326170BD78DCFFDD2D476E776FB9123C157F4B;
  8542. extern const uint32_t g_rgctx_T_tFF4FBFA926C4821653D0AE3784D7FCDB7DD7ECC7;
  8543. extern const uint32_t g_rgctx_T_tFF4FBFA926C4821653D0AE3784D7FCDB7DD7ECC7;
  8544. extern const uint32_t g_rgctx_T_t85F8BBB220530EBD32FA1C08CE76F8E6B41D2BAA;
  8545. extern const uint32_t g_rgctx_T_t85F8BBB220530EBD32FA1C08CE76F8E6B41D2BAA;
  8546. extern const uint32_t g_rgctx_T_tF936BA51A96691101332F45120984F223605EA2E;
  8547. extern const uint32_t g_rgctx_T_tF936BA51A96691101332F45120984F223605EA2E;
  8548. extern const uint32_t g_rgctx_ReflectionDelegateFactory_CreateGet_TisT_tE8E4E575F8543402A4B19F538D98AE4C9A832ECF_m1C4953CAAE3AD7457C5ACCCDCA2E321083B0D080;
  8549. extern const uint32_t g_rgctx_ReflectionDelegateFactory_CreateGet_TisT_tE8E4E575F8543402A4B19F538D98AE4C9A832ECF_mF8310F1BB8C6A6F28B15972F564333C0B818DEE0;
  8550. extern const uint32_t g_rgctx_ReflectionDelegateFactory_CreateSet_TisT_tDBAE66C9B00674DC2684DF8CB5BECFDB0C4518FB_m54A4F68135E1730144E2EA89A3EA093F0BF36986;
  8551. extern const uint32_t g_rgctx_ReflectionDelegateFactory_CreateSet_TisT_tDBAE66C9B00674DC2684DF8CB5BECFDB0C4518FB_m93387D68841FE9DF98F69175D08BA0ABB74EECBC;
  8552. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass4_0_1_tA09F353E270AB32FB160FE5506A52A15FDE73B5D;
  8553. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass4_0_1__ctor_mACBB96C3B1F9A05B4E1C3659966DAF20BF61B42E;
  8554. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass4_0_1_U3CCreateMethodCallU3Eb__0_m4C69C4E312BAABDAB2287AAD217517F369D7A175;
  8555. extern const uint32_t g_rgctx_MethodCall_2_t2C2730EFA6780778F34D3DCC84B68632E17816EA;
  8556. extern const uint32_t g_rgctx_MethodCall_2__ctor_m635B517F893834957574B18046C0A2A18905ACAA;
  8557. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass4_0_1_U3CCreateMethodCallU3Eb__1_m8714359272FEAD3FF310B04A158AA6F1EF76EE4B;
  8558. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass5_0_1_t30B42531C67C9C3C1379D6A9A522974F0CAABB7B;
  8559. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass5_0_1__ctor_m9CEA463401D0B82DB535D04E253D73BB66102730;
  8560. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass5_0_1_U3CCreateDefaultConstructorU3Eb__0_m5387DE389B8C876BCA12A226036767F64F051DF9;
  8561. extern const uint32_t g_rgctx_Func_1_t45425DA12FA5BAD1B46C3577D026C6D00A86793C;
  8562. extern const uint32_t g_rgctx_Func_1__ctor_m71715052759C8E03BB1526B5BDABEAB3D3A11945;
  8563. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass5_0_1_U3CCreateDefaultConstructorU3Eb__1_m0C7D0781935F3593F9B7017535D484F694057D84;
  8564. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass6_0_1_tA98C662051A3DA833459FDF6162EB8982F50C78A;
  8565. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass6_0_1__ctor_m6296B3E1489AB012C66A740850720289462B9015;
  8566. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass6_0_1_U3CCreateGetU3Eb__0_mF1CD2EF1D925F9A2D07D890A85F610B32FF85023;
  8567. extern const uint32_t g_rgctx_Func_2_tC3A0D9775F5E0F0E45E5F08ECEF7ADC7428976D9;
  8568. extern const uint32_t g_rgctx_Func_2__ctor_mEC3DB9E1A0ACF42D7229F31F31581C057B16AAA4;
  8569. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass7_0_1_tA87FCA03A90EF67FBEC5AB3D7505B4A70D3BECA8;
  8570. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass7_0_1__ctor_m0E08764C8AE716F020F28B59E648DECFF8CFB78A;
  8571. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass7_0_1_U3CCreateGetU3Eb__0_m4EDCF3216B23B4E69C4890B4071CA3E1BDDF555E;
  8572. extern const uint32_t g_rgctx_Func_2_t45503B3957C59EAA55D937C6A2FDC2BFBBE27CC3;
  8573. extern const uint32_t g_rgctx_Func_2__ctor_mEBDDCB356D761265D41F97E13CAC97FA15359728;
  8574. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass8_0_1_t8EBD9EB584240999E7899CAC28FDC54720A91A83;
  8575. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass8_0_1__ctor_mD74BF813C2C23C607965BBE5B4F78C2A12B1128E;
  8576. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass8_0_1_U3CCreateSetU3Eb__0_m9682F15C5A2D66F401804464A28751FE01DDE2DE;
  8577. extern const uint32_t g_rgctx_Action_2_tC1E30C08B03B30D7FC1934787904DB099F9F54CC;
  8578. extern const uint32_t g_rgctx_Action_2__ctor_mDDE0E81FE3D8F5483E488B10A1E344AE4D5DDBDC;
  8579. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass9_0_1_tF911D7B1A8516162E6DCEFABCC987BEF00880C2C;
  8580. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass9_0_1__ctor_m90741810C83ACDA66148AE44F9D53F9857C38CA4;
  8581. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass9_0_1_U3CCreateSetU3Eb__0_m6A3EB568E45749397C1F4A5B2978BA955D8C387B;
  8582. extern const uint32_t g_rgctx_Action_2_t02CDAE8E32E5EDE232595A4F21DDB2D686A3C2FC;
  8583. extern const uint32_t g_rgctx_Action_2__ctor_m9804AFC10ACDFC40CF9D0F4FE4BA1D4C153F36D5;
  8584. extern const uint32_t g_rgctx_T_t5ADA0CB0850B35B644C33A376341474AE35A90B6;
  8585. extern const uint32_t g_rgctx_T_t76B3685B893622ED11C63A7786A3FDA38244B055;
  8586. extern const uint32_t g_rgctx_T_t6186D6A9CEA304D85892E398887F847D776465BA;
  8587. extern const uint32_t g_rgctx_T_t7393E40C0196103555118EEE94CA397CABCF1AF4;
  8588. extern const uint32_t g_rgctx_T_t44CCC7E5C692DFBA2F8F3A16836FF86BC47AA58C;
  8589. extern const uint32_t g_rgctx_T_tE192BB671DAAF91AFEEFDC840D74CD7D1FCCFFB2;
  8590. extern const uint32_t g_rgctx_Dictionary_2_t4CC796EC6A5B375B6A4286FFE53B70427772C446;
  8591. extern const uint32_t g_rgctx_Dictionary_2__ctor_mA76F99F7F81A6DE5120352F23DCCCA2A4F92AF35;
  8592. extern const uint32_t g_rgctx_Dictionary_2_TryGetValue_mB6330CAEFE395382CDE10893A64819A595D94457;
  8593. extern const uint32_t g_rgctx_ThreadSafeStore_2_AddValue_m3EEC32FF22ADCD0B44A49A98DB176BDDAA5D6557;
  8594. extern const uint32_t g_rgctx_Func_2_Invoke_mF150D67B3122FF204749346D361390B00DF15266;
  8595. extern const uint32_t g_rgctx_Dictionary_2_set_Item_m3D01EF6F7F96EE39044F4DA99ECA92140EFC8573;
  8596. extern const uint32_t g_rgctx_Dictionary_2__ctor_mF2B1BBCDD5B625792899BA680457B857E828CD8C;
  8597. extern const uint32_t g_rgctx_EqualityComparer_1_get_Default_m363EF2A716BAB26B618090B9F17373FFA740A42B;
  8598. extern const uint32_t g_rgctx_EqualityComparer_1_t0C61FDFDCBF668FF6A2BEF814015399B823EFE0B;
  8599. extern const uint32_t g_rgctx_EqualityComparer_1_get_Default_m2E386A851C275B5C3308250BC34A45C9D8459625;
  8600. extern const uint32_t g_rgctx_EqualityComparer_1_t91627650D49A5B4CE37634A8597DF22EEF22BE85;
  8601. extern const uint32_t g_rgctx_BidirectionalDictionary_2__ctor_m71840DD910D0AFD8B8916520F66DFD08DF59B993;
  8602. extern const uint32_t g_rgctx_BidirectionalDictionary_2__ctor_m1BAC5AFA9C15646F2DB105BD445CFF8A758EE211;
  8603. extern const uint32_t g_rgctx_Dictionary_2_tD85FCC79616DB16776B08E6EE9D1E8E1E0091CA3;
  8604. extern const uint32_t g_rgctx_Dictionary_2__ctor_mF73EBA658AE050E040C9E20C1AF047633FCE52FE;
  8605. extern const uint32_t g_rgctx_Dictionary_2_t782B4A0A95BAFEED89C7A2B6B3C6940D10047110;
  8606. extern const uint32_t g_rgctx_Dictionary_2__ctor_m35CC9482BF711D5DADF515DFC7A94DB502F37B0D;
  8607. extern const uint32_t g_rgctx_IDictionary_2_tE491FCC744FC21FB3BEA31D3625A20ADE4DDA0A0;
  8608. extern const uint32_t g_rgctx_TSecond_tF4FAB49A8C81EED732EA432E8D0B254E4FB6EDFD;
  8609. extern const uint32_t g_rgctx_TFirst_t5822FD72D1278FDE324F36D56A7C43C68FD3A8D7;
  8610. extern const uint32_t g_rgctx_IDictionary_2_t322003E4A4556EA5A7A35FA24D7E9782CB16FD95;
  8611. extern const uint32_t g_rgctx_ICollection_1_tADCAF4C1C1BE4D3601CD03D309E7B3E61939A673;
  8612. extern const uint32_t g_rgctx_T_tCD984D4A748C34F501128EEF33C2387E840FB048;
  8613. extern const uint32_t g_rgctx_IEnumerable_1_t48232C94D3A6ED7BCE2E26B384808D46AD8E18A1;
  8614. extern const uint32_t g_rgctx_Enumerable_Cast_TisT_tCD984D4A748C34F501128EEF33C2387E840FB048_m973AAC201C940B6E504E4E0FD684B385185ED752;
  8615. extern const uint32_t g_rgctx_CollectionWrapper_1_VerifyValueType_mA6FCF8A6A08CE5CE3CE5C79CC101C0F6042972CF;
  8616. extern const uint32_t g_rgctx_CollectionWrapper_1_t156AA21449CF7F452B5109988BCB1AAD0BA5A50A;
  8617. extern const uint32_t g_rgctx_CollectionWrapper_1_Add_m5A8FBE574B547BFF0E0D86CC6C4B431263D096C1;
  8618. extern const uint32_t g_rgctx_CollectionWrapper_1_get_Count_m30F680DADF68E6C350DAFF0C534C92BD2CDCB352;
  8619. extern const uint32_t g_rgctx_CollectionWrapper_1_IsCompatibleObject_m97CEEE0630431EC6742DC4DCE1A6C247DE363CAC;
  8620. extern const uint32_t g_rgctx_CollectionWrapper_1_Contains_mB27198E05D3B47546EF3DC263388FCC9A743B740;
  8621. extern const uint32_t g_rgctx_CollectionWrapper_1_Remove_m84BF55AFBE3730047581FCFF0D1E311C9C9068A0;
  8622. extern const uint32_t g_rgctx_TU5BU5D_t1E971EA7E4BC94F3D034861B040FE5DCE6AF7F84;
  8623. extern const uint32_t g_rgctx_CollectionWrapper_1_CopyTo_mFD68C7DFCE5CAAB9D08D2235C5978E05ECAF7411;
  8624. extern const uint32_t g_rgctx_T_tCD984D4A748C34F501128EEF33C2387E840FB048;
  8625. extern const uint32_t g_rgctx_TKey_t8C83DF5CAA81233E36545832F5ACB1C5D3082418;
  8626. extern const uint32_t g_rgctx_TValue_t63357E13A3D7B09BE85BC4B615D85D958E99D4AA;
  8627. extern const uint32_t g_rgctx_IDictionary_2_t48B01303E25D768995D117EA0F155467713A94FD;
  8628. extern const uint32_t g_rgctx_Enumerable_Cast_TisTKey_t8C83DF5CAA81233E36545832F5ACB1C5D3082418_m08F658EF35E72DCD2AF9E17BFEA0ABE94619D28C;
  8629. extern const uint32_t g_rgctx_Enumerable_ToList_TisTKey_t8C83DF5CAA81233E36545832F5ACB1C5D3082418_m04672526B8C57ABF6F0BF22ADBEE48701F7DF2EE;
  8630. extern const uint32_t g_rgctx_Enumerable_Cast_TisTValue_t63357E13A3D7B09BE85BC4B615D85D958E99D4AA_m40F02B58CEA7D3B5AAA37224491E3A0275938EDD;
  8631. extern const uint32_t g_rgctx_Enumerable_ToList_TisTValue_t63357E13A3D7B09BE85BC4B615D85D958E99D4AA_mF7B2343E602D52D653BCA2D012AFF56F9E6CAC14;
  8632. extern const uint32_t g_rgctx_KeyValuePair_2_t3FE5C70C38162D06C9BAD3E20B3BD62C34456205;
  8633. extern const uint32_t g_rgctx_ICollection_1_t35E23D6244F91282C5406164AAA55A5221437CC9;
  8634. extern const uint32_t g_rgctx_KeyValuePair_2__ctor_m62B45375FFD97C28F6FF6DDBB2DB8F75C687B9B7;
  8635. extern const uint32_t g_rgctx_KeyValuePair_2_get_Key_m5DDA49EF9EF7308531FA27419AEEC458979E953F;
  8636. extern const uint32_t g_rgctx_KeyValuePair_2_get_Value_mF66C130A33A3351144C03FC7591BDC69EB3206DA;
  8637. extern const uint32_t g_rgctx_U3CU3Ec_t9CD40C0A24D556646B8E7B8ACA864F4926EA63AA;
  8638. extern const uint32_t g_rgctx_U3CU3Ec_U3CGetEnumeratorU3Eb__25_0_mD7736C84BC0566656903C4722CC84778F8114B68;
  8639. extern const uint32_t g_rgctx_Func_2_tF0A9B2B1CEE37A29E8921AE233EB43A99890531B;
  8640. extern const uint32_t g_rgctx_Func_2__ctor_m174C7408FCA002FC0041EC2768105DF9BE2AFBAC;
  8641. extern const uint32_t g_rgctx_Enumerable_Select_TisDictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_TisKeyValuePair_2_t3FE5C70C38162D06C9BAD3E20B3BD62C34456205_m58312BA3852738E0220A021CF1CC5B67689636C7;
  8642. extern const uint32_t g_rgctx_IEnumerable_1_t1AE4274EDF32744AD339C4D99E4E2376F872C958;
  8643. extern const uint32_t g_rgctx_DictionaryWrapper_2_GetEnumerator_mBA7CB4BB3EBC4DEA8DF1D7C34EE41E08E1771FBA;
  8644. extern const uint32_t g_rgctx_DictionaryEnumerator_2_tE1136152649744E62B4200ABDCBB757EB9E89427;
  8645. extern const uint32_t g_rgctx_DictionaryEnumerator_2__ctor_m0FDB3D7699427CBC994049B1BF3BB0778B173BA0;
  8646. extern const uint32_t g_rgctx_KeyValuePair_2U5BU5D_tB43C8B0A2897F141EEF8D89ADBBEBF7851B2FF6B;
  8647. extern const uint32_t g_rgctx_DictionaryEnumerator_2_get_Current_mD39CB41DEFC158F0C2E749D134EA23EEF5435D81;
  8648. extern const uint32_t g_rgctx_DictionaryEnumerator_2_get_Entry_mF9B345B6CFCF8091A2B973F194C4CFFD14E2B635;
  8649. extern const uint32_t g_rgctx_IEnumerator_1_tE48B7D4FFE88C7A804E8D757C605E1E0A07A6618;
  8650. extern const uint32_t g_rgctx_KeyValuePair_2_get_Key_mE635E334D9B4F813A324FD1F6311267E8A05AED1;
  8651. extern const uint32_t g_rgctx_TEnumeratorKey_t9BEDC2CE471E9C79D1AF730A42EA4AF801D880A8;
  8652. extern const uint32_t g_rgctx_KeyValuePair_2_get_Value_m690AA40E1370D4616528F05C5BA12A15AAF7A6DC;
  8653. extern const uint32_t g_rgctx_TEnumeratorValue_tA85C17CCD6900706DE48CA59F3F1108471D30961;
  8654. extern const uint32_t g_rgctx_U3CU3Ec_t8D0C4B9E1F2A07315E35DD44918ACD7B0A451CDA;
  8655. extern const uint32_t g_rgctx_U3CU3Ec__ctor_mE9D38450D3E2341ADEC5C26FFC16E8CAA54D6D8B;
  8656. extern const uint32_t g_rgctx_U3CU3Ec_t8D0C4B9E1F2A07315E35DD44918ACD7B0A451CDA;
  8657. extern const uint32_t g_rgctx_TKey_t277C53C5816FAB87D0A1AE917223BB52D8F24B19;
  8658. extern const uint32_t g_rgctx_TValue_t154FDF38960EFF5722666CB2D0C7FEA7455E1FDC;
  8659. extern const uint32_t g_rgctx_KeyValuePair_2_t3E6B023A457DBB6EBCF100C178853FBF5810232B;
  8660. extern const uint32_t g_rgctx_KeyValuePair_2__ctor_mFEAAD0BB9BBCAF0F11F078C260B8249498792528;
  8661. extern const uint32_t g_rgctx_U3CU3Ec__2_1_t9DAEF1E38F9BF84FEB3178FF1587C95A40A40E6F;
  8662. extern const uint32_t g_rgctx_U3CU3Ec__2_1__ctor_mD4B8B139B22DBB7583A2A88BEF9D04EC7B1BBAEA;
  8663. extern const uint32_t g_rgctx_U3CU3Ec__2_1_t9DAEF1E38F9BF84FEB3178FF1587C95A40A40E6F;
  8664. extern const uint32_t g_rgctx_ICollection_1_t87041E4D9CB8F2E1DF1DB8143D22B6852603A452;
  8665. extern const uint32_t g_rgctx_IEnumerable_1_t8B9ECFCC8C075643B4B5D964B825F2B4A288F306;
  8666. extern const uint32_t g_rgctx_IEnumerator_1_t99624A77F4DD94EFBFDCD2F74D3D05107C645765;
  8667. extern const uint32_t g_rgctx_ICollection_1_tAB9D047454D575C2D15D37FA8211B2CE1DD3C721;
  8668. extern const uint32_t g_rgctx_Enumerable_Cast_TisT_tB2BFB713A1DC77DEAA4E30060BC4C91CFFC645A3_mCCC0D5057E5A8D9236A5C451A691519963F61844;
  8669. extern const uint32_t g_rgctx_CollectionUtils_AddRange_TisT_tB2BFB713A1DC77DEAA4E30060BC4C91CFFC645A3_mBD5659F81152FDBA7ECE8817FE799FA73393C596;
  8670. extern const uint32_t g_rgctx_IEnumerable_1_tF90F0B10755A7DBB3EF1232ADB9B4353DE33381F;
  8671. extern const uint32_t g_rgctx_IEnumerator_1_t6F9823FB4EFD1C7A5BE77A878E5587FB65212A0E;
  8672. extern const uint32_t g_rgctx_Func_2_Invoke_m7DC9A149339CD0225306096D3A61EF19A4E7EEB2;
  8673. extern const uint32_t g_rgctx_T_tA5F7CDDA66AB9DF5BC312CDB44C193BF9D1A3C8E;
  8674. extern const uint32_t g_rgctx_List_1_get_Item_m08E8A2DB994E00F10B63D8E4070036BCF9BAAE02;
  8675. extern const uint32_t g_rgctx_List_1_get_Count_m5EBA4610D8D246A76A7A9EECE1995340DB0855CB;
  8676. extern const uint32_t g_rgctx_T_tF404102FD65F6457B28CD504A8C968602C898FB1;
  8677. extern const uint32_t g_rgctx_List_1_get_Item_mECDC1B59CAA5ABB10971FEDBADDA615BFC611C82;
  8678. extern const uint32_t g_rgctx_List_1_get_Count_mBC9D35DE99A1F31FBB229D03EDDA53871805EB80;
  8679. extern const uint32_t g_rgctx_ReflectionUtils_GetAttribute_TisT_tB7C6D2057A4896ACB6EDA91D8FF5ED17E8DABF20_mE0769F91D29CC2BEC28C739B005B9F27E1FAE051;
  8680. extern const uint32_t g_rgctx_ReflectionUtils_GetAttributes_TisT_t1144F4A6A7D3794DCF2454124A5C7FE3589DE37D_m976D5643FD91195A99E62EFFDB6B4231DADAF69E;
  8681. extern const uint32_t g_rgctx_Enumerable_FirstOrDefault_TisT_t1144F4A6A7D3794DCF2454124A5C7FE3589DE37D_m73CE8F8C409DF300AD49A9493FE0B008AFF9665F;
  8682. extern const uint32_t g_rgctx_T_t709C3646D44C7E55AD03E48EF70E5C70B4C916B5;
  8683. extern const uint32_t g_rgctx_TU5BU5D_t90222F69BA655CC039E3879D348F393217345B1E;
  8684. extern const uint32_t g_rgctx_Enumerable_Cast_TisT_t709C3646D44C7E55AD03E48EF70E5C70B4C916B5_m45D0B294C5A62FA931C4C543D2EC02FFC908841A;
  8685. extern const uint32_t g_rgctx_Enumerable_ToArray_TisT_t709C3646D44C7E55AD03E48EF70E5C70B4C916B5_mA83E4E5B7CC6FA92A095390CDF49550E119779A9;
  8686. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass15_0_1_tFBA124505B0A766BE62C1556315AC65AB592FC9E;
  8687. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass15_0_1__ctor_m35EDEE1DDCF7B861D688EEA54D136C2706A25331;
  8688. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass15_0_1_U3CForgivingCaseSensitiveFindU3Eb__0_m0A2A6683F5E1A43908856AD3C70EF9D65D731DA8;
  8689. extern const uint32_t g_rgctx_Func_2_t53DA49B80CA05CD0ABDFC8F94FD4406720BBC3F3;
  8690. extern const uint32_t g_rgctx_Func_2__ctor_mD077775ABD8A69A19DFE292AA6384496F0A24034;
  8691. extern const uint32_t g_rgctx_Enumerable_Where_TisTSource_t63F15F1096EF563FEC23986854A7A65C429B9A64_m9959625048C0B20E748CD09F871156FD96CE59B3;
  8692. extern const uint32_t g_rgctx_Enumerable_Count_TisTSource_t63F15F1096EF563FEC23986854A7A65C429B9A64_m2EEA26213AF7ABFCCA5EBAE5AD788ACE658E9B4B;
  8693. extern const uint32_t g_rgctx_Enumerable_SingleOrDefault_TisTSource_t63F15F1096EF563FEC23986854A7A65C429B9A64_mD5B739B2BA3A61D9AE5D75A753AC7FCAB0D2D168;
  8694. extern const uint32_t g_rgctx_U3CU3Ec__DisplayClass15_0_1_U3CForgivingCaseSensitiveFindU3Eb__1_mEF2F979D2AFFBADCA560F69B7E50A19669E8D489;
  8695. extern const uint32_t g_rgctx_Func_2_Invoke_mCA6BD059F74D7DDC7DF9A6FCEB70A3BC43F16FD7;
  8696. extern const uint32_t g_rgctx_T_t262C903E7DED63AAF9E7A609A0D65269DD56BD0A;
  8697. extern const uint32_t g_rgctx_T_t262C903E7DED63AAF9E7A609A0D65269DD56BD0A;
  8698. extern const uint32_t g_rgctx_U3CGetEnumeratorU3Ed__2_tA097C9D0877408605FAE70EFA6DB5FD8E27A1C33;
  8699. extern const uint32_t g_rgctx_U3CGetEnumeratorU3Ed__2__ctor_mA93DB521206A3CFFEFFC28EB7372FB359089EB4A;
  8700. extern const uint32_t g_rgctx_EnumerableDictionaryWrapper_2_GetEnumerator_mC156EEEE28E8900DCDC5329D7DBA7E323C930F27;
  8701. extern const uint32_t g_rgctx_U3CGetEnumeratorU3Ed__2_U3CU3Em__Finally1_m2D52F43D7BAB4ADAFC4793B4B0FBFF5CEFDF8D24;
  8702. extern const uint32_t g_rgctx_IEnumerable_1_t7ACF44480EBD423C088BFC22EEF7A2237237CE63;
  8703. extern const uint32_t g_rgctx_IEnumerator_1_tF0B2BA72E794BEC6E3E26BEA6AD79CAB5F2F4ABE;
  8704. extern const uint32_t g_rgctx_KeyValuePair_2_get_Key_m2456323D7B5453AEA5DF45655410C51276C973C0;
  8705. extern const uint32_t g_rgctx_TEnumeratorKey_t081E6E1985A52BA15A95D6D5F2509A2B44EF7DCF;
  8706. extern const uint32_t g_rgctx_KeyValuePair_2_get_Value_mF0505AA7824EEA62FBE37F6CC9883C2894077A39;
  8707. extern const uint32_t g_rgctx_TEnumeratorValue_t7EB99909CBA40EA7FF199DD2E21424ADC9130073;
  8708. extern const uint32_t g_rgctx_U3CGetEnumeratorU3Ed__2_System_IDisposable_Dispose_m31DC7A130F9DB1E7B0369F021A6BE5C7015FA911;
  8709. extern const uint32_t g_rgctx_CachedAttributeGetter_1_GetAttribute_m2E6EB1C7475C02A2D1B914A38C1D3DF6ECBDB434;
  8710. extern const uint32_t g_rgctx_CachedAttributeGetter_1_tAF9ECE050495C88AB06F7036638DF0EB8C399614;
  8711. extern const uint32_t g_rgctx_ReflectionUtils_GetAttribute_TisT_tC1E7D65FB11226250FCC1A778FDE9FB9CE0AF144_m928B137D08BDCCCECB035D0A7DC05EF3C9B89732;
  8712. extern const uint32_t g_rgctx_T_tC1E7D65FB11226250FCC1A778FDE9FB9CE0AF144;
  8713. extern const uint32_t g_rgctx_ReflectionUtils_GetAttribute_TisT_tE298EC061BBD565F80244E52856819B151EF32D3_m073C6BA30260A713AFC9A30AD287CCF2573F35FE;
  8714. extern const uint32_t g_rgctx_T_tE298EC061BBD565F80244E52856819B151EF32D3;
  8715. extern const uint32_t g_rgctx_JsonTypeReflector_GetAttribute_TisT_t6C28D5204D33617DC1DAAA8140F5BA30B84B27B2_mCD95B671396C0F8F0042E6647FC1E9F290AC3F15;
  8716. extern const uint32_t g_rgctx_JsonTypeReflector_GetAttribute_TisT_t6C28D5204D33617DC1DAAA8140F5BA30B84B27B2_mEFC37100D72EC72B082172404BEEB553FEDB53AC;
  8717. extern const uint32_t g_rgctx_ReflectionUtils_GetAttribute_TisT_t6C28D5204D33617DC1DAAA8140F5BA30B84B27B2_mD5224BC653F922905F5E0AA6BFC53B7B82E1A309;
  8718. extern const uint32_t g_rgctx_CachedAttributeGetter_1_t2D24F774AEBBAB333B8AF93995DFEC6B2A521416;
  8719. extern const uint32_t g_rgctx_ThreadSafeStore_2_Get_mBE841ED5C406F1425E273DA2D1B075AFD12AEF32;
  8720. extern const uint32_t g_rgctx_JsonTypeReflector_GetAttribute_TisT_t47BB7BF249BCE72BD4C0C31C5F36E31308F7F2AD_m3DEFB81B1864BC895E6BF6CCD8933E8F562A9948;
  8721. extern const uint32_t g_rgctx_Func_2_t39662EFE6F943E1ABC023435300C82238F9C81CB;
  8722. extern const uint32_t g_rgctx_Func_2__ctor_m593187876A553F1C76E8A63BEC48E2D9D9D698C7;
  8723. extern const uint32_t g_rgctx_ThreadSafeStore_2_tB69919C36B47B001BC7D79ED37401BF12604F60C;
  8724. extern const uint32_t g_rgctx_ThreadSafeStore_2__ctor_m87157EB60D98E03413E8FFF9B4A8EFE065BE4C10;
  8725. extern const uint32_t g_rgctx_Extensions_Value_TisJToken_t78F4E878E41125BB40B529918D104EDDC99E00C9_TisU_t2056EC4635D1AB0AFAC501457362735716FF8B7A_mA4A9B4E69BBD9836A944DC0F8B787D1337AA3F8F;
  8726. extern const uint32_t g_rgctx_Extensions_Convert_TisJToken_t78F4E878E41125BB40B529918D104EDDC99E00C9_TisU_tB53B807C3E5BC3AAE5BB1999ACC0BC5BAAE6AC8C_m95C9E985471FC0005A6B00CE7F09BB192972E8CC;
  8727. extern const uint32_t g_rgctx_T_tF479EE14EC6E97EA941F03C2F56F5ABAA7263183;
  8728. extern const uint32_t g_rgctx_U_tFFC2DB9270BCECB5A3B71789794F9D461F319BA4;
  8729. extern const uint32_t g_rgctx_U_tFFC2DB9270BCECB5A3B71789794F9D461F319BA4;
  8730. extern const uint32_t g_rgctx_T_tF479EE14EC6E97EA941F03C2F56F5ABAA7263183;
  8731. extern const uint32_t g_rgctx_U3CU3Ec__0_1_tAC050262A6188501B4F862C87DA6EF6D88455071;
  8732. extern const uint32_t g_rgctx_U3CU3Ec__0_1__ctor_m7C1ECC8BAE684CB2D8DB316E1A6B34CFEBB2F78F;
  8733. extern const uint32_t g_rgctx_U3CU3Ec__0_1_tAC050262A6188501B4F862C87DA6EF6D88455071;
  8734. extern const uint32_t g_rgctx_U3CU3Ec__1_1_t7E4A7410513177EADB8501EFEA64FE5E2137EBA2;
  8735. extern const uint32_t g_rgctx_U3CU3Ec__1_1__ctor_m9DEEB371D07779C86C2C6516F60284C388D85347;
  8736. extern const uint32_t g_rgctx_U3CU3Ec__1_1_t7E4A7410513177EADB8501EFEA64FE5E2137EBA2;
  8737. extern const uint32_t g_rgctx_U3CU3Ec__2_1_tD0ECA876DC861BA08840D94B69C157707E882706;
  8738. extern const uint32_t g_rgctx_U3CU3Ec__2_1__ctor_mFA9A2EF5FA75B51D769377E0C5431AF54A64D420;
  8739. extern const uint32_t g_rgctx_U3CU3Ec__2_1_tD0ECA876DC861BA08840D94B69C157707E882706;
  8740. extern const uint32_t g_rgctx_U3CU3Ec__3_1_t853B23A16191B01E2CA08371C0EF7138AE6A3ADA;
  8741. extern const uint32_t g_rgctx_U3CU3Ec__3_1__ctor_mCDBE51113D53E24D3A09225BF2D737FC497D4181;
  8742. extern const uint32_t g_rgctx_U3CU3Ec__3_1_t853B23A16191B01E2CA08371C0EF7138AE6A3ADA;
  8743. extern const uint32_t g_rgctx_U3CU3Ec__13_2_tC9C66EE509F29CD4FEB778E47606B2B2B758DDF4;
  8744. extern const uint32_t g_rgctx_U3CU3Ec__13_2__ctor_m3E94A99BA00E7FE881FD6613DB5C9CD1220969F6;
  8745. extern const uint32_t g_rgctx_U3CU3Ec__13_2_tC9C66EE509F29CD4FEB778E47606B2B2B758DDF4;
  8746. extern const uint32_t g_rgctx_JEnumerable_1_t5A3DF60D76D3E2822335D9CC4AFEB605EBB86618;
  8747. extern const uint32_t g_rgctx_JEnumerable_1_GetEnumerator_mE07B166CF60780C2FA7A3F7F29169D2ED3573699;
  8748. extern const uint32_t g_rgctx_IEnumerable_1_t8EB402D09F865237233F6DFDA91D255982B6B0F2;
  8749. extern const uint32_t g_rgctx_JEnumerable_1_t5A3DF60D76D3E2822335D9CC4AFEB605EBB86618;
  8750. extern const uint32_t g_rgctx_JEnumerable_1_Equals_m78D39D5E4048D24018E6D552D00275718891ACBA;
  8751. extern const uint32_t g_rgctx_Enumerable_Empty_TisT_t7F8F8DDF18020DF34D4D7EDFE51289D22A635017_m6DE69B44FE65E4BF5172B91156675BA235A7F3FF;
  8752. extern const uint32_t g_rgctx_JEnumerable_1__ctor_m8656C58D13C0C38A2DC0BDD2D04A95580329BF54;
  8753. extern const uint32_t g_rgctx_Extensions_Convert_TisJToken_t78F4E878E41125BB40B529918D104EDDC99E00C9_TisT_t28B7AFBEFD168A3629A3553DC986264117E27B3D_m878D476E227AE5DA67B22A3A134F2DE495E49A81;
  8754. extern const uint32_t g_rgctx_T_tB515ADE5B18D342BC3ED3CE518242D8C81C610B4;
  8755. extern const uint32_t g_rgctx_T_tB515ADE5B18D342BC3ED3CE518242D8C81C610B4;
  8756. extern const uint32_t g_rgctx_T_t1B4225982C678D89CCB1357BA68D6B0199A6A766;
  8757. extern const uint32_t g_rgctx_CustomCreationConverter_1_Create_m7B1A6E6F69A605A4A0E53B13192E5DBEC5D01770;
  8758. extern const uint32_t g_rgctx_T_t6D4A91E960CADF0FC8DBB88BD3A405AE67D73104;
  8759. extern const uint32_t g_rgctx_T_t6D4A91E960CADF0FC8DBB88BD3A405AE67D73104;
  8760. static const Il2CppRGCTXDefinition s_rgctxValues[219] =
  8761. {
  8762. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JsonConvert_DeserializeObject_TisT_t1D0339976A733019BFEB840F6A4B52D4B916D034_m27326170BD78DCFFDD2D476E776FB9123C157F4B },
  8763. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tFF4FBFA926C4821653D0AE3784D7FCDB7DD7ECC7 },
  8764. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tFF4FBFA926C4821653D0AE3784D7FCDB7DD7ECC7 },
  8765. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t85F8BBB220530EBD32FA1C08CE76F8E6B41D2BAA },
  8766. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t85F8BBB220530EBD32FA1C08CE76F8E6B41D2BAA },
  8767. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tF936BA51A96691101332F45120984F223605EA2E },
  8768. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tF936BA51A96691101332F45120984F223605EA2E },
  8769. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionDelegateFactory_CreateGet_TisT_tE8E4E575F8543402A4B19F538D98AE4C9A832ECF_m1C4953CAAE3AD7457C5ACCCDCA2E321083B0D080 },
  8770. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionDelegateFactory_CreateGet_TisT_tE8E4E575F8543402A4B19F538D98AE4C9A832ECF_mF8310F1BB8C6A6F28B15972F564333C0B818DEE0 },
  8771. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionDelegateFactory_CreateSet_TisT_tDBAE66C9B00674DC2684DF8CB5BECFDB0C4518FB_m54A4F68135E1730144E2EA89A3EA093F0BF36986 },
  8772. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionDelegateFactory_CreateSet_TisT_tDBAE66C9B00674DC2684DF8CB5BECFDB0C4518FB_m93387D68841FE9DF98F69175D08BA0ABB74EECBC },
  8773. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass4_0_1_tA09F353E270AB32FB160FE5506A52A15FDE73B5D },
  8774. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass4_0_1__ctor_mACBB96C3B1F9A05B4E1C3659966DAF20BF61B42E },
  8775. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass4_0_1_U3CCreateMethodCallU3Eb__0_m4C69C4E312BAABDAB2287AAD217517F369D7A175 },
  8776. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_MethodCall_2_t2C2730EFA6780778F34D3DCC84B68632E17816EA },
  8777. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_MethodCall_2__ctor_m635B517F893834957574B18046C0A2A18905ACAA },
  8778. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass4_0_1_U3CCreateMethodCallU3Eb__1_m8714359272FEAD3FF310B04A158AA6F1EF76EE4B },
  8779. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass5_0_1_t30B42531C67C9C3C1379D6A9A522974F0CAABB7B },
  8780. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass5_0_1__ctor_m9CEA463401D0B82DB535D04E253D73BB66102730 },
  8781. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass5_0_1_U3CCreateDefaultConstructorU3Eb__0_m5387DE389B8C876BCA12A226036767F64F051DF9 },
  8782. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_1_t45425DA12FA5BAD1B46C3577D026C6D00A86793C },
  8783. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_1__ctor_m71715052759C8E03BB1526B5BDABEAB3D3A11945 },
  8784. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass5_0_1_U3CCreateDefaultConstructorU3Eb__1_m0C7D0781935F3593F9B7017535D484F694057D84 },
  8785. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass6_0_1_tA98C662051A3DA833459FDF6162EB8982F50C78A },
  8786. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass6_0_1__ctor_m6296B3E1489AB012C66A740850720289462B9015 },
  8787. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass6_0_1_U3CCreateGetU3Eb__0_mF1CD2EF1D925F9A2D07D890A85F610B32FF85023 },
  8788. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_tC3A0D9775F5E0F0E45E5F08ECEF7ADC7428976D9 },
  8789. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2__ctor_mEC3DB9E1A0ACF42D7229F31F31581C057B16AAA4 },
  8790. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass7_0_1_tA87FCA03A90EF67FBEC5AB3D7505B4A70D3BECA8 },
  8791. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass7_0_1__ctor_m0E08764C8AE716F020F28B59E648DECFF8CFB78A },
  8792. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass7_0_1_U3CCreateGetU3Eb__0_m4EDCF3216B23B4E69C4890B4071CA3E1BDDF555E },
  8793. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_t45503B3957C59EAA55D937C6A2FDC2BFBBE27CC3 },
  8794. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2__ctor_mEBDDCB356D761265D41F97E13CAC97FA15359728 },
  8795. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass8_0_1_t8EBD9EB584240999E7899CAC28FDC54720A91A83 },
  8796. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass8_0_1__ctor_mD74BF813C2C23C607965BBE5B4F78C2A12B1128E },
  8797. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass8_0_1_U3CCreateSetU3Eb__0_m9682F15C5A2D66F401804464A28751FE01DDE2DE },
  8798. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Action_2_tC1E30C08B03B30D7FC1934787904DB099F9F54CC },
  8799. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Action_2__ctor_mDDE0E81FE3D8F5483E488B10A1E344AE4D5DDBDC },
  8800. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass9_0_1_tF911D7B1A8516162E6DCEFABCC987BEF00880C2C },
  8801. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass9_0_1__ctor_m90741810C83ACDA66148AE44F9D53F9857C38CA4 },
  8802. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass9_0_1_U3CCreateSetU3Eb__0_m6A3EB568E45749397C1F4A5B2978BA955D8C387B },
  8803. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Action_2_t02CDAE8E32E5EDE232595A4F21DDB2D686A3C2FC },
  8804. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Action_2__ctor_m9804AFC10ACDFC40CF9D0F4FE4BA1D4C153F36D5 },
  8805. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t5ADA0CB0850B35B644C33A376341474AE35A90B6 },
  8806. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t76B3685B893622ED11C63A7786A3FDA38244B055 },
  8807. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t6186D6A9CEA304D85892E398887F847D776465BA },
  8808. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t7393E40C0196103555118EEE94CA397CABCF1AF4 },
  8809. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t44CCC7E5C692DFBA2F8F3A16836FF86BC47AA58C },
  8810. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tE192BB671DAAF91AFEEFDC840D74CD7D1FCCFFB2 },
  8811. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2_t4CC796EC6A5B375B6A4286FFE53B70427772C446 },
  8812. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2__ctor_mA76F99F7F81A6DE5120352F23DCCCA2A4F92AF35 },
  8813. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2_TryGetValue_mB6330CAEFE395382CDE10893A64819A595D94457 },
  8814. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ThreadSafeStore_2_AddValue_m3EEC32FF22ADCD0B44A49A98DB176BDDAA5D6557 },
  8815. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_Invoke_mF150D67B3122FF204749346D361390B00DF15266 },
  8816. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2_set_Item_m3D01EF6F7F96EE39044F4DA99ECA92140EFC8573 },
  8817. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2__ctor_mF2B1BBCDD5B625792899BA680457B857E828CD8C },
  8818. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_EqualityComparer_1_get_Default_m363EF2A716BAB26B618090B9F17373FFA740A42B },
  8819. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_EqualityComparer_1_t0C61FDFDCBF668FF6A2BEF814015399B823EFE0B },
  8820. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_EqualityComparer_1_get_Default_m2E386A851C275B5C3308250BC34A45C9D8459625 },
  8821. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_EqualityComparer_1_t91627650D49A5B4CE37634A8597DF22EEF22BE85 },
  8822. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_BidirectionalDictionary_2__ctor_m71840DD910D0AFD8B8916520F66DFD08DF59B993 },
  8823. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_BidirectionalDictionary_2__ctor_m1BAC5AFA9C15646F2DB105BD445CFF8A758EE211 },
  8824. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2_tD85FCC79616DB16776B08E6EE9D1E8E1E0091CA3 },
  8825. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2__ctor_mF73EBA658AE050E040C9E20C1AF047633FCE52FE },
  8826. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2_t782B4A0A95BAFEED89C7A2B6B3C6940D10047110 },
  8827. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Dictionary_2__ctor_m35CC9482BF711D5DADF515DFC7A94DB502F37B0D },
  8828. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IDictionary_2_tE491FCC744FC21FB3BEA31D3625A20ADE4DDA0A0 },
  8829. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TSecond_tF4FAB49A8C81EED732EA432E8D0B254E4FB6EDFD },
  8830. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TFirst_t5822FD72D1278FDE324F36D56A7C43C68FD3A8D7 },
  8831. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IDictionary_2_t322003E4A4556EA5A7A35FA24D7E9782CB16FD95 },
  8832. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ICollection_1_tADCAF4C1C1BE4D3601CD03D309E7B3E61939A673 },
  8833. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tCD984D4A748C34F501128EEF33C2387E840FB048 },
  8834. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerable_1_t48232C94D3A6ED7BCE2E26B384808D46AD8E18A1 },
  8835. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Cast_TisT_tCD984D4A748C34F501128EEF33C2387E840FB048_m973AAC201C940B6E504E4E0FD684B385185ED752 },
  8836. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_VerifyValueType_mA6FCF8A6A08CE5CE3CE5C79CC101C0F6042972CF },
  8837. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_t156AA21449CF7F452B5109988BCB1AAD0BA5A50A },
  8838. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_Add_m5A8FBE574B547BFF0E0D86CC6C4B431263D096C1 },
  8839. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_get_Count_m30F680DADF68E6C350DAFF0C534C92BD2CDCB352 },
  8840. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_IsCompatibleObject_m97CEEE0630431EC6742DC4DCE1A6C247DE363CAC },
  8841. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_Contains_mB27198E05D3B47546EF3DC263388FCC9A743B740 },
  8842. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_Remove_m84BF55AFBE3730047581FCFF0D1E311C9C9068A0 },
  8843. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TU5BU5D_t1E971EA7E4BC94F3D034861B040FE5DCE6AF7F84 },
  8844. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionWrapper_1_CopyTo_mFD68C7DFCE5CAAB9D08D2235C5978E05ECAF7411 },
  8845. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tCD984D4A748C34F501128EEF33C2387E840FB048 },
  8846. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TKey_t8C83DF5CAA81233E36545832F5ACB1C5D3082418 },
  8847. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TValue_t63357E13A3D7B09BE85BC4B615D85D958E99D4AA },
  8848. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IDictionary_2_t48B01303E25D768995D117EA0F155467713A94FD },
  8849. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Cast_TisTKey_t8C83DF5CAA81233E36545832F5ACB1C5D3082418_m08F658EF35E72DCD2AF9E17BFEA0ABE94619D28C },
  8850. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_ToList_TisTKey_t8C83DF5CAA81233E36545832F5ACB1C5D3082418_m04672526B8C57ABF6F0BF22ADBEE48701F7DF2EE },
  8851. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Cast_TisTValue_t63357E13A3D7B09BE85BC4B615D85D958E99D4AA_m40F02B58CEA7D3B5AAA37224491E3A0275938EDD },
  8852. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_ToList_TisTValue_t63357E13A3D7B09BE85BC4B615D85D958E99D4AA_mF7B2343E602D52D653BCA2D012AFF56F9E6CAC14 },
  8853. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_t3FE5C70C38162D06C9BAD3E20B3BD62C34456205 },
  8854. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ICollection_1_t35E23D6244F91282C5406164AAA55A5221437CC9 },
  8855. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2__ctor_m62B45375FFD97C28F6FF6DDBB2DB8F75C687B9B7 },
  8856. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_get_Key_m5DDA49EF9EF7308531FA27419AEEC458979E953F },
  8857. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_get_Value_mF66C130A33A3351144C03FC7591BDC69EB3206DA },
  8858. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec_t9CD40C0A24D556646B8E7B8ACA864F4926EA63AA },
  8859. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec_U3CGetEnumeratorU3Eb__25_0_mD7736C84BC0566656903C4722CC84778F8114B68 },
  8860. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_tF0A9B2B1CEE37A29E8921AE233EB43A99890531B },
  8861. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2__ctor_m174C7408FCA002FC0041EC2768105DF9BE2AFBAC },
  8862. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Select_TisDictionaryEntry_tF60471FAB430320A9C7D4382BF966EAAC06D7A90_TisKeyValuePair_2_t3FE5C70C38162D06C9BAD3E20B3BD62C34456205_m58312BA3852738E0220A021CF1CC5B67689636C7 },
  8863. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerable_1_t1AE4274EDF32744AD339C4D99E4E2376F872C958 },
  8864. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_DictionaryWrapper_2_GetEnumerator_mBA7CB4BB3EBC4DEA8DF1D7C34EE41E08E1771FBA },
  8865. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_DictionaryEnumerator_2_tE1136152649744E62B4200ABDCBB757EB9E89427 },
  8866. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_DictionaryEnumerator_2__ctor_m0FDB3D7699427CBC994049B1BF3BB0778B173BA0 },
  8867. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2U5BU5D_tB43C8B0A2897F141EEF8D89ADBBEBF7851B2FF6B },
  8868. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_DictionaryEnumerator_2_get_Current_mD39CB41DEFC158F0C2E749D134EA23EEF5435D81 },
  8869. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_DictionaryEnumerator_2_get_Entry_mF9B345B6CFCF8091A2B973F194C4CFFD14E2B635 },
  8870. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerator_1_tE48B7D4FFE88C7A804E8D757C605E1E0A07A6618 },
  8871. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_get_Key_mE635E334D9B4F813A324FD1F6311267E8A05AED1 },
  8872. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TEnumeratorKey_t9BEDC2CE471E9C79D1AF730A42EA4AF801D880A8 },
  8873. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_get_Value_m690AA40E1370D4616528F05C5BA12A15AAF7A6DC },
  8874. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TEnumeratorValue_tA85C17CCD6900706DE48CA59F3F1108471D30961 },
  8875. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec_t8D0C4B9E1F2A07315E35DD44918ACD7B0A451CDA },
  8876. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__ctor_mE9D38450D3E2341ADEC5C26FFC16E8CAA54D6D8B },
  8877. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec_t8D0C4B9E1F2A07315E35DD44918ACD7B0A451CDA },
  8878. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TKey_t277C53C5816FAB87D0A1AE917223BB52D8F24B19 },
  8879. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TValue_t154FDF38960EFF5722666CB2D0C7FEA7455E1FDC },
  8880. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_t3E6B023A457DBB6EBCF100C178853FBF5810232B },
  8881. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2__ctor_mFEAAD0BB9BBCAF0F11F078C260B8249498792528 },
  8882. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__2_1_t9DAEF1E38F9BF84FEB3178FF1587C95A40A40E6F },
  8883. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__2_1__ctor_mD4B8B139B22DBB7583A2A88BEF9D04EC7B1BBAEA },
  8884. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__2_1_t9DAEF1E38F9BF84FEB3178FF1587C95A40A40E6F },
  8885. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ICollection_1_t87041E4D9CB8F2E1DF1DB8143D22B6852603A452 },
  8886. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerable_1_t8B9ECFCC8C075643B4B5D964B825F2B4A288F306 },
  8887. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerator_1_t99624A77F4DD94EFBFDCD2F74D3D05107C645765 },
  8888. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ICollection_1_tAB9D047454D575C2D15D37FA8211B2CE1DD3C721 },
  8889. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Cast_TisT_tB2BFB713A1DC77DEAA4E30060BC4C91CFFC645A3_mCCC0D5057E5A8D9236A5C451A691519963F61844 },
  8890. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CollectionUtils_AddRange_TisT_tB2BFB713A1DC77DEAA4E30060BC4C91CFFC645A3_mBD5659F81152FDBA7ECE8817FE799FA73393C596 },
  8891. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerable_1_tF90F0B10755A7DBB3EF1232ADB9B4353DE33381F },
  8892. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerator_1_t6F9823FB4EFD1C7A5BE77A878E5587FB65212A0E },
  8893. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_Invoke_m7DC9A149339CD0225306096D3A61EF19A4E7EEB2 },
  8894. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tA5F7CDDA66AB9DF5BC312CDB44C193BF9D1A3C8E },
  8895. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_List_1_get_Item_m08E8A2DB994E00F10B63D8E4070036BCF9BAAE02 },
  8896. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_List_1_get_Count_m5EBA4610D8D246A76A7A9EECE1995340DB0855CB },
  8897. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tF404102FD65F6457B28CD504A8C968602C898FB1 },
  8898. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_List_1_get_Item_mECDC1B59CAA5ABB10971FEDBADDA615BFC611C82 },
  8899. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_List_1_get_Count_mBC9D35DE99A1F31FBB229D03EDDA53871805EB80 },
  8900. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionUtils_GetAttribute_TisT_tB7C6D2057A4896ACB6EDA91D8FF5ED17E8DABF20_mE0769F91D29CC2BEC28C739B005B9F27E1FAE051 },
  8901. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionUtils_GetAttributes_TisT_t1144F4A6A7D3794DCF2454124A5C7FE3589DE37D_m976D5643FD91195A99E62EFFDB6B4231DADAF69E },
  8902. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_FirstOrDefault_TisT_t1144F4A6A7D3794DCF2454124A5C7FE3589DE37D_m73CE8F8C409DF300AD49A9493FE0B008AFF9665F },
  8903. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t709C3646D44C7E55AD03E48EF70E5C70B4C916B5 },
  8904. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TU5BU5D_t90222F69BA655CC039E3879D348F393217345B1E },
  8905. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Cast_TisT_t709C3646D44C7E55AD03E48EF70E5C70B4C916B5_m45D0B294C5A62FA931C4C543D2EC02FFC908841A },
  8906. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_ToArray_TisT_t709C3646D44C7E55AD03E48EF70E5C70B4C916B5_mA83E4E5B7CC6FA92A095390CDF49550E119779A9 },
  8907. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass15_0_1_tFBA124505B0A766BE62C1556315AC65AB592FC9E },
  8908. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass15_0_1__ctor_m35EDEE1DDCF7B861D688EEA54D136C2706A25331 },
  8909. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass15_0_1_U3CForgivingCaseSensitiveFindU3Eb__0_m0A2A6683F5E1A43908856AD3C70EF9D65D731DA8 },
  8910. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_t53DA49B80CA05CD0ABDFC8F94FD4406720BBC3F3 },
  8911. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2__ctor_mD077775ABD8A69A19DFE292AA6384496F0A24034 },
  8912. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Where_TisTSource_t63F15F1096EF563FEC23986854A7A65C429B9A64_m9959625048C0B20E748CD09F871156FD96CE59B3 },
  8913. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Count_TisTSource_t63F15F1096EF563FEC23986854A7A65C429B9A64_m2EEA26213AF7ABFCCA5EBAE5AD788ACE658E9B4B },
  8914. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_SingleOrDefault_TisTSource_t63F15F1096EF563FEC23986854A7A65C429B9A64_mD5B739B2BA3A61D9AE5D75A753AC7FCAB0D2D168 },
  8915. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__DisplayClass15_0_1_U3CForgivingCaseSensitiveFindU3Eb__1_mEF2F979D2AFFBADCA560F69B7E50A19669E8D489 },
  8916. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_Invoke_mCA6BD059F74D7DDC7DF9A6FCEB70A3BC43F16FD7 },
  8917. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t262C903E7DED63AAF9E7A609A0D65269DD56BD0A },
  8918. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t262C903E7DED63AAF9E7A609A0D65269DD56BD0A },
  8919. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CGetEnumeratorU3Ed__2_tA097C9D0877408605FAE70EFA6DB5FD8E27A1C33 },
  8920. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CGetEnumeratorU3Ed__2__ctor_mA93DB521206A3CFFEFFC28EB7372FB359089EB4A },
  8921. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_EnumerableDictionaryWrapper_2_GetEnumerator_mC156EEEE28E8900DCDC5329D7DBA7E323C930F27 },
  8922. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CGetEnumeratorU3Ed__2_U3CU3Em__Finally1_m2D52F43D7BAB4ADAFC4793B4B0FBFF5CEFDF8D24 },
  8923. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerable_1_t7ACF44480EBD423C088BFC22EEF7A2237237CE63 },
  8924. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerator_1_tF0B2BA72E794BEC6E3E26BEA6AD79CAB5F2F4ABE },
  8925. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_get_Key_m2456323D7B5453AEA5DF45655410C51276C973C0 },
  8926. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TEnumeratorKey_t081E6E1985A52BA15A95D6D5F2509A2B44EF7DCF },
  8927. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_KeyValuePair_2_get_Value_mF0505AA7824EEA62FBE37F6CC9883C2894077A39 },
  8928. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_TEnumeratorValue_t7EB99909CBA40EA7FF199DD2E21424ADC9130073 },
  8929. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CGetEnumeratorU3Ed__2_System_IDisposable_Dispose_m31DC7A130F9DB1E7B0369F021A6BE5C7015FA911 },
  8930. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CachedAttributeGetter_1_GetAttribute_m2E6EB1C7475C02A2D1B914A38C1D3DF6ECBDB434 },
  8931. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CachedAttributeGetter_1_tAF9ECE050495C88AB06F7036638DF0EB8C399614 },
  8932. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionUtils_GetAttribute_TisT_tC1E7D65FB11226250FCC1A778FDE9FB9CE0AF144_m928B137D08BDCCCECB035D0A7DC05EF3C9B89732 },
  8933. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tC1E7D65FB11226250FCC1A778FDE9FB9CE0AF144 },
  8934. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionUtils_GetAttribute_TisT_tE298EC061BBD565F80244E52856819B151EF32D3_m073C6BA30260A713AFC9A30AD287CCF2573F35FE },
  8935. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tE298EC061BBD565F80244E52856819B151EF32D3 },
  8936. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JsonTypeReflector_GetAttribute_TisT_t6C28D5204D33617DC1DAAA8140F5BA30B84B27B2_mCD95B671396C0F8F0042E6647FC1E9F290AC3F15 },
  8937. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JsonTypeReflector_GetAttribute_TisT_t6C28D5204D33617DC1DAAA8140F5BA30B84B27B2_mEFC37100D72EC72B082172404BEEB553FEDB53AC },
  8938. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ReflectionUtils_GetAttribute_TisT_t6C28D5204D33617DC1DAAA8140F5BA30B84B27B2_mD5224BC653F922905F5E0AA6BFC53B7B82E1A309 },
  8939. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CachedAttributeGetter_1_t2D24F774AEBBAB333B8AF93995DFEC6B2A521416 },
  8940. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ThreadSafeStore_2_Get_mBE841ED5C406F1425E273DA2D1B075AFD12AEF32 },
  8941. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JsonTypeReflector_GetAttribute_TisT_t47BB7BF249BCE72BD4C0C31C5F36E31308F7F2AD_m3DEFB81B1864BC895E6BF6CCD8933E8F562A9948 },
  8942. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2_t39662EFE6F943E1ABC023435300C82238F9C81CB },
  8943. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Func_2__ctor_m593187876A553F1C76E8A63BEC48E2D9D9D698C7 },
  8944. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ThreadSafeStore_2_tB69919C36B47B001BC7D79ED37401BF12604F60C },
  8945. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_ThreadSafeStore_2__ctor_m87157EB60D98E03413E8FFF9B4A8EFE065BE4C10 },
  8946. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Extensions_Value_TisJToken_t78F4E878E41125BB40B529918D104EDDC99E00C9_TisU_t2056EC4635D1AB0AFAC501457362735716FF8B7A_mA4A9B4E69BBD9836A944DC0F8B787D1337AA3F8F },
  8947. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Extensions_Convert_TisJToken_t78F4E878E41125BB40B529918D104EDDC99E00C9_TisU_tB53B807C3E5BC3AAE5BB1999ACC0BC5BAAE6AC8C_m95C9E985471FC0005A6B00CE7F09BB192972E8CC },
  8948. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tF479EE14EC6E97EA941F03C2F56F5ABAA7263183 },
  8949. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U_tFFC2DB9270BCECB5A3B71789794F9D461F319BA4 },
  8950. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U_tFFC2DB9270BCECB5A3B71789794F9D461F319BA4 },
  8951. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tF479EE14EC6E97EA941F03C2F56F5ABAA7263183 },
  8952. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__0_1_tAC050262A6188501B4F862C87DA6EF6D88455071 },
  8953. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__0_1__ctor_m7C1ECC8BAE684CB2D8DB316E1A6B34CFEBB2F78F },
  8954. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__0_1_tAC050262A6188501B4F862C87DA6EF6D88455071 },
  8955. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__1_1_t7E4A7410513177EADB8501EFEA64FE5E2137EBA2 },
  8956. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__1_1__ctor_m9DEEB371D07779C86C2C6516F60284C388D85347 },
  8957. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__1_1_t7E4A7410513177EADB8501EFEA64FE5E2137EBA2 },
  8958. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__2_1_tD0ECA876DC861BA08840D94B69C157707E882706 },
  8959. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__2_1__ctor_mFA9A2EF5FA75B51D769377E0C5431AF54A64D420 },
  8960. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__2_1_tD0ECA876DC861BA08840D94B69C157707E882706 },
  8961. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__3_1_t853B23A16191B01E2CA08371C0EF7138AE6A3ADA },
  8962. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__3_1__ctor_mCDBE51113D53E24D3A09225BF2D737FC497D4181 },
  8963. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__3_1_t853B23A16191B01E2CA08371C0EF7138AE6A3ADA },
  8964. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__13_2_tC9C66EE509F29CD4FEB778E47606B2B2B758DDF4 },
  8965. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__13_2__ctor_m3E94A99BA00E7FE881FD6613DB5C9CD1220969F6 },
  8966. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_U3CU3Ec__13_2_tC9C66EE509F29CD4FEB778E47606B2B2B758DDF4 },
  8967. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JEnumerable_1_t5A3DF60D76D3E2822335D9CC4AFEB605EBB86618 },
  8968. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JEnumerable_1_GetEnumerator_mE07B166CF60780C2FA7A3F7F29169D2ED3573699 },
  8969. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_IEnumerable_1_t8EB402D09F865237233F6DFDA91D255982B6B0F2 },
  8970. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JEnumerable_1_t5A3DF60D76D3E2822335D9CC4AFEB605EBB86618 },
  8971. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JEnumerable_1_Equals_m78D39D5E4048D24018E6D552D00275718891ACBA },
  8972. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Enumerable_Empty_TisT_t7F8F8DDF18020DF34D4D7EDFE51289D22A635017_m6DE69B44FE65E4BF5172B91156675BA235A7F3FF },
  8973. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_JEnumerable_1__ctor_m8656C58D13C0C38A2DC0BDD2D04A95580329BF54 },
  8974. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_Extensions_Convert_TisJToken_t78F4E878E41125BB40B529918D104EDDC99E00C9_TisT_t28B7AFBEFD168A3629A3553DC986264117E27B3D_m878D476E227AE5DA67B22A3A134F2DE495E49A81 },
  8975. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tB515ADE5B18D342BC3ED3CE518242D8C81C610B4 },
  8976. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_tB515ADE5B18D342BC3ED3CE518242D8C81C610B4 },
  8977. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t1B4225982C678D89CCB1357BA68D6B0199A6A766 },
  8978. { (Il2CppRGCTXDataType)3, (const Il2CppRGCTXDefinitionData *)&g_rgctx_CustomCreationConverter_1_Create_m7B1A6E6F69A605A4A0E53B13192E5DBEC5D01770 },
  8979. { (Il2CppRGCTXDataType)2, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t6D4A91E960CADF0FC8DBB88BD3A405AE67D73104 },
  8980. { (Il2CppRGCTXDataType)1, (const Il2CppRGCTXDefinitionData *)&g_rgctx_T_t6D4A91E960CADF0FC8DBB88BD3A405AE67D73104 },
  8981. };
  8982. extern const CustomAttributesCacheGenerator g_Newtonsoft_Json_AttributeGenerators[];
  8983. IL2CPP_EXTERN_C const Il2CppCodeGenModule g_Newtonsoft_Json_CodeGenModule;
  8984. const Il2CppCodeGenModule g_Newtonsoft_Json_CodeGenModule =
  8985. {
  8986. "Newtonsoft.Json.dll",
  8987. 2153,
  8988. s_methodPointers,
  8989. 43,
  8990. s_adjustorThunks,
  8991. s_InvokerIndices,
  8992. 0,
  8993. NULL,
  8994. 57,
  8995. s_rgctxIndices,
  8996. 219,
  8997. s_rgctxValues,
  8998. NULL,
  8999. g_Newtonsoft_Json_AttributeGenerators,
  9000. NULL, // module initializer,
  9001. NULL,
  9002. NULL,
  9003. NULL,
  9004. };