UnityEngine.UnityWebRequestModule.cpp 497 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685
  1. #include "pch-cpp.hpp"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include <limits>
  8. #include <stdint.h>
  9. struct VirtualActionInvoker0
  10. {
  11. typedef void (*Action)(void*, const RuntimeMethod*);
  12. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  13. {
  14. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  15. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  16. }
  17. };
  18. template <typename T1>
  19. struct VirtualActionInvoker1
  20. {
  21. typedef void (*Action)(void*, T1, const RuntimeMethod*);
  22. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  23. {
  24. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  25. ((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
  26. }
  27. };
  28. template <typename T1, typename T2, typename T3>
  29. struct VirtualActionInvoker3
  30. {
  31. typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
  32. static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  33. {
  34. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  35. ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  36. }
  37. };
  38. template <typename R>
  39. struct VirtualFuncInvoker0
  40. {
  41. typedef R (*Func)(void*, const RuntimeMethod*);
  42. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
  43. {
  44. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  45. return ((Func)invokeData.methodPtr)(obj, invokeData.method);
  46. }
  47. };
  48. template <typename R, typename T1>
  49. struct VirtualFuncInvoker1
  50. {
  51. typedef R (*Func)(void*, T1, const RuntimeMethod*);
  52. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
  53. {
  54. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  55. return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
  56. }
  57. };
  58. template <typename R, typename T1, typename T2, typename T3>
  59. struct VirtualFuncInvoker3
  60. {
  61. typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
  62. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
  63. {
  64. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  65. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
  66. }
  67. };
  68. template <typename R, typename T1, typename T2, typename T3, typename T4>
  69. struct VirtualFuncInvoker4
  70. {
  71. typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
  72. static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
  73. {
  74. const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
  75. return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
  76. }
  77. };
  78. struct InterfaceActionInvoker0
  79. {
  80. typedef void (*Action)(void*, const RuntimeMethod*);
  81. static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
  82. {
  83. const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
  84. ((Action)invokeData.methodPtr)(obj, invokeData.method);
  85. }
  86. };
  87. // System.Action`1<UnityEngine.AsyncOperation>
  88. struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31;
  89. // System.Collections.Generic.Dictionary`2<System.Object,System.Object>
  90. struct Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D;
  91. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  92. struct Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5;
  93. // System.Collections.Generic.IEqualityComparer`1<System.String>
  94. struct IEqualityComparer_1_tE6A65C5E45E33FD7D9849FD0914DE3AD32B68050;
  95. // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String>
  96. struct KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D;
  97. // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>
  98. struct LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92;
  99. // System.Collections.Generic.List`1<System.Byte[]>
  100. struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE;
  101. // System.Collections.Generic.List`1<System.Object>
  102. struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
  103. // System.Collections.Generic.List`1<System.String>
  104. struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3;
  105. // System.Threading.Tasks.Task`1<System.Int32>
  106. struct Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725;
  107. // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String>
  108. struct ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81;
  109. // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[]
  110. struct EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510;
  111. // System.Byte[][]
  112. struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D;
  113. // System.Byte[]
  114. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  115. // System.Char[]
  116. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  117. // System.Delegate[]
  118. struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8;
  119. // System.Int32[]
  120. struct Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32;
  121. // System.IntPtr[]
  122. struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6;
  123. // System.Object[]
  124. struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
  125. // System.Diagnostics.StackTrace[]
  126. struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971;
  127. // System.String[]
  128. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
  129. // System.ArgumentException
  130. struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00;
  131. // UnityEngine.AsyncOperation
  132. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86;
  133. // UnityEngine.Networking.CertificateHandler
  134. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E;
  135. // System.Globalization.CodePageDataItem
  136. struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E;
  137. // System.Text.DecoderFallback
  138. struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D;
  139. // System.DelegateData
  140. struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288;
  141. // UnityEngine.Networking.DownloadHandler
  142. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB;
  143. // UnityEngine.Networking.DownloadHandlerBuffer
  144. struct DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D;
  145. // System.Text.EncoderFallback
  146. struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4;
  147. // System.Text.Encoding
  148. struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827;
  149. // System.Text.RegularExpressions.ExclusiveReference
  150. struct ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8;
  151. // System.Collections.Hashtable
  152. struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC;
  153. // System.Collections.IDictionary
  154. struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A;
  155. // System.InvalidOperationException
  156. struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB;
  157. // System.IO.MemoryStream
  158. struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C;
  159. // System.Reflection.MethodInfo
  160. struct MethodInfo_t;
  161. // System.Text.RegularExpressions.Regex
  162. struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F;
  163. // System.Text.RegularExpressions.RegexCode
  164. struct RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5;
  165. // System.Text.RegularExpressions.RegexRunnerFactory
  166. struct RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96;
  167. // System.Runtime.Serialization.SafeSerializationManager
  168. struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F;
  169. // System.Threading.SemaphoreSlim
  170. struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385;
  171. // System.Text.RegularExpressions.SharedReference
  172. struct SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926;
  173. // System.String
  174. struct String_t;
  175. // System.Text.StringBuilder
  176. struct StringBuilder_t;
  177. // UnityEngine.Networking.UnityWebRequest
  178. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E;
  179. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  180. struct UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396;
  181. // UnityEngine.Networking.UploadHandler
  182. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA;
  183. // UnityEngine.Networking.UploadHandlerRaw
  184. struct UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669;
  185. // System.Uri
  186. struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612;
  187. // System.UriParser
  188. struct UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A;
  189. // System.Void
  190. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
  191. // UnityEngine.WWWForm
  192. struct WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB;
  193. // System.IO.Stream/ReadWriteTask
  194. struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974;
  195. // System.Uri/UriInfo
  196. struct UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45;
  197. IL2CPP_EXTERN_C RuntimeClass* ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var;
  198. IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var;
  199. IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var;
  200. IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var;
  201. IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5_il2cpp_TypeInfo_var;
  202. IL2CPP_EXTERN_C RuntimeClass* DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_il2cpp_TypeInfo_var;
  203. IL2CPP_EXTERN_C RuntimeClass* FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var;
  204. IL2CPP_EXTERN_C RuntimeClass* GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var;
  205. IL2CPP_EXTERN_C RuntimeClass* IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var;
  206. IL2CPP_EXTERN_C RuntimeClass* Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var;
  207. IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
  208. IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var;
  209. IL2CPP_EXTERN_C RuntimeClass* List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_il2cpp_TypeInfo_var;
  210. IL2CPP_EXTERN_C RuntimeClass* List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var;
  211. IL2CPP_EXTERN_C RuntimeClass* MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var;
  212. IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var;
  213. IL2CPP_EXTERN_C RuntimeClass* Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var;
  214. IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
  215. IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var;
  216. IL2CPP_EXTERN_C RuntimeClass* UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_il2cpp_TypeInfo_var;
  217. IL2CPP_EXTERN_C RuntimeClass* UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_il2cpp_TypeInfo_var;
  218. IL2CPP_EXTERN_C RuntimeClass* Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var;
  219. IL2CPP_EXTERN_C RuntimeClass* WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var;
  220. IL2CPP_EXTERN_C RuntimeClass* WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var;
  221. IL2CPP_EXTERN_C RuntimeClass* WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var;
  222. IL2CPP_EXTERN_C String_t* _stringLiteral0202811166757AF262261201E48B89F6244FAE6C;
  223. IL2CPP_EXTERN_C String_t* _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708;
  224. IL2CPP_EXTERN_C String_t* _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05;
  225. IL2CPP_EXTERN_C String_t* _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90;
  226. IL2CPP_EXTERN_C String_t* _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE;
  227. IL2CPP_EXTERN_C String_t* _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D;
  228. IL2CPP_EXTERN_C String_t* _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E;
  229. IL2CPP_EXTERN_C String_t* _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA;
  230. IL2CPP_EXTERN_C String_t* _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D;
  231. IL2CPP_EXTERN_C String_t* _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317;
  232. IL2CPP_EXTERN_C String_t* _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86;
  233. IL2CPP_EXTERN_C String_t* _stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5;
  234. IL2CPP_EXTERN_C String_t* _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6;
  235. IL2CPP_EXTERN_C String_t* _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5;
  236. IL2CPP_EXTERN_C String_t* _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA;
  237. IL2CPP_EXTERN_C String_t* _stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02;
  238. IL2CPP_EXTERN_C String_t* _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84;
  239. IL2CPP_EXTERN_C String_t* _stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6;
  240. IL2CPP_EXTERN_C String_t* _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18;
  241. IL2CPP_EXTERN_C String_t* _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571;
  242. IL2CPP_EXTERN_C String_t* _stringLiteral5E56E678035E4A801BA617E16F57410976493BFB;
  243. IL2CPP_EXTERN_C String_t* _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F;
  244. IL2CPP_EXTERN_C String_t* _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA;
  245. IL2CPP_EXTERN_C String_t* _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A;
  246. IL2CPP_EXTERN_C String_t* _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710;
  247. IL2CPP_EXTERN_C String_t* _stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E;
  248. IL2CPP_EXTERN_C String_t* _stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843;
  249. IL2CPP_EXTERN_C String_t* _stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E;
  250. IL2CPP_EXTERN_C String_t* _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15;
  251. IL2CPP_EXTERN_C String_t* _stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1;
  252. IL2CPP_EXTERN_C String_t* _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E;
  253. IL2CPP_EXTERN_C String_t* _stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C;
  254. IL2CPP_EXTERN_C String_t* _stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2;
  255. IL2CPP_EXTERN_C String_t* _stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39;
  256. IL2CPP_EXTERN_C String_t* _stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C;
  257. IL2CPP_EXTERN_C String_t* _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D;
  258. IL2CPP_EXTERN_C String_t* _stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36;
  259. IL2CPP_EXTERN_C String_t* _stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69;
  260. IL2CPP_EXTERN_C String_t* _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536;
  261. IL2CPP_EXTERN_C String_t* _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677;
  262. IL2CPP_EXTERN_C String_t* _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50;
  263. IL2CPP_EXTERN_C String_t* _stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2;
  264. IL2CPP_EXTERN_C String_t* _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF;
  265. IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  266. IL2CPP_EXTERN_C String_t* _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A;
  267. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_GetEnumerator_m99462FD95A811068FBA964A97213B4CA59FF8A31_RuntimeMethod_var;
  268. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mA6747E78BD4DF1D09D9091C1B3EBAE0FDB200666_RuntimeMethod_var;
  269. IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE_RuntimeMethod_var;
  270. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m76E867298698AA2B89F9D57E21CEFCD16B372D22_RuntimeMethod_var;
  271. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mA57D4325DBD9D10EB3E43C99CC18DB6C3CE85FC8_RuntimeMethod_var;
  272. IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m0E89F960CC17EAEBA38A57A632911BB4A6D9EAFF_RuntimeMethod_var;
  273. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Key_m9B9D89C6D4523685BDBB873E3E76754E89171468_RuntimeMethod_var;
  274. IL2CPP_EXTERN_C const RuntimeMethod* KeyValuePair_2_get_Value_m73C2858A70CE1C9A1AEE4134B4E3B136CA4B719F_RuntimeMethod_var;
  275. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var;
  276. IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mDA769E25FD7E7BEF999CC57347B6B5F4E90620F8_RuntimeMethod_var;
  277. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var;
  278. IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mC74F8340E150B8F9520188937677421C55AF5C05_RuntimeMethod_var;
  279. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var;
  280. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var;
  281. IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var;
  282. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_RuntimeMethod_var;
  283. IL2CPP_EXTERN_C const RuntimeMethod* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_RuntimeMethod_var;
  284. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var;
  285. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2_RuntimeMethod_var;
  286. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2_RuntimeMethod_var;
  287. IL2CPP_EXTERN_C const RuntimeMethod* NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var;
  288. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_mD7B421D1B4CCF480EA333CDE465C1C5D588715DA_RuntimeMethod_var;
  289. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB_RuntimeMethod_var;
  290. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_InternalSetUrl_mE850CF14CE4F5EE57063771AC9B0C686C4856F25_RuntimeMethod_var;
  291. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB_RuntimeMethod_var;
  292. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2_RuntimeMethod_var;
  293. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_method_m603E0D94414F046DE2A60E127A715B3303F46AA7_RuntimeMethod_var;
  294. IL2CPP_EXTERN_C const RuntimeMethod* UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA_RuntimeMethod_var;
  295. IL2CPP_EXTERN_C const RuntimeMethod* UploadHandlerRaw__ctor_mB46261D7AA64B605D5CA8FF9027A4A32E57A7BD9_RuntimeMethod_var;
  296. IL2CPP_EXTERN_C const RuntimeMethod* WebRequestUtils_MakeInitialUrl_mD575E2FEAC3685E9030B528769BFAC7CE0534290_RuntimeMethod_var;
  297. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E;;
  298. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com;
  299. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com;;
  300. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke;
  301. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke;;
  302. struct Delegate_t_marshaled_com;
  303. struct Delegate_t_marshaled_pinvoke;
  304. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB;;
  305. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com;
  306. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com;;
  307. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke;
  308. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke;;
  309. struct Exception_t_marshaled_com;
  310. struct Exception_t_marshaled_pinvoke;
  311. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E;;
  312. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com;
  313. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com;;
  314. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke;
  315. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke;;
  316. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA;;
  317. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com;
  318. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com;;
  319. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke;
  320. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke;;
  321. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726;
  322. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
  323. struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
  324. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A;
  325. IL2CPP_EXTERN_C_BEGIN
  326. IL2CPP_EXTERN_C_END
  327. #ifdef __clang__
  328. #pragma clang diagnostic push
  329. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  330. #pragma clang diagnostic ignored "-Wunused-variable"
  331. #endif
  332. // <Module>
  333. struct U3CModuleU3E_tC81EA6223B5DC14CA590D1BADEDD82F8EB8B39EF
  334. {
  335. public:
  336. public:
  337. };
  338. // System.Object
  339. // System.Collections.Generic.Dictionary`2<System.String,System.String>
  340. struct Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 : public RuntimeObject
  341. {
  342. public:
  343. // System.Int32[] System.Collections.Generic.Dictionary`2::buckets
  344. Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* ___buckets_0;
  345. // System.Collections.Generic.Dictionary`2/Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
  346. EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510* ___entries_1;
  347. // System.Int32 System.Collections.Generic.Dictionary`2::count
  348. int32_t ___count_2;
  349. // System.Int32 System.Collections.Generic.Dictionary`2::version
  350. int32_t ___version_3;
  351. // System.Int32 System.Collections.Generic.Dictionary`2::freeList
  352. int32_t ___freeList_4;
  353. // System.Int32 System.Collections.Generic.Dictionary`2::freeCount
  354. int32_t ___freeCount_5;
  355. // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
  356. RuntimeObject* ___comparer_6;
  357. // System.Collections.Generic.Dictionary`2/KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
  358. KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D * ___keys_7;
  359. // System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
  360. ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 * ___values_8;
  361. // System.Object System.Collections.Generic.Dictionary`2::_syncRoot
  362. RuntimeObject * ____syncRoot_9;
  363. public:
  364. inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___buckets_0)); }
  365. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* get_buckets_0() const { return ___buckets_0; }
  366. inline Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32** get_address_of_buckets_0() { return &___buckets_0; }
  367. inline void set_buckets_0(Int32U5BU5D_t70F1BDC14B1786481B176D6139A5E3B87DC54C32* value)
  368. {
  369. ___buckets_0 = value;
  370. Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
  371. }
  372. inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___entries_1)); }
  373. inline EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510* get_entries_1() const { return ___entries_1; }
  374. inline EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510** get_address_of_entries_1() { return &___entries_1; }
  375. inline void set_entries_1(EntryU5BU5D_t52A654EA9927D1B5F56CA05CF209F2E4393C4510* value)
  376. {
  377. ___entries_1 = value;
  378. Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
  379. }
  380. inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___count_2)); }
  381. inline int32_t get_count_2() const { return ___count_2; }
  382. inline int32_t* get_address_of_count_2() { return &___count_2; }
  383. inline void set_count_2(int32_t value)
  384. {
  385. ___count_2 = value;
  386. }
  387. inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___version_3)); }
  388. inline int32_t get_version_3() const { return ___version_3; }
  389. inline int32_t* get_address_of_version_3() { return &___version_3; }
  390. inline void set_version_3(int32_t value)
  391. {
  392. ___version_3 = value;
  393. }
  394. inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___freeList_4)); }
  395. inline int32_t get_freeList_4() const { return ___freeList_4; }
  396. inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
  397. inline void set_freeList_4(int32_t value)
  398. {
  399. ___freeList_4 = value;
  400. }
  401. inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___freeCount_5)); }
  402. inline int32_t get_freeCount_5() const { return ___freeCount_5; }
  403. inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
  404. inline void set_freeCount_5(int32_t value)
  405. {
  406. ___freeCount_5 = value;
  407. }
  408. inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___comparer_6)); }
  409. inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
  410. inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
  411. inline void set_comparer_6(RuntimeObject* value)
  412. {
  413. ___comparer_6 = value;
  414. Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
  415. }
  416. inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___keys_7)); }
  417. inline KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D * get_keys_7() const { return ___keys_7; }
  418. inline KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D ** get_address_of_keys_7() { return &___keys_7; }
  419. inline void set_keys_7(KeyCollection_t52C81163A051BCD87A36FEF95F736DD600E2305D * value)
  420. {
  421. ___keys_7 = value;
  422. Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
  423. }
  424. inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ___values_8)); }
  425. inline ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 * get_values_8() const { return ___values_8; }
  426. inline ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 ** get_address_of_values_8() { return &___values_8; }
  427. inline void set_values_8(ValueCollection_t9161A5C97376D261665798FA27DAFD5177305C81 * value)
  428. {
  429. ___values_8 = value;
  430. Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
  431. }
  432. inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5, ____syncRoot_9)); }
  433. inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
  434. inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
  435. inline void set__syncRoot_9(RuntimeObject * value)
  436. {
  437. ____syncRoot_9 = value;
  438. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
  439. }
  440. };
  441. // System.Collections.Generic.List`1<System.Byte[]>
  442. struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE : public RuntimeObject
  443. {
  444. public:
  445. // T[] System.Collections.Generic.List`1::_items
  446. ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* ____items_1;
  447. // System.Int32 System.Collections.Generic.List`1::_size
  448. int32_t ____size_2;
  449. // System.Int32 System.Collections.Generic.List`1::_version
  450. int32_t ____version_3;
  451. // System.Object System.Collections.Generic.List`1::_syncRoot
  452. RuntimeObject * ____syncRoot_4;
  453. public:
  454. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____items_1)); }
  455. inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* get__items_1() const { return ____items_1; }
  456. inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D** get_address_of__items_1() { return &____items_1; }
  457. inline void set__items_1(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* value)
  458. {
  459. ____items_1 = value;
  460. Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
  461. }
  462. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____size_2)); }
  463. inline int32_t get__size_2() const { return ____size_2; }
  464. inline int32_t* get_address_of__size_2() { return &____size_2; }
  465. inline void set__size_2(int32_t value)
  466. {
  467. ____size_2 = value;
  468. }
  469. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____version_3)); }
  470. inline int32_t get__version_3() const { return ____version_3; }
  471. inline int32_t* get_address_of__version_3() { return &____version_3; }
  472. inline void set__version_3(int32_t value)
  473. {
  474. ____version_3 = value;
  475. }
  476. inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE, ____syncRoot_4)); }
  477. inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
  478. inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
  479. inline void set__syncRoot_4(RuntimeObject * value)
  480. {
  481. ____syncRoot_4 = value;
  482. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
  483. }
  484. };
  485. struct List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_StaticFields
  486. {
  487. public:
  488. // T[] System.Collections.Generic.List`1::_emptyArray
  489. ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* ____emptyArray_5;
  490. public:
  491. inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_StaticFields, ____emptyArray_5)); }
  492. inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* get__emptyArray_5() const { return ____emptyArray_5; }
  493. inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D** get_address_of__emptyArray_5() { return &____emptyArray_5; }
  494. inline void set__emptyArray_5(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* value)
  495. {
  496. ____emptyArray_5 = value;
  497. Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
  498. }
  499. };
  500. // System.Collections.Generic.List`1<System.Object>
  501. struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject
  502. {
  503. public:
  504. // T[] System.Collections.Generic.List`1::_items
  505. ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____items_1;
  506. // System.Int32 System.Collections.Generic.List`1::_size
  507. int32_t ____size_2;
  508. // System.Int32 System.Collections.Generic.List`1::_version
  509. int32_t ____version_3;
  510. // System.Object System.Collections.Generic.List`1::_syncRoot
  511. RuntimeObject * ____syncRoot_4;
  512. public:
  513. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); }
  514. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; }
  515. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; }
  516. inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
  517. {
  518. ____items_1 = value;
  519. Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
  520. }
  521. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); }
  522. inline int32_t get__size_2() const { return ____size_2; }
  523. inline int32_t* get_address_of__size_2() { return &____size_2; }
  524. inline void set__size_2(int32_t value)
  525. {
  526. ____size_2 = value;
  527. }
  528. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); }
  529. inline int32_t get__version_3() const { return ____version_3; }
  530. inline int32_t* get_address_of__version_3() { return &____version_3; }
  531. inline void set__version_3(int32_t value)
  532. {
  533. ____version_3 = value;
  534. }
  535. inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); }
  536. inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
  537. inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
  538. inline void set__syncRoot_4(RuntimeObject * value)
  539. {
  540. ____syncRoot_4 = value;
  541. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
  542. }
  543. };
  544. struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields
  545. {
  546. public:
  547. // T[] System.Collections.Generic.List`1::_emptyArray
  548. ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5;
  549. public:
  550. inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); }
  551. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; }
  552. inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; }
  553. inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value)
  554. {
  555. ____emptyArray_5 = value;
  556. Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
  557. }
  558. };
  559. // System.Collections.Generic.List`1<System.String>
  560. struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject
  561. {
  562. public:
  563. // T[] System.Collections.Generic.List`1::_items
  564. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____items_1;
  565. // System.Int32 System.Collections.Generic.List`1::_size
  566. int32_t ____size_2;
  567. // System.Int32 System.Collections.Generic.List`1::_version
  568. int32_t ____version_3;
  569. // System.Object System.Collections.Generic.List`1::_syncRoot
  570. RuntimeObject * ____syncRoot_4;
  571. public:
  572. inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); }
  573. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; }
  574. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; }
  575. inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
  576. {
  577. ____items_1 = value;
  578. Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
  579. }
  580. inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); }
  581. inline int32_t get__size_2() const { return ____size_2; }
  582. inline int32_t* get_address_of__size_2() { return &____size_2; }
  583. inline void set__size_2(int32_t value)
  584. {
  585. ____size_2 = value;
  586. }
  587. inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); }
  588. inline int32_t get__version_3() const { return ____version_3; }
  589. inline int32_t* get_address_of__version_3() { return &____version_3; }
  590. inline void set__version_3(int32_t value)
  591. {
  592. ____version_3 = value;
  593. }
  594. inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); }
  595. inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
  596. inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
  597. inline void set__syncRoot_4(RuntimeObject * value)
  598. {
  599. ____syncRoot_4 = value;
  600. Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
  601. }
  602. };
  603. struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields
  604. {
  605. public:
  606. // T[] System.Collections.Generic.List`1::_emptyArray
  607. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5;
  608. public:
  609. inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); }
  610. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; }
  611. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
  612. inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
  613. {
  614. ____emptyArray_5 = value;
  615. Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
  616. }
  617. };
  618. struct Il2CppArrayBounds;
  619. // System.Array
  620. // System.Text.Encoding
  621. struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject
  622. {
  623. public:
  624. // System.Int32 System.Text.Encoding::m_codePage
  625. int32_t ___m_codePage_55;
  626. // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem
  627. CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_56;
  628. // System.Boolean System.Text.Encoding::m_deserializedFromEverett
  629. bool ___m_deserializedFromEverett_57;
  630. // System.Boolean System.Text.Encoding::m_isReadOnly
  631. bool ___m_isReadOnly_58;
  632. // System.Text.EncoderFallback System.Text.Encoding::encoderFallback
  633. EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_59;
  634. // System.Text.DecoderFallback System.Text.Encoding::decoderFallback
  635. DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_60;
  636. public:
  637. inline static int32_t get_offset_of_m_codePage_55() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_55)); }
  638. inline int32_t get_m_codePage_55() const { return ___m_codePage_55; }
  639. inline int32_t* get_address_of_m_codePage_55() { return &___m_codePage_55; }
  640. inline void set_m_codePage_55(int32_t value)
  641. {
  642. ___m_codePage_55 = value;
  643. }
  644. inline static int32_t get_offset_of_dataItem_56() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_56)); }
  645. inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_56() const { return ___dataItem_56; }
  646. inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_56() { return &___dataItem_56; }
  647. inline void set_dataItem_56(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value)
  648. {
  649. ___dataItem_56 = value;
  650. Il2CppCodeGenWriteBarrier((void**)(&___dataItem_56), (void*)value);
  651. }
  652. inline static int32_t get_offset_of_m_deserializedFromEverett_57() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_57)); }
  653. inline bool get_m_deserializedFromEverett_57() const { return ___m_deserializedFromEverett_57; }
  654. inline bool* get_address_of_m_deserializedFromEverett_57() { return &___m_deserializedFromEverett_57; }
  655. inline void set_m_deserializedFromEverett_57(bool value)
  656. {
  657. ___m_deserializedFromEverett_57 = value;
  658. }
  659. inline static int32_t get_offset_of_m_isReadOnly_58() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_58)); }
  660. inline bool get_m_isReadOnly_58() const { return ___m_isReadOnly_58; }
  661. inline bool* get_address_of_m_isReadOnly_58() { return &___m_isReadOnly_58; }
  662. inline void set_m_isReadOnly_58(bool value)
  663. {
  664. ___m_isReadOnly_58 = value;
  665. }
  666. inline static int32_t get_offset_of_encoderFallback_59() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_59)); }
  667. inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_59() const { return ___encoderFallback_59; }
  668. inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_59() { return &___encoderFallback_59; }
  669. inline void set_encoderFallback_59(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value)
  670. {
  671. ___encoderFallback_59 = value;
  672. Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_59), (void*)value);
  673. }
  674. inline static int32_t get_offset_of_decoderFallback_60() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_60)); }
  675. inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_60() const { return ___decoderFallback_60; }
  676. inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_60() { return &___decoderFallback_60; }
  677. inline void set_decoderFallback_60(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value)
  678. {
  679. ___decoderFallback_60 = value;
  680. Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_60), (void*)value);
  681. }
  682. };
  683. struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields
  684. {
  685. public:
  686. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding
  687. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0;
  688. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding
  689. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1;
  690. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode
  691. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2;
  692. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding
  693. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3;
  694. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding
  695. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4;
  696. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding
  697. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5;
  698. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding
  699. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6;
  700. // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding
  701. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7;
  702. // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings
  703. Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8;
  704. // System.Object System.Text.Encoding::s_InternalSyncObject
  705. RuntimeObject * ___s_InternalSyncObject_61;
  706. public:
  707. inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); }
  708. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; }
  709. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; }
  710. inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  711. {
  712. ___defaultEncoding_0 = value;
  713. Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value);
  714. }
  715. inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); }
  716. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; }
  717. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; }
  718. inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  719. {
  720. ___unicodeEncoding_1 = value;
  721. Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value);
  722. }
  723. inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); }
  724. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; }
  725. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; }
  726. inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  727. {
  728. ___bigEndianUnicode_2 = value;
  729. Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value);
  730. }
  731. inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); }
  732. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; }
  733. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; }
  734. inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  735. {
  736. ___utf7Encoding_3 = value;
  737. Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value);
  738. }
  739. inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); }
  740. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; }
  741. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; }
  742. inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  743. {
  744. ___utf8Encoding_4 = value;
  745. Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value);
  746. }
  747. inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); }
  748. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; }
  749. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; }
  750. inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  751. {
  752. ___utf32Encoding_5 = value;
  753. Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value);
  754. }
  755. inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); }
  756. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; }
  757. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; }
  758. inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  759. {
  760. ___asciiEncoding_6 = value;
  761. Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value);
  762. }
  763. inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); }
  764. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; }
  765. inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; }
  766. inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value)
  767. {
  768. ___latin1Encoding_7 = value;
  769. Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value);
  770. }
  771. inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); }
  772. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; }
  773. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; }
  774. inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
  775. {
  776. ___encodings_8 = value;
  777. Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value);
  778. }
  779. inline static int32_t get_offset_of_s_InternalSyncObject_61() { return static_cast<int32_t>(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_61)); }
  780. inline RuntimeObject * get_s_InternalSyncObject_61() const { return ___s_InternalSyncObject_61; }
  781. inline RuntimeObject ** get_address_of_s_InternalSyncObject_61() { return &___s_InternalSyncObject_61; }
  782. inline void set_s_InternalSyncObject_61(RuntimeObject * value)
  783. {
  784. ___s_InternalSyncObject_61 = value;
  785. Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_61), (void*)value);
  786. }
  787. };
  788. // System.MarshalByRefObject
  789. struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject
  790. {
  791. public:
  792. // System.Object System.MarshalByRefObject::_identity
  793. RuntimeObject * ____identity_0;
  794. public:
  795. inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); }
  796. inline RuntimeObject * get__identity_0() const { return ____identity_0; }
  797. inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
  798. inline void set__identity_0(RuntimeObject * value)
  799. {
  800. ____identity_0 = value;
  801. Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
  802. }
  803. };
  804. // Native definition for P/Invoke marshalling of System.MarshalByRefObject
  805. struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke
  806. {
  807. Il2CppIUnknown* ____identity_0;
  808. };
  809. // Native definition for COM marshalling of System.MarshalByRefObject
  810. struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com
  811. {
  812. Il2CppIUnknown* ____identity_0;
  813. };
  814. // System.String
  815. struct String_t : public RuntimeObject
  816. {
  817. public:
  818. // System.Int32 System.String::m_stringLength
  819. int32_t ___m_stringLength_0;
  820. // System.Char System.String::m_firstChar
  821. Il2CppChar ___m_firstChar_1;
  822. public:
  823. inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
  824. inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
  825. inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
  826. inline void set_m_stringLength_0(int32_t value)
  827. {
  828. ___m_stringLength_0 = value;
  829. }
  830. inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
  831. inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
  832. inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
  833. inline void set_m_firstChar_1(Il2CppChar value)
  834. {
  835. ___m_firstChar_1 = value;
  836. }
  837. };
  838. struct String_t_StaticFields
  839. {
  840. public:
  841. // System.String System.String::Empty
  842. String_t* ___Empty_5;
  843. public:
  844. inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
  845. inline String_t* get_Empty_5() const { return ___Empty_5; }
  846. inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
  847. inline void set_Empty_5(String_t* value)
  848. {
  849. ___Empty_5 = value;
  850. Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
  851. }
  852. };
  853. // System.Text.StringBuilder
  854. struct StringBuilder_t : public RuntimeObject
  855. {
  856. public:
  857. // System.Char[] System.Text.StringBuilder::m_ChunkChars
  858. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0;
  859. // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
  860. StringBuilder_t * ___m_ChunkPrevious_1;
  861. // System.Int32 System.Text.StringBuilder::m_ChunkLength
  862. int32_t ___m_ChunkLength_2;
  863. // System.Int32 System.Text.StringBuilder::m_ChunkOffset
  864. int32_t ___m_ChunkOffset_3;
  865. // System.Int32 System.Text.StringBuilder::m_MaxCapacity
  866. int32_t ___m_MaxCapacity_4;
  867. public:
  868. inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
  869. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
  870. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
  871. inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  872. {
  873. ___m_ChunkChars_0 = value;
  874. Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
  875. }
  876. inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
  877. inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
  878. inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
  879. inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
  880. {
  881. ___m_ChunkPrevious_1 = value;
  882. Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
  883. }
  884. inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
  885. inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
  886. inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
  887. inline void set_m_ChunkLength_2(int32_t value)
  888. {
  889. ___m_ChunkLength_2 = value;
  890. }
  891. inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
  892. inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
  893. inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
  894. inline void set_m_ChunkOffset_3(int32_t value)
  895. {
  896. ___m_ChunkOffset_3 = value;
  897. }
  898. inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
  899. inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
  900. inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
  901. inline void set_m_MaxCapacity_4(int32_t value)
  902. {
  903. ___m_MaxCapacity_4 = value;
  904. }
  905. };
  906. // System.ValueType
  907. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
  908. {
  909. public:
  910. public:
  911. };
  912. // Native definition for P/Invoke marshalling of System.ValueType
  913. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
  914. {
  915. };
  916. // Native definition for COM marshalling of System.ValueType
  917. struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
  918. {
  919. };
  920. // UnityEngine.WWWForm
  921. struct WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB : public RuntimeObject
  922. {
  923. public:
  924. // System.Collections.Generic.List`1<System.Byte[]> UnityEngine.WWWForm::formData
  925. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * ___formData_0;
  926. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fieldNames
  927. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___fieldNames_1;
  928. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fileNames
  929. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___fileNames_2;
  930. // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::types
  931. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___types_3;
  932. // System.Byte[] UnityEngine.WWWForm::boundary
  933. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___boundary_4;
  934. // System.Boolean UnityEngine.WWWForm::containsFiles
  935. bool ___containsFiles_5;
  936. public:
  937. inline static int32_t get_offset_of_formData_0() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___formData_0)); }
  938. inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * get_formData_0() const { return ___formData_0; }
  939. inline List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE ** get_address_of_formData_0() { return &___formData_0; }
  940. inline void set_formData_0(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * value)
  941. {
  942. ___formData_0 = value;
  943. Il2CppCodeGenWriteBarrier((void**)(&___formData_0), (void*)value);
  944. }
  945. inline static int32_t get_offset_of_fieldNames_1() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___fieldNames_1)); }
  946. inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_fieldNames_1() const { return ___fieldNames_1; }
  947. inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_fieldNames_1() { return &___fieldNames_1; }
  948. inline void set_fieldNames_1(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
  949. {
  950. ___fieldNames_1 = value;
  951. Il2CppCodeGenWriteBarrier((void**)(&___fieldNames_1), (void*)value);
  952. }
  953. inline static int32_t get_offset_of_fileNames_2() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___fileNames_2)); }
  954. inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_fileNames_2() const { return ___fileNames_2; }
  955. inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_fileNames_2() { return &___fileNames_2; }
  956. inline void set_fileNames_2(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
  957. {
  958. ___fileNames_2 = value;
  959. Il2CppCodeGenWriteBarrier((void**)(&___fileNames_2), (void*)value);
  960. }
  961. inline static int32_t get_offset_of_types_3() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___types_3)); }
  962. inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_types_3() const { return ___types_3; }
  963. inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_types_3() { return &___types_3; }
  964. inline void set_types_3(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value)
  965. {
  966. ___types_3 = value;
  967. Il2CppCodeGenWriteBarrier((void**)(&___types_3), (void*)value);
  968. }
  969. inline static int32_t get_offset_of_boundary_4() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___boundary_4)); }
  970. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_boundary_4() const { return ___boundary_4; }
  971. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_boundary_4() { return &___boundary_4; }
  972. inline void set_boundary_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  973. {
  974. ___boundary_4 = value;
  975. Il2CppCodeGenWriteBarrier((void**)(&___boundary_4), (void*)value);
  976. }
  977. inline static int32_t get_offset_of_containsFiles_5() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB, ___containsFiles_5)); }
  978. inline bool get_containsFiles_5() const { return ___containsFiles_5; }
  979. inline bool* get_address_of_containsFiles_5() { return &___containsFiles_5; }
  980. inline void set_containsFiles_5(bool value)
  981. {
  982. ___containsFiles_5 = value;
  983. }
  984. };
  985. struct WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields
  986. {
  987. public:
  988. // System.Byte[] UnityEngine.WWWForm::dDash
  989. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dDash_6;
  990. // System.Byte[] UnityEngine.WWWForm::crlf
  991. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___crlf_7;
  992. // System.Byte[] UnityEngine.WWWForm::contentTypeHeader
  993. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___contentTypeHeader_8;
  994. // System.Byte[] UnityEngine.WWWForm::dispositionHeader
  995. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dispositionHeader_9;
  996. // System.Byte[] UnityEngine.WWWForm::endQuote
  997. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___endQuote_10;
  998. // System.Byte[] UnityEngine.WWWForm::fileNameField
  999. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___fileNameField_11;
  1000. // System.Byte[] UnityEngine.WWWForm::ampersand
  1001. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ampersand_12;
  1002. // System.Byte[] UnityEngine.WWWForm::equal
  1003. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___equal_13;
  1004. public:
  1005. inline static int32_t get_offset_of_dDash_6() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___dDash_6)); }
  1006. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_dDash_6() const { return ___dDash_6; }
  1007. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_dDash_6() { return &___dDash_6; }
  1008. inline void set_dDash_6(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1009. {
  1010. ___dDash_6 = value;
  1011. Il2CppCodeGenWriteBarrier((void**)(&___dDash_6), (void*)value);
  1012. }
  1013. inline static int32_t get_offset_of_crlf_7() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___crlf_7)); }
  1014. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_crlf_7() const { return ___crlf_7; }
  1015. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_crlf_7() { return &___crlf_7; }
  1016. inline void set_crlf_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1017. {
  1018. ___crlf_7 = value;
  1019. Il2CppCodeGenWriteBarrier((void**)(&___crlf_7), (void*)value);
  1020. }
  1021. inline static int32_t get_offset_of_contentTypeHeader_8() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___contentTypeHeader_8)); }
  1022. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_contentTypeHeader_8() const { return ___contentTypeHeader_8; }
  1023. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_contentTypeHeader_8() { return &___contentTypeHeader_8; }
  1024. inline void set_contentTypeHeader_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1025. {
  1026. ___contentTypeHeader_8 = value;
  1027. Il2CppCodeGenWriteBarrier((void**)(&___contentTypeHeader_8), (void*)value);
  1028. }
  1029. inline static int32_t get_offset_of_dispositionHeader_9() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___dispositionHeader_9)); }
  1030. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_dispositionHeader_9() const { return ___dispositionHeader_9; }
  1031. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_dispositionHeader_9() { return &___dispositionHeader_9; }
  1032. inline void set_dispositionHeader_9(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1033. {
  1034. ___dispositionHeader_9 = value;
  1035. Il2CppCodeGenWriteBarrier((void**)(&___dispositionHeader_9), (void*)value);
  1036. }
  1037. inline static int32_t get_offset_of_endQuote_10() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___endQuote_10)); }
  1038. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_endQuote_10() const { return ___endQuote_10; }
  1039. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_endQuote_10() { return &___endQuote_10; }
  1040. inline void set_endQuote_10(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1041. {
  1042. ___endQuote_10 = value;
  1043. Il2CppCodeGenWriteBarrier((void**)(&___endQuote_10), (void*)value);
  1044. }
  1045. inline static int32_t get_offset_of_fileNameField_11() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___fileNameField_11)); }
  1046. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_fileNameField_11() const { return ___fileNameField_11; }
  1047. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_fileNameField_11() { return &___fileNameField_11; }
  1048. inline void set_fileNameField_11(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1049. {
  1050. ___fileNameField_11 = value;
  1051. Il2CppCodeGenWriteBarrier((void**)(&___fileNameField_11), (void*)value);
  1052. }
  1053. inline static int32_t get_offset_of_ampersand_12() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___ampersand_12)); }
  1054. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ampersand_12() const { return ___ampersand_12; }
  1055. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ampersand_12() { return &___ampersand_12; }
  1056. inline void set_ampersand_12(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1057. {
  1058. ___ampersand_12 = value;
  1059. Il2CppCodeGenWriteBarrier((void**)(&___ampersand_12), (void*)value);
  1060. }
  1061. inline static int32_t get_offset_of_equal_13() { return static_cast<int32_t>(offsetof(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields, ___equal_13)); }
  1062. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_equal_13() const { return ___equal_13; }
  1063. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_equal_13() { return &___equal_13; }
  1064. inline void set_equal_13(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1065. {
  1066. ___equal_13 = value;
  1067. Il2CppCodeGenWriteBarrier((void**)(&___equal_13), (void*)value);
  1068. }
  1069. };
  1070. // UnityEngine.WWWTranscoder
  1071. struct WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771 : public RuntimeObject
  1072. {
  1073. public:
  1074. public:
  1075. };
  1076. struct WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields
  1077. {
  1078. public:
  1079. // System.Byte[] UnityEngine.WWWTranscoder::ucHexChars
  1080. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ucHexChars_0;
  1081. // System.Byte[] UnityEngine.WWWTranscoder::lcHexChars
  1082. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___lcHexChars_1;
  1083. // System.Byte UnityEngine.WWWTranscoder::urlEscapeChar
  1084. uint8_t ___urlEscapeChar_2;
  1085. // System.Byte[] UnityEngine.WWWTranscoder::urlSpace
  1086. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___urlSpace_3;
  1087. // System.Byte[] UnityEngine.WWWTranscoder::dataSpace
  1088. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___dataSpace_4;
  1089. // System.Byte[] UnityEngine.WWWTranscoder::urlForbidden
  1090. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___urlForbidden_5;
  1091. // System.Byte UnityEngine.WWWTranscoder::qpEscapeChar
  1092. uint8_t ___qpEscapeChar_6;
  1093. // System.Byte[] UnityEngine.WWWTranscoder::qpSpace
  1094. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___qpSpace_7;
  1095. // System.Byte[] UnityEngine.WWWTranscoder::qpForbidden
  1096. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___qpForbidden_8;
  1097. public:
  1098. inline static int32_t get_offset_of_ucHexChars_0() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___ucHexChars_0)); }
  1099. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ucHexChars_0() const { return ___ucHexChars_0; }
  1100. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ucHexChars_0() { return &___ucHexChars_0; }
  1101. inline void set_ucHexChars_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1102. {
  1103. ___ucHexChars_0 = value;
  1104. Il2CppCodeGenWriteBarrier((void**)(&___ucHexChars_0), (void*)value);
  1105. }
  1106. inline static int32_t get_offset_of_lcHexChars_1() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___lcHexChars_1)); }
  1107. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_lcHexChars_1() const { return ___lcHexChars_1; }
  1108. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_lcHexChars_1() { return &___lcHexChars_1; }
  1109. inline void set_lcHexChars_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1110. {
  1111. ___lcHexChars_1 = value;
  1112. Il2CppCodeGenWriteBarrier((void**)(&___lcHexChars_1), (void*)value);
  1113. }
  1114. inline static int32_t get_offset_of_urlEscapeChar_2() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___urlEscapeChar_2)); }
  1115. inline uint8_t get_urlEscapeChar_2() const { return ___urlEscapeChar_2; }
  1116. inline uint8_t* get_address_of_urlEscapeChar_2() { return &___urlEscapeChar_2; }
  1117. inline void set_urlEscapeChar_2(uint8_t value)
  1118. {
  1119. ___urlEscapeChar_2 = value;
  1120. }
  1121. inline static int32_t get_offset_of_urlSpace_3() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___urlSpace_3)); }
  1122. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_urlSpace_3() const { return ___urlSpace_3; }
  1123. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_urlSpace_3() { return &___urlSpace_3; }
  1124. inline void set_urlSpace_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1125. {
  1126. ___urlSpace_3 = value;
  1127. Il2CppCodeGenWriteBarrier((void**)(&___urlSpace_3), (void*)value);
  1128. }
  1129. inline static int32_t get_offset_of_dataSpace_4() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___dataSpace_4)); }
  1130. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_dataSpace_4() const { return ___dataSpace_4; }
  1131. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_dataSpace_4() { return &___dataSpace_4; }
  1132. inline void set_dataSpace_4(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1133. {
  1134. ___dataSpace_4 = value;
  1135. Il2CppCodeGenWriteBarrier((void**)(&___dataSpace_4), (void*)value);
  1136. }
  1137. inline static int32_t get_offset_of_urlForbidden_5() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___urlForbidden_5)); }
  1138. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_urlForbidden_5() const { return ___urlForbidden_5; }
  1139. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_urlForbidden_5() { return &___urlForbidden_5; }
  1140. inline void set_urlForbidden_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1141. {
  1142. ___urlForbidden_5 = value;
  1143. Il2CppCodeGenWriteBarrier((void**)(&___urlForbidden_5), (void*)value);
  1144. }
  1145. inline static int32_t get_offset_of_qpEscapeChar_6() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___qpEscapeChar_6)); }
  1146. inline uint8_t get_qpEscapeChar_6() const { return ___qpEscapeChar_6; }
  1147. inline uint8_t* get_address_of_qpEscapeChar_6() { return &___qpEscapeChar_6; }
  1148. inline void set_qpEscapeChar_6(uint8_t value)
  1149. {
  1150. ___qpEscapeChar_6 = value;
  1151. }
  1152. inline static int32_t get_offset_of_qpSpace_7() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___qpSpace_7)); }
  1153. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_qpSpace_7() const { return ___qpSpace_7; }
  1154. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_qpSpace_7() { return &___qpSpace_7; }
  1155. inline void set_qpSpace_7(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1156. {
  1157. ___qpSpace_7 = value;
  1158. Il2CppCodeGenWriteBarrier((void**)(&___qpSpace_7), (void*)value);
  1159. }
  1160. inline static int32_t get_offset_of_qpForbidden_8() { return static_cast<int32_t>(offsetof(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields, ___qpForbidden_8)); }
  1161. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_qpForbidden_8() const { return ___qpForbidden_8; }
  1162. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_qpForbidden_8() { return &___qpForbidden_8; }
  1163. inline void set_qpForbidden_8(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1164. {
  1165. ___qpForbidden_8 = value;
  1166. Il2CppCodeGenWriteBarrier((void**)(&___qpForbidden_8), (void*)value);
  1167. }
  1168. };
  1169. // UnityEngineInternal.WebRequestUtils
  1170. struct WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392 : public RuntimeObject
  1171. {
  1172. public:
  1173. public:
  1174. };
  1175. struct WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields
  1176. {
  1177. public:
  1178. // System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex
  1179. Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * ___domainRegex_0;
  1180. public:
  1181. inline static int32_t get_offset_of_domainRegex_0() { return static_cast<int32_t>(offsetof(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields, ___domainRegex_0)); }
  1182. inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * get_domainRegex_0() const { return ___domainRegex_0; }
  1183. inline Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F ** get_address_of_domainRegex_0() { return &___domainRegex_0; }
  1184. inline void set_domainRegex_0(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * value)
  1185. {
  1186. ___domainRegex_0 = value;
  1187. Il2CppCodeGenWriteBarrier((void**)(&___domainRegex_0), (void*)value);
  1188. }
  1189. };
  1190. // UnityEngine.YieldInstruction
  1191. struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject
  1192. {
  1193. public:
  1194. public:
  1195. };
  1196. // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction
  1197. struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
  1198. {
  1199. };
  1200. // Native definition for COM marshalling of UnityEngine.YieldInstruction
  1201. struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
  1202. {
  1203. };
  1204. // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
  1205. struct KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625
  1206. {
  1207. public:
  1208. // TKey System.Collections.Generic.KeyValuePair`2::key
  1209. RuntimeObject * ___key_0;
  1210. // TValue System.Collections.Generic.KeyValuePair`2::value
  1211. RuntimeObject * ___value_1;
  1212. public:
  1213. inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___key_0)); }
  1214. inline RuntimeObject * get_key_0() const { return ___key_0; }
  1215. inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
  1216. inline void set_key_0(RuntimeObject * value)
  1217. {
  1218. ___key_0 = value;
  1219. Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
  1220. }
  1221. inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625, ___value_1)); }
  1222. inline RuntimeObject * get_value_1() const { return ___value_1; }
  1223. inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
  1224. inline void set_value_1(RuntimeObject * value)
  1225. {
  1226. ___value_1 = value;
  1227. Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
  1228. }
  1229. };
  1230. // System.Collections.Generic.KeyValuePair`2<System.String,System.String>
  1231. struct KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC
  1232. {
  1233. public:
  1234. // TKey System.Collections.Generic.KeyValuePair`2::key
  1235. String_t* ___key_0;
  1236. // TValue System.Collections.Generic.KeyValuePair`2::value
  1237. String_t* ___value_1;
  1238. public:
  1239. inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC, ___key_0)); }
  1240. inline String_t* get_key_0() const { return ___key_0; }
  1241. inline String_t** get_address_of_key_0() { return &___key_0; }
  1242. inline void set_key_0(String_t* value)
  1243. {
  1244. ___key_0 = value;
  1245. Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
  1246. }
  1247. inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC, ___value_1)); }
  1248. inline String_t* get_value_1() const { return ___value_1; }
  1249. inline String_t** get_address_of_value_1() { return &___value_1; }
  1250. inline void set_value_1(String_t* value)
  1251. {
  1252. ___value_1 = value;
  1253. Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
  1254. }
  1255. };
  1256. // System.Boolean
  1257. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
  1258. {
  1259. public:
  1260. // System.Boolean System.Boolean::m_value
  1261. bool ___m_value_0;
  1262. public:
  1263. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
  1264. inline bool get_m_value_0() const { return ___m_value_0; }
  1265. inline bool* get_address_of_m_value_0() { return &___m_value_0; }
  1266. inline void set_m_value_0(bool value)
  1267. {
  1268. ___m_value_0 = value;
  1269. }
  1270. };
  1271. struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
  1272. {
  1273. public:
  1274. // System.String System.Boolean::TrueString
  1275. String_t* ___TrueString_5;
  1276. // System.String System.Boolean::FalseString
  1277. String_t* ___FalseString_6;
  1278. public:
  1279. inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
  1280. inline String_t* get_TrueString_5() const { return ___TrueString_5; }
  1281. inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
  1282. inline void set_TrueString_5(String_t* value)
  1283. {
  1284. ___TrueString_5 = value;
  1285. Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
  1286. }
  1287. inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
  1288. inline String_t* get_FalseString_6() const { return ___FalseString_6; }
  1289. inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
  1290. inline void set_FalseString_6(String_t* value)
  1291. {
  1292. ___FalseString_6 = value;
  1293. Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
  1294. }
  1295. };
  1296. // System.Byte
  1297. struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056
  1298. {
  1299. public:
  1300. // System.Byte System.Byte::m_value
  1301. uint8_t ___m_value_0;
  1302. public:
  1303. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); }
  1304. inline uint8_t get_m_value_0() const { return ___m_value_0; }
  1305. inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
  1306. inline void set_m_value_0(uint8_t value)
  1307. {
  1308. ___m_value_0 = value;
  1309. }
  1310. };
  1311. // System.Char
  1312. struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14
  1313. {
  1314. public:
  1315. // System.Char System.Char::m_value
  1316. Il2CppChar ___m_value_0;
  1317. public:
  1318. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); }
  1319. inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
  1320. inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
  1321. inline void set_m_value_0(Il2CppChar value)
  1322. {
  1323. ___m_value_0 = value;
  1324. }
  1325. };
  1326. struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields
  1327. {
  1328. public:
  1329. // System.Byte[] System.Char::categoryForLatin1
  1330. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3;
  1331. public:
  1332. inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); }
  1333. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
  1334. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
  1335. inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  1336. {
  1337. ___categoryForLatin1_3 = value;
  1338. Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
  1339. }
  1340. };
  1341. // System.Enum
  1342. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
  1343. {
  1344. public:
  1345. public:
  1346. };
  1347. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
  1348. {
  1349. public:
  1350. // System.Char[] System.Enum::enumSeperatorCharArray
  1351. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
  1352. public:
  1353. inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
  1354. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
  1355. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
  1356. inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  1357. {
  1358. ___enumSeperatorCharArray_0 = value;
  1359. Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
  1360. }
  1361. };
  1362. // Native definition for P/Invoke marshalling of System.Enum
  1363. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
  1364. {
  1365. };
  1366. // Native definition for COM marshalling of System.Enum
  1367. struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
  1368. {
  1369. };
  1370. // System.Int32
  1371. struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
  1372. {
  1373. public:
  1374. // System.Int32 System.Int32::m_value
  1375. int32_t ___m_value_0;
  1376. public:
  1377. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
  1378. inline int32_t get_m_value_0() const { return ___m_value_0; }
  1379. inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
  1380. inline void set_m_value_0(int32_t value)
  1381. {
  1382. ___m_value_0 = value;
  1383. }
  1384. };
  1385. // System.Int64
  1386. struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3
  1387. {
  1388. public:
  1389. // System.Int64 System.Int64::m_value
  1390. int64_t ___m_value_0;
  1391. public:
  1392. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); }
  1393. inline int64_t get_m_value_0() const { return ___m_value_0; }
  1394. inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
  1395. inline void set_m_value_0(int64_t value)
  1396. {
  1397. ___m_value_0 = value;
  1398. }
  1399. };
  1400. // System.IntPtr
  1401. struct IntPtr_t
  1402. {
  1403. public:
  1404. // System.Void* System.IntPtr::m_value
  1405. void* ___m_value_0;
  1406. public:
  1407. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
  1408. inline void* get_m_value_0() const { return ___m_value_0; }
  1409. inline void** get_address_of_m_value_0() { return &___m_value_0; }
  1410. inline void set_m_value_0(void* value)
  1411. {
  1412. ___m_value_0 = value;
  1413. }
  1414. };
  1415. struct IntPtr_t_StaticFields
  1416. {
  1417. public:
  1418. // System.IntPtr System.IntPtr::Zero
  1419. intptr_t ___Zero_1;
  1420. public:
  1421. inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
  1422. inline intptr_t get_Zero_1() const { return ___Zero_1; }
  1423. inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
  1424. inline void set_Zero_1(intptr_t value)
  1425. {
  1426. ___Zero_1 = value;
  1427. }
  1428. };
  1429. // System.SByte
  1430. struct SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B
  1431. {
  1432. public:
  1433. // System.SByte System.SByte::m_value
  1434. int8_t ___m_value_0;
  1435. public:
  1436. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t928712DD662DC29BA4FAAE8CE2230AFB23447F0B, ___m_value_0)); }
  1437. inline int8_t get_m_value_0() const { return ___m_value_0; }
  1438. inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
  1439. inline void set_m_value_0(int8_t value)
  1440. {
  1441. ___m_value_0 = value;
  1442. }
  1443. };
  1444. // System.IO.Stream
  1445. struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8
  1446. {
  1447. public:
  1448. // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask
  1449. ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3;
  1450. // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore
  1451. SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4;
  1452. public:
  1453. inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); }
  1454. inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; }
  1455. inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; }
  1456. inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value)
  1457. {
  1458. ____activeReadWriteTask_3 = value;
  1459. Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value);
  1460. }
  1461. inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); }
  1462. inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; }
  1463. inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; }
  1464. inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value)
  1465. {
  1466. ____asyncActiveSemaphore_4 = value;
  1467. Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value);
  1468. }
  1469. };
  1470. struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields
  1471. {
  1472. public:
  1473. // System.IO.Stream System.IO.Stream::Null
  1474. Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1;
  1475. public:
  1476. inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); }
  1477. inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; }
  1478. inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; }
  1479. inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value)
  1480. {
  1481. ___Null_1 = value;
  1482. Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
  1483. }
  1484. };
  1485. // System.UInt64
  1486. struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281
  1487. {
  1488. public:
  1489. // System.UInt64 System.UInt64::m_value
  1490. uint64_t ___m_value_0;
  1491. public:
  1492. inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); }
  1493. inline uint64_t get_m_value_0() const { return ___m_value_0; }
  1494. inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
  1495. inline void set_m_value_0(uint64_t value)
  1496. {
  1497. ___m_value_0 = value;
  1498. }
  1499. };
  1500. // System.Void
  1501. struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
  1502. {
  1503. public:
  1504. union
  1505. {
  1506. struct
  1507. {
  1508. };
  1509. uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
  1510. };
  1511. public:
  1512. };
  1513. // System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>
  1514. struct Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0
  1515. {
  1516. public:
  1517. // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
  1518. Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * ___dictionary_0;
  1519. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
  1520. int32_t ___version_1;
  1521. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
  1522. int32_t ___index_2;
  1523. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
  1524. KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 ___current_3;
  1525. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
  1526. int32_t ___getEnumeratorRetType_4;
  1527. public:
  1528. inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___dictionary_0)); }
  1529. inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * get_dictionary_0() const { return ___dictionary_0; }
  1530. inline Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D ** get_address_of_dictionary_0() { return &___dictionary_0; }
  1531. inline void set_dictionary_0(Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * value)
  1532. {
  1533. ___dictionary_0 = value;
  1534. Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
  1535. }
  1536. inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___version_1)); }
  1537. inline int32_t get_version_1() const { return ___version_1; }
  1538. inline int32_t* get_address_of_version_1() { return &___version_1; }
  1539. inline void set_version_1(int32_t value)
  1540. {
  1541. ___version_1 = value;
  1542. }
  1543. inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___index_2)); }
  1544. inline int32_t get_index_2() const { return ___index_2; }
  1545. inline int32_t* get_address_of_index_2() { return &___index_2; }
  1546. inline void set_index_2(int32_t value)
  1547. {
  1548. ___index_2 = value;
  1549. }
  1550. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___current_3)); }
  1551. inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 get_current_3() const { return ___current_3; }
  1552. inline KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * get_address_of_current_3() { return &___current_3; }
  1553. inline void set_current_3(KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 value)
  1554. {
  1555. ___current_3 = value;
  1556. Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
  1557. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  1558. Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
  1559. #endif
  1560. }
  1561. inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0, ___getEnumeratorRetType_4)); }
  1562. inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
  1563. inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
  1564. inline void set_getEnumeratorRetType_4(int32_t value)
  1565. {
  1566. ___getEnumeratorRetType_4 = value;
  1567. }
  1568. };
  1569. // System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>
  1570. struct Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB
  1571. {
  1572. public:
  1573. // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::dictionary
  1574. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * ___dictionary_0;
  1575. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::version
  1576. int32_t ___version_1;
  1577. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::index
  1578. int32_t ___index_2;
  1579. // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2/Enumerator::current
  1580. KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC ___current_3;
  1581. // System.Int32 System.Collections.Generic.Dictionary`2/Enumerator::getEnumeratorRetType
  1582. int32_t ___getEnumeratorRetType_4;
  1583. public:
  1584. inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB, ___dictionary_0)); }
  1585. inline Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * get_dictionary_0() const { return ___dictionary_0; }
  1586. inline Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 ** get_address_of_dictionary_0() { return &___dictionary_0; }
  1587. inline void set_dictionary_0(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * value)
  1588. {
  1589. ___dictionary_0 = value;
  1590. Il2CppCodeGenWriteBarrier((void**)(&___dictionary_0), (void*)value);
  1591. }
  1592. inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB, ___version_1)); }
  1593. inline int32_t get_version_1() const { return ___version_1; }
  1594. inline int32_t* get_address_of_version_1() { return &___version_1; }
  1595. inline void set_version_1(int32_t value)
  1596. {
  1597. ___version_1 = value;
  1598. }
  1599. inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB, ___index_2)); }
  1600. inline int32_t get_index_2() const { return ___index_2; }
  1601. inline int32_t* get_address_of_index_2() { return &___index_2; }
  1602. inline void set_index_2(int32_t value)
  1603. {
  1604. ___index_2 = value;
  1605. }
  1606. inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB, ___current_3)); }
  1607. inline KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC get_current_3() const { return ___current_3; }
  1608. inline KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC * get_address_of_current_3() { return &___current_3; }
  1609. inline void set_current_3(KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC value)
  1610. {
  1611. ___current_3 = value;
  1612. Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___key_0), (void*)NULL);
  1613. #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
  1614. Il2CppCodeGenWriteBarrier((void**)&(((&___current_3))->___value_1), (void*)NULL);
  1615. #endif
  1616. }
  1617. inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB, ___getEnumeratorRetType_4)); }
  1618. inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; }
  1619. inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; }
  1620. inline void set_getEnumeratorRetType_4(int32_t value)
  1621. {
  1622. ___getEnumeratorRetType_4 = value;
  1623. }
  1624. };
  1625. // Unity.Collections.Allocator
  1626. struct Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05
  1627. {
  1628. public:
  1629. // System.Int32 Unity.Collections.Allocator::value__
  1630. int32_t ___value___2;
  1631. public:
  1632. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Allocator_t9888223DEF4F46F3419ECFCCD0753599BEE52A05, ___value___2)); }
  1633. inline int32_t get_value___2() const { return ___value___2; }
  1634. inline int32_t* get_address_of_value___2() { return &___value___2; }
  1635. inline void set_value___2(int32_t value)
  1636. {
  1637. ___value___2 = value;
  1638. }
  1639. };
  1640. // UnityEngine.AsyncOperation
  1641. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF
  1642. {
  1643. public:
  1644. // System.IntPtr UnityEngine.AsyncOperation::m_Ptr
  1645. intptr_t ___m_Ptr_0;
  1646. // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback
  1647. Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * ___m_completeCallback_1;
  1648. public:
  1649. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_Ptr_0)); }
  1650. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1651. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1652. inline void set_m_Ptr_0(intptr_t value)
  1653. {
  1654. ___m_Ptr_0 = value;
  1655. }
  1656. inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast<int32_t>(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_completeCallback_1)); }
  1657. inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * get_m_completeCallback_1() const { return ___m_completeCallback_1; }
  1658. inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; }
  1659. inline void set_m_completeCallback_1(Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * value)
  1660. {
  1661. ___m_completeCallback_1 = value;
  1662. Il2CppCodeGenWriteBarrier((void**)(&___m_completeCallback_1), (void*)value);
  1663. }
  1664. };
  1665. // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation
  1666. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke
  1667. {
  1668. intptr_t ___m_Ptr_0;
  1669. Il2CppMethodPointer ___m_completeCallback_1;
  1670. };
  1671. // Native definition for COM marshalling of UnityEngine.AsyncOperation
  1672. struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com
  1673. {
  1674. intptr_t ___m_Ptr_0;
  1675. Il2CppMethodPointer ___m_completeCallback_1;
  1676. };
  1677. // UnityEngine.Networking.CertificateHandler
  1678. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E : public RuntimeObject
  1679. {
  1680. public:
  1681. // System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr
  1682. intptr_t ___m_Ptr_0;
  1683. public:
  1684. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E, ___m_Ptr_0)); }
  1685. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1686. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1687. inline void set_m_Ptr_0(intptr_t value)
  1688. {
  1689. ___m_Ptr_0 = value;
  1690. }
  1691. };
  1692. // Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler
  1693. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke
  1694. {
  1695. intptr_t ___m_Ptr_0;
  1696. };
  1697. // Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler
  1698. struct CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com
  1699. {
  1700. intptr_t ___m_Ptr_0;
  1701. };
  1702. // System.Delegate
  1703. struct Delegate_t : public RuntimeObject
  1704. {
  1705. public:
  1706. // System.IntPtr System.Delegate::method_ptr
  1707. Il2CppMethodPointer ___method_ptr_0;
  1708. // System.IntPtr System.Delegate::invoke_impl
  1709. intptr_t ___invoke_impl_1;
  1710. // System.Object System.Delegate::m_target
  1711. RuntimeObject * ___m_target_2;
  1712. // System.IntPtr System.Delegate::method
  1713. intptr_t ___method_3;
  1714. // System.IntPtr System.Delegate::delegate_trampoline
  1715. intptr_t ___delegate_trampoline_4;
  1716. // System.IntPtr System.Delegate::extra_arg
  1717. intptr_t ___extra_arg_5;
  1718. // System.IntPtr System.Delegate::method_code
  1719. intptr_t ___method_code_6;
  1720. // System.Reflection.MethodInfo System.Delegate::method_info
  1721. MethodInfo_t * ___method_info_7;
  1722. // System.Reflection.MethodInfo System.Delegate::original_method_info
  1723. MethodInfo_t * ___original_method_info_8;
  1724. // System.DelegateData System.Delegate::data
  1725. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  1726. // System.Boolean System.Delegate::method_is_virtual
  1727. bool ___method_is_virtual_10;
  1728. public:
  1729. inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
  1730. inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
  1731. inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
  1732. inline void set_method_ptr_0(Il2CppMethodPointer value)
  1733. {
  1734. ___method_ptr_0 = value;
  1735. }
  1736. inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
  1737. inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
  1738. inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
  1739. inline void set_invoke_impl_1(intptr_t value)
  1740. {
  1741. ___invoke_impl_1 = value;
  1742. }
  1743. inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
  1744. inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
  1745. inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
  1746. inline void set_m_target_2(RuntimeObject * value)
  1747. {
  1748. ___m_target_2 = value;
  1749. Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
  1750. }
  1751. inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
  1752. inline intptr_t get_method_3() const { return ___method_3; }
  1753. inline intptr_t* get_address_of_method_3() { return &___method_3; }
  1754. inline void set_method_3(intptr_t value)
  1755. {
  1756. ___method_3 = value;
  1757. }
  1758. inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
  1759. inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
  1760. inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
  1761. inline void set_delegate_trampoline_4(intptr_t value)
  1762. {
  1763. ___delegate_trampoline_4 = value;
  1764. }
  1765. inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
  1766. inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
  1767. inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
  1768. inline void set_extra_arg_5(intptr_t value)
  1769. {
  1770. ___extra_arg_5 = value;
  1771. }
  1772. inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
  1773. inline intptr_t get_method_code_6() const { return ___method_code_6; }
  1774. inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
  1775. inline void set_method_code_6(intptr_t value)
  1776. {
  1777. ___method_code_6 = value;
  1778. }
  1779. inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
  1780. inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
  1781. inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
  1782. inline void set_method_info_7(MethodInfo_t * value)
  1783. {
  1784. ___method_info_7 = value;
  1785. Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
  1786. }
  1787. inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
  1788. inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
  1789. inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
  1790. inline void set_original_method_info_8(MethodInfo_t * value)
  1791. {
  1792. ___original_method_info_8 = value;
  1793. Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
  1794. }
  1795. inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
  1796. inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; }
  1797. inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; }
  1798. inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value)
  1799. {
  1800. ___data_9 = value;
  1801. Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
  1802. }
  1803. inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
  1804. inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
  1805. inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
  1806. inline void set_method_is_virtual_10(bool value)
  1807. {
  1808. ___method_is_virtual_10 = value;
  1809. }
  1810. };
  1811. // Native definition for P/Invoke marshalling of System.Delegate
  1812. struct Delegate_t_marshaled_pinvoke
  1813. {
  1814. intptr_t ___method_ptr_0;
  1815. intptr_t ___invoke_impl_1;
  1816. Il2CppIUnknown* ___m_target_2;
  1817. intptr_t ___method_3;
  1818. intptr_t ___delegate_trampoline_4;
  1819. intptr_t ___extra_arg_5;
  1820. intptr_t ___method_code_6;
  1821. MethodInfo_t * ___method_info_7;
  1822. MethodInfo_t * ___original_method_info_8;
  1823. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  1824. int32_t ___method_is_virtual_10;
  1825. };
  1826. // Native definition for COM marshalling of System.Delegate
  1827. struct Delegate_t_marshaled_com
  1828. {
  1829. intptr_t ___method_ptr_0;
  1830. intptr_t ___invoke_impl_1;
  1831. Il2CppIUnknown* ___m_target_2;
  1832. intptr_t ___method_3;
  1833. intptr_t ___delegate_trampoline_4;
  1834. intptr_t ___extra_arg_5;
  1835. intptr_t ___method_code_6;
  1836. MethodInfo_t * ___method_info_7;
  1837. MethodInfo_t * ___original_method_info_8;
  1838. DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9;
  1839. int32_t ___method_is_virtual_10;
  1840. };
  1841. // UnityEngine.Networking.DownloadHandler
  1842. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB : public RuntimeObject
  1843. {
  1844. public:
  1845. // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr
  1846. intptr_t ___m_Ptr_0;
  1847. public:
  1848. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB, ___m_Ptr_0)); }
  1849. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  1850. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  1851. inline void set_m_Ptr_0(intptr_t value)
  1852. {
  1853. ___m_Ptr_0 = value;
  1854. }
  1855. };
  1856. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler
  1857. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke
  1858. {
  1859. intptr_t ___m_Ptr_0;
  1860. };
  1861. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler
  1862. struct DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com
  1863. {
  1864. intptr_t ___m_Ptr_0;
  1865. };
  1866. // System.Exception
  1867. struct Exception_t : public RuntimeObject
  1868. {
  1869. public:
  1870. // System.String System.Exception::_className
  1871. String_t* ____className_1;
  1872. // System.String System.Exception::_message
  1873. String_t* ____message_2;
  1874. // System.Collections.IDictionary System.Exception::_data
  1875. RuntimeObject* ____data_3;
  1876. // System.Exception System.Exception::_innerException
  1877. Exception_t * ____innerException_4;
  1878. // System.String System.Exception::_helpURL
  1879. String_t* ____helpURL_5;
  1880. // System.Object System.Exception::_stackTrace
  1881. RuntimeObject * ____stackTrace_6;
  1882. // System.String System.Exception::_stackTraceString
  1883. String_t* ____stackTraceString_7;
  1884. // System.String System.Exception::_remoteStackTraceString
  1885. String_t* ____remoteStackTraceString_8;
  1886. // System.Int32 System.Exception::_remoteStackIndex
  1887. int32_t ____remoteStackIndex_9;
  1888. // System.Object System.Exception::_dynamicMethods
  1889. RuntimeObject * ____dynamicMethods_10;
  1890. // System.Int32 System.Exception::_HResult
  1891. int32_t ____HResult_11;
  1892. // System.String System.Exception::_source
  1893. String_t* ____source_12;
  1894. // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
  1895. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  1896. // System.Diagnostics.StackTrace[] System.Exception::captured_traces
  1897. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  1898. // System.IntPtr[] System.Exception::native_trace_ips
  1899. IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15;
  1900. public:
  1901. inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
  1902. inline String_t* get__className_1() const { return ____className_1; }
  1903. inline String_t** get_address_of__className_1() { return &____className_1; }
  1904. inline void set__className_1(String_t* value)
  1905. {
  1906. ____className_1 = value;
  1907. Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
  1908. }
  1909. inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
  1910. inline String_t* get__message_2() const { return ____message_2; }
  1911. inline String_t** get_address_of__message_2() { return &____message_2; }
  1912. inline void set__message_2(String_t* value)
  1913. {
  1914. ____message_2 = value;
  1915. Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
  1916. }
  1917. inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
  1918. inline RuntimeObject* get__data_3() const { return ____data_3; }
  1919. inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
  1920. inline void set__data_3(RuntimeObject* value)
  1921. {
  1922. ____data_3 = value;
  1923. Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
  1924. }
  1925. inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
  1926. inline Exception_t * get__innerException_4() const { return ____innerException_4; }
  1927. inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
  1928. inline void set__innerException_4(Exception_t * value)
  1929. {
  1930. ____innerException_4 = value;
  1931. Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
  1932. }
  1933. inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
  1934. inline String_t* get__helpURL_5() const { return ____helpURL_5; }
  1935. inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
  1936. inline void set__helpURL_5(String_t* value)
  1937. {
  1938. ____helpURL_5 = value;
  1939. Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
  1940. }
  1941. inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
  1942. inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
  1943. inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
  1944. inline void set__stackTrace_6(RuntimeObject * value)
  1945. {
  1946. ____stackTrace_6 = value;
  1947. Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
  1948. }
  1949. inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
  1950. inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
  1951. inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
  1952. inline void set__stackTraceString_7(String_t* value)
  1953. {
  1954. ____stackTraceString_7 = value;
  1955. Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
  1956. }
  1957. inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
  1958. inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
  1959. inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
  1960. inline void set__remoteStackTraceString_8(String_t* value)
  1961. {
  1962. ____remoteStackTraceString_8 = value;
  1963. Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
  1964. }
  1965. inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
  1966. inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
  1967. inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
  1968. inline void set__remoteStackIndex_9(int32_t value)
  1969. {
  1970. ____remoteStackIndex_9 = value;
  1971. }
  1972. inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
  1973. inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
  1974. inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
  1975. inline void set__dynamicMethods_10(RuntimeObject * value)
  1976. {
  1977. ____dynamicMethods_10 = value;
  1978. Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
  1979. }
  1980. inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
  1981. inline int32_t get__HResult_11() const { return ____HResult_11; }
  1982. inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
  1983. inline void set__HResult_11(int32_t value)
  1984. {
  1985. ____HResult_11 = value;
  1986. }
  1987. inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
  1988. inline String_t* get__source_12() const { return ____source_12; }
  1989. inline String_t** get_address_of__source_12() { return &____source_12; }
  1990. inline void set__source_12(String_t* value)
  1991. {
  1992. ____source_12 = value;
  1993. Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
  1994. }
  1995. inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
  1996. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
  1997. inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
  1998. inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value)
  1999. {
  2000. ____safeSerializationManager_13 = value;
  2001. Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
  2002. }
  2003. inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
  2004. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; }
  2005. inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; }
  2006. inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value)
  2007. {
  2008. ___captured_traces_14 = value;
  2009. Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
  2010. }
  2011. inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
  2012. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
  2013. inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
  2014. inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value)
  2015. {
  2016. ___native_trace_ips_15 = value;
  2017. Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
  2018. }
  2019. };
  2020. struct Exception_t_StaticFields
  2021. {
  2022. public:
  2023. // System.Object System.Exception::s_EDILock
  2024. RuntimeObject * ___s_EDILock_0;
  2025. public:
  2026. inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
  2027. inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
  2028. inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
  2029. inline void set_s_EDILock_0(RuntimeObject * value)
  2030. {
  2031. ___s_EDILock_0 = value;
  2032. Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
  2033. }
  2034. };
  2035. // Native definition for P/Invoke marshalling of System.Exception
  2036. struct Exception_t_marshaled_pinvoke
  2037. {
  2038. char* ____className_1;
  2039. char* ____message_2;
  2040. RuntimeObject* ____data_3;
  2041. Exception_t_marshaled_pinvoke* ____innerException_4;
  2042. char* ____helpURL_5;
  2043. Il2CppIUnknown* ____stackTrace_6;
  2044. char* ____stackTraceString_7;
  2045. char* ____remoteStackTraceString_8;
  2046. int32_t ____remoteStackIndex_9;
  2047. Il2CppIUnknown* ____dynamicMethods_10;
  2048. int32_t ____HResult_11;
  2049. char* ____source_12;
  2050. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  2051. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  2052. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  2053. };
  2054. // Native definition for COM marshalling of System.Exception
  2055. struct Exception_t_marshaled_com
  2056. {
  2057. Il2CppChar* ____className_1;
  2058. Il2CppChar* ____message_2;
  2059. RuntimeObject* ____data_3;
  2060. Exception_t_marshaled_com* ____innerException_4;
  2061. Il2CppChar* ____helpURL_5;
  2062. Il2CppIUnknown* ____stackTrace_6;
  2063. Il2CppChar* ____stackTraceString_7;
  2064. Il2CppChar* ____remoteStackTraceString_8;
  2065. int32_t ____remoteStackIndex_9;
  2066. Il2CppIUnknown* ____dynamicMethods_10;
  2067. int32_t ____HResult_11;
  2068. Il2CppChar* ____source_12;
  2069. SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13;
  2070. StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14;
  2071. Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
  2072. };
  2073. // System.IO.MemoryStream
  2074. struct MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB
  2075. {
  2076. public:
  2077. // System.Byte[] System.IO.MemoryStream::_buffer
  2078. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ____buffer_5;
  2079. // System.Int32 System.IO.MemoryStream::_origin
  2080. int32_t ____origin_6;
  2081. // System.Int32 System.IO.MemoryStream::_position
  2082. int32_t ____position_7;
  2083. // System.Int32 System.IO.MemoryStream::_length
  2084. int32_t ____length_8;
  2085. // System.Int32 System.IO.MemoryStream::_capacity
  2086. int32_t ____capacity_9;
  2087. // System.Boolean System.IO.MemoryStream::_expandable
  2088. bool ____expandable_10;
  2089. // System.Boolean System.IO.MemoryStream::_writable
  2090. bool ____writable_11;
  2091. // System.Boolean System.IO.MemoryStream::_exposable
  2092. bool ____exposable_12;
  2093. // System.Boolean System.IO.MemoryStream::_isOpen
  2094. bool ____isOpen_13;
  2095. // System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask
  2096. Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * ____lastReadTask_14;
  2097. public:
  2098. inline static int32_t get_offset_of__buffer_5() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____buffer_5)); }
  2099. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get__buffer_5() const { return ____buffer_5; }
  2100. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of__buffer_5() { return &____buffer_5; }
  2101. inline void set__buffer_5(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value)
  2102. {
  2103. ____buffer_5 = value;
  2104. Il2CppCodeGenWriteBarrier((void**)(&____buffer_5), (void*)value);
  2105. }
  2106. inline static int32_t get_offset_of__origin_6() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____origin_6)); }
  2107. inline int32_t get__origin_6() const { return ____origin_6; }
  2108. inline int32_t* get_address_of__origin_6() { return &____origin_6; }
  2109. inline void set__origin_6(int32_t value)
  2110. {
  2111. ____origin_6 = value;
  2112. }
  2113. inline static int32_t get_offset_of__position_7() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____position_7)); }
  2114. inline int32_t get__position_7() const { return ____position_7; }
  2115. inline int32_t* get_address_of__position_7() { return &____position_7; }
  2116. inline void set__position_7(int32_t value)
  2117. {
  2118. ____position_7 = value;
  2119. }
  2120. inline static int32_t get_offset_of__length_8() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____length_8)); }
  2121. inline int32_t get__length_8() const { return ____length_8; }
  2122. inline int32_t* get_address_of__length_8() { return &____length_8; }
  2123. inline void set__length_8(int32_t value)
  2124. {
  2125. ____length_8 = value;
  2126. }
  2127. inline static int32_t get_offset_of__capacity_9() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____capacity_9)); }
  2128. inline int32_t get__capacity_9() const { return ____capacity_9; }
  2129. inline int32_t* get_address_of__capacity_9() { return &____capacity_9; }
  2130. inline void set__capacity_9(int32_t value)
  2131. {
  2132. ____capacity_9 = value;
  2133. }
  2134. inline static int32_t get_offset_of__expandable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____expandable_10)); }
  2135. inline bool get__expandable_10() const { return ____expandable_10; }
  2136. inline bool* get_address_of__expandable_10() { return &____expandable_10; }
  2137. inline void set__expandable_10(bool value)
  2138. {
  2139. ____expandable_10 = value;
  2140. }
  2141. inline static int32_t get_offset_of__writable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____writable_11)); }
  2142. inline bool get__writable_11() const { return ____writable_11; }
  2143. inline bool* get_address_of__writable_11() { return &____writable_11; }
  2144. inline void set__writable_11(bool value)
  2145. {
  2146. ____writable_11 = value;
  2147. }
  2148. inline static int32_t get_offset_of__exposable_12() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____exposable_12)); }
  2149. inline bool get__exposable_12() const { return ____exposable_12; }
  2150. inline bool* get_address_of__exposable_12() { return &____exposable_12; }
  2151. inline void set__exposable_12(bool value)
  2152. {
  2153. ____exposable_12 = value;
  2154. }
  2155. inline static int32_t get_offset_of__isOpen_13() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____isOpen_13)); }
  2156. inline bool get__isOpen_13() const { return ____isOpen_13; }
  2157. inline bool* get_address_of__isOpen_13() { return &____isOpen_13; }
  2158. inline void set__isOpen_13(bool value)
  2159. {
  2160. ____isOpen_13 = value;
  2161. }
  2162. inline static int32_t get_offset_of__lastReadTask_14() { return static_cast<int32_t>(offsetof(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C, ____lastReadTask_14)); }
  2163. inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * get__lastReadTask_14() const { return ____lastReadTask_14; }
  2164. inline Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 ** get_address_of__lastReadTask_14() { return &____lastReadTask_14; }
  2165. inline void set__lastReadTask_14(Task_1_tEF253D967DB628A9F8A389A9F2E4516871FD3725 * value)
  2166. {
  2167. ____lastReadTask_14 = value;
  2168. Il2CppCodeGenWriteBarrier((void**)(&____lastReadTask_14), (void*)value);
  2169. }
  2170. };
  2171. // System.Text.RegularExpressions.RegexOptions
  2172. struct RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4
  2173. {
  2174. public:
  2175. // System.Int32 System.Text.RegularExpressions.RegexOptions::value__
  2176. int32_t ___value___2;
  2177. public:
  2178. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t8F8CD5BC6C55FC2B657722FD09ABDFDF5BA6F6A4, ___value___2)); }
  2179. inline int32_t get_value___2() const { return ___value___2; }
  2180. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2181. inline void set_value___2(int32_t value)
  2182. {
  2183. ___value___2 = value;
  2184. }
  2185. };
  2186. // System.StringComparison
  2187. struct StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998
  2188. {
  2189. public:
  2190. // System.Int32 System.StringComparison::value__
  2191. int32_t ___value___2;
  2192. public:
  2193. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_tCC9F72B9B1E2C3C6D2566DD0D3A61E1621048998, ___value___2)); }
  2194. inline int32_t get_value___2() const { return ___value___2; }
  2195. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2196. inline void set_value___2(int32_t value)
  2197. {
  2198. ___value___2 = value;
  2199. }
  2200. };
  2201. // System.TimeSpan
  2202. struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203
  2203. {
  2204. public:
  2205. // System.Int64 System.TimeSpan::_ticks
  2206. int64_t ____ticks_22;
  2207. public:
  2208. inline static int32_t get_offset_of__ticks_22() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_22)); }
  2209. inline int64_t get__ticks_22() const { return ____ticks_22; }
  2210. inline int64_t* get_address_of__ticks_22() { return &____ticks_22; }
  2211. inline void set__ticks_22(int64_t value)
  2212. {
  2213. ____ticks_22 = value;
  2214. }
  2215. };
  2216. struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields
  2217. {
  2218. public:
  2219. // System.TimeSpan System.TimeSpan::Zero
  2220. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_19;
  2221. // System.TimeSpan System.TimeSpan::MaxValue
  2222. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_20;
  2223. // System.TimeSpan System.TimeSpan::MinValue
  2224. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_21;
  2225. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
  2226. bool ____legacyConfigChecked_23;
  2227. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
  2228. bool ____legacyMode_24;
  2229. public:
  2230. inline static int32_t get_offset_of_Zero_19() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_19)); }
  2231. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_19() const { return ___Zero_19; }
  2232. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_19() { return &___Zero_19; }
  2233. inline void set_Zero_19(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2234. {
  2235. ___Zero_19 = value;
  2236. }
  2237. inline static int32_t get_offset_of_MaxValue_20() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_20)); }
  2238. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_20() const { return ___MaxValue_20; }
  2239. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_20() { return &___MaxValue_20; }
  2240. inline void set_MaxValue_20(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2241. {
  2242. ___MaxValue_20 = value;
  2243. }
  2244. inline static int32_t get_offset_of_MinValue_21() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_21)); }
  2245. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_21() const { return ___MinValue_21; }
  2246. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_21() { return &___MinValue_21; }
  2247. inline void set_MinValue_21(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2248. {
  2249. ___MinValue_21 = value;
  2250. }
  2251. inline static int32_t get_offset_of__legacyConfigChecked_23() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_23)); }
  2252. inline bool get__legacyConfigChecked_23() const { return ____legacyConfigChecked_23; }
  2253. inline bool* get_address_of__legacyConfigChecked_23() { return &____legacyConfigChecked_23; }
  2254. inline void set__legacyConfigChecked_23(bool value)
  2255. {
  2256. ____legacyConfigChecked_23 = value;
  2257. }
  2258. inline static int32_t get_offset_of__legacyMode_24() { return static_cast<int32_t>(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_24)); }
  2259. inline bool get__legacyMode_24() const { return ____legacyMode_24; }
  2260. inline bool* get_address_of__legacyMode_24() { return &____legacyMode_24; }
  2261. inline void set__legacyMode_24(bool value)
  2262. {
  2263. ____legacyMode_24 = value;
  2264. }
  2265. };
  2266. // UnityEngine.Networking.UploadHandler
  2267. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA : public RuntimeObject
  2268. {
  2269. public:
  2270. // System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr
  2271. intptr_t ___m_Ptr_0;
  2272. public:
  2273. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA, ___m_Ptr_0)); }
  2274. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2275. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2276. inline void set_m_Ptr_0(intptr_t value)
  2277. {
  2278. ___m_Ptr_0 = value;
  2279. }
  2280. };
  2281. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler
  2282. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke
  2283. {
  2284. intptr_t ___m_Ptr_0;
  2285. };
  2286. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandler
  2287. struct UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com
  2288. {
  2289. intptr_t ___m_Ptr_0;
  2290. };
  2291. // System.UriFormat
  2292. struct UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F
  2293. {
  2294. public:
  2295. // System.Int32 System.UriFormat::value__
  2296. int32_t ___value___2;
  2297. public:
  2298. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriFormat_t25C936463BDE737B16A8EC3DA05091FC31F1A71F, ___value___2)); }
  2299. inline int32_t get_value___2() const { return ___value___2; }
  2300. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2301. inline void set_value___2(int32_t value)
  2302. {
  2303. ___value___2 = value;
  2304. }
  2305. };
  2306. // System.UriIdnScope
  2307. struct UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D
  2308. {
  2309. public:
  2310. // System.Int32 System.UriIdnScope::value__
  2311. int32_t ___value___2;
  2312. public:
  2313. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tBA22B992BA582F68F2B98CDEBCB24299F249DE4D, ___value___2)); }
  2314. inline int32_t get_value___2() const { return ___value___2; }
  2315. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2316. inline void set_value___2(int32_t value)
  2317. {
  2318. ___value___2 = value;
  2319. }
  2320. };
  2321. // System.UriKind
  2322. struct UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC
  2323. {
  2324. public:
  2325. // System.Int32 System.UriKind::value__
  2326. int32_t ___value___2;
  2327. public:
  2328. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriKind_tFC16ACC1842283AAE2C7F50C9C70EFBF6550B3FC, ___value___2)); }
  2329. inline int32_t get_value___2() const { return ___value___2; }
  2330. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2331. inline void set_value___2(int32_t value)
  2332. {
  2333. ___value___2 = value;
  2334. }
  2335. };
  2336. // UnityEngine.Networking.UnityWebRequest/Result
  2337. struct Result_t3233C0F690EC3844C8E0C4649568659679AFBE75
  2338. {
  2339. public:
  2340. // System.Int32 UnityEngine.Networking.UnityWebRequest/Result::value__
  2341. int32_t ___value___2;
  2342. public:
  2343. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Result_t3233C0F690EC3844C8E0C4649568659679AFBE75, ___value___2)); }
  2344. inline int32_t get_value___2() const { return ___value___2; }
  2345. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2346. inline void set_value___2(int32_t value)
  2347. {
  2348. ___value___2 = value;
  2349. }
  2350. };
  2351. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError
  2352. struct UnityWebRequestError_t01C779C192877A58EBDB44371C42F9A5831EB9F6
  2353. {
  2354. public:
  2355. // System.Int32 UnityEngine.Networking.UnityWebRequest/UnityWebRequestError::value__
  2356. int32_t ___value___2;
  2357. public:
  2358. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityWebRequestError_t01C779C192877A58EBDB44371C42F9A5831EB9F6, ___value___2)); }
  2359. inline int32_t get_value___2() const { return ___value___2; }
  2360. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2361. inline void set_value___2(int32_t value)
  2362. {
  2363. ___value___2 = value;
  2364. }
  2365. };
  2366. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod
  2367. struct UnityWebRequestMethod_tF538D9A75B76FFC81710E65697E38C1B12E4F7E5
  2368. {
  2369. public:
  2370. // System.Int32 UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod::value__
  2371. int32_t ___value___2;
  2372. public:
  2373. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityWebRequestMethod_tF538D9A75B76FFC81710E65697E38C1B12E4F7E5, ___value___2)); }
  2374. inline int32_t get_value___2() const { return ___value___2; }
  2375. inline int32_t* get_address_of_value___2() { return &___value___2; }
  2376. inline void set_value___2(int32_t value)
  2377. {
  2378. ___value___2 = value;
  2379. }
  2380. };
  2381. // System.Uri/Flags
  2382. struct Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4
  2383. {
  2384. public:
  2385. // System.UInt64 System.Uri/Flags::value__
  2386. uint64_t ___value___2;
  2387. public:
  2388. inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_t72C622DF5C3ED762F55AB36EC2CCDDF3AF56B8D4, ___value___2)); }
  2389. inline uint64_t get_value___2() const { return ___value___2; }
  2390. inline uint64_t* get_address_of_value___2() { return &___value___2; }
  2391. inline void set_value___2(uint64_t value)
  2392. {
  2393. ___value___2 = value;
  2394. }
  2395. };
  2396. // Unity.Collections.NativeArray`1<System.Byte>
  2397. struct NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785
  2398. {
  2399. public:
  2400. // System.Void* Unity.Collections.NativeArray`1::m_Buffer
  2401. void* ___m_Buffer_0;
  2402. // System.Int32 Unity.Collections.NativeArray`1::m_Length
  2403. int32_t ___m_Length_1;
  2404. // Unity.Collections.Allocator Unity.Collections.NativeArray`1::m_AllocatorLabel
  2405. int32_t ___m_AllocatorLabel_2;
  2406. public:
  2407. inline static int32_t get_offset_of_m_Buffer_0() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Buffer_0)); }
  2408. inline void* get_m_Buffer_0() const { return ___m_Buffer_0; }
  2409. inline void** get_address_of_m_Buffer_0() { return &___m_Buffer_0; }
  2410. inline void set_m_Buffer_0(void* value)
  2411. {
  2412. ___m_Buffer_0 = value;
  2413. }
  2414. inline static int32_t get_offset_of_m_Length_1() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_Length_1)); }
  2415. inline int32_t get_m_Length_1() const { return ___m_Length_1; }
  2416. inline int32_t* get_address_of_m_Length_1() { return &___m_Length_1; }
  2417. inline void set_m_Length_1(int32_t value)
  2418. {
  2419. ___m_Length_1 = value;
  2420. }
  2421. inline static int32_t get_offset_of_m_AllocatorLabel_2() { return static_cast<int32_t>(offsetof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785, ___m_AllocatorLabel_2)); }
  2422. inline int32_t get_m_AllocatorLabel_2() const { return ___m_AllocatorLabel_2; }
  2423. inline int32_t* get_address_of_m_AllocatorLabel_2() { return &___m_AllocatorLabel_2; }
  2424. inline void set_m_AllocatorLabel_2(int32_t value)
  2425. {
  2426. ___m_AllocatorLabel_2 = value;
  2427. }
  2428. };
  2429. // System.MulticastDelegate
  2430. struct MulticastDelegate_t : public Delegate_t
  2431. {
  2432. public:
  2433. // System.Delegate[] System.MulticastDelegate::delegates
  2434. DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11;
  2435. public:
  2436. inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
  2437. inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; }
  2438. inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; }
  2439. inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value)
  2440. {
  2441. ___delegates_11 = value;
  2442. Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
  2443. }
  2444. };
  2445. // Native definition for P/Invoke marshalling of System.MulticastDelegate
  2446. struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
  2447. {
  2448. Delegate_t_marshaled_pinvoke** ___delegates_11;
  2449. };
  2450. // Native definition for COM marshalling of System.MulticastDelegate
  2451. struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
  2452. {
  2453. Delegate_t_marshaled_com** ___delegates_11;
  2454. };
  2455. // System.Text.RegularExpressions.Regex
  2456. struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F : public RuntimeObject
  2457. {
  2458. public:
  2459. // System.String System.Text.RegularExpressions.Regex::pattern
  2460. String_t* ___pattern_0;
  2461. // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory
  2462. RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * ___factory_1;
  2463. // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions
  2464. int32_t ___roptions_2;
  2465. // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout
  2466. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___internalMatchTimeout_5;
  2467. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps
  2468. Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___caps_9;
  2469. // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames
  2470. Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___capnames_10;
  2471. // System.String[] System.Text.RegularExpressions.Regex::capslist
  2472. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___capslist_11;
  2473. // System.Int32 System.Text.RegularExpressions.Regex::capsize
  2474. int32_t ___capsize_12;
  2475. // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref
  2476. ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * ___runnerref_13;
  2477. // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref
  2478. SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * ___replref_14;
  2479. // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code
  2480. RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * ___code_15;
  2481. // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized
  2482. bool ___refsInitialized_16;
  2483. public:
  2484. inline static int32_t get_offset_of_pattern_0() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___pattern_0)); }
  2485. inline String_t* get_pattern_0() const { return ___pattern_0; }
  2486. inline String_t** get_address_of_pattern_0() { return &___pattern_0; }
  2487. inline void set_pattern_0(String_t* value)
  2488. {
  2489. ___pattern_0 = value;
  2490. Il2CppCodeGenWriteBarrier((void**)(&___pattern_0), (void*)value);
  2491. }
  2492. inline static int32_t get_offset_of_factory_1() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___factory_1)); }
  2493. inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * get_factory_1() const { return ___factory_1; }
  2494. inline RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 ** get_address_of_factory_1() { return &___factory_1; }
  2495. inline void set_factory_1(RegexRunnerFactory_tA425EC5DC77FC0AAD86EB116E5483E94679CAA96 * value)
  2496. {
  2497. ___factory_1 = value;
  2498. Il2CppCodeGenWriteBarrier((void**)(&___factory_1), (void*)value);
  2499. }
  2500. inline static int32_t get_offset_of_roptions_2() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___roptions_2)); }
  2501. inline int32_t get_roptions_2() const { return ___roptions_2; }
  2502. inline int32_t* get_address_of_roptions_2() { return &___roptions_2; }
  2503. inline void set_roptions_2(int32_t value)
  2504. {
  2505. ___roptions_2 = value;
  2506. }
  2507. inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___internalMatchTimeout_5)); }
  2508. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; }
  2509. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; }
  2510. inline void set_internalMatchTimeout_5(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2511. {
  2512. ___internalMatchTimeout_5 = value;
  2513. }
  2514. inline static int32_t get_offset_of_caps_9() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___caps_9)); }
  2515. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_caps_9() const { return ___caps_9; }
  2516. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_caps_9() { return &___caps_9; }
  2517. inline void set_caps_9(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
  2518. {
  2519. ___caps_9 = value;
  2520. Il2CppCodeGenWriteBarrier((void**)(&___caps_9), (void*)value);
  2521. }
  2522. inline static int32_t get_offset_of_capnames_10() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capnames_10)); }
  2523. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_capnames_10() const { return ___capnames_10; }
  2524. inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_capnames_10() { return &___capnames_10; }
  2525. inline void set_capnames_10(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value)
  2526. {
  2527. ___capnames_10 = value;
  2528. Il2CppCodeGenWriteBarrier((void**)(&___capnames_10), (void*)value);
  2529. }
  2530. inline static int32_t get_offset_of_capslist_11() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capslist_11)); }
  2531. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_capslist_11() const { return ___capslist_11; }
  2532. inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_capslist_11() { return &___capslist_11; }
  2533. inline void set_capslist_11(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value)
  2534. {
  2535. ___capslist_11 = value;
  2536. Il2CppCodeGenWriteBarrier((void**)(&___capslist_11), (void*)value);
  2537. }
  2538. inline static int32_t get_offset_of_capsize_12() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___capsize_12)); }
  2539. inline int32_t get_capsize_12() const { return ___capsize_12; }
  2540. inline int32_t* get_address_of_capsize_12() { return &___capsize_12; }
  2541. inline void set_capsize_12(int32_t value)
  2542. {
  2543. ___capsize_12 = value;
  2544. }
  2545. inline static int32_t get_offset_of_runnerref_13() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___runnerref_13)); }
  2546. inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * get_runnerref_13() const { return ___runnerref_13; }
  2547. inline ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 ** get_address_of_runnerref_13() { return &___runnerref_13; }
  2548. inline void set_runnerref_13(ExclusiveReference_t7F4A5D2416EA34710F520BAD225E61BC1E98D1D8 * value)
  2549. {
  2550. ___runnerref_13 = value;
  2551. Il2CppCodeGenWriteBarrier((void**)(&___runnerref_13), (void*)value);
  2552. }
  2553. inline static int32_t get_offset_of_replref_14() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___replref_14)); }
  2554. inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * get_replref_14() const { return ___replref_14; }
  2555. inline SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 ** get_address_of_replref_14() { return &___replref_14; }
  2556. inline void set_replref_14(SharedReference_t74AB40C102A76A7523C72269A49D2C8FBDD83926 * value)
  2557. {
  2558. ___replref_14 = value;
  2559. Il2CppCodeGenWriteBarrier((void**)(&___replref_14), (void*)value);
  2560. }
  2561. inline static int32_t get_offset_of_code_15() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___code_15)); }
  2562. inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * get_code_15() const { return ___code_15; }
  2563. inline RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 ** get_address_of_code_15() { return &___code_15; }
  2564. inline void set_code_15(RegexCode_tF1653432E8EEDED5AB9517D09CA84B5FAA3CC0D5 * value)
  2565. {
  2566. ___code_15 = value;
  2567. Il2CppCodeGenWriteBarrier((void**)(&___code_15), (void*)value);
  2568. }
  2569. inline static int32_t get_offset_of_refsInitialized_16() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F, ___refsInitialized_16)); }
  2570. inline bool get_refsInitialized_16() const { return ___refsInitialized_16; }
  2571. inline bool* get_address_of_refsInitialized_16() { return &___refsInitialized_16; }
  2572. inline void set_refsInitialized_16(bool value)
  2573. {
  2574. ___refsInitialized_16 = value;
  2575. }
  2576. };
  2577. struct Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields
  2578. {
  2579. public:
  2580. // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout
  2581. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaximumMatchTimeout_3;
  2582. // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout
  2583. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___InfiniteMatchTimeout_4;
  2584. // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout
  2585. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___FallbackDefaultMatchTimeout_7;
  2586. // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout
  2587. TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___DefaultMatchTimeout_8;
  2588. // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> System.Text.RegularExpressions.Regex::livecode
  2589. LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * ___livecode_17;
  2590. // System.Int32 System.Text.RegularExpressions.Regex::cacheSize
  2591. int32_t ___cacheSize_18;
  2592. public:
  2593. inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___MaximumMatchTimeout_3)); }
  2594. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; }
  2595. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; }
  2596. inline void set_MaximumMatchTimeout_3(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2597. {
  2598. ___MaximumMatchTimeout_3 = value;
  2599. }
  2600. inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___InfiniteMatchTimeout_4)); }
  2601. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; }
  2602. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; }
  2603. inline void set_InfiniteMatchTimeout_4(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2604. {
  2605. ___InfiniteMatchTimeout_4 = value;
  2606. }
  2607. inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_7() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___FallbackDefaultMatchTimeout_7)); }
  2608. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_FallbackDefaultMatchTimeout_7() const { return ___FallbackDefaultMatchTimeout_7; }
  2609. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_FallbackDefaultMatchTimeout_7() { return &___FallbackDefaultMatchTimeout_7; }
  2610. inline void set_FallbackDefaultMatchTimeout_7(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2611. {
  2612. ___FallbackDefaultMatchTimeout_7 = value;
  2613. }
  2614. inline static int32_t get_offset_of_DefaultMatchTimeout_8() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___DefaultMatchTimeout_8)); }
  2615. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_DefaultMatchTimeout_8() const { return ___DefaultMatchTimeout_8; }
  2616. inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_DefaultMatchTimeout_8() { return &___DefaultMatchTimeout_8; }
  2617. inline void set_DefaultMatchTimeout_8(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value)
  2618. {
  2619. ___DefaultMatchTimeout_8 = value;
  2620. }
  2621. inline static int32_t get_offset_of_livecode_17() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___livecode_17)); }
  2622. inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * get_livecode_17() const { return ___livecode_17; }
  2623. inline LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 ** get_address_of_livecode_17() { return &___livecode_17; }
  2624. inline void set_livecode_17(LinkedList_1_t0AD3FC1D19E68F4B148AFF908DC3719C9B117D92 * value)
  2625. {
  2626. ___livecode_17 = value;
  2627. Il2CppCodeGenWriteBarrier((void**)(&___livecode_17), (void*)value);
  2628. }
  2629. inline static int32_t get_offset_of_cacheSize_18() { return static_cast<int32_t>(offsetof(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_StaticFields, ___cacheSize_18)); }
  2630. inline int32_t get_cacheSize_18() const { return ___cacheSize_18; }
  2631. inline int32_t* get_address_of_cacheSize_18() { return &___cacheSize_18; }
  2632. inline void set_cacheSize_18(int32_t value)
  2633. {
  2634. ___cacheSize_18 = value;
  2635. }
  2636. };
  2637. // System.SystemException
  2638. struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t
  2639. {
  2640. public:
  2641. public:
  2642. };
  2643. // UnityEngine.Networking.UnityWebRequest
  2644. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E : public RuntimeObject
  2645. {
  2646. public:
  2647. // System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr
  2648. intptr_t ___m_Ptr_0;
  2649. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler
  2650. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___m_DownloadHandler_1;
  2651. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler
  2652. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___m_UploadHandler_2;
  2653. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::m_CertificateHandler
  2654. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * ___m_CertificateHandler_3;
  2655. // System.Uri UnityEngine.Networking.UnityWebRequest::m_Uri
  2656. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_Uri_4;
  2657. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeCertificateHandlerOnDispose>k__BackingField
  2658. bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  2659. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField
  2660. bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  2661. // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField
  2662. bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  2663. public:
  2664. inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_Ptr_0)); }
  2665. inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; }
  2666. inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; }
  2667. inline void set_m_Ptr_0(intptr_t value)
  2668. {
  2669. ___m_Ptr_0 = value;
  2670. }
  2671. inline static int32_t get_offset_of_m_DownloadHandler_1() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_DownloadHandler_1)); }
  2672. inline DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * get_m_DownloadHandler_1() const { return ___m_DownloadHandler_1; }
  2673. inline DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB ** get_address_of_m_DownloadHandler_1() { return &___m_DownloadHandler_1; }
  2674. inline void set_m_DownloadHandler_1(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * value)
  2675. {
  2676. ___m_DownloadHandler_1 = value;
  2677. Il2CppCodeGenWriteBarrier((void**)(&___m_DownloadHandler_1), (void*)value);
  2678. }
  2679. inline static int32_t get_offset_of_m_UploadHandler_2() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_UploadHandler_2)); }
  2680. inline UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * get_m_UploadHandler_2() const { return ___m_UploadHandler_2; }
  2681. inline UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA ** get_address_of_m_UploadHandler_2() { return &___m_UploadHandler_2; }
  2682. inline void set_m_UploadHandler_2(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * value)
  2683. {
  2684. ___m_UploadHandler_2 = value;
  2685. Il2CppCodeGenWriteBarrier((void**)(&___m_UploadHandler_2), (void*)value);
  2686. }
  2687. inline static int32_t get_offset_of_m_CertificateHandler_3() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_CertificateHandler_3)); }
  2688. inline CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * get_m_CertificateHandler_3() const { return ___m_CertificateHandler_3; }
  2689. inline CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E ** get_address_of_m_CertificateHandler_3() { return &___m_CertificateHandler_3; }
  2690. inline void set_m_CertificateHandler_3(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * value)
  2691. {
  2692. ___m_CertificateHandler_3 = value;
  2693. Il2CppCodeGenWriteBarrier((void**)(&___m_CertificateHandler_3), (void*)value);
  2694. }
  2695. inline static int32_t get_offset_of_m_Uri_4() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___m_Uri_4)); }
  2696. inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * get_m_Uri_4() const { return ___m_Uri_4; }
  2697. inline Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 ** get_address_of_m_Uri_4() { return &___m_Uri_4; }
  2698. inline void set_m_Uri_4(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * value)
  2699. {
  2700. ___m_Uri_4 = value;
  2701. Il2CppCodeGenWriteBarrier((void**)(&___m_Uri_4), (void*)value);
  2702. }
  2703. inline static int32_t get_offset_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5)); }
  2704. inline bool get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() const { return ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; }
  2705. inline bool* get_address_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() { return &___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; }
  2706. inline void set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(bool value)
  2707. {
  2708. ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = value;
  2709. }
  2710. inline static int32_t get_offset_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6)); }
  2711. inline bool get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() const { return ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; }
  2712. inline bool* get_address_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() { return &___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; }
  2713. inline void set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(bool value)
  2714. {
  2715. ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = value;
  2716. }
  2717. inline static int32_t get_offset_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E, ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7)); }
  2718. inline bool get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() const { return ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; }
  2719. inline bool* get_address_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() { return &___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; }
  2720. inline void set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(bool value)
  2721. {
  2722. ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = value;
  2723. }
  2724. };
  2725. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest
  2726. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke
  2727. {
  2728. intptr_t ___m_Ptr_0;
  2729. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke ___m_DownloadHandler_1;
  2730. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke ___m_UploadHandler_2;
  2731. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke ___m_CertificateHandler_3;
  2732. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_Uri_4;
  2733. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  2734. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  2735. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  2736. };
  2737. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest
  2738. struct UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com
  2739. {
  2740. intptr_t ___m_Ptr_0;
  2741. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com* ___m_DownloadHandler_1;
  2742. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com* ___m_UploadHandler_2;
  2743. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com* ___m_CertificateHandler_3;
  2744. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___m_Uri_4;
  2745. int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5;
  2746. int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6;
  2747. int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7;
  2748. };
  2749. // UnityEngine.Networking.UnityWebRequestAsyncOperation
  2750. struct UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86
  2751. {
  2752. public:
  2753. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequestAsyncOperation::<webRequest>k__BackingField
  2754. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___U3CwebRequestU3Ek__BackingField_2;
  2755. public:
  2756. inline static int32_t get_offset_of_U3CwebRequestU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396, ___U3CwebRequestU3Ek__BackingField_2)); }
  2757. inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * get_U3CwebRequestU3Ek__BackingField_2() const { return ___U3CwebRequestU3Ek__BackingField_2; }
  2758. inline UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E ** get_address_of_U3CwebRequestU3Ek__BackingField_2() { return &___U3CwebRequestU3Ek__BackingField_2; }
  2759. inline void set_U3CwebRequestU3Ek__BackingField_2(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * value)
  2760. {
  2761. ___U3CwebRequestU3Ek__BackingField_2 = value;
  2762. Il2CppCodeGenWriteBarrier((void**)(&___U3CwebRequestU3Ek__BackingField_2), (void*)value);
  2763. }
  2764. };
  2765. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  2766. struct UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_pinvoke : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke
  2767. {
  2768. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField_2;
  2769. };
  2770. // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation
  2771. struct UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_com : public AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com
  2772. {
  2773. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com* ___U3CwebRequestU3Ek__BackingField_2;
  2774. };
  2775. // System.Uri
  2776. struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 : public RuntimeObject
  2777. {
  2778. public:
  2779. // System.String System.Uri::m_String
  2780. String_t* ___m_String_16;
  2781. // System.String System.Uri::m_originalUnicodeString
  2782. String_t* ___m_originalUnicodeString_17;
  2783. // System.UriParser System.Uri::m_Syntax
  2784. UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * ___m_Syntax_18;
  2785. // System.String System.Uri::m_DnsSafeHost
  2786. String_t* ___m_DnsSafeHost_19;
  2787. // System.Uri/Flags System.Uri::m_Flags
  2788. uint64_t ___m_Flags_20;
  2789. // System.Uri/UriInfo System.Uri::m_Info
  2790. UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * ___m_Info_21;
  2791. // System.Boolean System.Uri::m_iriParsing
  2792. bool ___m_iriParsing_22;
  2793. public:
  2794. inline static int32_t get_offset_of_m_String_16() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_String_16)); }
  2795. inline String_t* get_m_String_16() const { return ___m_String_16; }
  2796. inline String_t** get_address_of_m_String_16() { return &___m_String_16; }
  2797. inline void set_m_String_16(String_t* value)
  2798. {
  2799. ___m_String_16 = value;
  2800. Il2CppCodeGenWriteBarrier((void**)(&___m_String_16), (void*)value);
  2801. }
  2802. inline static int32_t get_offset_of_m_originalUnicodeString_17() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_originalUnicodeString_17)); }
  2803. inline String_t* get_m_originalUnicodeString_17() const { return ___m_originalUnicodeString_17; }
  2804. inline String_t** get_address_of_m_originalUnicodeString_17() { return &___m_originalUnicodeString_17; }
  2805. inline void set_m_originalUnicodeString_17(String_t* value)
  2806. {
  2807. ___m_originalUnicodeString_17 = value;
  2808. Il2CppCodeGenWriteBarrier((void**)(&___m_originalUnicodeString_17), (void*)value);
  2809. }
  2810. inline static int32_t get_offset_of_m_Syntax_18() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Syntax_18)); }
  2811. inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * get_m_Syntax_18() const { return ___m_Syntax_18; }
  2812. inline UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A ** get_address_of_m_Syntax_18() { return &___m_Syntax_18; }
  2813. inline void set_m_Syntax_18(UriParser_t6DEBE5C6CDC3C29C9019CD951C7ECEBD6A5D3E3A * value)
  2814. {
  2815. ___m_Syntax_18 = value;
  2816. Il2CppCodeGenWriteBarrier((void**)(&___m_Syntax_18), (void*)value);
  2817. }
  2818. inline static int32_t get_offset_of_m_DnsSafeHost_19() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_DnsSafeHost_19)); }
  2819. inline String_t* get_m_DnsSafeHost_19() const { return ___m_DnsSafeHost_19; }
  2820. inline String_t** get_address_of_m_DnsSafeHost_19() { return &___m_DnsSafeHost_19; }
  2821. inline void set_m_DnsSafeHost_19(String_t* value)
  2822. {
  2823. ___m_DnsSafeHost_19 = value;
  2824. Il2CppCodeGenWriteBarrier((void**)(&___m_DnsSafeHost_19), (void*)value);
  2825. }
  2826. inline static int32_t get_offset_of_m_Flags_20() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Flags_20)); }
  2827. inline uint64_t get_m_Flags_20() const { return ___m_Flags_20; }
  2828. inline uint64_t* get_address_of_m_Flags_20() { return &___m_Flags_20; }
  2829. inline void set_m_Flags_20(uint64_t value)
  2830. {
  2831. ___m_Flags_20 = value;
  2832. }
  2833. inline static int32_t get_offset_of_m_Info_21() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_Info_21)); }
  2834. inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * get_m_Info_21() const { return ___m_Info_21; }
  2835. inline UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 ** get_address_of_m_Info_21() { return &___m_Info_21; }
  2836. inline void set_m_Info_21(UriInfo_tCB2302A896132D1F70E47C3895FAB9A0F2A6EE45 * value)
  2837. {
  2838. ___m_Info_21 = value;
  2839. Il2CppCodeGenWriteBarrier((void**)(&___m_Info_21), (void*)value);
  2840. }
  2841. inline static int32_t get_offset_of_m_iriParsing_22() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612, ___m_iriParsing_22)); }
  2842. inline bool get_m_iriParsing_22() const { return ___m_iriParsing_22; }
  2843. inline bool* get_address_of_m_iriParsing_22() { return &___m_iriParsing_22; }
  2844. inline void set_m_iriParsing_22(bool value)
  2845. {
  2846. ___m_iriParsing_22 = value;
  2847. }
  2848. };
  2849. struct Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields
  2850. {
  2851. public:
  2852. // System.String System.Uri::UriSchemeFile
  2853. String_t* ___UriSchemeFile_0;
  2854. // System.String System.Uri::UriSchemeFtp
  2855. String_t* ___UriSchemeFtp_1;
  2856. // System.String System.Uri::UriSchemeGopher
  2857. String_t* ___UriSchemeGopher_2;
  2858. // System.String System.Uri::UriSchemeHttp
  2859. String_t* ___UriSchemeHttp_3;
  2860. // System.String System.Uri::UriSchemeHttps
  2861. String_t* ___UriSchemeHttps_4;
  2862. // System.String System.Uri::UriSchemeWs
  2863. String_t* ___UriSchemeWs_5;
  2864. // System.String System.Uri::UriSchemeWss
  2865. String_t* ___UriSchemeWss_6;
  2866. // System.String System.Uri::UriSchemeMailto
  2867. String_t* ___UriSchemeMailto_7;
  2868. // System.String System.Uri::UriSchemeNews
  2869. String_t* ___UriSchemeNews_8;
  2870. // System.String System.Uri::UriSchemeNntp
  2871. String_t* ___UriSchemeNntp_9;
  2872. // System.String System.Uri::UriSchemeNetTcp
  2873. String_t* ___UriSchemeNetTcp_10;
  2874. // System.String System.Uri::UriSchemeNetPipe
  2875. String_t* ___UriSchemeNetPipe_11;
  2876. // System.String System.Uri::SchemeDelimiter
  2877. String_t* ___SchemeDelimiter_12;
  2878. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized
  2879. bool ___s_ConfigInitialized_23;
  2880. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing
  2881. bool ___s_ConfigInitializing_24;
  2882. // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope
  2883. int32_t ___s_IdnScope_25;
  2884. // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing
  2885. bool ___s_IriParsing_26;
  2886. // System.Boolean System.Uri::useDotNetRelativeOrAbsolute
  2887. bool ___useDotNetRelativeOrAbsolute_27;
  2888. // System.Boolean System.Uri::IsWindowsFileSystem
  2889. bool ___IsWindowsFileSystem_29;
  2890. // System.Object System.Uri::s_initLock
  2891. RuntimeObject * ___s_initLock_30;
  2892. // System.Char[] System.Uri::HexLowerChars
  2893. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___HexLowerChars_34;
  2894. // System.Char[] System.Uri::_WSchars
  2895. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ____WSchars_35;
  2896. public:
  2897. inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFile_0)); }
  2898. inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; }
  2899. inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; }
  2900. inline void set_UriSchemeFile_0(String_t* value)
  2901. {
  2902. ___UriSchemeFile_0 = value;
  2903. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFile_0), (void*)value);
  2904. }
  2905. inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeFtp_1)); }
  2906. inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; }
  2907. inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; }
  2908. inline void set_UriSchemeFtp_1(String_t* value)
  2909. {
  2910. ___UriSchemeFtp_1 = value;
  2911. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeFtp_1), (void*)value);
  2912. }
  2913. inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeGopher_2)); }
  2914. inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; }
  2915. inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; }
  2916. inline void set_UriSchemeGopher_2(String_t* value)
  2917. {
  2918. ___UriSchemeGopher_2 = value;
  2919. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeGopher_2), (void*)value);
  2920. }
  2921. inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttp_3)); }
  2922. inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; }
  2923. inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; }
  2924. inline void set_UriSchemeHttp_3(String_t* value)
  2925. {
  2926. ___UriSchemeHttp_3 = value;
  2927. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttp_3), (void*)value);
  2928. }
  2929. inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeHttps_4)); }
  2930. inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; }
  2931. inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; }
  2932. inline void set_UriSchemeHttps_4(String_t* value)
  2933. {
  2934. ___UriSchemeHttps_4 = value;
  2935. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeHttps_4), (void*)value);
  2936. }
  2937. inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWs_5)); }
  2938. inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; }
  2939. inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; }
  2940. inline void set_UriSchemeWs_5(String_t* value)
  2941. {
  2942. ___UriSchemeWs_5 = value;
  2943. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWs_5), (void*)value);
  2944. }
  2945. inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeWss_6)); }
  2946. inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; }
  2947. inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; }
  2948. inline void set_UriSchemeWss_6(String_t* value)
  2949. {
  2950. ___UriSchemeWss_6 = value;
  2951. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeWss_6), (void*)value);
  2952. }
  2953. inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeMailto_7)); }
  2954. inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; }
  2955. inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; }
  2956. inline void set_UriSchemeMailto_7(String_t* value)
  2957. {
  2958. ___UriSchemeMailto_7 = value;
  2959. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeMailto_7), (void*)value);
  2960. }
  2961. inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNews_8)); }
  2962. inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; }
  2963. inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; }
  2964. inline void set_UriSchemeNews_8(String_t* value)
  2965. {
  2966. ___UriSchemeNews_8 = value;
  2967. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNews_8), (void*)value);
  2968. }
  2969. inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNntp_9)); }
  2970. inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; }
  2971. inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; }
  2972. inline void set_UriSchemeNntp_9(String_t* value)
  2973. {
  2974. ___UriSchemeNntp_9 = value;
  2975. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNntp_9), (void*)value);
  2976. }
  2977. inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetTcp_10)); }
  2978. inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; }
  2979. inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; }
  2980. inline void set_UriSchemeNetTcp_10(String_t* value)
  2981. {
  2982. ___UriSchemeNetTcp_10 = value;
  2983. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetTcp_10), (void*)value);
  2984. }
  2985. inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___UriSchemeNetPipe_11)); }
  2986. inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; }
  2987. inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; }
  2988. inline void set_UriSchemeNetPipe_11(String_t* value)
  2989. {
  2990. ___UriSchemeNetPipe_11 = value;
  2991. Il2CppCodeGenWriteBarrier((void**)(&___UriSchemeNetPipe_11), (void*)value);
  2992. }
  2993. inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___SchemeDelimiter_12)); }
  2994. inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; }
  2995. inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; }
  2996. inline void set_SchemeDelimiter_12(String_t* value)
  2997. {
  2998. ___SchemeDelimiter_12 = value;
  2999. Il2CppCodeGenWriteBarrier((void**)(&___SchemeDelimiter_12), (void*)value);
  3000. }
  3001. inline static int32_t get_offset_of_s_ConfigInitialized_23() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitialized_23)); }
  3002. inline bool get_s_ConfigInitialized_23() const { return ___s_ConfigInitialized_23; }
  3003. inline bool* get_address_of_s_ConfigInitialized_23() { return &___s_ConfigInitialized_23; }
  3004. inline void set_s_ConfigInitialized_23(bool value)
  3005. {
  3006. ___s_ConfigInitialized_23 = value;
  3007. }
  3008. inline static int32_t get_offset_of_s_ConfigInitializing_24() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_ConfigInitializing_24)); }
  3009. inline bool get_s_ConfigInitializing_24() const { return ___s_ConfigInitializing_24; }
  3010. inline bool* get_address_of_s_ConfigInitializing_24() { return &___s_ConfigInitializing_24; }
  3011. inline void set_s_ConfigInitializing_24(bool value)
  3012. {
  3013. ___s_ConfigInitializing_24 = value;
  3014. }
  3015. inline static int32_t get_offset_of_s_IdnScope_25() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IdnScope_25)); }
  3016. inline int32_t get_s_IdnScope_25() const { return ___s_IdnScope_25; }
  3017. inline int32_t* get_address_of_s_IdnScope_25() { return &___s_IdnScope_25; }
  3018. inline void set_s_IdnScope_25(int32_t value)
  3019. {
  3020. ___s_IdnScope_25 = value;
  3021. }
  3022. inline static int32_t get_offset_of_s_IriParsing_26() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_IriParsing_26)); }
  3023. inline bool get_s_IriParsing_26() const { return ___s_IriParsing_26; }
  3024. inline bool* get_address_of_s_IriParsing_26() { return &___s_IriParsing_26; }
  3025. inline void set_s_IriParsing_26(bool value)
  3026. {
  3027. ___s_IriParsing_26 = value;
  3028. }
  3029. inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_27() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___useDotNetRelativeOrAbsolute_27)); }
  3030. inline bool get_useDotNetRelativeOrAbsolute_27() const { return ___useDotNetRelativeOrAbsolute_27; }
  3031. inline bool* get_address_of_useDotNetRelativeOrAbsolute_27() { return &___useDotNetRelativeOrAbsolute_27; }
  3032. inline void set_useDotNetRelativeOrAbsolute_27(bool value)
  3033. {
  3034. ___useDotNetRelativeOrAbsolute_27 = value;
  3035. }
  3036. inline static int32_t get_offset_of_IsWindowsFileSystem_29() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___IsWindowsFileSystem_29)); }
  3037. inline bool get_IsWindowsFileSystem_29() const { return ___IsWindowsFileSystem_29; }
  3038. inline bool* get_address_of_IsWindowsFileSystem_29() { return &___IsWindowsFileSystem_29; }
  3039. inline void set_IsWindowsFileSystem_29(bool value)
  3040. {
  3041. ___IsWindowsFileSystem_29 = value;
  3042. }
  3043. inline static int32_t get_offset_of_s_initLock_30() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___s_initLock_30)); }
  3044. inline RuntimeObject * get_s_initLock_30() const { return ___s_initLock_30; }
  3045. inline RuntimeObject ** get_address_of_s_initLock_30() { return &___s_initLock_30; }
  3046. inline void set_s_initLock_30(RuntimeObject * value)
  3047. {
  3048. ___s_initLock_30 = value;
  3049. Il2CppCodeGenWriteBarrier((void**)(&___s_initLock_30), (void*)value);
  3050. }
  3051. inline static int32_t get_offset_of_HexLowerChars_34() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ___HexLowerChars_34)); }
  3052. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_HexLowerChars_34() const { return ___HexLowerChars_34; }
  3053. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_HexLowerChars_34() { return &___HexLowerChars_34; }
  3054. inline void set_HexLowerChars_34(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  3055. {
  3056. ___HexLowerChars_34 = value;
  3057. Il2CppCodeGenWriteBarrier((void**)(&___HexLowerChars_34), (void*)value);
  3058. }
  3059. inline static int32_t get_offset_of__WSchars_35() { return static_cast<int32_t>(offsetof(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_StaticFields, ____WSchars_35)); }
  3060. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get__WSchars_35() const { return ____WSchars_35; }
  3061. inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of__WSchars_35() { return &____WSchars_35; }
  3062. inline void set__WSchars_35(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
  3063. {
  3064. ____WSchars_35 = value;
  3065. Il2CppCodeGenWriteBarrier((void**)(&____WSchars_35), (void*)value);
  3066. }
  3067. };
  3068. // System.Action`1<UnityEngine.AsyncOperation>
  3069. struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 : public MulticastDelegate_t
  3070. {
  3071. public:
  3072. public:
  3073. };
  3074. // System.ArgumentException
  3075. struct ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  3076. {
  3077. public:
  3078. // System.String System.ArgumentException::m_paramName
  3079. String_t* ___m_paramName_17;
  3080. public:
  3081. inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00, ___m_paramName_17)); }
  3082. inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
  3083. inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
  3084. inline void set_m_paramName_17(String_t* value)
  3085. {
  3086. ___m_paramName_17 = value;
  3087. Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
  3088. }
  3089. };
  3090. // UnityEngine.Networking.DownloadHandlerBuffer
  3091. struct DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D : public DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB
  3092. {
  3093. public:
  3094. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandlerBuffer::m_NativeData
  3095. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_NativeData_1;
  3096. public:
  3097. inline static int32_t get_offset_of_m_NativeData_1() { return static_cast<int32_t>(offsetof(DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D, ___m_NativeData_1)); }
  3098. inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_m_NativeData_1() const { return ___m_NativeData_1; }
  3099. inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_m_NativeData_1() { return &___m_NativeData_1; }
  3100. inline void set_m_NativeData_1(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
  3101. {
  3102. ___m_NativeData_1 = value;
  3103. }
  3104. };
  3105. // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  3106. struct DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_pinvoke : public DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke
  3107. {
  3108. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_NativeData_1;
  3109. };
  3110. // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandlerBuffer
  3111. struct DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_com : public DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com
  3112. {
  3113. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_NativeData_1;
  3114. };
  3115. // System.FormatException
  3116. struct FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  3117. {
  3118. public:
  3119. public:
  3120. };
  3121. // System.InvalidOperationException
  3122. struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  3123. {
  3124. public:
  3125. public:
  3126. };
  3127. // System.NotSupportedException
  3128. struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62
  3129. {
  3130. public:
  3131. public:
  3132. };
  3133. // UnityEngine.Networking.UploadHandlerRaw
  3134. struct UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 : public UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA
  3135. {
  3136. public:
  3137. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.UploadHandlerRaw::m_Payload
  3138. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Payload_1;
  3139. public:
  3140. inline static int32_t get_offset_of_m_Payload_1() { return static_cast<int32_t>(offsetof(UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669, ___m_Payload_1)); }
  3141. inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 get_m_Payload_1() const { return ___m_Payload_1; }
  3142. inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * get_address_of_m_Payload_1() { return &___m_Payload_1; }
  3143. inline void set_m_Payload_1(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 value)
  3144. {
  3145. ___m_Payload_1 = value;
  3146. }
  3147. };
  3148. // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandlerRaw
  3149. struct UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_pinvoke : public UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke
  3150. {
  3151. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Payload_1;
  3152. };
  3153. // Native definition for COM marshalling of UnityEngine.Networking.UploadHandlerRaw
  3154. struct UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_com : public UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com
  3155. {
  3156. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___m_Payload_1;
  3157. };
  3158. #ifdef __clang__
  3159. #pragma clang diagnostic pop
  3160. #endif
  3161. // System.Byte[]
  3162. struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray
  3163. {
  3164. public:
  3165. ALIGN_FIELD (8) uint8_t m_Items[1];
  3166. public:
  3167. inline uint8_t GetAt(il2cpp_array_size_t index) const
  3168. {
  3169. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3170. return m_Items[index];
  3171. }
  3172. inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
  3173. {
  3174. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3175. return m_Items + index;
  3176. }
  3177. inline void SetAt(il2cpp_array_size_t index, uint8_t value)
  3178. {
  3179. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3180. m_Items[index] = value;
  3181. }
  3182. inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
  3183. {
  3184. return m_Items[index];
  3185. }
  3186. inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
  3187. {
  3188. return m_Items + index;
  3189. }
  3190. inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
  3191. {
  3192. m_Items[index] = value;
  3193. }
  3194. };
  3195. // System.Char[]
  3196. struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray
  3197. {
  3198. public:
  3199. ALIGN_FIELD (8) Il2CppChar m_Items[1];
  3200. public:
  3201. inline Il2CppChar GetAt(il2cpp_array_size_t index) const
  3202. {
  3203. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3204. return m_Items[index];
  3205. }
  3206. inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index)
  3207. {
  3208. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3209. return m_Items + index;
  3210. }
  3211. inline void SetAt(il2cpp_array_size_t index, Il2CppChar value)
  3212. {
  3213. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3214. m_Items[index] = value;
  3215. }
  3216. inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
  3217. {
  3218. return m_Items[index];
  3219. }
  3220. inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
  3221. {
  3222. return m_Items + index;
  3223. }
  3224. inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
  3225. {
  3226. m_Items[index] = value;
  3227. }
  3228. };
  3229. // System.String[]
  3230. struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray
  3231. {
  3232. public:
  3233. ALIGN_FIELD (8) String_t* m_Items[1];
  3234. public:
  3235. inline String_t* GetAt(il2cpp_array_size_t index) const
  3236. {
  3237. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3238. return m_Items[index];
  3239. }
  3240. inline String_t** GetAddressAt(il2cpp_array_size_t index)
  3241. {
  3242. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3243. return m_Items + index;
  3244. }
  3245. inline void SetAt(il2cpp_array_size_t index, String_t* value)
  3246. {
  3247. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3248. m_Items[index] = value;
  3249. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3250. }
  3251. inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
  3252. {
  3253. return m_Items[index];
  3254. }
  3255. inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3256. {
  3257. return m_Items + index;
  3258. }
  3259. inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
  3260. {
  3261. m_Items[index] = value;
  3262. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3263. }
  3264. };
  3265. // System.Object[]
  3266. struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray
  3267. {
  3268. public:
  3269. ALIGN_FIELD (8) RuntimeObject * m_Items[1];
  3270. public:
  3271. inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
  3272. {
  3273. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3274. return m_Items[index];
  3275. }
  3276. inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
  3277. {
  3278. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3279. return m_Items + index;
  3280. }
  3281. inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
  3282. {
  3283. IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
  3284. m_Items[index] = value;
  3285. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3286. }
  3287. inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
  3288. {
  3289. return m_Items[index];
  3290. }
  3291. inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
  3292. {
  3293. return m_Items + index;
  3294. }
  3295. inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
  3296. {
  3297. m_Items[index] = value;
  3298. Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
  3299. }
  3300. };
  3301. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled);
  3302. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke_back(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled);
  3303. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke_cleanup(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled);
  3304. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_pinvoke(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke& marshaled);
  3305. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_pinvoke_back(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke& marshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled);
  3306. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_pinvoke_cleanup(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke& marshaled);
  3307. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled);
  3308. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke_back(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled);
  3309. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke_cleanup(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled);
  3310. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled);
  3311. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com_back(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled);
  3312. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com_cleanup(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled);
  3313. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_com(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com& marshaled);
  3314. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_com_back(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com& marshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled);
  3315. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_com_cleanup(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com& marshaled);
  3316. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled);
  3317. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com_back(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled);
  3318. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com_cleanup(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled);
  3319. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_pinvoke(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke& marshaled);
  3320. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_pinvoke_back(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke& marshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled);
  3321. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_pinvoke_cleanup(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke& marshaled);
  3322. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_com(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com& marshaled);
  3323. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_com_back(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com& marshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled);
  3324. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_com_cleanup(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com& marshaled);
  3325. // System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
  3326. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method);
  3327. // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr<System.Byte>(Unity.Collections.NativeArray`1<!!0>)
  3328. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___nativeArray0, const RuntimeMethod* method);
  3329. // !0[] Unity.Collections.NativeArray`1<System.Byte>::ToArray()
  3330. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method);
  3331. // Unity.Collections.NativeArray`1<!!0> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
  3332. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_gshared (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method);
  3333. // System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator()
  3334. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method);
  3335. // System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current()
  3336. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method);
  3337. // !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key()
  3338. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method);
  3339. // !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value()
  3340. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method);
  3341. // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext()
  3342. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method);
  3343. // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose()
  3344. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method);
  3345. // System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(!0[],Unity.Collections.Allocator)
  3346. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___allocator1, const RuntimeMethod* method);
  3347. // System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
  3348. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_gshared (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method);
  3349. // System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
  3350. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
  3351. // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0)
  3352. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method);
  3353. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor()
  3354. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, const RuntimeMethod* method);
  3355. // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1)
  3356. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_mA8F31A10EE1129768E13ACC4DC847B05EAD2A055_gshared (Dictionary_2_tBD1E3221EBD04CEBDA49B84779912E91F56B958D * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
  3357. // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32)
  3358. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method);
  3359. // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count()
  3360. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
  3361. // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr)
  3362. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method);
  3363. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  3364. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m463507E5A95CB00F1F90CCF7215F51C611AFD495 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, const RuntimeMethod* method);
  3365. // System.Void System.Object::.ctor()
  3366. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method);
  3367. // System.Void System.Object::Finalize()
  3368. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A (RuntimeObject * __this, const RuntimeMethod* method);
  3369. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  3370. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_m3F88C5E48B7B7A80D993B575F5E906159AAEEDEA (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method);
  3371. // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)
  3372. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* DownloadHandler_InternalGetByteArray_m1B4D723FA86D064B492ADBE3A9A13DD03209A4DC (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___dh0, const RuntimeMethod* method);
  3373. // System.Boolean Unity.Collections.NativeArray`1<System.Byte>::get_IsCreated()
  3374. inline bool NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method)
  3375. {
  3376. return (( bool (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_gshared)(__this, method);
  3377. }
  3378. // System.Void* Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::GetUnsafeReadOnlyPtr<System.Byte>(Unity.Collections.NativeArray`1<!!0>)
  3379. inline void* NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ___nativeArray0, const RuntimeMethod* method)
  3380. {
  3381. return (( void* (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 , const RuntimeMethod*))NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_gshared)(___nativeArray0, method);
  3382. }
  3383. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  3384. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * DownloadHandler_GetTextEncoder_mEAABE10BCA8FFAADB30C5623A10A9072A21D002D (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method);
  3385. // System.String System.String::CreateString(System.SByte*,System.Int32,System.Int32,System.Text.Encoding)
  3386. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_CreateString_m9636360FEBE95705BBD46CF8D4DCDCFCDAE269A6 (String_t* __this, int8_t* ___value0, int32_t ___startIndex1, int32_t ___length2, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___enc3, const RuntimeMethod* method);
  3387. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  3388. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m3B0EEFBDC91FF18736B3FC0BD7A6319104056A0D (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method);
  3389. // System.Boolean System.String::IsNullOrEmpty(System.String)
  3390. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C (String_t* ___value0, const RuntimeMethod* method);
  3391. // System.Int32 System.String::IndexOf(System.String,System.StringComparison)
  3392. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA (String_t* __this, String_t* ___value0, int32_t ___comparisonType1, const RuntimeMethod* method);
  3393. // System.Int32 System.String::IndexOf(System.Char,System.Int32)
  3394. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mAD7052CB25BA1D60A8F055AA89D09809F61233DB (String_t* __this, Il2CppChar ___value0, int32_t ___startIndex1, const RuntimeMethod* method);
  3395. // System.String System.String::Substring(System.Int32)
  3396. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190 (String_t* __this, int32_t ___startIndex0, const RuntimeMethod* method);
  3397. // System.String System.String::Trim()
  3398. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2 (String_t* __this, const RuntimeMethod* method);
  3399. // System.String System.String::Trim(System.Char[])
  3400. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Trim_m10D967E03EDCB170227406426558B7FEA27CD6CC (String_t* __this, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___trimChars0, const RuntimeMethod* method);
  3401. // System.Int32 System.String::IndexOf(System.Char)
  3402. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE (String_t* __this, Il2CppChar ___value0, const RuntimeMethod* method);
  3403. // System.String System.String::Substring(System.Int32,System.Int32)
  3404. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B (String_t* __this, int32_t ___startIndex0, int32_t ___length1, const RuntimeMethod* method);
  3405. // System.Text.Encoding System.Text.Encoding::GetEncoding(System.String)
  3406. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_GetEncoding_mD5352F1522341280E9025D16463E63916549F9E3 (String_t* ___name0, const RuntimeMethod* method);
  3407. // System.String System.String::Format(System.String,System.Object,System.Object)
  3408. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66 (String_t* ___format0, RuntimeObject * ___arg01, RuntimeObject * ___arg12, const RuntimeMethod* method);
  3409. // System.Void UnityEngine.Debug::LogWarning(System.Object)
  3410. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7 (RuntimeObject * ___message0, const RuntimeMethod* method);
  3411. // System.Text.Encoding System.Text.Encoding::get_UTF8()
  3412. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E (const RuntimeMethod* method);
  3413. // !0[] Unity.Collections.NativeArray`1<System.Byte>::ToArray()
  3414. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method)
  3415. {
  3416. return (( ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2_gshared)(__this, method);
  3417. }
  3418. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  3419. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_mC639D070FF70AC550BBBAFD23CBB3A26DFE915AA (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * ___obj0, const RuntimeMethod* method);
  3420. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  3421. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m8E441D5C617BA103B97FE41893F0A4A323701B0F (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method);
  3422. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  3423. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mC53D69B05DEAEA785BD0187902DAD86C34EED256 (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * __this, const RuntimeMethod* method);
  3424. // System.Byte* UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)
  3425. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_mB9941AAF481941D5B6AF4508BFC36C4E3F9B6E84 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___dh0, int32_t* ___length1, const RuntimeMethod* method);
  3426. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::DisposeNativeArray(Unity.Collections.NativeArray`1<System.Byte>&)
  3427. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_DisposeNativeArray_m2365DE8408221A3EB547FF7BE2B65B9C96395C79 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___data0, const RuntimeMethod* method);
  3428. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::CreateNativeArrayForNativeData(Unity.Collections.NativeArray`1<System.Byte>&,System.Byte*,System.Int32)
  3429. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_CreateNativeArrayForNativeData_m5A9C9F6499AD8661C3E5C48AB229BA40BE7D219F (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___data0, uint8_t* ___bytes1, int32_t ___length2, const RuntimeMethod* method);
  3430. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  3431. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mAB0AA5ADCEC7681FF429DA0F0D3E7A650A02C376 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method);
  3432. // Unity.Collections.NativeArray`1<!!0> Unity.Collections.LowLevel.Unsafe.NativeArrayUnsafeUtility::ConvertExistingDataToNativeArray<System.Byte>(System.Void*,System.Int32,Unity.Collections.Allocator)
  3433. inline NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C (void* ___dataPointer0, int32_t ___length1, int32_t ___allocator2, const RuntimeMethod* method)
  3434. {
  3435. return (( NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 (*) (void*, int32_t, int32_t, const RuntimeMethod*))NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_gshared)(___dataPointer0, ___length1, ___allocator2, method);
  3436. }
  3437. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  3438. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m632DFDB95C422B9C7536D9E2CB04CC722FFF2E28 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3439. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  3440. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m9E5ABFEE29761B2AD53E92777882E4EFB97BEBBB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3441. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  3442. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m6F638476FBD7ABDCEF8E7AD449266E505B85D20B_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method);
  3443. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  3444. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_m4A63470C788CF2A03D34EEA3F8968B430A111397_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method);
  3445. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  3446. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_mBF38D6481CE40882846C679F3E51C8D70B502E3C_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method);
  3447. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  3448. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED (const RuntimeMethod* method);
  3449. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  3450. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_mD7D5534B728DF7F2422999B58C98394253A2035C (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3451. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  3452. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m27BCB349EB7FA610705EA03CC817A1A394BA392F (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___value0, const RuntimeMethod* method);
  3453. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  3454. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m603E0D94414F046DE2A60E127A715B3303F46AA7 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___value0, const RuntimeMethod* method);
  3455. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  3456. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___value0, const RuntimeMethod* method);
  3457. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  3458. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___value0, const RuntimeMethod* method);
  3459. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  3460. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mA28A13FCE2CBA777049A6C1A3FABA079B3820771 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3461. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  3462. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_m9317079471CFF46A5274FFF1E360CA5237D9270D (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3463. // System.Void System.GC::SuppressFinalize(System.Object)
  3464. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_SuppressFinalize_mEE880E988C6AF32AA2F67F2D62715281EAA41555 (RuntimeObject * ___obj0, const RuntimeMethod* method);
  3465. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  3466. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m815A891A7C495D05DACB60147CB557C78CE89289_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3467. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  3468. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * UnityWebRequest_get_downloadHandler_mCE0A0C53A63419FE5AE25915AFB36EABE294C732 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3469. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  3470. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mBFAC496EFE17D72583D9D81B170EE0F2FABDC07B_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3471. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  3472. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * UnityWebRequest_get_uploadHandler_mFB108ADD5C75C440300BF85B87D4A730A158CC38 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3473. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  3474. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m47CB38750DEFA8A9FB426E650A78F62FEA68D0C0_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3475. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  3476. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * UnityWebRequest_get_certificateHandler_mACA97B9158F17FFBEF489753C6E42302EEDF057D (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3477. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  3478. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_m460859ACFE411145B199D8261B5ADDA4DECCA493 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, const RuntimeMethod* method);
  3479. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  3480. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * UnityWebRequest_BeginWebRequest_m8F87C90D83FAC942DC2DE126E99D97A4CBCFD2D6 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3481. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  3482. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mAB1AE2613FEF8FAFB463E73D70043A89B2FC39C3_inline (UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___value0, const RuntimeMethod* method);
  3483. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  3484. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3485. // System.Void System.InvalidOperationException::.ctor(System.String)
  3486. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * __this, String_t* ___message0, const RuntimeMethod* method);
  3487. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  3488. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_m1303F8415C7A460B16DDB5CC841832221A90ABED (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, int32_t ___methodType0, const RuntimeMethod* method);
  3489. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  3490. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C (int32_t ___err0, const RuntimeMethod* method);
  3491. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  3492. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_m86A1258AD72D36E5B4D9D2735045DD26FE7AE79D (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___customMethodName0, const RuntimeMethod* method);
  3493. // System.Void System.ArgumentException::.ctor(System.String)
  3494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * __this, String_t* ___message0, const RuntimeMethod* method);
  3495. // System.String System.String::ToUpper()
  3496. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToUpper_m4BC629F8059C3E0C4E3F7C7E04DB50EBB0C1A05A (String_t* __this, const RuntimeMethod* method);
  3497. // System.Boolean System.String::op_Equality(System.String,System.String)
  3498. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method);
  3499. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  3500. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, int32_t ___methodType0, const RuntimeMethod* method);
  3501. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  3502. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_mD7B421D1B4CCF480EA333CDE465C1C5D588715DA (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___customMethodName0, const RuntimeMethod* method);
  3503. // UnityEngine.Networking.UnityWebRequest/Result UnityEngine.Networking.UnityWebRequest::get_result()
  3504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3505. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  3506. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3507. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  3508. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m317BB359DAAE3592F55F8C989FC076FEA76BC7C0 (int64_t ___responseCode0, const RuntimeMethod* method);
  3509. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  3510. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m6BF0FA43C1D180750DB0E955D0AE2DEB855C70F3 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method);
  3511. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  3512. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_mD575E2FEAC3685E9030B528769BFAC7CE0534290 (String_t* ___targetUrl0, String_t* ___localUrl1, const RuntimeMethod* method);
  3513. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  3514. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mE850CF14CE4F5EE57063771AC9B0C686C4856F25 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, const RuntimeMethod* method);
  3515. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  3516. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m46220F73F184F5205C1F7E44EBFB868700E89400 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, const RuntimeMethod* method);
  3517. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  3518. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m8D0FE7BF624976F2510A90F61A69CEB22739F2BE (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method);
  3519. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  3520. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mDDEF10B06EF15A1B826F3402D786FA5E2B7B16BE (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___uh0, const RuntimeMethod* method);
  3521. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  3522. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m2B4503FF83DB5348F5ADCC8F23144414429BD36A (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___dh0, const RuntimeMethod* method);
  3523. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  3524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m01FD35970E4B4FC45FC99A648408F53A8B164774 (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * __this, const RuntimeMethod* method);
  3525. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  3526. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m6F640D6320ABA5A1ED08C3B2A259DB67372DCECB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, String_t* ___method1, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___downloadHandler2, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___uploadHandler3, const RuntimeMethod* method);
  3527. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  3528. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mC2ED369A4ACE53AFF2E70A38BE95EB48D68D4975 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, String_t* ___method1, const RuntimeMethod* method);
  3529. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm)
  3530. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m10DB6A633A5A7E8C7CDDDE2966D7D9A114E6ABB0 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___request0, WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * ___formData1, const RuntimeMethod* method);
  3531. // System.Byte[] UnityEngine.WWWForm::get_data()
  3532. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWForm_get_data_mCCE0C63DF2E0CA4F831F9AB78D6111BB8C669177 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method);
  3533. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  3534. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mB46261D7AA64B605D5CA8FF9027A4A32E57A7BD9 (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method);
  3535. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
  3536. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method);
  3537. // System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.String,System.String>::GetEnumerator()
  3538. inline Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB Dictionary_2_GetEnumerator_m99462FD95A811068FBA964A97213B4CA59FF8A31 (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * __this, const RuntimeMethod* method)
  3539. {
  3540. return (( Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB (*) (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mD80BA563C32BF7C1EE95C9FC1BE3B423716CCE68_gshared)(__this, method);
  3541. }
  3542. // System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::get_Current()
  3543. inline KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC Enumerator_get_Current_m0E89F960CC17EAEBA38A57A632911BB4A6D9EAFF_inline (Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB * __this, const RuntimeMethod* method)
  3544. {
  3545. return (( KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC (*) (Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB *, const RuntimeMethod*))Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline)(__this, method);
  3546. }
  3547. // !0 System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Key()
  3548. inline String_t* KeyValuePair_2_get_Key_m9B9D89C6D4523685BDBB873E3E76754E89171468_inline (KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC * __this, const RuntimeMethod* method)
  3549. {
  3550. return (( String_t* (*) (KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC *, const RuntimeMethod*))KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline)(__this, method);
  3551. }
  3552. // !1 System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value()
  3553. inline String_t* KeyValuePair_2_get_Value_m73C2858A70CE1C9A1AEE4134B4E3B136CA4B719F_inline (KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC * __this, const RuntimeMethod* method)
  3554. {
  3555. return (( String_t* (*) (KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline)(__this, method);
  3556. }
  3557. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  3558. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method);
  3559. // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::MoveNext()
  3560. inline bool Enumerator_MoveNext_mA57D4325DBD9D10EB3E43C99CC18DB6C3CE85FC8 (Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB * __this, const RuntimeMethod* method)
  3561. {
  3562. return (( bool (*) (Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB *, const RuntimeMethod*))Enumerator_MoveNext_mCAD84084129516BD41DE5CC3E1FABA5A8DF836D0_gshared)(__this, method);
  3563. }
  3564. // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::Dispose()
  3565. inline void Enumerator_Dispose_m76E867298698AA2B89F9D57E21CEFCD16B372D22 (Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB * __this, const RuntimeMethod* method)
  3566. {
  3567. (( void (*) (Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB *, const RuntimeMethod*))Enumerator_Dispose_m85CA135BAB22C9F0C87C84AB90FF6740D1859279_gshared)(__this, method);
  3568. }
  3569. // System.Void UnityEngine.AsyncOperation::.ctor()
  3570. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncOperation__ctor_mFC0E13622A23CD19A631B9ABBA506683B71A2E4A (AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * __this, const RuntimeMethod* method);
  3571. // System.Void UnityEngine.Networking.UploadHandler::Release()
  3572. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_mE5F9BC6193A7285099D6409401414D886AB522C8 (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method);
  3573. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  3574. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mC1A1A5EDEDD4F9D7A6A8E9854E0CC6943B51158F (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method);
  3575. // System.Void Unity.Collections.NativeArray`1<System.Byte>::.ctor(!0[],Unity.Collections.Allocator)
  3576. inline void NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___allocator1, const RuntimeMethod* method)
  3577. {
  3578. (( void (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, const RuntimeMethod*))NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2_gshared)(__this, ___array0, ___allocator1, method);
  3579. }
  3580. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)
  3581. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m61972C0C29EA1A56916C0182E3213850ED30D0EF (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 * ___self0, uint8_t* ___data1, int32_t ___dataLength2, const RuntimeMethod* method);
  3582. // System.Void Unity.Collections.NativeArray`1<System.Byte>::Dispose()
  3583. inline void NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * __this, const RuntimeMethod* method)
  3584. {
  3585. (( void (*) (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *, const RuntimeMethod*))NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_gshared)(__this, method);
  3586. }
  3587. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  3588. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mC449C0EDAD6666DDE349A6F9796CEC7C86154F41 (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method);
  3589. // System.Text.Encoding System.Text.Encoding::get_ASCII()
  3590. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_get_ASCII_mD3E8370997347A3F6822BDA50BC0A1DBC0059173 (const RuntimeMethod* method);
  3591. // System.Void System.Collections.Generic.List`1<System.Byte[]>::.ctor()
  3592. inline void List_1__ctor_mC74F8340E150B8F9520188937677421C55AF5C05 (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * __this, const RuntimeMethod* method)
  3593. {
  3594. (( void (*) (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
  3595. }
  3596. // System.Void System.Collections.Generic.List`1<System.String>::.ctor()
  3597. inline void List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9 (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, const RuntimeMethod* method)
  3598. {
  3599. (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
  3600. }
  3601. // System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32)
  3602. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A (int32_t ___minInclusive0, int32_t ___maxExclusive1, const RuntimeMethod* method);
  3603. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String,System.Text.Encoding)
  3604. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m71508C882B6F77219D3430D8992DC3C340492976 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, String_t* ___value1, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e2, const RuntimeMethod* method);
  3605. // System.Void System.Collections.Generic.List`1<System.String>::Add(!0)
  3606. inline void List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, String_t* ___item0, const RuntimeMethod* method)
  3607. {
  3608. (( void (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, String_t*, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
  3609. }
  3610. // System.Void System.Collections.Generic.List`1<System.Byte[]>::Add(!0)
  3611. inline void List_1_Add_mDA769E25FD7E7BEF999CC57347B6B5F4E90620F8 (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___item0, const RuntimeMethod* method)
  3612. {
  3613. (( void (*) (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, const RuntimeMethod*))List_1_Add_mF15250BF947CA27BE9A23C08BAC6DB6F180B0EDD_gshared)(__this, ___item0, method);
  3614. }
  3615. // System.String System.String::Concat(System.String,System.String,System.String)
  3616. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44 (String_t* ___str00, String_t* ___str11, String_t* ___str22, const RuntimeMethod* method);
  3617. // System.String System.Int32::ToString()
  3618. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method);
  3619. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String)
  3620. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, String_t* ___value1, const RuntimeMethod* method);
  3621. // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor()
  3622. inline void Dictionary_2__ctor_mA6747E78BD4DF1D09D9091C1B3EBAE0FDB200666 (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * __this, const RuntimeMethod* method)
  3623. {
  3624. (( void (*) (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 *, const RuntimeMethod*))Dictionary_2__ctor_m2C8EE5C13636D67F6C451C4935049F534AEC658F_gshared)(__this, method);
  3625. }
  3626. // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(!0,!1)
  3627. inline void Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * __this, String_t* ___key0, String_t* ___value1, const RuntimeMethod* method)
  3628. {
  3629. (( void (*) (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_mA8F31A10EE1129768E13ACC4DC847B05EAD2A055_gshared)(__this, ___key0, ___value1, method);
  3630. }
  3631. // System.Void System.IO.MemoryStream::.ctor(System.Int32)
  3632. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MemoryStream__ctor_mCB4274FF375AD786CCED424E80B047E0DEC50938 (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * __this, int32_t ___capacity0, const RuntimeMethod* method);
  3633. // !0 System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
  3634. inline String_t* List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * __this, int32_t ___index0, const RuntimeMethod* method)
  3635. {
  3636. return (( String_t* (*) (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method);
  3637. }
  3638. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding)
  3639. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mCD4E3A5FA7817A3240AE6E1DA57FEB9C09539DA9 (String_t* ___s0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e1, const RuntimeMethod* method);
  3640. // System.Int32 System.String::IndexOf(System.String)
  3641. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
  3642. // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding)
  3643. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m9D74D3126E50EE48005E3DCEAD4771F63AF399B4 (String_t* ___toEncode0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e1, const RuntimeMethod* method);
  3644. // System.String System.String::Concat(System.String[])
  3645. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method);
  3646. // !0 System.Collections.Generic.List`1<System.Byte[]>::get_Item(System.Int32)
  3647. inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_inline (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * __this, int32_t ___index0, const RuntimeMethod* method)
  3648. {
  3649. return (( ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* (*) (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *, int32_t, const RuntimeMethod*))List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline)(__this, ___index0, method);
  3650. }
  3651. // System.Int32 System.Collections.Generic.List`1<System.Byte[]>::get_Count()
  3652. inline int32_t List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_inline (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * __this, const RuntimeMethod* method)
  3653. {
  3654. return (( int32_t (*) (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method);
  3655. }
  3656. // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[])
  3657. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_DataEncode_m50A486970E8DFF6B99EC71217F626398C2C2C159 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___toEncode0, const RuntimeMethod* method);
  3658. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  3659. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689 (const RuntimeMethod* method);
  3660. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  3661. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_Encode_mD7D4534ACBC6CE1F98B223CE466352D976C5E99A (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___space2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___forbidden3, bool ___uppercase4, const RuntimeMethod* method);
  3662. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  3663. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mBDB7732AE3F1FD6B9930421075B8D41C4BB7B95B (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, uint8_t ___b1, const RuntimeMethod* method);
  3664. // System.Void UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[],System.Byte&,System.Byte&)
  3665. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_mD3D590134382D259F0B064153AB858F9E02E6BB8 (uint8_t ___b0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___hexChars1, uint8_t* ___byte02, uint8_t* ___byte13, const RuntimeMethod* method);
  3666. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  3667. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_Decode_mB359AE9097B819D6E6909685B5BED52DDFA62D15 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___space2, const RuntimeMethod* method);
  3668. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  3669. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB3E4FBBAA9EAD2EE53DE8C31C5AAE9B2A8809126 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___index1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___comperand2, const RuntimeMethod* method);
  3670. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  3671. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m8FEDC476CA7F4A244169D3F4DF2A75B09BD602DA (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___offset1, const RuntimeMethod* method);
  3672. // System.Int32 System.String::get_Length()
  3673. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method);
  3674. // System.Int32 System.Runtime.CompilerServices.RuntimeHelpers::get_OffsetToStringData()
  3675. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42 (const RuntimeMethod* method);
  3676. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte*,System.Int32)
  3677. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mCC8053ABE623CEE979FA611BD304FA1EA557B2A3 (uint8_t* ___input0, int32_t ___inputLength1, const RuntimeMethod* method);
  3678. // System.Char System.String::get_Chars(System.Int32)
  3679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70 (String_t* __this, int32_t ___index0, const RuntimeMethod* method);
  3680. // System.Void System.Uri::.ctor(System.String,System.UriKind)
  3681. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, int32_t ___uriKind1, const RuntimeMethod* method);
  3682. // System.Boolean System.Uri::get_IsAbsoluteUri()
  3683. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3684. // System.String System.Uri::get_AbsoluteUri()
  3685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3686. // System.Void System.Uri::.ctor(System.Uri,System.Uri)
  3687. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m77D32DF0ABC88A040214913D87A07F2C522CCD18 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___relativeUri1, const RuntimeMethod* method);
  3688. // System.Void System.Uri::.ctor(System.String)
  3689. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, String_t* ___uriString0, const RuntimeMethod* method);
  3690. // System.Void System.Uri::.ctor(System.Uri,System.String)
  3691. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___baseUri0, String_t* ___relativeUri1, const RuntimeMethod* method);
  3692. // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
  3693. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_op_Equality_mB322C9CBB45846441BDCA7357E7D28123824ED83 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri10, Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___uri21, const RuntimeMethod* method);
  3694. // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
  3695. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859 (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___input0, const RuntimeMethod* method);
  3696. // System.String System.Uri::get_Scheme()
  3697. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3698. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  3699. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mD6C6C27478BADC8EDF42621924F2ACD6D1B21E7D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___targetUri0, String_t* ___targetUrl1, bool ___prependProtocol2, const RuntimeMethod* method);
  3700. // System.Boolean System.Uri::get_IsFile()
  3701. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsFile_mCFA022C6E4641EBD7285A01056B7E201CEFD2C73 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3702. // System.Boolean System.Uri::get_IsLoopback()
  3703. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_m6988313CE348064A6A068347D878DDC51594B710 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3704. // System.String System.Uri::get_OriginalString()
  3705. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3706. // System.String System.Uri::get_AbsolutePath()
  3707. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mB845A99D0CEB442AAF90B24A95EE7509C34C6306 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3708. // System.Boolean System.String::Contains(System.String)
  3709. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
  3710. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  3711. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m1B0D9D85074E0B8390C890B9E56F389F4EC6C8DF (String_t* ___encoded0, const RuntimeMethod* method);
  3712. // System.String System.String::Concat(System.String,System.String)
  3713. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method);
  3714. // System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32)
  3715. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mE87B9746FC40A7ECC0149A24685BD0713459FAF1 (StringBuilder_t * __this, String_t* ___value0, int32_t ___capacity1, const RuntimeMethod* method);
  3716. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
  3717. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
  3718. // System.Boolean System.String::StartsWith(System.String)
  3719. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12 (String_t* __this, String_t* ___value0, const RuntimeMethod* method);
  3720. // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
  3721. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
  3722. // System.String System.Uri::get_PathAndQuery()
  3723. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_m0FFF28F15DF953C5866C2A0DEEA2034ECE6A0F35 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3724. // System.String System.Uri::get_Fragment()
  3725. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m1734B2D3F27F38AA342CB65885DE732160501E72 (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * __this, const RuntimeMethod* method);
  3726. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  3727. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_URLDecode_mFBF699CBF92B0184ED37E461550430B7454BD0FB (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___toEncode0, const RuntimeMethod* method);
  3728. // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
  3729. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Regex__ctor_m8BB2137D7B0A93CD70FD3061579C7456BB65216E (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * __this, String_t* ___pattern0, const RuntimeMethod* method);
  3730. // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException()
  3731. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929 (const RuntimeMethod* method);
  3732. #ifdef __clang__
  3733. #pragma clang diagnostic push
  3734. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3735. #pragma clang diagnostic ignored "-Wunused-variable"
  3736. #endif
  3737. #ifdef __clang__
  3738. #pragma clang diagnostic pop
  3739. #endif
  3740. #ifdef __clang__
  3741. #pragma clang diagnostic push
  3742. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3743. #pragma clang diagnostic ignored "-Wunused-variable"
  3744. #endif
  3745. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  3746. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled)
  3747. {
  3748. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  3749. }
  3750. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke_back(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled)
  3751. {
  3752. intptr_t unmarshaled_m_Ptr_temp_0;
  3753. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  3754. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  3755. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  3756. }
  3757. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  3758. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_pinvoke_cleanup(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_pinvoke& marshaled)
  3759. {
  3760. }
  3761. // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler
  3762. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled)
  3763. {
  3764. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  3765. }
  3766. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com_back(const CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled, CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E& unmarshaled)
  3767. {
  3768. intptr_t unmarshaled_m_Ptr_temp_0;
  3769. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  3770. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  3771. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  3772. }
  3773. // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler
  3774. IL2CPP_EXTERN_C void CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshal_com_cleanup(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E_marshaled_com& marshaled)
  3775. {
  3776. }
  3777. // System.Void UnityEngine.Networking.CertificateHandler::Release()
  3778. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Release_m463507E5A95CB00F1F90CCF7215F51C611AFD495 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, const RuntimeMethod* method)
  3779. {
  3780. typedef void (*CertificateHandler_Release_m463507E5A95CB00F1F90CCF7215F51C611AFD495_ftn) (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E *);
  3781. static CertificateHandler_Release_m463507E5A95CB00F1F90CCF7215F51C611AFD495_ftn _il2cpp_icall_func;
  3782. if (!_il2cpp_icall_func)
  3783. _il2cpp_icall_func = (CertificateHandler_Release_m463507E5A95CB00F1F90CCF7215F51C611AFD495_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::Release()");
  3784. _il2cpp_icall_func(__this);
  3785. }
  3786. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[])
  3787. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_mE76D686A7A10A86799FBF1F107EF3544D4A9D815 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___certificateData0, const RuntimeMethod* method)
  3788. {
  3789. bool V_0 = false;
  3790. {
  3791. V_0 = (bool)0;
  3792. goto IL_0005;
  3793. }
  3794. IL_0005:
  3795. {
  3796. bool L_0 = V_0;
  3797. return L_0;
  3798. }
  3799. }
  3800. // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificateNative(System.Byte[])
  3801. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_m7AA7136975CEB1635B201B08BB9B04059E7D0D16 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___certificateData0, const RuntimeMethod* method)
  3802. {
  3803. bool V_0 = false;
  3804. {
  3805. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___certificateData0;
  3806. bool L_1;
  3807. L_1 = VirtualFuncInvoker1< bool, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(4 /* System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) */, __this, L_0);
  3808. V_0 = L_1;
  3809. goto IL_000b;
  3810. }
  3811. IL_000b:
  3812. {
  3813. bool L_2 = V_0;
  3814. return L_2;
  3815. }
  3816. }
  3817. // System.Void UnityEngine.Networking.CertificateHandler::Dispose()
  3818. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_m460859ACFE411145B199D8261B5ADDA4DECCA493 (CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * __this, const RuntimeMethod* method)
  3819. {
  3820. static bool s_Il2CppMethodInitialized;
  3821. if (!s_Il2CppMethodInitialized)
  3822. {
  3823. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  3824. s_Il2CppMethodInitialized = true;
  3825. }
  3826. bool V_0 = false;
  3827. {
  3828. intptr_t L_0 = __this->get_m_Ptr_0();
  3829. bool L_1;
  3830. L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  3831. V_0 = L_1;
  3832. bool L_2 = V_0;
  3833. if (!L_2)
  3834. {
  3835. goto IL_0029;
  3836. }
  3837. }
  3838. {
  3839. CertificateHandler_Release_m463507E5A95CB00F1F90CCF7215F51C611AFD495(__this, /*hidden argument*/NULL);
  3840. __this->set_m_Ptr_0((intptr_t)(0));
  3841. }
  3842. IL_0029:
  3843. {
  3844. return;
  3845. }
  3846. }
  3847. #ifdef __clang__
  3848. #pragma clang diagnostic pop
  3849. #endif
  3850. #ifdef __clang__
  3851. #pragma clang diagnostic push
  3852. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  3853. #pragma clang diagnostic ignored "-Wunused-variable"
  3854. #endif
  3855. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  3856. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled)
  3857. {
  3858. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  3859. }
  3860. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke_back(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled)
  3861. {
  3862. intptr_t unmarshaled_m_Ptr_temp_0;
  3863. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  3864. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  3865. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  3866. }
  3867. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  3868. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_pinvoke_cleanup(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_pinvoke& marshaled)
  3869. {
  3870. }
  3871. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler
  3872. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled)
  3873. {
  3874. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  3875. }
  3876. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com_back(const DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB& unmarshaled)
  3877. {
  3878. intptr_t unmarshaled_m_Ptr_temp_0;
  3879. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  3880. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  3881. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  3882. }
  3883. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler
  3884. IL2CPP_EXTERN_C void DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshal_com_cleanup(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB_marshaled_com& marshaled)
  3885. {
  3886. }
  3887. // System.Void UnityEngine.Networking.DownloadHandler::Release()
  3888. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Release_m3F88C5E48B7B7A80D993B575F5E906159AAEEDEA (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  3889. {
  3890. typedef void (*DownloadHandler_Release_m3F88C5E48B7B7A80D993B575F5E906159AAEEDEA_ftn) (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB *);
  3891. static DownloadHandler_Release_m3F88C5E48B7B7A80D993B575F5E906159AAEEDEA_ftn _il2cpp_icall_func;
  3892. if (!_il2cpp_icall_func)
  3893. _il2cpp_icall_func = (DownloadHandler_Release_m3F88C5E48B7B7A80D993B575F5E906159AAEEDEA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::Release()");
  3894. _il2cpp_icall_func(__this);
  3895. }
  3896. // System.Void UnityEngine.Networking.DownloadHandler::.ctor()
  3897. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m8E441D5C617BA103B97FE41893F0A4A323701B0F (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  3898. {
  3899. {
  3900. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  3901. return;
  3902. }
  3903. }
  3904. // System.Void UnityEngine.Networking.DownloadHandler::Finalize()
  3905. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_m433AE11AD2DCBB21800F0ED5497FD3B762098202 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  3906. {
  3907. Exception_t * __last_unhandled_exception = 0;
  3908. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  3909. {
  3910. }
  3911. IL_0001:
  3912. try
  3913. {// begin try (depth: 1)
  3914. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::Dispose() */, __this);
  3915. IL2CPP_LEAVE(0x13, FINALLY_000b);
  3916. }// end try (depth: 1)
  3917. catch(Il2CppExceptionWrapper& e)
  3918. {
  3919. __last_unhandled_exception = (Exception_t *)e.ex;
  3920. goto FINALLY_000b;
  3921. }
  3922. FINALLY_000b:
  3923. {// begin finally (depth: 1)
  3924. Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
  3925. IL2CPP_END_FINALLY(11)
  3926. }// end finally (depth: 1)
  3927. IL2CPP_CLEANUP(11)
  3928. {
  3929. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  3930. IL2CPP_JUMP_TBL(0x13, IL_0013)
  3931. }
  3932. IL_0013:
  3933. {
  3934. return;
  3935. }
  3936. }
  3937. // System.Void UnityEngine.Networking.DownloadHandler::Dispose()
  3938. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_mAB0AA5ADCEC7681FF429DA0F0D3E7A650A02C376 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  3939. {
  3940. static bool s_Il2CppMethodInitialized;
  3941. if (!s_Il2CppMethodInitialized)
  3942. {
  3943. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  3944. s_Il2CppMethodInitialized = true;
  3945. }
  3946. bool V_0 = false;
  3947. {
  3948. intptr_t L_0 = __this->get_m_Ptr_0();
  3949. bool L_1;
  3950. L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  3951. V_0 = L_1;
  3952. bool L_2 = V_0;
  3953. if (!L_2)
  3954. {
  3955. goto IL_0029;
  3956. }
  3957. }
  3958. {
  3959. DownloadHandler_Release_m3F88C5E48B7B7A80D993B575F5E906159AAEEDEA(__this, /*hidden argument*/NULL);
  3960. __this->set_m_Ptr_0((intptr_t)(0));
  3961. }
  3962. IL_0029:
  3963. {
  3964. return;
  3965. }
  3966. }
  3967. // System.String UnityEngine.Networking.DownloadHandler::get_text()
  3968. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_mD89D7125640800A8F5C4B9401C080C405953828A (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  3969. {
  3970. String_t* V_0 = NULL;
  3971. {
  3972. String_t* L_0;
  3973. L_0 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String UnityEngine.Networking.DownloadHandler::GetText() */, __this);
  3974. V_0 = L_0;
  3975. goto IL_000a;
  3976. }
  3977. IL_000a:
  3978. {
  3979. String_t* L_1 = V_0;
  3980. return L_1;
  3981. }
  3982. }
  3983. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData()
  3984. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 DownloadHandler_GetNativeData_mC1E570E4E36940EE76C1B9577ECE2726235D15F6 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  3985. {
  3986. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0;
  3987. memset((&V_0), 0, sizeof(V_0));
  3988. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_1;
  3989. memset((&V_1), 0, sizeof(V_1));
  3990. {
  3991. il2cpp_codegen_initobj((&V_0), sizeof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ));
  3992. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0 = V_0;
  3993. V_1 = L_0;
  3994. goto IL_000d;
  3995. }
  3996. IL_000d:
  3997. {
  3998. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_1 = V_1;
  3999. return L_1;
  4000. }
  4001. }
  4002. // System.Byte[] UnityEngine.Networking.DownloadHandler::GetData()
  4003. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* DownloadHandler_GetData_mBBC1BE90737613B3C322E4C1B3E971729924D62B (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  4004. {
  4005. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
  4006. {
  4007. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0;
  4008. L_0 = DownloadHandler_InternalGetByteArray_m1B4D723FA86D064B492ADBE3A9A13DD03209A4DC(__this, /*hidden argument*/NULL);
  4009. V_0 = L_0;
  4010. goto IL_000a;
  4011. }
  4012. IL_000a:
  4013. {
  4014. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = V_0;
  4015. return L_1;
  4016. }
  4017. }
  4018. // System.String UnityEngine.Networking.DownloadHandler::GetText()
  4019. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_mF8C51EFA7A82C9C198A3207D0FED84EEB8ED373F (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  4020. {
  4021. static bool s_Il2CppMethodInitialized;
  4022. if (!s_Il2CppMethodInitialized)
  4023. {
  4024. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_RuntimeMethod_var);
  4025. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4026. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  4027. s_Il2CppMethodInitialized = true;
  4028. }
  4029. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0;
  4030. memset((&V_0), 0, sizeof(V_0));
  4031. bool V_1 = false;
  4032. String_t* V_2 = NULL;
  4033. int32_t G_B3_0 = 0;
  4034. {
  4035. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_0;
  4036. L_0 = VirtualFuncInvoker0< NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 >::Invoke(6 /* Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData() */, __this);
  4037. V_0 = L_0;
  4038. bool L_1;
  4039. L_1 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0), /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4040. if (!L_1)
  4041. {
  4042. goto IL_001d;
  4043. }
  4044. }
  4045. {
  4046. int32_t L_2;
  4047. L_2 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0))->___m_Length_1);
  4048. G_B3_0 = ((((int32_t)L_2) > ((int32_t)0))? 1 : 0);
  4049. goto IL_001e;
  4050. }
  4051. IL_001d:
  4052. {
  4053. G_B3_0 = 0;
  4054. }
  4055. IL_001e:
  4056. {
  4057. V_1 = (bool)G_B3_0;
  4058. bool L_3 = V_1;
  4059. if (!L_3)
  4060. {
  4061. goto IL_003f;
  4062. }
  4063. }
  4064. {
  4065. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_4 = V_0;
  4066. void* L_5;
  4067. L_5 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88(L_4, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_RuntimeMethod_var);
  4068. int32_t L_6;
  4069. L_6 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0))->___m_Length_1);
  4070. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_7;
  4071. L_7 = DownloadHandler_GetTextEncoder_mEAABE10BCA8FFAADB30C5623A10A9072A21D002D(__this, /*hidden argument*/NULL);
  4072. String_t* L_8;
  4073. L_8 = String_CreateString_m9636360FEBE95705BBD46CF8D4DCDCFCDAE269A6(NULL, (int8_t*)(int8_t*)L_5, 0, L_6, L_7, /*hidden argument*/NULL);
  4074. V_2 = L_8;
  4075. goto IL_0047;
  4076. }
  4077. IL_003f:
  4078. {
  4079. V_2 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  4080. goto IL_0047;
  4081. }
  4082. IL_0047:
  4083. {
  4084. String_t* L_9 = V_2;
  4085. return L_9;
  4086. }
  4087. }
  4088. // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder()
  4089. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * DownloadHandler_GetTextEncoder_mEAABE10BCA8FFAADB30C5623A10A9072A21D002D (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  4090. {
  4091. static bool s_Il2CppMethodInitialized;
  4092. if (!s_Il2CppMethodInitialized)
  4093. {
  4094. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var);
  4095. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571);
  4096. s_Il2CppMethodInitialized = true;
  4097. }
  4098. String_t* V_0 = NULL;
  4099. bool V_1 = false;
  4100. int32_t V_2 = 0;
  4101. bool V_3 = false;
  4102. int32_t V_4 = 0;
  4103. bool V_5 = false;
  4104. String_t* V_6 = NULL;
  4105. int32_t V_7 = 0;
  4106. bool V_8 = false;
  4107. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * V_9 = NULL;
  4108. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * V_10 = NULL;
  4109. NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * V_11 = NULL;
  4110. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  4111. il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
  4112. {
  4113. String_t* L_0;
  4114. L_0 = DownloadHandler_GetContentType_m3B0EEFBDC91FF18736B3FC0BD7A6319104056A0D(__this, /*hidden argument*/NULL);
  4115. V_0 = L_0;
  4116. String_t* L_1 = V_0;
  4117. bool L_2;
  4118. L_2 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_1, /*hidden argument*/NULL);
  4119. V_1 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
  4120. bool L_3 = V_1;
  4121. if (!L_3)
  4122. {
  4123. goto IL_00e7;
  4124. }
  4125. }
  4126. {
  4127. String_t* L_4 = V_0;
  4128. NullCheck(L_4);
  4129. int32_t L_5;
  4130. L_5 = String_IndexOf_mD99F5378A4220A0DA0D5097007417E777722ABDA(L_4, _stringLiteral5CE7A1E1E42333BF53E138868B7E6871FD1FC571, 5, /*hidden argument*/NULL);
  4131. V_2 = L_5;
  4132. int32_t L_6 = V_2;
  4133. V_3 = (bool)((((int32_t)L_6) > ((int32_t)(-1)))? 1 : 0);
  4134. bool L_7 = V_3;
  4135. if (!L_7)
  4136. {
  4137. goto IL_00e6;
  4138. }
  4139. }
  4140. {
  4141. String_t* L_8 = V_0;
  4142. int32_t L_9 = V_2;
  4143. NullCheck(L_8);
  4144. int32_t L_10;
  4145. L_10 = String_IndexOf_mAD7052CB25BA1D60A8F055AA89D09809F61233DB(L_8, ((int32_t)61), L_9, /*hidden argument*/NULL);
  4146. V_4 = L_10;
  4147. int32_t L_11 = V_4;
  4148. V_5 = (bool)((((int32_t)L_11) > ((int32_t)(-1)))? 1 : 0);
  4149. bool L_12 = V_5;
  4150. if (!L_12)
  4151. {
  4152. goto IL_00e5;
  4153. }
  4154. }
  4155. {
  4156. String_t* L_13 = V_0;
  4157. int32_t L_14 = V_4;
  4158. NullCheck(L_13);
  4159. String_t* L_15;
  4160. L_15 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_13, ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1)), /*hidden argument*/NULL);
  4161. NullCheck(L_15);
  4162. String_t* L_16;
  4163. L_16 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_15, /*hidden argument*/NULL);
  4164. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_17 = (CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34*)SZArrayNew(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34_il2cpp_TypeInfo_var, (uint32_t)2);
  4165. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_18 = L_17;
  4166. NullCheck(L_18);
  4167. (L_18)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39));
  4168. CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* L_19 = L_18;
  4169. NullCheck(L_19);
  4170. (L_19)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34));
  4171. NullCheck(L_16);
  4172. String_t* L_20;
  4173. L_20 = String_Trim_m10D967E03EDCB170227406426558B7FEA27CD6CC(L_16, L_19, /*hidden argument*/NULL);
  4174. NullCheck(L_20);
  4175. String_t* L_21;
  4176. L_21 = String_Trim_m3FEC641D7046124B7F381701903B50B5171DE0A2(L_20, /*hidden argument*/NULL);
  4177. V_6 = L_21;
  4178. String_t* L_22 = V_6;
  4179. NullCheck(L_22);
  4180. int32_t L_23;
  4181. L_23 = String_IndexOf_mEE2D2F738175E3FF05580366D6226DBD673CA2BE(L_22, ((int32_t)59), /*hidden argument*/NULL);
  4182. V_7 = L_23;
  4183. int32_t L_24 = V_7;
  4184. V_8 = (bool)((((int32_t)L_24) > ((int32_t)(-1)))? 1 : 0);
  4185. bool L_25 = V_8;
  4186. if (!L_25)
  4187. {
  4188. goto IL_0099;
  4189. }
  4190. }
  4191. {
  4192. String_t* L_26 = V_6;
  4193. int32_t L_27 = V_7;
  4194. NullCheck(L_26);
  4195. String_t* L_28;
  4196. L_28 = String_Substring_m7A39A2AC0893AE940CF4CEC841326D56FFB9D86B(L_26, 0, L_27, /*hidden argument*/NULL);
  4197. V_6 = L_28;
  4198. }
  4199. IL_0099:
  4200. {
  4201. }
  4202. IL_009a:
  4203. try
  4204. {// begin try (depth: 1)
  4205. String_t* L_29 = V_6;
  4206. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_30;
  4207. L_30 = Encoding_GetEncoding_mD5352F1522341280E9025D16463E63916549F9E3(L_29, /*hidden argument*/NULL);
  4208. V_9 = L_30;
  4209. goto IL_00f0;
  4210. }// end try (depth: 1)
  4211. catch(Il2CppExceptionWrapper& e)
  4212. {
  4213. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  4214. {
  4215. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  4216. goto CATCH_00a6;
  4217. }
  4218. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  4219. {
  4220. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  4221. goto CATCH_00c5;
  4222. }
  4223. throw e;
  4224. }
  4225. CATCH_00a6:
  4226. {// begin catch(System.ArgumentException)
  4227. V_10 = ((ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)IL2CPP_GET_ACTIVE_EXCEPTION(ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *));
  4228. String_t* L_31 = V_6;
  4229. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_32 = V_10;
  4230. NullCheck(L_32);
  4231. String_t* L_33;
  4232. L_33 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_32);
  4233. String_t* L_34;
  4234. L_34 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_31, L_33, /*hidden argument*/NULL);
  4235. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var)));
  4236. Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(L_34, /*hidden argument*/NULL);
  4237. IL2CPP_POP_ACTIVE_EXCEPTION();
  4238. goto IL_00e4;
  4239. }// end catch (depth: 1)
  4240. CATCH_00c5:
  4241. {// begin catch(System.NotSupportedException)
  4242. V_11 = ((NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)IL2CPP_GET_ACTIVE_EXCEPTION(NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *));
  4243. String_t* L_35 = V_6;
  4244. NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_36 = V_11;
  4245. NullCheck(L_36);
  4246. String_t* L_37;
  4247. L_37 = VirtualFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_36);
  4248. String_t* L_38;
  4249. L_38 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8DA696190A9052B3303D45C87CA50BEDCFA7494C)), L_35, L_37, /*hidden argument*/NULL);
  4250. IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var)));
  4251. Debug_LogWarning_m24085D883C9E74D7AB423F0625E13259923960E7(L_38, /*hidden argument*/NULL);
  4252. IL2CPP_POP_ACTIVE_EXCEPTION();
  4253. goto IL_00e4;
  4254. }// end catch (depth: 1)
  4255. IL_00e4:
  4256. {
  4257. }
  4258. IL_00e5:
  4259. {
  4260. }
  4261. IL_00e6:
  4262. {
  4263. }
  4264. IL_00e7:
  4265. {
  4266. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_39;
  4267. L_39 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  4268. V_9 = L_39;
  4269. goto IL_00f0;
  4270. }
  4271. IL_00f0:
  4272. {
  4273. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_40 = V_9;
  4274. return L_40;
  4275. }
  4276. }
  4277. // System.String UnityEngine.Networking.DownloadHandler::GetContentType()
  4278. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_m3B0EEFBDC91FF18736B3FC0BD7A6319104056A0D (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, const RuntimeMethod* method)
  4279. {
  4280. typedef String_t* (*DownloadHandler_GetContentType_m3B0EEFBDC91FF18736B3FC0BD7A6319104056A0D_ftn) (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB *);
  4281. static DownloadHandler_GetContentType_m3B0EEFBDC91FF18736B3FC0BD7A6319104056A0D_ftn _il2cpp_icall_func;
  4282. if (!_il2cpp_icall_func)
  4283. _il2cpp_icall_func = (DownloadHandler_GetContentType_m3B0EEFBDC91FF18736B3FC0BD7A6319104056A0D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType()");
  4284. String_t* icallRetVal = _il2cpp_icall_func(__this);
  4285. return icallRetVal;
  4286. }
  4287. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLengthHeader(System.UInt64)
  4288. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLengthHeader_mD3B607EDDF946896B9877C91DE1EDD6C39B16CF3 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, uint64_t ___contentLength0, const RuntimeMethod* method)
  4289. {
  4290. {
  4291. uint64_t L_0 = ___contentLength0;
  4292. VirtualActionInvoker1< int32_t >::Invoke(10 /* System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32) */, __this, ((int32_t)((int32_t)L_0)));
  4293. return;
  4294. }
  4295. }
  4296. // System.Void UnityEngine.Networking.DownloadHandler::ReceiveContentLength(System.Int32)
  4297. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandler_ReceiveContentLength_m7788739919D3BB09DBF3EEE1AE211C2701672316 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * __this, int32_t ___contentLength0, const RuntimeMethod* method)
  4298. {
  4299. {
  4300. return;
  4301. }
  4302. }
  4303. // System.Byte* UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)
  4304. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t* DownloadHandler_InternalGetByteArray_mB9941AAF481941D5B6AF4508BFC36C4E3F9B6E84 (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___dh0, int32_t* ___length1, const RuntimeMethod* method)
  4305. {
  4306. typedef uint8_t* (*DownloadHandler_InternalGetByteArray_mB9941AAF481941D5B6AF4508BFC36C4E3F9B6E84_ftn) (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB *, int32_t*);
  4307. static DownloadHandler_InternalGetByteArray_mB9941AAF481941D5B6AF4508BFC36C4E3F9B6E84_ftn _il2cpp_icall_func;
  4308. if (!_il2cpp_icall_func)
  4309. _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_mB9941AAF481941D5B6AF4508BFC36C4E3F9B6E84_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler,System.Int32&)");
  4310. uint8_t* icallRetVal = _il2cpp_icall_func(___dh0, ___length1);
  4311. return icallRetVal;
  4312. }
  4313. // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)
  4314. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* DownloadHandler_InternalGetByteArray_m1B4D723FA86D064B492ADBE3A9A13DD03209A4DC (DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___dh0, const RuntimeMethod* method)
  4315. {
  4316. static bool s_Il2CppMethodInitialized;
  4317. if (!s_Il2CppMethodInitialized)
  4318. {
  4319. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2_RuntimeMethod_var);
  4320. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4321. s_Il2CppMethodInitialized = true;
  4322. }
  4323. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_0;
  4324. memset((&V_0), 0, sizeof(V_0));
  4325. bool V_1 = false;
  4326. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL;
  4327. {
  4328. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_0 = ___dh0;
  4329. NullCheck(L_0);
  4330. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_1;
  4331. L_1 = VirtualFuncInvoker0< NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 >::Invoke(6 /* Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandler::GetNativeData() */, L_0);
  4332. V_0 = L_1;
  4333. bool L_2;
  4334. L_2 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0), /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4335. V_1 = L_2;
  4336. bool L_3 = V_1;
  4337. if (!L_3)
  4338. {
  4339. goto IL_001d;
  4340. }
  4341. }
  4342. {
  4343. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4;
  4344. L_4 = NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)(&V_0), /*hidden argument*/NativeArray_1_ToArray_m5CD86FF349DE4853F12AE17ED01728455A72C1D2_RuntimeMethod_var);
  4345. V_2 = L_4;
  4346. goto IL_0021;
  4347. }
  4348. IL_001d:
  4349. {
  4350. V_2 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
  4351. goto IL_0021;
  4352. }
  4353. IL_0021:
  4354. {
  4355. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = V_2;
  4356. return L_5;
  4357. }
  4358. }
  4359. #ifdef __clang__
  4360. #pragma clang diagnostic pop
  4361. #endif
  4362. #ifdef __clang__
  4363. #pragma clang diagnostic push
  4364. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4365. #pragma clang diagnostic ignored "-Wunused-variable"
  4366. #endif
  4367. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  4368. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshal_pinvoke(const DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D& unmarshaled, DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_pinvoke& marshaled)
  4369. {
  4370. Exception_t* ___m_NativeData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_NativeData' of type 'DownloadHandlerBuffer'.");
  4371. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_NativeData_1Exception, NULL);
  4372. }
  4373. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshal_pinvoke_back(const DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D& unmarshaled)
  4374. {
  4375. Exception_t* ___m_NativeData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_NativeData' of type 'DownloadHandlerBuffer'.");
  4376. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_NativeData_1Exception, NULL);
  4377. }
  4378. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  4379. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshal_pinvoke_cleanup(DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_pinvoke& marshaled)
  4380. {
  4381. }
  4382. // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  4383. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshal_com(const DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D& unmarshaled, DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_com& marshaled)
  4384. {
  4385. Exception_t* ___m_NativeData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_NativeData' of type 'DownloadHandlerBuffer'.");
  4386. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_NativeData_1Exception, NULL);
  4387. }
  4388. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshal_com_back(const DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_com& marshaled, DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D& unmarshaled)
  4389. {
  4390. Exception_t* ___m_NativeData_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_NativeData' of type 'DownloadHandlerBuffer'.");
  4391. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_NativeData_1Exception, NULL);
  4392. }
  4393. // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer
  4394. IL2CPP_EXTERN_C void DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshal_com_cleanup(DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_marshaled_com& marshaled)
  4395. {
  4396. }
  4397. // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)
  4398. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_mC639D070FF70AC550BBBAFD23CBB3A26DFE915AA (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * ___obj0, const RuntimeMethod* method)
  4399. {
  4400. typedef intptr_t (*DownloadHandlerBuffer_Create_mC639D070FF70AC550BBBAFD23CBB3A26DFE915AA_ftn) (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D *);
  4401. static DownloadHandlerBuffer_Create_mC639D070FF70AC550BBBAFD23CBB3A26DFE915AA_ftn _il2cpp_icall_func;
  4402. if (!_il2cpp_icall_func)
  4403. _il2cpp_icall_func = (DownloadHandlerBuffer_Create_mC639D070FF70AC550BBBAFD23CBB3A26DFE915AA_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)");
  4404. intptr_t icallRetVal = _il2cpp_icall_func(___obj0);
  4405. return icallRetVal;
  4406. }
  4407. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer()
  4408. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_mC53D69B05DEAEA785BD0187902DAD86C34EED256 (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * __this, const RuntimeMethod* method)
  4409. {
  4410. {
  4411. intptr_t L_0;
  4412. L_0 = DownloadHandlerBuffer_Create_mC639D070FF70AC550BBBAFD23CBB3A26DFE915AA(__this, /*hidden argument*/NULL);
  4413. ((DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB *)__this)->set_m_Ptr_0((intptr_t)L_0);
  4414. return;
  4415. }
  4416. }
  4417. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor()
  4418. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m01FD35970E4B4FC45FC99A648408F53A8B164774 (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * __this, const RuntimeMethod* method)
  4419. {
  4420. {
  4421. DownloadHandler__ctor_m8E441D5C617BA103B97FE41893F0A4A323701B0F(__this, /*hidden argument*/NULL);
  4422. DownloadHandlerBuffer_InternalCreateBuffer_mC53D69B05DEAEA785BD0187902DAD86C34EED256(__this, /*hidden argument*/NULL);
  4423. return;
  4424. }
  4425. }
  4426. // Unity.Collections.NativeArray`1<System.Byte> UnityEngine.Networking.DownloadHandlerBuffer::GetNativeData()
  4427. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 DownloadHandlerBuffer_GetNativeData_m102D18DFD9B9D0CA6D0A63AA3FC3FFCED176B850 (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * __this, const RuntimeMethod* method)
  4428. {
  4429. static bool s_Il2CppMethodInitialized;
  4430. if (!s_Il2CppMethodInitialized)
  4431. {
  4432. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4433. s_Il2CppMethodInitialized = true;
  4434. }
  4435. int32_t V_0 = 0;
  4436. uint8_t* V_1 = NULL;
  4437. bool V_2 = false;
  4438. bool V_3 = false;
  4439. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 V_4;
  4440. memset((&V_4), 0, sizeof(V_4));
  4441. {
  4442. uint8_t* L_0;
  4443. L_0 = DownloadHandler_InternalGetByteArray_mB9941AAF481941D5B6AF4508BFC36C4E3F9B6E84(__this, (int32_t*)(&V_0), /*hidden argument*/NULL);
  4444. V_1 = (uint8_t*)L_0;
  4445. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_1 = __this->get_address_of_m_NativeData_1();
  4446. bool L_2;
  4447. L_2 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_1, /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4448. V_2 = L_2;
  4449. bool L_3 = V_2;
  4450. if (!L_3)
  4451. {
  4452. goto IL_0044;
  4453. }
  4454. }
  4455. {
  4456. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_4 = __this->get_address_of_m_NativeData_1();
  4457. int32_t L_5;
  4458. L_5 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_4)->___m_Length_1);
  4459. int32_t L_6 = V_0;
  4460. V_3 = (bool)((((int32_t)L_5) == ((int32_t)L_6))? 1 : 0);
  4461. bool L_7 = V_3;
  4462. if (!L_7)
  4463. {
  4464. goto IL_0037;
  4465. }
  4466. }
  4467. {
  4468. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_8 = __this->get_m_NativeData_1();
  4469. V_4 = L_8;
  4470. goto IL_005c;
  4471. }
  4472. IL_0037:
  4473. {
  4474. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_9 = __this->get_address_of_m_NativeData_1();
  4475. DownloadHandlerBuffer_DisposeNativeArray_m2365DE8408221A3EB547FF7BE2B65B9C96395C79((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_9, /*hidden argument*/NULL);
  4476. }
  4477. IL_0044:
  4478. {
  4479. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_10 = __this->get_address_of_m_NativeData_1();
  4480. uint8_t* L_11 = V_1;
  4481. int32_t L_12 = V_0;
  4482. DownloadHandlerBuffer_CreateNativeArrayForNativeData_m5A9C9F6499AD8661C3E5C48AB229BA40BE7D219F((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_10, (uint8_t*)(uint8_t*)L_11, L_12, /*hidden argument*/NULL);
  4483. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_13 = __this->get_m_NativeData_1();
  4484. V_4 = L_13;
  4485. goto IL_005c;
  4486. }
  4487. IL_005c:
  4488. {
  4489. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_14 = V_4;
  4490. return L_14;
  4491. }
  4492. }
  4493. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::Dispose()
  4494. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_Dispose_mA034778E1E19FE072AEE69DA07009F1FAAB37D71 (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * __this, const RuntimeMethod* method)
  4495. {
  4496. {
  4497. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = __this->get_address_of_m_NativeData_1();
  4498. DownloadHandlerBuffer_DisposeNativeArray_m2365DE8408221A3EB547FF7BE2B65B9C96395C79((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0, /*hidden argument*/NULL);
  4499. DownloadHandler_Dispose_mAB0AA5ADCEC7681FF429DA0F0D3E7A650A02C376(__this, /*hidden argument*/NULL);
  4500. return;
  4501. }
  4502. }
  4503. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::CreateNativeArrayForNativeData(Unity.Collections.NativeArray`1<System.Byte>&,System.Byte*,System.Int32)
  4504. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_CreateNativeArrayForNativeData_m5A9C9F6499AD8661C3E5C48AB229BA40BE7D219F (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___data0, uint8_t* ___bytes1, int32_t ___length2, const RuntimeMethod* method)
  4505. {
  4506. static bool s_Il2CppMethodInitialized;
  4507. if (!s_Il2CppMethodInitialized)
  4508. {
  4509. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_RuntimeMethod_var);
  4510. s_Il2CppMethodInitialized = true;
  4511. }
  4512. {
  4513. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = ___data0;
  4514. uint8_t* L_1 = ___bytes1;
  4515. int32_t L_2 = ___length2;
  4516. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_3;
  4517. L_3 = NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C((void*)(void*)L_1, L_2, 4, /*hidden argument*/NativeArrayUnsafeUtility_ConvertExistingDataToNativeArray_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_m38F468CD9930A95B57C900167F1D8E8BBFE58F8C_RuntimeMethod_var);
  4518. *(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0 = L_3;
  4519. return;
  4520. }
  4521. }
  4522. // System.Void UnityEngine.Networking.DownloadHandlerBuffer::DisposeNativeArray(Unity.Collections.NativeArray`1<System.Byte>&)
  4523. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_DisposeNativeArray_m2365DE8408221A3EB547FF7BE2B65B9C96395C79 (NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * ___data0, const RuntimeMethod* method)
  4524. {
  4525. static bool s_Il2CppMethodInitialized;
  4526. if (!s_Il2CppMethodInitialized)
  4527. {
  4528. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4529. s_Il2CppMethodInitialized = true;
  4530. }
  4531. bool V_0 = false;
  4532. {
  4533. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = ___data0;
  4534. bool L_1;
  4535. L_1 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0, /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  4536. V_0 = (bool)((((int32_t)L_1) == ((int32_t)0))? 1 : 0);
  4537. bool L_2 = V_0;
  4538. if (!L_2)
  4539. {
  4540. goto IL_0010;
  4541. }
  4542. }
  4543. {
  4544. goto IL_0017;
  4545. }
  4546. IL_0010:
  4547. {
  4548. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_3 = ___data0;
  4549. il2cpp_codegen_initobj(L_3, sizeof(NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 ));
  4550. }
  4551. IL_0017:
  4552. {
  4553. return;
  4554. }
  4555. }
  4556. #ifdef __clang__
  4557. #pragma clang diagnostic pop
  4558. #endif
  4559. #ifdef __clang__
  4560. #pragma clang diagnostic push
  4561. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  4562. #pragma clang diagnostic ignored "-Wunused-variable"
  4563. #endif
  4564. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  4565. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_pinvoke(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke& marshaled)
  4566. {
  4567. 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.");
  4568. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4569. }
  4570. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_pinvoke_back(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke& marshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled)
  4571. {
  4572. 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.");
  4573. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4574. }
  4575. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  4576. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_pinvoke_cleanup(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_pinvoke& marshaled)
  4577. {
  4578. }
  4579. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest
  4580. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_com(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com& marshaled)
  4581. {
  4582. 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.");
  4583. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4584. }
  4585. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_com_back(const UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com& marshaled, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E& unmarshaled)
  4586. {
  4587. 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.");
  4588. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL);
  4589. }
  4590. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest
  4591. IL2CPP_EXTERN_C void UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshal_com_cleanup(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_marshaled_com& marshaled)
  4592. {
  4593. }
  4594. // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)
  4595. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C (int32_t ___err0, const RuntimeMethod* method)
  4596. {
  4597. typedef String_t* (*UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C_ftn) (int32_t);
  4598. static UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C_ftn _il2cpp_icall_func;
  4599. if (!_il2cpp_icall_func)
  4600. _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)");
  4601. String_t* icallRetVal = _il2cpp_icall_func(___err0);
  4602. return icallRetVal;
  4603. }
  4604. // System.String UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)
  4605. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetHTTPStatusString_m317BB359DAAE3592F55F8C989FC076FEA76BC7C0 (int64_t ___responseCode0, const RuntimeMethod* method)
  4606. {
  4607. typedef String_t* (*UnityWebRequest_GetHTTPStatusString_m317BB359DAAE3592F55F8C989FC076FEA76BC7C0_ftn) (int64_t);
  4608. static UnityWebRequest_GetHTTPStatusString_m317BB359DAAE3592F55F8C989FC076FEA76BC7C0_ftn _il2cpp_icall_func;
  4609. if (!_il2cpp_icall_func)
  4610. _il2cpp_icall_func = (UnityWebRequest_GetHTTPStatusString_m317BB359DAAE3592F55F8C989FC076FEA76BC7C0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetHTTPStatusString(System.Int64)");
  4611. String_t* icallRetVal = _il2cpp_icall_func(___responseCode0);
  4612. return icallRetVal;
  4613. }
  4614. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose()
  4615. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m47CB38750DEFA8A9FB426E650A78F62FEA68D0C0 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4616. {
  4617. {
  4618. bool L_0 = __this->get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5();
  4619. return L_0;
  4620. }
  4621. }
  4622. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean)
  4623. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_mBF38D6481CE40882846C679F3E51C8D70B502E3C (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method)
  4624. {
  4625. {
  4626. bool L_0 = ___value0;
  4627. __this->set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(L_0);
  4628. return;
  4629. }
  4630. }
  4631. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose()
  4632. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m815A891A7C495D05DACB60147CB557C78CE89289 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4633. {
  4634. {
  4635. bool L_0 = __this->get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6();
  4636. return L_0;
  4637. }
  4638. }
  4639. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean)
  4640. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m6F638476FBD7ABDCEF8E7AD449266E505B85D20B (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method)
  4641. {
  4642. {
  4643. bool L_0 = ___value0;
  4644. __this->set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(L_0);
  4645. return;
  4646. }
  4647. }
  4648. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose()
  4649. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mBFAC496EFE17D72583D9D81B170EE0F2FABDC07B (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4650. {
  4651. {
  4652. bool L_0 = __this->get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7();
  4653. return L_0;
  4654. }
  4655. }
  4656. // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean)
  4657. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_m4A63470C788CF2A03D34EEA3F8968B430A111397 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method)
  4658. {
  4659. {
  4660. bool L_0 = ___value0;
  4661. __this->set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(L_0);
  4662. return;
  4663. }
  4664. }
  4665. // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create()
  4666. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED (const RuntimeMethod* method)
  4667. {
  4668. typedef intptr_t (*UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED_ftn) ();
  4669. static UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED_ftn _il2cpp_icall_func;
  4670. if (!_il2cpp_icall_func)
  4671. _il2cpp_icall_func = (UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()");
  4672. intptr_t icallRetVal = _il2cpp_icall_func();
  4673. return icallRetVal;
  4674. }
  4675. // System.Void UnityEngine.Networking.UnityWebRequest::Release()
  4676. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Release_m9E5ABFEE29761B2AD53E92777882E4EFB97BEBBB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4677. {
  4678. typedef void (*UnityWebRequest_Release_m9E5ABFEE29761B2AD53E92777882E4EFB97BEBBB_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  4679. static UnityWebRequest_Release_m9E5ABFEE29761B2AD53E92777882E4EFB97BEBBB_ftn _il2cpp_icall_func;
  4680. if (!_il2cpp_icall_func)
  4681. _il2cpp_icall_func = (UnityWebRequest_Release_m9E5ABFEE29761B2AD53E92777882E4EFB97BEBBB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release()");
  4682. _il2cpp_icall_func(__this);
  4683. }
  4684. // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy()
  4685. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_m9317079471CFF46A5274FFF1E360CA5237D9270D (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4686. {
  4687. static bool s_Il2CppMethodInitialized;
  4688. if (!s_Il2CppMethodInitialized)
  4689. {
  4690. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  4691. s_Il2CppMethodInitialized = true;
  4692. }
  4693. bool V_0 = false;
  4694. {
  4695. intptr_t L_0 = __this->get_m_Ptr_0();
  4696. bool L_1;
  4697. L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  4698. V_0 = L_1;
  4699. bool L_2 = V_0;
  4700. if (!L_2)
  4701. {
  4702. goto IL_0030;
  4703. }
  4704. }
  4705. {
  4706. UnityWebRequest_Abort_m632DFDB95C422B9C7536D9E2CB04CC722FFF2E28(__this, /*hidden argument*/NULL);
  4707. UnityWebRequest_Release_m9E5ABFEE29761B2AD53E92777882E4EFB97BEBBB(__this, /*hidden argument*/NULL);
  4708. __this->set_m_Ptr_0((intptr_t)(0));
  4709. }
  4710. IL_0030:
  4711. {
  4712. return;
  4713. }
  4714. }
  4715. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults()
  4716. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_mD7D5534B728DF7F2422999B58C98394253A2035C (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4717. {
  4718. {
  4719. UnityWebRequest_set_disposeDownloadHandlerOnDispose_m6F638476FBD7ABDCEF8E7AD449266E505B85D20B_inline(__this, (bool)1, /*hidden argument*/NULL);
  4720. UnityWebRequest_set_disposeUploadHandlerOnDispose_m4A63470C788CF2A03D34EEA3F8968B430A111397_inline(__this, (bool)1, /*hidden argument*/NULL);
  4721. UnityWebRequest_set_disposeCertificateHandlerOnDispose_mBF38D6481CE40882846C679F3E51C8D70B502E3C_inline(__this, (bool)1, /*hidden argument*/NULL);
  4722. return;
  4723. }
  4724. }
  4725. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String)
  4726. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_mC2ED369A4ACE53AFF2E70A38BE95EB48D68D4975 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, String_t* ___method1, const RuntimeMethod* method)
  4727. {
  4728. {
  4729. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  4730. intptr_t L_0;
  4731. L_0 = UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED(/*hidden argument*/NULL);
  4732. __this->set_m_Ptr_0((intptr_t)L_0);
  4733. UnityWebRequest_InternalSetDefaults_mD7D5534B728DF7F2422999B58C98394253A2035C(__this, /*hidden argument*/NULL);
  4734. String_t* L_1 = ___url0;
  4735. UnityWebRequest_set_url_m27BCB349EB7FA610705EA03CC817A1A394BA392F(__this, L_1, /*hidden argument*/NULL);
  4736. String_t* L_2 = ___method1;
  4737. UnityWebRequest_set_method_m603E0D94414F046DE2A60E127A715B3303F46AA7(__this, L_2, /*hidden argument*/NULL);
  4738. return;
  4739. }
  4740. }
  4741. // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler)
  4742. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m6F640D6320ABA5A1ED08C3B2A259DB67372DCECB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, String_t* ___method1, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___downloadHandler2, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___uploadHandler3, const RuntimeMethod* method)
  4743. {
  4744. {
  4745. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  4746. intptr_t L_0;
  4747. L_0 = UnityWebRequest_Create_m90555F2C4371498805FDD684C3E86D1DC8D10AED(/*hidden argument*/NULL);
  4748. __this->set_m_Ptr_0((intptr_t)L_0);
  4749. UnityWebRequest_InternalSetDefaults_mD7D5534B728DF7F2422999B58C98394253A2035C(__this, /*hidden argument*/NULL);
  4750. String_t* L_1 = ___url0;
  4751. UnityWebRequest_set_url_m27BCB349EB7FA610705EA03CC817A1A394BA392F(__this, L_1, /*hidden argument*/NULL);
  4752. String_t* L_2 = ___method1;
  4753. UnityWebRequest_set_method_m603E0D94414F046DE2A60E127A715B3303F46AA7(__this, L_2, /*hidden argument*/NULL);
  4754. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_3 = ___downloadHandler2;
  4755. UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2(__this, L_3, /*hidden argument*/NULL);
  4756. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_4 = ___uploadHandler3;
  4757. UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA(__this, L_4, /*hidden argument*/NULL);
  4758. return;
  4759. }
  4760. }
  4761. // System.Void UnityEngine.Networking.UnityWebRequest::Finalize()
  4762. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_m0E1202F2844C73C643D8B8DA23794FC9948A6D92 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4763. {
  4764. Exception_t * __last_unhandled_exception = 0;
  4765. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  4766. {
  4767. }
  4768. IL_0001:
  4769. try
  4770. {// begin try (depth: 1)
  4771. UnityWebRequest_DisposeHandlers_mA28A13FCE2CBA777049A6C1A3FABA079B3820771(__this, /*hidden argument*/NULL);
  4772. UnityWebRequest_InternalDestroy_m9317079471CFF46A5274FFF1E360CA5237D9270D(__this, /*hidden argument*/NULL);
  4773. IL2CPP_LEAVE(0x1A, FINALLY_0012);
  4774. }// end try (depth: 1)
  4775. catch(Il2CppExceptionWrapper& e)
  4776. {
  4777. __last_unhandled_exception = (Exception_t *)e.ex;
  4778. goto FINALLY_0012;
  4779. }
  4780. FINALLY_0012:
  4781. {// begin finally (depth: 1)
  4782. Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
  4783. IL2CPP_END_FINALLY(18)
  4784. }// end finally (depth: 1)
  4785. IL2CPP_CLEANUP(18)
  4786. {
  4787. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  4788. IL2CPP_JUMP_TBL(0x1A, IL_001a)
  4789. }
  4790. IL_001a:
  4791. {
  4792. return;
  4793. }
  4794. }
  4795. // System.Void UnityEngine.Networking.UnityWebRequest::Dispose()
  4796. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m8032472F6BC2EC4FEE017DE7E4C440078BC4E1C8 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4797. {
  4798. static bool s_Il2CppMethodInitialized;
  4799. if (!s_Il2CppMethodInitialized)
  4800. {
  4801. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var);
  4802. s_Il2CppMethodInitialized = true;
  4803. }
  4804. {
  4805. UnityWebRequest_DisposeHandlers_mA28A13FCE2CBA777049A6C1A3FABA079B3820771(__this, /*hidden argument*/NULL);
  4806. UnityWebRequest_InternalDestroy_m9317079471CFF46A5274FFF1E360CA5237D9270D(__this, /*hidden argument*/NULL);
  4807. IL2CPP_RUNTIME_CLASS_INIT(GC_tD6F0377620BF01385965FD29272CF088A4309C0D_il2cpp_TypeInfo_var);
  4808. GC_SuppressFinalize_mEE880E988C6AF32AA2F67F2D62715281EAA41555(__this, /*hidden argument*/NULL);
  4809. return;
  4810. }
  4811. }
  4812. // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers()
  4813. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_mA28A13FCE2CBA777049A6C1A3FABA079B3820771 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4814. {
  4815. bool V_0 = false;
  4816. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * V_1 = NULL;
  4817. bool V_2 = false;
  4818. bool V_3 = false;
  4819. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * V_4 = NULL;
  4820. bool V_5 = false;
  4821. bool V_6 = false;
  4822. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * V_7 = NULL;
  4823. bool V_8 = false;
  4824. {
  4825. bool L_0;
  4826. L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_m815A891A7C495D05DACB60147CB557C78CE89289_inline(__this, /*hidden argument*/NULL);
  4827. V_0 = L_0;
  4828. bool L_1 = V_0;
  4829. if (!L_1)
  4830. {
  4831. goto IL_0025;
  4832. }
  4833. }
  4834. {
  4835. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_2;
  4836. L_2 = UnityWebRequest_get_downloadHandler_mCE0A0C53A63419FE5AE25915AFB36EABE294C732(__this, /*hidden argument*/NULL);
  4837. V_1 = L_2;
  4838. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_3 = V_1;
  4839. V_2 = (bool)((!(((RuntimeObject*)(DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB *)L_3) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  4840. bool L_4 = V_2;
  4841. if (!L_4)
  4842. {
  4843. goto IL_0024;
  4844. }
  4845. }
  4846. {
  4847. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_5 = V_1;
  4848. NullCheck(L_5);
  4849. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.DownloadHandler::Dispose() */, L_5);
  4850. }
  4851. IL_0024:
  4852. {
  4853. }
  4854. IL_0025:
  4855. {
  4856. bool L_6;
  4857. L_6 = UnityWebRequest_get_disposeUploadHandlerOnDispose_mBFAC496EFE17D72583D9D81B170EE0F2FABDC07B_inline(__this, /*hidden argument*/NULL);
  4858. V_3 = L_6;
  4859. bool L_7 = V_3;
  4860. if (!L_7)
  4861. {
  4862. goto IL_004e;
  4863. }
  4864. }
  4865. {
  4866. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_8;
  4867. L_8 = UnityWebRequest_get_uploadHandler_mFB108ADD5C75C440300BF85B87D4A730A158CC38(__this, /*hidden argument*/NULL);
  4868. V_4 = L_8;
  4869. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_9 = V_4;
  4870. V_5 = (bool)((!(((RuntimeObject*)(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA *)L_9) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  4871. bool L_10 = V_5;
  4872. if (!L_10)
  4873. {
  4874. goto IL_004d;
  4875. }
  4876. }
  4877. {
  4878. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_11 = V_4;
  4879. NullCheck(L_11);
  4880. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::Dispose() */, L_11);
  4881. }
  4882. IL_004d:
  4883. {
  4884. }
  4885. IL_004e:
  4886. {
  4887. bool L_12;
  4888. L_12 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m47CB38750DEFA8A9FB426E650A78F62FEA68D0C0_inline(__this, /*hidden argument*/NULL);
  4889. V_6 = L_12;
  4890. bool L_13 = V_6;
  4891. if (!L_13)
  4892. {
  4893. goto IL_0079;
  4894. }
  4895. }
  4896. {
  4897. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * L_14;
  4898. L_14 = UnityWebRequest_get_certificateHandler_mACA97B9158F17FFBEF489753C6E42302EEDF057D(__this, /*hidden argument*/NULL);
  4899. V_7 = L_14;
  4900. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * L_15 = V_7;
  4901. V_8 = (bool)((!(((RuntimeObject*)(CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E *)L_15) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  4902. bool L_16 = V_8;
  4903. if (!L_16)
  4904. {
  4905. goto IL_0078;
  4906. }
  4907. }
  4908. {
  4909. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * L_17 = V_7;
  4910. NullCheck(L_17);
  4911. CertificateHandler_Dispose_m460859ACFE411145B199D8261B5ADDA4DECCA493(L_17, /*hidden argument*/NULL);
  4912. }
  4913. IL_0078:
  4914. {
  4915. }
  4916. IL_0079:
  4917. {
  4918. return;
  4919. }
  4920. }
  4921. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest()
  4922. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * UnityWebRequest_BeginWebRequest_m8F87C90D83FAC942DC2DE126E99D97A4CBCFD2D6 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4923. {
  4924. typedef UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * (*UnityWebRequest_BeginWebRequest_m8F87C90D83FAC942DC2DE126E99D97A4CBCFD2D6_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  4925. static UnityWebRequest_BeginWebRequest_m8F87C90D83FAC942DC2DE126E99D97A4CBCFD2D6_ftn _il2cpp_icall_func;
  4926. if (!_il2cpp_icall_func)
  4927. _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_m8F87C90D83FAC942DC2DE126E99D97A4CBCFD2D6_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest()");
  4928. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * icallRetVal = _il2cpp_icall_func(__this);
  4929. return icallRetVal;
  4930. }
  4931. // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest()
  4932. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * UnityWebRequest_SendWebRequest_m990921023F56ECB8FF8C118894A317EB6E2F5B50 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4933. {
  4934. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * V_0 = NULL;
  4935. bool V_1 = false;
  4936. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * V_2 = NULL;
  4937. {
  4938. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * L_0;
  4939. L_0 = UnityWebRequest_BeginWebRequest_m8F87C90D83FAC942DC2DE126E99D97A4CBCFD2D6(__this, /*hidden argument*/NULL);
  4940. V_0 = L_0;
  4941. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * L_1 = V_0;
  4942. V_1 = (bool)((!(((RuntimeObject*)(UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 *)L_1) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  4943. bool L_2 = V_1;
  4944. if (!L_2)
  4945. {
  4946. goto IL_0018;
  4947. }
  4948. }
  4949. {
  4950. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * L_3 = V_0;
  4951. NullCheck(L_3);
  4952. UnityWebRequestAsyncOperation_set_webRequest_mAB1AE2613FEF8FAFB463E73D70043A89B2FC39C3_inline(L_3, __this, /*hidden argument*/NULL);
  4953. }
  4954. IL_0018:
  4955. {
  4956. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * L_4 = V_0;
  4957. V_2 = L_4;
  4958. goto IL_001c;
  4959. }
  4960. IL_001c:
  4961. {
  4962. UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * L_5 = V_2;
  4963. return L_5;
  4964. }
  4965. }
  4966. // System.Void UnityEngine.Networking.UnityWebRequest::Abort()
  4967. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_m632DFDB95C422B9C7536D9E2CB04CC722FFF2E28 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  4968. {
  4969. typedef void (*UnityWebRequest_Abort_m632DFDB95C422B9C7536D9E2CB04CC722FFF2E28_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  4970. static UnityWebRequest_Abort_m632DFDB95C422B9C7536D9E2CB04CC722FFF2E28_ftn _il2cpp_icall_func;
  4971. if (!_il2cpp_icall_func)
  4972. _il2cpp_icall_func = (UnityWebRequest_Abort_m632DFDB95C422B9C7536D9E2CB04CC722FFF2E28_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort()");
  4973. _il2cpp_icall_func(__this);
  4974. }
  4975. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  4976. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_m1303F8415C7A460B16DDB5CC841832221A90ABED (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, int32_t ___methodType0, const RuntimeMethod* method)
  4977. {
  4978. typedef int32_t (*UnityWebRequest_SetMethod_m1303F8415C7A460B16DDB5CC841832221A90ABED_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, int32_t);
  4979. static UnityWebRequest_SetMethod_m1303F8415C7A460B16DDB5CC841832221A90ABED_ftn _il2cpp_icall_func;
  4980. if (!_il2cpp_icall_func)
  4981. _il2cpp_icall_func = (UnityWebRequest_SetMethod_m1303F8415C7A460B16DDB5CC841832221A90ABED_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)");
  4982. int32_t icallRetVal = _il2cpp_icall_func(__this, ___methodType0);
  4983. return icallRetVal;
  4984. }
  4985. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)
  4986. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, int32_t ___methodType0, const RuntimeMethod* method)
  4987. {
  4988. int32_t V_0 = 0;
  4989. bool V_1 = false;
  4990. bool V_2 = false;
  4991. {
  4992. bool L_0;
  4993. L_0 = UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A(__this, /*hidden argument*/NULL);
  4994. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  4995. bool L_1 = V_1;
  4996. if (!L_1)
  4997. {
  4998. goto IL_0019;
  4999. }
  5000. }
  5001. {
  5002. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5003. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), /*hidden argument*/NULL);
  5004. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB_RuntimeMethod_var)));
  5005. }
  5006. IL_0019:
  5007. {
  5008. int32_t L_3 = ___methodType0;
  5009. int32_t L_4;
  5010. L_4 = UnityWebRequest_SetMethod_m1303F8415C7A460B16DDB5CC841832221A90ABED(__this, L_3, /*hidden argument*/NULL);
  5011. V_0 = L_4;
  5012. int32_t L_5 = V_0;
  5013. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5014. bool L_6 = V_2;
  5015. if (!L_6)
  5016. {
  5017. goto IL_0035;
  5018. }
  5019. }
  5020. {
  5021. int32_t L_7 = V_0;
  5022. String_t* L_8;
  5023. L_8 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_7, /*hidden argument*/NULL);
  5024. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5025. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, L_8, /*hidden argument*/NULL);
  5026. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB_RuntimeMethod_var)));
  5027. }
  5028. IL_0035:
  5029. {
  5030. return;
  5031. }
  5032. }
  5033. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)
  5034. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_m86A1258AD72D36E5B4D9D2735045DD26FE7AE79D (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___customMethodName0, const RuntimeMethod* method)
  5035. {
  5036. typedef int32_t (*UnityWebRequest_SetCustomMethod_m86A1258AD72D36E5B4D9D2735045DD26FE7AE79D_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, String_t*);
  5037. static UnityWebRequest_SetCustomMethod_m86A1258AD72D36E5B4D9D2735045DD26FE7AE79D_ftn _il2cpp_icall_func;
  5038. if (!_il2cpp_icall_func)
  5039. _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_m86A1258AD72D36E5B4D9D2735045DD26FE7AE79D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)");
  5040. int32_t icallRetVal = _il2cpp_icall_func(__this, ___customMethodName0);
  5041. return icallRetVal;
  5042. }
  5043. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String)
  5044. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_mD7B421D1B4CCF480EA333CDE465C1C5D588715DA (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___customMethodName0, const RuntimeMethod* method)
  5045. {
  5046. int32_t V_0 = 0;
  5047. bool V_1 = false;
  5048. bool V_2 = false;
  5049. {
  5050. bool L_0;
  5051. L_0 = UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A(__this, /*hidden argument*/NULL);
  5052. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5053. bool L_1 = V_1;
  5054. if (!L_1)
  5055. {
  5056. goto IL_0019;
  5057. }
  5058. }
  5059. {
  5060. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5061. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral716D4DCF03C354CF6AC6FB6BDBEC2E94AAE7139E)), /*hidden argument*/NULL);
  5062. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_mD7B421D1B4CCF480EA333CDE465C1C5D588715DA_RuntimeMethod_var)));
  5063. }
  5064. IL_0019:
  5065. {
  5066. String_t* L_3 = ___customMethodName0;
  5067. int32_t L_4;
  5068. L_4 = UnityWebRequest_SetCustomMethod_m86A1258AD72D36E5B4D9D2735045DD26FE7AE79D(__this, L_3, /*hidden argument*/NULL);
  5069. V_0 = L_4;
  5070. int32_t L_5 = V_0;
  5071. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5072. bool L_6 = V_2;
  5073. if (!L_6)
  5074. {
  5075. goto IL_0035;
  5076. }
  5077. }
  5078. {
  5079. int32_t L_7 = V_0;
  5080. String_t* L_8;
  5081. L_8 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_7, /*hidden argument*/NULL);
  5082. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5083. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, L_8, /*hidden argument*/NULL);
  5084. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetCustomMethod_mD7B421D1B4CCF480EA333CDE465C1C5D588715DA_RuntimeMethod_var)));
  5085. }
  5086. IL_0035:
  5087. {
  5088. return;
  5089. }
  5090. }
  5091. // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String)
  5092. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_m603E0D94414F046DE2A60E127A715B3303F46AA7 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___value0, const RuntimeMethod* method)
  5093. {
  5094. static bool s_Il2CppMethodInitialized;
  5095. if (!s_Il2CppMethodInitialized)
  5096. {
  5097. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708);
  5098. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  5099. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5100. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7DAC516092AE075D549759FBFE57497622D29F15);
  5101. s_Il2CppMethodInitialized = true;
  5102. }
  5103. bool V_0 = false;
  5104. String_t* V_1 = NULL;
  5105. String_t* V_2 = NULL;
  5106. {
  5107. String_t* L_0 = ___value0;
  5108. bool L_1;
  5109. L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
  5110. V_0 = L_1;
  5111. bool L_2 = V_0;
  5112. if (!L_2)
  5113. {
  5114. goto IL_0017;
  5115. }
  5116. }
  5117. {
  5118. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
  5119. ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7D2659B30CD7065E2E3DAAE5ABDCFE4A0B66782E)), /*hidden argument*/NULL);
  5120. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_method_m603E0D94414F046DE2A60E127A715B3303F46AA7_RuntimeMethod_var)));
  5121. }
  5122. IL_0017:
  5123. {
  5124. String_t* L_4 = ___value0;
  5125. NullCheck(L_4);
  5126. String_t* L_5;
  5127. L_5 = String_ToUpper_m4BC629F8059C3E0C4E3F7C7E04DB50EBB0C1A05A(L_4, /*hidden argument*/NULL);
  5128. V_2 = L_5;
  5129. String_t* L_6 = V_2;
  5130. V_1 = L_6;
  5131. String_t* L_7 = V_1;
  5132. if (!L_7)
  5133. {
  5134. goto IL_0081;
  5135. }
  5136. }
  5137. {
  5138. String_t* L_8 = V_1;
  5139. bool L_9;
  5140. L_9 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_8, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, /*hidden argument*/NULL);
  5141. if (L_9)
  5142. {
  5143. goto IL_0059;
  5144. }
  5145. }
  5146. {
  5147. String_t* L_10 = V_1;
  5148. bool L_11;
  5149. L_11 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_10, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, /*hidden argument*/NULL);
  5150. if (L_11)
  5151. {
  5152. goto IL_0063;
  5153. }
  5154. }
  5155. {
  5156. String_t* L_12 = V_1;
  5157. bool L_13;
  5158. L_13 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_12, _stringLiteral053EEFAEF1C074E36F0A13EAC660D9884666B708, /*hidden argument*/NULL);
  5159. if (L_13)
  5160. {
  5161. goto IL_006d;
  5162. }
  5163. }
  5164. {
  5165. String_t* L_14 = V_1;
  5166. bool L_15;
  5167. L_15 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_14, _stringLiteral7DAC516092AE075D549759FBFE57497622D29F15, /*hidden argument*/NULL);
  5168. if (L_15)
  5169. {
  5170. goto IL_0077;
  5171. }
  5172. }
  5173. {
  5174. goto IL_0081;
  5175. }
  5176. IL_0059:
  5177. {
  5178. UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB(__this, 0, /*hidden argument*/NULL);
  5179. goto IL_0090;
  5180. }
  5181. IL_0063:
  5182. {
  5183. UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB(__this, 1, /*hidden argument*/NULL);
  5184. goto IL_0090;
  5185. }
  5186. IL_006d:
  5187. {
  5188. UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB(__this, 2, /*hidden argument*/NULL);
  5189. goto IL_0090;
  5190. }
  5191. IL_0077:
  5192. {
  5193. UnityWebRequest_InternalSetMethod_mBBFC08EEC7A4A7F9DC510AEB10D5103475C6B4EB(__this, 3, /*hidden argument*/NULL);
  5194. goto IL_0090;
  5195. }
  5196. IL_0081:
  5197. {
  5198. String_t* L_16 = ___value0;
  5199. NullCheck(L_16);
  5200. String_t* L_17;
  5201. L_17 = String_ToUpper_m4BC629F8059C3E0C4E3F7C7E04DB50EBB0C1A05A(L_16, /*hidden argument*/NULL);
  5202. UnityWebRequest_InternalSetCustomMethod_mD7B421D1B4CCF480EA333CDE465C1C5D588715DA(__this, L_17, /*hidden argument*/NULL);
  5203. goto IL_0090;
  5204. }
  5205. IL_0090:
  5206. {
  5207. return;
  5208. }
  5209. }
  5210. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::GetError()
  5211. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetError_m6BF0FA43C1D180750DB0E955D0AE2DEB855C70F3 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5212. {
  5213. typedef int32_t (*UnityWebRequest_GetError_m6BF0FA43C1D180750DB0E955D0AE2DEB855C70F3_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  5214. static UnityWebRequest_GetError_m6BF0FA43C1D180750DB0E955D0AE2DEB855C70F3_ftn _il2cpp_icall_func;
  5215. if (!_il2cpp_icall_func)
  5216. _il2cpp_icall_func = (UnityWebRequest_GetError_m6BF0FA43C1D180750DB0E955D0AE2DEB855C70F3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetError()");
  5217. int32_t icallRetVal = _il2cpp_icall_func(__this);
  5218. return icallRetVal;
  5219. }
  5220. // System.String UnityEngine.Networking.UnityWebRequest::get_error()
  5221. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_error_m32B69D2365C1FE2310B5936C7C295B71A92CC2B4 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5222. {
  5223. static bool s_Il2CppMethodInitialized;
  5224. if (!s_Il2CppMethodInitialized)
  5225. {
  5226. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var);
  5227. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C);
  5228. s_Il2CppMethodInitialized = true;
  5229. }
  5230. int32_t V_0 = 0;
  5231. int32_t V_1 = 0;
  5232. String_t* V_2 = NULL;
  5233. {
  5234. int32_t L_0;
  5235. L_0 = UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6(__this, /*hidden argument*/NULL);
  5236. V_1 = L_0;
  5237. int32_t L_1 = V_1;
  5238. V_0 = L_1;
  5239. int32_t L_2 = V_0;
  5240. if ((!(((uint32_t)L_2) > ((uint32_t)1))))
  5241. {
  5242. goto IL_0016;
  5243. }
  5244. }
  5245. {
  5246. goto IL_0010;
  5247. }
  5248. IL_0010:
  5249. {
  5250. int32_t L_3 = V_0;
  5251. if ((((int32_t)L_3) == ((int32_t)3)))
  5252. {
  5253. goto IL_001a;
  5254. }
  5255. }
  5256. {
  5257. goto IL_003d;
  5258. }
  5259. IL_0016:
  5260. {
  5261. V_2 = (String_t*)NULL;
  5262. goto IL_004b;
  5263. }
  5264. IL_001a:
  5265. {
  5266. int64_t L_4;
  5267. L_4 = UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753(__this, /*hidden argument*/NULL);
  5268. int64_t L_5 = L_4;
  5269. RuntimeObject * L_6 = Box(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3_il2cpp_TypeInfo_var, &L_5);
  5270. int64_t L_7;
  5271. L_7 = UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753(__this, /*hidden argument*/NULL);
  5272. String_t* L_8;
  5273. L_8 = UnityWebRequest_GetHTTPStatusString_m317BB359DAAE3592F55F8C989FC076FEA76BC7C0(L_7, /*hidden argument*/NULL);
  5274. String_t* L_9;
  5275. L_9 = String_Format_m8D1CB0410C35E052A53AE957C914C841E54BAB66(_stringLiteral997F93B8223285BB571C83E7ACD6C6615F5EF04C, L_6, L_8, /*hidden argument*/NULL);
  5276. V_2 = L_9;
  5277. goto IL_004b;
  5278. }
  5279. IL_003d:
  5280. {
  5281. int32_t L_10;
  5282. L_10 = UnityWebRequest_GetError_m6BF0FA43C1D180750DB0E955D0AE2DEB855C70F3(__this, /*hidden argument*/NULL);
  5283. String_t* L_11;
  5284. L_11 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_10, /*hidden argument*/NULL);
  5285. V_2 = L_11;
  5286. goto IL_004b;
  5287. }
  5288. IL_004b:
  5289. {
  5290. String_t* L_12 = V_2;
  5291. return L_12;
  5292. }
  5293. }
  5294. // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String)
  5295. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_m27BCB349EB7FA610705EA03CC817A1A394BA392F (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___value0, const RuntimeMethod* method)
  5296. {
  5297. static bool s_Il2CppMethodInitialized;
  5298. if (!s_Il2CppMethodInitialized)
  5299. {
  5300. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  5301. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2);
  5302. s_Il2CppMethodInitialized = true;
  5303. }
  5304. String_t* V_0 = NULL;
  5305. {
  5306. V_0 = _stringLiteralCE02B6F4CAAD9B14B2B4CBB6E5E1A7B2774E4FE2;
  5307. String_t* L_0 = ___value0;
  5308. String_t* L_1 = V_0;
  5309. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  5310. String_t* L_2;
  5311. L_2 = WebRequestUtils_MakeInitialUrl_mD575E2FEAC3685E9030B528769BFAC7CE0534290(L_0, L_1, /*hidden argument*/NULL);
  5312. UnityWebRequest_InternalSetUrl_mE850CF14CE4F5EE57063771AC9B0C686C4856F25(__this, L_2, /*hidden argument*/NULL);
  5313. return;
  5314. }
  5315. }
  5316. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)
  5317. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_m46220F73F184F5205C1F7E44EBFB868700E89400 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, const RuntimeMethod* method)
  5318. {
  5319. typedef int32_t (*UnityWebRequest_SetUrl_m46220F73F184F5205C1F7E44EBFB868700E89400_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, String_t*);
  5320. static UnityWebRequest_SetUrl_m46220F73F184F5205C1F7E44EBFB868700E89400_ftn _il2cpp_icall_func;
  5321. if (!_il2cpp_icall_func)
  5322. _il2cpp_icall_func = (UnityWebRequest_SetUrl_m46220F73F184F5205C1F7E44EBFB868700E89400_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)");
  5323. int32_t icallRetVal = _il2cpp_icall_func(__this, ___url0);
  5324. return icallRetVal;
  5325. }
  5326. // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String)
  5327. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_mE850CF14CE4F5EE57063771AC9B0C686C4856F25 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___url0, const RuntimeMethod* method)
  5328. {
  5329. int32_t V_0 = 0;
  5330. bool V_1 = false;
  5331. bool V_2 = false;
  5332. {
  5333. bool L_0;
  5334. L_0 = UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A(__this, /*hidden argument*/NULL);
  5335. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5336. bool L_1 = V_1;
  5337. if (!L_1)
  5338. {
  5339. goto IL_0019;
  5340. }
  5341. }
  5342. {
  5343. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5344. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5AD0071445300544C945A4235FF5EE2237930AF6)), /*hidden argument*/NULL);
  5345. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mE850CF14CE4F5EE57063771AC9B0C686C4856F25_RuntimeMethod_var)));
  5346. }
  5347. IL_0019:
  5348. {
  5349. String_t* L_3 = ___url0;
  5350. int32_t L_4;
  5351. L_4 = UnityWebRequest_SetUrl_m46220F73F184F5205C1F7E44EBFB868700E89400(__this, L_3, /*hidden argument*/NULL);
  5352. V_0 = L_4;
  5353. int32_t L_5 = V_0;
  5354. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5355. bool L_6 = V_2;
  5356. if (!L_6)
  5357. {
  5358. goto IL_0035;
  5359. }
  5360. }
  5361. {
  5362. int32_t L_7 = V_0;
  5363. String_t* L_8;
  5364. L_8 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_7, /*hidden argument*/NULL);
  5365. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5366. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, L_8, /*hidden argument*/NULL);
  5367. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_InternalSetUrl_mE850CF14CE4F5EE57063771AC9B0C686C4856F25_RuntimeMethod_var)));
  5368. }
  5369. IL_0035:
  5370. {
  5371. return;
  5372. }
  5373. }
  5374. // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode()
  5375. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5376. {
  5377. typedef int64_t (*UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  5378. static UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753_ftn _il2cpp_icall_func;
  5379. if (!_il2cpp_icall_func)
  5380. _il2cpp_icall_func = (UnityWebRequest_get_responseCode_m27D1260ADC92070608532D81B836CAA2742D1753_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode()");
  5381. int64_t icallRetVal = _il2cpp_icall_func(__this);
  5382. return icallRetVal;
  5383. }
  5384. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable()
  5385. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5386. {
  5387. typedef bool (*UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  5388. static UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A_ftn _il2cpp_icall_func;
  5389. if (!_il2cpp_icall_func)
  5390. _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable()");
  5391. bool icallRetVal = _il2cpp_icall_func(__this);
  5392. return icallRetVal;
  5393. }
  5394. // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isDone()
  5395. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isDone_mF8C92D10767B80877BCFE6D119CBE9090ACCDFBD (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5396. {
  5397. bool V_0 = false;
  5398. {
  5399. int32_t L_0;
  5400. L_0 = UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6(__this, /*hidden argument*/NULL);
  5401. V_0 = (bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0);
  5402. goto IL_000d;
  5403. }
  5404. IL_000d:
  5405. {
  5406. bool L_1 = V_0;
  5407. return L_1;
  5408. }
  5409. }
  5410. // UnityEngine.Networking.UnityWebRequest/Result UnityEngine.Networking.UnityWebRequest::get_result()
  5411. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5412. {
  5413. typedef int32_t (*UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *);
  5414. static UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6_ftn _il2cpp_icall_func;
  5415. if (!_il2cpp_icall_func)
  5416. _il2cpp_icall_func = (UnityWebRequest_get_result_m4E9272AB25BD5CE7B927F4B1873763510476BDC6_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_result()");
  5417. int32_t icallRetVal = _il2cpp_icall_func(__this);
  5418. return icallRetVal;
  5419. }
  5420. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)
  5421. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m8D0FE7BF624976F2510A90F61A69CEB22739F2BE (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
  5422. {
  5423. typedef int32_t (*UnityWebRequest_InternalSetRequestHeader_m8D0FE7BF624976F2510A90F61A69CEB22739F2BE_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, String_t*, String_t*);
  5424. static UnityWebRequest_InternalSetRequestHeader_m8D0FE7BF624976F2510A90F61A69CEB22739F2BE_ftn _il2cpp_icall_func;
  5425. if (!_il2cpp_icall_func)
  5426. _il2cpp_icall_func = (UnityWebRequest_InternalSetRequestHeader_m8D0FE7BF624976F2510A90F61A69CEB22739F2BE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)");
  5427. int32_t icallRetVal = _il2cpp_icall_func(__this, ___name0, ___value1);
  5428. return icallRetVal;
  5429. }
  5430. // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String)
  5431. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method)
  5432. {
  5433. int32_t V_0 = 0;
  5434. bool V_1 = false;
  5435. bool V_2 = false;
  5436. bool V_3 = false;
  5437. bool V_4 = false;
  5438. {
  5439. String_t* L_0 = ___name0;
  5440. bool L_1;
  5441. L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
  5442. V_1 = L_1;
  5443. bool L_2 = V_1;
  5444. if (!L_2)
  5445. {
  5446. goto IL_0016;
  5447. }
  5448. }
  5449. {
  5450. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
  5451. ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral350138951CA76BFC65A77EA2D223A8D476B10BC5)), /*hidden argument*/NULL);
  5452. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB_RuntimeMethod_var)));
  5453. }
  5454. IL_0016:
  5455. {
  5456. String_t* L_4 = ___value1;
  5457. V_2 = (bool)((((RuntimeObject*)(String_t*)L_4) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  5458. bool L_5 = V_2;
  5459. if (!L_5)
  5460. {
  5461. goto IL_0029;
  5462. }
  5463. }
  5464. {
  5465. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_6 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
  5466. ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_6, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral9305B29342F3BC0993F85105BB6141FF30569ED2)), /*hidden argument*/NULL);
  5467. IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB_RuntimeMethod_var)));
  5468. }
  5469. IL_0029:
  5470. {
  5471. bool L_7;
  5472. L_7 = UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A(__this, /*hidden argument*/NULL);
  5473. V_3 = (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
  5474. bool L_8 = V_3;
  5475. if (!L_8)
  5476. {
  5477. goto IL_0041;
  5478. }
  5479. }
  5480. {
  5481. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5482. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBCE49DFF590DB2AB94984A5C75EF18BDDD83FE69)), /*hidden argument*/NULL);
  5483. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB_RuntimeMethod_var)));
  5484. }
  5485. IL_0041:
  5486. {
  5487. String_t* L_10 = ___name0;
  5488. String_t* L_11 = ___value1;
  5489. int32_t L_12;
  5490. L_12 = UnityWebRequest_InternalSetRequestHeader_m8D0FE7BF624976F2510A90F61A69CEB22739F2BE(__this, L_10, L_11, /*hidden argument*/NULL);
  5491. V_0 = L_12;
  5492. int32_t L_13 = V_0;
  5493. V_4 = (bool)((!(((uint32_t)L_13) <= ((uint32_t)0)))? 1 : 0);
  5494. bool L_14 = V_4;
  5495. if (!L_14)
  5496. {
  5497. goto IL_0060;
  5498. }
  5499. }
  5500. {
  5501. int32_t L_15 = V_0;
  5502. String_t* L_16;
  5503. L_16 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_15, /*hidden argument*/NULL);
  5504. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_17 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5505. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_17, L_16, /*hidden argument*/NULL);
  5506. IL2CPP_RAISE_MANAGED_EXCEPTION(L_17, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB_RuntimeMethod_var)));
  5507. }
  5508. IL_0060:
  5509. {
  5510. return;
  5511. }
  5512. }
  5513. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)
  5514. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_mDDEF10B06EF15A1B826F3402D786FA5E2B7B16BE (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___uh0, const RuntimeMethod* method)
  5515. {
  5516. typedef int32_t (*UnityWebRequest_SetUploadHandler_mDDEF10B06EF15A1B826F3402D786FA5E2B7B16BE_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA *);
  5517. static UnityWebRequest_SetUploadHandler_mDDEF10B06EF15A1B826F3402D786FA5E2B7B16BE_ftn _il2cpp_icall_func;
  5518. if (!_il2cpp_icall_func)
  5519. _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_mDDEF10B06EF15A1B826F3402D786FA5E2B7B16BE_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)");
  5520. int32_t icallRetVal = _il2cpp_icall_func(__this, ___uh0);
  5521. return icallRetVal;
  5522. }
  5523. // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler()
  5524. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * UnityWebRequest_get_uploadHandler_mFB108ADD5C75C440300BF85B87D4A730A158CC38 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5525. {
  5526. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * V_0 = NULL;
  5527. {
  5528. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_0 = __this->get_m_UploadHandler_2();
  5529. V_0 = L_0;
  5530. goto IL_000a;
  5531. }
  5532. IL_000a:
  5533. {
  5534. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_1 = V_0;
  5535. return L_1;
  5536. }
  5537. }
  5538. // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler)
  5539. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * ___value0, const RuntimeMethod* method)
  5540. {
  5541. int32_t V_0 = 0;
  5542. bool V_1 = false;
  5543. bool V_2 = false;
  5544. {
  5545. bool L_0;
  5546. L_0 = UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A(__this, /*hidden argument*/NULL);
  5547. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5548. bool L_1 = V_1;
  5549. if (!L_1)
  5550. {
  5551. goto IL_0019;
  5552. }
  5553. }
  5554. {
  5555. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5556. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral93CE1F3EEBFA5A5C2C336C37D31A01039231CA39)), /*hidden argument*/NULL);
  5557. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA_RuntimeMethod_var)));
  5558. }
  5559. IL_0019:
  5560. {
  5561. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_3 = ___value0;
  5562. int32_t L_4;
  5563. L_4 = UnityWebRequest_SetUploadHandler_mDDEF10B06EF15A1B826F3402D786FA5E2B7B16BE(__this, L_3, /*hidden argument*/NULL);
  5564. V_0 = L_4;
  5565. int32_t L_5 = V_0;
  5566. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5567. bool L_6 = V_2;
  5568. if (!L_6)
  5569. {
  5570. goto IL_0035;
  5571. }
  5572. }
  5573. {
  5574. int32_t L_7 = V_0;
  5575. String_t* L_8;
  5576. L_8 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_7, /*hidden argument*/NULL);
  5577. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5578. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, L_8, /*hidden argument*/NULL);
  5579. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA_RuntimeMethod_var)));
  5580. }
  5581. IL_0035:
  5582. {
  5583. UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * L_10 = ___value0;
  5584. __this->set_m_UploadHandler_2(L_10);
  5585. return;
  5586. }
  5587. }
  5588. // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)
  5589. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_m2B4503FF83DB5348F5ADCC8F23144414429BD36A (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___dh0, const RuntimeMethod* method)
  5590. {
  5591. typedef int32_t (*UnityWebRequest_SetDownloadHandler_m2B4503FF83DB5348F5ADCC8F23144414429BD36A_ftn) (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB *);
  5592. static UnityWebRequest_SetDownloadHandler_m2B4503FF83DB5348F5ADCC8F23144414429BD36A_ftn _il2cpp_icall_func;
  5593. if (!_il2cpp_icall_func)
  5594. _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_m2B4503FF83DB5348F5ADCC8F23144414429BD36A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)");
  5595. int32_t icallRetVal = _il2cpp_icall_func(__this, ___dh0);
  5596. return icallRetVal;
  5597. }
  5598. // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler()
  5599. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * UnityWebRequest_get_downloadHandler_mCE0A0C53A63419FE5AE25915AFB36EABE294C732 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5600. {
  5601. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * V_0 = NULL;
  5602. {
  5603. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_0 = __this->get_m_DownloadHandler_1();
  5604. V_0 = L_0;
  5605. goto IL_000a;
  5606. }
  5607. IL_000a:
  5608. {
  5609. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_1 = V_0;
  5610. return L_1;
  5611. }
  5612. }
  5613. // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler)
  5614. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * ___value0, const RuntimeMethod* method)
  5615. {
  5616. int32_t V_0 = 0;
  5617. bool V_1 = false;
  5618. bool V_2 = false;
  5619. {
  5620. bool L_0;
  5621. L_0 = UnityWebRequest_get_isModifiable_m5B9DC48172A00D5268B02F36AB4A9A0DFB38AD3A(__this, /*hidden argument*/NULL);
  5622. V_1 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
  5623. bool L_1 = V_1;
  5624. if (!L_1)
  5625. {
  5626. goto IL_0019;
  5627. }
  5628. }
  5629. {
  5630. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_2 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5631. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBC3A46521634BE1B34BB2F00154A05110A698F36)), /*hidden argument*/NULL);
  5632. IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2_RuntimeMethod_var)));
  5633. }
  5634. IL_0019:
  5635. {
  5636. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_3 = ___value0;
  5637. int32_t L_4;
  5638. L_4 = UnityWebRequest_SetDownloadHandler_m2B4503FF83DB5348F5ADCC8F23144414429BD36A(__this, L_3, /*hidden argument*/NULL);
  5639. V_0 = L_4;
  5640. int32_t L_5 = V_0;
  5641. V_2 = (bool)((!(((uint32_t)L_5) <= ((uint32_t)0)))? 1 : 0);
  5642. bool L_6 = V_2;
  5643. if (!L_6)
  5644. {
  5645. goto IL_0035;
  5646. }
  5647. }
  5648. {
  5649. int32_t L_7 = V_0;
  5650. String_t* L_8;
  5651. L_8 = UnityWebRequest_GetWebErrorString_m7EC396FAE313B0FDBD7A99A068AB714A953D475C(L_7, /*hidden argument*/NULL);
  5652. InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB * L_9 = (InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB_il2cpp_TypeInfo_var)));
  5653. InvalidOperationException__ctor_mC012CE552988309733C896F3FEA8249171E4402E(L_9, L_8, /*hidden argument*/NULL);
  5654. IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2_RuntimeMethod_var)));
  5655. }
  5656. IL_0035:
  5657. {
  5658. DownloadHandler_tEEAE0DD53DB497C8A491C4F7B7A14C3CA027B1DB * L_10 = ___value0;
  5659. __this->set_m_DownloadHandler_1(L_10);
  5660. return;
  5661. }
  5662. }
  5663. // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler()
  5664. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * UnityWebRequest_get_certificateHandler_mACA97B9158F17FFBEF489753C6E42302EEDF057D (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  5665. {
  5666. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * V_0 = NULL;
  5667. {
  5668. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * L_0 = __this->get_m_CertificateHandler_3();
  5669. V_0 = L_0;
  5670. goto IL_000a;
  5671. }
  5672. IL_000a:
  5673. {
  5674. CertificateHandler_tDA66C86D1302CE4266DBB078361F7A363C7B005E * L_1 = V_0;
  5675. return L_1;
  5676. }
  5677. }
  5678. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Get(System.String)
  5679. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * UnityWebRequest_Get_m9C24DB3E8BED0B0886F28DCD982A4741A9903B1A (String_t* ___uri0, const RuntimeMethod* method)
  5680. {
  5681. static bool s_Il2CppMethodInitialized;
  5682. if (!s_Il2CppMethodInitialized)
  5683. {
  5684. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_il2cpp_TypeInfo_var);
  5685. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_il2cpp_TypeInfo_var);
  5686. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6);
  5687. s_Il2CppMethodInitialized = true;
  5688. }
  5689. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_0 = NULL;
  5690. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_1 = NULL;
  5691. {
  5692. String_t* L_0 = ___uri0;
  5693. DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * L_1 = (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D *)il2cpp_codegen_object_new(DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_il2cpp_TypeInfo_var);
  5694. DownloadHandlerBuffer__ctor_m01FD35970E4B4FC45FC99A648408F53A8B164774(L_1, /*hidden argument*/NULL);
  5695. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_2 = (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *)il2cpp_codegen_object_new(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_il2cpp_TypeInfo_var);
  5696. UnityWebRequest__ctor_m6F640D6320ABA5A1ED08C3B2A259DB67372DCECB(L_2, L_0, _stringLiteral3781CFEEF925855A4B7284E1783A7D715A6333F6, L_1, (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA *)NULL, /*hidden argument*/NULL);
  5697. V_0 = L_2;
  5698. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_3 = V_0;
  5699. V_1 = L_3;
  5700. goto IL_0017;
  5701. }
  5702. IL_0017:
  5703. {
  5704. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_4 = V_1;
  5705. return L_4;
  5706. }
  5707. }
  5708. // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,UnityEngine.WWWForm)
  5709. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * UnityWebRequest_Post_m5F29B83B6FEDEAEAAC938DD26AE484A2750DB646 (String_t* ___uri0, WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * ___formData1, const RuntimeMethod* method)
  5710. {
  5711. static bool s_Il2CppMethodInitialized;
  5712. if (!s_Il2CppMethodInitialized)
  5713. {
  5714. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_il2cpp_TypeInfo_var);
  5715. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D);
  5716. s_Il2CppMethodInitialized = true;
  5717. }
  5718. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_0 = NULL;
  5719. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * V_1 = NULL;
  5720. {
  5721. String_t* L_0 = ___uri0;
  5722. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_1 = (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E *)il2cpp_codegen_object_new(UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E_il2cpp_TypeInfo_var);
  5723. UnityWebRequest__ctor_mC2ED369A4ACE53AFF2E70A38BE95EB48D68D4975(L_1, L_0, _stringLiteral14E338D17C42E552FA7AF42CDAE40CA1F0E8A04D, /*hidden argument*/NULL);
  5724. V_0 = L_1;
  5725. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_2 = V_0;
  5726. WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_3 = ___formData1;
  5727. UnityWebRequest_SetupPost_m10DB6A633A5A7E8C7CDDDE2966D7D9A114E6ABB0(L_2, L_3, /*hidden argument*/NULL);
  5728. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_4 = V_0;
  5729. V_1 = L_4;
  5730. goto IL_0019;
  5731. }
  5732. IL_0019:
  5733. {
  5734. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_5 = V_1;
  5735. return L_5;
  5736. }
  5737. }
  5738. // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm)
  5739. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m10DB6A633A5A7E8C7CDDDE2966D7D9A114E6ABB0 (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___request0, WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * ___formData1, const RuntimeMethod* method)
  5740. {
  5741. static bool s_Il2CppMethodInitialized;
  5742. if (!s_Il2CppMethodInitialized)
  5743. {
  5744. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_GetEnumerator_m99462FD95A811068FBA964A97213B4CA59FF8A31_RuntimeMethod_var);
  5745. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_il2cpp_TypeInfo_var);
  5746. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m76E867298698AA2B89F9D57E21CEFCD16B372D22_RuntimeMethod_var);
  5747. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mA57D4325DBD9D10EB3E43C99CC18DB6C3CE85FC8_RuntimeMethod_var);
  5748. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m0E89F960CC17EAEBA38A57A632911BB4A6D9EAFF_RuntimeMethod_var);
  5749. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Key_m9B9D89C6D4523685BDBB873E3E76754E89171468_RuntimeMethod_var);
  5750. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyValuePair_2_get_Value_m73C2858A70CE1C9A1AEE4134B4E3B136CA4B719F_RuntimeMethod_var);
  5751. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_il2cpp_TypeInfo_var);
  5752. s_Il2CppMethodInitialized = true;
  5753. }
  5754. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
  5755. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * V_1 = NULL;
  5756. bool V_2 = false;
  5757. bool V_3 = false;
  5758. bool V_4 = false;
  5759. Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB V_5;
  5760. memset((&V_5), 0, sizeof(V_5));
  5761. KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC V_6;
  5762. memset((&V_6), 0, sizeof(V_6));
  5763. Exception_t * __last_unhandled_exception = 0;
  5764. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  5765. {
  5766. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_0 = ___request0;
  5767. DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D * L_1 = (DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D *)il2cpp_codegen_object_new(DownloadHandlerBuffer_t74D11E891308B7FD5255C8D0D876AD0DBF512B6D_il2cpp_TypeInfo_var);
  5768. DownloadHandlerBuffer__ctor_m01FD35970E4B4FC45FC99A648408F53A8B164774(L_1, /*hidden argument*/NULL);
  5769. NullCheck(L_0);
  5770. UnityWebRequest_set_downloadHandler_m7496D2C5F755BEB68651A4F33EA9BDA319D092C2(L_0, L_1, /*hidden argument*/NULL);
  5771. WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_2 = ___formData1;
  5772. V_2 = (bool)((((RuntimeObject*)(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB *)L_2) == ((RuntimeObject*)(RuntimeObject *)NULL))? 1 : 0);
  5773. bool L_3 = V_2;
  5774. if (!L_3)
  5775. {
  5776. goto IL_0017;
  5777. }
  5778. }
  5779. {
  5780. goto IL_008c;
  5781. }
  5782. IL_0017:
  5783. {
  5784. V_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
  5785. WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_4 = ___formData1;
  5786. NullCheck(L_4);
  5787. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5;
  5788. L_5 = WWWForm_get_data_mCCE0C63DF2E0CA4F831F9AB78D6111BB8C669177(L_4, /*hidden argument*/NULL);
  5789. V_0 = L_5;
  5790. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_0;
  5791. NullCheck(L_6);
  5792. V_3 = (bool)((((int32_t)(((RuntimeArray*)L_6)->max_length)) == ((int32_t)0))? 1 : 0);
  5793. bool L_7 = V_3;
  5794. if (!L_7)
  5795. {
  5796. goto IL_002b;
  5797. }
  5798. }
  5799. {
  5800. V_0 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)NULL;
  5801. }
  5802. IL_002b:
  5803. {
  5804. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = V_0;
  5805. V_4 = (bool)((!(((RuntimeObject*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_8) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  5806. bool L_9 = V_4;
  5807. if (!L_9)
  5808. {
  5809. goto IL_0042;
  5810. }
  5811. }
  5812. {
  5813. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_10 = ___request0;
  5814. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = V_0;
  5815. UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 * L_12 = (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 *)il2cpp_codegen_object_new(UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_il2cpp_TypeInfo_var);
  5816. UploadHandlerRaw__ctor_mB46261D7AA64B605D5CA8FF9027A4A32E57A7BD9(L_12, L_11, /*hidden argument*/NULL);
  5817. NullCheck(L_10);
  5818. UnityWebRequest_set_uploadHandler_m8D5DF24FBE7F8F0DCF27E11CE3C6CF4363DF23BA(L_10, L_12, /*hidden argument*/NULL);
  5819. }
  5820. IL_0042:
  5821. {
  5822. WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * L_13 = ___formData1;
  5823. NullCheck(L_13);
  5824. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_14;
  5825. L_14 = WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A(L_13, /*hidden argument*/NULL);
  5826. V_1 = L_14;
  5827. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_15 = V_1;
  5828. NullCheck(L_15);
  5829. Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB L_16;
  5830. L_16 = Dictionary_2_GetEnumerator_m99462FD95A811068FBA964A97213B4CA59FF8A31(L_15, /*hidden argument*/Dictionary_2_GetEnumerator_m99462FD95A811068FBA964A97213B4CA59FF8A31_RuntimeMethod_var);
  5831. V_5 = L_16;
  5832. }
  5833. IL_0052:
  5834. try
  5835. {// begin try (depth: 1)
  5836. {
  5837. goto IL_0072;
  5838. }
  5839. IL_0054:
  5840. {
  5841. KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC L_17;
  5842. L_17 = Enumerator_get_Current_m0E89F960CC17EAEBA38A57A632911BB4A6D9EAFF_inline((Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB *)(&V_5), /*hidden argument*/Enumerator_get_Current_m0E89F960CC17EAEBA38A57A632911BB4A6D9EAFF_RuntimeMethod_var);
  5843. V_6 = L_17;
  5844. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_18 = ___request0;
  5845. String_t* L_19;
  5846. L_19 = KeyValuePair_2_get_Key_m9B9D89C6D4523685BDBB873E3E76754E89171468_inline((KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC *)(&V_6), /*hidden argument*/KeyValuePair_2_get_Key_m9B9D89C6D4523685BDBB873E3E76754E89171468_RuntimeMethod_var);
  5847. String_t* L_20;
  5848. L_20 = KeyValuePair_2_get_Value_m73C2858A70CE1C9A1AEE4134B4E3B136CA4B719F_inline((KeyValuePair_2_tE863694F1DB1F441CAE5A282829BDB941B2DEEBC *)(&V_6), /*hidden argument*/KeyValuePair_2_get_Value_m73C2858A70CE1C9A1AEE4134B4E3B136CA4B719F_RuntimeMethod_var);
  5849. NullCheck(L_18);
  5850. UnityWebRequest_SetRequestHeader_m5ED4EFBACC106390DF5D81D19E4D4D9D59F13EFB(L_18, L_19, L_20, /*hidden argument*/NULL);
  5851. }
  5852. IL_0072:
  5853. {
  5854. bool L_21;
  5855. L_21 = Enumerator_MoveNext_mA57D4325DBD9D10EB3E43C99CC18DB6C3CE85FC8((Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB *)(&V_5), /*hidden argument*/Enumerator_MoveNext_mA57D4325DBD9D10EB3E43C99CC18DB6C3CE85FC8_RuntimeMethod_var);
  5856. if (L_21)
  5857. {
  5858. goto IL_0054;
  5859. }
  5860. }
  5861. IL_007b:
  5862. {
  5863. IL2CPP_LEAVE(0x8C, FINALLY_007d);
  5864. }
  5865. }// end try (depth: 1)
  5866. catch(Il2CppExceptionWrapper& e)
  5867. {
  5868. __last_unhandled_exception = (Exception_t *)e.ex;
  5869. goto FINALLY_007d;
  5870. }
  5871. FINALLY_007d:
  5872. {// begin finally (depth: 1)
  5873. Enumerator_Dispose_m76E867298698AA2B89F9D57E21CEFCD16B372D22((Enumerator_tEDF5E503528903FB9B9A1D645C82789D7B8006CB *)(&V_5), /*hidden argument*/Enumerator_Dispose_m76E867298698AA2B89F9D57E21CEFCD16B372D22_RuntimeMethod_var);
  5874. IL2CPP_END_FINALLY(125)
  5875. }// end finally (depth: 1)
  5876. IL2CPP_CLEANUP(125)
  5877. {
  5878. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  5879. IL2CPP_JUMP_TBL(0x8C, IL_008c)
  5880. }
  5881. IL_008c:
  5882. {
  5883. return;
  5884. }
  5885. }
  5886. #ifdef __clang__
  5887. #pragma clang diagnostic pop
  5888. #endif
  5889. #ifdef __clang__
  5890. #pragma clang diagnostic push
  5891. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5892. #pragma clang diagnostic ignored "-Wunused-variable"
  5893. #endif
  5894. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  5895. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshal_pinvoke(const UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396& unmarshaled, UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_pinvoke& marshaled)
  5896. {
  5897. 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.");
  5898. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  5899. }
  5900. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396& unmarshaled)
  5901. {
  5902. 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.");
  5903. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  5904. }
  5905. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  5906. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_pinvoke& marshaled)
  5907. {
  5908. }
  5909. // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  5910. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshal_com(const UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396& unmarshaled, UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_com& marshaled)
  5911. {
  5912. 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.");
  5913. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  5914. }
  5915. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshal_com_back(const UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_com& marshaled, UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396& unmarshaled)
  5916. {
  5917. 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.");
  5918. IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL);
  5919. }
  5920. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation
  5921. IL2CPP_EXTERN_C void UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshal_com_cleanup(UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396_marshaled_com& marshaled)
  5922. {
  5923. }
  5924. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest)
  5925. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mAB1AE2613FEF8FAFB463E73D70043A89B2FC39C3 (UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___value0, const RuntimeMethod* method)
  5926. {
  5927. {
  5928. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_0 = ___value0;
  5929. __this->set_U3CwebRequestU3Ek__BackingField_2(L_0);
  5930. return;
  5931. }
  5932. }
  5933. // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::.ctor()
  5934. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_m9A74EA34FBE3BA2B4E4D8FAB3B44301ECEDBCB62 (UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * __this, const RuntimeMethod* method)
  5935. {
  5936. {
  5937. AsyncOperation__ctor_mFC0E13622A23CD19A631B9ABBA506683B71A2E4A(__this, /*hidden argument*/NULL);
  5938. return;
  5939. }
  5940. }
  5941. #ifdef __clang__
  5942. #pragma clang diagnostic pop
  5943. #endif
  5944. #ifdef __clang__
  5945. #pragma clang diagnostic push
  5946. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  5947. #pragma clang diagnostic ignored "-Wunused-variable"
  5948. #endif
  5949. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  5950. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_pinvoke(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke& marshaled)
  5951. {
  5952. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  5953. }
  5954. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_pinvoke_back(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke& marshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled)
  5955. {
  5956. intptr_t unmarshaled_m_Ptr_temp_0;
  5957. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  5958. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  5959. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  5960. }
  5961. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  5962. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_pinvoke_cleanup(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_pinvoke& marshaled)
  5963. {
  5964. }
  5965. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler
  5966. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_com(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com& marshaled)
  5967. {
  5968. marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0();
  5969. }
  5970. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_com_back(const UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com& marshaled, UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA& unmarshaled)
  5971. {
  5972. intptr_t unmarshaled_m_Ptr_temp_0;
  5973. memset((&unmarshaled_m_Ptr_temp_0), 0, sizeof(unmarshaled_m_Ptr_temp_0));
  5974. unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0;
  5975. unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0);
  5976. }
  5977. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler
  5978. IL2CPP_EXTERN_C void UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshal_com_cleanup(UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA_marshaled_com& marshaled)
  5979. {
  5980. }
  5981. // System.Void UnityEngine.Networking.UploadHandler::Release()
  5982. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Release_mE5F9BC6193A7285099D6409401414D886AB522C8 (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method)
  5983. {
  5984. typedef void (*UploadHandler_Release_mE5F9BC6193A7285099D6409401414D886AB522C8_ftn) (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA *);
  5985. static UploadHandler_Release_mE5F9BC6193A7285099D6409401414D886AB522C8_ftn _il2cpp_icall_func;
  5986. if (!_il2cpp_icall_func)
  5987. _il2cpp_icall_func = (UploadHandler_Release_mE5F9BC6193A7285099D6409401414D886AB522C8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::Release()");
  5988. _il2cpp_icall_func(__this);
  5989. }
  5990. // System.Void UnityEngine.Networking.UploadHandler::.ctor()
  5991. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler__ctor_mC1A1A5EDEDD4F9D7A6A8E9854E0CC6943B51158F (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method)
  5992. {
  5993. {
  5994. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  5995. return;
  5996. }
  5997. }
  5998. // System.Void UnityEngine.Networking.UploadHandler::Finalize()
  5999. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Finalize_mE43816DF1E8AFC6EA32518CE8C30A5EF99F06934 (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method)
  6000. {
  6001. Exception_t * __last_unhandled_exception = 0;
  6002. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  6003. {
  6004. }
  6005. IL_0001:
  6006. try
  6007. {// begin try (depth: 1)
  6008. VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::Dispose() */, __this);
  6009. IL2CPP_LEAVE(0x13, FINALLY_000b);
  6010. }// end try (depth: 1)
  6011. catch(Il2CppExceptionWrapper& e)
  6012. {
  6013. __last_unhandled_exception = (Exception_t *)e.ex;
  6014. goto FINALLY_000b;
  6015. }
  6016. FINALLY_000b:
  6017. {// begin finally (depth: 1)
  6018. Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL);
  6019. IL2CPP_END_FINALLY(11)
  6020. }// end finally (depth: 1)
  6021. IL2CPP_CLEANUP(11)
  6022. {
  6023. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  6024. IL2CPP_JUMP_TBL(0x13, IL_0013)
  6025. }
  6026. IL_0013:
  6027. {
  6028. return;
  6029. }
  6030. }
  6031. // System.Void UnityEngine.Networking.UploadHandler::Dispose()
  6032. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandler_Dispose_mC449C0EDAD6666DDE349A6F9796CEC7C86154F41 (UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA * __this, const RuntimeMethod* method)
  6033. {
  6034. static bool s_Il2CppMethodInitialized;
  6035. if (!s_Il2CppMethodInitialized)
  6036. {
  6037. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var);
  6038. s_Il2CppMethodInitialized = true;
  6039. }
  6040. bool V_0 = false;
  6041. {
  6042. intptr_t L_0 = __this->get_m_Ptr_0();
  6043. bool L_1;
  6044. L_1 = IntPtr_op_Inequality_m212AF0E66AA81FEDC982B1C8A44ADDA24B995EB8((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL);
  6045. V_0 = L_1;
  6046. bool L_2 = V_0;
  6047. if (!L_2)
  6048. {
  6049. goto IL_0029;
  6050. }
  6051. }
  6052. {
  6053. UploadHandler_Release_mE5F9BC6193A7285099D6409401414D886AB522C8(__this, /*hidden argument*/NULL);
  6054. __this->set_m_Ptr_0((intptr_t)(0));
  6055. }
  6056. IL_0029:
  6057. {
  6058. return;
  6059. }
  6060. }
  6061. #ifdef __clang__
  6062. #pragma clang diagnostic pop
  6063. #endif
  6064. #ifdef __clang__
  6065. #pragma clang diagnostic push
  6066. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6067. #pragma clang diagnostic ignored "-Wunused-variable"
  6068. #endif
  6069. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  6070. IL2CPP_EXTERN_C void UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshal_pinvoke(const UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669& unmarshaled, UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_pinvoke& marshaled)
  6071. {
  6072. Exception_t* ___m_Payload_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Payload' of type 'UploadHandlerRaw'.");
  6073. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Payload_1Exception, NULL);
  6074. }
  6075. IL2CPP_EXTERN_C void UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshal_pinvoke_back(const UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_pinvoke& marshaled, UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669& unmarshaled)
  6076. {
  6077. Exception_t* ___m_Payload_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Payload' of type 'UploadHandlerRaw'.");
  6078. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Payload_1Exception, NULL);
  6079. }
  6080. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  6081. IL2CPP_EXTERN_C void UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshal_pinvoke_cleanup(UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_pinvoke& marshaled)
  6082. {
  6083. }
  6084. // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw
  6085. IL2CPP_EXTERN_C void UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshal_com(const UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669& unmarshaled, UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_com& marshaled)
  6086. {
  6087. Exception_t* ___m_Payload_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Payload' of type 'UploadHandlerRaw'.");
  6088. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Payload_1Exception, NULL);
  6089. }
  6090. IL2CPP_EXTERN_C void UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshal_com_back(const UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_com& marshaled, UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669& unmarshaled)
  6091. {
  6092. Exception_t* ___m_Payload_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Payload' of type 'UploadHandlerRaw'.");
  6093. IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Payload_1Exception, NULL);
  6094. }
  6095. // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw
  6096. IL2CPP_EXTERN_C void UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshal_com_cleanup(UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669_marshaled_com& marshaled)
  6097. {
  6098. }
  6099. // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)
  6100. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m61972C0C29EA1A56916C0182E3213850ED30D0EF (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 * ___self0, uint8_t* ___data1, int32_t ___dataLength2, const RuntimeMethod* method)
  6101. {
  6102. typedef intptr_t (*UploadHandlerRaw_Create_m61972C0C29EA1A56916C0182E3213850ED30D0EF_ftn) (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 *, uint8_t*, int32_t);
  6103. static UploadHandlerRaw_Create_m61972C0C29EA1A56916C0182E3213850ED30D0EF_ftn _il2cpp_icall_func;
  6104. if (!_il2cpp_icall_func)
  6105. _il2cpp_icall_func = (UploadHandlerRaw_Create_m61972C0C29EA1A56916C0182E3213850ED30D0EF_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte*,System.Int32)");
  6106. intptr_t icallRetVal = _il2cpp_icall_func(___self0, ___data1, ___dataLength2);
  6107. return icallRetVal;
  6108. }
  6109. // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[])
  6110. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_mB46261D7AA64B605D5CA8FF9027A4A32E57A7BD9 (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 * __this, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data0, const RuntimeMethod* method)
  6111. {
  6112. static bool s_Il2CppMethodInitialized;
  6113. if (!s_Il2CppMethodInitialized)
  6114. {
  6115. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_RuntimeMethod_var);
  6116. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2_RuntimeMethod_var);
  6117. s_Il2CppMethodInitialized = true;
  6118. }
  6119. bool V_0 = false;
  6120. int32_t G_B3_0 = 0;
  6121. {
  6122. UploadHandler__ctor_mC1A1A5EDEDD4F9D7A6A8E9854E0CC6943B51158F(__this, /*hidden argument*/NULL);
  6123. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___data0;
  6124. if (!L_0)
  6125. {
  6126. goto IL_0012;
  6127. }
  6128. }
  6129. {
  6130. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___data0;
  6131. NullCheck(L_1);
  6132. G_B3_0 = ((((int32_t)(((RuntimeArray*)L_1)->max_length)) == ((int32_t)0))? 1 : 0);
  6133. goto IL_0013;
  6134. }
  6135. IL_0012:
  6136. {
  6137. G_B3_0 = 1;
  6138. }
  6139. IL_0013:
  6140. {
  6141. V_0 = (bool)G_B3_0;
  6142. bool L_2 = V_0;
  6143. if (!L_2)
  6144. {
  6145. goto IL_0022;
  6146. }
  6147. }
  6148. {
  6149. ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 * L_3 = (ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_t505FA8C11E883F2D96C797AD9D396490794DEE00_il2cpp_TypeInfo_var)));
  6150. ArgumentException__ctor_m2D35EAD113C2ADC99EB17B940A2097A93FD23EFC(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5E56E678035E4A801BA617E16F57410976493BFB)), /*hidden argument*/NULL);
  6151. IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&UploadHandlerRaw__ctor_mB46261D7AA64B605D5CA8FF9027A4A32E57A7BD9_RuntimeMethod_var)));
  6152. }
  6153. IL_0022:
  6154. {
  6155. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___data0;
  6156. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_5;
  6157. memset((&L_5), 0, sizeof(L_5));
  6158. NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2((&L_5), L_4, 4, /*hidden argument*/NativeArray_1__ctor_m27896B63D18949DDC1B008955271F779FDC2E6C2_RuntimeMethod_var);
  6159. __this->set_m_Payload_1(L_5);
  6160. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 L_6 = __this->get_m_Payload_1();
  6161. void* L_7;
  6162. L_7 = NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88(L_6, /*hidden argument*/NativeArrayUnsafeUtility_GetUnsafeReadOnlyPtr_TisByte_t0111FAB8B8685667EDDAF77683F0D8F86B659056_mE83D926C2B7067E1B6CE5B2398B0141B3261BD88_RuntimeMethod_var);
  6163. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_8 = __this->get_address_of_m_Payload_1();
  6164. int32_t L_9;
  6165. L_9 = IL2CPP_NATIVEARRAY_GET_LENGTH(((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_8)->___m_Length_1);
  6166. intptr_t L_10;
  6167. L_10 = UploadHandlerRaw_Create_m61972C0C29EA1A56916C0182E3213850ED30D0EF(__this, (uint8_t*)(uint8_t*)L_7, L_9, /*hidden argument*/NULL);
  6168. ((UploadHandler_t5F80A2A6874D4D330751BE3524009C21C9B74BDA *)__this)->set_m_Ptr_0((intptr_t)L_10);
  6169. return;
  6170. }
  6171. }
  6172. // System.Void UnityEngine.Networking.UploadHandlerRaw::Dispose()
  6173. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UploadHandlerRaw_Dispose_m3FBC9DFABA6C2905709E83E839A13A7B8B248A54 (UploadHandlerRaw_t398466F5905D0829DE2807D531A2419DA8B61669 * __this, const RuntimeMethod* method)
  6174. {
  6175. static bool s_Il2CppMethodInitialized;
  6176. if (!s_Il2CppMethodInitialized)
  6177. {
  6178. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var);
  6179. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  6180. s_Il2CppMethodInitialized = true;
  6181. }
  6182. bool V_0 = false;
  6183. {
  6184. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_0 = __this->get_address_of_m_Payload_1();
  6185. bool L_1;
  6186. L_1 = NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_0, /*hidden argument*/NativeArray_1_get_IsCreated_mEC6DA2E0DE9CDE556FC6C43924D9273786096DAC_RuntimeMethod_var);
  6187. V_0 = L_1;
  6188. bool L_2 = V_0;
  6189. if (!L_2)
  6190. {
  6191. goto IL_001c;
  6192. }
  6193. }
  6194. {
  6195. NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 * L_3 = __this->get_address_of_m_Payload_1();
  6196. NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342((NativeArray_1_t3C2855C5B238E8C6739D4C17833F244B95C0F785 *)L_3, /*hidden argument*/NativeArray_1_Dispose_mD88EDF062EFB4B0E6C8F925B5A4E47E97E687342_RuntimeMethod_var);
  6197. }
  6198. IL_001c:
  6199. {
  6200. UploadHandler_Dispose_mC449C0EDAD6666DDE349A6F9796CEC7C86154F41(__this, /*hidden argument*/NULL);
  6201. return;
  6202. }
  6203. }
  6204. #ifdef __clang__
  6205. #pragma clang diagnostic pop
  6206. #endif
  6207. #ifdef __clang__
  6208. #pragma clang diagnostic push
  6209. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  6210. #pragma clang diagnostic ignored "-Wunused-variable"
  6211. #endif
  6212. // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding()
  6213. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689 (const RuntimeMethod* method)
  6214. {
  6215. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * V_0 = NULL;
  6216. {
  6217. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0;
  6218. L_0 = Encoding_get_ASCII_mD3E8370997347A3F6822BDA50BC0A1DBC0059173(/*hidden argument*/NULL);
  6219. V_0 = L_0;
  6220. goto IL_0009;
  6221. }
  6222. IL_0009:
  6223. {
  6224. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_1 = V_0;
  6225. return L_1;
  6226. }
  6227. }
  6228. // System.Void UnityEngine.WWWForm::.ctor()
  6229. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__ctor_mA0987933892AF6FA9E01603B214E86EC52F6B055 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method)
  6230. {
  6231. static bool s_Il2CppMethodInitialized;
  6232. if (!s_Il2CppMethodInitialized)
  6233. {
  6234. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var);
  6235. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
  6236. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mC74F8340E150B8F9520188937677421C55AF5C05_RuntimeMethod_var);
  6237. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_il2cpp_TypeInfo_var);
  6238. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
  6239. s_Il2CppMethodInitialized = true;
  6240. }
  6241. int32_t V_0 = 0;
  6242. int32_t V_1 = 0;
  6243. bool V_2 = false;
  6244. bool V_3 = false;
  6245. bool V_4 = false;
  6246. {
  6247. __this->set_containsFiles_5((bool)0);
  6248. Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL);
  6249. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_0 = (List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE *)il2cpp_codegen_object_new(List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE_il2cpp_TypeInfo_var);
  6250. List_1__ctor_mC74F8340E150B8F9520188937677421C55AF5C05(L_0, /*hidden argument*/List_1__ctor_mC74F8340E150B8F9520188937677421C55AF5C05_RuntimeMethod_var);
  6251. __this->set_formData_0(L_0);
  6252. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_1 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
  6253. List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_1, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
  6254. __this->set_fieldNames_1(L_1);
  6255. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_2 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
  6256. List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_2, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
  6257. __this->set_fileNames_2(L_2);
  6258. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_3 = (List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 *)il2cpp_codegen_object_new(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_il2cpp_TypeInfo_var);
  6259. List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9(L_3, /*hidden argument*/List_1__ctor_m30C52A4F2828D86CA3FAB0B1B583948F4DA9F1F9_RuntimeMethod_var);
  6260. __this->set_types_3(L_3);
  6261. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)40));
  6262. __this->set_boundary_4(L_4);
  6263. V_0 = 0;
  6264. goto IL_0080;
  6265. }
  6266. IL_004c:
  6267. {
  6268. int32_t L_5;
  6269. L_5 = Random_Range_m4B3A0037ACA057F33C94508F908546B9317D996A(((int32_t)48), ((int32_t)110), /*hidden argument*/NULL);
  6270. V_1 = L_5;
  6271. int32_t L_6 = V_1;
  6272. V_2 = (bool)((((int32_t)L_6) > ((int32_t)((int32_t)57)))? 1 : 0);
  6273. bool L_7 = V_2;
  6274. if (!L_7)
  6275. {
  6276. goto IL_0064;
  6277. }
  6278. }
  6279. {
  6280. int32_t L_8 = V_1;
  6281. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)7));
  6282. }
  6283. IL_0064:
  6284. {
  6285. int32_t L_9 = V_1;
  6286. V_3 = (bool)((((int32_t)L_9) > ((int32_t)((int32_t)90)))? 1 : 0);
  6287. bool L_10 = V_3;
  6288. if (!L_10)
  6289. {
  6290. goto IL_0071;
  6291. }
  6292. }
  6293. {
  6294. int32_t L_11 = V_1;
  6295. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)6));
  6296. }
  6297. IL_0071:
  6298. {
  6299. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = __this->get_boundary_4();
  6300. int32_t L_13 = V_0;
  6301. int32_t L_14 = V_1;
  6302. NullCheck(L_12);
  6303. (L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (uint8_t)((int32_t)((uint8_t)L_14)));
  6304. int32_t L_15 = V_0;
  6305. V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
  6306. }
  6307. IL_0080:
  6308. {
  6309. int32_t L_16 = V_0;
  6310. V_4 = (bool)((((int32_t)L_16) < ((int32_t)((int32_t)40)))? 1 : 0);
  6311. bool L_17 = V_4;
  6312. if (L_17)
  6313. {
  6314. goto IL_004c;
  6315. }
  6316. }
  6317. {
  6318. return;
  6319. }
  6320. }
  6321. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String)
  6322. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, String_t* ___value1, const RuntimeMethod* method)
  6323. {
  6324. {
  6325. String_t* L_0 = ___fieldName0;
  6326. String_t* L_1 = ___value1;
  6327. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_2;
  6328. L_2 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6329. WWWForm_AddField_m71508C882B6F77219D3430D8992DC3C340492976(__this, L_0, L_1, L_2, /*hidden argument*/NULL);
  6330. return;
  6331. }
  6332. }
  6333. // System.Void UnityEngine.WWWForm::AddField(System.String,System.String,System.Text.Encoding)
  6334. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m71508C882B6F77219D3430D8992DC3C340492976 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, String_t* ___value1, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e2, const RuntimeMethod* method)
  6335. {
  6336. static bool s_Il2CppMethodInitialized;
  6337. if (!s_Il2CppMethodInitialized)
  6338. {
  6339. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
  6340. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mDA769E25FD7E7BEF999CC57347B6B5F4E90620F8_RuntimeMethod_var);
  6341. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843);
  6342. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  6343. s_Il2CppMethodInitialized = true;
  6344. }
  6345. {
  6346. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_0 = __this->get_fieldNames_1();
  6347. String_t* L_1 = ___fieldName0;
  6348. NullCheck(L_0);
  6349. List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_0, L_1, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
  6350. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_2 = __this->get_fileNames_2();
  6351. NullCheck(L_2);
  6352. List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_2, (String_t*)NULL, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
  6353. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_3 = __this->get_formData_0();
  6354. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_4 = ___e2;
  6355. String_t* L_5 = ___value1;
  6356. NullCheck(L_4);
  6357. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6;
  6358. L_6 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, L_5);
  6359. NullCheck(L_3);
  6360. List_1_Add_mDA769E25FD7E7BEF999CC57347B6B5F4E90620F8(L_3, L_6, /*hidden argument*/List_1_Add_mDA769E25FD7E7BEF999CC57347B6B5F4E90620F8_RuntimeMethod_var);
  6361. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_7 = __this->get_types_3();
  6362. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_8 = ___e2;
  6363. NullCheck(L_8);
  6364. String_t* L_9;
  6365. L_9 = VirtualFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_WebName() */, L_8);
  6366. String_t* L_10;
  6367. L_10 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral774D4BF54129BC524F2FC2ADFFD07EC2B34C8843, L_9, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, /*hidden argument*/NULL);
  6368. NullCheck(L_7);
  6369. List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A(L_7, L_10, /*hidden argument*/List_1_Add_mD8C90346622A7F72A072D319F0E2AE851BB5885A_RuntimeMethod_var);
  6370. return;
  6371. }
  6372. }
  6373. // System.Void UnityEngine.WWWForm::AddField(System.String,System.Int32)
  6374. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm_AddField_m20BED9E7C237D585E5D040A5D815D9C7DC16990C (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, String_t* ___fieldName0, int32_t ___i1, const RuntimeMethod* method)
  6375. {
  6376. {
  6377. String_t* L_0 = ___fieldName0;
  6378. String_t* L_1;
  6379. L_1 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)(&___i1), /*hidden argument*/NULL);
  6380. WWWForm_AddField_m8ACDB7B2124FA6EAD7FC120BB469C6352C7B7696(__this, L_0, L_1, /*hidden argument*/NULL);
  6381. return;
  6382. }
  6383. }
  6384. // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers()
  6385. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * WWWForm_get_headers_m9F6A4222926792B110E9821AF5B23FF3FB9BD45A (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method)
  6386. {
  6387. static bool s_Il2CppMethodInitialized;
  6388. if (!s_Il2CppMethodInitialized)
  6389. {
  6390. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mA6747E78BD4DF1D09D9091C1B3EBAE0FDB200666_RuntimeMethod_var);
  6391. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE_RuntimeMethod_var);
  6392. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5_il2cpp_TypeInfo_var);
  6393. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE);
  6394. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02);
  6395. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18);
  6396. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  6397. s_Il2CppMethodInitialized = true;
  6398. }
  6399. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * V_0 = NULL;
  6400. bool V_1 = false;
  6401. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * V_2 = NULL;
  6402. {
  6403. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_0 = (Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 *)il2cpp_codegen_object_new(Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5_il2cpp_TypeInfo_var);
  6404. Dictionary_2__ctor_mA6747E78BD4DF1D09D9091C1B3EBAE0FDB200666(L_0, /*hidden argument*/Dictionary_2__ctor_mA6747E78BD4DF1D09D9091C1B3EBAE0FDB200666_RuntimeMethod_var);
  6405. V_0 = L_0;
  6406. bool L_1 = __this->get_containsFiles_5();
  6407. V_1 = L_1;
  6408. bool L_2 = V_1;
  6409. if (!L_2)
  6410. {
  6411. goto IL_0047;
  6412. }
  6413. }
  6414. {
  6415. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_3 = V_0;
  6416. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_4;
  6417. L_4 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6418. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = __this->get_boundary_4();
  6419. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = __this->get_boundary_4();
  6420. NullCheck(L_6);
  6421. NullCheck(L_4);
  6422. String_t* L_7;
  6423. L_7 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(36 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_4, L_5, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length))));
  6424. String_t* L_8;
  6425. L_8 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(_stringLiteral56B70A227BDF525F3B35BE8F7F19C2510184DC02, L_7, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677, /*hidden argument*/NULL);
  6426. NullCheck(L_3);
  6427. Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE(L_3, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, L_8, /*hidden argument*/Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE_RuntimeMethod_var);
  6428. goto IL_0058;
  6429. }
  6430. IL_0047:
  6431. {
  6432. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_9 = V_0;
  6433. NullCheck(L_9);
  6434. Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE(L_9, _stringLiteral5B58EBE31E594BF8FA4BEA3CD075473149322B18, _stringLiteral14B6DF3349D302FD20ED0B3BD448C2045066E9BE, /*hidden argument*/Dictionary_2_set_Item_m1ACD9DE86340A7CA50E97B170F973A5A09160DCE_RuntimeMethod_var);
  6435. }
  6436. IL_0058:
  6437. {
  6438. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_10 = V_0;
  6439. V_2 = L_10;
  6440. goto IL_005c;
  6441. }
  6442. IL_005c:
  6443. {
  6444. Dictionary_2_tDE3227CA5E7A32F5070BD24C69F42204A3ADE9D5 * L_11 = V_2;
  6445. return L_11;
  6446. }
  6447. }
  6448. // System.Byte[] UnityEngine.WWWForm::get_data()
  6449. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWForm_get_data_mCCE0C63DF2E0CA4F831F9AB78D6111BB8C669177 (WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB * __this, const RuntimeMethod* method)
  6450. {
  6451. static bool s_Il2CppMethodInitialized;
  6452. if (!s_Il2CppMethodInitialized)
  6453. {
  6454. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
  6455. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var);
  6456. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var);
  6457. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var);
  6458. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
  6459. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var);
  6460. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6461. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  6462. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  6463. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  6464. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  6465. s_Il2CppMethodInitialized = true;
  6466. }
  6467. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_0 = NULL;
  6468. bool V_1 = false;
  6469. int32_t V_2 = 0;
  6470. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_3 = NULL;
  6471. String_t* V_4 = NULL;
  6472. String_t* V_5 = NULL;
  6473. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_6 = NULL;
  6474. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_7 = NULL;
  6475. bool V_8 = false;
  6476. bool V_9 = false;
  6477. String_t* V_10 = NULL;
  6478. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_11 = NULL;
  6479. bool V_12 = false;
  6480. bool V_13 = false;
  6481. int32_t V_14 = 0;
  6482. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_15 = NULL;
  6483. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_16 = NULL;
  6484. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_17 = NULL;
  6485. bool V_18 = false;
  6486. bool V_19 = false;
  6487. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_20 = NULL;
  6488. Exception_t * __last_unhandled_exception = 0;
  6489. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  6490. int32_t G_B6_0 = 0;
  6491. int32_t G_B12_0 = 0;
  6492. {
  6493. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_0 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
  6494. MemoryStream__ctor_mCB4274FF375AD786CCED424E80B047E0DEC50938(L_0, ((int32_t)1024), /*hidden argument*/NULL);
  6495. V_0 = L_0;
  6496. }
  6497. IL_000c:
  6498. try
  6499. {// begin try (depth: 1)
  6500. {
  6501. bool L_1 = __this->get_containsFiles_5();
  6502. V_1 = L_1;
  6503. bool L_2 = V_1;
  6504. if (!L_2)
  6505. {
  6506. goto IL_0318;
  6507. }
  6508. }
  6509. IL_001a:
  6510. {
  6511. V_2 = 0;
  6512. goto IL_0295;
  6513. }
  6514. IL_0022:
  6515. {
  6516. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_3 = V_0;
  6517. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6518. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6519. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6520. NullCheck(L_5);
  6521. NullCheck(L_3);
  6522. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_3, L_4, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))));
  6523. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_6 = V_0;
  6524. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dDash_6();
  6525. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dDash_6();
  6526. NullCheck(L_8);
  6527. NullCheck(L_6);
  6528. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_6, L_7, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))));
  6529. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_9 = V_0;
  6530. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = __this->get_boundary_4();
  6531. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = __this->get_boundary_4();
  6532. NullCheck(L_11);
  6533. NullCheck(L_9);
  6534. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_9, L_10, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length))));
  6535. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_12 = V_0;
  6536. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6537. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6538. NullCheck(L_14);
  6539. NullCheck(L_12);
  6540. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_12, L_13, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length))));
  6541. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_15 = V_0;
  6542. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_contentTypeHeader_8();
  6543. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_17 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_contentTypeHeader_8();
  6544. NullCheck(L_17);
  6545. NullCheck(L_15);
  6546. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_15, L_16, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_17)->max_length))));
  6547. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_18;
  6548. L_18 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6549. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_19 = __this->get_types_3();
  6550. int32_t L_20 = V_2;
  6551. NullCheck(L_19);
  6552. String_t* L_21;
  6553. L_21 = List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline(L_19, L_20, /*hidden argument*/List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var);
  6554. NullCheck(L_18);
  6555. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_22;
  6556. L_22 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_18, L_21);
  6557. V_3 = L_22;
  6558. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_23 = V_0;
  6559. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_24 = V_3;
  6560. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = V_3;
  6561. NullCheck(L_25);
  6562. NullCheck(L_23);
  6563. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_23, L_24, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_25)->max_length))));
  6564. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_26 = V_0;
  6565. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6566. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_28 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6567. NullCheck(L_28);
  6568. NullCheck(L_26);
  6569. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_26, L_27, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_28)->max_length))));
  6570. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_29 = V_0;
  6571. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_30 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dispositionHeader_9();
  6572. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_31 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dispositionHeader_9();
  6573. NullCheck(L_31);
  6574. NullCheck(L_29);
  6575. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_29, L_30, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length))));
  6576. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_32;
  6577. L_32 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6578. NullCheck(L_32);
  6579. String_t* L_33;
  6580. L_33 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Text.Encoding::get_HeaderName() */, L_32);
  6581. V_4 = L_33;
  6582. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_34 = __this->get_fieldNames_1();
  6583. int32_t L_35 = V_2;
  6584. NullCheck(L_34);
  6585. String_t* L_36;
  6586. L_36 = List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline(L_34, L_35, /*hidden argument*/List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var);
  6587. V_5 = L_36;
  6588. String_t* L_37 = V_5;
  6589. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_38;
  6590. L_38 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6591. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  6592. bool L_39;
  6593. L_39 = WWWTranscoder_SevenBitClean_mCD4E3A5FA7817A3240AE6E1DA57FEB9C09539DA9(L_37, L_38, /*hidden argument*/NULL);
  6594. if (!L_39)
  6595. {
  6596. goto IL_010d;
  6597. }
  6598. }
  6599. IL_00fc:
  6600. {
  6601. String_t* L_40 = V_5;
  6602. NullCheck(L_40);
  6603. int32_t L_41;
  6604. L_41 = String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454(L_40, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, /*hidden argument*/NULL);
  6605. G_B6_0 = ((((int32_t)L_41) > ((int32_t)(-1)))? 1 : 0);
  6606. goto IL_010e;
  6607. }
  6608. IL_010d:
  6609. {
  6610. G_B6_0 = 1;
  6611. }
  6612. IL_010e:
  6613. {
  6614. V_8 = (bool)G_B6_0;
  6615. bool L_42 = V_8;
  6616. if (!L_42)
  6617. {
  6618. goto IL_014f;
  6619. }
  6620. }
  6621. IL_0114:
  6622. {
  6623. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_43 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5);
  6624. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_44 = L_43;
  6625. NullCheck(L_44);
  6626. ArrayElementTypeCheck (L_44, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  6627. (L_44)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  6628. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_45 = L_44;
  6629. String_t* L_46 = V_4;
  6630. NullCheck(L_45);
  6631. ArrayElementTypeCheck (L_45, L_46);
  6632. (L_45)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_46);
  6633. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_47 = L_45;
  6634. NullCheck(L_47);
  6635. ArrayElementTypeCheck (L_47, _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  6636. (L_47)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  6637. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_48 = L_47;
  6638. String_t* L_49 = V_5;
  6639. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_50;
  6640. L_50 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6641. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  6642. String_t* L_51;
  6643. L_51 = WWWTranscoder_QPEncode_m9D74D3126E50EE48005E3DCEAD4771F63AF399B4(L_49, L_50, /*hidden argument*/NULL);
  6644. NullCheck(L_48);
  6645. ArrayElementTypeCheck (L_48, L_51);
  6646. (L_48)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_51);
  6647. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_52 = L_48;
  6648. NullCheck(L_52);
  6649. ArrayElementTypeCheck (L_52, _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  6650. (L_52)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  6651. String_t* L_53;
  6652. L_53 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9(L_52, /*hidden argument*/NULL);
  6653. V_5 = L_53;
  6654. }
  6655. IL_014f:
  6656. {
  6657. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_54;
  6658. L_54 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6659. String_t* L_55 = V_5;
  6660. NullCheck(L_54);
  6661. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_56;
  6662. L_56 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_54, L_55);
  6663. V_6 = L_56;
  6664. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_57 = V_0;
  6665. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_58 = V_6;
  6666. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_59 = V_6;
  6667. NullCheck(L_59);
  6668. NullCheck(L_57);
  6669. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_57, L_58, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_59)->max_length))));
  6670. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_60 = V_0;
  6671. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6672. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_61 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_endQuote_10();
  6673. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_62 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_endQuote_10();
  6674. NullCheck(L_62);
  6675. NullCheck(L_60);
  6676. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_60, L_61, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_62)->max_length))));
  6677. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_63 = __this->get_fileNames_2();
  6678. int32_t L_64 = V_2;
  6679. NullCheck(L_63);
  6680. String_t* L_65;
  6681. L_65 = List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline(L_63, L_64, /*hidden argument*/List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var);
  6682. V_9 = (bool)((!(((RuntimeObject*)(String_t*)L_65) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0);
  6683. bool L_66 = V_9;
  6684. if (!L_66)
  6685. {
  6686. goto IL_024c;
  6687. }
  6688. }
  6689. IL_0197:
  6690. {
  6691. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_67 = __this->get_fileNames_2();
  6692. int32_t L_68 = V_2;
  6693. NullCheck(L_67);
  6694. String_t* L_69;
  6695. L_69 = List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline(L_67, L_68, /*hidden argument*/List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var);
  6696. V_10 = L_69;
  6697. String_t* L_70 = V_10;
  6698. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_71;
  6699. L_71 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6700. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  6701. bool L_72;
  6702. L_72 = WWWTranscoder_SevenBitClean_mCD4E3A5FA7817A3240AE6E1DA57FEB9C09539DA9(L_70, L_71, /*hidden argument*/NULL);
  6703. if (!L_72)
  6704. {
  6705. goto IL_01c5;
  6706. }
  6707. }
  6708. IL_01b4:
  6709. {
  6710. String_t* L_73 = V_10;
  6711. NullCheck(L_73);
  6712. int32_t L_74;
  6713. L_74 = String_IndexOf_m90616B2D8ACC645F389750FAE4F9A75BC5D82454(L_73, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86, /*hidden argument*/NULL);
  6714. G_B12_0 = ((((int32_t)L_74) > ((int32_t)(-1)))? 1 : 0);
  6715. goto IL_01c6;
  6716. }
  6717. IL_01c5:
  6718. {
  6719. G_B12_0 = 1;
  6720. }
  6721. IL_01c6:
  6722. {
  6723. V_12 = (bool)G_B12_0;
  6724. bool L_75 = V_12;
  6725. if (!L_75)
  6726. {
  6727. goto IL_0207;
  6728. }
  6729. }
  6730. IL_01cc:
  6731. {
  6732. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_76 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)5);
  6733. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_77 = L_76;
  6734. NullCheck(L_77);
  6735. ArrayElementTypeCheck (L_77, _stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  6736. (L_77)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral333AFA041DE8E9D54728A1EA405FBCB141FC3A86);
  6737. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_78 = L_77;
  6738. String_t* L_79 = V_4;
  6739. NullCheck(L_78);
  6740. ArrayElementTypeCheck (L_78, L_79);
  6741. (L_78)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_79);
  6742. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_80 = L_78;
  6743. NullCheck(L_80);
  6744. ArrayElementTypeCheck (L_80, _stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  6745. (L_80)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral4B0CEF65E50AE46EF4878CC1DD83FF8B5ED020EA);
  6746. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_81 = L_80;
  6747. String_t* L_82 = V_10;
  6748. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_83;
  6749. L_83 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6750. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  6751. String_t* L_84;
  6752. L_84 = WWWTranscoder_QPEncode_m9D74D3126E50EE48005E3DCEAD4771F63AF399B4(L_82, L_83, /*hidden argument*/NULL);
  6753. NullCheck(L_81);
  6754. ArrayElementTypeCheck (L_81, L_84);
  6755. (L_81)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_84);
  6756. StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_85 = L_81;
  6757. NullCheck(L_85);
  6758. ArrayElementTypeCheck (L_85, _stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  6759. (L_85)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteralCDFDBC13EE222005FD5A3ED5AE4DD309848E3C50);
  6760. String_t* L_86;
  6761. L_86 = String_Concat_mFEA7EFA1A6E75B96B1B7BC4526AAC864BFF83CC9(L_85, /*hidden argument*/NULL);
  6762. V_10 = L_86;
  6763. }
  6764. IL_0207:
  6765. {
  6766. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_87;
  6767. L_87 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6768. String_t* L_88 = V_10;
  6769. NullCheck(L_87);
  6770. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_89;
  6771. L_89 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_87, L_88);
  6772. V_11 = L_89;
  6773. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_90 = V_0;
  6774. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6775. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_91 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_fileNameField_11();
  6776. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_92 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_fileNameField_11();
  6777. NullCheck(L_92);
  6778. NullCheck(L_90);
  6779. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_90, L_91, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_92)->max_length))));
  6780. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_93 = V_0;
  6781. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_94 = V_11;
  6782. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_95 = V_11;
  6783. NullCheck(L_95);
  6784. NullCheck(L_93);
  6785. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_93, L_94, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_95)->max_length))));
  6786. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_96 = V_0;
  6787. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_97 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_endQuote_10();
  6788. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_98 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_endQuote_10();
  6789. NullCheck(L_98);
  6790. NullCheck(L_96);
  6791. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_96, L_97, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_98)->max_length))));
  6792. }
  6793. IL_024c:
  6794. {
  6795. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_99 = V_0;
  6796. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6797. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_100 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6798. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_101 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6799. NullCheck(L_101);
  6800. NullCheck(L_99);
  6801. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_99, L_100, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_101)->max_length))));
  6802. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_102 = V_0;
  6803. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_103 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6804. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_104 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6805. NullCheck(L_104);
  6806. NullCheck(L_102);
  6807. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_102, L_103, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_104)->max_length))));
  6808. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_105 = __this->get_formData_0();
  6809. int32_t L_106 = V_2;
  6810. NullCheck(L_105);
  6811. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_107;
  6812. L_107 = List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_inline(L_105, L_106, /*hidden argument*/List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var);
  6813. V_7 = L_107;
  6814. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_108 = V_0;
  6815. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_109 = V_7;
  6816. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_110 = V_7;
  6817. NullCheck(L_110);
  6818. NullCheck(L_108);
  6819. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_108, L_109, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_110)->max_length))));
  6820. int32_t L_111 = V_2;
  6821. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_111, (int32_t)1));
  6822. }
  6823. IL_0295:
  6824. {
  6825. int32_t L_112 = V_2;
  6826. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_113 = __this->get_formData_0();
  6827. NullCheck(L_113);
  6828. int32_t L_114;
  6829. L_114 = List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_inline(L_113, /*hidden argument*/List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var);
  6830. V_13 = (bool)((((int32_t)L_112) < ((int32_t)L_114))? 1 : 0);
  6831. bool L_115 = V_13;
  6832. if (L_115)
  6833. {
  6834. goto IL_0022;
  6835. }
  6836. }
  6837. IL_02ac:
  6838. {
  6839. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_116 = V_0;
  6840. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6841. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_117 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6842. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_118 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6843. NullCheck(L_118);
  6844. NullCheck(L_116);
  6845. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_116, L_117, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_118)->max_length))));
  6846. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_119 = V_0;
  6847. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_120 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dDash_6();
  6848. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_121 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dDash_6();
  6849. NullCheck(L_121);
  6850. NullCheck(L_119);
  6851. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_119, L_120, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_121)->max_length))));
  6852. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_122 = V_0;
  6853. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_123 = __this->get_boundary_4();
  6854. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_124 = __this->get_boundary_4();
  6855. NullCheck(L_124);
  6856. NullCheck(L_122);
  6857. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_122, L_123, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_124)->max_length))));
  6858. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_125 = V_0;
  6859. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_126 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dDash_6();
  6860. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_127 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_dDash_6();
  6861. NullCheck(L_127);
  6862. NullCheck(L_125);
  6863. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_125, L_126, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_127)->max_length))));
  6864. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_128 = V_0;
  6865. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_129 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6866. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_130 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_crlf_7();
  6867. NullCheck(L_130);
  6868. NullCheck(L_128);
  6869. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_128, L_129, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_130)->max_length))));
  6870. goto IL_03c7;
  6871. }
  6872. IL_0318:
  6873. {
  6874. V_14 = 0;
  6875. goto IL_03ae;
  6876. }
  6877. IL_0321:
  6878. {
  6879. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_131;
  6880. L_131 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  6881. List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_132 = __this->get_fieldNames_1();
  6882. int32_t L_133 = V_14;
  6883. NullCheck(L_132);
  6884. String_t* L_134;
  6885. L_134 = List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_inline(L_132, L_133, /*hidden argument*/List_1_get_Item_m3F624A80E7853289E4759DE8F16CF23B0958365B_RuntimeMethod_var);
  6886. NullCheck(L_131);
  6887. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_135;
  6888. L_135 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_131, L_134);
  6889. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  6890. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_136;
  6891. L_136 = WWWTranscoder_DataEncode_m50A486970E8DFF6B99EC71217F626398C2C2C159(L_135, /*hidden argument*/NULL);
  6892. V_15 = L_136;
  6893. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_137 = __this->get_formData_0();
  6894. int32_t L_138 = V_14;
  6895. NullCheck(L_137);
  6896. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_139;
  6897. L_139 = List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_inline(L_137, L_138, /*hidden argument*/List_1_get_Item_mA904D48DE837FC82817A13F3F59776C3499098BB_RuntimeMethod_var);
  6898. V_16 = L_139;
  6899. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_140 = V_16;
  6900. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_141;
  6901. L_141 = WWWTranscoder_DataEncode_m50A486970E8DFF6B99EC71217F626398C2C2C159(L_140, /*hidden argument*/NULL);
  6902. V_17 = L_141;
  6903. int32_t L_142 = V_14;
  6904. V_18 = (bool)((((int32_t)L_142) > ((int32_t)0))? 1 : 0);
  6905. bool L_143 = V_18;
  6906. if (!L_143)
  6907. {
  6908. goto IL_0377;
  6909. }
  6910. }
  6911. IL_0363:
  6912. {
  6913. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_144 = V_0;
  6914. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6915. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_145 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_ampersand_12();
  6916. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_146 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_ampersand_12();
  6917. NullCheck(L_146);
  6918. NullCheck(L_144);
  6919. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_144, L_145, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_146)->max_length))));
  6920. }
  6921. IL_0377:
  6922. {
  6923. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_147 = V_0;
  6924. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_148 = V_15;
  6925. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_149 = V_15;
  6926. NullCheck(L_149);
  6927. NullCheck(L_147);
  6928. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_147, L_148, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_149)->max_length))));
  6929. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_150 = V_0;
  6930. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  6931. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_151 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_equal_13();
  6932. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_152 = ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->get_equal_13();
  6933. NullCheck(L_152);
  6934. NullCheck(L_150);
  6935. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_150, L_151, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_152)->max_length))));
  6936. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_153 = V_0;
  6937. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_154 = V_17;
  6938. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_155 = V_17;
  6939. NullCheck(L_155);
  6940. NullCheck(L_153);
  6941. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_153, L_154, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_155)->max_length))));
  6942. int32_t L_156 = V_14;
  6943. V_14 = ((int32_t)il2cpp_codegen_add((int32_t)L_156, (int32_t)1));
  6944. }
  6945. IL_03ae:
  6946. {
  6947. int32_t L_157 = V_14;
  6948. List_1_t08E192A6E99857FD75EAA081A5D3BEC33729EDBE * L_158 = __this->get_formData_0();
  6949. NullCheck(L_158);
  6950. int32_t L_159;
  6951. L_159 = List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_inline(L_158, /*hidden argument*/List_1_get_Count_mCEBCF66B19764A2EFF9F5F81C78323729EC10F60_RuntimeMethod_var);
  6952. V_19 = (bool)((((int32_t)L_157) < ((int32_t)L_159))? 1 : 0);
  6953. bool L_160 = V_19;
  6954. if (L_160)
  6955. {
  6956. goto IL_0321;
  6957. }
  6958. }
  6959. IL_03c6:
  6960. {
  6961. }
  6962. IL_03c7:
  6963. {
  6964. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_161 = V_0;
  6965. NullCheck(L_161);
  6966. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_162;
  6967. L_162 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(37 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_161);
  6968. V_20 = L_162;
  6969. IL2CPP_LEAVE(0x3DC, FINALLY_03d1);
  6970. }
  6971. }// end try (depth: 1)
  6972. catch(Il2CppExceptionWrapper& e)
  6973. {
  6974. __last_unhandled_exception = (Exception_t *)e.ex;
  6975. goto FINALLY_03d1;
  6976. }
  6977. FINALLY_03d1:
  6978. {// begin finally (depth: 1)
  6979. {
  6980. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_163 = V_0;
  6981. if (!L_163)
  6982. {
  6983. goto IL_03db;
  6984. }
  6985. }
  6986. IL_03d4:
  6987. {
  6988. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_164 = V_0;
  6989. NullCheck(L_164);
  6990. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_164);
  6991. }
  6992. IL_03db:
  6993. {
  6994. IL2CPP_END_FINALLY(977)
  6995. }
  6996. }// end finally (depth: 1)
  6997. IL2CPP_CLEANUP(977)
  6998. {
  6999. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  7000. IL2CPP_JUMP_TBL(0x3DC, IL_03dc)
  7001. }
  7002. IL_03dc:
  7003. {
  7004. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_165 = V_20;
  7005. return L_165;
  7006. }
  7007. }
  7008. // System.Void UnityEngine.WWWForm::.cctor()
  7009. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWForm__cctor_mC13746C7EBBCC831FA0FC48D449565CF824CFF26 (const RuntimeMethod* method)
  7010. {
  7011. static bool s_Il2CppMethodInitialized;
  7012. if (!s_Il2CppMethodInitialized)
  7013. {
  7014. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  7015. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  7016. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  7017. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  7018. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  7019. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  7020. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  7021. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  7022. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  7023. s_Il2CppMethodInitialized = true;
  7024. }
  7025. {
  7026. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0;
  7027. L_0 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7028. NullCheck(L_0);
  7029. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1;
  7030. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteral69520730213CDED741A5919BB83F6E4B8610EDBA);
  7031. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_dDash_6(L_1);
  7032. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_2;
  7033. L_2 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7034. NullCheck(L_2);
  7035. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3;
  7036. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteral4133EC0E83E4C69B6C0094B47BFD1408F0C8D4C5);
  7037. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_crlf_7(L_3);
  7038. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_4;
  7039. L_4 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7040. NullCheck(L_4);
  7041. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5;
  7042. L_5 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, _stringLiteral2D237ADC0A2A1323199D8ECEAF721FC4EA117317);
  7043. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_contentTypeHeader_8(L_5);
  7044. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_6;
  7045. L_6 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7046. NullCheck(L_6);
  7047. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7;
  7048. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteralA3EDB257239BA23A2B3196FB9697A402B943583D);
  7049. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_dispositionHeader_9(L_7);
  7050. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_8;
  7051. L_8 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7052. NullCheck(L_8);
  7053. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9;
  7054. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteralC62C64F00567C5368CAE37F4E64E1E82FF785677);
  7055. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_endQuote_10(L_9);
  7056. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_10;
  7057. L_10 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7058. NullCheck(L_10);
  7059. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11;
  7060. L_11 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_10, _stringLiteralD65B2B7CE306C7EE6A36785EB8503CD74EEACADF);
  7061. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_fileNameField_11(L_11);
  7062. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_12;
  7063. L_12 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7064. NullCheck(L_12);
  7065. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13;
  7066. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral8D004CCFB2C7F7062B882865483FF7F4DC36E04E);
  7067. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_ampersand_12(L_13);
  7068. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_14;
  7069. L_14 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7070. NullCheck(L_14);
  7071. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15;
  7072. L_15 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_14, _stringLiteral1FA13CA565DC9B5105D70A528D26A6FC7A57049E);
  7073. ((WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_StaticFields*)il2cpp_codegen_static_fields_for(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var))->set_equal_13(L_15);
  7074. return;
  7075. }
  7076. }
  7077. #ifdef __clang__
  7078. #pragma clang diagnostic pop
  7079. #endif
  7080. #ifdef __clang__
  7081. #pragma clang diagnostic push
  7082. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  7083. #pragma clang diagnostic ignored "-Wunused-variable"
  7084. #endif
  7085. // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32)
  7086. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_m8FEDC476CA7F4A244169D3F4DF2A75B09BD602DA (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___b0, int32_t ___offset1, const RuntimeMethod* method)
  7087. {
  7088. uint8_t V_0 = 0x0;
  7089. int32_t V_1 = 0;
  7090. int32_t V_2 = 0;
  7091. bool V_3 = false;
  7092. bool V_4 = false;
  7093. bool V_5 = false;
  7094. bool V_6 = false;
  7095. uint8_t V_7 = 0x0;
  7096. bool V_8 = false;
  7097. int32_t G_B4_0 = 0;
  7098. int32_t G_B9_0 = 0;
  7099. int32_t G_B14_0 = 0;
  7100. {
  7101. V_0 = (uint8_t)0;
  7102. int32_t L_0 = ___offset1;
  7103. V_1 = L_0;
  7104. goto IL_0082;
  7105. }
  7106. IL_0007:
  7107. {
  7108. uint8_t L_1 = V_0;
  7109. V_0 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)16)))));
  7110. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___b0;
  7111. int32_t L_3 = V_1;
  7112. NullCheck(L_2);
  7113. int32_t L_4 = L_3;
  7114. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  7115. V_2 = L_5;
  7116. int32_t L_6 = V_2;
  7117. if ((((int32_t)L_6) < ((int32_t)((int32_t)48))))
  7118. {
  7119. goto IL_0021;
  7120. }
  7121. }
  7122. {
  7123. int32_t L_7 = V_2;
  7124. G_B4_0 = ((((int32_t)((((int32_t)L_7) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  7125. goto IL_0022;
  7126. }
  7127. IL_0021:
  7128. {
  7129. G_B4_0 = 0;
  7130. }
  7131. IL_0022:
  7132. {
  7133. V_3 = (bool)G_B4_0;
  7134. bool L_8 = V_3;
  7135. if (!L_8)
  7136. {
  7137. goto IL_002d;
  7138. }
  7139. }
  7140. {
  7141. int32_t L_9 = V_2;
  7142. V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_9, (int32_t)((int32_t)48)));
  7143. goto IL_0065;
  7144. }
  7145. IL_002d:
  7146. {
  7147. int32_t L_10 = V_2;
  7148. if ((((int32_t)L_10) < ((int32_t)((int32_t)65))))
  7149. {
  7150. goto IL_003c;
  7151. }
  7152. }
  7153. {
  7154. int32_t L_11 = V_2;
  7155. G_B9_0 = ((((int32_t)((((int32_t)L_11) > ((int32_t)((int32_t)75)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  7156. goto IL_003d;
  7157. }
  7158. IL_003c:
  7159. {
  7160. G_B9_0 = 0;
  7161. }
  7162. IL_003d:
  7163. {
  7164. V_4 = (bool)G_B9_0;
  7165. bool L_12 = V_4;
  7166. if (!L_12)
  7167. {
  7168. goto IL_004a;
  7169. }
  7170. }
  7171. {
  7172. int32_t L_13 = V_2;
  7173. V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)((int32_t)55)));
  7174. goto IL_0065;
  7175. }
  7176. IL_004a:
  7177. {
  7178. int32_t L_14 = V_2;
  7179. if ((((int32_t)L_14) < ((int32_t)((int32_t)97))))
  7180. {
  7181. goto IL_0059;
  7182. }
  7183. }
  7184. {
  7185. int32_t L_15 = V_2;
  7186. G_B14_0 = ((((int32_t)((((int32_t)L_15) > ((int32_t)((int32_t)102)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  7187. goto IL_005a;
  7188. }
  7189. IL_0059:
  7190. {
  7191. G_B14_0 = 0;
  7192. }
  7193. IL_005a:
  7194. {
  7195. V_5 = (bool)G_B14_0;
  7196. bool L_16 = V_5;
  7197. if (!L_16)
  7198. {
  7199. goto IL_0065;
  7200. }
  7201. }
  7202. {
  7203. int32_t L_17 = V_2;
  7204. V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_17, (int32_t)((int32_t)87)));
  7205. }
  7206. IL_0065:
  7207. {
  7208. int32_t L_18 = V_2;
  7209. V_6 = (bool)((((int32_t)L_18) > ((int32_t)((int32_t)15)))? 1 : 0);
  7210. bool L_19 = V_6;
  7211. if (!L_19)
  7212. {
  7213. goto IL_0077;
  7214. }
  7215. }
  7216. {
  7217. V_7 = (uint8_t)((int32_t)63);
  7218. goto IL_0096;
  7219. }
  7220. IL_0077:
  7221. {
  7222. uint8_t L_20 = V_0;
  7223. int32_t L_21 = V_2;
  7224. V_0 = (uint8_t)((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)((int32_t)((uint8_t)L_21))))));
  7225. int32_t L_22 = V_1;
  7226. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
  7227. }
  7228. IL_0082:
  7229. {
  7230. int32_t L_23 = V_1;
  7231. int32_t L_24 = ___offset1;
  7232. V_8 = (bool)((((int32_t)L_23) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)2))))? 1 : 0);
  7233. bool L_25 = V_8;
  7234. if (L_25)
  7235. {
  7236. goto IL_0007;
  7237. }
  7238. }
  7239. {
  7240. uint8_t L_26 = V_0;
  7241. V_7 = L_26;
  7242. goto IL_0096;
  7243. }
  7244. IL_0096:
  7245. {
  7246. uint8_t L_27 = V_7;
  7247. return L_27;
  7248. }
  7249. }
  7250. // System.Void UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[],System.Byte&,System.Byte&)
  7251. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder_Byte2Hex_mD3D590134382D259F0B064153AB858F9E02E6BB8 (uint8_t ___b0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___hexChars1, uint8_t* ___byte02, uint8_t* ___byte13, const RuntimeMethod* method)
  7252. {
  7253. {
  7254. uint8_t* L_0 = ___byte02;
  7255. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___hexChars1;
  7256. uint8_t L_2 = ___b0;
  7257. NullCheck(L_1);
  7258. int32_t L_3 = ((int32_t)((int32_t)L_2>>(int32_t)4));
  7259. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  7260. *((int8_t*)L_0) = (int8_t)L_4;
  7261. uint8_t* L_5 = ___byte13;
  7262. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = ___hexChars1;
  7263. uint8_t L_7 = ___b0;
  7264. NullCheck(L_6);
  7265. int32_t L_8 = ((int32_t)((int32_t)L_7&(int32_t)((int32_t)15)));
  7266. uint8_t L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
  7267. *((int8_t*)L_5) = (int8_t)L_9;
  7268. return;
  7269. }
  7270. }
  7271. // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[])
  7272. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_DataEncode_m50A486970E8DFF6B99EC71217F626398C2C2C159 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___toEncode0, const RuntimeMethod* method)
  7273. {
  7274. static bool s_Il2CppMethodInitialized;
  7275. if (!s_Il2CppMethodInitialized)
  7276. {
  7277. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7278. s_Il2CppMethodInitialized = true;
  7279. }
  7280. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
  7281. {
  7282. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___toEncode0;
  7283. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7284. uint8_t L_1 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_urlEscapeChar_2();
  7285. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_dataSpace_4();
  7286. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_urlForbidden_5();
  7287. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4;
  7288. L_4 = WWWTranscoder_Encode_mD7D4534ACBC6CE1F98B223CE466352D976C5E99A(L_0, L_1, L_2, L_3, (bool)0, /*hidden argument*/NULL);
  7289. V_0 = L_4;
  7290. goto IL_001a;
  7291. }
  7292. IL_001a:
  7293. {
  7294. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = V_0;
  7295. return L_5;
  7296. }
  7297. }
  7298. // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding)
  7299. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m9D74D3126E50EE48005E3DCEAD4771F63AF399B4 (String_t* ___toEncode0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e1, const RuntimeMethod* method)
  7300. {
  7301. static bool s_Il2CppMethodInitialized;
  7302. if (!s_Il2CppMethodInitialized)
  7303. {
  7304. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  7305. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7306. s_Il2CppMethodInitialized = true;
  7307. }
  7308. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
  7309. String_t* V_1 = NULL;
  7310. {
  7311. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0 = ___e1;
  7312. String_t* L_1 = ___toEncode0;
  7313. NullCheck(L_0);
  7314. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2;
  7315. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  7316. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7317. uint8_t L_3 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_qpEscapeChar_6();
  7318. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_qpSpace_7();
  7319. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_qpForbidden_8();
  7320. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6;
  7321. L_6 = WWWTranscoder_Encode_mD7D4534ACBC6CE1F98B223CE466352D976C5E99A(L_2, L_3, L_4, L_5, (bool)1, /*hidden argument*/NULL);
  7322. V_0 = L_6;
  7323. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  7324. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_7;
  7325. L_7 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  7326. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = V_0;
  7327. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = V_0;
  7328. NullCheck(L_9);
  7329. NullCheck(L_7);
  7330. String_t* L_10;
  7331. L_10 = VirtualFuncInvoker3< String_t*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(36 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))));
  7332. V_1 = L_10;
  7333. goto IL_0030;
  7334. }
  7335. IL_0030:
  7336. {
  7337. String_t* L_11 = V_1;
  7338. return L_11;
  7339. }
  7340. }
  7341. // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean)
  7342. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_Encode_mD7D4534ACBC6CE1F98B223CE466352D976C5E99A (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___space2, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___forbidden3, bool ___uppercase4, const RuntimeMethod* method)
  7343. {
  7344. static bool s_Il2CppMethodInitialized;
  7345. if (!s_Il2CppMethodInitialized)
  7346. {
  7347. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
  7348. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
  7349. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7350. s_Il2CppMethodInitialized = true;
  7351. }
  7352. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_0 = NULL;
  7353. int32_t V_1 = 0;
  7354. bool V_2 = false;
  7355. bool V_3 = false;
  7356. uint8_t V_4 = 0x0;
  7357. uint8_t V_5 = 0x0;
  7358. bool V_6 = false;
  7359. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_7 = NULL;
  7360. Exception_t * __last_unhandled_exception = 0;
  7361. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  7362. int32_t G_B8_0 = 0;
  7363. int32_t G_B11_0 = 0;
  7364. int32_t G_B10_0 = 0;
  7365. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* G_B12_0 = NULL;
  7366. int32_t G_B12_1 = 0;
  7367. {
  7368. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0;
  7369. NullCheck(L_0);
  7370. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_1 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
  7371. MemoryStream__ctor_mCB4274FF375AD786CCED424E80B047E0DEC50938(L_1, ((int32_t)il2cpp_codegen_multiply((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)2)), /*hidden argument*/NULL);
  7372. V_0 = L_1;
  7373. }
  7374. IL_000c:
  7375. try
  7376. {// begin try (depth: 1)
  7377. {
  7378. V_1 = 0;
  7379. goto IL_009a;
  7380. }
  7381. IL_0014:
  7382. {
  7383. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___input0;
  7384. int32_t L_3 = V_1;
  7385. NullCheck(L_2);
  7386. int32_t L_4 = L_3;
  7387. uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
  7388. V_2 = (bool)((((int32_t)L_5) == ((int32_t)((int32_t)32)))? 1 : 0);
  7389. bool L_6 = V_2;
  7390. if (!L_6)
  7391. {
  7392. goto IL_0030;
  7393. }
  7394. }
  7395. IL_0020:
  7396. {
  7397. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_7 = V_0;
  7398. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___space2;
  7399. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = ___space2;
  7400. NullCheck(L_9);
  7401. NullCheck(L_7);
  7402. VirtualActionInvoker3< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t >::Invoke(32 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))));
  7403. goto IL_0095;
  7404. }
  7405. IL_0030:
  7406. {
  7407. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___input0;
  7408. int32_t L_11 = V_1;
  7409. NullCheck(L_10);
  7410. int32_t L_12 = L_11;
  7411. uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
  7412. if ((((int32_t)L_13) < ((int32_t)((int32_t)32))))
  7413. {
  7414. goto IL_0049;
  7415. }
  7416. }
  7417. IL_0037:
  7418. {
  7419. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = ___input0;
  7420. int32_t L_15 = V_1;
  7421. NullCheck(L_14);
  7422. int32_t L_16 = L_15;
  7423. uint8_t L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
  7424. if ((((int32_t)L_17) > ((int32_t)((int32_t)126))))
  7425. {
  7426. goto IL_0049;
  7427. }
  7428. }
  7429. IL_003e:
  7430. {
  7431. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = ___forbidden3;
  7432. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_19 = ___input0;
  7433. int32_t L_20 = V_1;
  7434. NullCheck(L_19);
  7435. int32_t L_21 = L_20;
  7436. uint8_t L_22 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_21));
  7437. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7438. bool L_23;
  7439. L_23 = WWWTranscoder_ByteArrayContains_mBDB7732AE3F1FD6B9930421075B8D41C4BB7B95B(L_18, L_22, /*hidden argument*/NULL);
  7440. G_B8_0 = ((int32_t)(L_23));
  7441. goto IL_004a;
  7442. }
  7443. IL_0049:
  7444. {
  7445. G_B8_0 = 1;
  7446. }
  7447. IL_004a:
  7448. {
  7449. V_3 = (bool)G_B8_0;
  7450. bool L_24 = V_3;
  7451. if (!L_24)
  7452. {
  7453. goto IL_0089;
  7454. }
  7455. }
  7456. IL_004e:
  7457. {
  7458. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_25 = V_0;
  7459. uint8_t L_26 = ___escapeChar1;
  7460. NullCheck(L_25);
  7461. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_25, L_26);
  7462. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = ___input0;
  7463. int32_t L_28 = V_1;
  7464. NullCheck(L_27);
  7465. int32_t L_29 = L_28;
  7466. uint8_t L_30 = (L_27)->GetAt(static_cast<il2cpp_array_size_t>(L_29));
  7467. bool L_31 = ___uppercase4;
  7468. G_B10_0 = ((int32_t)(L_30));
  7469. if (L_31)
  7470. {
  7471. G_B11_0 = ((int32_t)(L_30));
  7472. goto IL_0065;
  7473. }
  7474. }
  7475. IL_005e:
  7476. {
  7477. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7478. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_32 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_lcHexChars_1();
  7479. G_B12_0 = L_32;
  7480. G_B12_1 = G_B10_0;
  7481. goto IL_006a;
  7482. }
  7483. IL_0065:
  7484. {
  7485. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7486. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_33 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_ucHexChars_0();
  7487. G_B12_0 = L_33;
  7488. G_B12_1 = G_B11_0;
  7489. }
  7490. IL_006a:
  7491. {
  7492. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7493. WWWTranscoder_Byte2Hex_mD3D590134382D259F0B064153AB858F9E02E6BB8((uint8_t)G_B12_1, G_B12_0, (uint8_t*)(&V_4), (uint8_t*)(&V_5), /*hidden argument*/NULL);
  7494. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_34 = V_0;
  7495. uint8_t L_35 = V_4;
  7496. NullCheck(L_34);
  7497. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_34, L_35);
  7498. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_36 = V_0;
  7499. uint8_t L_37 = V_5;
  7500. NullCheck(L_36);
  7501. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_36, L_37);
  7502. goto IL_0095;
  7503. }
  7504. IL_0089:
  7505. {
  7506. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_38 = V_0;
  7507. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_39 = ___input0;
  7508. int32_t L_40 = V_1;
  7509. NullCheck(L_39);
  7510. int32_t L_41 = L_40;
  7511. uint8_t L_42 = (L_39)->GetAt(static_cast<il2cpp_array_size_t>(L_41));
  7512. NullCheck(L_38);
  7513. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_38, L_42);
  7514. }
  7515. IL_0095:
  7516. {
  7517. int32_t L_43 = V_1;
  7518. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_43, (int32_t)1));
  7519. }
  7520. IL_009a:
  7521. {
  7522. int32_t L_44 = V_1;
  7523. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_45 = ___input0;
  7524. NullCheck(L_45);
  7525. V_6 = (bool)((((int32_t)L_44) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_45)->max_length)))))? 1 : 0);
  7526. bool L_46 = V_6;
  7527. if (L_46)
  7528. {
  7529. goto IL_0014;
  7530. }
  7531. }
  7532. IL_00a9:
  7533. {
  7534. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_47 = V_0;
  7535. NullCheck(L_47);
  7536. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_48;
  7537. L_48 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(37 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_47);
  7538. V_7 = L_48;
  7539. IL2CPP_LEAVE(0xBE, FINALLY_00b3);
  7540. }
  7541. }// end try (depth: 1)
  7542. catch(Il2CppExceptionWrapper& e)
  7543. {
  7544. __last_unhandled_exception = (Exception_t *)e.ex;
  7545. goto FINALLY_00b3;
  7546. }
  7547. FINALLY_00b3:
  7548. {// begin finally (depth: 1)
  7549. {
  7550. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_49 = V_0;
  7551. if (!L_49)
  7552. {
  7553. goto IL_00bd;
  7554. }
  7555. }
  7556. IL_00b6:
  7557. {
  7558. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_50 = V_0;
  7559. NullCheck(L_50);
  7560. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_50);
  7561. }
  7562. IL_00bd:
  7563. {
  7564. IL2CPP_END_FINALLY(179)
  7565. }
  7566. }// end finally (depth: 1)
  7567. IL2CPP_CLEANUP(179)
  7568. {
  7569. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  7570. IL2CPP_JUMP_TBL(0xBE, IL_00be)
  7571. }
  7572. IL_00be:
  7573. {
  7574. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_51 = V_7;
  7575. return L_51;
  7576. }
  7577. }
  7578. // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte)
  7579. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mBDB7732AE3F1FD6B9930421075B8D41C4BB7B95B (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, uint8_t ___b1, const RuntimeMethod* method)
  7580. {
  7581. int32_t V_0 = 0;
  7582. int32_t V_1 = 0;
  7583. bool V_2 = false;
  7584. bool V_3 = false;
  7585. bool V_4 = false;
  7586. {
  7587. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___array0;
  7588. NullCheck(L_0);
  7589. V_0 = ((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)));
  7590. V_1 = 0;
  7591. goto IL_001d;
  7592. }
  7593. IL_0009:
  7594. {
  7595. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1 = ___array0;
  7596. int32_t L_2 = V_1;
  7597. NullCheck(L_1);
  7598. int32_t L_3 = L_2;
  7599. uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
  7600. uint8_t L_5 = ___b1;
  7601. V_2 = (bool)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
  7602. bool L_6 = V_2;
  7603. if (!L_6)
  7604. {
  7605. goto IL_0018;
  7606. }
  7607. }
  7608. {
  7609. V_3 = (bool)1;
  7610. goto IL_002b;
  7611. }
  7612. IL_0018:
  7613. {
  7614. int32_t L_7 = V_1;
  7615. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
  7616. }
  7617. IL_001d:
  7618. {
  7619. int32_t L_8 = V_1;
  7620. int32_t L_9 = V_0;
  7621. V_4 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  7622. bool L_10 = V_4;
  7623. if (L_10)
  7624. {
  7625. goto IL_0009;
  7626. }
  7627. }
  7628. {
  7629. V_3 = (bool)0;
  7630. goto IL_002b;
  7631. }
  7632. IL_002b:
  7633. {
  7634. bool L_11 = V_3;
  7635. return L_11;
  7636. }
  7637. }
  7638. // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[])
  7639. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_URLDecode_mFBF699CBF92B0184ED37E461550430B7454BD0FB (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___toEncode0, const RuntimeMethod* method)
  7640. {
  7641. static bool s_Il2CppMethodInitialized;
  7642. if (!s_Il2CppMethodInitialized)
  7643. {
  7644. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7645. s_Il2CppMethodInitialized = true;
  7646. }
  7647. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
  7648. {
  7649. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___toEncode0;
  7650. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7651. uint8_t L_1 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_urlEscapeChar_2();
  7652. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->get_urlSpace_3();
  7653. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3;
  7654. L_3 = WWWTranscoder_Decode_mB359AE9097B819D6E6909685B5BED52DDFA62D15(L_0, L_1, L_2, /*hidden argument*/NULL);
  7655. V_0 = L_3;
  7656. goto IL_0014;
  7657. }
  7658. IL_0014:
  7659. {
  7660. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = V_0;
  7661. return L_4;
  7662. }
  7663. }
  7664. // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[])
  7665. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_mB3E4FBBAA9EAD2EE53DE8C31C5AAE9B2A8809126 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___array0, int32_t ___index1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___comperand2, const RuntimeMethod* method)
  7666. {
  7667. bool V_0 = false;
  7668. bool V_1 = false;
  7669. int32_t V_2 = 0;
  7670. bool V_3 = false;
  7671. bool V_4 = false;
  7672. {
  7673. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___array0;
  7674. NullCheck(L_0);
  7675. int32_t L_1 = ___index1;
  7676. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___comperand2;
  7677. NullCheck(L_2);
  7678. V_0 = (bool)((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), (int32_t)L_1))) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_2)->max_length)))))? 1 : 0);
  7679. bool L_3 = V_0;
  7680. if (!L_3)
  7681. {
  7682. goto IL_0013;
  7683. }
  7684. }
  7685. {
  7686. V_1 = (bool)0;
  7687. goto IL_0040;
  7688. }
  7689. IL_0013:
  7690. {
  7691. V_2 = 0;
  7692. goto IL_0030;
  7693. }
  7694. IL_0017:
  7695. {
  7696. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___array0;
  7697. int32_t L_5 = ___index1;
  7698. int32_t L_6 = V_2;
  7699. NullCheck(L_4);
  7700. int32_t L_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6));
  7701. uint8_t L_8 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
  7702. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = ___comperand2;
  7703. int32_t L_10 = V_2;
  7704. NullCheck(L_9);
  7705. int32_t L_11 = L_10;
  7706. uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
  7707. V_3 = (bool)((((int32_t)((((int32_t)L_8) == ((int32_t)L_12))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  7708. bool L_13 = V_3;
  7709. if (!L_13)
  7710. {
  7711. goto IL_002c;
  7712. }
  7713. }
  7714. {
  7715. V_1 = (bool)0;
  7716. goto IL_0040;
  7717. }
  7718. IL_002c:
  7719. {
  7720. int32_t L_14 = V_2;
  7721. V_2 = ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)1));
  7722. }
  7723. IL_0030:
  7724. {
  7725. int32_t L_15 = V_2;
  7726. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___comperand2;
  7727. NullCheck(L_16);
  7728. V_4 = (bool)((((int32_t)L_15) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))? 1 : 0);
  7729. bool L_17 = V_4;
  7730. if (L_17)
  7731. {
  7732. goto IL_0017;
  7733. }
  7734. }
  7735. {
  7736. V_1 = (bool)1;
  7737. goto IL_0040;
  7738. }
  7739. IL_0040:
  7740. {
  7741. bool L_18 = V_1;
  7742. return L_18;
  7743. }
  7744. }
  7745. // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[])
  7746. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* WWWTranscoder_Decode_mB359AE9097B819D6E6909685B5BED52DDFA62D15 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___space2, const RuntimeMethod* method)
  7747. {
  7748. static bool s_Il2CppMethodInitialized;
  7749. if (!s_Il2CppMethodInitialized)
  7750. {
  7751. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var);
  7752. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
  7753. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7754. s_Il2CppMethodInitialized = true;
  7755. }
  7756. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * V_0 = NULL;
  7757. int32_t V_1 = 0;
  7758. bool V_2 = false;
  7759. bool V_3 = false;
  7760. bool V_4 = false;
  7761. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_5 = NULL;
  7762. Exception_t * __last_unhandled_exception = 0;
  7763. il2cpp::utils::ExceptionSupportStack<int32_t, 1> __leave_targets;
  7764. int32_t G_B7_0 = 0;
  7765. {
  7766. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___input0;
  7767. NullCheck(L_0);
  7768. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_1 = (MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C *)il2cpp_codegen_object_new(MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C_il2cpp_TypeInfo_var);
  7769. MemoryStream__ctor_mCB4274FF375AD786CCED424E80B047E0DEC50938(L_1, ((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length))), /*hidden argument*/NULL);
  7770. V_0 = L_1;
  7771. }
  7772. IL_000a:
  7773. try
  7774. {// begin try (depth: 1)
  7775. {
  7776. V_1 = 0;
  7777. goto IL_0071;
  7778. }
  7779. IL_000f:
  7780. {
  7781. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = ___input0;
  7782. int32_t L_3 = V_1;
  7783. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___space2;
  7784. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7785. bool L_5;
  7786. L_5 = WWWTranscoder_ByteSubArrayEquals_mB3E4FBBAA9EAD2EE53DE8C31C5AAE9B2A8809126(L_2, L_3, L_4, /*hidden argument*/NULL);
  7787. V_2 = L_5;
  7788. bool L_6 = V_2;
  7789. if (!L_6)
  7790. {
  7791. goto IL_0031;
  7792. }
  7793. }
  7794. IL_001c:
  7795. {
  7796. int32_t L_7 = V_1;
  7797. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = ___space2;
  7798. NullCheck(L_8);
  7799. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))), (int32_t)1))));
  7800. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_9 = V_0;
  7801. NullCheck(L_9);
  7802. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_9, (uint8_t)((int32_t)32));
  7803. goto IL_006c;
  7804. }
  7805. IL_0031:
  7806. {
  7807. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___input0;
  7808. int32_t L_11 = V_1;
  7809. NullCheck(L_10);
  7810. int32_t L_12 = L_11;
  7811. uint8_t L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
  7812. uint8_t L_14 = ___escapeChar1;
  7813. if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
  7814. {
  7815. goto IL_0041;
  7816. }
  7817. }
  7818. IL_0037:
  7819. {
  7820. int32_t L_15 = V_1;
  7821. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = ___input0;
  7822. NullCheck(L_16);
  7823. G_B7_0 = ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)2))) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length)))))? 1 : 0);
  7824. goto IL_0042;
  7825. }
  7826. IL_0041:
  7827. {
  7828. G_B7_0 = 0;
  7829. }
  7830. IL_0042:
  7831. {
  7832. V_3 = (bool)G_B7_0;
  7833. bool L_17 = V_3;
  7834. if (!L_17)
  7835. {
  7836. goto IL_0060;
  7837. }
  7838. }
  7839. IL_0046:
  7840. {
  7841. int32_t L_18 = V_1;
  7842. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1));
  7843. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_19 = V_0;
  7844. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_20 = ___input0;
  7845. int32_t L_21 = V_1;
  7846. int32_t L_22 = L_21;
  7847. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_22, (int32_t)1));
  7848. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7849. uint8_t L_23;
  7850. L_23 = WWWTranscoder_Hex2Byte_m8FEDC476CA7F4A244169D3F4DF2A75B09BD602DA(L_20, L_22, /*hidden argument*/NULL);
  7851. NullCheck(L_19);
  7852. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_19, L_23);
  7853. goto IL_006c;
  7854. }
  7855. IL_0060:
  7856. {
  7857. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_24 = V_0;
  7858. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_25 = ___input0;
  7859. int32_t L_26 = V_1;
  7860. NullCheck(L_25);
  7861. int32_t L_27 = L_26;
  7862. uint8_t L_28 = (L_25)->GetAt(static_cast<il2cpp_array_size_t>(L_27));
  7863. NullCheck(L_24);
  7864. VirtualActionInvoker1< uint8_t >::Invoke(33 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_24, L_28);
  7865. }
  7866. IL_006c:
  7867. {
  7868. int32_t L_29 = V_1;
  7869. V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_29, (int32_t)1));
  7870. }
  7871. IL_0071:
  7872. {
  7873. int32_t L_30 = V_1;
  7874. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_31 = ___input0;
  7875. NullCheck(L_31);
  7876. V_4 = (bool)((((int32_t)L_30) < ((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_31)->max_length)))))? 1 : 0);
  7877. bool L_32 = V_4;
  7878. if (L_32)
  7879. {
  7880. goto IL_000f;
  7881. }
  7882. }
  7883. IL_007d:
  7884. {
  7885. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_33 = V_0;
  7886. NullCheck(L_33);
  7887. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_34;
  7888. L_34 = VirtualFuncInvoker0< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(37 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_33);
  7889. V_5 = L_34;
  7890. IL2CPP_LEAVE(0x92, FINALLY_0087);
  7891. }
  7892. }// end try (depth: 1)
  7893. catch(Il2CppExceptionWrapper& e)
  7894. {
  7895. __last_unhandled_exception = (Exception_t *)e.ex;
  7896. goto FINALLY_0087;
  7897. }
  7898. FINALLY_0087:
  7899. {// begin finally (depth: 1)
  7900. {
  7901. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_35 = V_0;
  7902. if (!L_35)
  7903. {
  7904. goto IL_0091;
  7905. }
  7906. }
  7907. IL_008a:
  7908. {
  7909. MemoryStream_t0B450399DD6D0175074FED99DD321D65771C9E1C * L_36 = V_0;
  7910. NullCheck(L_36);
  7911. InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t099785737FC6A1E3699919A94109383715A8D807_il2cpp_TypeInfo_var, L_36);
  7912. }
  7913. IL_0091:
  7914. {
  7915. IL2CPP_END_FINALLY(135)
  7916. }
  7917. }// end finally (depth: 1)
  7918. IL2CPP_CLEANUP(135)
  7919. {
  7920. IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
  7921. IL2CPP_JUMP_TBL(0x92, IL_0092)
  7922. }
  7923. IL_0092:
  7924. {
  7925. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_37 = V_5;
  7926. return L_37;
  7927. }
  7928. }
  7929. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding)
  7930. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mCD4E3A5FA7817A3240AE6E1DA57FEB9C09539DA9 (String_t* ___s0, Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___e1, const RuntimeMethod* method)
  7931. {
  7932. static bool s_Il2CppMethodInitialized;
  7933. if (!s_Il2CppMethodInitialized)
  7934. {
  7935. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7936. s_Il2CppMethodInitialized = true;
  7937. }
  7938. int32_t V_0 = 0;
  7939. uint8_t* V_1 = NULL;
  7940. int32_t V_2 = 0;
  7941. Il2CppChar* V_3 = NULL;
  7942. String_t* V_4 = NULL;
  7943. bool V_5 = false;
  7944. {
  7945. String_t* L_0 = ___s0;
  7946. NullCheck(L_0);
  7947. int32_t L_1;
  7948. L_1 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_0, /*hidden argument*/NULL);
  7949. V_0 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)2));
  7950. int32_t L_2 = V_0;
  7951. int8_t* L_3 = (int8_t*) alloca(((uintptr_t)L_2));
  7952. memset(L_3, 0, ((uintptr_t)L_2));
  7953. V_1 = (uint8_t*)(L_3);
  7954. String_t* L_4 = ___s0;
  7955. V_4 = L_4;
  7956. String_t* L_5 = V_4;
  7957. V_3 = (Il2CppChar*)((uintptr_t)L_5);
  7958. Il2CppChar* L_6 = V_3;
  7959. if (!L_6)
  7960. {
  7961. goto IL_0022;
  7962. }
  7963. }
  7964. {
  7965. Il2CppChar* L_7 = V_3;
  7966. int32_t L_8;
  7967. L_8 = RuntimeHelpers_get_OffsetToStringData_mEB8E6EAEBAFAB7CD7F7A915B3081785AABB9FC42(/*hidden argument*/NULL);
  7968. V_3 = (Il2CppChar*)((Il2CppChar*)il2cpp_codegen_add((intptr_t)L_7, (int32_t)L_8));
  7969. }
  7970. IL_0022:
  7971. {
  7972. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_9 = ___e1;
  7973. Il2CppChar* L_10 = V_3;
  7974. String_t* L_11 = ___s0;
  7975. NullCheck(L_11);
  7976. int32_t L_12;
  7977. L_12 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_11, /*hidden argument*/NULL);
  7978. uint8_t* L_13 = V_1;
  7979. int32_t L_14 = V_0;
  7980. NullCheck(L_9);
  7981. int32_t L_15;
  7982. L_15 = VirtualFuncInvoker4< int32_t, Il2CppChar*, int32_t, uint8_t*, int32_t >::Invoke(21 /* System.Int32 System.Text.Encoding::GetBytes(System.Char*,System.Int32,System.Byte*,System.Int32) */, L_9, (Il2CppChar*)(Il2CppChar*)L_10, L_12, (uint8_t*)(uint8_t*)L_13, L_14);
  7983. V_2 = L_15;
  7984. V_4 = (String_t*)NULL;
  7985. uint8_t* L_16 = V_1;
  7986. int32_t L_17 = V_2;
  7987. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  7988. bool L_18;
  7989. L_18 = WWWTranscoder_SevenBitClean_mCC8053ABE623CEE979FA611BD304FA1EA557B2A3((uint8_t*)(uint8_t*)L_16, L_17, /*hidden argument*/NULL);
  7990. V_5 = L_18;
  7991. goto IL_0042;
  7992. }
  7993. IL_0042:
  7994. {
  7995. bool L_19 = V_5;
  7996. return L_19;
  7997. }
  7998. }
  7999. // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte*,System.Int32)
  8000. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mCC8053ABE623CEE979FA611BD304FA1EA557B2A3 (uint8_t* ___input0, int32_t ___inputLength1, const RuntimeMethod* method)
  8001. {
  8002. int32_t V_0 = 0;
  8003. bool V_1 = false;
  8004. bool V_2 = false;
  8005. bool V_3 = false;
  8006. int32_t G_B4_0 = 0;
  8007. {
  8008. V_0 = 0;
  8009. goto IL_0026;
  8010. }
  8011. IL_0005:
  8012. {
  8013. uint8_t* L_0 = ___input0;
  8014. int32_t L_1 = V_0;
  8015. int32_t L_2 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_0, (int32_t)L_1)));
  8016. if ((((int32_t)L_2) < ((int32_t)((int32_t)32))))
  8017. {
  8018. goto IL_0018;
  8019. }
  8020. }
  8021. {
  8022. uint8_t* L_3 = ___input0;
  8023. int32_t L_4 = V_0;
  8024. int32_t L_5 = *((uint8_t*)((uint8_t*)il2cpp_codegen_add((intptr_t)L_3, (int32_t)L_4)));
  8025. G_B4_0 = ((((int32_t)L_5) > ((int32_t)((int32_t)126)))? 1 : 0);
  8026. goto IL_0019;
  8027. }
  8028. IL_0018:
  8029. {
  8030. G_B4_0 = 1;
  8031. }
  8032. IL_0019:
  8033. {
  8034. V_1 = (bool)G_B4_0;
  8035. bool L_6 = V_1;
  8036. if (!L_6)
  8037. {
  8038. goto IL_0021;
  8039. }
  8040. }
  8041. {
  8042. V_2 = (bool)0;
  8043. goto IL_0032;
  8044. }
  8045. IL_0021:
  8046. {
  8047. int32_t L_7 = V_0;
  8048. V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)1));
  8049. }
  8050. IL_0026:
  8051. {
  8052. int32_t L_8 = V_0;
  8053. int32_t L_9 = ___inputLength1;
  8054. V_3 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
  8055. bool L_10 = V_3;
  8056. if (L_10)
  8057. {
  8058. goto IL_0005;
  8059. }
  8060. }
  8061. {
  8062. V_2 = (bool)1;
  8063. goto IL_0032;
  8064. }
  8065. IL_0032:
  8066. {
  8067. bool L_11 = V_2;
  8068. return L_11;
  8069. }
  8070. }
  8071. // System.Void UnityEngine.WWWTranscoder::.cctor()
  8072. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_mA3A2027DC5C23C8D8DDC8DDF795EE263B8B24C2F (const RuntimeMethod* method)
  8073. {
  8074. static bool s_Il2CppMethodInitialized;
  8075. if (!s_Il2CppMethodInitialized)
  8076. {
  8077. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var);
  8078. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  8079. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  8080. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  8081. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  8082. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  8083. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  8084. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  8085. s_Il2CppMethodInitialized = true;
  8086. }
  8087. {
  8088. IL2CPP_RUNTIME_CLASS_INIT(WWWForm_t078274293DA1BDA9AB5689AF8BCBF0EE17A2BABB_il2cpp_TypeInfo_var);
  8089. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0;
  8090. L_0 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  8091. NullCheck(L_0);
  8092. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_1;
  8093. L_1 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteral59F5BD34B6C013DEACC784F69C67E95150033A84);
  8094. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_ucHexChars_0(L_1);
  8095. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_2;
  8096. L_2 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  8097. NullCheck(L_2);
  8098. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3;
  8099. L_3 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteralC02C28AFEBE998F767E4AF43E3BE8F5E9FA11536);
  8100. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_lcHexChars_1(L_3);
  8101. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_urlEscapeChar_2((uint8_t)((int32_t)37));
  8102. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1);
  8103. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_5 = L_4;
  8104. NullCheck(L_5);
  8105. (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43));
  8106. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_urlSpace_3(L_5);
  8107. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_6;
  8108. L_6 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  8109. NullCheck(L_6);
  8110. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7;
  8111. L_7 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteral122DAEB6E112576FD0519243E425F6CD2E97BA90);
  8112. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_dataSpace_4(L_7);
  8113. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_8;
  8114. L_8 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  8115. NullCheck(L_8);
  8116. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9;
  8117. L_9 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteral0202811166757AF262261201E48B89F6244FAE6C);
  8118. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_urlForbidden_5(L_9);
  8119. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_qpEscapeChar_6((uint8_t)((int32_t)61));
  8120. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)1);
  8121. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = L_10;
  8122. NullCheck(L_11);
  8123. (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95));
  8124. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_qpSpace_7(L_11);
  8125. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_12;
  8126. L_12 = WWWForm_get_DefaultEncoding_mF052838D1FD23BD1ED8DF2C1C1B55FF8A1E7B689(/*hidden argument*/NULL);
  8127. NullCheck(L_12);
  8128. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13;
  8129. L_13 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral0E6EADFEA6F730D8816C511892F550656FD69B05);
  8130. ((WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var))->set_qpForbidden_8(L_13);
  8131. return;
  8132. }
  8133. }
  8134. #ifdef __clang__
  8135. #pragma clang diagnostic pop
  8136. #endif
  8137. #ifdef __clang__
  8138. #pragma clang diagnostic push
  8139. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8140. #pragma clang diagnostic ignored "-Wunused-variable"
  8141. #endif
  8142. // System.String UnityEngineInternal.WebRequestUtils::RedirectTo(System.String,System.String)
  8143. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m0E8715D4658E15C9775C6D06E1891267CB3C852F (String_t* ___baseUri0, String_t* ___redirectUri1, const RuntimeMethod* method)
  8144. {
  8145. static bool s_Il2CppMethodInitialized;
  8146. if (!s_Il2CppMethodInitialized)
  8147. {
  8148. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8149. s_Il2CppMethodInitialized = true;
  8150. }
  8151. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_0 = NULL;
  8152. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_1 = NULL;
  8153. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_2 = NULL;
  8154. bool V_3 = false;
  8155. bool V_4 = false;
  8156. String_t* V_5 = NULL;
  8157. {
  8158. String_t* L_0 = ___redirectUri1;
  8159. NullCheck(L_0);
  8160. Il2CppChar L_1;
  8161. L_1 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_0, 0, /*hidden argument*/NULL);
  8162. V_3 = (bool)((((int32_t)L_1) == ((int32_t)((int32_t)47)))? 1 : 0);
  8163. bool L_2 = V_3;
  8164. if (!L_2)
  8165. {
  8166. goto IL_001a;
  8167. }
  8168. }
  8169. {
  8170. String_t* L_3 = ___redirectUri1;
  8171. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8172. Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF(L_4, L_3, 2, /*hidden argument*/NULL);
  8173. V_0 = L_4;
  8174. goto IL_0022;
  8175. }
  8176. IL_001a:
  8177. {
  8178. String_t* L_5 = ___redirectUri1;
  8179. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_6 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8180. Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF(L_6, L_5, 0, /*hidden argument*/NULL);
  8181. V_0 = L_6;
  8182. }
  8183. IL_0022:
  8184. {
  8185. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_7 = V_0;
  8186. NullCheck(L_7);
  8187. bool L_8;
  8188. L_8 = Uri_get_IsAbsoluteUri_m013346D65055CFEDF9E742534A584573C18A0E25(L_7, /*hidden argument*/NULL);
  8189. V_4 = L_8;
  8190. bool L_9 = V_4;
  8191. if (!L_9)
  8192. {
  8193. goto IL_0038;
  8194. }
  8195. }
  8196. {
  8197. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_10 = V_0;
  8198. NullCheck(L_10);
  8199. String_t* L_11;
  8200. L_11 = Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA(L_10, /*hidden argument*/NULL);
  8201. V_5 = L_11;
  8202. goto IL_0052;
  8203. }
  8204. IL_0038:
  8205. {
  8206. String_t* L_12 = ___baseUri0;
  8207. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_13 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8208. Uri__ctor_m2D669E1153A700F9ED8BA31473565827AF8E39EF(L_13, L_12, 1, /*hidden argument*/NULL);
  8209. V_1 = L_13;
  8210. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_14 = V_1;
  8211. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_15 = V_0;
  8212. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_16 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8213. Uri__ctor_m77D32DF0ABC88A040214913D87A07F2C522CCD18(L_16, L_14, L_15, /*hidden argument*/NULL);
  8214. V_2 = L_16;
  8215. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_17 = V_2;
  8216. NullCheck(L_17);
  8217. String_t* L_18;
  8218. L_18 = Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA(L_17, /*hidden argument*/NULL);
  8219. V_5 = L_18;
  8220. goto IL_0052;
  8221. }
  8222. IL_0052:
  8223. {
  8224. String_t* L_19 = V_5;
  8225. return L_19;
  8226. }
  8227. }
  8228. // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String)
  8229. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_mD575E2FEAC3685E9030B528769BFAC7CE0534290 (String_t* ___targetUrl0, String_t* ___localUrl1, const RuntimeMethod* method)
  8230. {
  8231. static bool s_Il2CppMethodInitialized;
  8232. if (!s_Il2CppMethodInitialized)
  8233. {
  8234. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8235. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8236. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A);
  8237. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
  8238. s_Il2CppMethodInitialized = true;
  8239. }
  8240. bool V_0 = false;
  8241. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_1 = NULL;
  8242. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * V_2 = NULL;
  8243. FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * V_3 = NULL;
  8244. bool V_4 = false;
  8245. String_t* V_5 = NULL;
  8246. bool V_6 = false;
  8247. bool V_7 = false;
  8248. bool V_8 = false;
  8249. FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * V_9 = NULL;
  8250. bool V_10 = false;
  8251. il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
  8252. il2cpp::utils::ExceptionSupportStack<int32_t, 3> __leave_targets;
  8253. int32_t G_B7_0 = 0;
  8254. int32_t G_B13_0 = 0;
  8255. {
  8256. String_t* L_0 = ___targetUrl0;
  8257. bool L_1;
  8258. L_1 = String_IsNullOrEmpty_m9AFBB5335B441B94E884B8A9D4A27AD60E3D7F7C(L_0, /*hidden argument*/NULL);
  8259. V_4 = L_1;
  8260. bool L_2 = V_4;
  8261. if (!L_2)
  8262. {
  8263. goto IL_0019;
  8264. }
  8265. }
  8266. {
  8267. V_5 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
  8268. goto IL_00d6;
  8269. }
  8270. IL_0019:
  8271. {
  8272. V_0 = (bool)0;
  8273. String_t* L_3 = ___localUrl1;
  8274. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_4 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8275. Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C(L_4, L_3, /*hidden argument*/NULL);
  8276. V_1 = L_4;
  8277. V_2 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL;
  8278. String_t* L_5 = ___targetUrl0;
  8279. NullCheck(L_5);
  8280. Il2CppChar L_6;
  8281. L_6 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_5, 0, /*hidden argument*/NULL);
  8282. V_6 = (bool)((((int32_t)L_6) == ((int32_t)((int32_t)47)))? 1 : 0);
  8283. bool L_7 = V_6;
  8284. if (!L_7)
  8285. {
  8286. goto IL_0041;
  8287. }
  8288. }
  8289. {
  8290. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_8 = V_1;
  8291. String_t* L_9 = ___targetUrl0;
  8292. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_10 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8293. Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_10, L_8, L_9, /*hidden argument*/NULL);
  8294. V_2 = L_10;
  8295. V_0 = (bool)1;
  8296. }
  8297. IL_0041:
  8298. {
  8299. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_11 = V_2;
  8300. IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8301. bool L_12;
  8302. L_12 = Uri_op_Equality_mB322C9CBB45846441BDCA7357E7D28123824ED83(L_11, (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL, /*hidden argument*/NULL);
  8303. if (!L_12)
  8304. {
  8305. goto IL_0057;
  8306. }
  8307. }
  8308. {
  8309. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8310. Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_13 = ((WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var))->get_domainRegex_0();
  8311. String_t* L_14 = ___targetUrl0;
  8312. NullCheck(L_13);
  8313. bool L_15;
  8314. L_15 = Regex_IsMatch_m872C1D85AC5BF891AC3C3FC789BBC4E2393FB859(L_13, L_14, /*hidden argument*/NULL);
  8315. G_B7_0 = ((int32_t)(L_15));
  8316. goto IL_0058;
  8317. }
  8318. IL_0057:
  8319. {
  8320. G_B7_0 = 0;
  8321. }
  8322. IL_0058:
  8323. {
  8324. V_7 = (bool)G_B7_0;
  8325. bool L_16 = V_7;
  8326. if (!L_16)
  8327. {
  8328. goto IL_0075;
  8329. }
  8330. }
  8331. {
  8332. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_17 = V_1;
  8333. NullCheck(L_17);
  8334. String_t* L_18;
  8335. L_18 = Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29(L_17, /*hidden argument*/NULL);
  8336. String_t* L_19 = ___targetUrl0;
  8337. String_t* L_20;
  8338. L_20 = String_Concat_m89EAB4C6A96B0E5C3F87300D6BE78D386B9EFC44(L_18, _stringLiteral6A1D52382547009AB732F651FE2CA42F1BBA769A, L_19, /*hidden argument*/NULL);
  8339. ___targetUrl0 = L_20;
  8340. V_0 = (bool)1;
  8341. }
  8342. IL_0075:
  8343. {
  8344. V_3 = (FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)NULL;
  8345. }
  8346. IL_0077:
  8347. try
  8348. {// begin try (depth: 1)
  8349. {
  8350. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_21 = V_2;
  8351. IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8352. bool L_22;
  8353. L_22 = Uri_op_Equality_mB322C9CBB45846441BDCA7357E7D28123824ED83(L_21, (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL, /*hidden argument*/NULL);
  8354. if (!L_22)
  8355. {
  8356. goto IL_0091;
  8357. }
  8358. }
  8359. IL_0081:
  8360. {
  8361. String_t* L_23 = ___targetUrl0;
  8362. NullCheck(L_23);
  8363. Il2CppChar L_24;
  8364. L_24 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_23, 0, /*hidden argument*/NULL);
  8365. G_B13_0 = ((((int32_t)((((int32_t)L_24) == ((int32_t)((int32_t)46)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  8366. goto IL_0092;
  8367. }
  8368. IL_0091:
  8369. {
  8370. G_B13_0 = 0;
  8371. }
  8372. IL_0092:
  8373. {
  8374. V_8 = (bool)G_B13_0;
  8375. bool L_25 = V_8;
  8376. if (!L_25)
  8377. {
  8378. goto IL_009f;
  8379. }
  8380. }
  8381. IL_0098:
  8382. {
  8383. String_t* L_26 = ___targetUrl0;
  8384. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_27 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8385. Uri__ctor_m7724F43B1525624FFF97A774B6B909B075714D5C(L_27, L_26, /*hidden argument*/NULL);
  8386. V_2 = L_27;
  8387. }
  8388. IL_009f:
  8389. {
  8390. goto IL_00ab;
  8391. }
  8392. }// end try (depth: 1)
  8393. catch(Il2CppExceptionWrapper& e)
  8394. {
  8395. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  8396. {
  8397. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  8398. goto CATCH_00a2;
  8399. }
  8400. throw e;
  8401. }
  8402. CATCH_00a2:
  8403. {// begin catch(System.FormatException)
  8404. V_9 = ((FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *)IL2CPP_GET_ACTIVE_EXCEPTION(FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 *));
  8405. FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_28 = V_9;
  8406. V_3 = L_28;
  8407. IL2CPP_POP_ACTIVE_EXCEPTION();
  8408. goto IL_00ab;
  8409. }// end catch (depth: 1)
  8410. IL_00ab:
  8411. {
  8412. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_29 = V_2;
  8413. IL2CPP_RUNTIME_CLASS_INIT(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8414. bool L_30;
  8415. L_30 = Uri_op_Equality_mB322C9CBB45846441BDCA7357E7D28123824ED83(L_29, (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)NULL, /*hidden argument*/NULL);
  8416. V_10 = L_30;
  8417. bool L_31 = V_10;
  8418. if (!L_31)
  8419. {
  8420. goto IL_00ca;
  8421. }
  8422. }
  8423. IL_00b8:
  8424. try
  8425. {// begin try (depth: 1)
  8426. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_32 = V_1;
  8427. String_t* L_33 = ___targetUrl0;
  8428. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_34 = (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 *)il2cpp_codegen_object_new(Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612_il2cpp_TypeInfo_var);
  8429. Uri__ctor_m0B44AFB01F3FEDE9319BA4556288340D16101F9D(L_34, L_32, L_33, /*hidden argument*/NULL);
  8430. V_2 = L_34;
  8431. V_0 = (bool)1;
  8432. goto IL_00ca;
  8433. }// end try (depth: 1)
  8434. catch(Il2CppExceptionWrapper& e)
  8435. {
  8436. if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
  8437. {
  8438. IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
  8439. goto CATCH_00c6;
  8440. }
  8441. throw e;
  8442. }
  8443. CATCH_00c6:
  8444. {// begin catch(System.FormatException)
  8445. FormatException_t119BB207B54B4B1BC28D9B1783C4625AE23D4759 * L_35 = V_3;
  8446. IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&WebRequestUtils_MakeInitialUrl_mD575E2FEAC3685E9030B528769BFAC7CE0534290_RuntimeMethod_var)));
  8447. }// end catch (depth: 1)
  8448. IL_00ca:
  8449. {
  8450. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_36 = V_2;
  8451. String_t* L_37 = ___targetUrl0;
  8452. bool L_38 = V_0;
  8453. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8454. String_t* L_39;
  8455. L_39 = WebRequestUtils_MakeUriString_mD6C6C27478BADC8EDF42621924F2ACD6D1B21E7D(L_36, L_37, L_38, /*hidden argument*/NULL);
  8456. V_5 = L_39;
  8457. goto IL_00d6;
  8458. }
  8459. IL_00d6:
  8460. {
  8461. String_t* L_40 = V_5;
  8462. return L_40;
  8463. }
  8464. }
  8465. // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean)
  8466. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_mD6C6C27478BADC8EDF42621924F2ACD6D1B21E7D (Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * ___targetUri0, String_t* ___targetUrl1, bool ___prependProtocol2, const RuntimeMethod* method)
  8467. {
  8468. static bool s_Il2CppMethodInitialized;
  8469. if (!s_Il2CppMethodInitialized)
  8470. {
  8471. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringBuilder_t_il2cpp_TypeInfo_var);
  8472. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8473. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA);
  8474. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D);
  8475. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710);
  8476. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1);
  8477. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A);
  8478. s_Il2CppMethodInitialized = true;
  8479. }
  8480. String_t* V_0 = NULL;
  8481. bool V_1 = false;
  8482. String_t* V_2 = NULL;
  8483. bool V_3 = false;
  8484. String_t* V_4 = NULL;
  8485. bool V_5 = false;
  8486. bool V_6 = false;
  8487. bool V_7 = false;
  8488. StringBuilder_t * V_8 = NULL;
  8489. bool V_9 = false;
  8490. String_t* V_10 = NULL;
  8491. bool V_11 = false;
  8492. bool V_12 = false;
  8493. bool V_13 = false;
  8494. int32_t G_B8_0 = 0;
  8495. int32_t G_B15_0 = 0;
  8496. int32_t G_B23_0 = 0;
  8497. {
  8498. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_0 = ___targetUri0;
  8499. NullCheck(L_0);
  8500. bool L_1;
  8501. L_1 = Uri_get_IsFile_mCFA022C6E4641EBD7285A01056B7E201CEFD2C73(L_0, /*hidden argument*/NULL);
  8502. V_1 = L_1;
  8503. bool L_2 = V_1;
  8504. if (!L_2)
  8505. {
  8506. goto IL_0083;
  8507. }
  8508. }
  8509. {
  8510. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_3 = ___targetUri0;
  8511. NullCheck(L_3);
  8512. bool L_4;
  8513. L_4 = Uri_get_IsLoopback_m6988313CE348064A6A068347D878DDC51594B710(L_3, /*hidden argument*/NULL);
  8514. V_3 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
  8515. bool L_5 = V_3;
  8516. if (!L_5)
  8517. {
  8518. goto IL_0026;
  8519. }
  8520. }
  8521. {
  8522. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_6 = ___targetUri0;
  8523. NullCheck(L_6);
  8524. String_t* L_7;
  8525. L_7 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(L_6, /*hidden argument*/NULL);
  8526. V_4 = L_7;
  8527. goto IL_01c1;
  8528. }
  8529. IL_0026:
  8530. {
  8531. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_8 = ___targetUri0;
  8532. NullCheck(L_8);
  8533. String_t* L_9;
  8534. L_9 = Uri_get_AbsolutePath_mB845A99D0CEB442AAF90B24A95EE7509C34C6306(L_8, /*hidden argument*/NULL);
  8535. V_2 = L_9;
  8536. String_t* L_10 = V_2;
  8537. NullCheck(L_10);
  8538. bool L_11;
  8539. L_11 = String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A(L_10, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, /*hidden argument*/NULL);
  8540. V_5 = L_11;
  8541. bool L_12 = V_5;
  8542. if (!L_12)
  8543. {
  8544. goto IL_0045;
  8545. }
  8546. }
  8547. {
  8548. String_t* L_13 = V_2;
  8549. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8550. String_t* L_14;
  8551. L_14 = WebRequestUtils_URLDecode_m1B0D9D85074E0B8390C890B9E56F389F4EC6C8DF(L_13, /*hidden argument*/NULL);
  8552. V_2 = L_14;
  8553. }
  8554. IL_0045:
  8555. {
  8556. String_t* L_15 = V_2;
  8557. NullCheck(L_15);
  8558. int32_t L_16;
  8559. L_16 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_15, /*hidden argument*/NULL);
  8560. if ((((int32_t)L_16) <= ((int32_t)0)))
  8561. {
  8562. goto IL_005e;
  8563. }
  8564. }
  8565. {
  8566. String_t* L_17 = V_2;
  8567. NullCheck(L_17);
  8568. Il2CppChar L_18;
  8569. L_18 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_17, 0, /*hidden argument*/NULL);
  8570. G_B8_0 = ((((int32_t)((((int32_t)L_18) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  8571. goto IL_005f;
  8572. }
  8573. IL_005e:
  8574. {
  8575. G_B8_0 = 0;
  8576. }
  8577. IL_005f:
  8578. {
  8579. V_6 = (bool)G_B8_0;
  8580. bool L_19 = V_6;
  8581. if (!L_19)
  8582. {
  8583. goto IL_0071;
  8584. }
  8585. }
  8586. {
  8587. String_t* L_20 = V_2;
  8588. String_t* L_21;
  8589. L_21 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral86BBAACC00198DBB3046818AD3FC2AA10AE48DE1, L_20, /*hidden argument*/NULL);
  8590. V_2 = L_21;
  8591. }
  8592. IL_0071:
  8593. {
  8594. String_t* L_22 = V_2;
  8595. String_t* L_23;
  8596. L_23 = String_Concat_m4B4AB72618348C5DFBFBA8DED84B9E2EBDB55E1B(_stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, L_22, /*hidden argument*/NULL);
  8597. V_4 = L_23;
  8598. goto IL_01c1;
  8599. }
  8600. IL_0083:
  8601. {
  8602. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_24 = ___targetUri0;
  8603. NullCheck(L_24);
  8604. String_t* L_25;
  8605. L_25 = Uri_get_Scheme_mEC4980E1C82DE3963007E33C759742A02A26FF29(L_24, /*hidden argument*/NULL);
  8606. V_0 = L_25;
  8607. bool L_26 = ___prependProtocol2;
  8608. if (L_26)
  8609. {
  8610. goto IL_00b4;
  8611. }
  8612. }
  8613. {
  8614. String_t* L_27 = ___targetUrl1;
  8615. NullCheck(L_27);
  8616. int32_t L_28;
  8617. L_28 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_27, /*hidden argument*/NULL);
  8618. String_t* L_29 = V_0;
  8619. NullCheck(L_29);
  8620. int32_t L_30;
  8621. L_30 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_29, /*hidden argument*/NULL);
  8622. if ((((int32_t)L_28) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_30, (int32_t)2)))))
  8623. {
  8624. goto IL_00b4;
  8625. }
  8626. }
  8627. {
  8628. String_t* L_31 = ___targetUrl1;
  8629. String_t* L_32 = V_0;
  8630. NullCheck(L_32);
  8631. int32_t L_33;
  8632. L_33 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_32, /*hidden argument*/NULL);
  8633. NullCheck(L_31);
  8634. Il2CppChar L_34;
  8635. L_34 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_31, ((int32_t)il2cpp_codegen_add((int32_t)L_33, (int32_t)1)), /*hidden argument*/NULL);
  8636. G_B15_0 = ((((int32_t)((((int32_t)L_34) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  8637. goto IL_00b5;
  8638. }
  8639. IL_00b4:
  8640. {
  8641. G_B15_0 = 0;
  8642. }
  8643. IL_00b5:
  8644. {
  8645. V_7 = (bool)G_B15_0;
  8646. bool L_35 = V_7;
  8647. if (!L_35)
  8648. {
  8649. goto IL_019c;
  8650. }
  8651. }
  8652. {
  8653. String_t* L_36 = V_0;
  8654. String_t* L_37 = ___targetUrl1;
  8655. NullCheck(L_37);
  8656. int32_t L_38;
  8657. L_38 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_37, /*hidden argument*/NULL);
  8658. StringBuilder_t * L_39 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
  8659. StringBuilder__ctor_mE87B9746FC40A7ECC0149A24685BD0713459FAF1(L_39, L_36, L_38, /*hidden argument*/NULL);
  8660. V_8 = L_39;
  8661. StringBuilder_t * L_40 = V_8;
  8662. NullCheck(L_40);
  8663. StringBuilder_t * L_41;
  8664. L_41 = StringBuilder_Append_m1ADA3C16E40BF253BCDB5F9579B4DBA9C3E5B22E(L_40, ((int32_t)58), /*hidden argument*/NULL);
  8665. String_t* L_42 = V_0;
  8666. bool L_43;
  8667. L_43 = String_op_Equality_m2B91EE68355F142F67095973D32EB5828B7B73CB(L_42, _stringLiteralEB3DF58228CDA6AA5325549ADFCEDF52FC5CBF6A, /*hidden argument*/NULL);
  8668. V_9 = L_43;
  8669. bool L_44 = V_9;
  8670. if (!L_44)
  8671. {
  8672. goto IL_0175;
  8673. }
  8674. }
  8675. {
  8676. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_45 = ___targetUri0;
  8677. NullCheck(L_45);
  8678. String_t* L_46;
  8679. L_46 = Uri_get_AbsolutePath_mB845A99D0CEB442AAF90B24A95EE7509C34C6306(L_45, /*hidden argument*/NULL);
  8680. V_10 = L_46;
  8681. String_t* L_47 = V_10;
  8682. NullCheck(L_47);
  8683. bool L_48;
  8684. L_48 = String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A(L_47, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, /*hidden argument*/NULL);
  8685. V_11 = L_48;
  8686. bool L_49 = V_11;
  8687. if (!L_49)
  8688. {
  8689. goto IL_010f;
  8690. }
  8691. }
  8692. {
  8693. String_t* L_50 = V_10;
  8694. IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8695. String_t* L_51;
  8696. L_51 = WebRequestUtils_URLDecode_m1B0D9D85074E0B8390C890B9E56F389F4EC6C8DF(L_50, /*hidden argument*/NULL);
  8697. V_10 = L_51;
  8698. }
  8699. IL_010f:
  8700. {
  8701. String_t* L_52 = V_10;
  8702. NullCheck(L_52);
  8703. bool L_53;
  8704. L_53 = String_StartsWith_mDE2FF98CAFFD13F88EDEB6C40158DDF840BFCF12(L_52, _stringLiteral225454A90D745E7A7A5DE5C12169566FBC05370D, /*hidden argument*/NULL);
  8705. if (!L_53)
  8706. {
  8707. goto IL_0138;
  8708. }
  8709. }
  8710. {
  8711. String_t* L_54 = V_10;
  8712. NullCheck(L_54);
  8713. int32_t L_55;
  8714. L_55 = String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline(L_54, /*hidden argument*/NULL);
  8715. if ((((int32_t)L_55) <= ((int32_t)6)))
  8716. {
  8717. goto IL_0138;
  8718. }
  8719. }
  8720. {
  8721. String_t* L_56 = V_10;
  8722. NullCheck(L_56);
  8723. Il2CppChar L_57;
  8724. L_57 = String_get_Chars_m9B1A5E4C8D70AA33A60F03735AF7B77AB9DBBA70(L_56, 6, /*hidden argument*/NULL);
  8725. G_B23_0 = ((((int32_t)((((int32_t)L_57) == ((int32_t)((int32_t)47)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
  8726. goto IL_0139;
  8727. }
  8728. IL_0138:
  8729. {
  8730. G_B23_0 = 0;
  8731. }
  8732. IL_0139:
  8733. {
  8734. V_12 = (bool)G_B23_0;
  8735. bool L_58 = V_12;
  8736. if (!L_58)
  8737. {
  8738. goto IL_0160;
  8739. }
  8740. }
  8741. {
  8742. StringBuilder_t * L_59 = V_8;
  8743. NullCheck(L_59);
  8744. StringBuilder_t * L_60;
  8745. L_60 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_59, _stringLiteral218F5A08519088A96BE3C1074984C53EA49F1CCA, /*hidden argument*/NULL);
  8746. StringBuilder_t * L_61 = V_8;
  8747. String_t* L_62 = V_10;
  8748. NullCheck(L_62);
  8749. String_t* L_63;
  8750. L_63 = String_Substring_mB6B87FD76552BBF6D4E2B9F07F857FE051DCE190(L_62, 5, /*hidden argument*/NULL);
  8751. NullCheck(L_61);
  8752. StringBuilder_t * L_64;
  8753. L_64 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_61, L_63, /*hidden argument*/NULL);
  8754. goto IL_016a;
  8755. }
  8756. IL_0160:
  8757. {
  8758. StringBuilder_t * L_65 = V_8;
  8759. String_t* L_66 = V_10;
  8760. NullCheck(L_65);
  8761. StringBuilder_t * L_67;
  8762. L_67 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_65, L_66, /*hidden argument*/NULL);
  8763. }
  8764. IL_016a:
  8765. {
  8766. StringBuilder_t * L_68 = V_8;
  8767. NullCheck(L_68);
  8768. String_t* L_69;
  8769. L_69 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_68);
  8770. V_4 = L_69;
  8771. goto IL_01c1;
  8772. }
  8773. IL_0175:
  8774. {
  8775. StringBuilder_t * L_70 = V_8;
  8776. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_71 = ___targetUri0;
  8777. NullCheck(L_71);
  8778. String_t* L_72;
  8779. L_72 = Uri_get_PathAndQuery_m0FFF28F15DF953C5866C2A0DEEA2034ECE6A0F35(L_71, /*hidden argument*/NULL);
  8780. NullCheck(L_70);
  8781. StringBuilder_t * L_73;
  8782. L_73 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_70, L_72, /*hidden argument*/NULL);
  8783. StringBuilder_t * L_74 = V_8;
  8784. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_75 = ___targetUri0;
  8785. NullCheck(L_75);
  8786. String_t* L_76;
  8787. L_76 = Uri_get_Fragment_m1734B2D3F27F38AA342CB65885DE732160501E72(L_75, /*hidden argument*/NULL);
  8788. NullCheck(L_74);
  8789. StringBuilder_t * L_77;
  8790. L_77 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_74, L_76, /*hidden argument*/NULL);
  8791. StringBuilder_t * L_78 = V_8;
  8792. NullCheck(L_78);
  8793. String_t* L_79;
  8794. L_79 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_78);
  8795. V_4 = L_79;
  8796. goto IL_01c1;
  8797. }
  8798. IL_019c:
  8799. {
  8800. String_t* L_80 = ___targetUrl1;
  8801. NullCheck(L_80);
  8802. bool L_81;
  8803. L_81 = String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A(L_80, _stringLiteral6C066B34F4DB79023C0642AFBC43B25A5327F710, /*hidden argument*/NULL);
  8804. V_13 = L_81;
  8805. bool L_82 = V_13;
  8806. if (!L_82)
  8807. {
  8808. goto IL_01b7;
  8809. }
  8810. }
  8811. {
  8812. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_83 = ___targetUri0;
  8813. NullCheck(L_83);
  8814. String_t* L_84;
  8815. L_84 = Uri_get_OriginalString_mBD94B4BB84AE9C051C1CA8BA33C14D5BAD25B0AC(L_83, /*hidden argument*/NULL);
  8816. V_4 = L_84;
  8817. goto IL_01c1;
  8818. }
  8819. IL_01b7:
  8820. {
  8821. Uri_t4A915E1CC15B2C650F478099AD448E9466CBF612 * L_85 = ___targetUri0;
  8822. NullCheck(L_85);
  8823. String_t* L_86;
  8824. L_86 = Uri_get_AbsoluteUri_mC494374C2A3B1DFC9C3DC6CCB8A8A758580C11DA(L_85, /*hidden argument*/NULL);
  8825. V_4 = L_86;
  8826. goto IL_01c1;
  8827. }
  8828. IL_01c1:
  8829. {
  8830. String_t* L_87 = V_4;
  8831. return L_87;
  8832. }
  8833. }
  8834. // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String)
  8835. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m1B0D9D85074E0B8390C890B9E56F389F4EC6C8DF (String_t* ___encoded0, const RuntimeMethod* method)
  8836. {
  8837. static bool s_Il2CppMethodInitialized;
  8838. if (!s_Il2CppMethodInitialized)
  8839. {
  8840. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  8841. s_Il2CppMethodInitialized = true;
  8842. }
  8843. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_0 = NULL;
  8844. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL;
  8845. String_t* V_2 = NULL;
  8846. {
  8847. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_0;
  8848. L_0 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  8849. String_t* L_1 = ___encoded0;
  8850. NullCheck(L_0);
  8851. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2;
  8852. L_2 = VirtualFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(18 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1);
  8853. V_0 = L_2;
  8854. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = V_0;
  8855. IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t61D467EE2097E0FE6FA215AAEA4D3BF4216CB771_il2cpp_TypeInfo_var);
  8856. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4;
  8857. L_4 = WWWTranscoder_URLDecode_mFBF699CBF92B0184ED37E461550430B7454BD0FB(L_3, /*hidden argument*/NULL);
  8858. V_1 = L_4;
  8859. Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_5;
  8860. L_5 = Encoding_get_UTF8_mC877FB3137BBD566AEE7B15F9BF61DC4EF8F5E5E(/*hidden argument*/NULL);
  8861. ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6 = V_1;
  8862. NullCheck(L_5);
  8863. String_t* L_7;
  8864. L_7 = VirtualFuncInvoker1< String_t*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* >::Invoke(35 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_5, L_6);
  8865. V_2 = L_7;
  8866. goto IL_0022;
  8867. }
  8868. IL_0022:
  8869. {
  8870. String_t* L_8 = V_2;
  8871. return L_8;
  8872. }
  8873. }
  8874. // System.Void UnityEngineInternal.WebRequestUtils::.cctor()
  8875. IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_mD79D1BBF154F1968AB3E32B710D8CE7583105600 (const RuntimeMethod* method)
  8876. {
  8877. static bool s_Il2CppMethodInitialized;
  8878. if (!s_Il2CppMethodInitialized)
  8879. {
  8880. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var);
  8881. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var);
  8882. il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F);
  8883. s_Il2CppMethodInitialized = true;
  8884. }
  8885. {
  8886. Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F * L_0 = (Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F *)il2cpp_codegen_object_new(Regex_t90F443D398F44965EA241A652ED75DF5BA072A1F_il2cpp_TypeInfo_var);
  8887. Regex__ctor_m8BB2137D7B0A93CD70FD3061579C7456BB65216E(L_0, _stringLiteral665437E312D2053C5919723E2E7EA49D0A2ADE1F, /*hidden argument*/NULL);
  8888. ((WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_t3FE2D9FD71A02CD3AF8C91B81280F59E5CF26392_il2cpp_TypeInfo_var))->set_domainRegex_0(L_0);
  8889. return;
  8890. }
  8891. }
  8892. #ifdef __clang__
  8893. #pragma clang diagnostic pop
  8894. #endif
  8895. #ifdef __clang__
  8896. #pragma clang diagnostic push
  8897. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8898. #pragma clang diagnostic ignored "-Wunused-variable"
  8899. #endif
  8900. #ifdef __clang__
  8901. #pragma clang diagnostic pop
  8902. #endif
  8903. #ifdef __clang__
  8904. #pragma clang diagnostic push
  8905. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8906. #pragma clang diagnostic ignored "-Wunused-variable"
  8907. #endif
  8908. #ifdef __clang__
  8909. #pragma clang diagnostic pop
  8910. #endif
  8911. #ifdef __clang__
  8912. #pragma clang diagnostic push
  8913. #pragma clang diagnostic ignored "-Winvalid-offsetof"
  8914. #pragma clang diagnostic ignored "-Wunused-variable"
  8915. #endif
  8916. #ifdef __clang__
  8917. #pragma clang diagnostic pop
  8918. #endif
  8919. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_m6F638476FBD7ABDCEF8E7AD449266E505B85D20B_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method)
  8920. {
  8921. {
  8922. bool L_0 = ___value0;
  8923. __this->set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(L_0);
  8924. return;
  8925. }
  8926. }
  8927. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_m4A63470C788CF2A03D34EEA3F8968B430A111397_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method)
  8928. {
  8929. {
  8930. bool L_0 = ___value0;
  8931. __this->set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(L_0);
  8932. return;
  8933. }
  8934. }
  8935. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_mBF38D6481CE40882846C679F3E51C8D70B502E3C_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, bool ___value0, const RuntimeMethod* method)
  8936. {
  8937. {
  8938. bool L_0 = ___value0;
  8939. __this->set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(L_0);
  8940. return;
  8941. }
  8942. }
  8943. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m815A891A7C495D05DACB60147CB557C78CE89289_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  8944. {
  8945. {
  8946. bool L_0 = __this->get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6();
  8947. return L_0;
  8948. }
  8949. }
  8950. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mBFAC496EFE17D72583D9D81B170EE0F2FABDC07B_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  8951. {
  8952. {
  8953. bool L_0 = __this->get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7();
  8954. return L_0;
  8955. }
  8956. }
  8957. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m47CB38750DEFA8A9FB426E650A78F62FEA68D0C0_inline (UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * __this, const RuntimeMethod* method)
  8958. {
  8959. {
  8960. bool L_0 = __this->get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5();
  8961. return L_0;
  8962. }
  8963. }
  8964. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_mAB1AE2613FEF8FAFB463E73D70043A89B2FC39C3_inline (UnityWebRequestAsyncOperation_tDCAC6B6C7D51563F8DFD4963E3BE362470125396 * __this, UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * ___value0, const RuntimeMethod* method)
  8965. {
  8966. {
  8967. UnityWebRequest_tB75B39F6951CA0DBA2D5BEDF85FDCAAC6026A37E * L_0 = ___value0;
  8968. __this->set_U3CwebRequestU3Ek__BackingField_2(L_0);
  8969. return;
  8970. }
  8971. }
  8972. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m129FC0ADA02FECBED3C0B1A809AE84A5AEE1CF09_inline (String_t* __this, const RuntimeMethod* method)
  8973. {
  8974. {
  8975. int32_t L_0 = __this->get_m_stringLength_0();
  8976. return L_0;
  8977. }
  8978. }
  8979. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 Enumerator_get_Current_m39BB9CD07FEC0DBEDFE938630364A23C9A87FC3F_gshared_inline (Enumerator_tE4E91EE5578038530CF0C46227953BA787E7A0A0 * __this, const RuntimeMethod* method)
  8980. {
  8981. {
  8982. KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 L_0 = (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )__this->get_current_3();
  8983. return (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 )L_0;
  8984. }
  8985. }
  8986. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_mEFB776105F87A4EAB1CAC3F0C96C4D0B79F3F03D_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method)
  8987. {
  8988. {
  8989. RuntimeObject * L_0 = (RuntimeObject *)__this->get_key_0();
  8990. return (RuntimeObject *)L_0;
  8991. }
  8992. }
  8993. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8425596BB4249956819960EC76E618357F573E76_gshared_inline (KeyValuePair_2_tFB6A066C69E28C6ACA5FC5E24D969BFADC5FA625 * __this, const RuntimeMethod* method)
  8994. {
  8995. {
  8996. RuntimeObject * L_0 = (RuntimeObject *)__this->get_value_1();
  8997. return (RuntimeObject *)L_0;
  8998. }
  8999. }
  9000. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_m7B5E3383CB67492E573AC0D875ED82A51350F188_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method)
  9001. {
  9002. {
  9003. int32_t L_0 = ___index0;
  9004. int32_t L_1 = (int32_t)__this->get__size_2();
  9005. if ((!(((uint32_t)L_0) >= ((uint32_t)L_1))))
  9006. {
  9007. goto IL_000e;
  9008. }
  9009. }
  9010. {
  9011. ThrowHelper_ThrowArgumentOutOfRangeException_m4841366ABC2B2AFA37C10900551D7E07522C0929(/*hidden argument*/NULL);
  9012. }
  9013. IL_000e:
  9014. {
  9015. ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1();
  9016. int32_t L_3 = ___index0;
  9017. RuntimeObject * L_4;
  9018. L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3);
  9019. return (RuntimeObject *)L_4;
  9020. }
  9021. }
  9022. IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method)
  9023. {
  9024. {
  9025. int32_t L_0 = (int32_t)__this->get__size_2();
  9026. return (int32_t)L_0;
  9027. }
  9028. }