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

UnityEngine.UnityWebRequestModule.cpp 411KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. struct VirtualActionInvoker0
  9. {
  10. typedef void (*Action)(void*, const RuntimeMethod*);
  11. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  12. {
  13. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  14. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  15. }
  16. };
  17. template <typename T1>
  18. struct VirtualActionInvoker1
  19. {
  20. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  21. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  22. {
  23. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  24. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  25. }
  26. };
  27. template <typename T1, typename T2, typename T3>
  28. struct VirtualActionInvoker3
  29. {
  30. typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
  31. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  32. {
  33. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  34. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  35. }
  36. };
  37. template <typename R>
  38. struct VirtualFuncInvoker0
  39. {
  40. typedef R (*Func)(void*, const RuntimeMethod*);
  41. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  42. {
  43. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  44. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  45. }
  46. };
  47. template <typename R, typename T1>
  48. struct VirtualFuncInvoker1
  49. {
  50. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  51. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  52. {
  53. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  54. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  55. }
  56. };
  57. template <typename R, typename T1, typename T2, typename T3>
  58. struct VirtualFuncInvoker3
  59. {
  60. typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
  61. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  62. {
  63. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  64. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  65. }
  66. };
  67. template <typename R, typename T1, typename T2, typename T3, typename T4>
  68. struct VirtualFuncInvoker4
  69. {
  70. typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
  71. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
  72. {
  73. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  74. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
  75. }
  76. };
  77. struct InterfaceActionInvoker0
  78. {
  79. typedef void (*Action)(void*, const RuntimeMethod*);
  80. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  81. {
  82. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  83. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  84. }
  85. };
  86. // System.Action`1<UnityEngine.AsyncOperation>
  87. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
  88. // System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding>
  89. struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
  90. // System.Collections.Generic.Dictionary`2<System.Object,System.Object>
  91. struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
  92. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  93. struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83;
  94. // System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry>
  95. struct Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7;
  96. // System.Collections.Generic.IEqualityComparer`1<System.String>
  97. struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
  98. // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
  99. struct KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342;
  100. // System.Collections.Generic.List`1<System.Byte[]>
  101. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4;
  102. // System.Collections.Generic.List`1<System.Object>
  103. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
  104. // System.Collections.Generic.List`1<System.String>
  105. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
  106. // System.Threading.Tasks.Task`1<System.Int32>
  107. struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
  108. // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
  109. struct ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76;
  110. // System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>
  111. struct WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257;
  112. // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
  113. struct EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7;
  114. // System.Byte[][]
  115. struct ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA;
  116. // System.Byte[]
  117. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  118. // System.Char[]
  119. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  120. // System.Delegate[]
  121. struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
  122. // System.Int32[]
  123. struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
  124. // System.IntPtr[]
  125. struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
  126. // System.Object[]
  127. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  128. // System.Diagnostics.StackTrace[]
  129. struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
  130. // System.String[]
  131. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  132. // System.ArgumentException
  133. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
  134. // UnityEngine.AsyncOperation
  135. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C;
  136. // UnityEngine.Networking.CertificateHandler
  137. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;
  138. // System.Globalization.CodePageDataItem
  139. struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
  140. // System.Text.DecoderFallback
  141. struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
  142. // System.DelegateData
  143. struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
  144. // UnityEngine.Networking.DownloadHandler
  145. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;
  146. // UnityEngine.Networking.DownloadHandlerBuffer
  147. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974;
  148. // System.Text.EncoderFallback
  149. struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
  150. // System.Text.Encoding
  151. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
  152. // System.Text.RegularExpressions.ExclusiveReference
  153. struct ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837;
  154. // System.Collections.Hashtable
  155. struct Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D;
  156. // System.Collections.IDictionary
  157. struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
  158. // System.InvalidOperationException
  159. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
  160. // System.IO.MemoryStream
  161. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2;
  162. // System.Reflection.MethodInfo
  163. struct MethodInfo_t;
  164. // System.Text.RegularExpressions.Regex
  165. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772;
  166. // System.Text.RegularExpressions.RegexCode
  167. struct RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7;
  168. // System.Text.RegularExpressions.RegexRunnerFactory
  169. struct RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7;
  170. // System.Runtime.Serialization.SafeSerializationManager
  171. struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
  172. // System.Threading.SemaphoreSlim
  173. struct SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2;
  174. // System.String
  175. struct String_t;
  176. // System.Text.StringBuilder
  177. struct StringBuilder_t;
  178. // UnityEngine.Networking.UnityWebRequest
  179. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;
  180. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  181. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C;
  182. // UnityEngine.Networking.UploadHandler
  183. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;
  184. // UnityEngine.Networking.UploadHandlerRaw
  185. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A;
  186. // System.Uri
  187. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E;
  188. // System.UriParser
  189. struct UriParser_t920B0868286118827C08B08A15A9456AF6C19D81;
  190. // System.Void
  191. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
  192. // UnityEngine.WWWForm
  193. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045;
  194. // System.Text.RegularExpressions.Regex/CachedCodeEntry
  195. struct CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39;
  196. // System.IO.Stream/ReadWriteTask
  197. struct ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05;
  198. // System.Uri/UriInfo
  199. struct UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09;
  200. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
  201. IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var;
  202. IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
  203. IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
  204. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var;
  205. IL2CPP_EXTERN_C RuntimeClass* DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var;
  206. IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
  207. IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
  208. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
  209. IL2CPP_EXTERN_C RuntimeClass* Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var;
  210. IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
  211. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
  212. IL2CPP_EXTERN_C RuntimeClass* List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var;
  213. IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
  214. IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
  215. IL2CPP_EXTERN_C RuntimeClass* MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var;
  216. IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
  217. IL2CPP_EXTERN_C RuntimeClass* Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var;
  218. IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  219. IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
  220. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var;
  221. IL2CPP_EXTERN_C RuntimeClass* UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var;
  222. IL2CPP_EXTERN_C RuntimeClass* Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var;
  223. IL2CPP_EXTERN_C RuntimeClass* WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var;
  224. IL2CPP_EXTERN_C RuntimeClass* WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var;
  225. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var;
  226. IL2CPP_EXTERN_C String_t* _stringLiteral0202811166757AF262261201E48B89F6244FAE6C;
  227. IL2CPP_EXTERN_C String_t* _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708;
  228. IL2CPP_EXTERN_C String_t* _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05;
  229. IL2CPP_EXTERN_C String_t* _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90;
  230. IL2CPP_EXTERN_C String_t* _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE;
  231. IL2CPP_EXTERN_C String_t* _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D;
  232. IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E;
  233. IL2CPP_EXTERN_C String_t* _stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952;
  234. IL2CPP_EXTERN_C String_t* _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA;
  235. IL2CPP_EXTERN_C String_t* _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D;
  236. IL2CPP_EXTERN_C String_t* _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317;
  237. IL2CPP_EXTERN_C String_t* _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86;
  238. IL2CPP_EXTERN_C String_t* _stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5;
  239. IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6;
  240. IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
  241. IL2CPP_EXTERN_C String_t* _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA;
  242. IL2CPP_EXTERN_C String_t* _stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02;
  243. IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84;
  244. IL2CPP_EXTERN_C String_t* _stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6;
  245. IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18;
  246. IL2CPP_EXTERN_C String_t* _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571;
  247. IL2CPP_EXTERN_C String_t* _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F;
  248. IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
  249. IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A;
  250. IL2CPP_EXTERN_C String_t* _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710;
  251. IL2CPP_EXTERN_C String_t* _stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E;
  252. IL2CPP_EXTERN_C String_t* _stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843;
  253. IL2CPP_EXTERN_C String_t* _stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E;
  254. IL2CPP_EXTERN_C String_t* _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15;
  255. IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
  256. IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E;
  257. IL2CPP_EXTERN_C String_t* _stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C;
  258. IL2CPP_EXTERN_C String_t* _stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2;
  259. IL2CPP_EXTERN_C String_t* _stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39;
  260. IL2CPP_EXTERN_C String_t* _stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C;
  261. IL2CPP_EXTERN_C String_t* _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E;
  262. IL2CPP_EXTERN_C String_t* _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D;
  263. IL2CPP_EXTERN_C String_t* _stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36;
  264. IL2CPP_EXTERN_C String_t* _stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69;
  265. IL2CPP_EXTERN_C String_t* _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536;
  266. IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
  267. IL2CPP_EXTERN_C String_t* _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50;
  268. IL2CPP_EXTERN_C String_t* _stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2;
  269. IL2CPP_EXTERN_C String_t* _stringLiteralCFD59FD74BD22E570703A8BC6B77F6081661FEEB;
  270. IL2CPP_EXTERN_C String_t* _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF;
  271. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  272. IL2CPP_EXTERN_C String_t* _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A;
  273. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var;
  274. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var;
  275. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var;
  276. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var;
  277. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var;
  278. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var;
  279. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var;
  280. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var;
  281. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var;
  282. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
  283. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var;
  284. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var;
  285. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var;
  286. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
  287. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var;
  288. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var;
  289. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var;
  290. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var;
  291. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_RuntimeMethod_var;
  292. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var;
  293. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var;
  294. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var;
  295. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var;
  296. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var;
  297. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var;
  298. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var;
  299. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var;
  300. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var;
  301. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var;
  302. IL2CPP_EXTERN_C const RuntimeMethod* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var;
  303. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804;;
  304. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;
  305. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com;;
  306. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;
  307. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke;;
  308. struct Delegate_t_marshaled_com;
  309. struct Delegate_t_marshaled_pinvoke;
  310. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB;;
  311. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;
  312. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com;;
  313. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;
  314. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke;;
  315. struct Exception_t_marshaled_com;
  316. struct Exception_t_marshaled_pinvoke;
  317. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F;;
  318. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;
  319. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com;;
  320. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;
  321. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke;;
  322. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6;;
  323. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;
  324. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com;;
  325. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;
  326. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke;;
  327. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
  328. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
  329. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
  330. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
  331. IL2CPP_EXTERN_C_BEGIN
  332. IL2CPP_EXTERN_C_END
  333. #ifdef __clang__
  334. #pragma clang diagnostic push
  335. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  336. #pragma clang diagnostic ignored "-Wunused-variable"
  337. #endif
  338. // <Module>
  339. struct U3CModuleU3E_t42F165DEA2597BD5AB2C914FCF80349ECF878162
  340. {
  341. };
  342. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  343. struct Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83 : public RuntimeObject
  344. {
  345. // System.Int32[] System.Collections.Generic.Dictionary`2::_buckets
  346. Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets_0;
  347. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::_entries
  348. EntryU5BU5D_t1AF33AD0B7330843448956EC4277517081658AE7* ____entries_1;
  349. // System.Int32 System.Collections.Generic.Dictionary`2::_count
  350. int32_t ____count_2;
  351. // System.Int32 System.Collections.Generic.Dictionary`2::_freeList
  352. int32_t ____freeList_3;
  353. // System.Int32 System.Collections.Generic.Dictionary`2::_freeCount
  354. int32_t ____freeCount_4;
  355. // System.Int32 System.Collections.Generic.Dictionary`2::_version
  356. int32_t ____version_5;
  357. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::_comparer
  358. RuntimeObject* ____comparer_6;
  359. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_keys
  360. KeyCollection_t2EDD317F5771E575ACB63527B5AFB71291040342* ____keys_7;
  361. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
  362. ValueCollection_t238D0D2427C6B841A01F522A41540165A2C4AE76* ____values_8;
  363. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  364. RuntimeObject* ____syncRoot_9;
  365. };
  366. // System.Collections.Generic.List`1<System.Byte[]>
  367. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4 : public RuntimeObject
  368. {
  369. // T[] System.Collections.Generic.List`1::_items
  370. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ____items_1;
  371. // System.Int32 System.Collections.Generic.List`1::_size
  372. int32_t ____size_2;
  373. // System.Int32 System.Collections.Generic.List`1::_version
  374. int32_t ____version_3;
  375. // System.Object System.Collections.Generic.List`1::_syncRoot
  376. RuntimeObject* ____syncRoot_4;
  377. };
  378. // System.Collections.Generic.List`1<System.Object>
  379. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
  380. {
  381. // T[] System.Collections.Generic.List`1::_items
  382. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items_1;
  383. // System.Int32 System.Collections.Generic.List`1::_size
  384. int32_t ____size_2;
  385. // System.Int32 System.Collections.Generic.List`1::_version
  386. int32_t ____version_3;
  387. // System.Object System.Collections.Generic.List`1::_syncRoot
  388. RuntimeObject* ____syncRoot_4;
  389. };
  390. // System.Collections.Generic.List`1<System.String>
  391. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
  392. {
  393. // T[] System.Collections.Generic.List`1::_items
  394. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
  395. // System.Int32 System.Collections.Generic.List`1::_size
  396. int32_t ____size_2;
  397. // System.Int32 System.Collections.Generic.List`1::_version
  398. int32_t ____version_3;
  399. // System.Object System.Collections.Generic.List`1::_syncRoot
  400. RuntimeObject* ____syncRoot_4;
  401. };
  402. // System.Text.Encoding
  403. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
  404. {
  405. // System.Int32 System.Text.Encoding::m_codePage
  406. int32_t ___m_codePage_9;
  407. // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
  408. CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem_10;
  409. // System.Boolean System.Text.Encoding::m_deserializedFromEverett
  410. bool ___m_deserializedFromEverett_11;
  411. // System.Boolean System.Text.Encoding::m_isReadOnly
  412. bool ___m_isReadOnly_12;
  413. // System.Text.EncoderFallback System.Text.Encoding::encoderFallback
  414. EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback_13;
  415. // System.Text.DecoderFallback System.Text.Encoding::decoderFallback
  416. DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback_14;
  417. };
  418. // System.MarshalByRefObject
  419. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE : public RuntimeObject
  420. {
  421. // System.Object System.MarshalByRefObject::_identity
  422. RuntimeObject* ____identity_0;
  423. };
  424. // Native definition for P/Invoke marshalling of System.MarshalByRefObject
  425. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_pinvoke
  426. {
  427. Il2CppIUnknown* ____identity_0;
  428. };
  429. // Native definition for COM marshalling of System.MarshalByRefObject
  430. struct MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE_marshaled_com
  431. {
  432. Il2CppIUnknown* ____identity_0;
  433. };
  434. // System.String
  435. struct String_t : public RuntimeObject
  436. {
  437. // System.Int32 System.String::_stringLength
  438. int32_t ____stringLength_4;
  439. // System.Char System.String::_firstChar
  440. Il2CppChar ____firstChar_5;
  441. };
  442. // System.Text.StringBuilder
  443. struct StringBuilder_t : public RuntimeObject
  444. {
  445. // System.Char[] System.Text.StringBuilder::m_ChunkChars
  446. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___m_ChunkChars_0;
  447. // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
  448. StringBuilder_t* ___m_ChunkPrevious_1;
  449. // System.Int32 System.Text.StringBuilder::m_ChunkLength
  450. int32_t ___m_ChunkLength_2;
  451. // System.Int32 System.Text.StringBuilder::m_ChunkOffset
  452. int32_t ___m_ChunkOffset_3;
  453. // System.Int32 System.Text.StringBuilder::m_MaxCapacity
  454. int32_t ___m_MaxCapacity_4;
  455. };
  456. // System.Uri
  457. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E : public RuntimeObject
  458. {
  459. // System.String System.Uri::m_String
  460. String_t* ___m_String_13;
  461. // System.String System.Uri::m_originalUnicodeString
  462. String_t* ___m_originalUnicodeString_14;
  463. // System.UriParser System.Uri::m_Syntax
  464. UriParser_t920B0868286118827C08B08A15A9456AF6C19D81* ___m_Syntax_15;
  465. // System.String System.Uri::m_DnsSafeHost
  466. String_t* ___m_DnsSafeHost_16;
  467. // System.Uri/Flags System.Uri::m_Flags
  468. uint64_t ___m_Flags_17;
  469. // System.Uri/UriInfo System.Uri::m_Info
  470. UriInfo_t5F91F77A93545DDDA6BB24A609BAF5E232CC1A09* ___m_Info_18;
  471. // System.Boolean System.Uri::m_iriParsing
  472. bool ___m_iriParsing_19;
  473. };
  474. // System.ValueType
  475. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
  476. {
  477. };
  478. // Native definition for P/Invoke marshalling of System.ValueType
  479. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
  480. {
  481. };
  482. // Native definition for COM marshalling of System.ValueType
  483. struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
  484. {
  485. };
  486. // UnityEngine.WWWForm
  487. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045 : public RuntimeObject
  488. {
  489. // System.Collections.Generic.List`1<System.Byte[]> UnityEngine.WWWForm::formData
  490. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* ___formData_0;
  491. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fieldNames
  492. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___fieldNames_1;
  493. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fileNames
  494. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___fileNames_2;
  495. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::types
  496. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___types_3;
  497. // System.Byte[] UnityEngine.WWWForm::boundary
  498. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___boundary_4;
  499. // System.Boolean UnityEngine.WWWForm::containsFiles
  500. bool ___containsFiles_5;
  501. };
  502. // UnityEngine.WWWTranscoder
  503. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B : public RuntimeObject
  504. {
  505. };
  506. // UnityEngineInternal.WebRequestUtils
  507. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443 : public RuntimeObject
  508. {
  509. };
  510. // UnityEngine.YieldInstruction
  511. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
  512. {
  513. };
  514. // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
  515. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  516. {
  517. };
  518. // Native definition for COM marshalling of UnityEngine.YieldInstruction
  519. struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  520. {
  521. };
  522. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  523. struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
  524. {
  525. // TKey System.Collections.Generic.KeyValuePair`2::key
  526. RuntimeObject* ___key_0;
  527. // TValue System.Collections.Generic.KeyValuePair`2::value
  528. RuntimeObject* ___value_1;
  529. };
  530. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  531. struct KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A
  532. {
  533. // TKey System.Collections.Generic.KeyValuePair`2::key
  534. String_t* ___key_0;
  535. // TValue System.Collections.Generic.KeyValuePair`2::value
  536. String_t* ___value_1;
  537. };
  538. // Unity.Collections.NativeArray`1<System.Byte>
  539. struct NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF
  540. {
  541. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  542. void* ___m_Buffer_0;
  543. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  544. int32_t ___m_Length_1;
  545. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  546. int32_t ___m_AllocatorLabel_2;
  547. };
  548. // System.Boolean
  549. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
  550. {
  551. // System.Boolean System.Boolean::m_value
  552. bool ___m_value_0;
  553. };
  554. // System.Byte
  555. struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
  556. {
  557. // System.Byte System.Byte::m_value
  558. uint8_t ___m_value_0;
  559. };
  560. // System.Char
  561. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
  562. {
  563. // System.Char System.Char::m_value
  564. Il2CppChar ___m_value_0;
  565. };
  566. // System.Int32
  567. struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
  568. {
  569. // System.Int32 System.Int32::m_value
  570. int32_t ___m_value_0;
  571. };
  572. // System.Int64
  573. struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
  574. {
  575. // System.Int64 System.Int64::m_value
  576. int64_t ___m_value_0;
  577. };
  578. // System.IntPtr
  579. struct IntPtr_t
  580. {
  581. // System.Void* System.IntPtr::m_value
  582. void* ___m_value_0;
  583. };
  584. // System.SByte
  585. struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
  586. {
  587. // System.SByte System.SByte::m_value
  588. int8_t ___m_value_0;
  589. };
  590. // System.Single
  591. struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
  592. {
  593. // System.Single System.Single::m_value
  594. float ___m_value_0;
  595. };
  596. // System.IO.Stream
  597. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE : public MarshalByRefObject_t8C2F4C5854177FD60439EB1FCCFC1B3CFAFE8DCE
  598. {
  599. // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
  600. ReadWriteTask_t0821BF49EE38596C7734E86E1A6A39D769BE2C05* ____activeReadWriteTask_2;
  601. // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
  602. SemaphoreSlim_t0D5CB5685D9BFA5BF95CEC6E7395490F933E8DB2* ____asyncActiveSemaphore_3;
  603. };
  604. // System.TimeSpan
  605. struct TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A
  606. {
  607. // System.Int64 System.TimeSpan::_ticks
  608. int64_t ____ticks_22;
  609. };
  610. // System.UInt64
  611. struct UInt64_t8F12534CC8FC4B5860F2A2CD1EE79D322E7A41AF
  612. {
  613. // System.UInt64 System.UInt64::m_value
  614. uint64_t ___m_value_0;
  615. };
  616. // System.Void
  617. struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
  618. {
  619. union
  620. {
  621. struct
  622. {
  623. };
  624. uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
  625. };
  626. };
  627. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  628. struct Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9
  629. {
  630. // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
  631. Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* ____dictionary_0;
  632. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
  633. int32_t ____version_1;
  634. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
  635. int32_t ____index_2;
  636. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
  637. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current_3;
  638. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
  639. int32_t ____getEnumeratorRetType_4;
  640. };
  641. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  642. struct Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562
  643. {
  644. // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_dictionary
  645. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* ____dictionary_0;
  646. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_version
  647. int32_t ____version_1;
  648. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_index
  649. int32_t ____index_2;
  650. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::_current
  651. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A ____current_3;
  652. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::_getEnumeratorRetType
  653. int32_t ____getEnumeratorRetType_4;
  654. };
  655. // UnityEngine.AsyncOperation
  656. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
  657. {
  658. // System.IntPtr UnityEngine.AsyncOperation::m_Ptr
  659. intptr_t ___m_Ptr_0;
  660. // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
  661. Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback_1;
  662. };
  663. // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
  664. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
  665. {
  666. intptr_t ___m_Ptr_0;
  667. Il2CppMethodPointer ___m_completeCallback_1;
  668. };
  669. // Native definition for COM marshalling of UnityEngine.AsyncOperation
  670. struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
  671. {
  672. intptr_t ___m_Ptr_0;
  673. Il2CppMethodPointer ___m_completeCallback_1;
  674. };
  675. // UnityEngine.Networking.CertificateHandler
  676. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804 : public RuntimeObject
  677. {
  678. // System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
  679. intptr_t ___m_Ptr_0;
  680. };
  681. // Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler
  682. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke
  683. {
  684. intptr_t ___m_Ptr_0;
  685. };
  686. // Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
  687. struct CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com
  688. {
  689. intptr_t ___m_Ptr_0;
  690. };
  691. // System.Delegate
  692. struct Delegate_t : public RuntimeObject
  693. {
  694. // System.IntPtr System.Delegate::method_ptr
  695. Il2CppMethodPointer ___method_ptr_0;
  696. // System.IntPtr System.Delegate::invoke_impl
  697. intptr_t ___invoke_impl_1;
  698. // System.Object System.Delegate::m_target
  699. RuntimeObject* ___m_target_2;
  700. // System.IntPtr System.Delegate::method
  701. intptr_t ___method_3;
  702. // System.IntPtr System.Delegate::delegate_trampoline
  703. intptr_t ___delegate_trampoline_4;
  704. // System.IntPtr System.Delegate::extra_arg
  705. intptr_t ___extra_arg_5;
  706. // System.IntPtr System.Delegate::method_code
  707. intptr_t ___method_code_6;
  708. // System.IntPtr System.Delegate::interp_method
  709. intptr_t ___interp_method_7;
  710. // System.IntPtr System.Delegate::interp_invoke_impl
  711. intptr_t ___interp_invoke_impl_8;
  712. // System.Reflection.MethodInfo System.Delegate::method_info
  713. MethodInfo_t* ___method_info_9;
  714. // System.Reflection.MethodInfo System.Delegate::original_method_info
  715. MethodInfo_t* ___original_method_info_10;
  716. // System.DelegateData System.Delegate::data
  717. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  718. // System.Boolean System.Delegate::method_is_virtual
  719. bool ___method_is_virtual_12;
  720. };
  721. // Native definition for P/Invoke marshalling of System.Delegate
  722. struct Delegate_t_marshaled_pinvoke
  723. {
  724. intptr_t ___method_ptr_0;
  725. intptr_t ___invoke_impl_1;
  726. Il2CppIUnknown* ___m_target_2;
  727. intptr_t ___method_3;
  728. intptr_t ___delegate_trampoline_4;
  729. intptr_t ___extra_arg_5;
  730. intptr_t ___method_code_6;
  731. intptr_t ___interp_method_7;
  732. intptr_t ___interp_invoke_impl_8;
  733. MethodInfo_t* ___method_info_9;
  734. MethodInfo_t* ___original_method_info_10;
  735. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  736. int32_t ___method_is_virtual_12;
  737. };
  738. // Native definition for COM marshalling of System.Delegate
  739. struct Delegate_t_marshaled_com
  740. {
  741. intptr_t ___method_ptr_0;
  742. intptr_t ___invoke_impl_1;
  743. Il2CppIUnknown* ___m_target_2;
  744. intptr_t ___method_3;
  745. intptr_t ___delegate_trampoline_4;
  746. intptr_t ___extra_arg_5;
  747. intptr_t ___method_code_6;
  748. intptr_t ___interp_method_7;
  749. intptr_t ___interp_invoke_impl_8;
  750. MethodInfo_t* ___method_info_9;
  751. MethodInfo_t* ___original_method_info_10;
  752. DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data_11;
  753. int32_t ___method_is_virtual_12;
  754. };
  755. // UnityEngine.Networking.DownloadHandler
  756. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB : public RuntimeObject
  757. {
  758. // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
  759. intptr_t ___m_Ptr_0;
  760. };
  761. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
  762. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  763. {
  764. intptr_t ___m_Ptr_0;
  765. };
  766. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
  767. struct DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  768. {
  769. intptr_t ___m_Ptr_0;
  770. };
  771. // System.Exception
  772. struct Exception_t : public RuntimeObject
  773. {
  774. // System.String System.Exception::_className
  775. String_t* ____className_1;
  776. // System.String System.Exception::_message
  777. String_t* ____message_2;
  778. // System.Collections.IDictionary System.Exception::_data
  779. RuntimeObject* ____data_3;
  780. // System.Exception System.Exception::_innerException
  781. Exception_t* ____innerException_4;
  782. // System.String System.Exception::_helpURL
  783. String_t* ____helpURL_5;
  784. // System.Object System.Exception::_stackTrace
  785. RuntimeObject* ____stackTrace_6;
  786. // System.String System.Exception::_stackTraceString
  787. String_t* ____stackTraceString_7;
  788. // System.String System.Exception::_remoteStackTraceString
  789. String_t* ____remoteStackTraceString_8;
  790. // System.Int32 System.Exception::_remoteStackIndex
  791. int32_t ____remoteStackIndex_9;
  792. // System.Object System.Exception::_dynamicMethods
  793. RuntimeObject* ____dynamicMethods_10;
  794. // System.Int32 System.Exception::_HResult
  795. int32_t ____HResult_11;
  796. // System.String System.Exception::_source
  797. String_t* ____source_12;
  798. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  799. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  800. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  801. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  802. // System.IntPtr[] System.Exception::native_trace_ips
  803. IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832* ___native_trace_ips_15;
  804. // System.Int32 System.Exception::caught_in_unmanaged
  805. int32_t ___caught_in_unmanaged_16;
  806. };
  807. // Native definition for P/Invoke marshalling of System.Exception
  808. struct Exception_t_marshaled_pinvoke
  809. {
  810. char* ____className_1;
  811. char* ____message_2;
  812. RuntimeObject* ____data_3;
  813. Exception_t_marshaled_pinvoke* ____innerException_4;
  814. char* ____helpURL_5;
  815. Il2CppIUnknown* ____stackTrace_6;
  816. char* ____stackTraceString_7;
  817. char* ____remoteStackTraceString_8;
  818. int32_t ____remoteStackIndex_9;
  819. Il2CppIUnknown* ____dynamicMethods_10;
  820. int32_t ____HResult_11;
  821. char* ____source_12;
  822. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  823. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  824. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  825. int32_t ___caught_in_unmanaged_16;
  826. };
  827. // Native definition for COM marshalling of System.Exception
  828. struct Exception_t_marshaled_com
  829. {
  830. Il2CppChar* ____className_1;
  831. Il2CppChar* ____message_2;
  832. RuntimeObject* ____data_3;
  833. Exception_t_marshaled_com* ____innerException_4;
  834. Il2CppChar* ____helpURL_5;
  835. Il2CppIUnknown* ____stackTrace_6;
  836. Il2CppChar* ____stackTraceString_7;
  837. Il2CppChar* ____remoteStackTraceString_8;
  838. int32_t ____remoteStackIndex_9;
  839. Il2CppIUnknown* ____dynamicMethods_10;
  840. int32_t ____HResult_11;
  841. Il2CppChar* ____source_12;
  842. SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6* ____safeSerializationManager_13;
  843. StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF* ___captured_traces_14;
  844. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  845. int32_t ___caught_in_unmanaged_16;
  846. };
  847. // System.IO.MemoryStream
  848. struct MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2 : public Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE
  849. {
  850. // System.Byte[] System.IO.MemoryStream::_buffer
  851. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ____buffer_4;
  852. // System.Int32 System.IO.MemoryStream::_origin
  853. int32_t ____origin_5;
  854. // System.Int32 System.IO.MemoryStream::_position
  855. int32_t ____position_6;
  856. // System.Int32 System.IO.MemoryStream::_length
  857. int32_t ____length_7;
  858. // System.Int32 System.IO.MemoryStream::_capacity
  859. int32_t ____capacity_8;
  860. // System.Boolean System.IO.MemoryStream::_expandable
  861. bool ____expandable_9;
  862. // System.Boolean System.IO.MemoryStream::_writable
  863. bool ____writable_10;
  864. // System.Boolean System.IO.MemoryStream::_exposable
  865. bool ____exposable_11;
  866. // System.Boolean System.IO.MemoryStream::_isOpen
  867. bool ____isOpen_12;
  868. // System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
  869. Task_1_t4C228DE57804012969575431CFF12D57C875552D* ____lastReadTask_13;
  870. };
  871. // System.Text.RegularExpressions.Regex
  872. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772 : public RuntimeObject
  873. {
  874. // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
  875. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___internalMatchTimeout_10;
  876. // System.String System.Text.RegularExpressions.Regex::pattern
  877. String_t* ___pattern_12;
  878. // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
  879. int32_t ___roptions_13;
  880. // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
  881. RegexRunnerFactory_t72373B672C7D8785F63516DDD88834F286AF41E7* ___factory_14;
  882. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
  883. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___caps_15;
  884. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
  885. Hashtable_tEFC3B6496E6747787D8BB761B51F2AE3A8CFFE2D* ___capnames_16;
  886. // System.String[] System.Text.RegularExpressions.Regex::capslist
  887. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___capslist_17;
  888. // System.Int32 System.Text.RegularExpressions.Regex::capsize
  889. int32_t ___capsize_18;
  890. // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::_runnerref
  891. ExclusiveReference_t411F04D4CC440EB7399290027E1BBABEF4C28837* ____runnerref_19;
  892. // System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement> System.Text.RegularExpressions.Regex::_replref
  893. WeakReference_1_tDC6E83496181D1BAFA3B89CBC00BCD0B64450257* ____replref_20;
  894. // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::_code
  895. RegexCode_tA23175D9DA02AD6A79B073E10EC5D225372ED6C7* ____code_21;
  896. // System.Boolean System.Text.RegularExpressions.Regex::_refsInitialized
  897. bool ____refsInitialized_22;
  898. };
  899. // UnityEngine.Networking.UploadHandler
  900. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6 : public RuntimeObject
  901. {
  902. // System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr
  903. intptr_t ___m_Ptr_0;
  904. };
  905. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler
  906. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  907. {
  908. intptr_t ___m_Ptr_0;
  909. };
  910. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandler
  911. struct UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  912. {
  913. intptr_t ___m_Ptr_0;
  914. };
  915. // UnityEngine.Networking.DownloadHandlerBuffer
  916. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974 : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB
  917. {
  918. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandlerBuffer::m_NativeData
  919. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData_1;
  920. };
  921. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  922. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke
  923. {
  924. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData_1;
  925. };
  926. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  927. struct DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com : public DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com
  928. {
  929. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_NativeData_1;
  930. };
  931. // System.MulticastDelegate
  932. struct MulticastDelegate_t : public Delegate_t
  933. {
  934. // System.Delegate[] System.MulticastDelegate::delegates
  935. DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates_13;
  936. };
  937. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  938. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  939. {
  940. Delegate_t_marshaled_pinvoke** ___delegates_13;
  941. };
  942. // Native definition for COM marshalling of System.MulticastDelegate
  943. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  944. {
  945. Delegate_t_marshaled_com** ___delegates_13;
  946. };
  947. // System.SystemException
  948. struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
  949. {
  950. };
  951. // UnityEngine.Networking.UnityWebRequest
  952. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F : public RuntimeObject
  953. {
  954. // System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr
  955. intptr_t ___m_Ptr_0;
  956. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler
  957. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___m_DownloadHandler_1;
  958. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler
  959. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___m_UploadHandler_2;
  960. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::m_CertificateHandler
  961. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* ___m_CertificateHandler_3;
  962. // System.Uri UnityEngine.Networking.UnityWebRequest::m_Uri
  963. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri_4;
  964. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeCertificateHandlerOnDispose>k__BackingField
  965. bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  966. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField
  967. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  968. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField
  969. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  970. };
  971. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest
  972. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke
  973. {
  974. intptr_t ___m_Ptr_0;
  975. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke ___m_DownloadHandler_1;
  976. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke ___m_UploadHandler_2;
  977. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke ___m_CertificateHandler_3;
  978. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri_4;
  979. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  980. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  981. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  982. };
  983. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest
  984. struct UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com
  985. {
  986. intptr_t ___m_Ptr_0;
  987. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com* ___m_DownloadHandler_1;
  988. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com* ___m_UploadHandler_2;
  989. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com* ___m_CertificateHandler_3;
  990. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___m_Uri_4;
  991. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  992. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  993. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  994. };
  995. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  996. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C
  997. {
  998. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequestAsyncOperation::<webRequest>k__BackingField
  999. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___U3CwebRequestU3Ek__BackingField_2;
  1000. };
  1001. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  1002. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke
  1003. {
  1004. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField_2;
  1005. };
  1006. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  1007. struct UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com : public AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com
  1008. {
  1009. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com* ___U3CwebRequestU3Ek__BackingField_2;
  1010. };
  1011. // UnityEngine.Networking.UploadHandlerRaw
  1012. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6
  1013. {
  1014. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.UploadHandlerRaw::m_Payload
  1015. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload_1;
  1016. };
  1017. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandlerRaw
  1018. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke
  1019. {
  1020. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload_1;
  1021. };
  1022. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandlerRaw
  1023. struct UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com : public UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com
  1024. {
  1025. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___m_Payload_1;
  1026. };
  1027. // System.Action`1<UnityEngine.AsyncOperation>
  1028. struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB : public MulticastDelegate_t
  1029. {
  1030. };
  1031. // System.ArgumentException
  1032. struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1033. {
  1034. // System.String System.ArgumentException::_paramName
  1035. String_t* ____paramName_18;
  1036. };
  1037. // System.FormatException
  1038. struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1039. {
  1040. };
  1041. // System.InvalidOperationException
  1042. struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1043. {
  1044. };
  1045. // System.NotSupportedException
  1046. struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
  1047. {
  1048. };
  1049. // <Module>
  1050. // <Module>
  1051. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  1052. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  1053. // System.Collections.Generic.List`1<System.Byte[]>
  1054. struct List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_StaticFields
  1055. {
  1056. // T[] System.Collections.Generic.List`1::s_emptyArray
  1057. ByteU5BU5DU5BU5D_t19A0C6D66F22DF673E9CDB37DEF566FE0EC947FA* ___s_emptyArray_5;
  1058. };
  1059. // System.Collections.Generic.List`1<System.Byte[]>
  1060. // System.Collections.Generic.List`1<System.Object>
  1061. struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
  1062. {
  1063. // T[] System.Collections.Generic.List`1::s_emptyArray
  1064. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray_5;
  1065. };
  1066. // System.Collections.Generic.List`1<System.Object>
  1067. // System.Collections.Generic.List`1<System.String>
  1068. struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
  1069. {
  1070. // T[] System.Collections.Generic.List`1::s_emptyArray
  1071. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
  1072. };
  1073. // System.Collections.Generic.List`1<System.String>
  1074. // System.Text.Encoding
  1075. struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
  1076. {
  1077. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
  1078. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding_0;
  1079. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
  1080. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding_1;
  1081. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
  1082. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode_2;
  1083. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
  1084. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding_3;
  1085. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
  1086. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding_4;
  1087. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
  1088. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding_5;
  1089. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
  1090. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding_6;
  1091. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
  1092. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding_7;
  1093. // System.Collections.Generic.Dictionary`2<System.Int32,System.Text.Encoding> modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
  1094. Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings_8;
  1095. // System.Object System.Text.Encoding::s_InternalSyncObject
  1096. RuntimeObject* ___s_InternalSyncObject_15;
  1097. };
  1098. // System.Text.Encoding
  1099. // System.String
  1100. struct String_t_StaticFields
  1101. {
  1102. // System.String System.String::Empty
  1103. String_t* ___Empty_6;
  1104. };
  1105. // System.String
  1106. // System.Text.StringBuilder
  1107. // System.Text.StringBuilder
  1108. // System.Uri
  1109. struct Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_StaticFields
  1110. {
  1111. // System.String System.Uri::UriSchemeFile
  1112. String_t* ___UriSchemeFile_0;
  1113. // System.String System.Uri::UriSchemeFtp
  1114. String_t* ___UriSchemeFtp_1;
  1115. // System.String System.Uri::UriSchemeGopher
  1116. String_t* ___UriSchemeGopher_2;
  1117. // System.String System.Uri::UriSchemeHttp
  1118. String_t* ___UriSchemeHttp_3;
  1119. // System.String System.Uri::UriSchemeHttps
  1120. String_t* ___UriSchemeHttps_4;
  1121. // System.String System.Uri::UriSchemeWs
  1122. String_t* ___UriSchemeWs_5;
  1123. // System.String System.Uri::UriSchemeWss
  1124. String_t* ___UriSchemeWss_6;
  1125. // System.String System.Uri::UriSchemeMailto
  1126. String_t* ___UriSchemeMailto_7;
  1127. // System.String System.Uri::UriSchemeNews
  1128. String_t* ___UriSchemeNews_8;
  1129. // System.String System.Uri::UriSchemeNntp
  1130. String_t* ___UriSchemeNntp_9;
  1131. // System.String System.Uri::UriSchemeNetTcp
  1132. String_t* ___UriSchemeNetTcp_10;
  1133. // System.String System.Uri::UriSchemeNetPipe
  1134. String_t* ___UriSchemeNetPipe_11;
  1135. // System.String System.Uri::SchemeDelimiter
  1136. String_t* ___SchemeDelimiter_12;
  1137. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
  1138. bool ___s_ConfigInitialized_20;
  1139. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
  1140. bool ___s_ConfigInitializing_21;
  1141. // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
  1142. int32_t ___s_IdnScope_22;
  1143. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
  1144. bool ___s_IriParsing_23;
  1145. // System.Boolean System.Uri::useDotNetRelativeOrAbsolute
  1146. bool ___useDotNetRelativeOrAbsolute_24;
  1147. // System.Boolean System.Uri::IsWindowsFileSystem
  1148. bool ___IsWindowsFileSystem_25;
  1149. // System.Object System.Uri::s_initLock
  1150. RuntimeObject* ___s_initLock_26;
  1151. // System.Char[] System.Uri::HexLowerChars
  1152. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___HexLowerChars_27;
  1153. // System.Char[] System.Uri::_WSchars
  1154. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ____WSchars_28;
  1155. };
  1156. // System.Uri
  1157. // UnityEngine.WWWForm
  1158. struct WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields
  1159. {
  1160. // System.Byte[] UnityEngine.WWWForm::dDash
  1161. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dDash_6;
  1162. // System.Byte[] UnityEngine.WWWForm::crlf
  1163. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___crlf_7;
  1164. // System.Byte[] UnityEngine.WWWForm::contentTypeHeader
  1165. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___contentTypeHeader_8;
  1166. // System.Byte[] UnityEngine.WWWForm::dispositionHeader
  1167. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dispositionHeader_9;
  1168. // System.Byte[] UnityEngine.WWWForm::endQuote
  1169. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___endQuote_10;
  1170. // System.Byte[] UnityEngine.WWWForm::fileNameField
  1171. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___fileNameField_11;
  1172. // System.Byte[] UnityEngine.WWWForm::ampersand
  1173. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ampersand_12;
  1174. // System.Byte[] UnityEngine.WWWForm::equal
  1175. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___equal_13;
  1176. };
  1177. // UnityEngine.WWWForm
  1178. // UnityEngine.WWWTranscoder
  1179. struct WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields
  1180. {
  1181. // System.Byte[] UnityEngine.WWWTranscoder::ucHexChars
  1182. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___ucHexChars_0;
  1183. // System.Byte[] UnityEngine.WWWTranscoder::lcHexChars
  1184. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___lcHexChars_1;
  1185. // System.Byte UnityEngine.WWWTranscoder::urlEscapeChar
  1186. uint8_t ___urlEscapeChar_2;
  1187. // System.Byte[] UnityEngine.WWWTranscoder::urlSpace
  1188. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlSpace_3;
  1189. // System.Byte[] UnityEngine.WWWTranscoder::dataSpace
  1190. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___dataSpace_4;
  1191. // System.Byte[] UnityEngine.WWWTranscoder::urlForbidden
  1192. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___urlForbidden_5;
  1193. // System.Byte UnityEngine.WWWTranscoder::qpEscapeChar
  1194. uint8_t ___qpEscapeChar_6;
  1195. // System.Byte[] UnityEngine.WWWTranscoder::qpSpace
  1196. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpSpace_7;
  1197. // System.Byte[] UnityEngine.WWWTranscoder::qpForbidden
  1198. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___qpForbidden_8;
  1199. };
  1200. // UnityEngine.WWWTranscoder
  1201. // UnityEngineInternal.WebRequestUtils
  1202. struct WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields
  1203. {
  1204. // System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex
  1205. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* ___domainRegex_0;
  1206. };
  1207. // UnityEngineInternal.WebRequestUtils
  1208. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  1209. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  1210. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  1211. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  1212. // Unity.Collections.NativeArray`1<System.Byte>
  1213. // Unity.Collections.NativeArray`1<System.Byte>
  1214. // System.Boolean
  1215. struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
  1216. {
  1217. // System.String System.Boolean::TrueString
  1218. String_t* ___TrueString_5;
  1219. // System.String System.Boolean::FalseString
  1220. String_t* ___FalseString_6;
  1221. };
  1222. // System.Boolean
  1223. // System.Byte
  1224. // System.Byte
  1225. // System.Char
  1226. struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
  1227. {
  1228. // System.Byte[] System.Char::s_categoryForLatin1
  1229. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1_3;
  1230. };
  1231. // System.Char
  1232. // System.Int32
  1233. // System.Int32
  1234. // System.Int64
  1235. // System.Int64
  1236. // System.IntPtr
  1237. struct IntPtr_t_StaticFields
  1238. {
  1239. // System.IntPtr System.IntPtr::Zero
  1240. intptr_t ___Zero_1;
  1241. };
  1242. // System.IntPtr
  1243. // System.SByte
  1244. // System.SByte
  1245. // System.Single
  1246. // System.Single
  1247. // System.IO.Stream
  1248. struct Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE_StaticFields
  1249. {
  1250. // System.IO.Stream System.IO.Stream::Null
  1251. Stream_tF844051B786E8F7F4244DBD218D74E8617B9A2DE* ___Null_1;
  1252. };
  1253. // System.IO.Stream
  1254. // System.UInt64
  1255. // System.UInt64
  1256. // System.Void
  1257. // System.Void
  1258. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  1259. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  1260. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  1261. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  1262. // UnityEngine.AsyncOperation
  1263. // UnityEngine.AsyncOperation
  1264. // UnityEngine.Networking.CertificateHandler
  1265. // UnityEngine.Networking.CertificateHandler
  1266. // UnityEngine.Networking.DownloadHandler
  1267. // UnityEngine.Networking.DownloadHandler
  1268. // System.Exception
  1269. struct Exception_t_StaticFields
  1270. {
  1271. // System.Object System.Exception::s_EDILock
  1272. RuntimeObject* ___s_EDILock_0;
  1273. };
  1274. // System.Exception
  1275. // System.IO.MemoryStream
  1276. // System.IO.MemoryStream
  1277. // System.Text.RegularExpressions.Regex
  1278. struct Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_StaticFields
  1279. {
  1280. // System.Int32 System.Text.RegularExpressions.Regex::s_cacheSize
  1281. int32_t ___s_cacheSize_1;
  1282. // System.Collections.Generic.Dictionary`2<System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry> System.Text.RegularExpressions.Regex::s_cache
  1283. Dictionary_2_t5B5B38BB06341F50E1C75FB53208A2A66CAE57F7* ___s_cache_2;
  1284. // System.Int32 System.Text.RegularExpressions.Regex::s_cacheCount
  1285. int32_t ___s_cacheCount_3;
  1286. // System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheFirst
  1287. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheFirst_4;
  1288. // System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::s_cacheLast
  1289. CachedCodeEntry_tE201C3AD65C234AD9ED7A78C95025824A7A9FF39* ___s_cacheLast_5;
  1290. // System.TimeSpan System.Text.RegularExpressions.Regex::s_maximumMatchTimeout
  1291. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_maximumMatchTimeout_6;
  1292. // System.TimeSpan System.Text.RegularExpressions.Regex::s_defaultMatchTimeout
  1293. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___s_defaultMatchTimeout_8;
  1294. // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
  1295. TimeSpan_t8195C5B013A2C532FEBDF0B64B6911982E750F5A ___InfiniteMatchTimeout_9;
  1296. };
  1297. // System.Text.RegularExpressions.Regex
  1298. // UnityEngine.Networking.UploadHandler
  1299. // UnityEngine.Networking.UploadHandler
  1300. // UnityEngine.Networking.DownloadHandlerBuffer
  1301. // UnityEngine.Networking.DownloadHandlerBuffer
  1302. // UnityEngine.Networking.UnityWebRequest
  1303. // UnityEngine.Networking.UnityWebRequest
  1304. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  1305. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  1306. // UnityEngine.Networking.UploadHandlerRaw
  1307. // UnityEngine.Networking.UploadHandlerRaw
  1308. // System.Action`1<UnityEngine.AsyncOperation>
  1309. // System.Action`1<UnityEngine.AsyncOperation>
  1310. // System.ArgumentException
  1311. // System.ArgumentException
  1312. // System.FormatException
  1313. // System.FormatException
  1314. // System.InvalidOperationException
  1315. // System.InvalidOperationException
  1316. // System.NotSupportedException
  1317. // System.NotSupportedException
  1318. #ifdef __clang__
  1319. #pragma clang diagnostic pop
  1320. #endif
  1321. // System.Byte[]
  1322. struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
  1323. {
  1324. ALIGN_FIELD (8) uint8_t m_Items[1];
  1325. inline uint8_t GetAt(il2cpp_array_size_t index) const
  1326. {
  1327. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1328. return m_Items[index];
  1329. }
  1330. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  1331. {
  1332. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1333. return m_Items + index;
  1334. }
  1335. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  1336. {
  1337. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1338. m_Items[index] = value;
  1339. }
  1340. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  1341. {
  1342. return m_Items[index];
  1343. }
  1344. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1345. {
  1346. return m_Items + index;
  1347. }
  1348. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  1349. {
  1350. m_Items[index] = value;
  1351. }
  1352. };
  1353. // System.String[]
  1354. struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
  1355. {
  1356. ALIGN_FIELD (8) String_t* m_Items[1];
  1357. inline String_t* GetAt(il2cpp_array_size_t index) const
  1358. {
  1359. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1360. return m_Items[index];
  1361. }
  1362. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  1363. {
  1364. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1365. return m_Items + index;
  1366. }
  1367. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  1368. {
  1369. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1370. m_Items[index] = value;
  1371. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1372. }
  1373. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  1374. {
  1375. return m_Items[index];
  1376. }
  1377. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1378. {
  1379. return m_Items + index;
  1380. }
  1381. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  1382. {
  1383. m_Items[index] = value;
  1384. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1385. }
  1386. };
  1387. // System.Char[]
  1388. struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
  1389. {
  1390. ALIGN_FIELD (8) Il2CppChar m_Items[1];
  1391. inline Il2CppChar GetAt(il2cpp_array_size_t index) const
  1392. {
  1393. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1394. return m_Items[index];
  1395. }
  1396. inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
  1397. {
  1398. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1399. return m_Items + index;
  1400. }
  1401. inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
  1402. {
  1403. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1404. m_Items[index] = value;
  1405. }
  1406. inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
  1407. {
  1408. return m_Items[index];
  1409. }
  1410. inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
  1411. {
  1412. return m_Items + index;
  1413. }
  1414. inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
  1415. {
  1416. m_Items[index] = value;
  1417. }
  1418. };
  1419. // System.Object[]
  1420. struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
  1421. {
  1422. ALIGN_FIELD (8) RuntimeObject* m_Items[1];
  1423. inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
  1424. {
  1425. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1426. return m_Items[index];
  1427. }
  1428. inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
  1429. {
  1430. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1431. return m_Items + index;
  1432. }
  1433. inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
  1434. {
  1435. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  1436. m_Items[index] = value;
  1437. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1438. }
  1439. inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
  1440. {
  1441. return m_Items[index];
  1442. }
  1443. inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
  1444. {
  1445. return m_Items + index;
  1446. }
  1447. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
  1448. {
  1449. m_Items[index] = value;
  1450. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  1451. }
  1452. };
  1453. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  1454. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  1455. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled);
  1456. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  1457. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled);
  1458. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled);
  1459. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  1460. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  1461. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled);
  1462. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  1463. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  1464. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled);
  1465. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  1466. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  1467. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled);
  1468. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  1469. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled);
  1470. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled);
  1471. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  1472. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled);
  1473. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled);
  1474. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  1475. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled);
  1476. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled);
  1477. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  1478. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1479. // System.Void System.Collections.Generic.List`1<System.Object>::Add(T)
  1480. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
  1481. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
  1482. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  1483. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(TKey,TValue)
  1484. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
  1485. // T System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
  1486. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1487. // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
  1488. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
  1489. // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
  1490. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9 Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
  1491. // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
  1492. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1493. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
  1494. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1495. // TKey System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
  1496. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
  1497. // TValue System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
  1498. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
  1499. // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
  1500. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method) ;
  1501. // System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
  1502. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1503. // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr<System.Byte>(Unity.Collections.NativeArray`1<T>)
  1504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method) ;
  1505. // T[] Unity.Collections.NativeArray`1<System.Byte>::ToArray()
  1506. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1507. // Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
  1508. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method) ;
  1509. // System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(T[],Unity.Collections.Allocator)
  1510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_allocator, const RuntimeMethod* method) ;
  1511. // System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
  1512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method) ;
  1513. // System.Char System.String::get_Chars(System.Int32)
  1514. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
  1515. // System.Void System.Uri::.ctor(System.String,System.UriKind)
  1516. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, int32_t ___1_uriKind, const RuntimeMethod* method) ;
  1517. // System.Boolean System.Uri::get_IsAbsoluteUri()
  1518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1519. // System.String System.Uri::get_AbsoluteUri()
  1520. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1521. // System.Void System.Uri::.ctor(System.Uri,System.Uri)
  1522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_relativeUri, const RuntimeMethod* method) ;
  1523. // System.Boolean System.String::IsNullOrEmpty(System.String)
  1524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
  1525. // System.Void System.Uri::.ctor(System.String)
  1526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, String_t* ___0_uriString, const RuntimeMethod* method) ;
  1527. // System.Void System.Uri::.ctor(System.Uri,System.String)
  1528. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_baseUri, String_t* ___1_relativeUri, const RuntimeMethod* method) ;
  1529. // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
  1530. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_uri1, Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___1_uri2, const RuntimeMethod* method) ;
  1531. // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
  1532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_input, const RuntimeMethod* method) ;
  1533. // System.String System.Uri::get_Scheme()
  1534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1535. // System.String System.String::Concat(System.String,System.String,System.String)
  1536. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
  1537. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  1538. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_targetUri, String_t* ___1_targetUrl, bool ___2_prependProtocol, const RuntimeMethod* method) ;
  1539. // System.Boolean System.Uri::get_IsFile()
  1540. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1541. // System.Boolean System.Uri::get_IsLoopback()
  1542. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1543. // System.String System.Uri::get_OriginalString()
  1544. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1545. // System.String System.Uri::get_AbsolutePath()
  1546. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1547. // System.Boolean System.String::Contains(System.String)
  1548. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1549. // System.Boolean System.String::StartsWith(System.String)
  1550. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0 (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1551. // System.String System.String::Concat(System.String,System.String)
  1552. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9E3155FB84015C823606188F53B47CB44C444991 (String_t* ___0_str0, String_t* ___1_str1, const RuntimeMethod* method) ;
  1553. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  1554. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method) ;
  1555. // System.Int32 System.String::get_Length()
  1556. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
  1557. // System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32)
  1558. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619 (StringBuilder_t* __this, String_t* ___0_value, int32_t ___1_capacity, const RuntimeMethod* method) ;
  1559. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
  1560. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1 (StringBuilder_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1561. // System.Boolean System.String::op_Equality(System.String,System.String)
  1562. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
  1563. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
  1564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t* StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D (StringBuilder_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1565. // System.String System.String::Substring(System.Int32)
  1566. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ;
  1567. // System.String System.Uri::get_PathAndQuery()
  1568. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1569. // System.String System.Uri::get_Fragment()
  1570. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* __this, const RuntimeMethod* method) ;
  1571. // System.Text.Encoding System.Text.Encoding::get_UTF8()
  1572. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9 (const RuntimeMethod* method) ;
  1573. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  1574. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1575. // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
  1576. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* __this, String_t* ___0_pattern, const RuntimeMethod* method) ;
  1577. // System.Text.Encoding System.Text.Encoding::get_ASCII()
  1578. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65 (const RuntimeMethod* method) ;
  1579. // System.Void System.Object::.ctor()
  1580. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  1581. // System.Void System.Collections.Generic.List`1<System.Byte[]>::.ctor()
  1582. inline void List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4 (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, const RuntimeMethod* method)
  1583. {
  1584. (( void (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  1585. }
  1586. // System.Void System.Collections.Generic.List`1<System.String>::.ctor()
  1587. inline void List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, const RuntimeMethod* method)
  1588. {
  1589. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
  1590. }
  1591. // System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32)
  1592. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Random_Range_m6763D9767F033357F88B6637F048F4ACA4123B68 (int32_t ___0_minInclusive, int32_t ___1_maxExclusive, const RuntimeMethod* method) ;
  1593. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String,System.Text.Encoding)
  1594. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_e, const RuntimeMethod* method) ;
  1595. // System.Void System.Collections.Generic.List`1<System.String>::Add(T)
  1596. inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_t* ___0_item, const RuntimeMethod* method)
  1597. {
  1598. (( void (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, String_t*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  1599. }
  1600. // System.Void System.Collections.Generic.List`1<System.Byte[]>::Add(T)
  1601. inline void List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_inline (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_item, const RuntimeMethod* method)
  1602. {
  1603. (( void (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
  1604. }
  1605. // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor()
  1606. inline void Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
  1607. {
  1608. (( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
  1609. }
  1610. // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(TKey,TValue)
  1611. inline void Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, String_t* ___0_key, String_t* ___1_value, const RuntimeMethod* method)
  1612. {
  1613. (( void (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m1A840355E8EDAECEA9D0C6F5E51B248FAA449CBD_gshared)(__this, ___0_key, ___1_value, method);
  1614. }
  1615. // System.Void System.IO.MemoryStream::.ctor(System.Int32)
  1616. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8 (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
  1617. // T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
  1618. inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method)
  1619. {
  1620. return (( String_t* (*) (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1621. }
  1622. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding)
  1623. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1624. // System.Int32 System.String::IndexOf(System.String)
  1625. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F (String_t* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1626. // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding)
  1627. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A (String_t* ___0_toEncode, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1628. // System.String System.String::Concat(System.String[])
  1629. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___0_values, const RuntimeMethod* method) ;
  1630. // T System.Collections.Generic.List`1<System.Byte[]>::get_Item(System.Int32)
  1631. inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6 (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, int32_t ___0_index, const RuntimeMethod* method)
  1632. {
  1633. return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, int32_t, const RuntimeMethod*))List_1_get_Item_m33561245D64798C2AB07584C0EC4F240E4839A38_gshared)(__this, ___0_index, method);
  1634. }
  1635. // System.Int32 System.Collections.Generic.List`1<System.Byte[]>::get_Count()
  1636. inline int32_t List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* __this, const RuntimeMethod* method)
  1637. {
  1638. return (( int32_t (*) (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*, const RuntimeMethod*))List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline)(__this, method);
  1639. }
  1640. // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[])
  1641. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1642. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  1643. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method) ;
  1644. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  1645. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_forbidden, bool ___4_uppercase, const RuntimeMethod* method) ;
  1646. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  1647. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method) ;
  1648. // System.Void UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[],System.Byte&,System.Byte&)
  1649. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651 (uint8_t ___0_b, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_hexChars, uint8_t* ___2_byte0, uint8_t* ___3_byte1, const RuntimeMethod* method) ;
  1650. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  1651. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, const RuntimeMethod* method) ;
  1652. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  1653. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_comperand, const RuntimeMethod* method) ;
  1654. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  1655. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method) ;
  1656. // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
  1657. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD (const RuntimeMethod* method) ;
  1658. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte*,System.Int32)
  1659. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F (uint8_t* ___0_input, int32_t ___1_inputLength, const RuntimeMethod* method) ;
  1660. // System.Void UnityEngine.AsyncOperation::.ctor()
  1661. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_m53CF89405A1E2DA6F517D05792826F5784B0D6EC (AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* __this, const RuntimeMethod* method) ;
  1662. // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
  1663. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B (intptr_t ___0_value1, intptr_t ___1_value2, const RuntimeMethod* method) ;
  1664. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  1665. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1666. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  1667. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1668. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  1669. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1670. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  1671. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1672. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  1673. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method) ;
  1674. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  1675. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method) ;
  1676. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  1677. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1678. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  1679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1680. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  1681. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method) ;
  1682. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  1683. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method) ;
  1684. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  1685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method) ;
  1686. // System.Void System.Object::Finalize()
  1687. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
  1688. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  1689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1690. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  1691. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1692. // System.Void System.GC::SuppressFinalize(System.Object)
  1693. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65 (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
  1694. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  1695. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1696. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  1697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1698. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  1699. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1700. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  1701. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1702. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  1703. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1704. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  1705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1706. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  1707. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1708. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  1709. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1710. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  1711. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method) ;
  1712. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  1713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1714. // System.Void System.InvalidOperationException::.ctor(System.String)
  1715. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1716. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  1717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1718. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  1719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method) ;
  1720. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  1721. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1722. // System.Void System.ArgumentException::.ctor(System.String)
  1723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
  1724. // System.String System.String::ToUpper()
  1725. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49 (String_t* __this, const RuntimeMethod* method) ;
  1726. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  1727. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method) ;
  1728. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  1729. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method) ;
  1730. // UnityEngine.Networking.UnityWebRequest/Result UnityEngine.Networking.UnityWebRequest::get_result()
  1731. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1732. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  1733. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1734. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  1735. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method) ;
  1736. // System.String System.String::Format(System.String,System.Object,System.Object)
  1737. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987 (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, const RuntimeMethod* method) ;
  1738. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  1739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1740. // System.String UnityEngine.Networking.UnityWebRequest::GetUrl()
  1741. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1742. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  1743. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method) ;
  1744. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  1745. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1746. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  1747. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method) ;
  1748. // System.Boolean UnityEngine.Networking.UnityWebRequest::IsExecuting()
  1749. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1750. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isDone()
  1751. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_m3079B53A1CAFD8D5B334C635761E7B7E10B14123 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1752. // System.Single UnityEngine.Networking.UnityWebRequest::GetDownloadProgress()
  1753. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method) ;
  1754. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  1755. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
  1756. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  1757. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method) ;
  1758. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  1759. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method) ;
  1760. // System.Int32 System.Math::Max(System.Int32,System.Int32)
  1761. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
  1762. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)
  1763. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_timeout, const RuntimeMethod* method) ;
  1764. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  1765. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1766. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  1767. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___2_downloadHandler, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___3_uploadHandler, const RuntimeMethod* method) ;
  1768. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  1769. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method) ;
  1770. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm)
  1771. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_request, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method) ;
  1772. // System.Byte[] UnityEngine.WWWForm::get_data()
  1773. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method) ;
  1774. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  1775. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method) ;
  1776. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
  1777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method) ;
  1778. // System.Collections.Generic.Dictionary`2/Enumerator<TKey,TValue> System.Collections.Generic.Dictionary`2<System.String,System.String>::GetEnumerator()
  1779. inline Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6 (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* __this, const RuntimeMethod* method)
  1780. {
  1781. return (( Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 (*) (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*, const RuntimeMethod*))Dictionary_2_GetEnumerator_m52AB12790B0B9B46B1DFB1F861C9DBEAB07C1FDA_gshared)(__this, method);
  1782. }
  1783. // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::Dispose()
  1784. inline void Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1785. {
  1786. (( void (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_Dispose_mEA5E01B81EB943B7003D87CEC1B6040524F0402C_gshared)(__this, method);
  1787. }
  1788. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::get_Current()
  1789. inline KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_inline (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1790. {
  1791. return (( KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline)(__this, method);
  1792. }
  1793. // TKey System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Key()
  1794. inline String_t* KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
  1795. {
  1796. return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
  1797. }
  1798. // TValue System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value()
  1799. inline String_t* KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A* __this, const RuntimeMethod* method)
  1800. {
  1801. return (( String_t* (*) (KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
  1802. }
  1803. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  1804. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method) ;
  1805. // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::MoveNext()
  1806. inline bool Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438 (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562* __this, const RuntimeMethod* method)
  1807. {
  1808. return (( bool (*) (Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562*, const RuntimeMethod*))Enumerator_MoveNext_mCD4950A75FFADD54AF354D48C6C0DB0B5A22A5F4_gshared)(__this, method);
  1809. }
  1810. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding)
  1811. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1812. // System.Byte[] UnityEngine.WWWTranscoder::URLEncode(System.Byte[])
  1813. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method) ;
  1814. // System.String UnityEngine.Networking.UnityWebRequest::UnEscapeURL(System.String,System.Text.Encoding)
  1815. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_UnEscapeURL_m7164BC27C48FD57AB777128DD271E56B9EF25DC4 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method) ;
  1816. // System.Int32 System.String::IndexOf(System.Char)
  1817. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
  1818. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  1819. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1820. // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)
  1821. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_InternalGetByteArray_m27F42C529228C204142EEF609AD8E96E7FC38CF6 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method) ;
  1822. // System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
  1823. inline bool NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1824. {
  1825. return (( bool (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_gshared)(__this, method);
  1826. }
  1827. // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr<System.Byte>(Unity.Collections.NativeArray`1<T>)
  1828. inline void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_nativeArray, const RuntimeMethod* method)
  1829. {
  1830. return (( void* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF, const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_gshared)(___0_nativeArray, method);
  1831. }
  1832. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  1833. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1834. // System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
  1835. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339 (String_t* __this, int8_t* ___0_value, int32_t ___1_startIndex, int32_t ___2_length, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___3_enc, const RuntimeMethod* method) ;
  1836. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  1837. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1838. // System.Int32 System.String::IndexOf(System.String,System.StringComparison)
  1839. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55 (String_t* __this, String_t* ___0_value, int32_t ___1_comparisonType, const RuntimeMethod* method) ;
  1840. // System.Int32 System.String::IndexOf(System.Char,System.Int32)
  1841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4 (String_t* __this, Il2CppChar ___0_value, int32_t ___1_startIndex, const RuntimeMethod* method) ;
  1842. // System.String System.String::Trim()
  1843. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5 (String_t* __this, const RuntimeMethod* method) ;
  1844. // System.String System.String::Trim(System.Char[])
  1845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5 (String_t* __this, CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_trimChars, const RuntimeMethod* method) ;
  1846. // System.String System.String::Substring(System.Int32,System.Int32)
  1847. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
  1848. // System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
  1849. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187 (String_t* ___0_name, const RuntimeMethod* method) ;
  1850. // System.Void UnityEngine.Debug::LogWarning(System.Object)
  1851. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
  1852. // T[] Unity.Collections.NativeArray`1<System.Byte>::ToArray()
  1853. inline ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1854. {
  1855. return (( ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_gshared)(__this, method);
  1856. }
  1857. // System.Byte* UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)
  1858. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method) ;
  1859. // System.Void UnityEngine.Networking.DownloadHandler::DisposeNativeArray(Unity.Collections.NativeArray`1<System.Byte>&)
  1860. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method) ;
  1861. // System.Void UnityEngine.Networking.DownloadHandler::CreateNativeArrayForNativeData(Unity.Collections.NativeArray`1<System.Byte>&,System.Byte*,System.Int32)
  1862. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, uint8_t* ___1_bytes, int32_t ___2_length, const RuntimeMethod* method) ;
  1863. // Unity.Collections.NativeArray`1<T> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
  1864. inline NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA (void* ___0_dataPointer, int32_t ___1_length, int32_t ___2_allocator, const RuntimeMethod* method)
  1865. {
  1866. return (( NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_gshared)(___0_dataPointer, ___1_length, ___2_allocator, method);
  1867. }
  1868. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  1869. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method) ;
  1870. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  1871. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1872. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  1873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method) ;
  1874. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::InternalGetNativeArray(UnityEngine.Networking.DownloadHandler,Unity.Collections.NativeArray`1<System.Byte>&)
  1875. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method) ;
  1876. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  1877. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method) ;
  1878. // System.Void UnityEngine.Networking.UploadHandler::Release()
  1879. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1880. // System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(T[],Unity.Collections.Allocator)
  1881. inline void NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_allocator, const RuntimeMethod* method)
  1882. {
  1883. (( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_gshared)(__this, ___0_array, ___1_allocator, method);
  1884. }
  1885. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(Unity.Collections.NativeArray`1<System.Byte>,System.Boolean)
  1886. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_data, bool ___1_transferOwnership, const RuntimeMethod* method) ;
  1887. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  1888. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1889. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)
  1890. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* ___0_self, uint8_t* ___1_data, int32_t ___2_dataLength, const RuntimeMethod* method) ;
  1891. // System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
  1892. inline void NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* __this, const RuntimeMethod* method)
  1893. {
  1894. (( void (*) (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*, const RuntimeMethod*))NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_gshared)(__this, method);
  1895. }
  1896. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  1897. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method) ;
  1898. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  1899. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method) ;
  1900. #ifdef __clang__
  1901. #pragma clang diagnostic push
  1902. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1903. #pragma clang diagnostic ignored "-Wunused-variable"
  1904. #endif
  1905. #ifdef __clang__
  1906. #pragma clang diagnostic pop
  1907. #endif
  1908. #ifdef __clang__
  1909. #pragma clang diagnostic push
  1910. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  1911. #pragma clang diagnostic ignored "-Wunused-variable"
  1912. #endif
  1913. // System.String UnityEngineInternal.WebRequestUtils::RedirectTo(System.String,System.String)
  1914. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m63855E63B6B6EAFD4BCE65395BB744AAF5BD6AB4 (String_t* ___0_baseUri, String_t* ___1_redirectUri, const RuntimeMethod* method)
  1915. {
  1916. static bool s_Il2CppMethodInitialized;
  1917. if (!s_Il2CppMethodInitialized)
  1918. {
  1919. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1920. s_Il2CppMethodInitialized = true;
  1921. }
  1922. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_0 = NULL;
  1923. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  1924. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  1925. bool V_3 = false;
  1926. bool V_4 = false;
  1927. String_t* V_5 = NULL;
  1928. {
  1929. String_t* L_0 = ___1_redirectUri;
  1930. NullCheck(L_0);
  1931. Il2CppChar L_1;
  1932. L_1 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_0, 0, NULL);
  1933. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  1934. bool L_2 = V_3;
  1935. if (!L_2)
  1936. {
  1937. goto IL_001a;
  1938. }
  1939. }
  1940. {
  1941. String_t* L_3 = ___1_redirectUri;
  1942. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1943. NullCheck(L_4);
  1944. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_4, L_3, 2, NULL);
  1945. V_0 = L_4;
  1946. goto IL_0022;
  1947. }
  1948. IL_001a:
  1949. {
  1950. String_t* L_5 = ___1_redirectUri;
  1951. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1952. NullCheck(L_6);
  1953. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_6, L_5, 0, NULL);
  1954. V_0 = L_6;
  1955. }
  1956. IL_0022:
  1957. {
  1958. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_7 = V_0;
  1959. NullCheck(L_7);
  1960. bool L_8;
  1961. L_8 = Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF(L_7, NULL);
  1962. V_4 = L_8;
  1963. bool L_9 = V_4;
  1964. if (!L_9)
  1965. {
  1966. goto IL_0038;
  1967. }
  1968. }
  1969. {
  1970. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = V_0;
  1971. NullCheck(L_10);
  1972. String_t* L_11;
  1973. L_11 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_10, NULL);
  1974. V_5 = L_11;
  1975. goto IL_0052;
  1976. }
  1977. IL_0038:
  1978. {
  1979. String_t* L_12 = ___0_baseUri;
  1980. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_13 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1981. NullCheck(L_13);
  1982. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B(L_13, L_12, 1, NULL);
  1983. V_1 = L_13;
  1984. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_14 = V_1;
  1985. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_15 = V_0;
  1986. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  1987. NullCheck(L_16);
  1988. Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F(L_16, L_14, L_15, NULL);
  1989. V_2 = L_16;
  1990. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_2;
  1991. NullCheck(L_17);
  1992. String_t* L_18;
  1993. L_18 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_17, NULL);
  1994. V_5 = L_18;
  1995. goto IL_0052;
  1996. }
  1997. IL_0052:
  1998. {
  1999. String_t* L_19 = V_5;
  2000. return L_19;
  2001. }
  2002. }
  2003. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  2004. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C (String_t* ___0_targetUrl, String_t* ___1_localUrl, const RuntimeMethod* method)
  2005. {
  2006. static bool s_Il2CppMethodInitialized;
  2007. if (!s_Il2CppMethodInitialized)
  2008. {
  2009. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2010. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2011. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A);
  2012. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  2013. s_Il2CppMethodInitialized = true;
  2014. }
  2015. bool V_0 = false;
  2016. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_1 = NULL;
  2017. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* V_2 = NULL;
  2018. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_3 = NULL;
  2019. bool V_4 = false;
  2020. String_t* V_5 = NULL;
  2021. bool V_6 = false;
  2022. bool V_7 = false;
  2023. bool V_8 = false;
  2024. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* V_9 = NULL;
  2025. bool V_10 = false;
  2026. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  2027. int32_t G_B7_0 = 0;
  2028. int32_t G_B13_0 = 0;
  2029. {
  2030. String_t* L_0 = ___0_targetUrl;
  2031. bool L_1;
  2032. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  2033. V_4 = L_1;
  2034. bool L_2 = V_4;
  2035. if (!L_2)
  2036. {
  2037. goto IL_0019;
  2038. }
  2039. }
  2040. {
  2041. V_5 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  2042. goto IL_00d6;
  2043. }
  2044. IL_0019:
  2045. {
  2046. V_0 = (bool)0;
  2047. String_t* L_3 = ___1_localUrl;
  2048. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_4 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2049. NullCheck(L_4);
  2050. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_4, L_3, NULL);
  2051. V_1 = L_4;
  2052. V_2 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL;
  2053. String_t* L_5 = ___0_targetUrl;
  2054. NullCheck(L_5);
  2055. Il2CppChar L_6;
  2056. L_6 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, 0, NULL);
  2057. V_6 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
  2058. bool L_7 = V_6;
  2059. if (!L_7)
  2060. {
  2061. goto IL_0041;
  2062. }
  2063. }
  2064. {
  2065. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = V_1;
  2066. String_t* L_9 = ___0_targetUrl;
  2067. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_10 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2068. NullCheck(L_10);
  2069. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_10, L_8, L_9, NULL);
  2070. V_2 = L_10;
  2071. V_0 = (bool)1;
  2072. }
  2073. IL_0041:
  2074. {
  2075. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_11 = V_2;
  2076. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2077. bool L_12;
  2078. L_12 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_11, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  2079. if (!L_12)
  2080. {
  2081. goto IL_0057;
  2082. }
  2083. }
  2084. {
  2085. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2086. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_13 = ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex_0;
  2087. String_t* L_14 = ___0_targetUrl;
  2088. NullCheck(L_13);
  2089. bool L_15;
  2090. L_15 = Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49(L_13, L_14, NULL);
  2091. G_B7_0 = ((int32_t)(L_15));
  2092. goto IL_0058;
  2093. }
  2094. IL_0057:
  2095. {
  2096. G_B7_0 = 0;
  2097. }
  2098. IL_0058:
  2099. {
  2100. V_7 = (bool)G_B7_0;
  2101. bool L_16 = V_7;
  2102. if (!L_16)
  2103. {
  2104. goto IL_0075;
  2105. }
  2106. }
  2107. {
  2108. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_17 = V_1;
  2109. NullCheck(L_17);
  2110. String_t* L_18;
  2111. L_18 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_17, NULL);
  2112. String_t* L_19 = ___0_targetUrl;
  2113. String_t* L_20;
  2114. L_20 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_18, _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A, L_19, NULL);
  2115. ___0_targetUrl = L_20;
  2116. V_0 = (bool)1;
  2117. }
  2118. IL_0075:
  2119. {
  2120. V_3 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)NULL;
  2121. }
  2122. try
  2123. {// begin try (depth: 1)
  2124. {
  2125. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_21 = V_2;
  2126. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2127. bool L_22;
  2128. L_22 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_21, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  2129. if (!L_22)
  2130. {
  2131. goto IL_0091_1;
  2132. }
  2133. }
  2134. {
  2135. String_t* L_23 = ___0_targetUrl;
  2136. NullCheck(L_23);
  2137. Il2CppChar L_24;
  2138. L_24 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_23, 0, NULL);
  2139. G_B13_0 = ((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)46)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2140. goto IL_0092_1;
  2141. }
  2142. IL_0091_1:
  2143. {
  2144. G_B13_0 = 0;
  2145. }
  2146. IL_0092_1:
  2147. {
  2148. V_8 = (bool)G_B13_0;
  2149. bool L_25 = V_8;
  2150. if (!L_25)
  2151. {
  2152. goto IL_009f_1;
  2153. }
  2154. }
  2155. {
  2156. String_t* L_26 = ___0_targetUrl;
  2157. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_27 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2158. NullCheck(L_27);
  2159. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A(L_27, L_26, NULL);
  2160. V_2 = L_27;
  2161. }
  2162. IL_009f_1:
  2163. {
  2164. goto IL_00ab;
  2165. }
  2166. }// end try (depth: 1)
  2167. catch(Il2CppExceptionWrapper& e)
  2168. {
  2169. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  2170. {
  2171. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  2172. goto CATCH_00a2;
  2173. }
  2174. throw e;
  2175. }
  2176. CATCH_00a2:
  2177. {// begin catch(System.FormatException)
  2178. V_9 = ((FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*));
  2179. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_28 = V_9;
  2180. V_3 = L_28;
  2181. IL2CPP_POP_ACTIVE_EXCEPTION();
  2182. goto IL_00ab;
  2183. }// end catch (depth: 1)
  2184. IL_00ab:
  2185. {
  2186. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_29 = V_2;
  2187. il2cpp_codegen_runtime_class_init_inline(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2188. bool L_30;
  2189. L_30 = Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194(L_29, (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)NULL, NULL);
  2190. V_10 = L_30;
  2191. bool L_31 = V_10;
  2192. if (!L_31)
  2193. {
  2194. goto IL_00ca;
  2195. }
  2196. }
  2197. try
  2198. {// begin try (depth: 1)
  2199. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_32 = V_1;
  2200. String_t* L_33 = ___0_targetUrl;
  2201. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_34 = (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E*)il2cpp_codegen_object_new(Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E_il2cpp_TypeInfo_var);
  2202. NullCheck(L_34);
  2203. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09(L_34, L_32, L_33, NULL);
  2204. V_2 = L_34;
  2205. V_0 = (bool)1;
  2206. goto IL_00ca;
  2207. }// end try (depth: 1)
  2208. catch(Il2CppExceptionWrapper& e)
  2209. {
  2210. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  2211. {
  2212. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  2213. goto CATCH_00c6;
  2214. }
  2215. throw e;
  2216. }
  2217. CATCH_00c6:
  2218. {// begin catch(System.FormatException)
  2219. FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_35 = V_3;
  2220. IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C_RuntimeMethod_var)));
  2221. }// end catch (depth: 1)
  2222. IL_00ca:
  2223. {
  2224. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_36 = V_2;
  2225. String_t* L_37 = ___0_targetUrl;
  2226. bool L_38 = V_0;
  2227. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2228. String_t* L_39;
  2229. L_39 = WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837(L_36, L_37, L_38, NULL);
  2230. V_5 = L_39;
  2231. goto IL_00d6;
  2232. }
  2233. IL_00d6:
  2234. {
  2235. String_t* L_40 = V_5;
  2236. return L_40;
  2237. }
  2238. }
  2239. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  2240. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mC95B57536DF28E6A9FE768A31BD7CE6AC976D837 (Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* ___0_targetUri, String_t* ___1_targetUrl, bool ___2_prependProtocol, const RuntimeMethod* method)
  2241. {
  2242. static bool s_Il2CppMethodInitialized;
  2243. if (!s_Il2CppMethodInitialized)
  2244. {
  2245. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
  2246. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2247. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952);
  2248. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA);
  2249. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D);
  2250. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710);
  2251. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
  2252. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E);
  2253. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A);
  2254. s_Il2CppMethodInitialized = true;
  2255. }
  2256. String_t* V_0 = NULL;
  2257. bool V_1 = false;
  2258. String_t* V_2 = NULL;
  2259. bool V_3 = false;
  2260. String_t* V_4 = NULL;
  2261. bool V_5 = false;
  2262. bool V_6 = false;
  2263. String_t* V_7 = NULL;
  2264. bool V_8 = false;
  2265. bool V_9 = false;
  2266. bool V_10 = false;
  2267. StringBuilder_t* V_11 = NULL;
  2268. bool V_12 = false;
  2269. String_t* V_13 = NULL;
  2270. bool V_14 = false;
  2271. bool V_15 = false;
  2272. bool V_16 = false;
  2273. int32_t G_B12_0 = 0;
  2274. int32_t G_B19_0 = 0;
  2275. int32_t G_B27_0 = 0;
  2276. {
  2277. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_0 = ___0_targetUri;
  2278. NullCheck(L_0);
  2279. bool L_1;
  2280. L_1 = Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F(L_0, NULL);
  2281. V_1 = L_1;
  2282. bool L_2 = V_1;
  2283. if (!L_2)
  2284. {
  2285. goto IL_00cc;
  2286. }
  2287. }
  2288. {
  2289. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_3 = ___0_targetUri;
  2290. NullCheck(L_3);
  2291. bool L_4;
  2292. L_4 = Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A(L_3, NULL);
  2293. V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  2294. bool L_5 = V_3;
  2295. if (!L_5)
  2296. {
  2297. goto IL_0029;
  2298. }
  2299. }
  2300. {
  2301. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_6 = ___0_targetUri;
  2302. NullCheck(L_6);
  2303. String_t* L_7;
  2304. L_7 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_6, NULL);
  2305. V_4 = L_7;
  2306. goto IL_020a;
  2307. }
  2308. IL_0029:
  2309. {
  2310. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_8 = ___0_targetUri;
  2311. NullCheck(L_8);
  2312. String_t* L_9;
  2313. L_9 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_8, NULL);
  2314. V_2 = L_9;
  2315. String_t* L_10 = V_2;
  2316. NullCheck(L_10);
  2317. bool L_11;
  2318. L_11 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_10, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2319. V_5 = L_11;
  2320. bool L_12 = V_5;
  2321. if (!L_12)
  2322. {
  2323. goto IL_008e;
  2324. }
  2325. }
  2326. {
  2327. String_t* L_13 = V_2;
  2328. NullCheck(L_13);
  2329. bool L_14;
  2330. L_14 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_13, _stringLiteral20E39C3AB7068FAFD9E4B868E16D2E5BC64D4952, NULL);
  2331. V_6 = L_14;
  2332. bool L_15 = V_6;
  2333. if (!L_15)
  2334. {
  2335. goto IL_0086;
  2336. }
  2337. }
  2338. {
  2339. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_16 = ___0_targetUri;
  2340. NullCheck(L_16);
  2341. String_t* L_17;
  2342. L_17 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_16, NULL);
  2343. V_7 = L_17;
  2344. String_t* L_18 = V_7;
  2345. NullCheck(L_18);
  2346. bool L_19;
  2347. L_19 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_18, _stringLiteral9A62305734B1A5D8C56B0791FEB96BCDDD1CD15E, NULL);
  2348. V_8 = (bool)((((int32_t)L_19) == ((int32_t)0))? 1 : 0);
  2349. bool L_20 = V_8;
  2350. if (!L_20)
  2351. {
  2352. goto IL_0085;
  2353. }
  2354. }
  2355. {
  2356. String_t* L_21 = V_7;
  2357. String_t* L_22;
  2358. L_22 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_21, NULL);
  2359. V_4 = L_22;
  2360. goto IL_020a;
  2361. }
  2362. IL_0085:
  2363. {
  2364. }
  2365. IL_0086:
  2366. {
  2367. String_t* L_23 = V_2;
  2368. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2369. String_t* L_24;
  2370. L_24 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_23, NULL);
  2371. V_2 = L_24;
  2372. }
  2373. IL_008e:
  2374. {
  2375. String_t* L_25 = V_2;
  2376. NullCheck(L_25);
  2377. int32_t L_26;
  2378. L_26 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_25, NULL);
  2379. if ((((int32_t)L_26) <= ((int32_t)0)))
  2380. {
  2381. goto IL_00a7;
  2382. }
  2383. }
  2384. {
  2385. String_t* L_27 = V_2;
  2386. NullCheck(L_27);
  2387. Il2CppChar L_28;
  2388. L_28 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_27, 0, NULL);
  2389. G_B12_0 = ((((int32_t)((((int32_t)L_28) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2390. goto IL_00a8;
  2391. }
  2392. IL_00a7:
  2393. {
  2394. G_B12_0 = 0;
  2395. }
  2396. IL_00a8:
  2397. {
  2398. V_9 = (bool)G_B12_0;
  2399. bool L_29 = V_9;
  2400. if (!L_29)
  2401. {
  2402. goto IL_00ba;
  2403. }
  2404. }
  2405. {
  2406. String_t* L_30 = V_2;
  2407. String_t* L_31;
  2408. L_31 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_30, NULL);
  2409. V_2 = L_31;
  2410. }
  2411. IL_00ba:
  2412. {
  2413. String_t* L_32 = V_2;
  2414. String_t* L_33;
  2415. L_33 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_32, NULL);
  2416. V_4 = L_33;
  2417. goto IL_020a;
  2418. }
  2419. IL_00cc:
  2420. {
  2421. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_34 = ___0_targetUri;
  2422. NullCheck(L_34);
  2423. String_t* L_35;
  2424. L_35 = Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F(L_34, NULL);
  2425. V_0 = L_35;
  2426. bool L_36 = ___2_prependProtocol;
  2427. if (L_36)
  2428. {
  2429. goto IL_00fd;
  2430. }
  2431. }
  2432. {
  2433. String_t* L_37 = ___1_targetUrl;
  2434. NullCheck(L_37);
  2435. int32_t L_38;
  2436. L_38 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_37, NULL);
  2437. String_t* L_39 = V_0;
  2438. NullCheck(L_39);
  2439. int32_t L_40;
  2440. L_40 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_39, NULL);
  2441. if ((((int32_t)L_38) < ((int32_t)((int32_t)il2cpp_codegen_add(L_40, 2)))))
  2442. {
  2443. goto IL_00fd;
  2444. }
  2445. }
  2446. {
  2447. String_t* L_41 = ___1_targetUrl;
  2448. String_t* L_42 = V_0;
  2449. NullCheck(L_42);
  2450. int32_t L_43;
  2451. L_43 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_42, NULL);
  2452. NullCheck(L_41);
  2453. Il2CppChar L_44;
  2454. L_44 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_41, ((int32_t)il2cpp_codegen_add(L_43, 1)), NULL);
  2455. G_B19_0 = ((((int32_t)((((int32_t)L_44) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2456. goto IL_00fe;
  2457. }
  2458. IL_00fd:
  2459. {
  2460. G_B19_0 = 0;
  2461. }
  2462. IL_00fe:
  2463. {
  2464. V_10 = (bool)G_B19_0;
  2465. bool L_45 = V_10;
  2466. if (!L_45)
  2467. {
  2468. goto IL_01e5;
  2469. }
  2470. }
  2471. {
  2472. String_t* L_46 = V_0;
  2473. String_t* L_47 = ___1_targetUrl;
  2474. NullCheck(L_47);
  2475. int32_t L_48;
  2476. L_48 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_47, NULL);
  2477. StringBuilder_t* L_49 = (StringBuilder_t*)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  2478. NullCheck(L_49);
  2479. StringBuilder__ctor_mF36D7701399DDDC077C4B55CF2142E976D956619(L_49, L_46, L_48, NULL);
  2480. V_11 = L_49;
  2481. StringBuilder_t* L_50 = V_11;
  2482. NullCheck(L_50);
  2483. StringBuilder_t* L_51;
  2484. L_51 = StringBuilder_Append_m71228B30F05724CD2CD96D9611DCD61BFB96A6E1(L_50, ((int32_t)58), NULL);
  2485. String_t* L_52 = V_0;
  2486. bool L_53;
  2487. L_53 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_52, _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A, NULL);
  2488. V_12 = L_53;
  2489. bool L_54 = V_12;
  2490. if (!L_54)
  2491. {
  2492. goto IL_01be;
  2493. }
  2494. }
  2495. {
  2496. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_55 = ___0_targetUri;
  2497. NullCheck(L_55);
  2498. String_t* L_56;
  2499. L_56 = Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA(L_55, NULL);
  2500. V_13 = L_56;
  2501. String_t* L_57 = V_13;
  2502. NullCheck(L_57);
  2503. bool L_58;
  2504. L_58 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_57, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2505. V_14 = L_58;
  2506. bool L_59 = V_14;
  2507. if (!L_59)
  2508. {
  2509. goto IL_0158;
  2510. }
  2511. }
  2512. {
  2513. String_t* L_60 = V_13;
  2514. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2515. String_t* L_61;
  2516. L_61 = WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140(L_60, NULL);
  2517. V_13 = L_61;
  2518. }
  2519. IL_0158:
  2520. {
  2521. String_t* L_62 = V_13;
  2522. NullCheck(L_62);
  2523. bool L_63;
  2524. L_63 = String_StartsWith_mF75DBA1EB709811E711B44E26FF919C88A8E65C0(L_62, _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D, NULL);
  2525. if (!L_63)
  2526. {
  2527. goto IL_0181;
  2528. }
  2529. }
  2530. {
  2531. String_t* L_64 = V_13;
  2532. NullCheck(L_64);
  2533. int32_t L_65;
  2534. L_65 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_64, NULL);
  2535. if ((((int32_t)L_65) <= ((int32_t)6)))
  2536. {
  2537. goto IL_0181;
  2538. }
  2539. }
  2540. {
  2541. String_t* L_66 = V_13;
  2542. NullCheck(L_66);
  2543. Il2CppChar L_67;
  2544. L_67 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_66, 6, NULL);
  2545. G_B27_0 = ((((int32_t)((((int32_t)L_67) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  2546. goto IL_0182;
  2547. }
  2548. IL_0181:
  2549. {
  2550. G_B27_0 = 0;
  2551. }
  2552. IL_0182:
  2553. {
  2554. V_15 = (bool)G_B27_0;
  2555. bool L_68 = V_15;
  2556. if (!L_68)
  2557. {
  2558. goto IL_01a9;
  2559. }
  2560. }
  2561. {
  2562. StringBuilder_t* L_69 = V_11;
  2563. NullCheck(L_69);
  2564. StringBuilder_t* L_70;
  2565. L_70 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_69, _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, NULL);
  2566. StringBuilder_t* L_71 = V_11;
  2567. String_t* L_72 = V_13;
  2568. NullCheck(L_72);
  2569. String_t* L_73;
  2570. L_73 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_72, 5, NULL);
  2571. NullCheck(L_71);
  2572. StringBuilder_t* L_74;
  2573. L_74 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_71, L_73, NULL);
  2574. goto IL_01b3;
  2575. }
  2576. IL_01a9:
  2577. {
  2578. StringBuilder_t* L_75 = V_11;
  2579. String_t* L_76 = V_13;
  2580. NullCheck(L_75);
  2581. StringBuilder_t* L_77;
  2582. L_77 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_75, L_76, NULL);
  2583. }
  2584. IL_01b3:
  2585. {
  2586. StringBuilder_t* L_78 = V_11;
  2587. NullCheck(L_78);
  2588. String_t* L_79;
  2589. L_79 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_78);
  2590. V_4 = L_79;
  2591. goto IL_020a;
  2592. }
  2593. IL_01be:
  2594. {
  2595. StringBuilder_t* L_80 = V_11;
  2596. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_81 = ___0_targetUri;
  2597. NullCheck(L_81);
  2598. String_t* L_82;
  2599. L_82 = Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C(L_81, NULL);
  2600. NullCheck(L_80);
  2601. StringBuilder_t* L_83;
  2602. L_83 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_80, L_82, NULL);
  2603. StringBuilder_t* L_84 = V_11;
  2604. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_85 = ___0_targetUri;
  2605. NullCheck(L_85);
  2606. String_t* L_86;
  2607. L_86 = Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835(L_85, NULL);
  2608. NullCheck(L_84);
  2609. StringBuilder_t* L_87;
  2610. L_87 = StringBuilder_Append_m08904D74E0C78E5F36DCD9C9303BDD07886D9F7D(L_84, L_86, NULL);
  2611. StringBuilder_t* L_88 = V_11;
  2612. NullCheck(L_88);
  2613. String_t* L_89;
  2614. L_89 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_88);
  2615. V_4 = L_89;
  2616. goto IL_020a;
  2617. }
  2618. IL_01e5:
  2619. {
  2620. String_t* L_90 = ___1_targetUrl;
  2621. NullCheck(L_90);
  2622. bool L_91;
  2623. L_91 = String_Contains_m6D77B121FADA7CA5F397C0FABB65DA62DF03B6C3(L_90, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, NULL);
  2624. V_16 = L_91;
  2625. bool L_92 = V_16;
  2626. if (!L_92)
  2627. {
  2628. goto IL_0200;
  2629. }
  2630. }
  2631. {
  2632. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_93 = ___0_targetUri;
  2633. NullCheck(L_93);
  2634. String_t* L_94;
  2635. L_94 = Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6(L_93, NULL);
  2636. V_4 = L_94;
  2637. goto IL_020a;
  2638. }
  2639. IL_0200:
  2640. {
  2641. Uri_t1500A52B5F71A04F5D05C0852D0F2A0941842A0E* L_95 = ___0_targetUri;
  2642. NullCheck(L_95);
  2643. String_t* L_96;
  2644. L_96 = Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE(L_95, NULL);
  2645. V_4 = L_96;
  2646. goto IL_020a;
  2647. }
  2648. IL_020a:
  2649. {
  2650. String_t* L_97 = V_4;
  2651. return L_97;
  2652. }
  2653. }
  2654. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  2655. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m7105E58E9157A90FF279F54E4B9B68EFDD3EF140 (String_t* ___0_encoded, const RuntimeMethod* method)
  2656. {
  2657. static bool s_Il2CppMethodInitialized;
  2658. if (!s_Il2CppMethodInitialized)
  2659. {
  2660. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2661. s_Il2CppMethodInitialized = true;
  2662. }
  2663. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  2664. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  2665. String_t* V_2 = NULL;
  2666. {
  2667. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2668. L_0 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2669. String_t* L_1 = ___0_encoded;
  2670. NullCheck(L_0);
  2671. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  2672. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  2673. V_0 = L_2;
  2674. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = V_0;
  2675. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2676. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  2677. L_4 = WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704(L_3, NULL);
  2678. V_1 = L_4;
  2679. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5;
  2680. L_5 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2681. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_1;
  2682. NullCheck(L_5);
  2683. String_t* L_7;
  2684. L_7 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(45 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_5, L_6);
  2685. V_2 = L_7;
  2686. goto IL_0022;
  2687. }
  2688. IL_0022:
  2689. {
  2690. String_t* L_8 = V_2;
  2691. return L_8;
  2692. }
  2693. }
  2694. // System.Void UnityEngineInternal.WebRequestUtils::.cctor()
  2695. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_m31ADEB75E00368144C8F223647D81A3B5ADD3D69 (const RuntimeMethod* method)
  2696. {
  2697. static bool s_Il2CppMethodInitialized;
  2698. if (!s_Il2CppMethodInitialized)
  2699. {
  2700. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  2701. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  2702. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F);
  2703. s_Il2CppMethodInitialized = true;
  2704. }
  2705. {
  2706. Regex_tE773142C2BE45C5D362B0F815AFF831707A51772* L_0 = (Regex_tE773142C2BE45C5D362B0F815AFF831707A51772*)il2cpp_codegen_object_new(Regex_tE773142C2BE45C5D362B0F815AFF831707A51772_il2cpp_TypeInfo_var);
  2707. NullCheck(L_0);
  2708. Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD(L_0, _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F, NULL);
  2709. ((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex_0 = L_0;
  2710. Il2CppCodeGenWriteBarrier((void**)(&((WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var))->___domainRegex_0), (void*)L_0);
  2711. return;
  2712. }
  2713. }
  2714. #ifdef __clang__
  2715. #pragma clang diagnostic pop
  2716. #endif
  2717. #ifdef __clang__
  2718. #pragma clang diagnostic push
  2719. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  2720. #pragma clang diagnostic ignored "-Wunused-variable"
  2721. #endif
  2722. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  2723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000 (const RuntimeMethod* method)
  2724. {
  2725. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_0 = NULL;
  2726. {
  2727. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  2728. L_0 = Encoding_get_ASCII_mCC61B512D320FD4E2E71CC0DFDF8DDF3CD215C65(NULL);
  2729. V_0 = L_0;
  2730. goto IL_0009;
  2731. }
  2732. IL_0009:
  2733. {
  2734. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1 = V_0;
  2735. return L_1;
  2736. }
  2737. }
  2738. // System.Void UnityEngine.WWWForm::.ctor()
  2739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__ctor_mB1AA4D4BE7011A371B590332CC65794270F269F6 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2740. {
  2741. static bool s_Il2CppMethodInitialized;
  2742. if (!s_Il2CppMethodInitialized)
  2743. {
  2744. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  2745. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var);
  2746. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2747. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var);
  2748. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2749. s_Il2CppMethodInitialized = true;
  2750. }
  2751. int32_t V_0 = 0;
  2752. int32_t V_1 = 0;
  2753. bool V_2 = false;
  2754. bool V_3 = false;
  2755. bool V_4 = false;
  2756. {
  2757. __this->___containsFiles_5 = (bool)0;
  2758. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  2759. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_0 = (List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4*)il2cpp_codegen_object_new(List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4_il2cpp_TypeInfo_var);
  2760. NullCheck(L_0);
  2761. List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4(L_0, List_1__ctor_m8070151BA99349188C9F1457EC394480BE0D4ED4_RuntimeMethod_var);
  2762. __this->___formData_0 = L_0;
  2763. Il2CppCodeGenWriteBarrier((void**)(&__this->___formData_0), (void*)L_0);
  2764. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_1 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2765. NullCheck(L_1);
  2766. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_1, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2767. __this->___fieldNames_1 = L_1;
  2768. Il2CppCodeGenWriteBarrier((void**)(&__this->___fieldNames_1), (void*)L_1);
  2769. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2770. NullCheck(L_2);
  2771. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_2, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2772. __this->___fileNames_2 = L_2;
  2773. Il2CppCodeGenWriteBarrier((void**)(&__this->___fileNames_2), (void*)L_2);
  2774. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_3 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
  2775. NullCheck(L_3);
  2776. List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E(L_3, List_1__ctor_mCA8DD57EAC70C2B5923DBB9D5A77CEAC22E7068E_RuntimeMethod_var);
  2777. __this->___types_3 = L_3;
  2778. Il2CppCodeGenWriteBarrier((void**)(&__this->___types_3), (void*)L_3);
  2779. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)((int32_t)40));
  2780. __this->___boundary_4 = L_4;
  2781. Il2CppCodeGenWriteBarrier((void**)(&__this->___boundary_4), (void*)L_4);
  2782. V_0 = 0;
  2783. goto IL_0080;
  2784. }
  2785. IL_004c:
  2786. {
  2787. int32_t L_5;
  2788. L_5 = Random_Range_m6763D9767F033357F88B6637F048F4ACA4123B68(((int32_t)48), ((int32_t)110), NULL);
  2789. V_1 = L_5;
  2790. int32_t L_6 = V_1;
  2791. V_2 = (bool)((((int32_t)L_6) > ((int32_t)((int32_t)57)))? 1 : 0);
  2792. bool L_7 = V_2;
  2793. if (!L_7)
  2794. {
  2795. goto IL_0064;
  2796. }
  2797. }
  2798. {
  2799. int32_t L_8 = V_1;
  2800. V_1 = ((int32_t)il2cpp_codegen_add(L_8, 7));
  2801. }
  2802. IL_0064:
  2803. {
  2804. int32_t L_9 = V_1;
  2805. V_3 = (bool)((((int32_t)L_9) > ((int32_t)((int32_t)90)))? 1 : 0);
  2806. bool L_10 = V_3;
  2807. if (!L_10)
  2808. {
  2809. goto IL_0071;
  2810. }
  2811. }
  2812. {
  2813. int32_t L_11 = V_1;
  2814. V_1 = ((int32_t)il2cpp_codegen_add(L_11, 6));
  2815. }
  2816. IL_0071:
  2817. {
  2818. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___boundary_4;
  2819. int32_t L_13 = V_0;
  2820. int32_t L_14 = V_1;
  2821. NullCheck(L_12);
  2822. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)((int32_t)(uint8_t)L_14));
  2823. int32_t L_15 = V_0;
  2824. V_0 = ((int32_t)il2cpp_codegen_add(L_15, 1));
  2825. }
  2826. IL_0080:
  2827. {
  2828. int32_t L_16 = V_0;
  2829. V_4 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)40)))? 1 : 0);
  2830. bool L_17 = V_4;
  2831. if (L_17)
  2832. {
  2833. goto IL_004c;
  2834. }
  2835. }
  2836. {
  2837. return;
  2838. }
  2839. }
  2840. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String)
  2841. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m6315BDFDEA6F0F57ABCBCF4B1AE482E1893BEB8D (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, const RuntimeMethod* method)
  2842. {
  2843. {
  2844. String_t* L_0 = ___0_fieldName;
  2845. String_t* L_1 = ___1_value;
  2846. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  2847. L_2 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2848. WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E(__this, L_0, L_1, L_2, NULL);
  2849. return;
  2850. }
  2851. }
  2852. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String,System.Text.Encoding)
  2853. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m5309EB3D9652AF0CFBEBFB42324E6AF0BCFB350E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, String_t* ___0_fieldName, String_t* ___1_value, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___2_e, const RuntimeMethod* method)
  2854. {
  2855. static bool s_Il2CppMethodInitialized;
  2856. if (!s_Il2CppMethodInitialized)
  2857. {
  2858. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var);
  2859. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2860. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843);
  2861. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2862. s_Il2CppMethodInitialized = true;
  2863. }
  2864. {
  2865. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = __this->___fieldNames_1;
  2866. String_t* L_1 = ___0_fieldName;
  2867. NullCheck(L_0);
  2868. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_0, L_1, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2869. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_2 = __this->___fileNames_2;
  2870. NullCheck(L_2);
  2871. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_2, (String_t*)NULL, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2872. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_3 = __this->___formData_0;
  2873. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4 = ___2_e;
  2874. String_t* L_5 = ___1_value;
  2875. NullCheck(L_4);
  2876. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6;
  2877. L_6 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, L_5);
  2878. NullCheck(L_3);
  2879. List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_inline(L_3, L_6, List_1_Add_mAF067D8BCD6732A0ADBE1BA6EE909B3512880D42_RuntimeMethod_var);
  2880. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_7 = __this->___types_3;
  2881. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = ___2_e;
  2882. NullCheck(L_8);
  2883. String_t* L_9;
  2884. L_9 = VirtualFuncInvoker0< String_t* >::Invoke(11 /* System.String System.Text.Encoding::get_WebName() */, L_8);
  2885. String_t* L_10;
  2886. L_10 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843, L_9, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
  2887. NullCheck(L_7);
  2888. List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_7, L_10, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
  2889. return;
  2890. }
  2891. }
  2892. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
  2893. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2894. {
  2895. static bool s_Il2CppMethodInitialized;
  2896. if (!s_Il2CppMethodInitialized)
  2897. {
  2898. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
  2899. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2900. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
  2901. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE);
  2902. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02);
  2903. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
  2904. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  2905. s_Il2CppMethodInitialized = true;
  2906. }
  2907. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_0 = NULL;
  2908. bool V_1 = false;
  2909. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_2 = NULL;
  2910. {
  2911. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_0 = (Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83*)il2cpp_codegen_object_new(Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83_il2cpp_TypeInfo_var);
  2912. NullCheck(L_0);
  2913. Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052(L_0, Dictionary_2__ctor_m768E076F1E804CE4959F4E71D3E6A9ADE2F55052_RuntimeMethod_var);
  2914. V_0 = L_0;
  2915. bool L_1 = __this->___containsFiles_5;
  2916. V_1 = L_1;
  2917. bool L_2 = V_1;
  2918. if (!L_2)
  2919. {
  2920. goto IL_0047;
  2921. }
  2922. }
  2923. {
  2924. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_3 = V_0;
  2925. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  2926. L_4 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  2927. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = __this->___boundary_4;
  2928. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = __this->___boundary_4;
  2929. NullCheck(L_6);
  2930. NullCheck(L_4);
  2931. String_t* L_7;
  2932. L_7 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(46 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, ((int32_t)(((RuntimeArray*)L_6)->max_length)));
  2933. String_t* L_8;
  2934. L_8 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02, L_7, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, NULL);
  2935. NullCheck(L_3);
  2936. Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2(L_3, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, L_8, Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2937. goto IL_0058;
  2938. }
  2939. IL_0047:
  2940. {
  2941. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_9 = V_0;
  2942. NullCheck(L_9);
  2943. Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2(L_9, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE, Dictionary_2_set_Item_m9BF625649E96E60C1509898A992A6447E351D1A2_RuntimeMethod_var);
  2944. }
  2945. IL_0058:
  2946. {
  2947. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_10 = V_0;
  2948. V_2 = L_10;
  2949. goto IL_005c;
  2950. }
  2951. IL_005c:
  2952. {
  2953. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_11 = V_2;
  2954. return L_11;
  2955. }
  2956. }
  2957. // System.Byte[] UnityEngine.WWWForm::get_data()
  2958. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145 (WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* __this, const RuntimeMethod* method)
  2959. {
  2960. static bool s_Il2CppMethodInitialized;
  2961. if (!s_Il2CppMethodInitialized)
  2962. {
  2963. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  2964. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  2965. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  2966. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  2967. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  2968. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
  2969. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  2970. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  2971. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  2972. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  2973. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  2974. s_Il2CppMethodInitialized = true;
  2975. }
  2976. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  2977. bool V_1 = false;
  2978. int32_t V_2 = 0;
  2979. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_3 = NULL;
  2980. String_t* V_4 = NULL;
  2981. String_t* V_5 = NULL;
  2982. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_6 = NULL;
  2983. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  2984. bool V_8 = false;
  2985. bool V_9 = false;
  2986. String_t* V_10 = NULL;
  2987. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_11 = NULL;
  2988. bool V_12 = false;
  2989. bool V_13 = false;
  2990. int32_t V_14 = 0;
  2991. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_15 = NULL;
  2992. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_16 = NULL;
  2993. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_17 = NULL;
  2994. bool V_18 = false;
  2995. bool V_19 = false;
  2996. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_20 = NULL;
  2997. int32_t G_B6_0 = 0;
  2998. int32_t G_B12_0 = 0;
  2999. {
  3000. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_0 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3001. NullCheck(L_0);
  3002. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_0, ((int32_t)1024), NULL);
  3003. V_0 = L_0;
  3004. }
  3005. {
  3006. auto __finallyBlock = il2cpp::utils::Finally([&]
  3007. {
  3008. FINALLY_03d1:
  3009. {// begin finally (depth: 1)
  3010. {
  3011. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = V_0;
  3012. if (!L_1)
  3013. {
  3014. goto IL_03db;
  3015. }
  3016. }
  3017. {
  3018. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  3019. NullCheck(L_2);
  3020. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_2);
  3021. }
  3022. IL_03db:
  3023. {
  3024. return;
  3025. }
  3026. }// end finally (depth: 1)
  3027. });
  3028. try
  3029. {// begin try (depth: 1)
  3030. {
  3031. bool L_3 = __this->___containsFiles_5;
  3032. V_1 = L_3;
  3033. bool L_4 = V_1;
  3034. if (!L_4)
  3035. {
  3036. goto IL_0318_1;
  3037. }
  3038. }
  3039. {
  3040. V_2 = 0;
  3041. goto IL_0295_1;
  3042. }
  3043. IL_0022_1:
  3044. {
  3045. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_5 = V_0;
  3046. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3047. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3048. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3049. NullCheck(L_7);
  3050. NullCheck(L_5);
  3051. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_5, L_6, 0, ((int32_t)(((RuntimeArray*)L_7)->max_length)));
  3052. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_8 = V_0;
  3053. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3054. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3055. NullCheck(L_10);
  3056. NullCheck(L_8);
  3057. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_8, L_9, 0, ((int32_t)(((RuntimeArray*)L_10)->max_length)));
  3058. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  3059. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = __this->___boundary_4;
  3060. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = __this->___boundary_4;
  3061. NullCheck(L_13);
  3062. NullCheck(L_11);
  3063. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_11, L_12, 0, ((int32_t)(((RuntimeArray*)L_13)->max_length)));
  3064. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_14 = V_0;
  3065. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3066. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3067. NullCheck(L_16);
  3068. NullCheck(L_14);
  3069. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_14, L_15, 0, ((int32_t)(((RuntimeArray*)L_16)->max_length)));
  3070. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_17 = V_0;
  3071. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8;
  3072. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_19 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8;
  3073. NullCheck(L_19);
  3074. NullCheck(L_17);
  3075. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_17, L_18, 0, ((int32_t)(((RuntimeArray*)L_19)->max_length)));
  3076. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_20;
  3077. L_20 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3078. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_21 = __this->___types_3;
  3079. int32_t L_22 = V_2;
  3080. NullCheck(L_21);
  3081. String_t* L_23;
  3082. L_23 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_21, L_22, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3083. NullCheck(L_20);
  3084. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_24;
  3085. L_24 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_20, L_23);
  3086. V_3 = L_24;
  3087. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_25 = V_0;
  3088. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26 = V_3;
  3089. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = V_3;
  3090. NullCheck(L_27);
  3091. NullCheck(L_25);
  3092. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_25, L_26, 0, ((int32_t)(((RuntimeArray*)L_27)->max_length)));
  3093. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_28 = V_0;
  3094. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3095. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_30 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3096. NullCheck(L_30);
  3097. NullCheck(L_28);
  3098. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_28, L_29, 0, ((int32_t)(((RuntimeArray*)L_30)->max_length)));
  3099. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_31 = V_0;
  3100. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_32 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9;
  3101. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9;
  3102. NullCheck(L_33);
  3103. NullCheck(L_31);
  3104. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_31, L_32, 0, ((int32_t)(((RuntimeArray*)L_33)->max_length)));
  3105. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_34;
  3106. L_34 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3107. NullCheck(L_34);
  3108. String_t* L_35;
  3109. L_35 = VirtualFuncInvoker0< String_t* >::Invoke(10 /* System.String System.Text.Encoding::get_HeaderName() */, L_34);
  3110. V_4 = L_35;
  3111. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_36 = __this->___fieldNames_1;
  3112. int32_t L_37 = V_2;
  3113. NullCheck(L_36);
  3114. String_t* L_38;
  3115. L_38 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_36, L_37, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3116. V_5 = L_38;
  3117. String_t* L_39 = V_5;
  3118. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40;
  3119. L_40 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3120. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3121. bool L_41;
  3122. L_41 = WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7(L_39, L_40, NULL);
  3123. if (!L_41)
  3124. {
  3125. goto IL_010d_1;
  3126. }
  3127. }
  3128. {
  3129. String_t* L_42 = V_5;
  3130. NullCheck(L_42);
  3131. int32_t L_43;
  3132. L_43 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_42, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, NULL);
  3133. G_B6_0 = ((((int32_t)L_43) > ((int32_t)(-1)))? 1 : 0);
  3134. goto IL_010e_1;
  3135. }
  3136. IL_010d_1:
  3137. {
  3138. G_B6_0 = 1;
  3139. }
  3140. IL_010e_1:
  3141. {
  3142. V_8 = (bool)G_B6_0;
  3143. bool L_44 = V_8;
  3144. if (!L_44)
  3145. {
  3146. goto IL_014f_1;
  3147. }
  3148. }
  3149. {
  3150. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_45 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
  3151. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_46 = L_45;
  3152. NullCheck(L_46);
  3153. ArrayElementTypeCheck (L_46, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3154. (L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3155. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_47 = L_46;
  3156. String_t* L_48 = V_4;
  3157. NullCheck(L_47);
  3158. ArrayElementTypeCheck (L_47, L_48);
  3159. (L_47)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_48);
  3160. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_49 = L_47;
  3161. NullCheck(L_49);
  3162. ArrayElementTypeCheck (L_49, _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3163. (L_49)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3164. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_50 = L_49;
  3165. String_t* L_51 = V_5;
  3166. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_52;
  3167. L_52 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3168. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3169. String_t* L_53;
  3170. L_53 = WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A(L_51, L_52, NULL);
  3171. NullCheck(L_50);
  3172. ArrayElementTypeCheck (L_50, L_53);
  3173. (L_50)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_53);
  3174. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_54 = L_50;
  3175. NullCheck(L_54);
  3176. ArrayElementTypeCheck (L_54, _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3177. (L_54)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3178. String_t* L_55;
  3179. L_55 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_54, NULL);
  3180. V_5 = L_55;
  3181. }
  3182. IL_014f_1:
  3183. {
  3184. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_56;
  3185. L_56 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3186. String_t* L_57 = V_5;
  3187. NullCheck(L_56);
  3188. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_58;
  3189. L_58 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_56, L_57);
  3190. V_6 = L_58;
  3191. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_59 = V_0;
  3192. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_60 = V_6;
  3193. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_61 = V_6;
  3194. NullCheck(L_61);
  3195. NullCheck(L_59);
  3196. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_59, L_60, 0, ((int32_t)(((RuntimeArray*)L_61)->max_length)));
  3197. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_62 = V_0;
  3198. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3199. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_63 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3200. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_64 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3201. NullCheck(L_64);
  3202. NullCheck(L_62);
  3203. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_62, L_63, 0, ((int32_t)(((RuntimeArray*)L_64)->max_length)));
  3204. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_65 = __this->___fileNames_2;
  3205. int32_t L_66 = V_2;
  3206. NullCheck(L_65);
  3207. String_t* L_67;
  3208. L_67 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_65, L_66, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3209. V_9 = (bool)((!(((RuntimeObject*)(String_t*)L_67) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  3210. bool L_68 = V_9;
  3211. if (!L_68)
  3212. {
  3213. goto IL_024c_1;
  3214. }
  3215. }
  3216. {
  3217. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_69 = __this->___fileNames_2;
  3218. int32_t L_70 = V_2;
  3219. NullCheck(L_69);
  3220. String_t* L_71;
  3221. L_71 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_69, L_70, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3222. V_10 = L_71;
  3223. String_t* L_72 = V_10;
  3224. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_73;
  3225. L_73 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3226. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3227. bool L_74;
  3228. L_74 = WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7(L_72, L_73, NULL);
  3229. if (!L_74)
  3230. {
  3231. goto IL_01c5_1;
  3232. }
  3233. }
  3234. {
  3235. String_t* L_75 = V_10;
  3236. NullCheck(L_75);
  3237. int32_t L_76;
  3238. L_76 = String_IndexOf_m69E9BDAFD93767C85A7FF861B453415D3B4A200F(L_75, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, NULL);
  3239. G_B12_0 = ((((int32_t)L_76) > ((int32_t)(-1)))? 1 : 0);
  3240. goto IL_01c6_1;
  3241. }
  3242. IL_01c5_1:
  3243. {
  3244. G_B12_0 = 1;
  3245. }
  3246. IL_01c6_1:
  3247. {
  3248. V_12 = (bool)G_B12_0;
  3249. bool L_77 = V_12;
  3250. if (!L_77)
  3251. {
  3252. goto IL_0207_1;
  3253. }
  3254. }
  3255. {
  3256. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_78 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)5);
  3257. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_79 = L_78;
  3258. NullCheck(L_79);
  3259. ArrayElementTypeCheck (L_79, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3260. (L_79)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  3261. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = L_79;
  3262. String_t* L_81 = V_4;
  3263. NullCheck(L_80);
  3264. ArrayElementTypeCheck (L_80, L_81);
  3265. (L_80)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_81);
  3266. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_82 = L_80;
  3267. NullCheck(L_82);
  3268. ArrayElementTypeCheck (L_82, _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3269. (L_82)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  3270. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_83 = L_82;
  3271. String_t* L_84 = V_10;
  3272. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_85;
  3273. L_85 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3274. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3275. String_t* L_86;
  3276. L_86 = WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A(L_84, L_85, NULL);
  3277. NullCheck(L_83);
  3278. ArrayElementTypeCheck (L_83, L_86);
  3279. (L_83)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_86);
  3280. StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_87 = L_83;
  3281. NullCheck(L_87);
  3282. ArrayElementTypeCheck (L_87, _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3283. (L_87)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  3284. String_t* L_88;
  3285. L_88 = String_Concat_m647EBF831F54B6DF7D5AFA5FD012CF4EE7571B6A(L_87, NULL);
  3286. V_10 = L_88;
  3287. }
  3288. IL_0207_1:
  3289. {
  3290. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_89;
  3291. L_89 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3292. String_t* L_90 = V_10;
  3293. NullCheck(L_89);
  3294. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_91;
  3295. L_91 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_89, L_90);
  3296. V_11 = L_91;
  3297. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_92 = V_0;
  3298. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3299. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_93 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11;
  3300. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_94 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11;
  3301. NullCheck(L_94);
  3302. NullCheck(L_92);
  3303. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_92, L_93, 0, ((int32_t)(((RuntimeArray*)L_94)->max_length)));
  3304. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_95 = V_0;
  3305. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_96 = V_11;
  3306. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_97 = V_11;
  3307. NullCheck(L_97);
  3308. NullCheck(L_95);
  3309. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_95, L_96, 0, ((int32_t)(((RuntimeArray*)L_97)->max_length)));
  3310. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_98 = V_0;
  3311. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_99 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3312. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_100 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10;
  3313. NullCheck(L_100);
  3314. NullCheck(L_98);
  3315. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_98, L_99, 0, ((int32_t)(((RuntimeArray*)L_100)->max_length)));
  3316. }
  3317. IL_024c_1:
  3318. {
  3319. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_101 = V_0;
  3320. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3321. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_102 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3322. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_103 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3323. NullCheck(L_103);
  3324. NullCheck(L_101);
  3325. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_101, L_102, 0, ((int32_t)(((RuntimeArray*)L_103)->max_length)));
  3326. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_104 = V_0;
  3327. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_105 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3328. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_106 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3329. NullCheck(L_106);
  3330. NullCheck(L_104);
  3331. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_104, L_105, 0, ((int32_t)(((RuntimeArray*)L_106)->max_length)));
  3332. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_107 = __this->___formData_0;
  3333. int32_t L_108 = V_2;
  3334. NullCheck(L_107);
  3335. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_109;
  3336. L_109 = List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6(L_107, L_108, List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  3337. V_7 = L_109;
  3338. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_110 = V_0;
  3339. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_111 = V_7;
  3340. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_112 = V_7;
  3341. NullCheck(L_112);
  3342. NullCheck(L_110);
  3343. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_110, L_111, 0, ((int32_t)(((RuntimeArray*)L_112)->max_length)));
  3344. int32_t L_113 = V_2;
  3345. V_2 = ((int32_t)il2cpp_codegen_add(L_113, 1));
  3346. }
  3347. IL_0295_1:
  3348. {
  3349. int32_t L_114 = V_2;
  3350. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_115 = __this->___formData_0;
  3351. NullCheck(L_115);
  3352. int32_t L_116;
  3353. L_116 = List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline(L_115, List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  3354. V_13 = (bool)((((int32_t)L_114) < ((int32_t)L_116))? 1 : 0);
  3355. bool L_117 = V_13;
  3356. if (L_117)
  3357. {
  3358. goto IL_0022_1;
  3359. }
  3360. }
  3361. {
  3362. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_118 = V_0;
  3363. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3364. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_119 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3365. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_120 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3366. NullCheck(L_120);
  3367. NullCheck(L_118);
  3368. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_118, L_119, 0, ((int32_t)(((RuntimeArray*)L_120)->max_length)));
  3369. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_121 = V_0;
  3370. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_122 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3371. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_123 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3372. NullCheck(L_123);
  3373. NullCheck(L_121);
  3374. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_121, L_122, 0, ((int32_t)(((RuntimeArray*)L_123)->max_length)));
  3375. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_124 = V_0;
  3376. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_125 = __this->___boundary_4;
  3377. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_126 = __this->___boundary_4;
  3378. NullCheck(L_126);
  3379. NullCheck(L_124);
  3380. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_124, L_125, 0, ((int32_t)(((RuntimeArray*)L_126)->max_length)));
  3381. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_127 = V_0;
  3382. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_128 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3383. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_129 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6;
  3384. NullCheck(L_129);
  3385. NullCheck(L_127);
  3386. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_127, L_128, 0, ((int32_t)(((RuntimeArray*)L_129)->max_length)));
  3387. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_130 = V_0;
  3388. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_131 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3389. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_132 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7;
  3390. NullCheck(L_132);
  3391. NullCheck(L_130);
  3392. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_130, L_131, 0, ((int32_t)(((RuntimeArray*)L_132)->max_length)));
  3393. goto IL_03c7_1;
  3394. }
  3395. IL_0318_1:
  3396. {
  3397. V_14 = 0;
  3398. goto IL_03ae_1;
  3399. }
  3400. IL_0321_1:
  3401. {
  3402. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133;
  3403. L_133 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  3404. List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_134 = __this->___fieldNames_1;
  3405. int32_t L_135 = V_14;
  3406. NullCheck(L_134);
  3407. String_t* L_136;
  3408. L_136 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_134, L_135, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
  3409. NullCheck(L_133);
  3410. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_137;
  3411. L_137 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_133, L_136);
  3412. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3413. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_138;
  3414. L_138 = WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E(L_137, NULL);
  3415. V_15 = L_138;
  3416. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_139 = __this->___formData_0;
  3417. int32_t L_140 = V_14;
  3418. NullCheck(L_139);
  3419. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_141;
  3420. L_141 = List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6(L_139, L_140, List_1_get_Item_m2C6A207D8824FE873045A66C942593AE67D90CA6_RuntimeMethod_var);
  3421. V_16 = L_141;
  3422. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_142 = V_16;
  3423. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_143;
  3424. L_143 = WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E(L_142, NULL);
  3425. V_17 = L_143;
  3426. int32_t L_144 = V_14;
  3427. V_18 = (bool)((((int32_t)L_144) > ((int32_t)0))? 1 : 0);
  3428. bool L_145 = V_18;
  3429. if (!L_145)
  3430. {
  3431. goto IL_0377_1;
  3432. }
  3433. }
  3434. {
  3435. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_146 = V_0;
  3436. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3437. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_147 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12;
  3438. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_148 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12;
  3439. NullCheck(L_148);
  3440. NullCheck(L_146);
  3441. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_146, L_147, 0, ((int32_t)(((RuntimeArray*)L_148)->max_length)));
  3442. }
  3443. IL_0377_1:
  3444. {
  3445. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_149 = V_0;
  3446. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_150 = V_15;
  3447. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_151 = V_15;
  3448. NullCheck(L_151);
  3449. NullCheck(L_149);
  3450. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_149, L_150, 0, ((int32_t)(((RuntimeArray*)L_151)->max_length)));
  3451. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_152 = V_0;
  3452. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3453. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_153 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13;
  3454. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_154 = ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13;
  3455. NullCheck(L_154);
  3456. NullCheck(L_152);
  3457. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_152, L_153, 0, ((int32_t)(((RuntimeArray*)L_154)->max_length)));
  3458. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_155 = V_0;
  3459. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_156 = V_17;
  3460. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_157 = V_17;
  3461. NullCheck(L_157);
  3462. NullCheck(L_155);
  3463. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_155, L_156, 0, ((int32_t)(((RuntimeArray*)L_157)->max_length)));
  3464. int32_t L_158 = V_14;
  3465. V_14 = ((int32_t)il2cpp_codegen_add(L_158, 1));
  3466. }
  3467. IL_03ae_1:
  3468. {
  3469. int32_t L_159 = V_14;
  3470. List_1_tBFF9DD9FFA06F20E74F9D7AD36610BD754D353A4* L_160 = __this->___formData_0;
  3471. NullCheck(L_160);
  3472. int32_t L_161;
  3473. L_161 = List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_inline(L_160, List_1_get_Count_m88FEB2D94E35C258B61F53400F7CA20E99A7DAD3_RuntimeMethod_var);
  3474. V_19 = (bool)((((int32_t)L_159) < ((int32_t)L_161))? 1 : 0);
  3475. bool L_162 = V_19;
  3476. if (L_162)
  3477. {
  3478. goto IL_0321_1;
  3479. }
  3480. }
  3481. {
  3482. }
  3483. IL_03c7_1:
  3484. {
  3485. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_163 = V_0;
  3486. NullCheck(L_163);
  3487. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_164;
  3488. L_164 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_163);
  3489. V_20 = L_164;
  3490. goto IL_03dc;
  3491. }
  3492. }// end try (depth: 1)
  3493. catch(Il2CppExceptionWrapper& e)
  3494. {
  3495. __finallyBlock.StoreException(e.ex);
  3496. }
  3497. }
  3498. IL_03dc:
  3499. {
  3500. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_165 = V_20;
  3501. return L_165;
  3502. }
  3503. }
  3504. // System.Void UnityEngine.WWWForm::.cctor()
  3505. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__cctor_m272C4A10B85A1DEC11809F9EEADD0B2DE9166B5F (const RuntimeMethod* method)
  3506. {
  3507. static bool s_Il2CppMethodInitialized;
  3508. if (!s_Il2CppMethodInitialized)
  3509. {
  3510. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3511. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  3512. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  3513. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  3514. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  3515. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  3516. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  3517. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  3518. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  3519. s_Il2CppMethodInitialized = true;
  3520. }
  3521. {
  3522. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  3523. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3524. NullCheck(L_0);
  3525. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  3526. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  3527. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6 = L_1;
  3528. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dDash_6), (void*)L_1);
  3529. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  3530. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3531. NullCheck(L_2);
  3532. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  3533. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  3534. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7 = L_3;
  3535. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___crlf_7), (void*)L_3);
  3536. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_4;
  3537. L_4 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3538. NullCheck(L_4);
  3539. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  3540. L_5 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  3541. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8 = L_5;
  3542. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___contentTypeHeader_8), (void*)L_5);
  3543. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  3544. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3545. NullCheck(L_6);
  3546. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  3547. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  3548. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9 = L_7;
  3549. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___dispositionHeader_9), (void*)L_7);
  3550. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  3551. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3552. NullCheck(L_8);
  3553. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  3554. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  3555. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10 = L_9;
  3556. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___endQuote_10), (void*)L_9);
  3557. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10;
  3558. L_10 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3559. NullCheck(L_10);
  3560. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  3561. L_11 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_10, _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  3562. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11 = L_11;
  3563. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___fileNameField_11), (void*)L_11);
  3564. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  3565. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3566. NullCheck(L_12);
  3567. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  3568. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  3569. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12 = L_13;
  3570. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___ampersand_12), (void*)L_13);
  3571. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_14;
  3572. L_14 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3573. NullCheck(L_14);
  3574. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_15;
  3575. L_15 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_14, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  3576. ((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13 = L_15;
  3577. Il2CppCodeGenWriteBarrier((void**)(&((WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var))->___equal_13), (void*)L_15);
  3578. return;
  3579. }
  3580. }
  3581. #ifdef __clang__
  3582. #pragma clang diagnostic pop
  3583. #endif
  3584. #ifdef __clang__
  3585. #pragma clang diagnostic push
  3586. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3587. #pragma clang diagnostic ignored "-Wunused-variable"
  3588. #endif
  3589. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  3590. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_b, int32_t ___1_offset, const RuntimeMethod* method)
  3591. {
  3592. uint8_t V_0 = 0x0;
  3593. int32_t V_1 = 0;
  3594. int32_t V_2 = 0;
  3595. bool V_3 = false;
  3596. bool V_4 = false;
  3597. bool V_5 = false;
  3598. bool V_6 = false;
  3599. uint8_t V_7 = 0x0;
  3600. bool V_8 = false;
  3601. int32_t G_B4_0 = 0;
  3602. int32_t G_B9_0 = 0;
  3603. int32_t G_B14_0 = 0;
  3604. {
  3605. V_0 = (uint8_t)0;
  3606. int32_t L_0 = ___1_offset;
  3607. V_1 = L_0;
  3608. goto IL_0082;
  3609. }
  3610. IL_0007:
  3611. {
  3612. uint8_t L_1 = V_0;
  3613. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, ((int32_t)16))));
  3614. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_b;
  3615. int32_t L_3 = V_1;
  3616. NullCheck(L_2);
  3617. int32_t L_4 = L_3;
  3618. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  3619. V_2 = L_5;
  3620. int32_t L_6 = V_2;
  3621. if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
  3622. {
  3623. goto IL_0021;
  3624. }
  3625. }
  3626. {
  3627. int32_t L_7 = V_2;
  3628. G_B4_0 = ((((int32_t)((((int32_t)L_7) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3629. goto IL_0022;
  3630. }
  3631. IL_0021:
  3632. {
  3633. G_B4_0 = 0;
  3634. }
  3635. IL_0022:
  3636. {
  3637. V_3 = (bool)G_B4_0;
  3638. bool L_8 = V_3;
  3639. if (!L_8)
  3640. {
  3641. goto IL_002d;
  3642. }
  3643. }
  3644. {
  3645. int32_t L_9 = V_2;
  3646. V_2 = ((int32_t)il2cpp_codegen_subtract(L_9, ((int32_t)48)));
  3647. goto IL_0065;
  3648. }
  3649. IL_002d:
  3650. {
  3651. int32_t L_10 = V_2;
  3652. if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
  3653. {
  3654. goto IL_003c;
  3655. }
  3656. }
  3657. {
  3658. int32_t L_11 = V_2;
  3659. G_B9_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)75)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3660. goto IL_003d;
  3661. }
  3662. IL_003c:
  3663. {
  3664. G_B9_0 = 0;
  3665. }
  3666. IL_003d:
  3667. {
  3668. V_4 = (bool)G_B9_0;
  3669. bool L_12 = V_4;
  3670. if (!L_12)
  3671. {
  3672. goto IL_004a;
  3673. }
  3674. }
  3675. {
  3676. int32_t L_13 = V_2;
  3677. V_2 = ((int32_t)il2cpp_codegen_subtract(L_13, ((int32_t)55)));
  3678. goto IL_0065;
  3679. }
  3680. IL_004a:
  3681. {
  3682. int32_t L_14 = V_2;
  3683. if ((((int32_t)L_14) < ((int32_t)((int32_t)97))))
  3684. {
  3685. goto IL_0059;
  3686. }
  3687. }
  3688. {
  3689. int32_t L_15 = V_2;
  3690. G_B14_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  3691. goto IL_005a;
  3692. }
  3693. IL_0059:
  3694. {
  3695. G_B14_0 = 0;
  3696. }
  3697. IL_005a:
  3698. {
  3699. V_5 = (bool)G_B14_0;
  3700. bool L_16 = V_5;
  3701. if (!L_16)
  3702. {
  3703. goto IL_0065;
  3704. }
  3705. }
  3706. {
  3707. int32_t L_17 = V_2;
  3708. V_2 = ((int32_t)il2cpp_codegen_subtract(L_17, ((int32_t)87)));
  3709. }
  3710. IL_0065:
  3711. {
  3712. int32_t L_18 = V_2;
  3713. V_6 = (bool)((((int32_t)L_18) > ((int32_t)((int32_t)15)))? 1 : 0);
  3714. bool L_19 = V_6;
  3715. if (!L_19)
  3716. {
  3717. goto IL_0077;
  3718. }
  3719. }
  3720. {
  3721. V_7 = (uint8_t)((int32_t)63);
  3722. goto IL_0096;
  3723. }
  3724. IL_0077:
  3725. {
  3726. uint8_t L_20 = V_0;
  3727. int32_t L_21 = V_2;
  3728. V_0 = (uint8_t)((int32_t)(uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, ((int32_t)(uint8_t)L_21))));
  3729. int32_t L_22 = V_1;
  3730. V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
  3731. }
  3732. IL_0082:
  3733. {
  3734. int32_t L_23 = V_1;
  3735. int32_t L_24 = ___1_offset;
  3736. V_8 = (bool)((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add(L_24, 2))))? 1 : 0);
  3737. bool L_25 = V_8;
  3738. if (L_25)
  3739. {
  3740. goto IL_0007;
  3741. }
  3742. }
  3743. {
  3744. uint8_t L_26 = V_0;
  3745. V_7 = L_26;
  3746. goto IL_0096;
  3747. }
  3748. IL_0096:
  3749. {
  3750. uint8_t L_27 = V_7;
  3751. return L_27;
  3752. }
  3753. }
  3754. // System.Void UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[],System.Byte&,System.Byte&)
  3755. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651 (uint8_t ___0_b, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___1_hexChars, uint8_t* ___2_byte0, uint8_t* ___3_byte1, const RuntimeMethod* method)
  3756. {
  3757. {
  3758. uint8_t* L_0 = ___2_byte0;
  3759. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___1_hexChars;
  3760. uint8_t L_2 = ___0_b;
  3761. NullCheck(L_1);
  3762. int32_t L_3 = ((int32_t)((int32_t)L_2>>4));
  3763. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  3764. *((int8_t*)L_0) = (int8_t)L_4;
  3765. uint8_t* L_5 = ___3_byte1;
  3766. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___1_hexChars;
  3767. uint8_t L_7 = ___0_b;
  3768. NullCheck(L_6);
  3769. int32_t L_8 = ((int32_t)((int32_t)L_7&((int32_t)15)));
  3770. uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
  3771. *((int8_t*)L_5) = (int8_t)L_9;
  3772. return;
  3773. }
  3774. }
  3775. // System.Byte[] UnityEngine.WWWTranscoder::URLEncode(System.Byte[])
  3776. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  3777. {
  3778. static bool s_Il2CppMethodInitialized;
  3779. if (!s_Il2CppMethodInitialized)
  3780. {
  3781. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3782. s_Il2CppMethodInitialized = true;
  3783. }
  3784. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3785. {
  3786. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  3787. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3788. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2;
  3789. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3;
  3790. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5;
  3791. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  3792. L_4 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_0, L_1, L_2, L_3, (bool)0, NULL);
  3793. V_0 = L_4;
  3794. goto IL_001a;
  3795. }
  3796. IL_001a:
  3797. {
  3798. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
  3799. return L_5;
  3800. }
  3801. }
  3802. // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[])
  3803. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_DataEncode_mA51FBA63F88AE0973EB6EF269AF34D205C287F1E (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  3804. {
  3805. static bool s_Il2CppMethodInitialized;
  3806. if (!s_Il2CppMethodInitialized)
  3807. {
  3808. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3809. s_Il2CppMethodInitialized = true;
  3810. }
  3811. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3812. {
  3813. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  3814. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3815. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2;
  3816. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace_4;
  3817. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5;
  3818. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  3819. L_4 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_0, L_1, L_2, L_3, (bool)0, NULL);
  3820. V_0 = L_4;
  3821. goto IL_001a;
  3822. }
  3823. IL_001a:
  3824. {
  3825. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_0;
  3826. return L_5;
  3827. }
  3828. }
  3829. // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding)
  3830. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m66B8D55570840DBF0EA5EEB40C9ACB4DA431E87A (String_t* ___0_toEncode, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  3831. {
  3832. static bool s_Il2CppMethodInitialized;
  3833. if (!s_Il2CppMethodInitialized)
  3834. {
  3835. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3836. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3837. s_Il2CppMethodInitialized = true;
  3838. }
  3839. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  3840. String_t* V_1 = NULL;
  3841. {
  3842. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0 = ___1_e;
  3843. String_t* L_1 = ___0_toEncode;
  3844. NullCheck(L_0);
  3845. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2;
  3846. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  3847. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3848. uint8_t L_3 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar_6;
  3849. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace_7;
  3850. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden_8;
  3851. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6;
  3852. L_6 = WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4(L_2, L_3, L_4, L_5, (bool)1, NULL);
  3853. V_0 = L_6;
  3854. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  3855. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  3856. L_7 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  3857. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_0;
  3858. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = V_0;
  3859. NullCheck(L_9);
  3860. NullCheck(L_7);
  3861. String_t* L_10;
  3862. L_10 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(46 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, ((int32_t)(((RuntimeArray*)L_9)->max_length)));
  3863. V_1 = L_10;
  3864. goto IL_0030;
  3865. }
  3866. IL_0030:
  3867. {
  3868. String_t* L_11 = V_1;
  3869. return L_11;
  3870. }
  3871. }
  3872. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  3873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Encode_m86AA40F3F2DC0DADF1CBEB275121F4D81C91D4E4 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___3_forbidden, bool ___4_uppercase, const RuntimeMethod* method)
  3874. {
  3875. static bool s_Il2CppMethodInitialized;
  3876. if (!s_Il2CppMethodInitialized)
  3877. {
  3878. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  3879. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3880. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3881. s_Il2CppMethodInitialized = true;
  3882. }
  3883. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  3884. int32_t V_1 = 0;
  3885. bool V_2 = false;
  3886. bool V_3 = false;
  3887. uint8_t V_4 = 0x0;
  3888. uint8_t V_5 = 0x0;
  3889. bool V_6 = false;
  3890. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_7 = NULL;
  3891. int32_t G_B8_0 = 0;
  3892. int32_t G_B11_0 = 0;
  3893. int32_t G_B10_0 = 0;
  3894. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* G_B12_0 = NULL;
  3895. int32_t G_B12_1 = 0;
  3896. {
  3897. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  3898. NullCheck(L_0);
  3899. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  3900. NullCheck(L_1);
  3901. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_0)->max_length)), 2)), NULL);
  3902. V_0 = L_1;
  3903. }
  3904. {
  3905. auto __finallyBlock = il2cpp::utils::Finally([&]
  3906. {
  3907. FINALLY_00b3:
  3908. {// begin finally (depth: 1)
  3909. {
  3910. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  3911. if (!L_2)
  3912. {
  3913. goto IL_00bd;
  3914. }
  3915. }
  3916. {
  3917. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  3918. NullCheck(L_3);
  3919. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  3920. }
  3921. IL_00bd:
  3922. {
  3923. return;
  3924. }
  3925. }// end finally (depth: 1)
  3926. });
  3927. try
  3928. {// begin try (depth: 1)
  3929. {
  3930. V_1 = 0;
  3931. goto IL_009a_1;
  3932. }
  3933. IL_0014_1:
  3934. {
  3935. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  3936. int32_t L_5 = V_1;
  3937. NullCheck(L_4);
  3938. int32_t L_6 = L_5;
  3939. uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
  3940. V_2 = (bool)((((int32_t)L_7) == ((int32_t)((int32_t)32)))? 1 : 0);
  3941. bool L_8 = V_2;
  3942. if (!L_8)
  3943. {
  3944. goto IL_0030_1;
  3945. }
  3946. }
  3947. {
  3948. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_9 = V_0;
  3949. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  3950. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = ___2_space;
  3951. NullCheck(L_11);
  3952. NullCheck(L_9);
  3953. VirtualActionInvoker3< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, int32_t, int32_t >::Invoke(35 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_9, L_10, 0, ((int32_t)(((RuntimeArray*)L_11)->max_length)));
  3954. goto IL_0095_1;
  3955. }
  3956. IL_0030_1:
  3957. {
  3958. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  3959. int32_t L_13 = V_1;
  3960. NullCheck(L_12);
  3961. int32_t L_14 = L_13;
  3962. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  3963. if ((((int32_t)L_15) < ((int32_t)((int32_t)32))))
  3964. {
  3965. goto IL_0049_1;
  3966. }
  3967. }
  3968. {
  3969. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___0_input;
  3970. int32_t L_17 = V_1;
  3971. NullCheck(L_16);
  3972. int32_t L_18 = L_17;
  3973. uint8_t L_19 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_18));
  3974. if ((((int32_t)L_19) > ((int32_t)((int32_t)126))))
  3975. {
  3976. goto IL_0049_1;
  3977. }
  3978. }
  3979. {
  3980. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_20 = ___3_forbidden;
  3981. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_21 = ___0_input;
  3982. int32_t L_22 = V_1;
  3983. NullCheck(L_21);
  3984. int32_t L_23 = L_22;
  3985. uint8_t L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
  3986. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  3987. bool L_25;
  3988. L_25 = WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630(L_20, L_24, NULL);
  3989. G_B8_0 = ((int32_t)(L_25));
  3990. goto IL_004a_1;
  3991. }
  3992. IL_0049_1:
  3993. {
  3994. G_B8_0 = 1;
  3995. }
  3996. IL_004a_1:
  3997. {
  3998. V_3 = (bool)G_B8_0;
  3999. bool L_26 = V_3;
  4000. if (!L_26)
  4001. {
  4002. goto IL_0089_1;
  4003. }
  4004. }
  4005. {
  4006. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_27 = V_0;
  4007. uint8_t L_28 = ___1_escapeChar;
  4008. NullCheck(L_27);
  4009. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_27, L_28);
  4010. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_29 = ___0_input;
  4011. int32_t L_30 = V_1;
  4012. NullCheck(L_29);
  4013. int32_t L_31 = L_30;
  4014. uint8_t L_32 = (L_29)->GetAt(static_cast<il2cpp_array_size_t>(L_31));
  4015. bool L_33 = ___4_uppercase;
  4016. G_B10_0 = ((int32_t)(L_32));
  4017. if (L_33)
  4018. {
  4019. G_B11_0 = ((int32_t)(L_32));
  4020. goto IL_0065_1;
  4021. }
  4022. }
  4023. {
  4024. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4025. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_34 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars_1;
  4026. G_B12_0 = L_34;
  4027. G_B12_1 = G_B10_0;
  4028. goto IL_006a_1;
  4029. }
  4030. IL_0065_1:
  4031. {
  4032. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4033. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_35 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars_0;
  4034. G_B12_0 = L_35;
  4035. G_B12_1 = G_B11_0;
  4036. }
  4037. IL_006a_1:
  4038. {
  4039. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4040. WWWTranscoder_Byte2Hex_m42C360DFB6FF4C8801AB5AED488B8FDFFA0BA651((uint8_t)G_B12_1, G_B12_0, (&V_4), (&V_5), NULL);
  4041. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_36 = V_0;
  4042. uint8_t L_37 = V_4;
  4043. NullCheck(L_36);
  4044. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_36, L_37);
  4045. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_38 = V_0;
  4046. uint8_t L_39 = V_5;
  4047. NullCheck(L_38);
  4048. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_38, L_39);
  4049. goto IL_0095_1;
  4050. }
  4051. IL_0089_1:
  4052. {
  4053. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_40 = V_0;
  4054. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_41 = ___0_input;
  4055. int32_t L_42 = V_1;
  4056. NullCheck(L_41);
  4057. int32_t L_43 = L_42;
  4058. uint8_t L_44 = (L_41)->GetAt(static_cast<il2cpp_array_size_t>(L_43));
  4059. NullCheck(L_40);
  4060. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_40, L_44);
  4061. }
  4062. IL_0095_1:
  4063. {
  4064. int32_t L_45 = V_1;
  4065. V_1 = ((int32_t)il2cpp_codegen_add(L_45, 1));
  4066. }
  4067. IL_009a_1:
  4068. {
  4069. int32_t L_46 = V_1;
  4070. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_47 = ___0_input;
  4071. NullCheck(L_47);
  4072. V_6 = (bool)((((int32_t)L_46) < ((int32_t)((int32_t)(((RuntimeArray*)L_47)->max_length))))? 1 : 0);
  4073. bool L_48 = V_6;
  4074. if (L_48)
  4075. {
  4076. goto IL_0014_1;
  4077. }
  4078. }
  4079. {
  4080. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_49 = V_0;
  4081. NullCheck(L_49);
  4082. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_50;
  4083. L_50 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_49);
  4084. V_7 = L_50;
  4085. goto IL_00be;
  4086. }
  4087. }// end try (depth: 1)
  4088. catch(Il2CppExceptionWrapper& e)
  4089. {
  4090. __finallyBlock.StoreException(e.ex);
  4091. }
  4092. }
  4093. IL_00be:
  4094. {
  4095. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_51 = V_7;
  4096. return L_51;
  4097. }
  4098. }
  4099. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  4100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mD433242C2C8505F3B71A9A0E7997F724FE789630 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, uint8_t ___1_b, const RuntimeMethod* method)
  4101. {
  4102. int32_t V_0 = 0;
  4103. int32_t V_1 = 0;
  4104. bool V_2 = false;
  4105. bool V_3 = false;
  4106. bool V_4 = false;
  4107. {
  4108. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  4109. NullCheck(L_0);
  4110. V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
  4111. V_1 = 0;
  4112. goto IL_001d;
  4113. }
  4114. IL_0009:
  4115. {
  4116. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_array;
  4117. int32_t L_2 = V_1;
  4118. NullCheck(L_1);
  4119. int32_t L_3 = L_2;
  4120. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  4121. uint8_t L_5 = ___1_b;
  4122. V_2 = (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
  4123. bool L_6 = V_2;
  4124. if (!L_6)
  4125. {
  4126. goto IL_0018;
  4127. }
  4128. }
  4129. {
  4130. V_3 = (bool)1;
  4131. goto IL_002b;
  4132. }
  4133. IL_0018:
  4134. {
  4135. int32_t L_7 = V_1;
  4136. V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  4137. }
  4138. IL_001d:
  4139. {
  4140. int32_t L_8 = V_1;
  4141. int32_t L_9 = V_0;
  4142. V_4 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  4143. bool L_10 = V_4;
  4144. if (L_10)
  4145. {
  4146. goto IL_0009;
  4147. }
  4148. }
  4149. {
  4150. V_3 = (bool)0;
  4151. goto IL_002b;
  4152. }
  4153. IL_002b:
  4154. {
  4155. bool L_11 = V_3;
  4156. return L_11;
  4157. }
  4158. }
  4159. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  4160. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_toEncode, const RuntimeMethod* method)
  4161. {
  4162. static bool s_Il2CppMethodInitialized;
  4163. if (!s_Il2CppMethodInitialized)
  4164. {
  4165. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4166. s_Il2CppMethodInitialized = true;
  4167. }
  4168. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  4169. {
  4170. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_toEncode;
  4171. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4172. uint8_t L_1 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2;
  4173. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3;
  4174. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  4175. L_3 = WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B(L_0, L_1, L_2, NULL);
  4176. V_0 = L_3;
  4177. goto IL_0014;
  4178. }
  4179. IL_0014:
  4180. {
  4181. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = V_0;
  4182. return L_4;
  4183. }
  4184. }
  4185. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  4186. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7 (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_array, int32_t ___1_index, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_comperand, const RuntimeMethod* method)
  4187. {
  4188. bool V_0 = false;
  4189. bool V_1 = false;
  4190. int32_t V_2 = 0;
  4191. bool V_3 = false;
  4192. bool V_4 = false;
  4193. {
  4194. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_array;
  4195. NullCheck(L_0);
  4196. int32_t L_1 = ___1_index;
  4197. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___2_comperand;
  4198. NullCheck(L_2);
  4199. V_0 = (bool)((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1))) < ((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length))))? 1 : 0);
  4200. bool L_3 = V_0;
  4201. if (!L_3)
  4202. {
  4203. goto IL_0013;
  4204. }
  4205. }
  4206. {
  4207. V_1 = (bool)0;
  4208. goto IL_0040;
  4209. }
  4210. IL_0013:
  4211. {
  4212. V_2 = 0;
  4213. goto IL_0030;
  4214. }
  4215. IL_0017:
  4216. {
  4217. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_array;
  4218. int32_t L_5 = ___1_index;
  4219. int32_t L_6 = V_2;
  4220. NullCheck(L_4);
  4221. int32_t L_7 = ((int32_t)il2cpp_codegen_add(L_5, L_6));
  4222. uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
  4223. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9 = ___2_comperand;
  4224. int32_t L_10 = V_2;
  4225. NullCheck(L_9);
  4226. int32_t L_11 = L_10;
  4227. uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  4228. V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  4229. bool L_13 = V_3;
  4230. if (!L_13)
  4231. {
  4232. goto IL_002c;
  4233. }
  4234. }
  4235. {
  4236. V_1 = (bool)0;
  4237. goto IL_0040;
  4238. }
  4239. IL_002c:
  4240. {
  4241. int32_t L_14 = V_2;
  4242. V_2 = ((int32_t)il2cpp_codegen_add(L_14, 1));
  4243. }
  4244. IL_0030:
  4245. {
  4246. int32_t L_15 = V_2;
  4247. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_16 = ___2_comperand;
  4248. NullCheck(L_16);
  4249. V_4 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))))? 1 : 0);
  4250. bool L_17 = V_4;
  4251. if (L_17)
  4252. {
  4253. goto IL_0017;
  4254. }
  4255. }
  4256. {
  4257. V_1 = (bool)1;
  4258. goto IL_0040;
  4259. }
  4260. IL_0040:
  4261. {
  4262. bool L_18 = V_1;
  4263. return L_18;
  4264. }
  4265. }
  4266. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  4267. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* WWWTranscoder_Decode_mC6D44C210514FA70566D4FA99DFB5BC5C68EF93B (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_input, uint8_t ___1_escapeChar, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___2_space, const RuntimeMethod* method)
  4268. {
  4269. static bool s_Il2CppMethodInitialized;
  4270. if (!s_Il2CppMethodInitialized)
  4271. {
  4272. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
  4273. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  4274. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4275. s_Il2CppMethodInitialized = true;
  4276. }
  4277. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* V_0 = NULL;
  4278. int32_t V_1 = 0;
  4279. bool V_2 = false;
  4280. bool V_3 = false;
  4281. bool V_4 = false;
  4282. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_5 = NULL;
  4283. int32_t G_B7_0 = 0;
  4284. {
  4285. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_input;
  4286. NullCheck(L_0);
  4287. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_1 = (MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2*)il2cpp_codegen_object_new(MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2_il2cpp_TypeInfo_var);
  4288. NullCheck(L_1);
  4289. MemoryStream__ctor_m9E93692A2BB0E34119603FF6A5D44F6A132052E8(L_1, ((int32_t)(((RuntimeArray*)L_0)->max_length)), NULL);
  4290. V_0 = L_1;
  4291. }
  4292. {
  4293. auto __finallyBlock = il2cpp::utils::Finally([&]
  4294. {
  4295. FINALLY_0087:
  4296. {// begin finally (depth: 1)
  4297. {
  4298. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_2 = V_0;
  4299. if (!L_2)
  4300. {
  4301. goto IL_0091;
  4302. }
  4303. }
  4304. {
  4305. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_3 = V_0;
  4306. NullCheck(L_3);
  4307. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
  4308. }
  4309. IL_0091:
  4310. {
  4311. return;
  4312. }
  4313. }// end finally (depth: 1)
  4314. });
  4315. try
  4316. {// begin try (depth: 1)
  4317. {
  4318. V_1 = 0;
  4319. goto IL_0071_1;
  4320. }
  4321. IL_000f_1:
  4322. {
  4323. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = ___0_input;
  4324. int32_t L_5 = V_1;
  4325. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = ___2_space;
  4326. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4327. bool L_7;
  4328. L_7 = WWWTranscoder_ByteSubArrayEquals_mB8743EA810807A762C09F76B0077DBBB4CD034A7(L_4, L_5, L_6, NULL);
  4329. V_2 = L_7;
  4330. bool L_8 = V_2;
  4331. if (!L_8)
  4332. {
  4333. goto IL_0031_1;
  4334. }
  4335. }
  4336. {
  4337. int32_t L_9 = V_1;
  4338. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = ___2_space;
  4339. NullCheck(L_10);
  4340. V_1 = ((int32_t)il2cpp_codegen_add(L_9, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_10)->max_length)), 1))));
  4341. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_11 = V_0;
  4342. NullCheck(L_11);
  4343. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_11, (uint8_t)((int32_t)32));
  4344. goto IL_006c_1;
  4345. }
  4346. IL_0031_1:
  4347. {
  4348. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12 = ___0_input;
  4349. int32_t L_13 = V_1;
  4350. NullCheck(L_12);
  4351. int32_t L_14 = L_13;
  4352. uint8_t L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
  4353. uint8_t L_16 = ___1_escapeChar;
  4354. if ((!(((uint32_t)L_15) == ((uint32_t)L_16))))
  4355. {
  4356. goto IL_0041_1;
  4357. }
  4358. }
  4359. {
  4360. int32_t L_17 = V_1;
  4361. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_18 = ___0_input;
  4362. NullCheck(L_18);
  4363. G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add(L_17, 2))) < ((int32_t)((int32_t)(((RuntimeArray*)L_18)->max_length))))? 1 : 0);
  4364. goto IL_0042_1;
  4365. }
  4366. IL_0041_1:
  4367. {
  4368. G_B7_0 = 0;
  4369. }
  4370. IL_0042_1:
  4371. {
  4372. V_3 = (bool)G_B7_0;
  4373. bool L_19 = V_3;
  4374. if (!L_19)
  4375. {
  4376. goto IL_0060_1;
  4377. }
  4378. }
  4379. {
  4380. int32_t L_20 = V_1;
  4381. V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
  4382. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_21 = V_0;
  4383. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_22 = ___0_input;
  4384. int32_t L_23 = V_1;
  4385. int32_t L_24 = L_23;
  4386. V_1 = ((int32_t)il2cpp_codegen_add(L_24, 1));
  4387. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4388. uint8_t L_25;
  4389. L_25 = WWWTranscoder_Hex2Byte_m54AA532B2F56D4EEBF2FE72966F7CA3AC3585C88(L_22, L_24, NULL);
  4390. NullCheck(L_21);
  4391. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_21, L_25);
  4392. goto IL_006c_1;
  4393. }
  4394. IL_0060_1:
  4395. {
  4396. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_26 = V_0;
  4397. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_27 = ___0_input;
  4398. int32_t L_28 = V_1;
  4399. NullCheck(L_27);
  4400. int32_t L_29 = L_28;
  4401. uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
  4402. NullCheck(L_26);
  4403. VirtualActionInvoker1< uint8_t >::Invoke(37 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_26, L_30);
  4404. }
  4405. IL_006c_1:
  4406. {
  4407. int32_t L_31 = V_1;
  4408. V_1 = ((int32_t)il2cpp_codegen_add(L_31, 1));
  4409. }
  4410. IL_0071_1:
  4411. {
  4412. int32_t L_32 = V_1;
  4413. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_33 = ___0_input;
  4414. NullCheck(L_33);
  4415. V_4 = (bool)((((int32_t)L_32) < ((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))))? 1 : 0);
  4416. bool L_34 = V_4;
  4417. if (L_34)
  4418. {
  4419. goto IL_000f_1;
  4420. }
  4421. }
  4422. {
  4423. MemoryStream_tAAED1B42172E3390584E4194308AB878E786AAC2* L_35 = V_0;
  4424. NullCheck(L_35);
  4425. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_36;
  4426. L_36 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(41 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_35);
  4427. V_5 = L_36;
  4428. goto IL_0092;
  4429. }
  4430. }// end try (depth: 1)
  4431. catch(Il2CppExceptionWrapper& e)
  4432. {
  4433. __finallyBlock.StoreException(e.ex);
  4434. }
  4435. }
  4436. IL_0092:
  4437. {
  4438. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_37 = V_5;
  4439. return L_37;
  4440. }
  4441. }
  4442. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding)
  4443. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mB030426417510BBEDC64D01C748B0D82A1FA3EE7 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  4444. {
  4445. static bool s_Il2CppMethodInitialized;
  4446. if (!s_Il2CppMethodInitialized)
  4447. {
  4448. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4449. s_Il2CppMethodInitialized = true;
  4450. }
  4451. int32_t V_0 = 0;
  4452. uint8_t* V_1 = NULL;
  4453. int32_t V_2 = 0;
  4454. Il2CppChar* V_3 = NULL;
  4455. String_t* V_4 = NULL;
  4456. bool V_5 = false;
  4457. {
  4458. String_t* L_0 = ___0_s;
  4459. NullCheck(L_0);
  4460. int32_t L_1;
  4461. L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
  4462. V_0 = ((int32_t)il2cpp_codegen_multiply(L_1, 2));
  4463. int32_t L_2 = V_0;
  4464. uintptr_t L_3 = ((uintptr_t)L_2);
  4465. int8_t* L_4 = (int8_t*) (L_3 ? alloca(L_3) : NULL);
  4466. memset(L_4, 0, L_3);
  4467. V_1 = (uint8_t*)(L_4);
  4468. String_t* L_5 = ___0_s;
  4469. V_4 = L_5;
  4470. String_t* L_6 = V_4;
  4471. V_3 = (Il2CppChar*)((uintptr_t)L_6);
  4472. Il2CppChar* L_7 = V_3;
  4473. if (!L_7)
  4474. {
  4475. goto IL_0022;
  4476. }
  4477. }
  4478. {
  4479. Il2CppChar* L_8 = V_3;
  4480. int32_t L_9;
  4481. L_9 = RuntimeHelpers_get_OffsetToStringData_m90A5D27EF88BE9432BF7093B7D7E7A0ACB0A8FBD(NULL);
  4482. V_3 = ((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_8, L_9));
  4483. }
  4484. IL_0022:
  4485. {
  4486. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_10 = ___1_e;
  4487. Il2CppChar* L_11 = V_3;
  4488. String_t* L_12 = ___0_s;
  4489. NullCheck(L_12);
  4490. int32_t L_13;
  4491. L_13 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_12, NULL);
  4492. uint8_t* L_14 = V_1;
  4493. int32_t L_15 = V_0;
  4494. NullCheck(L_10);
  4495. int32_t L_16;
  4496. L_16 = VirtualFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(29 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, L_10, L_11, L_13, L_14, L_15);
  4497. V_2 = L_16;
  4498. V_4 = (String_t*)NULL;
  4499. uint8_t* L_17 = V_1;
  4500. int32_t L_18 = V_2;
  4501. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4502. bool L_19;
  4503. L_19 = WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F(L_17, L_18, NULL);
  4504. V_5 = L_19;
  4505. goto IL_0042;
  4506. }
  4507. IL_0042:
  4508. {
  4509. bool L_20 = V_5;
  4510. return L_20;
  4511. }
  4512. }
  4513. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte*,System.Int32)
  4514. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m1C57CAA2C5C2549819F89B447CA002464D245A1F (uint8_t* ___0_input, int32_t ___1_inputLength, const RuntimeMethod* method)
  4515. {
  4516. int32_t V_0 = 0;
  4517. bool V_1 = false;
  4518. bool V_2 = false;
  4519. bool V_3 = false;
  4520. int32_t G_B4_0 = 0;
  4521. {
  4522. V_0 = 0;
  4523. goto IL_0026;
  4524. }
  4525. IL_0005:
  4526. {
  4527. uint8_t* L_0 = ___0_input;
  4528. int32_t L_1 = V_0;
  4529. int32_t L_2 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, L_1)));
  4530. if ((((int32_t)L_2) < ((int32_t)((int32_t)32))))
  4531. {
  4532. goto IL_0018;
  4533. }
  4534. }
  4535. {
  4536. uint8_t* L_3 = ___0_input;
  4537. int32_t L_4 = V_0;
  4538. int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, L_4)));
  4539. G_B4_0 = ((((int32_t)L_5) > ((int32_t)((int32_t)126)))? 1 : 0);
  4540. goto IL_0019;
  4541. }
  4542. IL_0018:
  4543. {
  4544. G_B4_0 = 1;
  4545. }
  4546. IL_0019:
  4547. {
  4548. V_1 = (bool)G_B4_0;
  4549. bool L_6 = V_1;
  4550. if (!L_6)
  4551. {
  4552. goto IL_0021;
  4553. }
  4554. }
  4555. {
  4556. V_2 = (bool)0;
  4557. goto IL_0032;
  4558. }
  4559. IL_0021:
  4560. {
  4561. int32_t L_7 = V_0;
  4562. V_0 = ((int32_t)il2cpp_codegen_add(L_7, 1));
  4563. }
  4564. IL_0026:
  4565. {
  4566. int32_t L_8 = V_0;
  4567. int32_t L_9 = ___1_inputLength;
  4568. V_3 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  4569. bool L_10 = V_3;
  4570. if (L_10)
  4571. {
  4572. goto IL_0005;
  4573. }
  4574. }
  4575. {
  4576. V_2 = (bool)1;
  4577. goto IL_0032;
  4578. }
  4579. IL_0032:
  4580. {
  4581. bool L_11 = V_2;
  4582. return L_11;
  4583. }
  4584. }
  4585. // System.Void UnityEngine.WWWTranscoder::.cctor()
  4586. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_m105AD5C901F1A72DCDD5956E3FDDE83B65AB0152 (const RuntimeMethod* method)
  4587. {
  4588. static bool s_Il2CppMethodInitialized;
  4589. if (!s_Il2CppMethodInitialized)
  4590. {
  4591. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var);
  4592. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  4593. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  4594. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  4595. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  4596. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  4597. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  4598. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  4599. s_Il2CppMethodInitialized = true;
  4600. }
  4601. {
  4602. il2cpp_codegen_runtime_class_init_inline(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045_il2cpp_TypeInfo_var);
  4603. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_0;
  4604. L_0 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4605. NullCheck(L_0);
  4606. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1;
  4607. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  4608. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars_0 = L_1;
  4609. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___ucHexChars_0), (void*)L_1);
  4610. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_2;
  4611. L_2 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4612. NullCheck(L_2);
  4613. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_3;
  4614. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  4615. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars_1 = L_3;
  4616. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___lcHexChars_1), (void*)L_3);
  4617. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlEscapeChar_2 = (uint8_t)((int32_t)37);
  4618. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  4619. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = L_4;
  4620. NullCheck(L_5);
  4621. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43));
  4622. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3 = L_5;
  4623. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlSpace_3), (void*)L_5);
  4624. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_6;
  4625. L_6 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4626. NullCheck(L_6);
  4627. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_7;
  4628. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  4629. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace_4 = L_7;
  4630. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___dataSpace_4), (void*)L_7);
  4631. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8;
  4632. L_8 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4633. NullCheck(L_8);
  4634. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  4635. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  4636. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5 = L_9;
  4637. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___urlForbidden_5), (void*)L_9);
  4638. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpEscapeChar_6 = (uint8_t)((int32_t)61);
  4639. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)SZArrayNew(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031_il2cpp_TypeInfo_var, (uint32_t)1);
  4640. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = L_10;
  4641. NullCheck(L_11);
  4642. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95));
  4643. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace_7 = L_11;
  4644. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpSpace_7), (void*)L_11);
  4645. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12;
  4646. L_12 = WWWForm_get_DefaultEncoding_mC56870DA395B6E753E8551AE82DAF128B2547000(NULL);
  4647. NullCheck(L_12);
  4648. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13;
  4649. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  4650. ((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden_8 = L_13;
  4651. Il2CppCodeGenWriteBarrier((void**)(&((WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var))->___qpForbidden_8), (void*)L_13);
  4652. return;
  4653. }
  4654. }
  4655. #ifdef __clang__
  4656. #pragma clang diagnostic pop
  4657. #endif
  4658. #ifdef __clang__
  4659. #pragma clang diagnostic push
  4660. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4661. #pragma clang diagnostic ignored "-Wunused-variable"
  4662. #endif
  4663. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4664. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  4665. {
  4666. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4667. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4668. }
  4669. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  4670. {
  4671. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4672. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4673. }
  4674. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4675. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_pinvoke& marshaled)
  4676. {
  4677. }
  4678. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4679. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  4680. {
  4681. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4682. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4683. }
  4684. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_back(const UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled, UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C& unmarshaled)
  4685. {
  4686. Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported.");
  4687. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  4688. }
  4689. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  4690. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshal_com_cleanup(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C_marshaled_com& marshaled)
  4691. {
  4692. }
  4693. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  4694. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711 (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  4695. {
  4696. {
  4697. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  4698. __this->___U3CwebRequestU3Ek__BackingField_2 = L_0;
  4699. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField_2), (void*)L_0);
  4700. return;
  4701. }
  4702. }
  4703. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::.ctor()
  4704. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m9AD26A39141A733EC40446F6AB7660B44D8EA1ED (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, const RuntimeMethod* method)
  4705. {
  4706. {
  4707. AsyncOperation__ctor_m53CF89405A1E2DA6F517D05792826F5784B0D6EC(__this, NULL);
  4708. return;
  4709. }
  4710. }
  4711. #ifdef __clang__
  4712. #pragma clang diagnostic pop
  4713. #endif
  4714. #ifdef __clang__
  4715. #pragma clang diagnostic push
  4716. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4717. #pragma clang diagnostic ignored "-Wunused-variable"
  4718. #endif
  4719. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  4720. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  4721. {
  4722. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4723. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4724. }
  4725. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  4726. {
  4727. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4728. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4729. }
  4730. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  4731. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_pinvoke_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_pinvoke& marshaled)
  4732. {
  4733. }
  4734. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  4735. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  4736. {
  4737. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4738. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4739. }
  4740. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_back(const UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F& unmarshaled)
  4741. {
  4742. Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported.");
  4743. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4744. }
  4745. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  4746. IL2CPP_EXTERN_C void UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshal_com_cleanup(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_marshaled_com& marshaled)
  4747. {
  4748. }
  4749. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  4750. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D (int32_t ___0_err, const RuntimeMethod* method)
  4751. {
  4752. typedef String_t* (*UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D_ftn) (int32_t);
  4753. static UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D_ftn _il2cpp_icall_func;
  4754. if (!_il2cpp_icall_func)
  4755. _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)");
  4756. String_t* icallRetVal = _il2cpp_icall_func(___0_err);
  4757. return icallRetVal;
  4758. }
  4759. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  4760. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D (int64_t ___0_responseCode, const RuntimeMethod* method)
  4761. {
  4762. typedef String_t* (*UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D_ftn) (int64_t);
  4763. static UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D_ftn _il2cpp_icall_func;
  4764. if (!_il2cpp_icall_func)
  4765. _il2cpp_icall_func = (UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)");
  4766. String_t* icallRetVal = _il2cpp_icall_func(___0_responseCode);
  4767. return icallRetVal;
  4768. }
  4769. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  4770. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4771. {
  4772. {
  4773. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  4774. return L_0;
  4775. }
  4776. }
  4777. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  4778. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4779. {
  4780. {
  4781. bool L_0 = ___0_value;
  4782. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = L_0;
  4783. return;
  4784. }
  4785. }
  4786. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  4787. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4788. {
  4789. {
  4790. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  4791. return L_0;
  4792. }
  4793. }
  4794. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  4795. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4796. {
  4797. {
  4798. bool L_0 = ___0_value;
  4799. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = L_0;
  4800. return;
  4801. }
  4802. }
  4803. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  4804. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4805. {
  4806. {
  4807. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  4808. return L_0;
  4809. }
  4810. }
  4811. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  4812. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  4813. {
  4814. {
  4815. bool L_0 = ___0_value;
  4816. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = L_0;
  4817. return;
  4818. }
  4819. }
  4820. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  4821. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9 (const RuntimeMethod* method)
  4822. {
  4823. typedef intptr_t (*UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn) ();
  4824. static UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn _il2cpp_icall_func;
  4825. if (!_il2cpp_icall_func)
  4826. _il2cpp_icall_func = (UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()");
  4827. intptr_t icallRetVal = _il2cpp_icall_func();
  4828. return icallRetVal;
  4829. }
  4830. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  4831. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4832. {
  4833. typedef void (*UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  4834. static UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2_ftn _il2cpp_icall_func;
  4835. if (!_il2cpp_icall_func)
  4836. _il2cpp_icall_func = (UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release()");
  4837. _il2cpp_icall_func(__this);
  4838. }
  4839. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  4840. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4841. {
  4842. static bool s_Il2CppMethodInitialized;
  4843. if (!s_Il2CppMethodInitialized)
  4844. {
  4845. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  4846. s_Il2CppMethodInitialized = true;
  4847. }
  4848. bool V_0 = false;
  4849. {
  4850. intptr_t L_0 = __this->___m_Ptr_0;
  4851. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  4852. bool L_2;
  4853. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  4854. V_0 = L_2;
  4855. bool L_3 = V_0;
  4856. if (!L_3)
  4857. {
  4858. goto IL_0030;
  4859. }
  4860. }
  4861. {
  4862. UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B(__this, NULL);
  4863. UnityWebRequest_Release_m3835F83F59D3976462F1B98810C8FC42E2C512A2(__this, NULL);
  4864. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  4865. __this->___m_Ptr_0 = L_4;
  4866. }
  4867. IL_0030:
  4868. {
  4869. return;
  4870. }
  4871. }
  4872. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  4873. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4874. {
  4875. {
  4876. UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline(__this, (bool)1, NULL);
  4877. UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline(__this, (bool)1, NULL);
  4878. UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline(__this, (bool)1, NULL);
  4879. return;
  4880. }
  4881. }
  4882. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  4883. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, const RuntimeMethod* method)
  4884. {
  4885. {
  4886. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4887. intptr_t L_0;
  4888. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  4889. __this->___m_Ptr_0 = L_0;
  4890. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  4891. String_t* L_1 = ___0_url;
  4892. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  4893. String_t* L_2 = ___1_method;
  4894. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  4895. return;
  4896. }
  4897. }
  4898. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  4899. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, String_t* ___1_method, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___2_downloadHandler, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___3_uploadHandler, const RuntimeMethod* method)
  4900. {
  4901. {
  4902. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  4903. intptr_t L_0;
  4904. L_0 = UnityWebRequest_Create_m0180FA724ACCE19C0C761A8B7AF280A489639CE9(NULL);
  4905. __this->___m_Ptr_0 = L_0;
  4906. UnityWebRequest_InternalSetDefaults_m6B95AE6129B13EAB3F66B103F6682AB33C27B3B0(__this, NULL);
  4907. String_t* L_1 = ___0_url;
  4908. UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC(__this, L_1, NULL);
  4909. String_t* L_2 = ___1_method;
  4910. UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88(__this, L_2, NULL);
  4911. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___2_downloadHandler;
  4912. UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F(__this, L_3, NULL);
  4913. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_4 = ___3_uploadHandler;
  4914. UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE(__this, L_4, NULL);
  4915. return;
  4916. }
  4917. }
  4918. // System.Void UnityEngine.Networking.UnityWebRequest::Finalize()
  4919. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_m7F9D075432280A6CFF21BC2B5C35BFA752FF6ED8 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4920. {
  4921. {
  4922. }
  4923. {
  4924. auto __finallyBlock = il2cpp::utils::Finally([&]
  4925. {
  4926. FINALLY_0012:
  4927. {// begin finally (depth: 1)
  4928. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  4929. return;
  4930. }// end finally (depth: 1)
  4931. });
  4932. try
  4933. {// begin try (depth: 1)
  4934. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  4935. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  4936. goto IL_001a;
  4937. }// end try (depth: 1)
  4938. catch(Il2CppExceptionWrapper& e)
  4939. {
  4940. __finallyBlock.StoreException(e.ex);
  4941. }
  4942. }
  4943. IL_001a:
  4944. {
  4945. return;
  4946. }
  4947. }
  4948. // System.Void UnityEngine.Networking.UnityWebRequest::Dispose()
  4949. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m9F43494C0FEA530A97D3F2AF3D425CCC7670753A (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4950. {
  4951. static bool s_Il2CppMethodInitialized;
  4952. if (!s_Il2CppMethodInitialized)
  4953. {
  4954. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  4955. s_Il2CppMethodInitialized = true;
  4956. }
  4957. {
  4958. UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D(__this, NULL);
  4959. UnityWebRequest_InternalDestroy_mEA38293D4F8B8DB58DA3D739DFEDFAF7BF418B92(__this, NULL);
  4960. il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
  4961. GC_SuppressFinalize_m71815DBD5A0CD2EA1BE43317B08B7A14949EDC65(__this, NULL);
  4962. return;
  4963. }
  4964. }
  4965. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  4966. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mEE16444204C3D4D1D0119B987DA8CEB3979B309D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  4967. {
  4968. bool V_0 = false;
  4969. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_1 = NULL;
  4970. bool V_2 = false;
  4971. bool V_3 = false;
  4972. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_4 = NULL;
  4973. bool V_5 = false;
  4974. bool V_6 = false;
  4975. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_7 = NULL;
  4976. bool V_8 = false;
  4977. {
  4978. bool L_0;
  4979. L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline(__this, NULL);
  4980. V_0 = L_0;
  4981. bool L_1 = V_0;
  4982. if (!L_1)
  4983. {
  4984. goto IL_0025;
  4985. }
  4986. }
  4987. {
  4988. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_2;
  4989. L_2 = UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5(__this, NULL);
  4990. V_1 = L_2;
  4991. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = V_1;
  4992. V_2 = (bool)((!(((RuntimeObject*)(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  4993. bool L_4 = V_2;
  4994. if (!L_4)
  4995. {
  4996. goto IL_0024;
  4997. }
  4998. }
  4999. {
  5000. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_5 = V_1;
  5001. NullCheck(L_5);
  5002. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::Dispose() */, L_5);
  5003. }
  5004. IL_0024:
  5005. {
  5006. }
  5007. IL_0025:
  5008. {
  5009. bool L_6;
  5010. L_6 = UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline(__this, NULL);
  5011. V_3 = L_6;
  5012. bool L_7 = V_3;
  5013. if (!L_7)
  5014. {
  5015. goto IL_004e;
  5016. }
  5017. }
  5018. {
  5019. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_8;
  5020. L_8 = UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5(__this, NULL);
  5021. V_4 = L_8;
  5022. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_9 = V_4;
  5023. V_5 = (bool)((!(((RuntimeObject*)(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)L_9) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5024. bool L_10 = V_5;
  5025. if (!L_10)
  5026. {
  5027. goto IL_004d;
  5028. }
  5029. }
  5030. {
  5031. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_11 = V_4;
  5032. NullCheck(L_11);
  5033. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::Dispose() */, L_11);
  5034. }
  5035. IL_004d:
  5036. {
  5037. }
  5038. IL_004e:
  5039. {
  5040. bool L_12;
  5041. L_12 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline(__this, NULL);
  5042. V_6 = L_12;
  5043. bool L_13 = V_6;
  5044. if (!L_13)
  5045. {
  5046. goto IL_0079;
  5047. }
  5048. }
  5049. {
  5050. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_14;
  5051. L_14 = UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D(__this, NULL);
  5052. V_7 = L_14;
  5053. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_15 = V_7;
  5054. V_8 = (bool)((!(((RuntimeObject*)(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804*)L_15) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5055. bool L_16 = V_8;
  5056. if (!L_16)
  5057. {
  5058. goto IL_0078;
  5059. }
  5060. }
  5061. {
  5062. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_17 = V_7;
  5063. NullCheck(L_17);
  5064. CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43(L_17, NULL);
  5065. }
  5066. IL_0078:
  5067. {
  5068. }
  5069. IL_0079:
  5070. {
  5071. return;
  5072. }
  5073. }
  5074. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  5075. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5076. {
  5077. typedef UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* (*UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5078. static UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D_ftn _il2cpp_icall_func;
  5079. if (!_il2cpp_icall_func)
  5080. _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest()");
  5081. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* icallRetVal = _il2cpp_icall_func(__this);
  5082. return icallRetVal;
  5083. }
  5084. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest()
  5085. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* UnityWebRequest_SendWebRequest_mA3CD13983BAA5074A0640EDD661B1E46E6DB6C13 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5086. {
  5087. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_0 = NULL;
  5088. bool V_1 = false;
  5089. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* V_2 = NULL;
  5090. {
  5091. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_0;
  5092. L_0 = UnityWebRequest_BeginWebRequest_m5850801A007A95F35CCBAA5E947FF385DB50AE0D(__this, NULL);
  5093. V_0 = L_0;
  5094. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_1 = V_0;
  5095. V_1 = (bool)((!(((RuntimeObject*)(UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  5096. bool L_2 = V_1;
  5097. if (!L_2)
  5098. {
  5099. goto IL_0018;
  5100. }
  5101. }
  5102. {
  5103. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_3 = V_0;
  5104. NullCheck(L_3);
  5105. UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline(L_3, __this, NULL);
  5106. }
  5107. IL_0018:
  5108. {
  5109. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_4 = V_0;
  5110. V_2 = L_4;
  5111. goto IL_001c;
  5112. }
  5113. IL_001c:
  5114. {
  5115. UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* L_5 = V_2;
  5116. return L_5;
  5117. }
  5118. }
  5119. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  5120. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5121. {
  5122. typedef void (*UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5123. static UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B_ftn _il2cpp_icall_func;
  5124. if (!_il2cpp_icall_func)
  5125. _il2cpp_icall_func = (UnityWebRequest_Abort_m466E8B88BC90F64CE614561BAA88B9412BDB7E8B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort()");
  5126. _il2cpp_icall_func(__this);
  5127. }
  5128. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  5129. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  5130. {
  5131. typedef int32_t (*UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, int32_t);
  5132. static UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238_ftn _il2cpp_icall_func;
  5133. if (!_il2cpp_icall_func)
  5134. _il2cpp_icall_func = (UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)");
  5135. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_methodType);
  5136. return icallRetVal;
  5137. }
  5138. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  5139. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_methodType, const RuntimeMethod* method)
  5140. {
  5141. int32_t V_0 = 0;
  5142. bool V_1 = false;
  5143. bool V_2 = false;
  5144. {
  5145. bool L_0;
  5146. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5147. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5148. bool L_1 = V_1;
  5149. if (!L_1)
  5150. {
  5151. goto IL_0019;
  5152. }
  5153. }
  5154. {
  5155. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5156. NullCheck(L_2);
  5157. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  5158. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  5159. }
  5160. IL_0019:
  5161. {
  5162. int32_t L_3 = ___0_methodType;
  5163. int32_t L_4;
  5164. L_4 = UnityWebRequest_SetMethod_mB3B6FE6A201CC1E22BAEFA0B9A88B4B421915238(__this, L_3, NULL);
  5165. V_0 = L_4;
  5166. int32_t L_5 = V_0;
  5167. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5168. bool L_6 = V_2;
  5169. if (!L_6)
  5170. {
  5171. goto IL_0035;
  5172. }
  5173. }
  5174. {
  5175. int32_t L_7 = V_0;
  5176. String_t* L_8;
  5177. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5178. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5179. NullCheck(L_9);
  5180. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5181. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4_RuntimeMethod_var)));
  5182. }
  5183. IL_0035:
  5184. {
  5185. return;
  5186. }
  5187. }
  5188. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  5189. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  5190. {
  5191. typedef int32_t (*UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, String_t*);
  5192. static UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB_ftn _il2cpp_icall_func;
  5193. if (!_il2cpp_icall_func)
  5194. _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)");
  5195. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_customMethodName);
  5196. return icallRetVal;
  5197. }
  5198. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  5199. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_customMethodName, const RuntimeMethod* method)
  5200. {
  5201. int32_t V_0 = 0;
  5202. bool V_1 = false;
  5203. bool V_2 = false;
  5204. {
  5205. bool L_0;
  5206. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5207. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5208. bool L_1 = V_1;
  5209. if (!L_1)
  5210. {
  5211. goto IL_0019;
  5212. }
  5213. }
  5214. {
  5215. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5216. NullCheck(L_2);
  5217. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), NULL);
  5218. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  5219. }
  5220. IL_0019:
  5221. {
  5222. String_t* L_3 = ___0_customMethodName;
  5223. int32_t L_4;
  5224. L_4 = UnityWebRequest_SetCustomMethod_mA970EB4024D1303CF03FFB183CE102A84BC231AB(__this, L_3, NULL);
  5225. V_0 = L_4;
  5226. int32_t L_5 = V_0;
  5227. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5228. bool L_6 = V_2;
  5229. if (!L_6)
  5230. {
  5231. goto IL_0035;
  5232. }
  5233. }
  5234. {
  5235. int32_t L_7 = V_0;
  5236. String_t* L_8;
  5237. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5238. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5239. NullCheck(L_9);
  5240. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5241. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40_RuntimeMethod_var)));
  5242. }
  5243. IL_0035:
  5244. {
  5245. return;
  5246. }
  5247. }
  5248. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  5249. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  5250. {
  5251. static bool s_Il2CppMethodInitialized;
  5252. if (!s_Il2CppMethodInitialized)
  5253. {
  5254. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708);
  5255. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  5256. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5257. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  5258. s_Il2CppMethodInitialized = true;
  5259. }
  5260. bool V_0 = false;
  5261. String_t* V_1 = NULL;
  5262. String_t* V_2 = NULL;
  5263. {
  5264. String_t* L_0 = ___0_value;
  5265. bool L_1;
  5266. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  5267. V_0 = L_1;
  5268. bool L_2 = V_0;
  5269. if (!L_2)
  5270. {
  5271. goto IL_0017;
  5272. }
  5273. }
  5274. {
  5275. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5276. NullCheck(L_3);
  5277. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E)), NULL);
  5278. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_method_m35F9B5C788C66EACF3FB36FA220AA6B6777CFE88_RuntimeMethod_var)));
  5279. }
  5280. IL_0017:
  5281. {
  5282. String_t* L_4 = ___0_value;
  5283. NullCheck(L_4);
  5284. String_t* L_5;
  5285. L_5 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_4, NULL);
  5286. V_2 = L_5;
  5287. String_t* L_6 = V_2;
  5288. V_1 = L_6;
  5289. String_t* L_7 = V_1;
  5290. bool L_8;
  5291. L_8 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, NULL);
  5292. if (L_8)
  5293. {
  5294. goto IL_0056;
  5295. }
  5296. }
  5297. {
  5298. String_t* L_9 = V_1;
  5299. bool L_10;
  5300. L_10 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_9, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  5301. if (L_10)
  5302. {
  5303. goto IL_0060;
  5304. }
  5305. }
  5306. {
  5307. String_t* L_11 = V_1;
  5308. bool L_12;
  5309. L_12 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_11, _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708, NULL);
  5310. if (L_12)
  5311. {
  5312. goto IL_006a;
  5313. }
  5314. }
  5315. {
  5316. String_t* L_13 = V_1;
  5317. bool L_14;
  5318. L_14 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_13, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  5319. if (L_14)
  5320. {
  5321. goto IL_0074;
  5322. }
  5323. }
  5324. {
  5325. goto IL_007e;
  5326. }
  5327. IL_0056:
  5328. {
  5329. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 0, NULL);
  5330. goto IL_008d;
  5331. }
  5332. IL_0060:
  5333. {
  5334. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 1, NULL);
  5335. goto IL_008d;
  5336. }
  5337. IL_006a:
  5338. {
  5339. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 2, NULL);
  5340. goto IL_008d;
  5341. }
  5342. IL_0074:
  5343. {
  5344. UnityWebRequest_InternalSetMethod_m91C9BE2FB38963FEBDACB221CB275CA7AF2828F4(__this, 3, NULL);
  5345. goto IL_008d;
  5346. }
  5347. IL_007e:
  5348. {
  5349. String_t* L_15 = ___0_value;
  5350. NullCheck(L_15);
  5351. String_t* L_16;
  5352. L_16 = String_ToUpper_m5F499BC30C2A5F5C96248B4C3D1A3B4694748B49(L_15, NULL);
  5353. UnityWebRequest_InternalSetCustomMethod_m438D89359CA23426910FBE2F58D3D6D21E80BF40(__this, L_16, NULL);
  5354. goto IL_008d;
  5355. }
  5356. IL_008d:
  5357. {
  5358. return;
  5359. }
  5360. }
  5361. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  5362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5363. {
  5364. typedef int32_t (*UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5365. static UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86_ftn _il2cpp_icall_func;
  5366. if (!_il2cpp_icall_func)
  5367. _il2cpp_icall_func = (UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetError()");
  5368. int32_t icallRetVal = _il2cpp_icall_func(__this);
  5369. return icallRetVal;
  5370. }
  5371. // System.String UnityEngine.Networking.UnityWebRequest::get_error()
  5372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_m20A5D813ED59118B7AA1D1E2EB5250178B1F5B6F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5373. {
  5374. static bool s_Il2CppMethodInitialized;
  5375. if (!s_Il2CppMethodInitialized)
  5376. {
  5377. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var);
  5378. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C);
  5379. s_Il2CppMethodInitialized = true;
  5380. }
  5381. int32_t V_0 = 0;
  5382. int32_t V_1 = 0;
  5383. String_t* V_2 = NULL;
  5384. {
  5385. int32_t L_0;
  5386. L_0 = UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449(__this, NULL);
  5387. V_1 = L_0;
  5388. int32_t L_1 = V_1;
  5389. V_0 = L_1;
  5390. int32_t L_2 = V_0;
  5391. if ((!(((uint32_t)L_2) > ((uint32_t)1))))
  5392. {
  5393. goto IL_0016;
  5394. }
  5395. }
  5396. {
  5397. goto IL_0010;
  5398. }
  5399. IL_0010:
  5400. {
  5401. int32_t L_3 = V_0;
  5402. if ((((int32_t)L_3) == ((int32_t)3)))
  5403. {
  5404. goto IL_001a;
  5405. }
  5406. }
  5407. {
  5408. goto IL_003d;
  5409. }
  5410. IL_0016:
  5411. {
  5412. V_2 = (String_t*)NULL;
  5413. goto IL_004b;
  5414. }
  5415. IL_001a:
  5416. {
  5417. int64_t L_4;
  5418. L_4 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  5419. int64_t L_5 = L_4;
  5420. RuntimeObject* L_6 = Box(Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_il2cpp_TypeInfo_var, &L_5);
  5421. int64_t L_7;
  5422. L_7 = UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B(__this, NULL);
  5423. String_t* L_8;
  5424. L_8 = UnityWebRequest_GetHTTPStatusString_m791BC62F33D286229978CFFC201B16E1F2D3FB2D(L_7, NULL);
  5425. String_t* L_9;
  5426. L_9 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C, L_6, L_8, NULL);
  5427. V_2 = L_9;
  5428. goto IL_004b;
  5429. }
  5430. IL_003d:
  5431. {
  5432. int32_t L_10;
  5433. L_10 = UnityWebRequest_GetError_m4A888DDBEE9F390C92090C6355DFB1F94A33BB86(__this, NULL);
  5434. String_t* L_11;
  5435. L_11 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_10, NULL);
  5436. V_2 = L_11;
  5437. goto IL_004b;
  5438. }
  5439. IL_004b:
  5440. {
  5441. String_t* L_12 = V_2;
  5442. return L_12;
  5443. }
  5444. }
  5445. // System.String UnityEngine.Networking.UnityWebRequest::get_url()
  5446. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_url_mA3BF205A6FCA2BF66A62174182BE84553CE3FFA8 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5447. {
  5448. String_t* V_0 = NULL;
  5449. {
  5450. String_t* L_0;
  5451. L_0 = UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3(__this, NULL);
  5452. V_0 = L_0;
  5453. goto IL_000a;
  5454. }
  5455. IL_000a:
  5456. {
  5457. String_t* L_1 = V_0;
  5458. return L_1;
  5459. }
  5460. }
  5461. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  5462. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m5C117F8E00BA03DDC9EBC859DCB31BB4B6E3ECFC (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_value, const RuntimeMethod* method)
  5463. {
  5464. static bool s_Il2CppMethodInitialized;
  5465. if (!s_Il2CppMethodInitialized)
  5466. {
  5467. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  5468. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2);
  5469. s_Il2CppMethodInitialized = true;
  5470. }
  5471. String_t* V_0 = NULL;
  5472. {
  5473. V_0 = _stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2;
  5474. String_t* L_0 = ___0_value;
  5475. String_t* L_1 = V_0;
  5476. il2cpp_codegen_runtime_class_init_inline(WebRequestUtils_t23F1FB533DBFDA3BE5624D901D535B4C6EFAD443_il2cpp_TypeInfo_var);
  5477. String_t* L_2;
  5478. L_2 = WebRequestUtils_MakeInitialUrl_m30A37413A904FEB4E4E45607E929B4E90ECE044C(L_0, L_1, NULL);
  5479. UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9(__this, L_2, NULL);
  5480. return;
  5481. }
  5482. }
  5483. // System.String UnityEngine.Networking.UnityWebRequest::GetUrl()
  5484. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5485. {
  5486. typedef String_t* (*UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5487. static UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3_ftn _il2cpp_icall_func;
  5488. if (!_il2cpp_icall_func)
  5489. _il2cpp_icall_func = (UnityWebRequest_GetUrl_mD3715E8171F3DCC13851BD5E103BB79A043FBBA3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetUrl()");
  5490. String_t* icallRetVal = _il2cpp_icall_func(__this);
  5491. return icallRetVal;
  5492. }
  5493. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  5494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  5495. {
  5496. typedef int32_t (*UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, String_t*);
  5497. static UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5_ftn _il2cpp_icall_func;
  5498. if (!_il2cpp_icall_func)
  5499. _il2cpp_icall_func = (UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)");
  5500. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_url);
  5501. return icallRetVal;
  5502. }
  5503. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  5504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_url, const RuntimeMethod* method)
  5505. {
  5506. int32_t V_0 = 0;
  5507. bool V_1 = false;
  5508. bool V_2 = false;
  5509. {
  5510. bool L_0;
  5511. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5512. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5513. bool L_1 = V_1;
  5514. if (!L_1)
  5515. {
  5516. goto IL_0019;
  5517. }
  5518. }
  5519. {
  5520. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5521. NullCheck(L_2);
  5522. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6)), NULL);
  5523. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  5524. }
  5525. IL_0019:
  5526. {
  5527. String_t* L_3 = ___0_url;
  5528. int32_t L_4;
  5529. L_4 = UnityWebRequest_SetUrl_m6DF66CA4E86A4604C9A79DF16886AEAB4A2153C5(__this, L_3, NULL);
  5530. V_0 = L_4;
  5531. int32_t L_5 = V_0;
  5532. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5533. bool L_6 = V_2;
  5534. if (!L_6)
  5535. {
  5536. goto IL_0035;
  5537. }
  5538. }
  5539. {
  5540. int32_t L_7 = V_0;
  5541. String_t* L_8;
  5542. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5543. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5544. NullCheck(L_9);
  5545. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5546. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mD3602EB8A5253116EA0EE8B18223A51BE79883E9_RuntimeMethod_var)));
  5547. }
  5548. IL_0035:
  5549. {
  5550. return;
  5551. }
  5552. }
  5553. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  5554. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5555. {
  5556. typedef int64_t (*UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5557. static UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B_ftn _il2cpp_icall_func;
  5558. if (!_il2cpp_icall_func)
  5559. _il2cpp_icall_func = (UnityWebRequest_get_responseCode_m012C177F61435D5D120A21D7A03FFF7B0F8B904B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode()");
  5560. int64_t icallRetVal = _il2cpp_icall_func(__this);
  5561. return icallRetVal;
  5562. }
  5563. // System.Boolean UnityEngine.Networking.UnityWebRequest::IsExecuting()
  5564. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5565. {
  5566. typedef bool (*UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5567. static UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF_ftn _il2cpp_icall_func;
  5568. if (!_il2cpp_icall_func)
  5569. _il2cpp_icall_func = (UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::IsExecuting()");
  5570. bool icallRetVal = _il2cpp_icall_func(__this);
  5571. return icallRetVal;
  5572. }
  5573. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  5574. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5575. {
  5576. typedef bool (*UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5577. static UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77_ftn _il2cpp_icall_func;
  5578. if (!_il2cpp_icall_func)
  5579. _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable()");
  5580. bool icallRetVal = _il2cpp_icall_func(__this);
  5581. return icallRetVal;
  5582. }
  5583. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isDone()
  5584. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_m3079B53A1CAFD8D5B334C635761E7B7E10B14123 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5585. {
  5586. bool V_0 = false;
  5587. {
  5588. int32_t L_0;
  5589. L_0 = UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449(__this, NULL);
  5590. V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
  5591. goto IL_000d;
  5592. }
  5593. IL_000d:
  5594. {
  5595. bool L_1 = V_0;
  5596. return L_1;
  5597. }
  5598. }
  5599. // UnityEngine.Networking.UnityWebRequest/Result UnityEngine.Networking.UnityWebRequest::get_result()
  5600. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5601. {
  5602. typedef int32_t (*UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5603. static UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449_ftn _il2cpp_icall_func;
  5604. if (!_il2cpp_icall_func)
  5605. _il2cpp_icall_func = (UnityWebRequest_get_result_mEF83848C5FCFB5E307CE4B57E42BF02FC9AED449_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_result()");
  5606. int32_t icallRetVal = _il2cpp_icall_func(__this);
  5607. return icallRetVal;
  5608. }
  5609. // System.Single UnityEngine.Networking.UnityWebRequest::GetDownloadProgress()
  5610. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5611. {
  5612. typedef float (*UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*);
  5613. static UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C_ftn _il2cpp_icall_func;
  5614. if (!_il2cpp_icall_func)
  5615. _il2cpp_icall_func = (UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetDownloadProgress()");
  5616. float icallRetVal = _il2cpp_icall_func(__this);
  5617. return icallRetVal;
  5618. }
  5619. // System.Single UnityEngine.Networking.UnityWebRequest::get_downloadProgress()
  5620. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float UnityWebRequest_get_downloadProgress_m28B3DB759530A61929D8AB02A4482AB21D3348B1 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5621. {
  5622. bool V_0 = false;
  5623. float V_1 = 0.0f;
  5624. int32_t G_B3_0 = 0;
  5625. {
  5626. bool L_0;
  5627. L_0 = UnityWebRequest_IsExecuting_m684F3C7B3A452EFC0AAD31E6A243047F7EBCA2BF(__this, NULL);
  5628. if (L_0)
  5629. {
  5630. goto IL_0014;
  5631. }
  5632. }
  5633. {
  5634. bool L_1;
  5635. L_1 = UnityWebRequest_get_isDone_m3079B53A1CAFD8D5B334C635761E7B7E10B14123(__this, NULL);
  5636. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  5637. goto IL_0015;
  5638. }
  5639. IL_0014:
  5640. {
  5641. G_B3_0 = 0;
  5642. }
  5643. IL_0015:
  5644. {
  5645. V_0 = (bool)G_B3_0;
  5646. bool L_2 = V_0;
  5647. if (!L_2)
  5648. {
  5649. goto IL_0021;
  5650. }
  5651. }
  5652. {
  5653. V_1 = (-1.0f);
  5654. goto IL_002a;
  5655. }
  5656. IL_0021:
  5657. {
  5658. float L_3;
  5659. L_3 = UnityWebRequest_GetDownloadProgress_m9308F3B5699CDD6A6EA0E3EBDAB506C6E007344C(__this, NULL);
  5660. V_1 = L_3;
  5661. goto IL_002a;
  5662. }
  5663. IL_002a:
  5664. {
  5665. float L_4 = V_1;
  5666. return L_4;
  5667. }
  5668. }
  5669. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  5670. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
  5671. {
  5672. typedef int32_t (*UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, String_t*, String_t*);
  5673. static UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353_ftn _il2cpp_icall_func;
  5674. if (!_il2cpp_icall_func)
  5675. _il2cpp_icall_func = (UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)");
  5676. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_name, ___1_value);
  5677. return icallRetVal;
  5678. }
  5679. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  5680. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, String_t* ___0_name, String_t* ___1_value, const RuntimeMethod* method)
  5681. {
  5682. int32_t V_0 = 0;
  5683. bool V_1 = false;
  5684. bool V_2 = false;
  5685. bool V_3 = false;
  5686. bool V_4 = false;
  5687. {
  5688. String_t* L_0 = ___0_name;
  5689. bool L_1;
  5690. L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
  5691. V_1 = L_1;
  5692. bool L_2 = V_1;
  5693. if (!L_2)
  5694. {
  5695. goto IL_0016;
  5696. }
  5697. }
  5698. {
  5699. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5700. NullCheck(L_3);
  5701. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5)), NULL);
  5702. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5703. }
  5704. IL_0016:
  5705. {
  5706. String_t* L_4 = ___1_value;
  5707. V_2 = (bool)((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  5708. bool L_5 = V_2;
  5709. if (!L_5)
  5710. {
  5711. goto IL_0029;
  5712. }
  5713. }
  5714. {
  5715. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_6 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
  5716. NullCheck(L_6);
  5717. ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2)), NULL);
  5718. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5719. }
  5720. IL_0029:
  5721. {
  5722. bool L_7;
  5723. L_7 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5724. V_3 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
  5725. bool L_8 = V_3;
  5726. if (!L_8)
  5727. {
  5728. goto IL_0041;
  5729. }
  5730. }
  5731. {
  5732. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5733. NullCheck(L_9);
  5734. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69)), NULL);
  5735. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5736. }
  5737. IL_0041:
  5738. {
  5739. String_t* L_10 = ___0_name;
  5740. String_t* L_11 = ___1_value;
  5741. int32_t L_12;
  5742. L_12 = UnityWebRequest_InternalSetRequestHeader_m6D56972D305CBFC6EC3308483E3D9BC06E38F353(__this, L_10, L_11, NULL);
  5743. V_0 = L_12;
  5744. int32_t L_13 = V_0;
  5745. V_4 = (bool)((!(((uint32_t)L_13) <= ((uint32_t)0)))? 1 : 0);
  5746. bool L_14 = V_4;
  5747. if (!L_14)
  5748. {
  5749. goto IL_0060;
  5750. }
  5751. }
  5752. {
  5753. int32_t L_15 = V_0;
  5754. String_t* L_16;
  5755. L_16 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_15, NULL);
  5756. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_17 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5757. NullCheck(L_17);
  5758. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_17, L_16, NULL);
  5759. IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5_RuntimeMethod_var)));
  5760. }
  5761. IL_0060:
  5762. {
  5763. return;
  5764. }
  5765. }
  5766. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  5767. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_uh, const RuntimeMethod* method)
  5768. {
  5769. typedef int32_t (*UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*);
  5770. static UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973_ftn _il2cpp_icall_func;
  5771. if (!_il2cpp_icall_func)
  5772. _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)");
  5773. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_uh);
  5774. return icallRetVal;
  5775. }
  5776. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  5777. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* UnityWebRequest_get_uploadHandler_mF92ED2E0410E7F720B8775B467CFD86B60909CF5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5778. {
  5779. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* V_0 = NULL;
  5780. {
  5781. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_0 = __this->___m_UploadHandler_2;
  5782. V_0 = L_0;
  5783. goto IL_000a;
  5784. }
  5785. IL_000a:
  5786. {
  5787. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_1 = V_0;
  5788. return L_1;
  5789. }
  5790. }
  5791. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  5792. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* ___0_value, const RuntimeMethod* method)
  5793. {
  5794. int32_t V_0 = 0;
  5795. bool V_1 = false;
  5796. bool V_2 = false;
  5797. {
  5798. bool L_0;
  5799. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5800. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5801. bool L_1 = V_1;
  5802. if (!L_1)
  5803. {
  5804. goto IL_0019;
  5805. }
  5806. }
  5807. {
  5808. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5809. NullCheck(L_2);
  5810. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39)), NULL);
  5811. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  5812. }
  5813. IL_0019:
  5814. {
  5815. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_3 = ___0_value;
  5816. int32_t L_4;
  5817. L_4 = UnityWebRequest_SetUploadHandler_mB8586D5337FA8C93E791F509235E918CFBD33973(__this, L_3, NULL);
  5818. V_0 = L_4;
  5819. int32_t L_5 = V_0;
  5820. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5821. bool L_6 = V_2;
  5822. if (!L_6)
  5823. {
  5824. goto IL_0035;
  5825. }
  5826. }
  5827. {
  5828. int32_t L_7 = V_0;
  5829. String_t* L_8;
  5830. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5831. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5832. NullCheck(L_9);
  5833. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5834. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE_RuntimeMethod_var)));
  5835. }
  5836. IL_0035:
  5837. {
  5838. UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* L_10 = ___0_value;
  5839. __this->___m_UploadHandler_2 = L_10;
  5840. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UploadHandler_2), (void*)L_10);
  5841. return;
  5842. }
  5843. }
  5844. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  5845. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method)
  5846. {
  5847. typedef int32_t (*UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*);
  5848. static UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515_ftn _il2cpp_icall_func;
  5849. if (!_il2cpp_icall_func)
  5850. _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)");
  5851. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_dh);
  5852. return icallRetVal;
  5853. }
  5854. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  5855. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* UnityWebRequest_get_downloadHandler_m1AA91B23D9D594A4F4FE2975FC356C508528F1D5 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5856. {
  5857. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* V_0 = NULL;
  5858. {
  5859. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = __this->___m_DownloadHandler_1;
  5860. V_0 = L_0;
  5861. goto IL_000a;
  5862. }
  5863. IL_000a:
  5864. {
  5865. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_1 = V_0;
  5866. return L_1;
  5867. }
  5868. }
  5869. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  5870. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_value, const RuntimeMethod* method)
  5871. {
  5872. int32_t V_0 = 0;
  5873. bool V_1 = false;
  5874. bool V_2 = false;
  5875. {
  5876. bool L_0;
  5877. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5878. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5879. bool L_1 = V_1;
  5880. if (!L_1)
  5881. {
  5882. goto IL_0019;
  5883. }
  5884. }
  5885. {
  5886. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5887. NullCheck(L_2);
  5888. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36)), NULL);
  5889. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  5890. }
  5891. IL_0019:
  5892. {
  5893. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_3 = ___0_value;
  5894. int32_t L_4;
  5895. L_4 = UnityWebRequest_SetDownloadHandler_m3EE61901234B0A0C86424E7A00B860807C73A515(__this, L_3, NULL);
  5896. V_0 = L_4;
  5897. int32_t L_5 = V_0;
  5898. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5899. bool L_6 = V_2;
  5900. if (!L_6)
  5901. {
  5902. goto IL_0035;
  5903. }
  5904. }
  5905. {
  5906. int32_t L_7 = V_0;
  5907. String_t* L_8;
  5908. L_8 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_7, NULL);
  5909. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_9 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5910. NullCheck(L_9);
  5911. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_9, L_8, NULL);
  5912. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F_RuntimeMethod_var)));
  5913. }
  5914. IL_0035:
  5915. {
  5916. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_10 = ___0_value;
  5917. __this->___m_DownloadHandler_1 = L_10;
  5918. Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DownloadHandler_1), (void*)L_10);
  5919. return;
  5920. }
  5921. }
  5922. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  5923. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* UnityWebRequest_get_certificateHandler_m928A7BE34EB3725EA1D977877B7362E813918D7D (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  5924. {
  5925. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* V_0 = NULL;
  5926. {
  5927. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_0 = __this->___m_CertificateHandler_3;
  5928. V_0 = L_0;
  5929. goto IL_000a;
  5930. }
  5931. IL_000a:
  5932. {
  5933. CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* L_1 = V_0;
  5934. return L_1;
  5935. }
  5936. }
  5937. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)
  5938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_timeout, const RuntimeMethod* method)
  5939. {
  5940. typedef int32_t (*UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F_ftn) (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*, int32_t);
  5941. static UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F_ftn _il2cpp_icall_func;
  5942. if (!_il2cpp_icall_func)
  5943. _il2cpp_icall_func = (UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)");
  5944. int32_t icallRetVal = _il2cpp_icall_func(__this, ___0_timeout);
  5945. return icallRetVal;
  5946. }
  5947. // System.Void UnityEngine.Networking.UnityWebRequest::set_timeout(System.Int32)
  5948. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618 (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, int32_t ___0_value, const RuntimeMethod* method)
  5949. {
  5950. static bool s_Il2CppMethodInitialized;
  5951. if (!s_Il2CppMethodInitialized)
  5952. {
  5953. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
  5954. s_Il2CppMethodInitialized = true;
  5955. }
  5956. int32_t V_0 = 0;
  5957. bool V_1 = false;
  5958. bool V_2 = false;
  5959. {
  5960. bool L_0;
  5961. L_0 = UnityWebRequest_get_isModifiable_m8B2DA7C5B43443C4262BB0289141A608E2695D77(__this, NULL);
  5962. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5963. bool L_1 = V_1;
  5964. if (!L_1)
  5965. {
  5966. goto IL_0019;
  5967. }
  5968. }
  5969. {
  5970. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5971. NullCheck(L_2);
  5972. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCFD59FD74BD22E570703A8BC6B77F6081661FEEB)), NULL);
  5973. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var)));
  5974. }
  5975. IL_0019:
  5976. {
  5977. int32_t L_3 = ___0_value;
  5978. il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
  5979. int32_t L_4;
  5980. L_4 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(L_3, 0, NULL);
  5981. ___0_value = L_4;
  5982. int32_t L_5 = ___0_value;
  5983. int32_t L_6;
  5984. L_6 = UnityWebRequest_SetTimeoutMsec_m0EF143E4E02677284CD9A42018B44DF038AABA7F(__this, ((int32_t)il2cpp_codegen_multiply(L_5, ((int32_t)1000))), NULL);
  5985. V_0 = L_6;
  5986. int32_t L_7 = V_0;
  5987. V_2 = (bool)((!(((uint32_t)L_7) <= ((uint32_t)0)))? 1 : 0);
  5988. bool L_8 = V_2;
  5989. if (!L_8)
  5990. {
  5991. goto IL_0044;
  5992. }
  5993. }
  5994. {
  5995. int32_t L_9 = V_0;
  5996. String_t* L_10;
  5997. L_10 = UnityWebRequest_GetWebErrorString_mE82AF7BF8045F616FDB38A7DBD071CA41F6D468D(L_9, NULL);
  5998. InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_11 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
  5999. NullCheck(L_11);
  6000. InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_11, L_10, NULL);
  6001. IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_timeout_mE9C8169FA8CF1BE17E3D9FDACDC6E1A9508DF618_RuntimeMethod_var)));
  6002. }
  6003. IL_0044:
  6004. {
  6005. return;
  6006. }
  6007. }
  6008. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Get(System.String)
  6009. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Get_m1A332EE069BB5052368307F254A5A7627BB5FD86 (String_t* ___0_uri, const RuntimeMethod* method)
  6010. {
  6011. static bool s_Il2CppMethodInitialized;
  6012. if (!s_Il2CppMethodInitialized)
  6013. {
  6014. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  6015. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6016. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  6017. s_Il2CppMethodInitialized = true;
  6018. }
  6019. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  6020. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  6021. {
  6022. String_t* L_0 = ___0_uri;
  6023. DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* L_1 = (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*)il2cpp_codegen_object_new(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  6024. NullCheck(L_1);
  6025. DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF(L_1, NULL);
  6026. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6027. NullCheck(L_2);
  6028. UnityWebRequest__ctor_m3798CB7D0BE685F2520AF1BBF83B523BBDD7980A(L_2, L_0, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, L_1, (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)NULL, NULL);
  6029. V_0 = L_2;
  6030. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_3 = V_0;
  6031. V_1 = L_3;
  6032. goto IL_0017;
  6033. }
  6034. IL_0017:
  6035. {
  6036. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_4 = V_1;
  6037. return L_4;
  6038. }
  6039. }
  6040. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Head(System.String)
  6041. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Head_m0010750A2B5A1F24EAF86A492D48E38A092FE71A (String_t* ___0_uri, const RuntimeMethod* method)
  6042. {
  6043. static bool s_Il2CppMethodInitialized;
  6044. if (!s_Il2CppMethodInitialized)
  6045. {
  6046. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6047. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  6048. s_Il2CppMethodInitialized = true;
  6049. }
  6050. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  6051. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  6052. {
  6053. String_t* L_0 = ___0_uri;
  6054. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_1 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6055. NullCheck(L_1);
  6056. UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E(L_1, L_0, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, NULL);
  6057. V_0 = L_1;
  6058. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = V_0;
  6059. V_1 = L_2;
  6060. goto IL_0011;
  6061. }
  6062. IL_0011:
  6063. {
  6064. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_3 = V_1;
  6065. return L_3;
  6066. }
  6067. }
  6068. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,UnityEngine.WWWForm)
  6069. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* UnityWebRequest_Post_m90D1692FE21DF17CB3DEB0948D0359B778404373 (String_t* ___0_uri, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method)
  6070. {
  6071. static bool s_Il2CppMethodInitialized;
  6072. if (!s_Il2CppMethodInitialized)
  6073. {
  6074. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6075. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  6076. s_Il2CppMethodInitialized = true;
  6077. }
  6078. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_0 = NULL;
  6079. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* V_1 = NULL;
  6080. {
  6081. String_t* L_0 = ___0_uri;
  6082. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_1 = (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F*)il2cpp_codegen_object_new(UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F_il2cpp_TypeInfo_var);
  6083. NullCheck(L_1);
  6084. UnityWebRequest__ctor_mD4739B0BF1C4937479A83B24B531C6B819712A3E(L_1, L_0, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, NULL);
  6085. V_0 = L_1;
  6086. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_2 = V_0;
  6087. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_3 = ___1_formData;
  6088. UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B(L_2, L_3, NULL);
  6089. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_4 = V_0;
  6090. V_1 = L_4;
  6091. goto IL_0019;
  6092. }
  6093. IL_0019:
  6094. {
  6095. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_5 = V_1;
  6096. return L_5;
  6097. }
  6098. }
  6099. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm)
  6100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m48BDAAC734D555D9ADB7F6DEE3359100692CAA5B (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_request, WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* ___1_formData, const RuntimeMethod* method)
  6101. {
  6102. static bool s_Il2CppMethodInitialized;
  6103. if (!s_Il2CppMethodInitialized)
  6104. {
  6105. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var);
  6106. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  6107. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var);
  6108. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var);
  6109. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var);
  6110. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
  6111. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
  6112. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var);
  6113. s_Il2CppMethodInitialized = true;
  6114. }
  6115. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6116. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* V_1 = NULL;
  6117. bool V_2 = false;
  6118. bool V_3 = false;
  6119. bool V_4 = false;
  6120. Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 V_5;
  6121. memset((&V_5), 0, sizeof(V_5));
  6122. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A V_6;
  6123. memset((&V_6), 0, sizeof(V_6));
  6124. {
  6125. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_request;
  6126. DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* L_1 = (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*)il2cpp_codegen_object_new(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_il2cpp_TypeInfo_var);
  6127. NullCheck(L_1);
  6128. DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF(L_1, NULL);
  6129. NullCheck(L_0);
  6130. UnityWebRequest_set_downloadHandler_m6CB94492012097DFC44E5773D1A627753788292F(L_0, L_1, NULL);
  6131. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_2 = ___1_formData;
  6132. V_2 = (bool)((((RuntimeObject*)(WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045*)L_2) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6133. bool L_3 = V_2;
  6134. if (!L_3)
  6135. {
  6136. goto IL_0017;
  6137. }
  6138. }
  6139. {
  6140. goto IL_008c;
  6141. }
  6142. IL_0017:
  6143. {
  6144. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6145. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_4 = ___1_formData;
  6146. NullCheck(L_4);
  6147. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5;
  6148. L_5 = WWWForm_get_data_mE064CFB866D49D1E49FA9E0811CE71D039BB0145(L_4, NULL);
  6149. V_0 = L_5;
  6150. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_6 = V_0;
  6151. NullCheck(L_6);
  6152. V_3 = (bool)((((int32_t)(((RuntimeArray*)L_6)->max_length)) == ((int32_t)0))? 1 : 0);
  6153. bool L_7 = V_3;
  6154. if (!L_7)
  6155. {
  6156. goto IL_002b;
  6157. }
  6158. }
  6159. {
  6160. V_0 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6161. }
  6162. IL_002b:
  6163. {
  6164. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_8 = V_0;
  6165. V_4 = (bool)((!(((RuntimeObject*)(ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)L_8) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
  6166. bool L_9 = V_4;
  6167. if (!L_9)
  6168. {
  6169. goto IL_0042;
  6170. }
  6171. }
  6172. {
  6173. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_10 = ___0_request;
  6174. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_0;
  6175. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* L_12 = (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A*)il2cpp_codegen_object_new(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_il2cpp_TypeInfo_var);
  6176. NullCheck(L_12);
  6177. UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7(L_12, L_11, NULL);
  6178. NullCheck(L_10);
  6179. UnityWebRequest_set_uploadHandler_m68F346550136DE178C79238944985892196027FE(L_10, L_12, NULL);
  6180. }
  6181. IL_0042:
  6182. {
  6183. WWWForm_t0DAE123504AB1B2BC17C18714741B92AB3B3B045* L_13 = ___1_formData;
  6184. NullCheck(L_13);
  6185. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_14;
  6186. L_14 = WWWForm_get_headers_mF6508B8C984B76EF984495FF01BA7185CFD0C63E(L_13, NULL);
  6187. V_1 = L_14;
  6188. Dictionary_2_t46B2DB028096FA2B828359E52F37F3105A83AD83* L_15 = V_1;
  6189. NullCheck(L_15);
  6190. Enumerator_t173E7BE1F35CA448C7E0EE77345C9E0EC0206562 L_16;
  6191. L_16 = Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6(L_15, Dictionary_2_GetEnumerator_m46EC45F42CA2279D83568CD3F216AAABA8E749F6_RuntimeMethod_var);
  6192. V_5 = L_16;
  6193. }
  6194. {
  6195. auto __finallyBlock = il2cpp::utils::Finally([&]
  6196. {
  6197. FINALLY_007d:
  6198. {// begin finally (depth: 1)
  6199. Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD((&V_5), Enumerator_Dispose_m068DDFF5CAFBB15C8A0602DEADA7F10C5BB7ADCD_RuntimeMethod_var);
  6200. return;
  6201. }// end finally (depth: 1)
  6202. });
  6203. try
  6204. {// begin try (depth: 1)
  6205. {
  6206. goto IL_0072_1;
  6207. }
  6208. IL_0054_1:
  6209. {
  6210. KeyValuePair_2_t47AB280304B50F542FD7E14F25DB2C374AEDD80A L_17;
  6211. L_17 = Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_inline((&V_5), Enumerator_get_Current_m49070E88C2E34AB46E6292A3FB1C227576B8506E_RuntimeMethod_var);
  6212. V_6 = L_17;
  6213. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_18 = ___0_request;
  6214. String_t* L_19;
  6215. L_19 = KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_inline((&V_6), KeyValuePair_2_get_Key_m654BCCAE2F20CB11D8E8C2D2C886A0C8A13EB1C4_RuntimeMethod_var);
  6216. String_t* L_20;
  6217. L_20 = KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_inline((&V_6), KeyValuePair_2_get_Value_m7345512A32CB4DCAA0643050B18DC8DCD71B927A_RuntimeMethod_var);
  6218. NullCheck(L_18);
  6219. UnityWebRequest_SetRequestHeader_m099734EB787B7269B62AB2236A5A4F7D35AF8BC5(L_18, L_19, L_20, NULL);
  6220. }
  6221. IL_0072_1:
  6222. {
  6223. bool L_21;
  6224. L_21 = Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438((&V_5), Enumerator_MoveNext_mA93491D9B55547D066053F3BC0A69C635F877438_RuntimeMethod_var);
  6225. if (L_21)
  6226. {
  6227. goto IL_0054_1;
  6228. }
  6229. }
  6230. {
  6231. goto IL_008c;
  6232. }
  6233. }// end try (depth: 1)
  6234. catch(Il2CppExceptionWrapper& e)
  6235. {
  6236. __finallyBlock.StoreException(e.ex);
  6237. }
  6238. }
  6239. IL_008c:
  6240. {
  6241. return;
  6242. }
  6243. }
  6244. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String)
  6245. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m1B819655E6FFE468B9DE9D101A17398F3E1A4F27 (String_t* ___0_s, const RuntimeMethod* method)
  6246. {
  6247. String_t* V_0 = NULL;
  6248. {
  6249. String_t* L_0 = ___0_s;
  6250. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
  6251. L_1 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  6252. String_t* L_2;
  6253. L_2 = UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA(L_0, L_1, NULL);
  6254. V_0 = L_2;
  6255. goto IL_000f;
  6256. }
  6257. IL_000f:
  6258. {
  6259. String_t* L_3 = V_0;
  6260. return L_3;
  6261. }
  6262. }
  6263. // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding)
  6264. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_mA76C33EF0C48CDE8CA317256CFAD9D21A125BCDA (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  6265. {
  6266. static bool s_Il2CppMethodInitialized;
  6267. if (!s_Il2CppMethodInitialized)
  6268. {
  6269. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6270. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  6271. s_Il2CppMethodInitialized = true;
  6272. }
  6273. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6274. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  6275. bool V_2 = false;
  6276. String_t* V_3 = NULL;
  6277. bool V_4 = false;
  6278. bool V_5 = false;
  6279. {
  6280. String_t* L_0 = ___0_s;
  6281. V_2 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6282. bool L_1 = V_2;
  6283. if (!L_1)
  6284. {
  6285. goto IL_000d;
  6286. }
  6287. }
  6288. {
  6289. V_3 = (String_t*)NULL;
  6290. goto IL_004d;
  6291. }
  6292. IL_000d:
  6293. {
  6294. String_t* L_2 = ___0_s;
  6295. bool L_3;
  6296. L_3 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_2, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, NULL);
  6297. V_4 = L_3;
  6298. bool L_4 = V_4;
  6299. if (!L_4)
  6300. {
  6301. goto IL_0026;
  6302. }
  6303. }
  6304. {
  6305. V_3 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  6306. goto IL_004d;
  6307. }
  6308. IL_0026:
  6309. {
  6310. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_5 = ___1_e;
  6311. V_5 = (bool)((((RuntimeObject*)(Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095*)L_5) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6312. bool L_6 = V_5;
  6313. if (!L_6)
  6314. {
  6315. goto IL_0034;
  6316. }
  6317. }
  6318. {
  6319. V_3 = (String_t*)NULL;
  6320. goto IL_004d;
  6321. }
  6322. IL_0034:
  6323. {
  6324. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7 = ___1_e;
  6325. String_t* L_8 = ___0_s;
  6326. NullCheck(L_7);
  6327. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_9;
  6328. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_7, L_8);
  6329. V_0 = L_9;
  6330. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10 = V_0;
  6331. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6332. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11;
  6333. L_11 = WWWTranscoder_URLEncode_mC3A0A499F4A42BED4509092095F505E9BCA8DAC0(L_10, NULL);
  6334. V_1 = L_11;
  6335. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_12 = ___1_e;
  6336. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_13 = V_1;
  6337. NullCheck(L_12);
  6338. String_t* L_14;
  6339. L_14 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(45 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_12, L_13);
  6340. V_3 = L_14;
  6341. goto IL_004d;
  6342. }
  6343. IL_004d:
  6344. {
  6345. String_t* L_15 = V_3;
  6346. return L_15;
  6347. }
  6348. }
  6349. // System.String UnityEngine.Networking.UnityWebRequest::UnEscapeURL(System.String)
  6350. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_UnEscapeURL_mF32D6DA1A428A932B9A57A48FE5FA86D4B1446BB (String_t* ___0_s, const RuntimeMethod* method)
  6351. {
  6352. String_t* V_0 = NULL;
  6353. {
  6354. String_t* L_0 = ___0_s;
  6355. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_1;
  6356. L_1 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  6357. String_t* L_2;
  6358. L_2 = UnityWebRequest_UnEscapeURL_m7164BC27C48FD57AB777128DD271E56B9EF25DC4(L_0, L_1, NULL);
  6359. V_0 = L_2;
  6360. goto IL_000f;
  6361. }
  6362. IL_000f:
  6363. {
  6364. String_t* L_3 = V_0;
  6365. return L_3;
  6366. }
  6367. }
  6368. // System.String UnityEngine.Networking.UnityWebRequest::UnEscapeURL(System.String,System.Text.Encoding)
  6369. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_UnEscapeURL_m7164BC27C48FD57AB777128DD271E56B9EF25DC4 (String_t* ___0_s, Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___1_e, const RuntimeMethod* method)
  6370. {
  6371. static bool s_Il2CppMethodInitialized;
  6372. if (!s_Il2CppMethodInitialized)
  6373. {
  6374. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6375. s_Il2CppMethodInitialized = true;
  6376. }
  6377. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6378. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_1 = NULL;
  6379. bool V_2 = false;
  6380. String_t* V_3 = NULL;
  6381. bool V_4 = false;
  6382. int32_t G_B5_0 = 0;
  6383. {
  6384. String_t* L_0 = ___0_s;
  6385. V_2 = (bool)((((RuntimeObject*)(String_t*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
  6386. bool L_1 = V_2;
  6387. if (!L_1)
  6388. {
  6389. goto IL_000d;
  6390. }
  6391. }
  6392. {
  6393. V_3 = (String_t*)NULL;
  6394. goto IL_0049;
  6395. }
  6396. IL_000d:
  6397. {
  6398. String_t* L_2 = ___0_s;
  6399. NullCheck(L_2);
  6400. int32_t L_3;
  6401. L_3 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_2, ((int32_t)37), NULL);
  6402. if ((!(((uint32_t)L_3) == ((uint32_t)(-1)))))
  6403. {
  6404. goto IL_0025;
  6405. }
  6406. }
  6407. {
  6408. String_t* L_4 = ___0_s;
  6409. NullCheck(L_4);
  6410. int32_t L_5;
  6411. L_5 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_4, ((int32_t)43), NULL);
  6412. G_B5_0 = ((((int32_t)L_5) == ((int32_t)(-1)))? 1 : 0);
  6413. goto IL_0026;
  6414. }
  6415. IL_0025:
  6416. {
  6417. G_B5_0 = 0;
  6418. }
  6419. IL_0026:
  6420. {
  6421. V_4 = (bool)G_B5_0;
  6422. bool L_6 = V_4;
  6423. if (!L_6)
  6424. {
  6425. goto IL_0030;
  6426. }
  6427. }
  6428. {
  6429. String_t* L_7 = ___0_s;
  6430. V_3 = L_7;
  6431. goto IL_0049;
  6432. }
  6433. IL_0030:
  6434. {
  6435. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_8 = ___1_e;
  6436. String_t* L_9 = ___0_s;
  6437. NullCheck(L_8);
  6438. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_10;
  6439. L_10 = VirtualFuncInvoker1< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*, String_t* >::Invoke(26 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, L_9);
  6440. V_0 = L_10;
  6441. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_11 = V_0;
  6442. il2cpp_codegen_runtime_class_init_inline(WWWTranscoder_t551AAF7200BB7381823C52321E9A60A9EE63641B_il2cpp_TypeInfo_var);
  6443. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_12;
  6444. L_12 = WWWTranscoder_URLDecode_m8A1C62B69B7B77C9FD63A97F730F87239112C704(L_11, NULL);
  6445. V_1 = L_12;
  6446. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_13 = ___1_e;
  6447. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_14 = V_1;
  6448. NullCheck(L_13);
  6449. String_t* L_15;
  6450. L_15 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(45 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_13, L_14);
  6451. V_3 = L_15;
  6452. goto IL_0049;
  6453. }
  6454. IL_0049:
  6455. {
  6456. String_t* L_16 = V_3;
  6457. return L_16;
  6458. }
  6459. }
  6460. #ifdef __clang__
  6461. #pragma clang diagnostic pop
  6462. #endif
  6463. #ifdef __clang__
  6464. #pragma clang diagnostic push
  6465. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6466. #pragma clang diagnostic ignored "-Wunused-variable"
  6467. #endif
  6468. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  6469. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  6470. {
  6471. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  6472. }
  6473. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  6474. {
  6475. intptr_t unmarshaledm_Ptr_temp_0;
  6476. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  6477. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  6478. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  6479. }
  6480. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  6481. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_pinvoke_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_pinvoke& marshaled)
  6482. {
  6483. }
  6484. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  6485. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  6486. {
  6487. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  6488. }
  6489. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_back(const DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled, DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB& unmarshaled)
  6490. {
  6491. intptr_t unmarshaledm_Ptr_temp_0;
  6492. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  6493. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  6494. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  6495. }
  6496. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  6497. IL2CPP_EXTERN_C void DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshal_com_cleanup(DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB_marshaled_com& marshaled)
  6498. {
  6499. }
  6500. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  6501. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6502. {
  6503. typedef void (*DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927_ftn) (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*);
  6504. static DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927_ftn _il2cpp_icall_func;
  6505. if (!_il2cpp_icall_func)
  6506. _il2cpp_icall_func = (DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::Release()");
  6507. _il2cpp_icall_func(__this);
  6508. }
  6509. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  6510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6511. {
  6512. {
  6513. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  6514. return;
  6515. }
  6516. }
  6517. // System.Void UnityEngine.Networking.DownloadHandler::Finalize()
  6518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_m21F7E76D39E0CBF30890C6A0C8EDBF049AFFBB14 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6519. {
  6520. {
  6521. }
  6522. {
  6523. auto __finallyBlock = il2cpp::utils::Finally([&]
  6524. {
  6525. FINALLY_000b:
  6526. {// begin finally (depth: 1)
  6527. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  6528. return;
  6529. }// end finally (depth: 1)
  6530. });
  6531. try
  6532. {// begin try (depth: 1)
  6533. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::Dispose() */, __this);
  6534. goto IL_0013;
  6535. }// end try (depth: 1)
  6536. catch(Il2CppExceptionWrapper& e)
  6537. {
  6538. __finallyBlock.StoreException(e.ex);
  6539. }
  6540. }
  6541. IL_0013:
  6542. {
  6543. return;
  6544. }
  6545. }
  6546. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  6547. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6548. {
  6549. static bool s_Il2CppMethodInitialized;
  6550. if (!s_Il2CppMethodInitialized)
  6551. {
  6552. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  6553. s_Il2CppMethodInitialized = true;
  6554. }
  6555. bool V_0 = false;
  6556. {
  6557. intptr_t L_0 = __this->___m_Ptr_0;
  6558. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  6559. bool L_2;
  6560. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  6561. V_0 = L_2;
  6562. bool L_3 = V_0;
  6563. if (!L_3)
  6564. {
  6565. goto IL_0029;
  6566. }
  6567. }
  6568. {
  6569. DownloadHandler_Release_mE143BC893E5F52645B5CC99A1141F9EA830E0927(__this, NULL);
  6570. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  6571. __this->___m_Ptr_0 = L_4;
  6572. }
  6573. IL_0029:
  6574. {
  6575. return;
  6576. }
  6577. }
  6578. // System.Byte[] UnityEngine.Networking.DownloadHandler::get_data()
  6579. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_get_data_m1DC9B4514B12939B090028BF28C6BEF21DE9B6F3 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6580. {
  6581. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6582. {
  6583. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
  6584. L_0 = VirtualFuncInvoker0< ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(7 /* System.Byte[] UnityEngine.Networking.DownloadHandler::GetData() */, __this);
  6585. V_0 = L_0;
  6586. goto IL_000a;
  6587. }
  6588. IL_000a:
  6589. {
  6590. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0;
  6591. return L_1;
  6592. }
  6593. }
  6594. // System.String UnityEngine.Networking.DownloadHandler::get_text()
  6595. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_mA6DE5CB2647A21E577B963708DC3D0DA4DBFE7D8 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6596. {
  6597. String_t* V_0 = NULL;
  6598. {
  6599. String_t* L_0;
  6600. L_0 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String UnityEngine.Networking.DownloadHandler::GetText() */, __this);
  6601. V_0 = L_0;
  6602. goto IL_000a;
  6603. }
  6604. IL_000a:
  6605. {
  6606. String_t* L_1 = V_0;
  6607. return L_1;
  6608. }
  6609. }
  6610. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData()
  6611. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_GetNativeData_m884DE3A326286BFE7B26098CD55D6DCD7D146E23 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6612. {
  6613. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  6614. memset((&V_0), 0, sizeof(V_0));
  6615. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_1;
  6616. memset((&V_1), 0, sizeof(V_1));
  6617. {
  6618. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  6619. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0 = V_0;
  6620. V_1 = L_0;
  6621. goto IL_000d;
  6622. }
  6623. IL_000d:
  6624. {
  6625. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1 = V_1;
  6626. return L_1;
  6627. }
  6628. }
  6629. // System.Byte[] UnityEngine.Networking.DownloadHandler::GetData()
  6630. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_GetData_mCAAC65F3AB3352C789E169EB7D9C7C75BEA74BAC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6631. {
  6632. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_0 = NULL;
  6633. {
  6634. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0;
  6635. L_0 = DownloadHandler_InternalGetByteArray_m27F42C529228C204142EEF609AD8E96E7FC38CF6(__this, NULL);
  6636. V_0 = L_0;
  6637. goto IL_000a;
  6638. }
  6639. IL_000a:
  6640. {
  6641. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = V_0;
  6642. return L_1;
  6643. }
  6644. }
  6645. // System.String UnityEngine.Networking.DownloadHandler::GetText()
  6646. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_m19ABD4540E4BE6A4D4340933E01D5DE687020E85 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6647. {
  6648. static bool s_Il2CppMethodInitialized;
  6649. if (!s_Il2CppMethodInitialized)
  6650. {
  6651. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  6652. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6653. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  6654. s_Il2CppMethodInitialized = true;
  6655. }
  6656. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  6657. memset((&V_0), 0, sizeof(V_0));
  6658. bool V_1 = false;
  6659. String_t* V_2 = NULL;
  6660. int32_t G_B3_0 = 0;
  6661. {
  6662. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_0;
  6663. L_0 = VirtualFuncInvoker0< NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF >::Invoke(6 /* Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData() */, __this);
  6664. V_0 = L_0;
  6665. bool L_1;
  6666. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6667. if (!L_1)
  6668. {
  6669. goto IL_001d;
  6670. }
  6671. }
  6672. {
  6673. int32_t L_2;
  6674. L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length_1);
  6675. G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
  6676. goto IL_001e;
  6677. }
  6678. IL_001d:
  6679. {
  6680. G_B3_0 = 0;
  6681. }
  6682. IL_001e:
  6683. {
  6684. V_1 = (bool)G_B3_0;
  6685. bool L_3 = V_1;
  6686. if (!L_3)
  6687. {
  6688. goto IL_003f;
  6689. }
  6690. }
  6691. {
  6692. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  6693. void* L_5;
  6694. L_5 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_4, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  6695. int32_t L_6;
  6696. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&V_0))->___m_Length_1);
  6697. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_7;
  6698. L_7 = DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5(__this, NULL);
  6699. String_t* L_8;
  6700. L_8 = String_CreateString_mA014E75717E6CE25BA9D641971AD637F70532339(NULL, (int8_t*)L_5, 0, L_6, L_7, NULL);
  6701. V_2 = L_8;
  6702. goto IL_0047;
  6703. }
  6704. IL_003f:
  6705. {
  6706. V_2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  6707. goto IL_0047;
  6708. }
  6709. IL_0047:
  6710. {
  6711. String_t* L_9 = V_2;
  6712. return L_9;
  6713. }
  6714. }
  6715. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  6716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* DownloadHandler_GetTextEncoder_m1D26E8E7DE1CC2FA00EF56F1741B1DDAE4885BF5 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6717. {
  6718. static bool s_Il2CppMethodInitialized;
  6719. if (!s_Il2CppMethodInitialized)
  6720. {
  6721. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
  6722. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571);
  6723. s_Il2CppMethodInitialized = true;
  6724. }
  6725. String_t* V_0 = NULL;
  6726. bool V_1 = false;
  6727. int32_t V_2 = 0;
  6728. bool V_3 = false;
  6729. int32_t V_4 = 0;
  6730. bool V_5 = false;
  6731. String_t* V_6 = NULL;
  6732. int32_t V_7 = 0;
  6733. bool V_8 = false;
  6734. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* V_9 = NULL;
  6735. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* V_10 = NULL;
  6736. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* V_11 = NULL;
  6737. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  6738. {
  6739. String_t* L_0;
  6740. L_0 = DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC(__this, NULL);
  6741. V_0 = L_0;
  6742. String_t* L_1 = V_0;
  6743. bool L_2;
  6744. L_2 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_1, NULL);
  6745. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  6746. bool L_3 = V_1;
  6747. if (!L_3)
  6748. {
  6749. goto IL_00e7;
  6750. }
  6751. }
  6752. {
  6753. String_t* L_4 = V_0;
  6754. NullCheck(L_4);
  6755. int32_t L_5;
  6756. L_5 = String_IndexOf_m490810CB7ADA9230AC0F8D78E213A8EFED129F55(L_4, _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571, 5, NULL);
  6757. V_2 = L_5;
  6758. int32_t L_6 = V_2;
  6759. V_3 = (bool)((((int32_t)L_6) > ((int32_t)(-1)))? 1 : 0);
  6760. bool L_7 = V_3;
  6761. if (!L_7)
  6762. {
  6763. goto IL_00e6;
  6764. }
  6765. }
  6766. {
  6767. String_t* L_8 = V_0;
  6768. int32_t L_9 = V_2;
  6769. NullCheck(L_8);
  6770. int32_t L_10;
  6771. L_10 = String_IndexOf_m15B90A59047584420D227EE3A7EAC0C5EAF676F4(L_8, ((int32_t)61), L_9, NULL);
  6772. V_4 = L_10;
  6773. int32_t L_11 = V_4;
  6774. V_5 = (bool)((((int32_t)L_11) > ((int32_t)(-1)))? 1 : 0);
  6775. bool L_12 = V_5;
  6776. if (!L_12)
  6777. {
  6778. goto IL_00e5;
  6779. }
  6780. }
  6781. {
  6782. String_t* L_13 = V_0;
  6783. int32_t L_14 = V_4;
  6784. NullCheck(L_13);
  6785. String_t* L_15;
  6786. L_15 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
  6787. NullCheck(L_15);
  6788. String_t* L_16;
  6789. L_16 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_15, NULL);
  6790. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_17 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)2);
  6791. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_18 = L_17;
  6792. NullCheck(L_18);
  6793. (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
  6794. CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_19 = L_18;
  6795. NullCheck(L_19);
  6796. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34));
  6797. NullCheck(L_16);
  6798. String_t* L_20;
  6799. L_20 = String_Trim_m81BD35659E6F89DDD56816975E6E05390D023FE5(L_16, L_19, NULL);
  6800. NullCheck(L_20);
  6801. String_t* L_21;
  6802. L_21 = String_Trim_mCD6D8C6D4CFD15225D12DB7D3E0544CA80FB8DA5(L_20, NULL);
  6803. V_6 = L_21;
  6804. String_t* L_22 = V_6;
  6805. NullCheck(L_22);
  6806. int32_t L_23;
  6807. L_23 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_22, ((int32_t)59), NULL);
  6808. V_7 = L_23;
  6809. int32_t L_24 = V_7;
  6810. V_8 = (bool)((((int32_t)L_24) > ((int32_t)(-1)))? 1 : 0);
  6811. bool L_25 = V_8;
  6812. if (!L_25)
  6813. {
  6814. goto IL_0099;
  6815. }
  6816. }
  6817. {
  6818. String_t* L_26 = V_6;
  6819. int32_t L_27 = V_7;
  6820. NullCheck(L_26);
  6821. String_t* L_28;
  6822. L_28 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_26, 0, L_27, NULL);
  6823. V_6 = L_28;
  6824. }
  6825. IL_0099:
  6826. {
  6827. }
  6828. try
  6829. {// begin try (depth: 1)
  6830. String_t* L_29 = V_6;
  6831. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_30;
  6832. L_30 = Encoding_GetEncoding_m979B224460094E241BD5C283BE279886664C9187(L_29, NULL);
  6833. V_9 = L_30;
  6834. goto IL_00f0;
  6835. }// end try (depth: 1)
  6836. catch(Il2CppExceptionWrapper& e)
  6837. {
  6838. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  6839. {
  6840. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  6841. goto CATCH_00a6;
  6842. }
  6843. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  6844. {
  6845. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  6846. goto CATCH_00c5;
  6847. }
  6848. throw e;
  6849. }
  6850. CATCH_00a6:
  6851. {// begin catch(System.ArgumentException)
  6852. V_10 = ((ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*));
  6853. String_t* L_31 = V_6;
  6854. ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_32 = V_10;
  6855. NullCheck(L_32);
  6856. String_t* L_33;
  6857. L_33 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_32);
  6858. String_t* L_34;
  6859. L_34 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_31, L_33, NULL);
  6860. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  6861. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_34, NULL);
  6862. IL2CPP_POP_ACTIVE_EXCEPTION();
  6863. goto IL_00e4;
  6864. }// end catch (depth: 1)
  6865. CATCH_00c5:
  6866. {// begin catch(System.NotSupportedException)
  6867. V_11 = ((NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*));
  6868. String_t* L_35 = V_6;
  6869. NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_36 = V_11;
  6870. NullCheck(L_36);
  6871. String_t* L_37;
  6872. L_37 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_36);
  6873. String_t* L_38;
  6874. L_38 = String_Format_mFB7DA489BD99F4670881FF50EC017BFB0A5C0987(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_35, L_37, NULL);
  6875. il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
  6876. Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(L_38, NULL);
  6877. IL2CPP_POP_ACTIVE_EXCEPTION();
  6878. goto IL_00e4;
  6879. }// end catch (depth: 1)
  6880. IL_00e4:
  6881. {
  6882. }
  6883. IL_00e5:
  6884. {
  6885. }
  6886. IL_00e6:
  6887. {
  6888. }
  6889. IL_00e7:
  6890. {
  6891. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_39;
  6892. L_39 = Encoding_get_UTF8_m9FA98A53CE96FD6D02982625C5246DD36C1235C9(NULL);
  6893. V_9 = L_39;
  6894. goto IL_00f0;
  6895. }
  6896. IL_00f0:
  6897. {
  6898. Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_40 = V_9;
  6899. return L_40;
  6900. }
  6901. }
  6902. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  6903. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, const RuntimeMethod* method)
  6904. {
  6905. typedef String_t* (*DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC_ftn) (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*);
  6906. static DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC_ftn _il2cpp_icall_func;
  6907. if (!_il2cpp_icall_func)
  6908. _il2cpp_icall_func = (DownloadHandler_GetContentType_m678AE10691E33BEE69FFFDB02CACA8AD8AAADDDC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType()");
  6909. String_t* icallRetVal = _il2cpp_icall_func(__this);
  6910. return icallRetVal;
  6911. }
  6912. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLengthHeader(System.UInt64)
  6913. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLengthHeader_m545073C4FB5AB9BB6640D24FC2F32070E5FE3F17 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, uint64_t ___0_contentLength, const RuntimeMethod* method)
  6914. {
  6915. {
  6916. uint64_t L_0 = ___0_contentLength;
  6917. VirtualActionInvoker1< int32_t >::Invoke(10 /* System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32) */, __this, ((int32_t)L_0));
  6918. return;
  6919. }
  6920. }
  6921. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32)
  6922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLength_m058DE0B56C3EBE8ECE3F9570852024EE2A84DE4F (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* __this, int32_t ___0_contentLength, const RuntimeMethod* method)
  6923. {
  6924. {
  6925. return;
  6926. }
  6927. }
  6928. // System.Byte* UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)
  6929. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, int32_t* ___1_length, const RuntimeMethod* method)
  6930. {
  6931. typedef uint8_t* (*DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302_ftn) (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*, int32_t*);
  6932. static DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302_ftn _il2cpp_icall_func;
  6933. if (!_il2cpp_icall_func)
  6934. _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)");
  6935. uint8_t* icallRetVal = _il2cpp_icall_func(___0_dh, ___1_length);
  6936. return icallRetVal;
  6937. }
  6938. // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)
  6939. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* DownloadHandler_InternalGetByteArray_m27F42C529228C204142EEF609AD8E96E7FC38CF6 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, const RuntimeMethod* method)
  6940. {
  6941. static bool s_Il2CppMethodInitialized;
  6942. if (!s_Il2CppMethodInitialized)
  6943. {
  6944. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_RuntimeMethod_var);
  6945. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6946. s_Il2CppMethodInitialized = true;
  6947. }
  6948. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  6949. memset((&V_0), 0, sizeof(V_0));
  6950. bool V_1 = false;
  6951. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* V_2 = NULL;
  6952. {
  6953. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  6954. NullCheck(L_0);
  6955. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
  6956. L_1 = VirtualFuncInvoker0< NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF >::Invoke(6 /* Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData() */, L_0);
  6957. V_0 = L_1;
  6958. bool L_2;
  6959. L_2 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&V_0), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6960. V_1 = L_2;
  6961. bool L_3 = V_1;
  6962. if (!L_3)
  6963. {
  6964. goto IL_001d;
  6965. }
  6966. }
  6967. {
  6968. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_4;
  6969. L_4 = NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F((&V_0), NativeArray_1_ToArray_m2E1BCF853BB72AAB8C219A18582F0AB2FA05CF1F_RuntimeMethod_var);
  6970. V_2 = L_4;
  6971. goto IL_0021;
  6972. }
  6973. IL_001d:
  6974. {
  6975. V_2 = (ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031*)NULL;
  6976. goto IL_0021;
  6977. }
  6978. IL_0021:
  6979. {
  6980. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_5 = V_2;
  6981. return L_5;
  6982. }
  6983. }
  6984. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::InternalGetNativeArray(UnityEngine.Networking.DownloadHandler,Unity.Collections.NativeArray`1<System.Byte>&)
  6985. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89 (DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* ___0_dh, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___1_nativeArray, const RuntimeMethod* method)
  6986. {
  6987. static bool s_Il2CppMethodInitialized;
  6988. if (!s_Il2CppMethodInitialized)
  6989. {
  6990. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  6991. s_Il2CppMethodInitialized = true;
  6992. }
  6993. int32_t V_0 = 0;
  6994. uint8_t* V_1 = NULL;
  6995. bool V_2 = false;
  6996. bool V_3 = false;
  6997. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_4;
  6998. memset((&V_4), 0, sizeof(V_4));
  6999. {
  7000. DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB* L_0 = ___0_dh;
  7001. uint8_t* L_1;
  7002. L_1 = DownloadHandler_InternalGetByteArray_m17F536D05E82827A3DB9883C89F3D40102AA0302(L_0, (&V_0), NULL);
  7003. V_1 = L_1;
  7004. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_2 = ___1_nativeArray;
  7005. bool L_3;
  7006. L_3 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_2, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7007. V_2 = L_3;
  7008. bool L_4 = V_2;
  7009. if (!L_4)
  7010. {
  7011. goto IL_0035;
  7012. }
  7013. }
  7014. {
  7015. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_5 = ___1_nativeArray;
  7016. int32_t L_6;
  7017. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH((L_5)->___m_Length_1);
  7018. int32_t L_7 = V_0;
  7019. V_3 = (bool)((((int32_t)L_6) == ((int32_t)L_7))? 1 : 0);
  7020. bool L_8 = V_3;
  7021. if (!L_8)
  7022. {
  7023. goto IL_002d;
  7024. }
  7025. }
  7026. {
  7027. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_9 = ___1_nativeArray;
  7028. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_10 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_9);
  7029. V_4 = L_10;
  7030. goto IL_0048;
  7031. }
  7032. IL_002d:
  7033. {
  7034. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_11 = ___1_nativeArray;
  7035. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_11, NULL);
  7036. }
  7037. IL_0035:
  7038. {
  7039. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_12 = ___1_nativeArray;
  7040. uint8_t* L_13 = V_1;
  7041. int32_t L_14 = V_0;
  7042. DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE(L_12, L_13, L_14, NULL);
  7043. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_15 = ___1_nativeArray;
  7044. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_16 = (*(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_15);
  7045. V_4 = L_16;
  7046. goto IL_0048;
  7047. }
  7048. IL_0048:
  7049. {
  7050. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_17 = V_4;
  7051. return L_17;
  7052. }
  7053. }
  7054. // System.Void UnityEngine.Networking.DownloadHandler::DisposeNativeArray(Unity.Collections.NativeArray`1<System.Byte>&)
  7055. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398 (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, const RuntimeMethod* method)
  7056. {
  7057. static bool s_Il2CppMethodInitialized;
  7058. if (!s_Il2CppMethodInitialized)
  7059. {
  7060. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7061. s_Il2CppMethodInitialized = true;
  7062. }
  7063. bool V_0 = false;
  7064. {
  7065. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  7066. bool L_1;
  7067. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7068. V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  7069. bool L_2 = V_0;
  7070. if (!L_2)
  7071. {
  7072. goto IL_0010;
  7073. }
  7074. }
  7075. {
  7076. goto IL_0017;
  7077. }
  7078. IL_0010:
  7079. {
  7080. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = ___0_data;
  7081. il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  7082. }
  7083. IL_0017:
  7084. {
  7085. return;
  7086. }
  7087. }
  7088. // System.Void UnityEngine.Networking.DownloadHandler::CreateNativeArrayForNativeData(Unity.Collections.NativeArray`1<System.Byte>&,System.Byte*,System.Int32)
  7089. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_CreateNativeArrayForNativeData_m99DFC7963AF038C8C56A5AF0CCD1FB5E21A960DE (NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* ___0_data, uint8_t* ___1_bytes, int32_t ___2_length, const RuntimeMethod* method)
  7090. {
  7091. static bool s_Il2CppMethodInitialized;
  7092. if (!s_Il2CppMethodInitialized)
  7093. {
  7094. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  7095. s_Il2CppMethodInitialized = true;
  7096. }
  7097. {
  7098. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = ___0_data;
  7099. uint8_t* L_1 = ___1_bytes;
  7100. int32_t L_2 = ___2_length;
  7101. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  7102. L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA((void*)L_1, L_2, 4, NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m181D7F12EB826B7D6B73742BFD85A667D533BABA_RuntimeMethod_var);
  7103. *(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF*)L_0 = L_3;
  7104. return;
  7105. }
  7106. }
  7107. #ifdef __clang__
  7108. #pragma clang diagnostic pop
  7109. #endif
  7110. #ifdef __clang__
  7111. #pragma clang diagnostic push
  7112. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7113. #pragma clang diagnostic ignored "-Wunused-variable"
  7114. #endif
  7115. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  7116. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  7117. {
  7118. marshaled.___m_NativeData_1 = unmarshaled.___m_NativeData_1;
  7119. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7120. }
  7121. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  7122. {
  7123. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  7124. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  7125. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData_1;
  7126. unmarshaled.___m_NativeData_1 = unmarshaledm_NativeData_temp_0;
  7127. intptr_t unmarshaledm_Ptr_temp_1;
  7128. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7129. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  7130. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  7131. }
  7132. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  7133. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_pinvoke_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_pinvoke& marshaled)
  7134. {
  7135. }
  7136. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  7137. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  7138. {
  7139. marshaled.___m_NativeData_1 = unmarshaled.___m_NativeData_1;
  7140. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7141. }
  7142. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_back(const DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled, DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974& unmarshaled)
  7143. {
  7144. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_NativeData_temp_0;
  7145. memset((&unmarshaledm_NativeData_temp_0), 0, sizeof(unmarshaledm_NativeData_temp_0));
  7146. unmarshaledm_NativeData_temp_0 = marshaled.___m_NativeData_1;
  7147. unmarshaled.___m_NativeData_1 = unmarshaledm_NativeData_temp_0;
  7148. intptr_t unmarshaledm_Ptr_temp_1;
  7149. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7150. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  7151. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  7152. }
  7153. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  7154. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshal_com_cleanup(DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974_marshaled_com& marshaled)
  7155. {
  7156. }
  7157. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  7158. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* ___0_obj, const RuntimeMethod* method)
  7159. {
  7160. typedef intptr_t (*DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn) (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974*);
  7161. static DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn _il2cpp_icall_func;
  7162. if (!_il2cpp_icall_func)
  7163. _il2cpp_icall_func = (DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)");
  7164. intptr_t icallRetVal = _il2cpp_icall_func(___0_obj);
  7165. return icallRetVal;
  7166. }
  7167. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  7168. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  7169. {
  7170. {
  7171. intptr_t L_0;
  7172. L_0 = DownloadHandlerBuffer_Create_m0CBF0B675220608B4817AEB83B9BEB92DE68B985(__this, NULL);
  7173. ((DownloadHandler_t1B56C7D3F65D97A1E4B566A14A1E783EA8AE4EBB*)__this)->___m_Ptr_0 = L_0;
  7174. return;
  7175. }
  7176. }
  7177. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  7178. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m5EE7C9E8AB468B2B937A7C9C66B4176A884147AF (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  7179. {
  7180. {
  7181. DownloadHandler__ctor_m833275AC5FCAC0BFB4F2D5C1C0C7FD76416CE496(__this, NULL);
  7182. DownloadHandlerBuffer_InternalCreateBuffer_mB2AD693185110CBED1FDA8748627DFC51E40A053(__this, NULL);
  7183. return;
  7184. }
  7185. }
  7186. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandlerBuffer::GetNativeData()
  7187. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF DownloadHandlerBuffer_GetNativeData_m0CA5C7DDC84622499CFED57069526BCDD240C28F (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  7188. {
  7189. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  7190. memset((&V_0), 0, sizeof(V_0));
  7191. {
  7192. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_NativeData_1);
  7193. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_1;
  7194. L_1 = DownloadHandler_InternalGetNativeArray_mE622083BC3893B43BC8E7C467A1895664C3B6B89(__this, L_0, NULL);
  7195. V_0 = L_1;
  7196. goto IL_0010;
  7197. }
  7198. IL_0010:
  7199. {
  7200. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_2 = V_0;
  7201. return L_2;
  7202. }
  7203. }
  7204. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::Dispose()
  7205. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_Dispose_m5B47B0183194D920B76BDC9001C3FE81A73D9D39 (DownloadHandlerBuffer_t34C626F6513FA9A44FDDDEE85455CF2CD9DA5974* __this, const RuntimeMethod* method)
  7206. {
  7207. {
  7208. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_NativeData_1);
  7209. DownloadHandler_DisposeNativeArray_m96514980A0A48921D17C059CAC2CC0CDA27B2398(L_0, NULL);
  7210. DownloadHandler_Dispose_mD5D4CCF0C2DFF1CB57C9B3A0EF4213ECB9F8F607(__this, NULL);
  7211. return;
  7212. }
  7213. }
  7214. #ifdef __clang__
  7215. #pragma clang diagnostic pop
  7216. #endif
  7217. #ifdef __clang__
  7218. #pragma clang diagnostic push
  7219. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7220. #pragma clang diagnostic ignored "-Wunused-variable"
  7221. #endif
  7222. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  7223. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  7224. {
  7225. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7226. }
  7227. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  7228. {
  7229. intptr_t unmarshaledm_Ptr_temp_0;
  7230. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7231. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7232. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7233. }
  7234. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  7235. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_pinvoke_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_pinvoke& marshaled)
  7236. {
  7237. }
  7238. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  7239. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  7240. {
  7241. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7242. }
  7243. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_back(const UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled, UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6& unmarshaled)
  7244. {
  7245. intptr_t unmarshaledm_Ptr_temp_0;
  7246. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7247. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7248. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7249. }
  7250. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  7251. IL2CPP_EXTERN_C void UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshal_com_cleanup(UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6_marshaled_com& marshaled)
  7252. {
  7253. }
  7254. // System.Void UnityEngine.Networking.UploadHandler::Release()
  7255. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7256. {
  7257. typedef void (*UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B_ftn) (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*);
  7258. static UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B_ftn _il2cpp_icall_func;
  7259. if (!_il2cpp_icall_func)
  7260. _il2cpp_icall_func = (UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::Release()");
  7261. _il2cpp_icall_func(__this);
  7262. }
  7263. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  7264. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7265. {
  7266. {
  7267. Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
  7268. return;
  7269. }
  7270. }
  7271. // System.Void UnityEngine.Networking.UploadHandler::Finalize()
  7272. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Finalize_m8769706C9DA361C89C42AEFE2F3F11549AEF4E4A (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7273. {
  7274. {
  7275. }
  7276. {
  7277. auto __finallyBlock = il2cpp::utils::Finally([&]
  7278. {
  7279. FINALLY_000b:
  7280. {// begin finally (depth: 1)
  7281. Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2(__this, NULL);
  7282. return;
  7283. }// end finally (depth: 1)
  7284. });
  7285. try
  7286. {// begin try (depth: 1)
  7287. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::Dispose() */, __this);
  7288. goto IL_0013;
  7289. }// end try (depth: 1)
  7290. catch(Il2CppExceptionWrapper& e)
  7291. {
  7292. __finallyBlock.StoreException(e.ex);
  7293. }
  7294. }
  7295. IL_0013:
  7296. {
  7297. return;
  7298. }
  7299. }
  7300. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  7301. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109 (UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6* __this, const RuntimeMethod* method)
  7302. {
  7303. static bool s_Il2CppMethodInitialized;
  7304. if (!s_Il2CppMethodInitialized)
  7305. {
  7306. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  7307. s_Il2CppMethodInitialized = true;
  7308. }
  7309. bool V_0 = false;
  7310. {
  7311. intptr_t L_0 = __this->___m_Ptr_0;
  7312. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7313. bool L_2;
  7314. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  7315. V_0 = L_2;
  7316. bool L_3 = V_0;
  7317. if (!L_3)
  7318. {
  7319. goto IL_0029;
  7320. }
  7321. }
  7322. {
  7323. UploadHandler_Release_mBCD6EDAAC00B5051FDDE2D9E3395419C2906224B(__this, NULL);
  7324. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7325. __this->___m_Ptr_0 = L_4;
  7326. }
  7327. IL_0029:
  7328. {
  7329. return;
  7330. }
  7331. }
  7332. #ifdef __clang__
  7333. #pragma clang diagnostic pop
  7334. #endif
  7335. #ifdef __clang__
  7336. #pragma clang diagnostic push
  7337. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7338. #pragma clang diagnostic ignored "-Wunused-variable"
  7339. #endif
  7340. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7341. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled)
  7342. {
  7343. marshaled.___m_Payload_1 = unmarshaled.___m_Payload_1;
  7344. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7345. }
  7346. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke_back(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled)
  7347. {
  7348. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Payload_temp_0;
  7349. memset((&unmarshaledm_Payload_temp_0), 0, sizeof(unmarshaledm_Payload_temp_0));
  7350. unmarshaledm_Payload_temp_0 = marshaled.___m_Payload_1;
  7351. unmarshaled.___m_Payload_1 = unmarshaledm_Payload_temp_0;
  7352. intptr_t unmarshaledm_Ptr_temp_1;
  7353. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7354. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  7355. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  7356. }
  7357. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7358. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_pinvoke_cleanup(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_pinvoke& marshaled)
  7359. {
  7360. }
  7361. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7362. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled)
  7363. {
  7364. marshaled.___m_Payload_1 = unmarshaled.___m_Payload_1;
  7365. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7366. }
  7367. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com_back(const UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled, UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A& unmarshaled)
  7368. {
  7369. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF unmarshaledm_Payload_temp_0;
  7370. memset((&unmarshaledm_Payload_temp_0), 0, sizeof(unmarshaledm_Payload_temp_0));
  7371. unmarshaledm_Payload_temp_0 = marshaled.___m_Payload_1;
  7372. unmarshaled.___m_Payload_1 = unmarshaledm_Payload_temp_0;
  7373. intptr_t unmarshaledm_Ptr_temp_1;
  7374. memset((&unmarshaledm_Ptr_temp_1), 0, sizeof(unmarshaledm_Ptr_temp_1));
  7375. unmarshaledm_Ptr_temp_1 = marshaled.___m_Ptr_0;
  7376. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_1;
  7377. }
  7378. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  7379. IL2CPP_EXTERN_C void UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshal_com_cleanup(UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A_marshaled_com& marshaled)
  7380. {
  7381. }
  7382. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)
  7383. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* ___0_self, uint8_t* ___1_data, int32_t ___2_dataLength, const RuntimeMethod* method)
  7384. {
  7385. typedef intptr_t (*UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn) (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A*, uint8_t*, int32_t);
  7386. static UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn _il2cpp_icall_func;
  7387. if (!_il2cpp_icall_func)
  7388. _il2cpp_icall_func = (UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)");
  7389. intptr_t icallRetVal = _il2cpp_icall_func(___0_self, ___1_data, ___2_dataLength);
  7390. return icallRetVal;
  7391. }
  7392. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  7393. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m168C957B67E29CB3072E3542044D37E2F16C42B7 (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_data, const RuntimeMethod* method)
  7394. {
  7395. static bool s_Il2CppMethodInitialized;
  7396. if (!s_Il2CppMethodInitialized)
  7397. {
  7398. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var);
  7399. s_Il2CppMethodInitialized = true;
  7400. }
  7401. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF V_0;
  7402. memset((&V_0), 0, sizeof(V_0));
  7403. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B3_0 = NULL;
  7404. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B1_0 = NULL;
  7405. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B2_0 = NULL;
  7406. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF G_B4_0;
  7407. memset((&G_B4_0), 0, sizeof(G_B4_0));
  7408. UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* G_B4_1 = NULL;
  7409. {
  7410. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_data;
  7411. G_B1_0 = __this;
  7412. if (!L_0)
  7413. {
  7414. G_B3_0 = __this;
  7415. goto IL_0011;
  7416. }
  7417. }
  7418. {
  7419. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_1 = ___0_data;
  7420. NullCheck(L_1);
  7421. G_B2_0 = G_B1_0;
  7422. if (!(((RuntimeArray*)L_1)->max_length))
  7423. {
  7424. G_B3_0 = G_B1_0;
  7425. goto IL_0011;
  7426. }
  7427. }
  7428. {
  7429. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_2 = ___0_data;
  7430. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_3;
  7431. memset((&L_3), 0, sizeof(L_3));
  7432. NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262((&L_3), L_2, 4, /*hidden argument*/NativeArray_1__ctor_m647D47A76DC6BCB65EDACF5DE440431F6E2FE262_RuntimeMethod_var);
  7433. G_B4_0 = L_3;
  7434. G_B4_1 = G_B2_0;
  7435. goto IL_001a;
  7436. }
  7437. IL_0011:
  7438. {
  7439. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF));
  7440. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_4 = V_0;
  7441. G_B4_0 = L_4;
  7442. G_B4_1 = G_B3_0;
  7443. }
  7444. IL_001a:
  7445. {
  7446. UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF(G_B4_1, G_B4_0, (bool)1, NULL);
  7447. return;
  7448. }
  7449. }
  7450. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(Unity.Collections.NativeArray`1<System.Byte>,System.Boolean)
  7451. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mF9F2BAB1D9987051714541669B3D22EC9DBDCFEF (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF ___0_data, bool ___1_transferOwnership, const RuntimeMethod* method)
  7452. {
  7453. static bool s_Il2CppMethodInitialized;
  7454. if (!s_Il2CppMethodInitialized)
  7455. {
  7456. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  7457. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7458. s_Il2CppMethodInitialized = true;
  7459. }
  7460. bool V_0 = false;
  7461. bool V_1 = false;
  7462. int32_t G_B3_0 = 0;
  7463. {
  7464. UploadHandler__ctor_mAA0BE0DDDBC45C053006C27E2AEEA68B3376B1FA(__this, NULL);
  7465. bool L_0;
  7466. L_0 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081((&___0_data), NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7467. if (!L_0)
  7468. {
  7469. goto IL_001e;
  7470. }
  7471. }
  7472. {
  7473. int32_t L_1;
  7474. L_1 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_data))->___m_Length_1);
  7475. G_B3_0 = ((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  7476. goto IL_001f;
  7477. }
  7478. IL_001e:
  7479. {
  7480. G_B3_0 = 1;
  7481. }
  7482. IL_001f:
  7483. {
  7484. V_0 = (bool)G_B3_0;
  7485. bool L_2 = V_0;
  7486. if (!L_2)
  7487. {
  7488. goto IL_0034;
  7489. }
  7490. }
  7491. {
  7492. intptr_t L_3;
  7493. L_3 = UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075(__this, (uint8_t*)((uintptr_t)0), 0, NULL);
  7494. ((UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)__this)->___m_Ptr_0 = L_3;
  7495. goto IL_005b;
  7496. }
  7497. IL_0034:
  7498. {
  7499. bool L_4 = ___1_transferOwnership;
  7500. V_1 = L_4;
  7501. bool L_5 = V_1;
  7502. if (!L_5)
  7503. {
  7504. goto IL_0041;
  7505. }
  7506. }
  7507. {
  7508. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_6 = ___0_data;
  7509. __this->___m_Payload_1 = L_6;
  7510. }
  7511. IL_0041:
  7512. {
  7513. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF L_7 = ___0_data;
  7514. void* L_8;
  7515. L_8 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF(L_7, NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m3DF14FFECC3CE4E179B56AB77F3BCC0FF90E92BF_RuntimeMethod_var);
  7516. int32_t L_9;
  7517. L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((&___0_data))->___m_Length_1);
  7518. intptr_t L_10;
  7519. L_10 = UploadHandlerRaw_Create_m47BC9C3516DF02A1B09B7611D01BEED2B9E74075(__this, (uint8_t*)L_8, L_9, NULL);
  7520. ((UploadHandler_t7E504B1A83346248A0C8C4AF73A893226CB83EF6*)__this)->___m_Ptr_0 = L_10;
  7521. }
  7522. IL_005b:
  7523. {
  7524. return;
  7525. }
  7526. }
  7527. // System.Void UnityEngine.Networking.UploadHandlerRaw::Dispose()
  7528. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw_Dispose_m7BC523C04CD5582382B23AF4FC019149DE328A1B (UploadHandlerRaw_t0A24CF320CDF16F1BC6C5C086DE71A1908CBB91A* __this, const RuntimeMethod* method)
  7529. {
  7530. static bool s_Il2CppMethodInitialized;
  7531. if (!s_Il2CppMethodInitialized)
  7532. {
  7533. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
  7534. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7535. s_Il2CppMethodInitialized = true;
  7536. }
  7537. bool V_0 = false;
  7538. {
  7539. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_0 = (&__this->___m_Payload_1);
  7540. bool L_1;
  7541. L_1 = NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081(L_0, NativeArray_1_get_IsCreated_mD74FCA194584E6EA7916853B62401EB78240A081_RuntimeMethod_var);
  7542. V_0 = L_1;
  7543. bool L_2 = V_0;
  7544. if (!L_2)
  7545. {
  7546. goto IL_001c;
  7547. }
  7548. }
  7549. {
  7550. NativeArray_1_t81F55263465517B73C455D3400CF67B4BADD85CF* L_3 = (&__this->___m_Payload_1);
  7551. NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA(L_3, NativeArray_1_Dispose_m8B0F342847ECB90EB814E1F6AA5BF7DC2F271AEA_RuntimeMethod_var);
  7552. }
  7553. IL_001c:
  7554. {
  7555. UploadHandler_Dispose_mA92AC689361199836EEABE182E13F9759A74D109(__this, NULL);
  7556. return;
  7557. }
  7558. }
  7559. #ifdef __clang__
  7560. #pragma clang diagnostic pop
  7561. #endif
  7562. #ifdef __clang__
  7563. #pragma clang diagnostic push
  7564. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7565. #pragma clang diagnostic ignored "-Wunused-variable"
  7566. #endif
  7567. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  7568. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  7569. {
  7570. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7571. }
  7572. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  7573. {
  7574. intptr_t unmarshaledm_Ptr_temp_0;
  7575. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7576. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7577. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7578. }
  7579. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  7580. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_pinvoke_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_pinvoke& marshaled)
  7581. {
  7582. }
  7583. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  7584. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  7585. {
  7586. marshaled.___m_Ptr_0 = unmarshaled.___m_Ptr_0;
  7587. }
  7588. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_back(const CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled, CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804& unmarshaled)
  7589. {
  7590. intptr_t unmarshaledm_Ptr_temp_0;
  7591. memset((&unmarshaledm_Ptr_temp_0), 0, sizeof(unmarshaledm_Ptr_temp_0));
  7592. unmarshaledm_Ptr_temp_0 = marshaled.___m_Ptr_0;
  7593. unmarshaled.___m_Ptr_0 = unmarshaledm_Ptr_temp_0;
  7594. }
  7595. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  7596. IL2CPP_EXTERN_C void CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshal_com_cleanup(CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804_marshaled_com& marshaled)
  7597. {
  7598. }
  7599. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  7600. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  7601. {
  7602. typedef void (*CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54_ftn) (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804*);
  7603. static CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54_ftn _il2cpp_icall_func;
  7604. if (!_il2cpp_icall_func)
  7605. _il2cpp_icall_func = (CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::Release()");
  7606. _il2cpp_icall_func(__this);
  7607. }
  7608. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[])
  7609. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_m81E194684391CA512FFC7C3A9172B56D6A1E2752 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  7610. {
  7611. bool V_0 = false;
  7612. {
  7613. V_0 = (bool)0;
  7614. goto IL_0005;
  7615. }
  7616. IL_0005:
  7617. {
  7618. bool L_0 = V_0;
  7619. return L_0;
  7620. }
  7621. }
  7622. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificateNative(System.Byte[])
  7623. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_m73467B32D9B40F6897951F71F80CDDA92F5FD785 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___0_certificateData, const RuntimeMethod* method)
  7624. {
  7625. bool V_0 = false;
  7626. {
  7627. ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_0 = ___0_certificateData;
  7628. bool L_1;
  7629. L_1 = VirtualFuncInvoker1< bool, ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* >::Invoke(4 /* System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) */, __this, L_0);
  7630. V_0 = L_1;
  7631. goto IL_000b;
  7632. }
  7633. IL_000b:
  7634. {
  7635. bool L_2 = V_0;
  7636. return L_2;
  7637. }
  7638. }
  7639. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  7640. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_mA33A9B76B93B8DF2FEB665A0AFB1C1E6933CFC43 (CertificateHandler_t148B524FA5DB39F3ABADB181CD420FC505C33804* __this, const RuntimeMethod* method)
  7641. {
  7642. static bool s_Il2CppMethodInitialized;
  7643. if (!s_Il2CppMethodInitialized)
  7644. {
  7645. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  7646. s_Il2CppMethodInitialized = true;
  7647. }
  7648. bool V_0 = false;
  7649. {
  7650. intptr_t L_0 = __this->___m_Ptr_0;
  7651. intptr_t L_1 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7652. bool L_2;
  7653. L_2 = IntPtr_op_Inequality_m90EFC9C4CAD9A33E309F2DDF98EE4E1DD253637B(L_0, L_1, NULL);
  7654. V_0 = L_2;
  7655. bool L_3 = V_0;
  7656. if (!L_3)
  7657. {
  7658. goto IL_0029;
  7659. }
  7660. }
  7661. {
  7662. CertificateHandler_Release_m53BEBE2D49365A90BABE06C0B357FFDD71D51D54(__this, NULL);
  7663. intptr_t L_4 = ((IntPtr_t_StaticFields*)il2cpp_codegen_static_fields_for(IntPtr_t_il2cpp_TypeInfo_var))->___Zero_1;
  7664. __this->___m_Ptr_0 = L_4;
  7665. }
  7666. IL_0029:
  7667. {
  7668. return;
  7669. }
  7670. }
  7671. #ifdef __clang__
  7672. #pragma clang diagnostic pop
  7673. #endif
  7674. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
  7675. {
  7676. {
  7677. int32_t L_0 = __this->____stringLength_4;
  7678. return L_0;
  7679. }
  7680. }
  7681. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m1BF640E233D231F8C0333864C0FE5D9E1DC2E7C6_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7682. {
  7683. {
  7684. bool L_0 = ___0_value;
  7685. __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = L_0;
  7686. return;
  7687. }
  7688. }
  7689. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mFE16234F005357FECF4A45F842D17C0C52B7CA6E_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7690. {
  7691. {
  7692. bool L_0 = ___0_value;
  7693. __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = L_0;
  7694. return;
  7695. }
  7696. }
  7697. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m5EFCAF91A547716C4ACA5FB546E991B79E3D0E2A_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, bool ___0_value, const RuntimeMethod* method)
  7698. {
  7699. {
  7700. bool L_0 = ___0_value;
  7701. __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = L_0;
  7702. return;
  7703. }
  7704. }
  7705. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_mA5E23BB2B931F6EF089C732D0E56E1B7F9FC1C54_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7706. {
  7707. {
  7708. bool L_0 = __this->___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  7709. return L_0;
  7710. }
  7711. }
  7712. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_m909CC9BEACAC26C87F44AA957B8F5E5CD10F5761_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7713. {
  7714. {
  7715. bool L_0 = __this->___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  7716. return L_0;
  7717. }
  7718. }
  7719. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m5BF6519F2982ABA7912948690570F7729EDF25E9_inline (UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* __this, const RuntimeMethod* method)
  7720. {
  7721. {
  7722. bool L_0 = __this->___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  7723. return L_0;
  7724. }
  7725. }
  7726. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mB4B19873C06FD29078CB1E8BF05B0D077F0FF711_inline (UnityWebRequestAsyncOperation_t14BE94558FF3A2CFC2EFBE2511A3A88252042B8C* __this, UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* ___0_value, const RuntimeMethod* method)
  7727. {
  7728. {
  7729. UnityWebRequest_t6233B8E22992FC2364A831C1ACB033EF3260C39F* L_0 = ___0_value;
  7730. __this->___U3CwebRequestU3Ek__BackingField_2 = L_0;
  7731. Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CwebRequestU3Ek__BackingField_2), (void*)L_0);
  7732. return;
  7733. }
  7734. }
  7735. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
  7736. {
  7737. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
  7738. int32_t V_1 = 0;
  7739. {
  7740. int32_t L_0 = (int32_t)__this->____version_3;
  7741. __this->____version_3 = ((int32_t)il2cpp_codegen_add(L_0, 1));
  7742. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)__this->____items_1;
  7743. V_0 = L_1;
  7744. int32_t L_2 = (int32_t)__this->____size_2;
  7745. V_1 = L_2;
  7746. int32_t L_3 = V_1;
  7747. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
  7748. NullCheck(L_4);
  7749. if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
  7750. {
  7751. goto IL_0034;
  7752. }
  7753. }
  7754. {
  7755. int32_t L_5 = V_1;
  7756. __this->____size_2 = ((int32_t)il2cpp_codegen_add(L_5, 1));
  7757. ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
  7758. int32_t L_7 = V_1;
  7759. RuntimeObject* L_8 = ___0_item;
  7760. NullCheck(L_6);
  7761. (L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
  7762. return;
  7763. }
  7764. IL_0034:
  7765. {
  7766. RuntimeObject* L_9 = ___0_item;
  7767. (( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
  7768. return;
  7769. }
  7770. }
  7771. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m4407E4C389F22B8CEC282C15D56516658746C383_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method)
  7772. {
  7773. {
  7774. int32_t L_0 = (int32_t)__this->____size_2;
  7775. return L_0;
  7776. }
  7777. }
  7778. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 Enumerator_get_Current_mE3475384B761E1C7971D3639BD09117FE8363422_gshared_inline (Enumerator_tEA93FE2B778D098F590CA168BEFC4CD85D73A6B9* __this, const RuntimeMethod* method)
  7779. {
  7780. {
  7781. KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_0 = (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)__this->____current_3;
  7782. return L_0;
  7783. }
  7784. }
  7785. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
  7786. {
  7787. {
  7788. RuntimeObject* L_0 = (RuntimeObject*)__this->___key_0;
  7789. return L_0;
  7790. }
  7791. }
  7792. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
  7793. {
  7794. {
  7795. RuntimeObject* L_0 = (RuntimeObject*)__this->___value_1;
  7796. return L_0;
  7797. }
  7798. }