Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

System_CodeGen.c 301KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491
  1. #include "pch-c.h"
  2. #ifndef _MSC_VER
  3. # include <alloca.h>
  4. #else
  5. # include <malloc.h>
  6. #endif
  7. #include "codegen/il2cpp-codegen-metadata.h"
  8. // 0x00000001 System.String Internal.Cryptography.OidLookup::ToOid(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
  9. extern void OidLookup_ToOid_m084AE2948BA1D784EAC148B97B6D5EF94F0D58B0 (void);
  10. // 0x00000002 System.Boolean Internal.Cryptography.OidLookup::ShouldUseCache(System.Security.Cryptography.OidGroup)
  11. extern void OidLookup_ShouldUseCache_mAF605BA00A22EA400B99D24286837F6904C84ED0 (void);
  12. // 0x00000003 System.String Internal.Cryptography.OidLookup::NativeFriendlyNameToOid(System.String,System.Security.Cryptography.OidGroup,System.Boolean)
  13. extern void OidLookup_NativeFriendlyNameToOid_m383F983E8333B3DAB97C9278B3B0EDF09E61758D (void);
  14. // 0x00000004 System.Void Internal.Cryptography.OidLookup::.cctor()
  15. extern void OidLookup__cctor_mBF99F75584EA62215139C76A1BBF57BCEAD2ADBC (void);
  16. // 0x00000005 System.Void Internal.Cryptography.OidLookup/<>c::.cctor()
  17. extern void U3CU3Ec__cctor_m63CA89B172417DB40229C01C86A24DAAD5EC9963 (void);
  18. // 0x00000006 System.Void Internal.Cryptography.OidLookup/<>c::.ctor()
  19. extern void U3CU3Ec__ctor_m381C6259C7B5579501CBFB1E4D1DF201D5928470 (void);
  20. // 0x00000007 System.String Internal.Cryptography.OidLookup/<>c::<.cctor>b__10_0(System.Collections.Generic.KeyValuePair`2<System.String,System.String>)
  21. extern void U3CU3Ec_U3C_cctorU3Eb__10_0_m6CCA3946EAC08544EB57D764DBF2D23E12DE30A1 (void);
  22. // 0x00000008 System.String Internal.Cryptography.OidLookup/<>c::<.cctor>b__10_1(System.Collections.Generic.KeyValuePair`2<System.String,System.String>)
  23. extern void U3CU3Ec_U3C_cctorU3Eb__10_1_m7F86444F2B083758A76759BD54D31A3538101A4E (void);
  24. // 0x00000009 System.Boolean Microsoft.Win32.NativeMethods::DuplicateHandle(System.Runtime.InteropServices.HandleRef,System.Runtime.InteropServices.SafeHandle,System.Runtime.InteropServices.HandleRef,Microsoft.Win32.SafeHandles.SafeWaitHandle&,System.Int32,System.Boolean,System.Int32)
  25. extern void NativeMethods_DuplicateHandle_m34BEE27509460FD294C19D18F4A44CB7683BB750 (void);
  26. // 0x0000000A System.Boolean Microsoft.Win32.NativeMethods::DuplicateHandle(System.Runtime.InteropServices.HandleRef,System.Runtime.InteropServices.HandleRef,System.Runtime.InteropServices.HandleRef,Microsoft.Win32.SafeHandles.SafeProcessHandle&,System.Int32,System.Boolean,System.Int32)
  27. extern void NativeMethods_DuplicateHandle_m3264217E922ADAC535774687A4521889DB87CB6C (void);
  28. // 0x0000000B System.IntPtr Microsoft.Win32.NativeMethods::GetCurrentProcess()
  29. extern void NativeMethods_GetCurrentProcess_m0DDA8AB28E27F6B04D1CD3B60AF94D066F3953C8 (void);
  30. // 0x0000000C System.Boolean Microsoft.Win32.NativeMethods::GetExitCodeProcess(System.IntPtr,System.Int32&)
  31. extern void NativeMethods_GetExitCodeProcess_mE7FD943FE22AC0AE9D8B7E819A78CD069EDF6A42 (void);
  32. // 0x0000000D System.Boolean Microsoft.Win32.NativeMethods::GetExitCodeProcess(Microsoft.Win32.SafeHandles.SafeProcessHandle,System.Int32&)
  33. extern void NativeMethods_GetExitCodeProcess_m0CE4AB8F1AB1431791D1A23803ED98E96DDCC2B7 (void);
  34. // 0x0000000E System.Int32 Microsoft.Win32.NativeMethods::GetCurrentProcessId()
  35. extern void NativeMethods_GetCurrentProcessId_mDBBBEE33B07C6E14425814FE377C33984FF99ACB (void);
  36. // 0x0000000F System.Boolean Microsoft.Win32.NativeMethods::CloseProcess(System.IntPtr)
  37. extern void NativeMethods_CloseProcess_m46F696AA3E8FE85EA84504B04C06706A2716A8E1 (void);
  38. // 0x00000010 System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.ctor(System.IntPtr)
  39. extern void SafeProcessHandle__ctor_m347300F5032173FAA9287B4CDC692BBA71D82E95 (void);
  40. // 0x00000011 System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.ctor(System.IntPtr,System.Boolean)
  41. extern void SafeProcessHandle__ctor_mF35A5C60AA1DFE35E75F353C346E941D62DB8859 (void);
  42. // 0x00000012 System.Boolean Microsoft.Win32.SafeHandles.SafeProcessHandle::ReleaseHandle()
  43. extern void SafeProcessHandle_ReleaseHandle_m9026551EED6D5751BCBB3F413986A339E0DFE258 (void);
  44. // 0x00000013 System.Void Microsoft.Win32.SafeHandles.SafeProcessHandle::.cctor()
  45. extern void SafeProcessHandle__cctor_m8464FCF181C5F99CFF547FD4D6AC106F9F9E385E (void);
  46. // 0x00000014 System.Int32 System.IPv4AddressHelper::ParseHostNumber(System.ReadOnlySpan`1<System.Char>,System.Int32,System.Int32)
  47. extern void IPv4AddressHelper_ParseHostNumber_m3ECD734470D95F75F0A7475BB69A53D48A924179 (void);
  48. // 0x00000015 System.Boolean System.IPv4AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean,System.Boolean)
  49. extern void IPv4AddressHelper_IsValid_mB71D85892F391896358B6C19C6E4899ED31EFCF8 (void);
  50. // 0x00000016 System.Boolean System.IPv4AddressHelper::ParseCanonical(System.ReadOnlySpan`1<System.Char>,System.Byte*,System.Int32,System.Int32)
  51. extern void IPv4AddressHelper_ParseCanonical_m38827B1F002AC415916FF17D5C7DA3279486A91C (void);
  52. // 0x00000017 System.Boolean System.IPv4AddressHelper::IsValidCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean,System.Boolean)
  53. extern void IPv4AddressHelper_IsValidCanonical_m157BF3179C5A511A8915C572111A7014D7E5DB84 (void);
  54. // 0x00000018 System.Int64 System.IPv4AddressHelper::ParseNonCanonical(System.Char*,System.Int32,System.Int32&,System.Boolean)
  55. extern void IPv4AddressHelper_ParseNonCanonical_m8A508ED61556F4182AAEBE3E7D43C738A57C984D (void);
  56. // 0x00000019 System.String System.IPv4AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
  57. extern void IPv4AddressHelper_ParseCanonicalName_mF74A625E0C85FC8C5CAE3A47785606BF93777FF1 (void);
  58. // 0x0000001A System.Boolean System.IPv4AddressHelper::Parse(System.String,System.Byte*,System.Int32,System.Int32)
  59. extern void IPv4AddressHelper_Parse_m0F43F114BC6D0C8D85D29D3CA2CE24CA19714026 (void);
  60. // 0x0000001B System.ValueTuple`2<System.Int32,System.Int32> System.IPv6AddressHelper::FindCompressionRange(System.ReadOnlySpan`1<System.UInt16>)
  61. extern void IPv6AddressHelper_FindCompressionRange_m5BA0C004FA7BE7CB3C520AB47C4D6B6FA6C13C56 (void);
  62. // 0x0000001C System.Boolean System.IPv6AddressHelper::ShouldHaveIpv4Embedded(System.ReadOnlySpan`1<System.UInt16>)
  63. extern void IPv6AddressHelper_ShouldHaveIpv4Embedded_m08BEFD0452A0145779E70931B00F2D6EA15A1E70 (void);
  64. // 0x0000001D System.Void System.IPv6AddressHelper::Parse(System.ReadOnlySpan`1<System.Char>,System.UInt16*,System.Int32,System.String&)
  65. extern void IPv6AddressHelper_Parse_m6F68528ADBA8B6ECED3060135FC1DF6CCD2B0543 (void);
  66. // 0x0000001E System.String System.IPv6AddressHelper::ParseCanonicalName(System.String,System.Int32,System.Boolean&,System.String&)
  67. extern void IPv6AddressHelper_ParseCanonicalName_m5C5161CE7D6F7D7C7D81A808F51107C85A6CA21B (void);
  68. // 0x0000001F System.Boolean System.IPv6AddressHelper::IsLoopback(System.ReadOnlySpan`1<System.UInt16>)
  69. extern void IPv6AddressHelper_IsLoopback_mAE6B2C6CFAD787337C6ABB41F2D2942A4C191C84 (void);
  70. // 0x00000020 System.Boolean System.IPv6AddressHelper::InternalIsValid(System.Char*,System.Int32,System.Int32&,System.Boolean)
  71. extern void IPv6AddressHelper_InternalIsValid_mDF9ADFBBDDD76F8B77EC140686B6280F4BD53478 (void);
  72. // 0x00000021 System.Boolean System.IPv6AddressHelper::IsValid(System.Char*,System.Int32,System.Int32&)
  73. extern void IPv6AddressHelper_IsValid_mDEE6D566114425592CA0A067775A2E0C771CA5DA (void);
  74. // 0x00000022 System.Exception System.NotImplemented::ByDesignWithMessage(System.String)
  75. extern void NotImplemented_ByDesignWithMessage_m9A8A83C6B994C16CA1CFA80F5AD748ABA3510535 (void);
  76. // 0x00000023 System.Void System.PasteArguments::AppendArgument(System.Text.StringBuilder,System.String)
  77. extern void PasteArguments_AppendArgument_mE29A5B3AEF8F74460A923B540FD9DC928D7F1163 (void);
  78. // 0x00000024 System.Boolean System.PasteArguments::ContainsNoWhitespaceOrQuotes(System.String)
  79. extern void PasteArguments_ContainsNoWhitespaceOrQuotes_m1BDACFD9C7B6A252300167B6FD7B80C1EC4E59B9 (void);
  80. // 0x00000025 System.Void System.UriBuilder::.ctor(System.String)
  81. extern void UriBuilder__ctor_m782D0160E73CC61448E17FF5AEFAEA22B3BAC145 (void);
  82. // 0x00000026 System.Void System.UriBuilder::Init(System.Uri)
  83. extern void UriBuilder_Init_m5A6628A92532D3CAACD649C7528C15261C17A99D (void);
  84. // 0x00000027 System.Void System.UriBuilder::set_Query(System.String)
  85. extern void UriBuilder_set_Query_m1B7AB6F65BBAC94C07681D79F2A8DBDB15E844ED (void);
  86. // 0x00000028 System.Uri System.UriBuilder::get_Uri()
  87. extern void UriBuilder_get_Uri_mD0DF3F7DDF7C56CC99E2D29E06C959F80A4171A1 (void);
  88. // 0x00000029 System.Boolean System.UriBuilder::Equals(System.Object)
  89. extern void UriBuilder_Equals_m2318FB925C63380B75D92D199A9C2AE4AA98F322 (void);
  90. // 0x0000002A System.Int32 System.UriBuilder::GetHashCode()
  91. extern void UriBuilder_GetHashCode_m8ECFACD3573A5E927B335A3443481248118C8310 (void);
  92. // 0x0000002B System.Void System.UriBuilder::SetFieldsFromUri(System.Uri)
  93. extern void UriBuilder_SetFieldsFromUri_mB6015DF5AA0D123A1B2749378D88FA26D409788E (void);
  94. // 0x0000002C System.String System.UriBuilder::ToString()
  95. extern void UriBuilder_ToString_m0DEFF1C8981338B9D30B81620E839DCF2CFF4713 (void);
  96. // 0x0000002D System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Boolean)
  97. extern void IriHelper_CheckIriUnicodeRange_m584D1B233AB9DB3642640CDBD787B0E51D2AC625 (void);
  98. // 0x0000002E System.Boolean System.IriHelper::CheckIriUnicodeRange(System.Char,System.Char,System.Boolean&,System.Boolean)
  99. extern void IriHelper_CheckIriUnicodeRange_m0989646614B5D6CD18622388A069BEA8A755F013 (void);
  100. // 0x0000002F System.Boolean System.IriHelper::CheckIsReserved(System.Char,System.UriComponents)
  101. extern void IriHelper_CheckIsReserved_m0F5942330B329B65D738A398854399FD43A5589C (void);
  102. // 0x00000030 System.String System.IriHelper::EscapeUnescapeIri(System.Char*,System.Int32,System.Int32,System.UriComponents)
  103. extern void IriHelper_EscapeUnescapeIri_m311CD9679869740C6A303485944EF6DAE96FB169 (void);
  104. // 0x00000031 System.Boolean System.Uri::get_IsImplicitFile()
  105. extern void Uri_get_IsImplicitFile_m8D1A522158E4EB8AD8C077376D023ED1262998F6 (void);
  106. // 0x00000032 System.Boolean System.Uri::get_IsUncOrDosPath()
  107. extern void Uri_get_IsUncOrDosPath_m33F2D8808AB44816518C1C464152D4B7872374F0 (void);
  108. // 0x00000033 System.Boolean System.Uri::get_IsDosPath()
  109. extern void Uri_get_IsDosPath_m16357B61F5D111C45EF7D40276B96429E414F0D2 (void);
  110. // 0x00000034 System.Boolean System.Uri::get_IsUncPath()
  111. extern void Uri_get_IsUncPath_m2D9E7E2DB4EA57EF268B9BA167A1389E18AE9835 (void);
  112. // 0x00000035 System.Uri/Flags System.Uri::get_HostType()
  113. extern void Uri_get_HostType_mA30DC51045EE5FE94B3CB84B0D361A9C28EE572E (void);
  114. // 0x00000036 System.UriParser System.Uri::get_Syntax()
  115. extern void Uri_get_Syntax_mCBAC18B1DC71D269BF6C98417D923674DE258DC2 (void);
  116. // 0x00000037 System.Boolean System.Uri::get_IsNotAbsoluteUri()
  117. extern void Uri_get_IsNotAbsoluteUri_m374185EB37A209B6102F955427913168C5543028 (void);
  118. // 0x00000038 System.Boolean System.Uri::IriParsingStatic(System.UriParser)
  119. extern void Uri_IriParsingStatic_mF071497F10CC1CC81177D6F4BCE9D2007D8FDA16 (void);
  120. // 0x00000039 System.Boolean System.Uri::get_AllowIdn()
  121. extern void Uri_get_AllowIdn_m612B747CE2F03FCA867D81F14710758B561209E7 (void);
  122. // 0x0000003A System.Boolean System.Uri::AllowIdnStatic(System.UriParser,System.Uri/Flags)
  123. extern void Uri_AllowIdnStatic_m0B61B2A586F2BF870D185A1BD65151F52EFBC457 (void);
  124. // 0x0000003B System.Boolean System.Uri::IsIntranet(System.String)
  125. extern void Uri_IsIntranet_m3AC6DBC7C35F309DFAD0951ABC7D95A8000548EE (void);
  126. // 0x0000003C System.Boolean System.Uri::get_UserDrivenParsing()
  127. extern void Uri_get_UserDrivenParsing_mF2426529046B3DF3292A7AA2F4885F8D6591BBBD (void);
  128. // 0x0000003D System.Void System.Uri::SetUserDrivenParsing()
  129. extern void Uri_SetUserDrivenParsing_mDE80D352D6343F50F152EB65EF142E84F7F79D69 (void);
  130. // 0x0000003E System.UInt16 System.Uri::get_SecuredPathIndex()
  131. extern void Uri_get_SecuredPathIndex_m575B7B28B17F8F7EE3FA563ACF6390B0926732AD (void);
  132. // 0x0000003F System.Boolean System.Uri::NotAny(System.Uri/Flags)
  133. extern void Uri_NotAny_mB88A38A602D4A784CADBD43FDF4CDA0235371E81 (void);
  134. // 0x00000040 System.Boolean System.Uri::InFact(System.Uri/Flags)
  135. extern void Uri_InFact_mEEE8ADE0780C0712A3DEB8935BD6FC7B23F38A7B (void);
  136. // 0x00000041 System.Boolean System.Uri::StaticNotAny(System.Uri/Flags,System.Uri/Flags)
  137. extern void Uri_StaticNotAny_mDC2D7341AE3679E5750481E7B793F4E3636ACD6C (void);
  138. // 0x00000042 System.Boolean System.Uri::StaticInFact(System.Uri/Flags,System.Uri/Flags)
  139. extern void Uri_StaticInFact_m8F3964455197F6C2CB588843D71DDAD3B2F2AB77 (void);
  140. // 0x00000043 System.Uri/UriInfo System.Uri::EnsureUriInfo()
  141. extern void Uri_EnsureUriInfo_m6FE387306AF82CDCFC56E2E9C2171C406D1FA982 (void);
  142. // 0x00000044 System.Void System.Uri::EnsureParseRemaining()
  143. extern void Uri_EnsureParseRemaining_mDF7D4313A56047EB22457E12330C138156D54783 (void);
  144. // 0x00000045 System.Void System.Uri::EnsureHostString(System.Boolean)
  145. extern void Uri_EnsureHostString_m7F5F3ED8488F83170A857CD51F0CFEB8322AA055 (void);
  146. // 0x00000046 System.Void System.Uri::.ctor(System.String)
  147. extern void Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A (void);
  148. // 0x00000047 System.Void System.Uri::.ctor(System.String,System.UriKind)
  149. extern void Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B (void);
  150. // 0x00000048 System.Void System.Uri::.ctor(System.Uri,System.String)
  151. extern void Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09 (void);
  152. // 0x00000049 System.Void System.Uri::CreateUri(System.Uri,System.String,System.Boolean)
  153. extern void Uri_CreateUri_m9D81A5F3B332C44FDD875893EF619631708791F2 (void);
  154. // 0x0000004A System.Void System.Uri::.ctor(System.Uri,System.Uri)
  155. extern void Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F (void);
  156. // 0x0000004B System.ParsingError System.Uri::GetCombinedString(System.Uri,System.String,System.Boolean,System.String&)
  157. extern void Uri_GetCombinedString_m7D6A3DEB5DB42F79271CEC67DA2AEAD0E05BCEEF (void);
  158. // 0x0000004C System.UriFormatException System.Uri::GetException(System.ParsingError)
  159. extern void Uri_GetException_m80C3194C72CA8F86F95A6DFC8D5C29BE31D749A8 (void);
  160. // 0x0000004D System.Void System.Uri::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  161. extern void Uri__ctor_mE1AB9FB0563073B8DFB381A69A54E9E0459D583F (void);
  162. // 0x0000004E System.Void System.Uri::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  163. extern void Uri_System_Runtime_Serialization_ISerializable_GetObjectData_m39D9B260E68B8715E9B693A125A2116CE14D760D (void);
  164. // 0x0000004F System.Void System.Uri::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  165. extern void Uri_GetObjectData_m0D16C2BC060F0B88503DCC0EEACB151D43FA16CA (void);
  166. // 0x00000050 System.String System.Uri::get_AbsolutePath()
  167. extern void Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA (void);
  168. // 0x00000051 System.String System.Uri::get_PrivateAbsolutePath()
  169. extern void Uri_get_PrivateAbsolutePath_mF7B63FC5EBFAB1EE164BF868900B548962C5A546 (void);
  170. // 0x00000052 System.String System.Uri::get_AbsoluteUri()
  171. extern void Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE (void);
  172. // 0x00000053 System.Boolean System.Uri::get_IsFile()
  173. extern void Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F (void);
  174. // 0x00000054 System.Boolean System.Uri::get_IsLoopback()
  175. extern void Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A (void);
  176. // 0x00000055 System.String System.Uri::get_PathAndQuery()
  177. extern void Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C (void);
  178. // 0x00000056 System.Boolean System.Uri::get_IsUnc()
  179. extern void Uri_get_IsUnc_mB190B452D6A7B09FC8BDD967A5C38F32E87E0FCA (void);
  180. // 0x00000057 System.String System.Uri::get_Host()
  181. extern void Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C (void);
  182. // 0x00000058 System.Boolean System.Uri::StaticIsFile(System.UriParser)
  183. extern void Uri_StaticIsFile_m8BD582D32BB053DCB5BADA29C1DD807AACCCE7E1 (void);
  184. // 0x00000059 System.Object System.Uri::get_InitializeLock()
  185. extern void Uri_get_InitializeLock_m29D252F7183FE4C205E618018E8C42B56BC2B091 (void);
  186. // 0x0000005A System.Void System.Uri::InitializeUriConfig()
  187. extern void Uri_InitializeUriConfig_mCD4E00EDCA27459C7B005DDFFAD9D54396BF7DCB (void);
  188. // 0x0000005B System.Int32 System.Uri::get_Port()
  189. extern void Uri_get_Port_m7A1413AC9D9A2FC5DC8A7F89DF4A01ACA0241A02 (void);
  190. // 0x0000005C System.String System.Uri::get_Query()
  191. extern void Uri_get_Query_m17DEC663263C486C8C8177AF9C4BFE2FFBE51178 (void);
  192. // 0x0000005D System.String System.Uri::get_Fragment()
  193. extern void Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835 (void);
  194. // 0x0000005E System.String System.Uri::get_Scheme()
  195. extern void Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F (void);
  196. // 0x0000005F System.Boolean System.Uri::get_OriginalStringSwitched()
  197. extern void Uri_get_OriginalStringSwitched_mBE7152D5DA7A1D922B728B9EA8C64815B0469FB7 (void);
  198. // 0x00000060 System.String System.Uri::get_OriginalString()
  199. extern void Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6 (void);
  200. // 0x00000061 System.String System.Uri::get_DnsSafeHost()
  201. extern void Uri_get_DnsSafeHost_mE5001E7AE7F1879A2059024EA06C9031F6320A2B (void);
  202. // 0x00000062 System.Boolean System.Uri::get_IsAbsoluteUri()
  203. extern void Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF (void);
  204. // 0x00000063 System.Boolean System.Uri::get_UserEscaped()
  205. extern void Uri_get_UserEscaped_m5A376B8E2DDB815CAA2E34AF8890FBA943DC2085 (void);
  206. // 0x00000064 System.String System.Uri::get_UserInfo()
  207. extern void Uri_get_UserInfo_mC0189C851F71ACF0B48A462E74C7F3EB86501C8D (void);
  208. // 0x00000065 System.Boolean System.Uri::IsGenDelim(System.Char)
  209. extern void Uri_IsGenDelim_mED487423251FBC7A3AA85A70023D531DED88B0D3 (void);
  210. // 0x00000066 System.Boolean System.Uri::IsHexDigit(System.Char)
  211. extern void Uri_IsHexDigit_m89270CD137F8D5AAC9953CB367BF194D0D0EEDBC (void);
  212. // 0x00000067 System.Int32 System.Uri::FromHex(System.Char)
  213. extern void Uri_FromHex_m30578BD6ADBA0FE875257A8296ED979DC7849020 (void);
  214. // 0x00000068 System.Int32 System.Uri::GetHashCode()
  215. extern void Uri_GetHashCode_m41959A208E51019C57C20014B2505993FB94B70C (void);
  216. // 0x00000069 System.String System.Uri::ToString()
  217. extern void Uri_ToString_mDD98375BF8CEBEF6E3708BBCA6C4AB0B54165DA2 (void);
  218. // 0x0000006A System.Boolean System.Uri::op_Equality(System.Uri,System.Uri)
  219. extern void Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194 (void);
  220. // 0x0000006B System.Boolean System.Uri::op_Inequality(System.Uri,System.Uri)
  221. extern void Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7 (void);
  222. // 0x0000006C System.Boolean System.Uri::Equals(System.Object)
  223. extern void Uri_Equals_m1BD19791DD8A42FEFF5844C29623626C2849C452 (void);
  224. // 0x0000006D System.ParsingError System.Uri::ParseScheme(System.String,System.Uri/Flags&,System.UriParser&)
  225. extern void Uri_ParseScheme_m8E14D8CA20935DF4A14DC0C7DFE2330C734F1AD6 (void);
  226. // 0x0000006E System.UriFormatException System.Uri::ParseMinimal()
  227. extern void Uri_ParseMinimal_m24D824EC77216C64F4B8B9175915CD6C3C6DB7B5 (void);
  228. // 0x0000006F System.ParsingError System.Uri::PrivateParseMinimal()
  229. extern void Uri_PrivateParseMinimal_m4D4C3CB26AC0DE8B0E1F7DC4143F2004D9D25B17 (void);
  230. // 0x00000070 System.Void System.Uri::PrivateParseMinimalIri(System.String,System.UInt16)
  231. extern void Uri_PrivateParseMinimalIri_mD8C7CA7EE14D994E915B48FB6A2CDE62253D4F1E (void);
  232. // 0x00000071 System.Void System.Uri::CreateUriInfo(System.Uri/Flags)
  233. extern void Uri_CreateUriInfo_m3B4F804AB6CB010246F2A52F123D6E44DECDE998 (void);
  234. // 0x00000072 System.Void System.Uri::CreateHostString()
  235. extern void Uri_CreateHostString_mBBAF0ACD4E2EE673F8F7F4E416D87517D94245CF (void);
  236. // 0x00000073 System.String System.Uri::CreateHostStringHelper(System.String,System.UInt16,System.UInt16,System.Uri/Flags&,System.String&)
  237. extern void Uri_CreateHostStringHelper_m196C6DAB9F26F08459220AC87C0A74785A61E9C3 (void);
  238. // 0x00000074 System.Void System.Uri::GetHostViaCustomSyntax()
  239. extern void Uri_GetHostViaCustomSyntax_m6632DAD1F66901E82C60A47D626A9140A586C802 (void);
  240. // 0x00000075 System.String System.Uri::GetParts(System.UriComponents,System.UriFormat)
  241. extern void Uri_GetParts_m432C93EAC8684C7410585D36DA00B04F6DC34357 (void);
  242. // 0x00000076 System.String System.Uri::GetEscapedParts(System.UriComponents)
  243. extern void Uri_GetEscapedParts_m0C33275AFEA210E5CAD22649E8B61B49FB43971E (void);
  244. // 0x00000077 System.String System.Uri::GetUnescapedParts(System.UriComponents,System.UriFormat)
  245. extern void Uri_GetUnescapedParts_m57F83B75B05C5D8EAB6B8ACCB6C8E4F0922CB7ED (void);
  246. // 0x00000078 System.String System.Uri::ReCreateParts(System.UriComponents,System.UInt16,System.UriFormat)
  247. extern void Uri_ReCreateParts_mB622FFDF74676902D184FD96C4E6B740B65140AF (void);
  248. // 0x00000079 System.String System.Uri::GetUriPartsFromUserString(System.UriComponents)
  249. extern void Uri_GetUriPartsFromUserString_m3D6EEB76609CCC54A0ABE65911CC24603A184B29 (void);
  250. // 0x0000007A System.Void System.Uri::ParseRemaining()
  251. extern void Uri_ParseRemaining_m9134D26360C9EEDFAFAFEE1ECA1A5CEE66BE5A3A (void);
  252. // 0x0000007B System.UInt16 System.Uri::ParseSchemeCheckImplicitFile(System.Char*,System.UInt16,System.ParsingError&,System.Uri/Flags&,System.UriParser&)
  253. extern void Uri_ParseSchemeCheckImplicitFile_m3577C77315714DF277763F7DE3BAAD8D94D2CA93 (void);
  254. // 0x0000007C System.Boolean System.Uri::CheckKnownSchemes(System.Int64*,System.UInt16,System.UriParser&)
  255. extern void Uri_CheckKnownSchemes_m598B70C53F57AB20E2406763BAA5636A3B57195A (void);
  256. // 0x0000007D System.ParsingError System.Uri::CheckSchemeSyntax(System.Char*,System.UInt16,System.UriParser&)
  257. extern void Uri_CheckSchemeSyntax_m37B81B236F58066982C17FF76058B3ECB0740647 (void);
  258. // 0x0000007E System.UInt16 System.Uri::CheckAuthorityHelper(System.Char*,System.UInt16,System.UInt16,System.ParsingError&,System.Uri/Flags&,System.UriParser,System.String&)
  259. extern void Uri_CheckAuthorityHelper_m7946931160B7EC50E7167A11E570A4AF8AEB5B2E (void);
  260. // 0x0000007F System.Void System.Uri::CheckAuthorityHelperHandleDnsIri(System.Char*,System.UInt16,System.Int32,System.Int32,System.Boolean,System.Boolean,System.UriParser,System.String,System.Uri/Flags&,System.Boolean&,System.String&,System.ParsingError&)
  261. extern void Uri_CheckAuthorityHelperHandleDnsIri_mB737EC35D3A477668E6E289D09DFB43EAD4D4D62 (void);
  262. // 0x00000080 System.Void System.Uri::CheckAuthorityHelperHandleAnyHostIri(System.Char*,System.Int32,System.Int32,System.Boolean,System.Boolean,System.UriParser,System.Uri/Flags&,System.String&,System.ParsingError&)
  263. extern void Uri_CheckAuthorityHelperHandleAnyHostIri_mE38845CEFA41AB52AB949CAE2A43D77FB397C08D (void);
  264. // 0x00000081 System.Void System.Uri::FindEndOfComponent(System.String,System.UInt16&,System.UInt16,System.Char)
  265. extern void Uri_FindEndOfComponent_m59CB1EFDA410B42014EA7DCDBA0C9FC9F5996E02 (void);
  266. // 0x00000082 System.Void System.Uri::FindEndOfComponent(System.Char*,System.UInt16&,System.UInt16,System.Char)
  267. extern void Uri_FindEndOfComponent_m198F7AC80BEA08E8DAA6B4577D8A872B41C519B1 (void);
  268. // 0x00000083 System.Uri/Check System.Uri::CheckCanonical(System.Char*,System.UInt16&,System.UInt16,System.Char)
  269. extern void Uri_CheckCanonical_m54AFA85AA00A9909C2EC01F026873F12532AD7F7 (void);
  270. // 0x00000084 System.Char[] System.Uri::GetCanonicalPath(System.Char[],System.Int32&,System.UriFormat)
  271. extern void Uri_GetCanonicalPath_m66FA22F6E85D79E360A7EE86C0E03F1A009F6F99 (void);
  272. // 0x00000085 System.Void System.Uri::UnescapeOnly(System.Char*,System.Int32,System.Int32&,System.Char,System.Char,System.Char)
  273. extern void Uri_UnescapeOnly_mBED4CBBC30D19BA6BA801BCF9B33CD681771102B (void);
  274. // 0x00000086 System.Char[] System.Uri::Compress(System.Char[],System.UInt16,System.Int32&,System.UriParser)
  275. extern void Uri_Compress_m22981FC433505DEE0F230312B93B062096607CCD (void);
  276. // 0x00000087 System.Int32 System.Uri::CalculateCaseInsensitiveHashCode(System.String)
  277. extern void Uri_CalculateCaseInsensitiveHashCode_m635E27F73B39946637685A19CD09741D14A359EE (void);
  278. // 0x00000088 System.String System.Uri::CombineUri(System.Uri,System.String,System.UriFormat)
  279. extern void Uri_CombineUri_m92FB418ECA7D55262958241C8A274715C58C6424 (void);
  280. // 0x00000089 System.Boolean System.Uri::get_HasAuthority()
  281. extern void Uri_get_HasAuthority_m2180FC17FB6FE7A11EBA0BDE1EF5EB9EF808A909 (void);
  282. // 0x0000008A System.Boolean System.Uri::IsLWS(System.Char)
  283. extern void Uri_IsLWS_mE00B6D5A24D07A5EA80278F981F1516343C0846D (void);
  284. // 0x0000008B System.Boolean System.Uri::IsAsciiLetter(System.Char)
  285. extern void Uri_IsAsciiLetter_m54D66D3D390C364A49529D304526152E2339A140 (void);
  286. // 0x0000008C System.Boolean System.Uri::IsAsciiLetterOrDigit(System.Char)
  287. extern void Uri_IsAsciiLetterOrDigit_m9033B2053D679076DEADF04748CE5E983B25A9E0 (void);
  288. // 0x0000008D System.Boolean System.Uri::IsBidiControlCharacter(System.Char)
  289. extern void Uri_IsBidiControlCharacter_m37BFE363354928FB34D016950008D1FB29DFBB0F (void);
  290. // 0x0000008E System.String System.Uri::StripBidiControlCharacter(System.Char*,System.Int32,System.Int32)
  291. extern void Uri_StripBidiControlCharacter_mB8C52362A2A248EB33737D1A4792B3FB57975912 (void);
  292. // 0x0000008F System.Void System.Uri::CreateThis(System.String,System.Boolean,System.UriKind)
  293. extern void Uri_CreateThis_m522F36D576D9A8803410439127DB32837331BA3A (void);
  294. // 0x00000090 System.Void System.Uri::InitializeUri(System.ParsingError,System.UriKind,System.UriFormatException&)
  295. extern void Uri_InitializeUri_m044EA7C6188B132874B4522D5CA41EEFDB9A1718 (void);
  296. // 0x00000091 System.Boolean System.Uri::CheckForConfigLoad(System.String)
  297. extern void Uri_CheckForConfigLoad_mC7297EBC00884B1793FDB16F79BF0FCFD53E9FA7 (void);
  298. // 0x00000092 System.Boolean System.Uri::CheckForUnicode(System.String)
  299. extern void Uri_CheckForUnicode_mC763EF0DDC61EE359A6256B95209736EC0353AA1 (void);
  300. // 0x00000093 System.Boolean System.Uri::CheckForEscapedUnreserved(System.String)
  301. extern void Uri_CheckForEscapedUnreserved_mCEF702F733C72BE825E9FEBBEA751540A6A78D11 (void);
  302. // 0x00000094 System.Boolean System.Uri::TryCreate(System.String,System.UriKind,System.Uri&)
  303. extern void Uri_TryCreate_m183077985BD7B1BE8DBDBCC4604F775C44723EC9 (void);
  304. // 0x00000095 System.String System.Uri::GetComponents(System.UriComponents,System.UriFormat)
  305. extern void Uri_GetComponents_m30E3EAD4E9A39939456E764FEF94AFD4D6B7532A (void);
  306. // 0x00000096 System.String System.Uri::UnescapeDataString(System.String)
  307. extern void Uri_UnescapeDataString_m095AF55EE0F237A44FC8A53D2EE6FA66A567634D (void);
  308. // 0x00000097 System.String System.Uri::EscapeUnescapeIri(System.String,System.Int32,System.Int32,System.UriComponents)
  309. extern void Uri_EscapeUnescapeIri_m14C0CD1A4C14E2458685E5A10049204B1A15C16C (void);
  310. // 0x00000098 System.Void System.Uri::.ctor(System.Uri/Flags,System.UriParser,System.String)
  311. extern void Uri__ctor_m6EA3AF49C103A3D56EBBB24BCAEE8DE7E8676AF4 (void);
  312. // 0x00000099 System.Uri System.Uri::CreateHelper(System.String,System.Boolean,System.UriKind,System.UriFormatException&)
  313. extern void Uri_CreateHelper_mB015D0E87C2F9401D7C9B929C194AA5E432DA224 (void);
  314. // 0x0000009A System.Uri System.Uri::ResolveHelper(System.Uri,System.Uri,System.String&,System.Boolean&,System.UriFormatException&)
  315. extern void Uri_ResolveHelper_mCF316B7B35401CFE251F64CCE66AF24F687E7E04 (void);
  316. // 0x0000009B System.String System.Uri::GetRelativeSerializationString(System.UriFormat)
  317. extern void Uri_GetRelativeSerializationString_mDEB0AD1094EC2842C2F0830C1E43FF2FFDEB6F5B (void);
  318. // 0x0000009C System.String System.Uri::GetComponentsHelper(System.UriComponents,System.UriFormat)
  319. extern void Uri_GetComponentsHelper_m83D8E4A027E180AFB34BA5290A8FF381EBCBCB75 (void);
  320. // 0x0000009D System.Void System.Uri::CreateThisFromUri(System.Uri)
  321. extern void Uri_CreateThisFromUri_m986BB8F1CF8D75EEFA12D9D0963BA927FA394BE5 (void);
  322. // 0x0000009E System.Void System.Uri::.cctor()
  323. extern void Uri__cctor_mF9A6F75B43C4652D9B89180A998B3D86B61F5594 (void);
  324. // 0x0000009F System.Void System.Uri/UriInfo::.ctor()
  325. extern void UriInfo__ctor_m88A6E3E7164B78B18C70D83CA5AD734517D308B3 (void);
  326. // 0x000000A0 System.Void System.Uri/MoreInfo::.ctor()
  327. extern void MoreInfo__ctor_m4AC1286A4D4DAD0AB0EE99A2C952D54BFA5F44A7 (void);
  328. // 0x000000A1 System.Void System.UriFormatException::.ctor()
  329. extern void UriFormatException__ctor_m4D218C92C093CD0CDDDC012911A1E10CB327BB70 (void);
  330. // 0x000000A2 System.Void System.UriFormatException::.ctor(System.String)
  331. extern void UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3 (void);
  332. // 0x000000A3 System.Void System.UriFormatException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  333. extern void UriFormatException__ctor_m15F8C1205D9A648F72DD5D94DB92FD1FA1397FE0 (void);
  334. // 0x000000A4 System.Void System.UriFormatException::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  335. extern void UriFormatException_System_Runtime_Serialization_ISerializable_GetObjectData_mF5C6CA057915A5F7F4E9D8FBE5D6EB2595A4FD80 (void);
  336. // 0x000000A5 System.Char[] System.UriHelper::EscapeString(System.String,System.Int32,System.Int32,System.Char[],System.Int32&,System.Boolean,System.Char,System.Char,System.Char)
  337. extern void UriHelper_EscapeString_mA9075A39AFEE45E310AA6E2977B46D74F2FE38D3 (void);
  338. // 0x000000A6 System.Char[] System.UriHelper::EnsureDestinationSize(System.Char*,System.Char[],System.Int32,System.Int16,System.Int16,System.Int32&,System.Int32)
  339. extern void UriHelper_EnsureDestinationSize_m0A91CAD854571386F0490A975BA25CEEA93614C0 (void);
  340. // 0x000000A7 System.Char[] System.UriHelper::UnescapeString(System.String,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean)
  341. extern void UriHelper_UnescapeString_m37D24870CC3AF00984435A567B7AB28E7225D7B3 (void);
  342. // 0x000000A8 System.Char[] System.UriHelper::UnescapeString(System.Char*,System.Int32,System.Int32,System.Char[],System.Int32&,System.Char,System.Char,System.Char,System.UnescapeMode,System.UriParser,System.Boolean)
  343. extern void UriHelper_UnescapeString_mAB62B336BC58C7697B4CA7355405F3C1FDBBB7E0 (void);
  344. // 0x000000A9 System.Void System.UriHelper::MatchUTF8Sequence(System.Char*,System.Char[],System.Int32&,System.Char[],System.Int32,System.Byte[],System.Int32,System.Boolean,System.Boolean)
  345. extern void UriHelper_MatchUTF8Sequence_mD118AEEE32C6BCBA4ED2E41E2B008EB83412D54B (void);
  346. // 0x000000AA System.Void System.UriHelper::EscapeAsciiChar(System.Char,System.Char[],System.Int32&)
  347. extern void UriHelper_EscapeAsciiChar_mFA21BF7A2306446A8E552111DA06160A41CD07D1 (void);
  348. // 0x000000AB System.Char System.UriHelper::EscapedAscii(System.Char,System.Char)
  349. extern void UriHelper_EscapedAscii_m93D49C2D42E1E5E292199FACF5B4D6CC770D3DA1 (void);
  350. // 0x000000AC System.Boolean System.UriHelper::IsNotSafeForUnescape(System.Char)
  351. extern void UriHelper_IsNotSafeForUnescape_m79864E996F8F46D4A1C00B965E2EB4EE7AFE63ED (void);
  352. // 0x000000AD System.Boolean System.UriHelper::IsReservedUnreservedOrHash(System.Char)
  353. extern void UriHelper_IsReservedUnreservedOrHash_m7B622D953837E4F0FEF44B114718B75B846512A1 (void);
  354. // 0x000000AE System.Boolean System.UriHelper::IsUnreserved(System.Char)
  355. extern void UriHelper_IsUnreserved_mED7CF4BB5F43C337685396D5F99D7EFABAD5E5C9 (void);
  356. // 0x000000AF System.Boolean System.UriHelper::Is3986Unreserved(System.Char)
  357. extern void UriHelper_Is3986Unreserved_mCDBDBB83B68181182A6AD07747084B3204C7BDCA (void);
  358. // 0x000000B0 System.Void System.UriHelper::.cctor()
  359. extern void UriHelper__cctor_mB25AC23398D53149F4C33FB739BC6010324D0D81 (void);
  360. // 0x000000B1 System.String System.UriParser::get_SchemeName()
  361. extern void UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D (void);
  362. // 0x000000B2 System.Int32 System.UriParser::get_DefaultPort()
  363. extern void UriParser_get_DefaultPort_m38684C86B40F59960533D8F812B311ACBBEB7AA5 (void);
  364. // 0x000000B3 System.UriParser System.UriParser::OnNewUri()
  365. extern void UriParser_OnNewUri_m752BC0174A2E3F7AA99F1088E1D539E5B8F7B5B2 (void);
  366. // 0x000000B4 System.Void System.UriParser::InitializeAndValidate(System.Uri,System.UriFormatException&)
  367. extern void UriParser_InitializeAndValidate_m5B38A10B57DC49B1CE13F361ABD78D7269EDA886 (void);
  368. // 0x000000B5 System.String System.UriParser::Resolve(System.Uri,System.Uri,System.UriFormatException&)
  369. extern void UriParser_Resolve_m7CC03524A2848FBD24BAB57CC62A19C751937182 (void);
  370. // 0x000000B6 System.String System.UriParser::GetComponents(System.Uri,System.UriComponents,System.UriFormat)
  371. extern void UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF (void);
  372. // 0x000000B7 System.Boolean System.UriParser::get_ShouldUseLegacyV2Quirks()
  373. extern void UriParser_get_ShouldUseLegacyV2Quirks_m8EC9AB4BB2AD4FAAC4CD7C921C7A61AA4FC914D2 (void);
  374. // 0x000000B8 System.Void System.UriParser::.cctor()
  375. extern void UriParser__cctor_m0F0B1F5441AF97DDBE797061C6CABA2CD4CDBE69 (void);
  376. // 0x000000B9 System.UriSyntaxFlags System.UriParser::get_Flags()
  377. extern void UriParser_get_Flags_mBE183D7CBEEEBEC670CCF1DF21D56B354796D6C3 (void);
  378. // 0x000000BA System.Boolean System.UriParser::NotAny(System.UriSyntaxFlags)
  379. extern void UriParser_NotAny_mCE6CF6736414BE547215F6E44C3E1283DEA05F56 (void);
  380. // 0x000000BB System.Boolean System.UriParser::InFact(System.UriSyntaxFlags)
  381. extern void UriParser_InFact_m3C07C3050DE1E69F6B0BC816EC34AF610373E532 (void);
  382. // 0x000000BC System.Boolean System.UriParser::IsAllSet(System.UriSyntaxFlags)
  383. extern void UriParser_IsAllSet_mEE811F1E7BBCC34D7A32BC30A18AD5D34E690813 (void);
  384. // 0x000000BD System.Boolean System.UriParser::IsFullMatch(System.UriSyntaxFlags,System.UriSyntaxFlags)
  385. extern void UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550 (void);
  386. // 0x000000BE System.Void System.UriParser::.ctor(System.UriSyntaxFlags)
  387. extern void UriParser__ctor_m4FA54685DFA00FC6AEA73E94CD59C5FF2872E55A (void);
  388. // 0x000000BF System.UriParser System.UriParser::FindOrFetchAsUnknownV1Syntax(System.String)
  389. extern void UriParser_FindOrFetchAsUnknownV1Syntax_m780CA32D27A4F1D8B7798FC4D3CC28A6FC4ACCE0 (void);
  390. // 0x000000C0 System.UriParser System.UriParser::GetSyntax(System.String)
  391. extern void UriParser_GetSyntax_mEAED92E4DCA23EA5240B39CD1165F450374A0A57 (void);
  392. // 0x000000C1 System.Boolean System.UriParser::get_IsSimple()
  393. extern void UriParser_get_IsSimple_m8ED850D585BA3BA0FDC239496065E6D2D973C7E5 (void);
  394. // 0x000000C2 System.UriParser System.UriParser::InternalOnNewUri()
  395. extern void UriParser_InternalOnNewUri_m93B84E04949FAE8FE3B6919DA9F933B682D4B2F8 (void);
  396. // 0x000000C3 System.Void System.UriParser::InternalValidate(System.Uri,System.UriFormatException&)
  397. extern void UriParser_InternalValidate_m69157B3E80381F3FC104788160F2213B3FE8F39D (void);
  398. // 0x000000C4 System.String System.UriParser::InternalResolve(System.Uri,System.Uri,System.UriFormatException&)
  399. extern void UriParser_InternalResolve_mD1963080EBCF493DA78656AA5AEA458BF5138F5B (void);
  400. // 0x000000C5 System.String System.UriParser::InternalGetComponents(System.Uri,System.UriComponents,System.UriFormat)
  401. extern void UriParser_InternalGetComponents_m52F450C5283A1820D5AFD07505E5FE82D4F476B0 (void);
  402. // 0x000000C6 System.Void System.UriParser/BuiltInUriParser::.ctor(System.String,System.Int32,System.UriSyntaxFlags)
  403. extern void BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79 (void);
  404. // 0x000000C7 System.String System.DomainNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
  405. extern void DomainNameHelper_ParseCanonicalName_mCDD58AA526B15176E4468ABA169068B279F3817F (void);
  406. // 0x000000C8 System.Boolean System.DomainNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean)
  407. extern void DomainNameHelper_IsValid_mD977C4425926C44931F21A478C861D1041AF5B67 (void);
  408. // 0x000000C9 System.Boolean System.DomainNameHelper::IsValidByIri(System.Char*,System.UInt16,System.Int32&,System.Boolean&,System.Boolean)
  409. extern void DomainNameHelper_IsValidByIri_m94490F7D0A09B0C35C89E2CD478B935EECEC5F96 (void);
  410. // 0x000000CA System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
  411. extern void DomainNameHelper_IdnEquivalent_m797D2222F0F6786FF059095B73ACF47A3374E8DC (void);
  412. // 0x000000CB System.String System.DomainNameHelper::IdnEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.String&)
  413. extern void DomainNameHelper_IdnEquivalent_mEFD473FCBC1D7F515577673838569560777F5D2B (void);
  414. // 0x000000CC System.Boolean System.DomainNameHelper::IsIdnAce(System.String,System.Int32)
  415. extern void DomainNameHelper_IsIdnAce_m95A0515B49C9679EE331F830D05C2C12853919BC (void);
  416. // 0x000000CD System.Boolean System.DomainNameHelper::IsIdnAce(System.Char*,System.Int32)
  417. extern void DomainNameHelper_IsIdnAce_mC02E0A64A83B0C99CF26AD5D49AA541E33143947 (void);
  418. // 0x000000CE System.String System.DomainNameHelper::UnicodeEquivalent(System.String,System.Char*,System.Int32,System.Int32)
  419. extern void DomainNameHelper_UnicodeEquivalent_m390DFCD943A3716158026F5E1AF6558E56461F12 (void);
  420. // 0x000000CF System.String System.DomainNameHelper::UnicodeEquivalent(System.Char*,System.Int32,System.Int32,System.Boolean&,System.Boolean&)
  421. extern void DomainNameHelper_UnicodeEquivalent_m9C7E79F0172D7AC0DEF7FC5236F1B9766C735517 (void);
  422. // 0x000000D0 System.Boolean System.DomainNameHelper::IsASCIILetterOrDigit(System.Char,System.Boolean&)
  423. extern void DomainNameHelper_IsASCIILetterOrDigit_m5C30C4CDEF0ECE647B2C5E714A595B08A8009B3A (void);
  424. // 0x000000D1 System.Boolean System.DomainNameHelper::IsValidDomainLabelCharacter(System.Char,System.Boolean&)
  425. extern void DomainNameHelper_IsValidDomainLabelCharacter_m9BBE29F6DEACCA6864574A1B6C8BCBE6732BF5CF (void);
  426. // 0x000000D2 System.String System.UncNameHelper::ParseCanonicalName(System.String,System.Int32,System.Int32,System.Boolean&)
  427. extern void UncNameHelper_ParseCanonicalName_m938F53305ABCF1840011969B589F0D53A1028C79 (void);
  428. // 0x000000D3 System.Boolean System.UncNameHelper::IsValid(System.Char*,System.UInt16,System.Int32&,System.Boolean)
  429. extern void UncNameHelper_IsValid_mCF30A9D7038A73997B8B198D7EB606B171E00526 (void);
  430. // 0x000000D4 System.Void System.IOAsyncCallback::.ctor(System.Object,System.IntPtr)
  431. extern void IOAsyncCallback__ctor_m58A7C732444005CB72C5B352096C2DB252A6F113 (void);
  432. // 0x000000D5 System.Void System.IOAsyncCallback::Invoke(System.IOAsyncResult)
  433. extern void IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2 (void);
  434. // 0x000000D6 System.Void System.UriTypeConverter::.ctor()
  435. extern void UriTypeConverter__ctor_m02CB01E1305031BE5A45FB54601E520748B6EDB6 (void);
  436. // 0x000000D7 System.Boolean System.UriTypeConverter::CanConvert(System.Type)
  437. extern void UriTypeConverter_CanConvert_m970377ED30FF1B6875CCDA64FDC87EFE7D381DE3 (void);
  438. // 0x000000D8 System.Void System.Threading.Semaphore::.ctor(System.Int32,System.Int32)
  439. extern void Semaphore__ctor_m5954C9FB5ED41FD527888AA96F28398DBCAFA237 (void);
  440. // 0x000000D9 System.Void System.Threading.Semaphore::.ctor(System.Int32,System.Int32,System.String)
  441. extern void Semaphore__ctor_m21267A4125BC0EBE8EE42B35C6D0032F5976CB03 (void);
  442. // 0x000000DA System.Int32 System.Threading.Semaphore::Release()
  443. extern void Semaphore_Release_m3AA41CBF1DEA03948FD56E47B5E05A68F43A7A94 (void);
  444. // 0x000000DB System.Int32 System.Threading.Semaphore::Release(System.Int32)
  445. extern void Semaphore_Release_m69BEC06D53D264DAF55DC483D40AA15DE6CC6374 (void);
  446. // 0x000000DC System.IntPtr System.Threading.Semaphore::CreateSemaphore_internal(System.Int32,System.Int32,System.String,System.Int32&)
  447. extern void Semaphore_CreateSemaphore_internal_m4C9C25F3F249CC713125E14D94657E3C115C69D0 (void);
  448. // 0x000000DD System.IntPtr System.Threading.Semaphore::CreateSemaphore_icall(System.Int32,System.Int32,System.Char*,System.Int32,System.Int32&)
  449. extern void Semaphore_CreateSemaphore_icall_m9AB21A1FED62E361BA94EC9AE2938EB0986EF2D8 (void);
  450. // 0x000000DE System.Boolean System.Threading.Semaphore::ReleaseSemaphore_internal(System.IntPtr,System.Int32,System.Int32&)
  451. extern void Semaphore_ReleaseSemaphore_internal_m6AD8D5EEBC935B1D85C1F29D383F63BD8C49756E (void);
  452. // 0x000000DF System.Void System.Text.RegularExpressions.Capture::.ctor(System.String,System.Int32,System.Int32)
  453. extern void Capture__ctor_mDC1197B1E29487F3D086091CF3D5B1029D593402 (void);
  454. // 0x000000E0 System.Int32 System.Text.RegularExpressions.Capture::get_Index()
  455. extern void Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A (void);
  456. // 0x000000E1 System.Void System.Text.RegularExpressions.Capture::set_Index(System.Int32)
  457. extern void Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE (void);
  458. // 0x000000E2 System.Int32 System.Text.RegularExpressions.Capture::get_Length()
  459. extern void Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92 (void);
  460. // 0x000000E3 System.Void System.Text.RegularExpressions.Capture::set_Length(System.Int32)
  461. extern void Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E (void);
  462. // 0x000000E4 System.String System.Text.RegularExpressions.Capture::get_Text()
  463. extern void Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED (void);
  464. // 0x000000E5 System.Void System.Text.RegularExpressions.Capture::set_Text(System.String)
  465. extern void Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C (void);
  466. // 0x000000E6 System.String System.Text.RegularExpressions.Capture::get_Value()
  467. extern void Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC (void);
  468. // 0x000000E7 System.String System.Text.RegularExpressions.Capture::ToString()
  469. extern void Capture_ToString_mC843EDDC990DBE2696BA08D08B1081CA12228F2C (void);
  470. // 0x000000E8 System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Capture::GetLeftSubstring()
  471. extern void Capture_GetLeftSubstring_mBFF01B80F38DA0FF4E56EFEF9FD9EE8899AE57DC (void);
  472. // 0x000000E9 System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Capture::GetRightSubstring()
  473. extern void Capture_GetRightSubstring_m1F1F896A999BC08AEEBD1BB28616F12FC593D1C3 (void);
  474. // 0x000000EA System.Void System.Text.RegularExpressions.Group::.ctor(System.String,System.Int32[],System.Int32,System.String)
  475. extern void Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C (void);
  476. // 0x000000EB System.Boolean System.Text.RegularExpressions.Group::get_Success()
  477. extern void Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F (void);
  478. // 0x000000EC System.Void System.Text.RegularExpressions.Group::.cctor()
  479. extern void Group__cctor_mCEC94034CDEE90B4E5B77AE639965DA426C49161 (void);
  480. // 0x000000ED System.Void System.Text.RegularExpressions.Group::.ctor()
  481. extern void Group__ctor_mEB6936CDFD191A4C92766CE3F3301161D7505C5E (void);
  482. // 0x000000EE System.Void System.Text.RegularExpressions.GroupCollection::.ctor(System.Text.RegularExpressions.Match,System.Collections.Hashtable)
  483. extern void GroupCollection__ctor_m70201F22BBECA6AE7E6132AB9629B24EA458A7D2 (void);
  484. // 0x000000EF System.Boolean System.Text.RegularExpressions.GroupCollection::get_IsReadOnly()
  485. extern void GroupCollection_get_IsReadOnly_mF1DE2BBB4E573C6EDE85B787281F90951AAB8C4A (void);
  486. // 0x000000F0 System.Int32 System.Text.RegularExpressions.GroupCollection::get_Count()
  487. extern void GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39 (void);
  488. // 0x000000F1 System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::get_Item(System.Int32)
  489. extern void GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3 (void);
  490. // 0x000000F2 System.Collections.IEnumerator System.Text.RegularExpressions.GroupCollection::GetEnumerator()
  491. extern void GroupCollection_GetEnumerator_m47E269C5A8C902948812AF4F52D0C96759550EE9 (void);
  492. // 0x000000F3 System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Group> System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IEnumerable<System.Text.RegularExpressions.Group>.GetEnumerator()
  493. extern void GroupCollection_System_Collections_Generic_IEnumerableU3CSystem_Text_RegularExpressions_GroupU3E_GetEnumerator_m593F2B44A71E46606D2E8C0816E626675EE2087D (void);
  494. // 0x000000F4 System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroup(System.Int32)
  495. extern void GroupCollection_GetGroup_m8EDFDB8D85D8BEC6EB98B68CA69EE0022FC16B13 (void);
  496. // 0x000000F5 System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::GetGroupImpl(System.Int32)
  497. extern void GroupCollection_GetGroupImpl_m27CE16949BE0A9CFC61CC6CBF3FB179F63654D92 (void);
  498. // 0x000000F6 System.Boolean System.Text.RegularExpressions.GroupCollection::get_IsSynchronized()
  499. extern void GroupCollection_get_IsSynchronized_m31D8770968C4D1322FBD2572204C74F978ED7DA3 (void);
  500. // 0x000000F7 System.Object System.Text.RegularExpressions.GroupCollection::get_SyncRoot()
  501. extern void GroupCollection_get_SyncRoot_m7505B29FFFE40E5319BAD3F3B3332F8A6299570A (void);
  502. // 0x000000F8 System.Void System.Text.RegularExpressions.GroupCollection::CopyTo(System.Array,System.Int32)
  503. extern void GroupCollection_CopyTo_m122BEB82372AC34C575FCB8C71188A2A49CCC482 (void);
  504. // 0x000000F9 System.Void System.Text.RegularExpressions.GroupCollection::CopyTo(System.Text.RegularExpressions.Group[],System.Int32)
  505. extern void GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A (void);
  506. // 0x000000FA System.Int32 System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.IndexOf(System.Text.RegularExpressions.Group)
  507. extern void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_IndexOf_m63AB69A8D37D49B1AFFE8CDEED6442D25A25F94A (void);
  508. // 0x000000FB System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.Insert(System.Int32,System.Text.RegularExpressions.Group)
  509. extern void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_Insert_m515A74F3095C972A28657B89FE6B65A3EC5324FA (void);
  510. // 0x000000FC System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.RemoveAt(System.Int32)
  511. extern void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_RemoveAt_m981151BB2C68E7F2DC0BF4DD61D4AD4AB5B5AE3A (void);
  512. // 0x000000FD System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.get_Item(System.Int32)
  513. extern void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_get_Item_m7FD6BE83AFD3DCC2F9ABB2AB4B938F552DF1D45D (void);
  514. // 0x000000FE System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Group>.set_Item(System.Int32,System.Text.RegularExpressions.Group)
  515. extern void GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_set_Item_mB5DBB39B4E6F360B8105064E6659EFC49E8B1C85 (void);
  516. // 0x000000FF System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Add(System.Text.RegularExpressions.Group)
  517. extern void GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Add_m96D9B7FCEC33784ED88BAC3C291146E64A921D8D (void);
  518. // 0x00000100 System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Clear()
  519. extern void GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Clear_m67DAFAB787617D8A9B720AAF612436587E2C3172 (void);
  520. // 0x00000101 System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Contains(System.Text.RegularExpressions.Group)
  521. extern void GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Contains_m260CC86A4FD94F5682B73C9C8BE03551C14B3568 (void);
  522. // 0x00000102 System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Group>.Remove(System.Text.RegularExpressions.Group)
  523. extern void GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Remove_m008F559DB848823129DDCB7B832C731F0D4AFF83 (void);
  524. // 0x00000103 System.Int32 System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Add(System.Object)
  525. extern void GroupCollection_System_Collections_IList_Add_m08D9178D05AE66397CBCF2184448AE712741E4D1 (void);
  526. // 0x00000104 System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Clear()
  527. extern void GroupCollection_System_Collections_IList_Clear_mCFF90C2303D7106D722E8B574ED3261C80F250CE (void);
  528. // 0x00000105 System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Contains(System.Object)
  529. extern void GroupCollection_System_Collections_IList_Contains_m9E34B033D0BB903B2491336D7F70BE5A59D46208 (void);
  530. // 0x00000106 System.Int32 System.Text.RegularExpressions.GroupCollection::System.Collections.IList.IndexOf(System.Object)
  531. extern void GroupCollection_System_Collections_IList_IndexOf_mA974FC7CFC23310A1CAAD8A750823D5E0ED762AC (void);
  532. // 0x00000107 System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Insert(System.Int32,System.Object)
  533. extern void GroupCollection_System_Collections_IList_Insert_m3CDAAB43F292FD0ABD2D9595F02233FB55577623 (void);
  534. // 0x00000108 System.Boolean System.Text.RegularExpressions.GroupCollection::System.Collections.IList.get_IsFixedSize()
  535. extern void GroupCollection_System_Collections_IList_get_IsFixedSize_m5AA2CBFB17E2617597BDFBB56CCA1E435A763014 (void);
  536. // 0x00000109 System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.Remove(System.Object)
  537. extern void GroupCollection_System_Collections_IList_Remove_m32982B763D442200E71B8A5E6C85C9501A555F23 (void);
  538. // 0x0000010A System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.RemoveAt(System.Int32)
  539. extern void GroupCollection_System_Collections_IList_RemoveAt_m32BF4A16212F4849AD46F680E5D0D14268CB7C58 (void);
  540. // 0x0000010B System.Object System.Text.RegularExpressions.GroupCollection::System.Collections.IList.get_Item(System.Int32)
  541. extern void GroupCollection_System_Collections_IList_get_Item_m969EA1758BE453F49B700FABF29940C5C9800573 (void);
  542. // 0x0000010C System.Void System.Text.RegularExpressions.GroupCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
  543. extern void GroupCollection_System_Collections_IList_set_Item_mDDFE5D350953DB61758FE64D556670EA5A402C48 (void);
  544. // 0x0000010D System.Void System.Text.RegularExpressions.GroupCollection::.ctor()
  545. extern void GroupCollection__ctor_mB178F93E8DB52AA6412FF28E5FE50943E2BABFFB (void);
  546. // 0x0000010E System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::.ctor(System.Text.RegularExpressions.GroupCollection)
  547. extern void Enumerator__ctor_m17B823D35315CED0509F6B4C5F04C148B9388DDD (void);
  548. // 0x0000010F System.Boolean System.Text.RegularExpressions.GroupCollection/Enumerator::MoveNext()
  549. extern void Enumerator_MoveNext_m1DDDE3FC6B83FF15ED8AA895DE1357C37B7241C5 (void);
  550. // 0x00000110 System.Text.RegularExpressions.Group System.Text.RegularExpressions.GroupCollection/Enumerator::get_Current()
  551. extern void Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43 (void);
  552. // 0x00000111 System.Object System.Text.RegularExpressions.GroupCollection/Enumerator::System.Collections.IEnumerator.get_Current()
  553. extern void Enumerator_System_Collections_IEnumerator_get_Current_m16F94921184B09EDC3D45E9CFE3F3FAA1E5D862D (void);
  554. // 0x00000112 System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::System.Collections.IEnumerator.Reset()
  555. extern void Enumerator_System_Collections_IEnumerator_Reset_m5B7067CCF9E8139F34641618492A2DAACA5419B0 (void);
  556. // 0x00000113 System.Void System.Text.RegularExpressions.GroupCollection/Enumerator::System.IDisposable.Dispose()
  557. extern void Enumerator_System_IDisposable_Dispose_m1C77D8E3DFF1A034E9329E11854F11012F20AA69 (void);
  558. // 0x00000114 System.Void System.Text.RegularExpressions.Match::.ctor(System.Text.RegularExpressions.Regex,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
  559. extern void Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A (void);
  560. // 0x00000115 System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::get_Empty()
  561. extern void Match_get_Empty_m50E10899C5A892532ED484CDA11DE27CC6A7B546 (void);
  562. // 0x00000116 System.Void System.Text.RegularExpressions.Match::Reset(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32)
  563. extern void Match_Reset_m53A78F16760B7CD5CC8A104F6CD95CA255D888AA (void);
  564. // 0x00000117 System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.Match::get_Groups()
  565. extern void Match_get_Groups_mFFA743CDBD78BAD530F2C66FE216C9A5282DA09B (void);
  566. // 0x00000118 System.Text.RegularExpressions.Match System.Text.RegularExpressions.Match::NextMatch()
  567. extern void Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052 (void);
  568. // 0x00000119 System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::GroupToStringImpl(System.Int32)
  569. extern void Match_GroupToStringImpl_mF3F2A3BC4EC33DD1FD35244E2412E05151AF6A1A (void);
  570. // 0x0000011A System.ReadOnlySpan`1<System.Char> System.Text.RegularExpressions.Match::LastGroupToStringImpl()
  571. extern void Match_LastGroupToStringImpl_m78C890F3547E00454BEB81BC939FE680AAEBB29A (void);
  572. // 0x0000011B System.Void System.Text.RegularExpressions.Match::AddMatch(System.Int32,System.Int32,System.Int32)
  573. extern void Match_AddMatch_m5F28F3255C64D67D56C1542CE32A9D324F96780E (void);
  574. // 0x0000011C System.Void System.Text.RegularExpressions.Match::BalanceMatch(System.Int32)
  575. extern void Match_BalanceMatch_m85EA44453E637DEBE24ABC7562BF91EE1222DBFD (void);
  576. // 0x0000011D System.Void System.Text.RegularExpressions.Match::RemoveMatch(System.Int32)
  577. extern void Match_RemoveMatch_m154DB10030027B3738903FFB50DE511D71656B04 (void);
  578. // 0x0000011E System.Boolean System.Text.RegularExpressions.Match::IsMatched(System.Int32)
  579. extern void Match_IsMatched_m9D6E0C0AB1F3E1E8E49E77E3A0A0ECCD7C2C4FBA (void);
  580. // 0x0000011F System.Int32 System.Text.RegularExpressions.Match::MatchIndex(System.Int32)
  581. extern void Match_MatchIndex_m97F06DECDDA8BD3E4D8DF6B9224B8E24C0764F35 (void);
  582. // 0x00000120 System.Int32 System.Text.RegularExpressions.Match::MatchLength(System.Int32)
  583. extern void Match_MatchLength_m5C93EA60B018A79D9D05C8E69D25835848471B01 (void);
  584. // 0x00000121 System.Void System.Text.RegularExpressions.Match::Tidy(System.Int32)
  585. extern void Match_Tidy_mF0A46109EAF0E91CBCA732985265E1DC20CA3F51 (void);
  586. // 0x00000122 System.Void System.Text.RegularExpressions.Match::.cctor()
  587. extern void Match__cctor_mB241D90D9F6B1311AC606248B3CCA821F8CC9855 (void);
  588. // 0x00000123 System.Void System.Text.RegularExpressions.Match::.ctor()
  589. extern void Match__ctor_mBABEF8F11A3BC6DB713519819D135CC87AC1B4CD (void);
  590. // 0x00000124 System.Void System.Text.RegularExpressions.MatchSparse::.ctor(System.Text.RegularExpressions.Regex,System.Collections.Hashtable,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
  591. extern void MatchSparse__ctor_m7CEA8A7F538C706527778E8E75003DD74AC2FD41 (void);
  592. // 0x00000125 System.Text.RegularExpressions.GroupCollection System.Text.RegularExpressions.MatchSparse::get_Groups()
  593. extern void MatchSparse_get_Groups_m02FA0AF82798ECC113234C2ED840DD630A3CCB45 (void);
  594. // 0x00000126 System.Void System.Text.RegularExpressions.MatchCollection::.ctor(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32)
  595. extern void MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE (void);
  596. // 0x00000127 System.Boolean System.Text.RegularExpressions.MatchCollection::get_IsReadOnly()
  597. extern void MatchCollection_get_IsReadOnly_mC801B489E41AACA6A80CEAD222CC78EFD212E994 (void);
  598. // 0x00000128 System.Int32 System.Text.RegularExpressions.MatchCollection::get_Count()
  599. extern void MatchCollection_get_Count_mF9D979B5B9D3835CC61977CBFB4110173B1CC926 (void);
  600. // 0x00000129 System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::get_Item(System.Int32)
  601. extern void MatchCollection_get_Item_m22EC679C4BB2C29C63AF2195C98C886EB73303D1 (void);
  602. // 0x0000012A System.Collections.IEnumerator System.Text.RegularExpressions.MatchCollection::GetEnumerator()
  603. extern void MatchCollection_GetEnumerator_mEDB2417DB45B514C8015043F52630DE1AD15447B (void);
  604. // 0x0000012B System.Collections.Generic.IEnumerator`1<System.Text.RegularExpressions.Match> System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IEnumerable<System.Text.RegularExpressions.Match>.GetEnumerator()
  605. extern void MatchCollection_System_Collections_Generic_IEnumerableU3CSystem_Text_RegularExpressions_MatchU3E_GetEnumerator_mCC91AB6EA562C3AD42A7B202B207EC0FD4537934 (void);
  606. // 0x0000012C System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::GetMatch(System.Int32)
  607. extern void MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D (void);
  608. // 0x0000012D System.Void System.Text.RegularExpressions.MatchCollection::EnsureInitialized()
  609. extern void MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654 (void);
  610. // 0x0000012E System.Boolean System.Text.RegularExpressions.MatchCollection::get_IsSynchronized()
  611. extern void MatchCollection_get_IsSynchronized_mADB36B54C8A13661C6235AAF79E8C0FD659A163D (void);
  612. // 0x0000012F System.Object System.Text.RegularExpressions.MatchCollection::get_SyncRoot()
  613. extern void MatchCollection_get_SyncRoot_m5E9A0515710C5B63B349C1B9E4D937D76AF43E68 (void);
  614. // 0x00000130 System.Void System.Text.RegularExpressions.MatchCollection::CopyTo(System.Array,System.Int32)
  615. extern void MatchCollection_CopyTo_m840C9BD921059464F949874DACD5D253AD3D7F9D (void);
  616. // 0x00000131 System.Void System.Text.RegularExpressions.MatchCollection::CopyTo(System.Text.RegularExpressions.Match[],System.Int32)
  617. extern void MatchCollection_CopyTo_m63FBC7E98C8B6B4DB3D155758D4E378F01CFA539 (void);
  618. // 0x00000132 System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.IndexOf(System.Text.RegularExpressions.Match)
  619. extern void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_IndexOf_m3F6BCFC1B93F62099835387557F8EF4F5F009E9F (void);
  620. // 0x00000133 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.Insert(System.Int32,System.Text.RegularExpressions.Match)
  621. extern void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_Insert_m8F23643755F8DBBDB9F62C93983A65467B3C9ACE (void);
  622. // 0x00000134 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.RemoveAt(System.Int32)
  623. extern void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_RemoveAt_m35604FC5400522F86CAE7CAA4D13935A81BE8752 (void);
  624. // 0x00000135 System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.get_Item(System.Int32)
  625. extern void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_get_Item_m58CD54D0E2F19880287070225CB97B987B7F5C84 (void);
  626. // 0x00000136 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.IList<System.Text.RegularExpressions.Match>.set_Item(System.Int32,System.Text.RegularExpressions.Match)
  627. extern void MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_set_Item_mEAF77169289374758416D2911AF012C7DCE9378A (void);
  628. // 0x00000137 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Add(System.Text.RegularExpressions.Match)
  629. extern void MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Add_m154176CEDE7E9E069DDA9DDE0A81EF6B37BD0165 (void);
  630. // 0x00000138 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Clear()
  631. extern void MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Clear_m9BB9C93A481537B734AF3EB6715BFC00B94547BD (void);
  632. // 0x00000139 System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Contains(System.Text.RegularExpressions.Match)
  633. extern void MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Contains_m388400538ADC88F2EA33B62458D2D05B647C4FAF (void);
  634. // 0x0000013A System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.Generic.ICollection<System.Text.RegularExpressions.Match>.Remove(System.Text.RegularExpressions.Match)
  635. extern void MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Remove_mEBB078E88FD8336140F2B4B0359CA4DF5D61D903 (void);
  636. // 0x0000013B System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Add(System.Object)
  637. extern void MatchCollection_System_Collections_IList_Add_mC16406A9EE094327248A90E65F4E36CD53DFEFEE (void);
  638. // 0x0000013C System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Clear()
  639. extern void MatchCollection_System_Collections_IList_Clear_mCFB22D61C256132062B66F3D91721F71B32C02E2 (void);
  640. // 0x0000013D System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Contains(System.Object)
  641. extern void MatchCollection_System_Collections_IList_Contains_m2A0C18BBE1D5CE215A57706BB1E81C375BE53A07 (void);
  642. // 0x0000013E System.Int32 System.Text.RegularExpressions.MatchCollection::System.Collections.IList.IndexOf(System.Object)
  643. extern void MatchCollection_System_Collections_IList_IndexOf_m324811BE6C4E84EAC5FD55325201E2EE07D9AE4B (void);
  644. // 0x0000013F System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Insert(System.Int32,System.Object)
  645. extern void MatchCollection_System_Collections_IList_Insert_m3D517C0C55A72CDD8D2AD7D59D7D1423C807231C (void);
  646. // 0x00000140 System.Boolean System.Text.RegularExpressions.MatchCollection::System.Collections.IList.get_IsFixedSize()
  647. extern void MatchCollection_System_Collections_IList_get_IsFixedSize_mFDC4D4DAD504EB2D9A2CE03BAC58A03C0DC946A7 (void);
  648. // 0x00000141 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.Remove(System.Object)
  649. extern void MatchCollection_System_Collections_IList_Remove_mAD17E6DAC2834015AB24C4D66EABB9353C24089A (void);
  650. // 0x00000142 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.RemoveAt(System.Int32)
  651. extern void MatchCollection_System_Collections_IList_RemoveAt_m5177AB0687CF2F1EB97C591DB987491DDDD7B2C9 (void);
  652. // 0x00000143 System.Object System.Text.RegularExpressions.MatchCollection::System.Collections.IList.get_Item(System.Int32)
  653. extern void MatchCollection_System_Collections_IList_get_Item_mC90C6F44948350631D273AFAEE08873B39F8EF1F (void);
  654. // 0x00000144 System.Void System.Text.RegularExpressions.MatchCollection::System.Collections.IList.set_Item(System.Int32,System.Object)
  655. extern void MatchCollection_System_Collections_IList_set_Item_mF5EE10AA5EF639CB97DCA5D5F82A41DA2C196E32 (void);
  656. // 0x00000145 System.Void System.Text.RegularExpressions.MatchCollection::.ctor()
  657. extern void MatchCollection__ctor_m816A933886BCC9F63F61F20057F42B2322B5E512 (void);
  658. // 0x00000146 System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::.ctor(System.Text.RegularExpressions.MatchCollection)
  659. extern void Enumerator__ctor_m7FB61A151678DD2B024D5064248818D83F77A6B1 (void);
  660. // 0x00000147 System.Boolean System.Text.RegularExpressions.MatchCollection/Enumerator::MoveNext()
  661. extern void Enumerator_MoveNext_mB909B0EBF0E5BDE4E0686174E2F15ED8DA9A6A3F (void);
  662. // 0x00000148 System.Text.RegularExpressions.Match System.Text.RegularExpressions.MatchCollection/Enumerator::get_Current()
  663. extern void Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7 (void);
  664. // 0x00000149 System.Object System.Text.RegularExpressions.MatchCollection/Enumerator::System.Collections.IEnumerator.get_Current()
  665. extern void Enumerator_System_Collections_IEnumerator_get_Current_mBC6B322ACF6C0378854DBC6511B79D9ADF947A9B (void);
  666. // 0x0000014A System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::System.Collections.IEnumerator.Reset()
  667. extern void Enumerator_System_Collections_IEnumerator_Reset_m08E6B917407D0CFD0D52DBA2B2A932E079C4B91E (void);
  668. // 0x0000014B System.Void System.Text.RegularExpressions.MatchCollection/Enumerator::System.IDisposable.Dispose()
  669. extern void Enumerator_System_IDisposable_Dispose_mF679BE85FB31DEBD4E1DEE10118DE35A5DCE322E (void);
  670. // 0x0000014C System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.ExclusiveReference::Get()
  671. extern void ExclusiveReference_Get_mCC2B9161946C9532001438C65A38E8D8FD56FB3C (void);
  672. // 0x0000014D System.Void System.Text.RegularExpressions.ExclusiveReference::Release(System.Text.RegularExpressions.RegexRunner)
  673. extern void ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018 (void);
  674. // 0x0000014E System.Void System.Text.RegularExpressions.ExclusiveReference::.ctor()
  675. extern void ExclusiveReference__ctor_m41EB96FC1FA261CB792752B89F15E6513FEA1722 (void);
  676. // 0x0000014F System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::GetCachedCode(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Boolean)
  677. extern void Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6 (void);
  678. // 0x00000150 System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::GetCachedCodeEntryInternal(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Boolean)
  679. extern void Regex_GetCachedCodeEntryInternal_m9FE175C47BF909F7F223013004C0EA0DAD660C06 (void);
  680. // 0x00000151 System.Void System.Text.RegularExpressions.Regex::FillCacheDictionary()
  681. extern void Regex_FillCacheDictionary_mC47F317967E556D1F03A344B78B215356D604755 (void);
  682. // 0x00000152 System.Boolean System.Text.RegularExpressions.Regex::TryGetCacheValue(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry&)
  683. extern void Regex_TryGetCacheValue_mA2B41F91C84CB02DA59E18DB80B0A49CBC600A8B (void);
  684. // 0x00000153 System.Boolean System.Text.RegularExpressions.Regex::TryGetCacheValueSmall(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntry&)
  685. extern void Regex_TryGetCacheValueSmall_mA62E6520886883BC787412F588CF79B7A02B9A28 (void);
  686. // 0x00000154 System.Text.RegularExpressions.Regex/CachedCodeEntry System.Text.RegularExpressions.Regex::LookupCachedAndPromote(System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
  687. extern void Regex_LookupCachedAndPromote_m2FE5584043609F1616158AF8621FC3ED48BCD900 (void);
  688. // 0x00000155 System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String)
  689. extern void Regex_IsMatch_m66D13054C7992322810B0CFC6B46AF11A927C9AA (void);
  690. // 0x00000156 System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
  691. extern void Regex_IsMatch_mCC0157A5E20FC634B8812B494F48877D55602C4D (void);
  692. // 0x00000157 System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String)
  693. extern void Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49 (void);
  694. // 0x00000158 System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String,System.Int32)
  695. extern void Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E (void);
  696. // 0x00000159 System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String)
  697. extern void Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84 (void);
  698. // 0x0000015A System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Match(System.String,System.Int32)
  699. extern void Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3 (void);
  700. // 0x0000015B System.Text.RegularExpressions.MatchCollection System.Text.RegularExpressions.Regex::Matches(System.String,System.String)
  701. extern void Regex_Matches_m6173BAB925E8664D3E962C59D780625528CAC22F (void);
  702. // 0x0000015C System.Text.RegularExpressions.MatchCollection System.Text.RegularExpressions.Regex::Matches(System.String,System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan)
  703. extern void Regex_Matches_mC66F7FB9D61C63554E96ED6942214375EFA110D5 (void);
  704. // 0x0000015D System.Text.RegularExpressions.MatchCollection System.Text.RegularExpressions.Regex::Matches(System.String)
  705. extern void Regex_Matches_m6654B7647075F4D6B1470042719C2EB6FCC16024 (void);
  706. // 0x0000015E System.Text.RegularExpressions.MatchCollection System.Text.RegularExpressions.Regex::Matches(System.String,System.Int32)
  707. extern void Regex_Matches_mD0E47C23B403AC380AF7EAECA48E63C61DC39CDF (void);
  708. // 0x0000015F System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String)
  709. extern void Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90 (void);
  710. // 0x00000160 System.String System.Text.RegularExpressions.Regex::Replace(System.String,System.String,System.Int32,System.Int32)
  711. extern void Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4 (void);
  712. // 0x00000161 System.Void System.Text.RegularExpressions.Regex::.cctor()
  713. extern void Regex__cctor_m689E73750FECC607BB4E1BF503660C16BE0F40E8 (void);
  714. // 0x00000162 System.Void System.Text.RegularExpressions.Regex::ValidateMatchTimeout(System.TimeSpan)
  715. extern void Regex_ValidateMatchTimeout_m530D1B5EBC69BEAA11CCB7053A96C4AA9869C591 (void);
  716. // 0x00000163 System.TimeSpan System.Text.RegularExpressions.Regex::InitDefaultMatchTimeout()
  717. extern void Regex_InitDefaultMatchTimeout_m8EEBEF239D034DCF29E50E681B318B517202854E (void);
  718. // 0x00000164 System.Void System.Text.RegularExpressions.Regex::.ctor(System.String)
  719. extern void Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD (void);
  720. // 0x00000165 System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions)
  721. extern void Regex__ctor_mE3996C71B04A4A6845745D01C93B1D27423D0621 (void);
  722. // 0x00000166 System.Void System.Text.RegularExpressions.Regex::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  723. extern void Regex_System_Runtime_Serialization_ISerializable_GetObjectData_mD788EE38607BF5D618FDA920048707DF4CA4B99C (void);
  724. // 0x00000167 System.Void System.Text.RegularExpressions.Regex::.ctor(System.String,System.Text.RegularExpressions.RegexOptions,System.TimeSpan,System.Boolean)
  725. extern void Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4 (void);
  726. // 0x00000168 System.Boolean System.Text.RegularExpressions.Regex::get_RightToLeft()
  727. extern void Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B (void);
  728. // 0x00000169 System.String System.Text.RegularExpressions.Regex::ToString()
  729. extern void Regex_ToString_m4982DE4C344F7D529666314646F071580A450D5B (void);
  730. // 0x0000016A System.String System.Text.RegularExpressions.Regex::GroupNameFromNumber(System.Int32)
  731. extern void Regex_GroupNameFromNumber_mC99A37419C4C0C9C3869BCDF055EDC72782D53FF (void);
  732. // 0x0000016B System.Void System.Text.RegularExpressions.Regex::InitializeReferences()
  733. extern void Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6 (void);
  734. // 0x0000016C System.Text.RegularExpressions.Match System.Text.RegularExpressions.Regex::Run(System.Boolean,System.Int32,System.String,System.Int32,System.Int32,System.Int32)
  735. extern void Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8 (void);
  736. // 0x0000016D System.Boolean System.Text.RegularExpressions.Regex::UseOptionR()
  737. extern void Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C (void);
  738. // 0x0000016E System.Boolean System.Text.RegularExpressions.Regex::UseOptionInvariant()
  739. extern void Regex_UseOptionInvariant_mD51BCBA0BF4C1B5CEBE9423B4AAA93CD83569B60 (void);
  740. // 0x0000016F System.Void System.Text.RegularExpressions.Regex/CachedCodeEntryKey::.ctor(System.Text.RegularExpressions.RegexOptions,System.String,System.String)
  741. extern void CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F (void);
  742. // 0x00000170 System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::Equals(System.Object)
  743. extern void CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2 (void);
  744. // 0x00000171 System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::Equals(System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
  745. extern void CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0 (void);
  746. // 0x00000172 System.Boolean System.Text.RegularExpressions.Regex/CachedCodeEntryKey::op_Equality(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Text.RegularExpressions.Regex/CachedCodeEntryKey)
  747. extern void CachedCodeEntryKey_op_Equality_mE9E3CA5933F8AE24BCE5AD52D6C4EE014C085E40 (void);
  748. // 0x00000173 System.Int32 System.Text.RegularExpressions.Regex/CachedCodeEntryKey::GetHashCode()
  749. extern void CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE (void);
  750. // 0x00000174 System.Void System.Text.RegularExpressions.Regex/CachedCodeEntry::.ctor(System.Text.RegularExpressions.Regex/CachedCodeEntryKey,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexCode,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.ExclusiveReference,System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>)
  751. extern void CachedCodeEntry__ctor_m14145ADFF67BA7C888673D806C24E28C96B83B2A (void);
  752. // 0x00000175 System.Void System.Text.RegularExpressions.RegexBoyerMoore::.ctor(System.String,System.Boolean,System.Boolean,System.Globalization.CultureInfo)
  753. extern void RegexBoyerMoore__ctor_mFDCB1AB420E718548B67DE42C233402955BBB189 (void);
  754. // 0x00000176 System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::MatchPattern(System.String,System.Int32)
  755. extern void RegexBoyerMoore_MatchPattern_m0E84EAABBFCDA85484466A41A7B90187D3489E8C (void);
  756. // 0x00000177 System.Boolean System.Text.RegularExpressions.RegexBoyerMoore::IsMatch(System.String,System.Int32,System.Int32,System.Int32)
  757. extern void RegexBoyerMoore_IsMatch_mC09692237823CC6C74D4F5D8900D82CEC840FB47 (void);
  758. // 0x00000178 System.Int32 System.Text.RegularExpressions.RegexBoyerMoore::Scan(System.String,System.Int32,System.Int32,System.Int32)
  759. extern void RegexBoyerMoore_Scan_m86EB5A209D33DA3F4C7335F8FE133238666FA57B (void);
  760. // 0x00000179 System.Void System.Text.RegularExpressions.RegexCharClass::.ctor()
  761. extern void RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E (void);
  762. // 0x0000017A System.Void System.Text.RegularExpressions.RegexCharClass::.ctor(System.Boolean,System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>,System.Text.StringBuilder,System.Text.RegularExpressions.RegexCharClass)
  763. extern void RegexCharClass__ctor_mFAD2AF3D7B0D4D3DC8BC850B8899C5C4D55F8B49 (void);
  764. // 0x0000017B System.Boolean System.Text.RegularExpressions.RegexCharClass::get_CanMerge()
  765. extern void RegexCharClass_get_CanMerge_mC093FE4BE7C1933BA9F146CF2A33CD729A965172 (void);
  766. // 0x0000017C System.Void System.Text.RegularExpressions.RegexCharClass::set_Negate(System.Boolean)
  767. extern void RegexCharClass_set_Negate_m8EA71CB8F671E99EF0B388CB520F44B8B6653A6B (void);
  768. // 0x0000017D System.Void System.Text.RegularExpressions.RegexCharClass::AddChar(System.Char)
  769. extern void RegexCharClass_AddChar_mED269B31D5C606032B3394A9B9305ED172D16746 (void);
  770. // 0x0000017E System.Void System.Text.RegularExpressions.RegexCharClass::AddCharClass(System.Text.RegularExpressions.RegexCharClass)
  771. extern void RegexCharClass_AddCharClass_mDE8C70A6A99B2223DE4EA36A4753A13B5EEDE7BB (void);
  772. // 0x0000017F System.Void System.Text.RegularExpressions.RegexCharClass::AddSet(System.String)
  773. extern void RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83 (void);
  774. // 0x00000180 System.Void System.Text.RegularExpressions.RegexCharClass::AddSubtraction(System.Text.RegularExpressions.RegexCharClass)
  775. extern void RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12 (void);
  776. // 0x00000181 System.Void System.Text.RegularExpressions.RegexCharClass::AddRange(System.Char,System.Char)
  777. extern void RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7 (void);
  778. // 0x00000182 System.Void System.Text.RegularExpressions.RegexCharClass::AddCategoryFromName(System.String,System.Boolean,System.Boolean,System.String)
  779. extern void RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97 (void);
  780. // 0x00000183 System.Void System.Text.RegularExpressions.RegexCharClass::AddCategory(System.String)
  781. extern void RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A (void);
  782. // 0x00000184 System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercase(System.Globalization.CultureInfo)
  783. extern void RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE (void);
  784. // 0x00000185 System.Void System.Text.RegularExpressions.RegexCharClass::AddLowercaseRange(System.Char,System.Char,System.Globalization.CultureInfo)
  785. extern void RegexCharClass_AddLowercaseRange_m75E07C55A082FE5B2926997F2564B611DF61A343 (void);
  786. // 0x00000186 System.Void System.Text.RegularExpressions.RegexCharClass::AddWord(System.Boolean,System.Boolean)
  787. extern void RegexCharClass_AddWord_mAED995BB6613893E0950C5895515204F1E95D152 (void);
  788. // 0x00000187 System.Void System.Text.RegularExpressions.RegexCharClass::AddSpace(System.Boolean,System.Boolean)
  789. extern void RegexCharClass_AddSpace_mD1BF3AD215D69EC6CF0E49A359F7FC709FD6FBB6 (void);
  790. // 0x00000188 System.Void System.Text.RegularExpressions.RegexCharClass::AddDigit(System.Boolean,System.Boolean,System.String)
  791. extern void RegexCharClass_AddDigit_m04C1001F7E8DA85CB2D262ED403BA9BD215A7A8E (void);
  792. // 0x00000189 System.Char System.Text.RegularExpressions.RegexCharClass::SingletonChar(System.String)
  793. extern void RegexCharClass_SingletonChar_m4B0E4CE38D80141C013BE74B01C58FB81B0DE630 (void);
  794. // 0x0000018A System.Boolean System.Text.RegularExpressions.RegexCharClass::IsMergeable(System.String)
  795. extern void RegexCharClass_IsMergeable_m986CE5853CF227EC275D0F16E91472A3FA903531 (void);
  796. // 0x0000018B System.Boolean System.Text.RegularExpressions.RegexCharClass::IsEmpty(System.String)
  797. extern void RegexCharClass_IsEmpty_m10A0C981C0200FFA5211CF9EEC8EE1FFECE27545 (void);
  798. // 0x0000018C System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingleton(System.String)
  799. extern void RegexCharClass_IsSingleton_mA3970BE305000CAE9576642E3C6751249767A2B4 (void);
  800. // 0x0000018D System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSingletonInverse(System.String)
  801. extern void RegexCharClass_IsSingletonInverse_m04C0F39C52377F64FA6B7D93AF2B89D203E9A108 (void);
  802. // 0x0000018E System.Boolean System.Text.RegularExpressions.RegexCharClass::IsSubtraction(System.String)
  803. extern void RegexCharClass_IsSubtraction_mE9E413F4B753B830F3091897DB20C4E6E88EA5F9 (void);
  804. // 0x0000018F System.Boolean System.Text.RegularExpressions.RegexCharClass::IsNegated(System.String)
  805. extern void RegexCharClass_IsNegated_m7F52D93AA1B63D6C1AACB04DE2CA8ECFB901BA47 (void);
  806. // 0x00000190 System.Boolean System.Text.RegularExpressions.RegexCharClass::IsECMAWordChar(System.Char)
  807. extern void RegexCharClass_IsECMAWordChar_m95AFA872BB22C901C60DFCC9C8735BA78EE1EC84 (void);
  808. // 0x00000191 System.Boolean System.Text.RegularExpressions.RegexCharClass::IsWordChar(System.Char)
  809. extern void RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C (void);
  810. // 0x00000192 System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClass(System.Char,System.String)
  811. extern void RegexCharClass_CharInClass_m635FAC50DE8EF6690ECA98FADD367716A5A54BEC (void);
  812. // 0x00000193 System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClassRecursive(System.Char,System.String,System.Int32)
  813. extern void RegexCharClass_CharInClassRecursive_mEC6F84D9CFEAD5A3F0091FC05296AA53FF188232 (void);
  814. // 0x00000194 System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInClassInternal(System.Char,System.String,System.Int32,System.Int32,System.Int32)
  815. extern void RegexCharClass_CharInClassInternal_m013394FB15A790E1BF02D518C3F7485359A4E3E3 (void);
  816. // 0x00000195 System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInCategory(System.Char,System.String,System.Int32,System.Int32,System.Int32)
  817. extern void RegexCharClass_CharInCategory_m18B64CFDDA01F24D468ED85E35E72D7B71203957 (void);
  818. // 0x00000196 System.Boolean System.Text.RegularExpressions.RegexCharClass::CharInCategoryGroup(System.Char,System.Globalization.UnicodeCategory,System.String,System.Int32&)
  819. extern void RegexCharClass_CharInCategoryGroup_mE20D51D1FD31B839D900136C42B8A7F014032C82 (void);
  820. // 0x00000197 System.String System.Text.RegularExpressions.RegexCharClass::NegateCategory(System.String)
  821. extern void RegexCharClass_NegateCategory_m6BE8AAA97753BF3F6A9577E4EB5D8A0590ADF638 (void);
  822. // 0x00000198 System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::Parse(System.String)
  823. extern void RegexCharClass_Parse_mE586DA457874C3808D48C2C514AED5B147221D27 (void);
  824. // 0x00000199 System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexCharClass::ParseRecursive(System.String,System.Int32)
  825. extern void RegexCharClass_ParseRecursive_m04198C9230D295E6B3261040CA9DD37DE03EE79F (void);
  826. // 0x0000019A System.Int32 System.Text.RegularExpressions.RegexCharClass::RangeCount()
  827. extern void RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1 (void);
  828. // 0x0000019B System.String System.Text.RegularExpressions.RegexCharClass::ToStringClass()
  829. extern void RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57 (void);
  830. // 0x0000019C System.Text.RegularExpressions.RegexCharClass/SingleRange System.Text.RegularExpressions.RegexCharClass::GetRangeAt(System.Int32)
  831. extern void RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128 (void);
  832. // 0x0000019D System.Void System.Text.RegularExpressions.RegexCharClass::Canonicalize()
  833. extern void RegexCharClass_Canonicalize_m77EEBAD046B3EAD5110DD472434BDE16851C7A9E (void);
  834. // 0x0000019E System.String System.Text.RegularExpressions.RegexCharClass::SetFromProperty(System.String,System.Boolean,System.String)
  835. extern void RegexCharClass_SetFromProperty_mD4411181E13EEB6F8D96972AF4564698999E9DF1 (void);
  836. // 0x0000019F System.Void System.Text.RegularExpressions.RegexCharClass::.cctor()
  837. extern void RegexCharClass__cctor_m15D71DF95CE4C3DEF5BDF06B03E6521A07E58296 (void);
  838. // 0x000001A0 System.Void System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping::.ctor(System.Char,System.Char,System.Int32,System.Int32)
  839. extern void LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A (void);
  840. // 0x000001A1 System.Void System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::.ctor()
  841. extern void SingleRangeComparer__ctor_m9B430EFE70974D964D73913D81E7C6C9236BBCCE (void);
  842. // 0x000001A2 System.Int32 System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::Compare(System.Text.RegularExpressions.RegexCharClass/SingleRange,System.Text.RegularExpressions.RegexCharClass/SingleRange)
  843. extern void SingleRangeComparer_Compare_m917FDE86E5F31A755D07077EA095F8B7E27E130B (void);
  844. // 0x000001A3 System.Void System.Text.RegularExpressions.RegexCharClass/SingleRangeComparer::.cctor()
  845. extern void SingleRangeComparer__cctor_m649382AF0493818C7B5D453010FE22A3523F1A90 (void);
  846. // 0x000001A4 System.Void System.Text.RegularExpressions.RegexCharClass/SingleRange::.ctor(System.Char,System.Char)
  847. extern void SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E (void);
  848. // 0x000001A5 System.Void System.Text.RegularExpressions.RegexCode::.ctor(System.Int32[],System.Collections.Generic.List`1<System.String>,System.Int32,System.Collections.Hashtable,System.Int32,System.Text.RegularExpressions.RegexBoyerMoore,System.Nullable`1<System.Text.RegularExpressions.RegexPrefix>,System.Int32,System.Boolean)
  849. extern void RegexCode__ctor_mA50EE1CFA1A050BFC45E135DAB7E2704049512E0 (void);
  850. // 0x000001A6 System.Boolean System.Text.RegularExpressions.RegexCode::OpcodeBacktracks(System.Int32)
  851. extern void RegexCode_OpcodeBacktracks_m44FC8B177CFCB191B72C109984A707744FD7B2BC (void);
  852. // 0x000001A7 System.Void System.Text.RegularExpressions.RegexFCD::.ctor(System.Span`1<System.Int32>)
  853. extern void RegexFCD__ctor_mE1C0A21180069D25EEF6F3702938ABB087F35C0C (void);
  854. // 0x000001A8 System.Nullable`1<System.Text.RegularExpressions.RegexPrefix> System.Text.RegularExpressions.RegexFCD::FirstChars(System.Text.RegularExpressions.RegexTree)
  855. extern void RegexFCD_FirstChars_m3BAEF0481AF78F4FC40C35CEDA9100017A6D794B (void);
  856. // 0x000001A9 System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexFCD::Prefix(System.Text.RegularExpressions.RegexTree)
  857. extern void RegexFCD_Prefix_mE4F5ABEA5443B6940F83E59C60D0A9A201CC4BD6 (void);
  858. // 0x000001AA System.Int32 System.Text.RegularExpressions.RegexFCD::Anchors(System.Text.RegularExpressions.RegexTree)
  859. extern void RegexFCD_Anchors_m9211098DA08795B8459B918CA3D9A1A4733365D7 (void);
  860. // 0x000001AB System.Int32 System.Text.RegularExpressions.RegexFCD::AnchorFromType(System.Int32)
  861. extern void RegexFCD_AnchorFromType_m825872EAB7A0322BBD677DF34281A3ACEE8808D4 (void);
  862. // 0x000001AC System.Void System.Text.RegularExpressions.RegexFCD::PushInt(System.Int32)
  863. extern void RegexFCD_PushInt_m0B38AFDAF0D14FF1E41AC90838B40C4C866D8875 (void);
  864. // 0x000001AD System.Boolean System.Text.RegularExpressions.RegexFCD::IntIsEmpty()
  865. extern void RegexFCD_IntIsEmpty_m05E3C6FF40B69E98D90CF1C12DF3F32AEC800B5E (void);
  866. // 0x000001AE System.Int32 System.Text.RegularExpressions.RegexFCD::PopInt()
  867. extern void RegexFCD_PopInt_m1DF4F5E6B4BA9E15AFF2B3C44D1A233EA46EFCD0 (void);
  868. // 0x000001AF System.Void System.Text.RegularExpressions.RegexFCD::PushFC(System.Text.RegularExpressions.RegexFC)
  869. extern void RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675 (void);
  870. // 0x000001B0 System.Boolean System.Text.RegularExpressions.RegexFCD::FCIsEmpty()
  871. extern void RegexFCD_FCIsEmpty_m749E6423466EAD51E38445AC91E76DE31258574F (void);
  872. // 0x000001B1 System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::PopFC()
  873. extern void RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628 (void);
  874. // 0x000001B2 System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::TopFC()
  875. extern void RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD (void);
  876. // 0x000001B3 System.Void System.Text.RegularExpressions.RegexFCD::Dispose()
  877. extern void RegexFCD_Dispose_m0B04A2F3B819FA7BFAF0AECCBF6D22E6D9789C07 (void);
  878. // 0x000001B4 System.Text.RegularExpressions.RegexFC System.Text.RegularExpressions.RegexFCD::RegexFCFromRegexTree(System.Text.RegularExpressions.RegexTree)
  879. extern void RegexFCD_RegexFCFromRegexTree_mD5A53219905969B914CE27404553A4360DA78500 (void);
  880. // 0x000001B5 System.Void System.Text.RegularExpressions.RegexFCD::SkipChild()
  881. extern void RegexFCD_SkipChild_m5ACE619BAC10DD5DFE755655DB6151E7DB0885FD (void);
  882. // 0x000001B6 System.Void System.Text.RegularExpressions.RegexFCD::CalculateFC(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32)
  883. extern void RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91 (void);
  884. // 0x000001B7 System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Boolean)
  885. extern void RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A (void);
  886. // 0x000001B8 System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.Char,System.Boolean,System.Boolean,System.Boolean)
  887. extern void RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D (void);
  888. // 0x000001B9 System.Void System.Text.RegularExpressions.RegexFC::.ctor(System.String,System.Boolean,System.Boolean)
  889. extern void RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5 (void);
  890. // 0x000001BA System.Boolean System.Text.RegularExpressions.RegexFC::AddFC(System.Text.RegularExpressions.RegexFC,System.Boolean)
  891. extern void RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851 (void);
  892. // 0x000001BB System.Boolean System.Text.RegularExpressions.RegexFC::get_CaseInsensitive()
  893. extern void RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102 (void);
  894. // 0x000001BC System.Void System.Text.RegularExpressions.RegexFC::set_CaseInsensitive(System.Boolean)
  895. extern void RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B (void);
  896. // 0x000001BD System.String System.Text.RegularExpressions.RegexFC::GetFirstChars(System.Globalization.CultureInfo)
  897. extern void RegexFC_GetFirstChars_m6BAC398ABDCA5AF58CBE678143C9792611A2A3E8 (void);
  898. // 0x000001BE System.Void System.Text.RegularExpressions.RegexInterpreter::.ctor(System.Text.RegularExpressions.RegexCode,System.Globalization.CultureInfo)
  899. extern void RegexInterpreter__ctor_mB81896A8292574F7532CF707F74A1AC1DECEA9FF (void);
  900. // 0x000001BF System.Void System.Text.RegularExpressions.RegexInterpreter::InitTrackCount()
  901. extern void RegexInterpreter_InitTrackCount_mFFFBE9294C6FCB854D4502362473C40A5ABBBFC4 (void);
  902. // 0x000001C0 System.Void System.Text.RegularExpressions.RegexInterpreter::Advance(System.Int32)
  903. extern void RegexInterpreter_Advance_m31E2455F84B61536DE535BE51D4D0B42DC33857B (void);
  904. // 0x000001C1 System.Void System.Text.RegularExpressions.RegexInterpreter::Goto(System.Int32)
  905. extern void RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9 (void);
  906. // 0x000001C2 System.Void System.Text.RegularExpressions.RegexInterpreter::Textto(System.Int32)
  907. extern void RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850 (void);
  908. // 0x000001C3 System.Void System.Text.RegularExpressions.RegexInterpreter::Trackto(System.Int32)
  909. extern void RegexInterpreter_Trackto_mDFDFF0401BC8F2B2D26AEC65B54B963F84A089AE (void);
  910. // 0x000001C4 System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textstart()
  911. extern void RegexInterpreter_Textstart_mDF185C6B3E245A2307A8B0B9F5FE5DF8C8C9936E (void);
  912. // 0x000001C5 System.Int32 System.Text.RegularExpressions.RegexInterpreter::Textpos()
  913. extern void RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC (void);
  914. // 0x000001C6 System.Int32 System.Text.RegularExpressions.RegexInterpreter::Trackpos()
  915. extern void RegexInterpreter_Trackpos_m6BDE792A7333FADB2533591B88211FD77E8F0401 (void);
  916. // 0x000001C7 System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush()
  917. extern void RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93 (void);
  918. // 0x000001C8 System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32)
  919. extern void RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D (void);
  920. // 0x000001C9 System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32)
  921. extern void RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878 (void);
  922. // 0x000001CA System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush(System.Int32,System.Int32,System.Int32)
  923. extern void RegexInterpreter_TrackPush_m606F28BD60B479F0FD3073F8B5627836DB89230E (void);
  924. // 0x000001CB System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32)
  925. extern void RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F (void);
  926. // 0x000001CC System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPush2(System.Int32,System.Int32)
  927. extern void RegexInterpreter_TrackPush2_m18FF10B704A6586A18D9AB21D28737DC32DA2797 (void);
  928. // 0x000001CD System.Void System.Text.RegularExpressions.RegexInterpreter::Backtrack()
  929. extern void RegexInterpreter_Backtrack_m8D227FAE1EFD91174D43FF070D9200291941E593 (void);
  930. // 0x000001CE System.Void System.Text.RegularExpressions.RegexInterpreter::SetOperator(System.Int32)
  931. extern void RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC (void);
  932. // 0x000001CF System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop()
  933. extern void RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1 (void);
  934. // 0x000001D0 System.Void System.Text.RegularExpressions.RegexInterpreter::TrackPop(System.Int32)
  935. extern void RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B (void);
  936. // 0x000001D1 System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek()
  937. extern void RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861 (void);
  938. // 0x000001D2 System.Int32 System.Text.RegularExpressions.RegexInterpreter::TrackPeek(System.Int32)
  939. extern void RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699 (void);
  940. // 0x000001D3 System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32)
  941. extern void RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60 (void);
  942. // 0x000001D4 System.Void System.Text.RegularExpressions.RegexInterpreter::StackPush(System.Int32,System.Int32)
  943. extern void RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F (void);
  944. // 0x000001D5 System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop()
  945. extern void RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF (void);
  946. // 0x000001D6 System.Void System.Text.RegularExpressions.RegexInterpreter::StackPop(System.Int32)
  947. extern void RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681 (void);
  948. // 0x000001D7 System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek()
  949. extern void RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991 (void);
  950. // 0x000001D8 System.Int32 System.Text.RegularExpressions.RegexInterpreter::StackPeek(System.Int32)
  951. extern void RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8 (void);
  952. // 0x000001D9 System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operator()
  953. extern void RegexInterpreter_Operator_m3BD9AD7DCDA4E84DE4821DA786E1B1483E677B58 (void);
  954. // 0x000001DA System.Int32 System.Text.RegularExpressions.RegexInterpreter::Operand(System.Int32)
  955. extern void RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560 (void);
  956. // 0x000001DB System.Int32 System.Text.RegularExpressions.RegexInterpreter::Leftchars()
  957. extern void RegexInterpreter_Leftchars_m6FD5AA399927D1767633B24AE234D596CBDD4002 (void);
  958. // 0x000001DC System.Int32 System.Text.RegularExpressions.RegexInterpreter::Rightchars()
  959. extern void RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7 (void);
  960. // 0x000001DD System.Int32 System.Text.RegularExpressions.RegexInterpreter::Bump()
  961. extern void RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1 (void);
  962. // 0x000001DE System.Int32 System.Text.RegularExpressions.RegexInterpreter::Forwardchars()
  963. extern void RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6 (void);
  964. // 0x000001DF System.Char System.Text.RegularExpressions.RegexInterpreter::Forwardcharnext()
  965. extern void RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1 (void);
  966. // 0x000001E0 System.Boolean System.Text.RegularExpressions.RegexInterpreter::Stringmatch(System.String)
  967. extern void RegexInterpreter_Stringmatch_m89AE288DB294AC0146C7772193CAD3B702849E54 (void);
  968. // 0x000001E1 System.Boolean System.Text.RegularExpressions.RegexInterpreter::Refmatch(System.Int32,System.Int32)
  969. extern void RegexInterpreter_Refmatch_m457B37C3E3B0671E7E89B7F6C16396D36EB32F68 (void);
  970. // 0x000001E2 System.Void System.Text.RegularExpressions.RegexInterpreter::Backwardnext()
  971. extern void RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF (void);
  972. // 0x000001E3 System.Char System.Text.RegularExpressions.RegexInterpreter::CharAt(System.Int32)
  973. extern void RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C (void);
  974. // 0x000001E4 System.Boolean System.Text.RegularExpressions.RegexInterpreter::FindFirstChar()
  975. extern void RegexInterpreter_FindFirstChar_m87D986F0502AEEFC4F13EBD0EAD891C495C4845F (void);
  976. // 0x000001E5 System.Void System.Text.RegularExpressions.RegexInterpreter::Go()
  977. extern void RegexInterpreter_Go_m1CF26F8D95231F3B2235EA98AFB286C3F1629BED (void);
  978. // 0x000001E6 System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor(System.String,System.String,System.TimeSpan)
  979. extern void RegexMatchTimeoutException__ctor_m24286DF7231B227E3A8B3C31AE33447361971005 (void);
  980. // 0x000001E7 System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor()
  981. extern void RegexMatchTimeoutException__ctor_mA8C497C6700E1233B4953A8AA7B8F57C8682C410 (void);
  982. // 0x000001E8 System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  983. extern void RegexMatchTimeoutException__ctor_m7DE41C173C1A57CEA5D015FF63DDFCB70CFF4FBF (void);
  984. // 0x000001E9 System.Void System.Text.RegularExpressions.RegexMatchTimeoutException::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  985. extern void RegexMatchTimeoutException_System_Runtime_Serialization_ISerializable_GetObjectData_m6F530DBA34FE5CBECBCD322C8FBD4AE28054688C (void);
  986. // 0x000001EA System.String System.Text.RegularExpressions.RegexMatchTimeoutException::get_Input()
  987. extern void RegexMatchTimeoutException_get_Input_mA4DCA4F3C9692ACDC45FBEB683EE4165C84E4073 (void);
  988. // 0x000001EB System.String System.Text.RegularExpressions.RegexMatchTimeoutException::get_Pattern()
  989. extern void RegexMatchTimeoutException_get_Pattern_m8F12503E2B66F34B8E8EFE46971C169EA1BFBAB2 (void);
  990. // 0x000001EC System.TimeSpan System.Text.RegularExpressions.RegexMatchTimeoutException::get_MatchTimeout()
  991. extern void RegexMatchTimeoutException_get_MatchTimeout_m12D9D88EFFA06EAC0FF06C81ECF29BAE0F906087 (void);
  992. // 0x000001ED System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions)
  993. extern void RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B (void);
  994. // 0x000001EE System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Char)
  995. extern void RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B (void);
  996. // 0x000001EF System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.String)
  997. extern void RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA (void);
  998. // 0x000001F0 System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32)
  999. extern void RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F (void);
  1000. // 0x000001F1 System.Void System.Text.RegularExpressions.RegexNode::.ctor(System.Int32,System.Text.RegularExpressions.RegexOptions,System.Int32,System.Int32)
  1001. extern void RegexNode__ctor_m5ECC62B9C3918CD043542E5BEAAD39A06158E27A (void);
  1002. // 0x000001F2 System.Boolean System.Text.RegularExpressions.RegexNode::UseOptionR()
  1003. extern void RegexNode_UseOptionR_mEBD872419C386D7C7802D2A6D2187E7B6D1D1641 (void);
  1004. // 0x000001F3 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReverseLeft()
  1005. extern void RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586 (void);
  1006. // 0x000001F4 System.Void System.Text.RegularExpressions.RegexNode::MakeRep(System.Int32,System.Int32,System.Int32)
  1007. extern void RegexNode_MakeRep_mFDCFC9F5DA5DCBFC66D6F00A8E08A602F00C5F48 (void);
  1008. // 0x000001F5 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Reduce()
  1009. extern void RegexNode_Reduce_m9D14953F47CD1D924C3EEB9D0287D7F257AD2D98 (void);
  1010. // 0x000001F6 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::StripEnation(System.Int32)
  1011. extern void RegexNode_StripEnation_m2BACBC29E58CEC452B91534BCFA2A21639712B61 (void);
  1012. // 0x000001F7 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceGroup()
  1013. extern void RegexNode_ReduceGroup_m62F5B20C564AC8A8E8C1C9E00684A8BB9A988E3B (void);
  1014. // 0x000001F8 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceRep()
  1015. extern void RegexNode_ReduceRep_m85B3760500D732A04B60CD3F247CE8ECA1E6F8C1 (void);
  1016. // 0x000001F9 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceSet()
  1017. extern void RegexNode_ReduceSet_mD307DD149936830074467A0F24C2E20032F708E9 (void);
  1018. // 0x000001FA System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceAlternation()
  1019. extern void RegexNode_ReduceAlternation_m193F3C5A073401BA987E5AB7D35F59B1FC902341 (void);
  1020. // 0x000001FB System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::ReduceConcatenation()
  1021. extern void RegexNode_ReduceConcatenation_m95EE4F324360AC71D52EDEC1C53F6F81D73C67C3 (void);
  1022. // 0x000001FC System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::MakeQuantifier(System.Boolean,System.Int32,System.Int32)
  1023. extern void RegexNode_MakeQuantifier_mA6A10E1AEF5AA80F82BD1BE6D28E62259208B5BC (void);
  1024. // 0x000001FD System.Void System.Text.RegularExpressions.RegexNode::AddChild(System.Text.RegularExpressions.RegexNode)
  1025. extern void RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8 (void);
  1026. // 0x000001FE System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexNode::Child(System.Int32)
  1027. extern void RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27 (void);
  1028. // 0x000001FF System.Int32 System.Text.RegularExpressions.RegexNode::ChildCount()
  1029. extern void RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D (void);
  1030. // 0x00000200 System.Int32 System.Text.RegularExpressions.RegexNode::Type()
  1031. extern void RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019 (void);
  1032. // 0x00000201 System.Text.RegularExpressions.RegexTree System.Text.RegularExpressions.RegexParser::Parse(System.String,System.Text.RegularExpressions.RegexOptions)
  1033. extern void RegexParser_Parse_mB845F2DC38DFD8C50E5B8D0D0F87330597409793 (void);
  1034. // 0x00000202 System.Text.RegularExpressions.RegexReplacement System.Text.RegularExpressions.RegexParser::ParseReplacement(System.String,System.Collections.Hashtable,System.Int32,System.Collections.Hashtable,System.Text.RegularExpressions.RegexOptions)
  1035. extern void RegexParser_ParseReplacement_m552460B4F6F5F7B1B0D2F4E01A3847BE8662AF13 (void);
  1036. // 0x00000203 System.Void System.Text.RegularExpressions.RegexParser::.ctor(System.Globalization.CultureInfo)
  1037. extern void RegexParser__ctor_m99DC2B2C4B64E7298BBF49AD862BFD12007E38E4 (void);
  1038. // 0x00000204 System.Void System.Text.RegularExpressions.RegexParser::SetPattern(System.String)
  1039. extern void RegexParser_SetPattern_m852D668CE45FBCAA3A6ACC415B94BDD0A7190265 (void);
  1040. // 0x00000205 System.Void System.Text.RegularExpressions.RegexParser::Reset(System.Text.RegularExpressions.RegexOptions)
  1041. extern void RegexParser_Reset_m426A8C90F4D8065486802AE7AC9FB07FC599EB01 (void);
  1042. // 0x00000206 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanRegex()
  1043. extern void RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D (void);
  1044. // 0x00000207 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanReplacement()
  1045. extern void RegexParser_ScanReplacement_mC27972ADC38D857F44851CE642162928ED4D12D6 (void);
  1046. // 0x00000208 System.Text.RegularExpressions.RegexCharClass System.Text.RegularExpressions.RegexParser::ScanCharClass(System.Boolean,System.Boolean)
  1047. extern void RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D (void);
  1048. // 0x00000209 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanGroupOpen()
  1049. extern void RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7 (void);
  1050. // 0x0000020A System.Void System.Text.RegularExpressions.RegexParser::ScanBlank()
  1051. extern void RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82 (void);
  1052. // 0x0000020B System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBackslash(System.Boolean)
  1053. extern void RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E (void);
  1054. // 0x0000020C System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanBasicBackslash(System.Boolean)
  1055. extern void RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC (void);
  1056. // 0x0000020D System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::ScanDollar()
  1057. extern void RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A (void);
  1058. // 0x0000020E System.String System.Text.RegularExpressions.RegexParser::ScanCapname()
  1059. extern void RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7 (void);
  1060. // 0x0000020F System.Char System.Text.RegularExpressions.RegexParser::ScanOctal()
  1061. extern void RegexParser_ScanOctal_m95EA0AE4B61D5418914DDD3815C6277471B4EDFD (void);
  1062. // 0x00000210 System.Int32 System.Text.RegularExpressions.RegexParser::ScanDecimal()
  1063. extern void RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161 (void);
  1064. // 0x00000211 System.Char System.Text.RegularExpressions.RegexParser::ScanHex(System.Int32)
  1065. extern void RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95 (void);
  1066. // 0x00000212 System.Int32 System.Text.RegularExpressions.RegexParser::HexDigit(System.Char)
  1067. extern void RegexParser_HexDigit_m40FED0646820843A4C35AF9349E27B0E0A84A5CE (void);
  1068. // 0x00000213 System.Char System.Text.RegularExpressions.RegexParser::ScanControl()
  1069. extern void RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B (void);
  1070. // 0x00000214 System.Boolean System.Text.RegularExpressions.RegexParser::IsOnlyTopOption(System.Text.RegularExpressions.RegexOptions)
  1071. extern void RegexParser_IsOnlyTopOption_mAA13B95864B8B314B8B6689B47FA4BFE3B433280 (void);
  1072. // 0x00000215 System.Void System.Text.RegularExpressions.RegexParser::ScanOptions()
  1073. extern void RegexParser_ScanOptions_m56F01464F53558D3AF3BF1CD874A2656930AF31C (void);
  1074. // 0x00000216 System.Char System.Text.RegularExpressions.RegexParser::ScanCharEscape()
  1075. extern void RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98 (void);
  1076. // 0x00000217 System.String System.Text.RegularExpressions.RegexParser::ParseProperty()
  1077. extern void RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38 (void);
  1078. // 0x00000218 System.Int32 System.Text.RegularExpressions.RegexParser::TypeFromCode(System.Char)
  1079. extern void RegexParser_TypeFromCode_m11B176B0B9A6EF391370E021B111101AE56F4CC6 (void);
  1080. // 0x00000219 System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.RegexParser::OptionFromCode(System.Char)
  1081. extern void RegexParser_OptionFromCode_m7E2E8164FA38C45692BC68054E574F00B65F383A (void);
  1082. // 0x0000021A System.Void System.Text.RegularExpressions.RegexParser::CountCaptures()
  1083. extern void RegexParser_CountCaptures_m2ECDC9ED534F245A12224038BB86DE5D66DB56A3 (void);
  1084. // 0x0000021B System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureSlot(System.Int32,System.Int32)
  1085. extern void RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222 (void);
  1086. // 0x0000021C System.Void System.Text.RegularExpressions.RegexParser::NoteCaptureName(System.String,System.Int32)
  1087. extern void RegexParser_NoteCaptureName_m5CDAF94FD43B665DE067B6DC02BD72A315D48FFD (void);
  1088. // 0x0000021D System.Void System.Text.RegularExpressions.RegexParser::NoteCaptures(System.Collections.Hashtable,System.Int32,System.Collections.Hashtable)
  1089. extern void RegexParser_NoteCaptures_mC02396D9D7C522A5B701A2C1C88E742C98EAAF17 (void);
  1090. // 0x0000021E System.Void System.Text.RegularExpressions.RegexParser::AssignNameSlots()
  1091. extern void RegexParser_AssignNameSlots_mC5738B99DE328E7D1FA7279A717640EC2044857E (void);
  1092. // 0x0000021F System.Int32 System.Text.RegularExpressions.RegexParser::CaptureSlotFromName(System.String)
  1093. extern void RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB (void);
  1094. // 0x00000220 System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureSlot(System.Int32)
  1095. extern void RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3 (void);
  1096. // 0x00000221 System.Boolean System.Text.RegularExpressions.RegexParser::IsCaptureName(System.String)
  1097. extern void RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE (void);
  1098. // 0x00000222 System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionN()
  1099. extern void RegexParser_UseOptionN_mD441B71AC8368C644B8D9A0CCB3DB8BD681639B3 (void);
  1100. // 0x00000223 System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionI()
  1101. extern void RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701 (void);
  1102. // 0x00000224 System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionM()
  1103. extern void RegexParser_UseOptionM_mAE3FC2655A6E80EA35D5CEBEE1D82B5B07529118 (void);
  1104. // 0x00000225 System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionS()
  1105. extern void RegexParser_UseOptionS_m070AD4458172FB14FF21E4502DCA6ECEE8938994 (void);
  1106. // 0x00000226 System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionX()
  1107. extern void RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC (void);
  1108. // 0x00000227 System.Boolean System.Text.RegularExpressions.RegexParser::UseOptionE()
  1109. extern void RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9 (void);
  1110. // 0x00000228 System.Boolean System.Text.RegularExpressions.RegexParser::IsSpecial(System.Char)
  1111. extern void RegexParser_IsSpecial_mF59FE804CDD354250CB77C4113F39C627349D051 (void);
  1112. // 0x00000229 System.Boolean System.Text.RegularExpressions.RegexParser::IsStopperX(System.Char)
  1113. extern void RegexParser_IsStopperX_m173A82937CA9600F7CB12B9A101F39CCFDA630C9 (void);
  1114. // 0x0000022A System.Boolean System.Text.RegularExpressions.RegexParser::IsQuantifier(System.Char)
  1115. extern void RegexParser_IsQuantifier_mBD18FA810A0404B632392725175846E6B30A8782 (void);
  1116. // 0x0000022B System.Boolean System.Text.RegularExpressions.RegexParser::IsTrueQuantifier()
  1117. extern void RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF (void);
  1118. // 0x0000022C System.Boolean System.Text.RegularExpressions.RegexParser::IsSpace(System.Char)
  1119. extern void RegexParser_IsSpace_m322B45C2A04F07D8C83B547370D266F39A8DE14E (void);
  1120. // 0x0000022D System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Int32,System.Int32,System.Boolean)
  1121. extern void RegexParser_AddConcatenate_mDDD0350FE254D75D6707668332D0F3088A5572AF (void);
  1122. // 0x0000022E System.Void System.Text.RegularExpressions.RegexParser::PushGroup()
  1123. extern void RegexParser_PushGroup_m2D76CB852430A3B3F7454DDC3322B2A5E4CE398F (void);
  1124. // 0x0000022F System.Void System.Text.RegularExpressions.RegexParser::PopGroup()
  1125. extern void RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552 (void);
  1126. // 0x00000230 System.Boolean System.Text.RegularExpressions.RegexParser::EmptyStack()
  1127. extern void RegexParser_EmptyStack_m756AC5BB66D0F2077EC7DD655A3D57681200F5CA (void);
  1128. // 0x00000231 System.Void System.Text.RegularExpressions.RegexParser::StartGroup(System.Text.RegularExpressions.RegexNode)
  1129. extern void RegexParser_StartGroup_mBF861FCFB0FB9ED26744CAE2297537DAB6DF37C1 (void);
  1130. // 0x00000232 System.Void System.Text.RegularExpressions.RegexParser::AddAlternate()
  1131. extern void RegexParser_AddAlternate_m77BCF63DD4E1AB89B70F72821CAE4B67936CD847 (void);
  1132. // 0x00000233 System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate()
  1133. extern void RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA (void);
  1134. // 0x00000234 System.Void System.Text.RegularExpressions.RegexParser::AddConcatenate(System.Boolean,System.Int32,System.Int32)
  1135. extern void RegexParser_AddConcatenate_m3B10D68AE09CC6A2F06AC65E49B918D11D5375FF (void);
  1136. // 0x00000235 System.Text.RegularExpressions.RegexNode System.Text.RegularExpressions.RegexParser::Unit()
  1137. extern void RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F (void);
  1138. // 0x00000236 System.Void System.Text.RegularExpressions.RegexParser::AddUnitOne(System.Char)
  1139. extern void RegexParser_AddUnitOne_m991DCA85D3432B8F7F74D18125A69FFE25108F47 (void);
  1140. // 0x00000237 System.Void System.Text.RegularExpressions.RegexParser::AddUnitNotone(System.Char)
  1141. extern void RegexParser_AddUnitNotone_m4F79DE175B95FDB88323D7FE9DC3132E24F8F0C0 (void);
  1142. // 0x00000238 System.Void System.Text.RegularExpressions.RegexParser::AddUnitSet(System.String)
  1143. extern void RegexParser_AddUnitSet_mA262F57A7FAB27996D8115F66BC84A5C58317D7F (void);
  1144. // 0x00000239 System.Void System.Text.RegularExpressions.RegexParser::AddUnitNode(System.Text.RegularExpressions.RegexNode)
  1145. extern void RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8 (void);
  1146. // 0x0000023A System.Void System.Text.RegularExpressions.RegexParser::AddUnitType(System.Int32)
  1147. extern void RegexParser_AddUnitType_mEBDFA2325ABDA3FDA74184DBFB706824F6540553 (void);
  1148. // 0x0000023B System.Void System.Text.RegularExpressions.RegexParser::AddGroup()
  1149. extern void RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7 (void);
  1150. // 0x0000023C System.Void System.Text.RegularExpressions.RegexParser::PushOptions()
  1151. extern void RegexParser_PushOptions_m6E501EE3C5D6FE990ED74935A9AC9A6E834FD968 (void);
  1152. // 0x0000023D System.Void System.Text.RegularExpressions.RegexParser::PopOptions()
  1153. extern void RegexParser_PopOptions_mAE4848419A71162B8E563781AC817A8D6ACEB91B (void);
  1154. // 0x0000023E System.Boolean System.Text.RegularExpressions.RegexParser::EmptyOptionsStack()
  1155. extern void RegexParser_EmptyOptionsStack_mC16A4D18503FF296911710732A95062A8279163B (void);
  1156. // 0x0000023F System.Void System.Text.RegularExpressions.RegexParser::PopKeepOptions()
  1157. extern void RegexParser_PopKeepOptions_m911F83DFA290ED90B06D3D3166553E6205C256C1 (void);
  1158. // 0x00000240 System.ArgumentException System.Text.RegularExpressions.RegexParser::MakeException(System.String)
  1159. extern void RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC (void);
  1160. // 0x00000241 System.Int32 System.Text.RegularExpressions.RegexParser::Textpos()
  1161. extern void RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88 (void);
  1162. // 0x00000242 System.Void System.Text.RegularExpressions.RegexParser::Textto(System.Int32)
  1163. extern void RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2 (void);
  1164. // 0x00000243 System.Char System.Text.RegularExpressions.RegexParser::RightCharMoveRight()
  1165. extern void RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9 (void);
  1166. // 0x00000244 System.Void System.Text.RegularExpressions.RegexParser::MoveRight()
  1167. extern void RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9 (void);
  1168. // 0x00000245 System.Void System.Text.RegularExpressions.RegexParser::MoveRight(System.Int32)
  1169. extern void RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61 (void);
  1170. // 0x00000246 System.Void System.Text.RegularExpressions.RegexParser::MoveLeft()
  1171. extern void RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5 (void);
  1172. // 0x00000247 System.Char System.Text.RegularExpressions.RegexParser::CharAt(System.Int32)
  1173. extern void RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70 (void);
  1174. // 0x00000248 System.Char System.Text.RegularExpressions.RegexParser::RightChar()
  1175. extern void RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91 (void);
  1176. // 0x00000249 System.Char System.Text.RegularExpressions.RegexParser::RightChar(System.Int32)
  1177. extern void RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147 (void);
  1178. // 0x0000024A System.Int32 System.Text.RegularExpressions.RegexParser::CharsRight()
  1179. extern void RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79 (void);
  1180. // 0x0000024B System.Void System.Text.RegularExpressions.RegexParser::.cctor()
  1181. extern void RegexParser__cctor_mC883BE9D9C8D47723D5CAD7CE25B5F347929AF54 (void);
  1182. // 0x0000024C System.Void System.Text.RegularExpressions.RegexPrefix::.ctor(System.String,System.Boolean)
  1183. extern void RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4 (void);
  1184. // 0x0000024D System.Boolean System.Text.RegularExpressions.RegexPrefix::get_CaseInsensitive()
  1185. extern void RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6 (void);
  1186. // 0x0000024E System.Text.RegularExpressions.RegexPrefix System.Text.RegularExpressions.RegexPrefix::get_Empty()
  1187. extern void RegexPrefix_get_Empty_m54EA279F2BE7F39358AB5DF1A5362A8CD92B4326 (void);
  1188. // 0x0000024F System.String System.Text.RegularExpressions.RegexPrefix::get_Prefix()
  1189. extern void RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E (void);
  1190. // 0x00000250 System.Void System.Text.RegularExpressions.RegexPrefix::.cctor()
  1191. extern void RegexPrefix__cctor_m55930FB75AB023BADBEAB107BE38A1A559DDB7F2 (void);
  1192. // 0x00000251 System.Void System.Text.RegularExpressions.RegexReplacement::.ctor(System.String,System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable)
  1193. extern void RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5 (void);
  1194. // 0x00000252 System.Text.RegularExpressions.RegexReplacement System.Text.RegularExpressions.RegexReplacement::GetOrCreate(System.WeakReference`1<System.Text.RegularExpressions.RegexReplacement>,System.String,System.Collections.Hashtable,System.Int32,System.Collections.Hashtable,System.Text.RegularExpressions.RegexOptions)
  1195. extern void RegexReplacement_GetOrCreate_m2C3E8DB4E10AFC24D45D754E67E5C989F40455F1 (void);
  1196. // 0x00000253 System.String System.Text.RegularExpressions.RegexReplacement::get_Pattern()
  1197. extern void RegexReplacement_get_Pattern_m146EA30FB574587E88DD056AC22F79375C3F55E6 (void);
  1198. // 0x00000254 System.Void System.Text.RegularExpressions.RegexReplacement::ReplacementImpl(System.Text.StringBuilder,System.Text.RegularExpressions.Match)
  1199. extern void RegexReplacement_ReplacementImpl_m60E4B82702C44912E56FED402AC793E7B7CCC7E8 (void);
  1200. // 0x00000255 System.Void System.Text.RegularExpressions.RegexReplacement::ReplacementImplRTL(System.Collections.Generic.List`1<System.String>,System.Text.RegularExpressions.Match)
  1201. extern void RegexReplacement_ReplacementImplRTL_m343AE6575EE1B8810D049CA7F8203237920C84E0 (void);
  1202. // 0x00000256 System.String System.Text.RegularExpressions.RegexReplacement::Replace(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32)
  1203. extern void RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9 (void);
  1204. // 0x00000257 System.Void System.Text.RegularExpressions.RegexRunner::.ctor()
  1205. extern void RegexRunner__ctor_mBC777F351AD6D1CDD5F20C408B936F7D0F36ED69 (void);
  1206. // 0x00000258 System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::Scan(System.Text.RegularExpressions.Regex,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Boolean,System.TimeSpan)
  1207. extern void RegexRunner_Scan_m903691F4DFB68C0267F240D61A6F166BB592CE53 (void);
  1208. // 0x00000259 System.Void System.Text.RegularExpressions.RegexRunner::StartTimeoutWatch()
  1209. extern void RegexRunner_StartTimeoutWatch_mA17870A15492787CA1384132267054AB09BE8BE9 (void);
  1210. // 0x0000025A System.Void System.Text.RegularExpressions.RegexRunner::CheckTimeout()
  1211. extern void RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120 (void);
  1212. // 0x0000025B System.Void System.Text.RegularExpressions.RegexRunner::DoCheckTimeout()
  1213. extern void RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5 (void);
  1214. // 0x0000025C System.Void System.Text.RegularExpressions.RegexRunner::Go()
  1215. // 0x0000025D System.Boolean System.Text.RegularExpressions.RegexRunner::FindFirstChar()
  1216. // 0x0000025E System.Void System.Text.RegularExpressions.RegexRunner::InitTrackCount()
  1217. // 0x0000025F System.Void System.Text.RegularExpressions.RegexRunner::InitMatch()
  1218. extern void RegexRunner_InitMatch_mCCF94A1E7CCE89275E47BB218C4DD58DF5D5593D (void);
  1219. // 0x00000260 System.Text.RegularExpressions.Match System.Text.RegularExpressions.RegexRunner::TidyMatch(System.Boolean)
  1220. extern void RegexRunner_TidyMatch_m0EEEF0CFBB55AFF485B4D9F9FD21834B9B3A01FA (void);
  1221. // 0x00000261 System.Void System.Text.RegularExpressions.RegexRunner::EnsureStorage()
  1222. extern void RegexRunner_EnsureStorage_mB3DB043396771740A05B2AABC293DAAB1250B024 (void);
  1223. // 0x00000262 System.Boolean System.Text.RegularExpressions.RegexRunner::IsBoundary(System.Int32,System.Int32,System.Int32)
  1224. extern void RegexRunner_IsBoundary_mCF4AE83F6FE3CC46C71C4558DBCDEC255BD422B8 (void);
  1225. // 0x00000263 System.Boolean System.Text.RegularExpressions.RegexRunner::IsECMABoundary(System.Int32,System.Int32,System.Int32)
  1226. extern void RegexRunner_IsECMABoundary_m56C692126DF69F0933BBFCBF122F764C6093DA26 (void);
  1227. // 0x00000264 System.Void System.Text.RegularExpressions.RegexRunner::DoubleTrack()
  1228. extern void RegexRunner_DoubleTrack_m15E35365FAF5F438C7BD0BB0C37594F765949F1F (void);
  1229. // 0x00000265 System.Void System.Text.RegularExpressions.RegexRunner::DoubleStack()
  1230. extern void RegexRunner_DoubleStack_m89C12DF438D7BE4ADA2A4D1DFA36F274F292E1F4 (void);
  1231. // 0x00000266 System.Void System.Text.RegularExpressions.RegexRunner::DoubleCrawl()
  1232. extern void RegexRunner_DoubleCrawl_m7B67CFD3071825C9F01BC0ACE0E27B1C4EC6DED5 (void);
  1233. // 0x00000267 System.Void System.Text.RegularExpressions.RegexRunner::Crawl(System.Int32)
  1234. extern void RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5 (void);
  1235. // 0x00000268 System.Int32 System.Text.RegularExpressions.RegexRunner::Popcrawl()
  1236. extern void RegexRunner_Popcrawl_m2C994BE22A9A4DE0D897691A1CEF87189DB43E67 (void);
  1237. // 0x00000269 System.Int32 System.Text.RegularExpressions.RegexRunner::Crawlpos()
  1238. extern void RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532 (void);
  1239. // 0x0000026A System.Void System.Text.RegularExpressions.RegexRunner::Capture(System.Int32,System.Int32,System.Int32)
  1240. extern void RegexRunner_Capture_m3EB42B55A19BD7776156F04CBE9367C6EBA59F9C (void);
  1241. // 0x0000026B System.Void System.Text.RegularExpressions.RegexRunner::TransferCapture(System.Int32,System.Int32,System.Int32,System.Int32)
  1242. extern void RegexRunner_TransferCapture_m642CC595E9FA641B913CCBE02E233DBB319A6E8A (void);
  1243. // 0x0000026C System.Void System.Text.RegularExpressions.RegexRunner::Uncapture()
  1244. extern void RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9 (void);
  1245. // 0x0000026D System.Boolean System.Text.RegularExpressions.RegexRunner::IsMatched(System.Int32)
  1246. extern void RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C (void);
  1247. // 0x0000026E System.Int32 System.Text.RegularExpressions.RegexRunner::MatchIndex(System.Int32)
  1248. extern void RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F (void);
  1249. // 0x0000026F System.Int32 System.Text.RegularExpressions.RegexRunner::MatchLength(System.Int32)
  1250. extern void RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7 (void);
  1251. // 0x00000270 System.Text.RegularExpressions.RegexRunner System.Text.RegularExpressions.RegexRunnerFactory::CreateInstance()
  1252. // 0x00000271 System.Void System.Text.RegularExpressions.RegexTree::.ctor(System.Text.RegularExpressions.RegexNode,System.Collections.Hashtable,System.Int32[],System.Int32,System.Collections.Hashtable,System.String[],System.Text.RegularExpressions.RegexOptions)
  1253. extern void RegexTree__ctor_m89DA1335AAB55B0707774E978E6078CE42DB0DA6 (void);
  1254. // 0x00000272 System.Void System.Text.RegularExpressions.RegexWriter::.ctor(System.Span`1<System.Int32>,System.Span`1<System.Int32>)
  1255. extern void RegexWriter__ctor_m37DF964F59213D287C9D812A3D0945744BF341EE (void);
  1256. // 0x00000273 System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::Write(System.Text.RegularExpressions.RegexTree)
  1257. extern void RegexWriter_Write_m69A5583635E511D67176A977E96C17AC982C4F01 (void);
  1258. // 0x00000274 System.Void System.Text.RegularExpressions.RegexWriter::Dispose()
  1259. extern void RegexWriter_Dispose_mD34F8BFC41D28F22FBC65E3F1A211DFE85625E04 (void);
  1260. // 0x00000275 System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.RegexWriter::RegexCodeFromRegexTree(System.Text.RegularExpressions.RegexTree)
  1261. extern void RegexWriter_RegexCodeFromRegexTree_m3352CAF05A1B1753D32D768B83BB778B3E2D4568 (void);
  1262. // 0x00000276 System.Void System.Text.RegularExpressions.RegexWriter::PatchJump(System.Int32,System.Int32)
  1263. extern void RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6 (void);
  1264. // 0x00000277 System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32)
  1265. extern void RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC (void);
  1266. // 0x00000278 System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32)
  1267. extern void RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75 (void);
  1268. // 0x00000279 System.Void System.Text.RegularExpressions.RegexWriter::Emit(System.Int32,System.Int32,System.Int32)
  1269. extern void RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C (void);
  1270. // 0x0000027A System.Int32 System.Text.RegularExpressions.RegexWriter::StringCode(System.String)
  1271. extern void RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE (void);
  1272. // 0x0000027B System.Int32 System.Text.RegularExpressions.RegexWriter::MapCapnum(System.Int32)
  1273. extern void RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6 (void);
  1274. // 0x0000027C System.Void System.Text.RegularExpressions.RegexWriter::EmitFragment(System.Int32,System.Text.RegularExpressions.RegexNode,System.Int32)
  1275. extern void RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5 (void);
  1276. // 0x0000027D System.Void System.Diagnostics.AsyncStreamReader::Close()
  1277. extern void AsyncStreamReader_Close_m0E2C4AE11462C4E48FA868098E96C3383F760FF7 (void);
  1278. // 0x0000027E System.Void System.Diagnostics.AsyncStreamReader::Dispose(System.Boolean)
  1279. extern void AsyncStreamReader_Dispose_mCE17ACF06D4F7EBDB9275ADC2C6F8AF09BDE2402 (void);
  1280. // 0x0000027F System.Void System.Diagnostics.AsyncStreamReader::CancelOperation()
  1281. extern void AsyncStreamReader_CancelOperation_mFB9524C17B1668A1B804DFACB9475F4FD7849982 (void);
  1282. // 0x00000280 System.Void System.Diagnostics.Process::.ctor()
  1283. extern void Process__ctor_m0FC7997861C052C396D53CBEDE53D2DDA388FDA0 (void);
  1284. // 0x00000281 System.Void System.Diagnostics.Process::.ctor(System.String,System.Boolean,System.Int32,System.Diagnostics.ProcessInfo)
  1285. extern void Process__ctor_m6A606F7D939C8186E6DFD910A65FE6AEFE0D725C (void);
  1286. // 0x00000282 System.Boolean System.Diagnostics.Process::get_Associated()
  1287. extern void Process_get_Associated_m937DBB0D3D22199FDAE59C73CB94291D41E903F5 (void);
  1288. // 0x00000283 System.Boolean System.Diagnostics.Process::get_HasExited()
  1289. extern void Process_get_HasExited_m579B038BCCBC4C468970D4CB171173FAB4FFA7C6 (void);
  1290. // 0x00000284 System.IntPtr System.Diagnostics.Process::get_Handle()
  1291. extern void Process_get_Handle_m4602F950B067EC1D445B27D62C6097F949A6D5A9 (void);
  1292. // 0x00000285 System.Diagnostics.ProcessStartInfo System.Diagnostics.Process::get_StartInfo()
  1293. extern void Process_get_StartInfo_m5CF742569E93D773509E27125BB14581C02B3FE5 (void);
  1294. // 0x00000286 System.Void System.Diagnostics.Process::set_StartInfo(System.Diagnostics.ProcessStartInfo)
  1295. extern void Process_set_StartInfo_m89C367BE7A1E957307F490DF1FBC99B60CC78084 (void);
  1296. // 0x00000287 System.ComponentModel.ISynchronizeInvoke System.Diagnostics.Process::get_SynchronizingObject()
  1297. extern void Process_get_SynchronizingObject_mBDAE5545C753268148A7C6FC28DEADDC964769B7 (void);
  1298. // 0x00000288 System.Void System.Diagnostics.Process::ReleaseProcessHandle(Microsoft.Win32.SafeHandles.SafeProcessHandle)
  1299. extern void Process_ReleaseProcessHandle_m3A7BE4BCA49D9A5C1174975C11B78E4D6F8901BD (void);
  1300. // 0x00000289 System.Void System.Diagnostics.Process::CompletionCallback(System.Object,System.Boolean)
  1301. extern void Process_CompletionCallback_mC08909238807837F337100DEABF21065037C8598 (void);
  1302. // 0x0000028A System.Void System.Diagnostics.Process::Dispose(System.Boolean)
  1303. extern void Process_Dispose_mF933D46A45CED6769611FA84D148AA7D44505ABC (void);
  1304. // 0x0000028B System.Void System.Diagnostics.Process::Close()
  1305. extern void Process_Close_m1319814A5C51B6B53330B294CD961D7221630CAB (void);
  1306. // 0x0000028C System.Void System.Diagnostics.Process::EnsureState(System.Diagnostics.Process/State)
  1307. extern void Process_EnsureState_mAF2E5BE1A4336E9710E74508D3A9B16C7049B8F1 (void);
  1308. // 0x0000028D System.Void System.Diagnostics.Process::EnsureWatchingForExit()
  1309. extern void Process_EnsureWatchingForExit_m31486499794A4913C46D20451AF87F2860A51BA9 (void);
  1310. // 0x0000028E System.Diagnostics.Process System.Diagnostics.Process::GetCurrentProcess()
  1311. extern void Process_GetCurrentProcess_mB9E146001302DA6A60946152A09E8205E5FD2F0E (void);
  1312. // 0x0000028F System.Void System.Diagnostics.Process::OnExited()
  1313. extern void Process_OnExited_m16FF7289D7B34FE7F2EF6E2FDB8730C4E79052CB (void);
  1314. // 0x00000290 Microsoft.Win32.SafeHandles.SafeProcessHandle System.Diagnostics.Process::GetProcessHandle(System.Int32,System.Boolean)
  1315. extern void Process_GetProcessHandle_m779733CC7F7164522150D645C936457CD8482370 (void);
  1316. // 0x00000291 Microsoft.Win32.SafeHandles.SafeProcessHandle System.Diagnostics.Process::GetProcessHandle(System.Int32)
  1317. extern void Process_GetProcessHandle_mA1CF28D2E052D42DFDF95456FF74DF6D5F9DEFAB (void);
  1318. // 0x00000292 Microsoft.Win32.SafeHandles.SafeProcessHandle System.Diagnostics.Process::OpenProcessHandle(System.Int32)
  1319. extern void Process_OpenProcessHandle_mD12E1806003C1E62BAF1DC75BCE1AD4A6FC45241 (void);
  1320. // 0x00000293 System.Void System.Diagnostics.Process::Refresh()
  1321. extern void Process_Refresh_mE0363D6E2713A0002941C693EF50BD1B0593198B (void);
  1322. // 0x00000294 System.Void System.Diagnostics.Process::SetProcessHandle(Microsoft.Win32.SafeHandles.SafeProcessHandle)
  1323. extern void Process_SetProcessHandle_m70C1DBD7470DED1AFADE66C06B9F979CA130A6AD (void);
  1324. // 0x00000295 System.Void System.Diagnostics.Process::SetProcessId(System.Int32)
  1325. extern void Process_SetProcessId_m7C765380F5141C71F66B200830C3F0BB0A00A78D (void);
  1326. // 0x00000296 System.Boolean System.Diagnostics.Process::Start()
  1327. extern void Process_Start_m1255D653552F95A3D7FEEA60DA9201E946AC2921 (void);
  1328. // 0x00000297 System.Diagnostics.Process System.Diagnostics.Process::Start(System.String)
  1329. extern void Process_Start_mA1D50105E0F1FE21AB2687231373BA66F0B51B79 (void);
  1330. // 0x00000298 System.Diagnostics.Process System.Diagnostics.Process::Start(System.Diagnostics.ProcessStartInfo)
  1331. extern void Process_Start_m35C2A82F8543B6F2F5B6CA57E9BA966C6C1BCA79 (void);
  1332. // 0x00000299 System.Void System.Diagnostics.Process::StopWatchingForExit()
  1333. extern void Process_StopWatchingForExit_mBAD0DCA6C4ED339EDF09413F34C965E9A757CA54 (void);
  1334. // 0x0000029A System.String System.Diagnostics.Process::ToString()
  1335. extern void Process_ToString_m5D55F0EEA76377972D53D3757A4132CCCC0A5F87 (void);
  1336. // 0x0000029B System.String System.Diagnostics.Process::ProcessName_icall(System.IntPtr)
  1337. extern void Process_ProcessName_icall_mAE42225C42C02219D3C2511B4FFF71F91621B3A2 (void);
  1338. // 0x0000029C System.String System.Diagnostics.Process::ProcessName_internal(Microsoft.Win32.SafeHandles.SafeProcessHandle)
  1339. extern void Process_ProcessName_internal_m39C7A89722F7A787104B17915F61E77F05A809D6 (void);
  1340. // 0x0000029D System.String System.Diagnostics.Process::get_ProcessName()
  1341. extern void Process_get_ProcessName_mC66C70C57531D1DA91A51FCBA2CA41086B739C63 (void);
  1342. // 0x0000029E System.Boolean System.Diagnostics.Process::ShellExecuteEx_internal(System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process/ProcInfo&)
  1343. extern void Process_ShellExecuteEx_internal_mA9CEB4E599A13AC37DCB7045484AD544E4E30A6D (void);
  1344. // 0x0000029F System.Boolean System.Diagnostics.Process::CreateProcess_internal(System.Diagnostics.ProcessStartInfo,System.IntPtr,System.IntPtr,System.IntPtr,System.Diagnostics.Process/ProcInfo&)
  1345. extern void Process_CreateProcess_internal_m336933D160945885B1EE7209DF24F187C283DCAE (void);
  1346. // 0x000002A0 System.Boolean System.Diagnostics.Process::StartWithShellExecuteEx(System.Diagnostics.ProcessStartInfo)
  1347. extern void Process_StartWithShellExecuteEx_mE88F4112E3EA6F847CDDD259904AF1548C5D4410 (void);
  1348. // 0x000002A1 System.Void System.Diagnostics.Process::CreatePipe(System.IntPtr&,System.IntPtr&,System.Boolean)
  1349. extern void Process_CreatePipe_m2E4AFFB9004179A99C29A12F6A88B676486338AC (void);
  1350. // 0x000002A2 System.Boolean System.Diagnostics.Process::get_IsWindows()
  1351. extern void Process_get_IsWindows_m9CB02EEF63AFDEFB8791BCD3DF4C05419C7617EA (void);
  1352. // 0x000002A3 System.Boolean System.Diagnostics.Process::StartWithCreateProcess(System.Diagnostics.ProcessStartInfo)
  1353. extern void Process_StartWithCreateProcess_mA5541702C79F96AC772473AAD725A3A78F0CD2D0 (void);
  1354. // 0x000002A4 System.Void System.Diagnostics.Process::FillUserInfo(System.Diagnostics.ProcessStartInfo,System.Diagnostics.Process/ProcInfo&)
  1355. extern void Process_FillUserInfo_mC7D3B7AD3C0940CE437C6702FF0AD23C102828F2 (void);
  1356. // 0x000002A5 System.Void System.Diagnostics.Process::RaiseOnExited()
  1357. extern void Process_RaiseOnExited_mAE4A537F5FA32E4F6F283B0D665D41A6CBEFB420 (void);
  1358. // 0x000002A6 System.Void System.Diagnostics.ProcessStartInfo::.ctor(System.Diagnostics.Process)
  1359. extern void ProcessStartInfo__ctor_mB83B1F3722B69B6A212B85ADDCB636E63E6EE09F (void);
  1360. // 0x000002A7 System.Void System.Diagnostics.ProcessStartInfo::.ctor(System.String)
  1361. extern void ProcessStartInfo__ctor_m61D7C61CBD55C32AD1DE83E1C17279F1241AE16E (void);
  1362. // 0x000002A8 System.Collections.ObjectModel.Collection`1<System.String> System.Diagnostics.ProcessStartInfo::get_ArgumentList()
  1363. extern void ProcessStartInfo_get_ArgumentList_mB8D94EA559605295AACF34CEFD80E7B7DC73AADC (void);
  1364. // 0x000002A9 System.String System.Diagnostics.ProcessStartInfo::get_Arguments()
  1365. extern void ProcessStartInfo_get_Arguments_mA584AC8FB8210FFE888AA42532AD3A31784D6EC7 (void);
  1366. // 0x000002AA System.Void System.Diagnostics.ProcessStartInfo::set_Arguments(System.String)
  1367. extern void ProcessStartInfo_set_Arguments_mB0FD15AAE263A0BE623B23A0FCB2E8091B73335E (void);
  1368. // 0x000002AB System.Collections.Specialized.StringDictionary System.Diagnostics.ProcessStartInfo::get_EnvironmentVariables()
  1369. extern void ProcessStartInfo_get_EnvironmentVariables_m2D3A45132BAA93948D2018F9A1E04D465D20776D (void);
  1370. // 0x000002AC System.Boolean System.Diagnostics.ProcessStartInfo::get_RedirectStandardInput()
  1371. extern void ProcessStartInfo_get_RedirectStandardInput_m26C0E09A37FDFE804FE4A669D03DF377D96BE9E7 (void);
  1372. // 0x000002AD System.Boolean System.Diagnostics.ProcessStartInfo::get_RedirectStandardOutput()
  1373. extern void ProcessStartInfo_get_RedirectStandardOutput_mB52CFF493E90893AEAE01C85ED162547646BFEC0 (void);
  1374. // 0x000002AE System.Boolean System.Diagnostics.ProcessStartInfo::get_RedirectStandardError()
  1375. extern void ProcessStartInfo_get_RedirectStandardError_m88E395C99E3FA8D289ABF575EA400E11F02C449A (void);
  1376. // 0x000002AF System.Text.Encoding System.Diagnostics.ProcessStartInfo::get_StandardErrorEncoding()
  1377. extern void ProcessStartInfo_get_StandardErrorEncoding_m7F14E239FB2676D432EC8C75FFE9D7506B4FE8BF (void);
  1378. // 0x000002B0 System.Text.Encoding System.Diagnostics.ProcessStartInfo::get_StandardOutputEncoding()
  1379. extern void ProcessStartInfo_get_StandardOutputEncoding_mCFBE2B3FFC5FF52DCA9A0D7F8F7E5990F9340066 (void);
  1380. // 0x000002B1 System.Boolean System.Diagnostics.ProcessStartInfo::get_UseShellExecute()
  1381. extern void ProcessStartInfo_get_UseShellExecute_m5A39BF230D7E14AB73D31AACA175DB66B406E8B7 (void);
  1382. // 0x000002B2 System.String System.Diagnostics.ProcessStartInfo::get_UserName()
  1383. extern void ProcessStartInfo_get_UserName_m85741EF26D7D9707B4DC8492EE2318045F716D60 (void);
  1384. // 0x000002B3 System.Security.SecureString System.Diagnostics.ProcessStartInfo::get_Password()
  1385. extern void ProcessStartInfo_get_Password_m41E2B779C5A3CB19DA90C1B88F9973376B2BC4DA (void);
  1386. // 0x000002B4 System.String System.Diagnostics.ProcessStartInfo::get_Domain()
  1387. extern void ProcessStartInfo_get_Domain_mEB80C28F46CA07CAAA39C8266A2350CD003F01A4 (void);
  1388. // 0x000002B5 System.Boolean System.Diagnostics.ProcessStartInfo::get_LoadUserProfile()
  1389. extern void ProcessStartInfo_get_LoadUserProfile_m849B59F3CABDB8965E158A2F7FD696BE0A1D7C42 (void);
  1390. // 0x000002B6 System.String System.Diagnostics.ProcessStartInfo::get_FileName()
  1391. extern void ProcessStartInfo_get_FileName_mF4DC31E6FF1E17A4E6BB8E0928621A825EE0AFDC (void);
  1392. // 0x000002B7 System.String System.Diagnostics.ProcessStartInfo::get_WorkingDirectory()
  1393. extern void ProcessStartInfo_get_WorkingDirectory_m7B39909360A9507AD5F2B91C0DC267BA96A8C885 (void);
  1394. // 0x000002B8 System.Boolean System.Diagnostics.ProcessStartInfo::get_HaveEnvVars()
  1395. extern void ProcessStartInfo_get_HaveEnvVars_m93DFEAECCDF06DEC08F479DB32F3DB2990037698 (void);
  1396. // 0x000002B9 System.Text.Encoding System.Diagnostics.ProcessStartInfo::get_StandardInputEncoding()
  1397. extern void ProcessStartInfo_get_StandardInputEncoding_m678223845EB327856D00DE2F4D519701FDFB5CFA (void);
  1398. // 0x000002BA System.Void System.Diagnostics.ProcessStartInfo::.cctor()
  1399. extern void ProcessStartInfo__cctor_m1CE3CAE8B2C7E8F1BCCAEB4B60A33FE34C7D1E71 (void);
  1400. // 0x000002BB System.Void System.Diagnostics.ProcessWaitHandle::.ctor(Microsoft.Win32.SafeHandles.SafeProcessHandle)
  1401. extern void ProcessWaitHandle__ctor_mB6F85E300A73FD16261E29E69F1ACBF17E0F44EB (void);
  1402. // 0x000002BC System.Void System.Diagnostics.MonitoringDescriptionAttribute::.ctor(System.String)
  1403. extern void MonitoringDescriptionAttribute__ctor_m41C05A99A8DFCA8AB181CC0E06F0B89D183C5CD2 (void);
  1404. // 0x000002BD System.String System.Diagnostics.MonitoringDescriptionAttribute::get_Description()
  1405. extern void MonitoringDescriptionAttribute_get_Description_mD28A2C666D1B4100914C186C9F8C84EC8B2E59CE (void);
  1406. // 0x000002BE System.Int64 System.Diagnostics.Stopwatch::GetTimestamp()
  1407. extern void Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7 (void);
  1408. // 0x000002BF System.Void System.Diagnostics.Stopwatch::.ctor()
  1409. extern void Stopwatch__ctor_mAFE6B2F45CF1C3469EF6D5307972BC098B473D0A (void);
  1410. // 0x000002C0 System.TimeSpan System.Diagnostics.Stopwatch::get_Elapsed()
  1411. extern void Stopwatch_get_Elapsed_mF16CCA2F9B7E2EAEFCAF8D81F44370DBAC1B2178 (void);
  1412. // 0x000002C1 System.Int64 System.Diagnostics.Stopwatch::get_ElapsedMilliseconds()
  1413. extern void Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF (void);
  1414. // 0x000002C2 System.Int64 System.Diagnostics.Stopwatch::get_ElapsedTicks()
  1415. extern void Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410 (void);
  1416. // 0x000002C3 System.Void System.Diagnostics.Stopwatch::Start()
  1417. extern void Stopwatch_Start_m35906A38C7D336CF9DD35854C7E170D762A55915 (void);
  1418. // 0x000002C4 System.Void System.Diagnostics.Stopwatch::Stop()
  1419. extern void Stopwatch_Stop_m8F2A2EFD9D7D5B4180A5E5379E5443864618D7DC (void);
  1420. // 0x000002C5 System.Void System.Diagnostics.Stopwatch::.cctor()
  1421. extern void Stopwatch__cctor_mF9BBC572803E232BF2D323301E90A6AFDB496FB9 (void);
  1422. // 0x000002C6 System.Void System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverageAttribute::.ctor()
  1423. extern void ExcludeFromCodeCoverageAttribute__ctor_m2CB8196E20519167E842D03BE4CFBCC84BEFC9E2 (void);
  1424. // 0x000002C7 System.Void System.Security.Cryptography.Oid::.ctor(System.String)
  1425. extern void Oid__ctor_m4AF81B9D51BED48AE505251E0874EC654BA07B72 (void);
  1426. // 0x000002C8 System.Void System.Security.Cryptography.Oid::.ctor(System.String,System.String)
  1427. extern void Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D (void);
  1428. // 0x000002C9 System.Void System.Security.Cryptography.Oid::.ctor(System.Security.Cryptography.Oid)
  1429. extern void Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59 (void);
  1430. // 0x000002CA System.String System.Security.Cryptography.Oid::get_Value()
  1431. extern void Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3 (void);
  1432. // 0x000002CB System.Void System.Security.Cryptography.Oid::set_Value(System.String)
  1433. extern void Oid_set_Value_m122282994E6EE138CE4284B052EF8BE2086CA72F (void);
  1434. // 0x000002CC System.Void System.Security.Cryptography.OidCollection::.ctor()
  1435. extern void OidCollection__ctor_m9B8C252AE048962DAD7419597007ABA2793F9D98 (void);
  1436. // 0x000002CD System.Int32 System.Security.Cryptography.OidCollection::Add(System.Security.Cryptography.Oid)
  1437. extern void OidCollection_Add_m1D4822DF4EA0B912A1DED6AA102D41F7FAEDC8F5 (void);
  1438. // 0x000002CE System.Security.Cryptography.Oid System.Security.Cryptography.OidCollection::get_Item(System.Int32)
  1439. extern void OidCollection_get_Item_m0AEC71C746E735035A05C50EE2721C1E8FE08F7A (void);
  1440. // 0x000002CF System.Int32 System.Security.Cryptography.OidCollection::get_Count()
  1441. extern void OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11 (void);
  1442. // 0x000002D0 System.Security.Cryptography.OidEnumerator System.Security.Cryptography.OidCollection::GetEnumerator()
  1443. extern void OidCollection_GetEnumerator_mBB791F48E305B3355A1BCE624E0BB367331F82AC (void);
  1444. // 0x000002D1 System.Collections.IEnumerator System.Security.Cryptography.OidCollection::System.Collections.IEnumerable.GetEnumerator()
  1445. extern void OidCollection_System_Collections_IEnumerable_GetEnumerator_m4624AA2C7F0693698228803D9B59EFE6AAD6AFE4 (void);
  1446. // 0x000002D2 System.Void System.Security.Cryptography.OidCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  1447. extern void OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC (void);
  1448. // 0x000002D3 System.Boolean System.Security.Cryptography.OidCollection::get_IsSynchronized()
  1449. extern void OidCollection_get_IsSynchronized_mF751E9C1DBC7A5637C7CD8A0FEB39AB15C74A0A7 (void);
  1450. // 0x000002D4 System.Object System.Security.Cryptography.OidCollection::get_SyncRoot()
  1451. extern void OidCollection_get_SyncRoot_mD310358F3BF4454604AD96C734BA6EC180CE7A85 (void);
  1452. // 0x000002D5 System.Void System.Security.Cryptography.OidEnumerator::.ctor(System.Security.Cryptography.OidCollection)
  1453. extern void OidEnumerator__ctor_m2168FEE96614FB7460C84762ED3728A5413F42E6 (void);
  1454. // 0x000002D6 System.Security.Cryptography.Oid System.Security.Cryptography.OidEnumerator::get_Current()
  1455. extern void OidEnumerator_get_Current_mCED077699FA00ED57FA82F8B460C28B86F1B5C9F (void);
  1456. // 0x000002D7 System.Object System.Security.Cryptography.OidEnumerator::System.Collections.IEnumerator.get_Current()
  1457. extern void OidEnumerator_System_Collections_IEnumerator_get_Current_m0B627B9F510EF4F283F40EBE17164B9231BB7735 (void);
  1458. // 0x000002D8 System.Boolean System.Security.Cryptography.OidEnumerator::MoveNext()
  1459. extern void OidEnumerator_MoveNext_mD42201944C163E81DABDE08B1535C4AB9A5778DD (void);
  1460. // 0x000002D9 System.Void System.Security.Cryptography.OidEnumerator::Reset()
  1461. extern void OidEnumerator_Reset_m24F1F25812A7BFE9B02B312BA9E670C930622F27 (void);
  1462. // 0x000002DA System.Void System.Security.Cryptography.AsnEncodedData::.ctor()
  1463. extern void AsnEncodedData__ctor_m90028EC56A5E36272EAA4A9279AE23358D46F547 (void);
  1464. // 0x000002DB System.Void System.Security.Cryptography.AsnEncodedData::set_Oid(System.Security.Cryptography.Oid)
  1465. extern void AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7 (void);
  1466. // 0x000002DC System.Byte[] System.Security.Cryptography.AsnEncodedData::get_RawData()
  1467. extern void AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF (void);
  1468. // 0x000002DD System.Void System.Security.Cryptography.AsnEncodedData::set_RawData(System.Byte[])
  1469. extern void AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B (void);
  1470. // 0x000002DE System.Void System.Security.Cryptography.AsnEncodedData::CopyFrom(System.Security.Cryptography.AsnEncodedData)
  1471. extern void AsnEncodedData_CopyFrom_mA5DD4A419C5FC29D82DBE9B69C9F8CBC2872A1F2 (void);
  1472. // 0x000002DF System.String System.Security.Cryptography.AsnEncodedData::ToString(System.Boolean)
  1473. extern void AsnEncodedData_ToString_m669772943B78D9242BC5F176A4BD857326F95021 (void);
  1474. // 0x000002E0 System.String System.Security.Cryptography.AsnEncodedData::Default(System.Boolean)
  1475. extern void AsnEncodedData_Default_m883444CBD5238793D1B94A6DE273FF2F9C47EA70 (void);
  1476. // 0x000002E1 System.String System.Security.Cryptography.AsnEncodedData::BasicConstraintsExtension(System.Boolean)
  1477. extern void AsnEncodedData_BasicConstraintsExtension_m74BFC192666755E9D8A088880789AB6EA84F1FCC (void);
  1478. // 0x000002E2 System.String System.Security.Cryptography.AsnEncodedData::EnhancedKeyUsageExtension(System.Boolean)
  1479. extern void AsnEncodedData_EnhancedKeyUsageExtension_m3C95D5D2D8F81BEA5E33B264767C8A5E5575D7CA (void);
  1480. // 0x000002E3 System.String System.Security.Cryptography.AsnEncodedData::KeyUsageExtension(System.Boolean)
  1481. extern void AsnEncodedData_KeyUsageExtension_m9A9C72CF2A831A1849A55336FC8D6DEE097E28D3 (void);
  1482. // 0x000002E4 System.String System.Security.Cryptography.AsnEncodedData::SubjectKeyIdentifierExtension(System.Boolean)
  1483. extern void AsnEncodedData_SubjectKeyIdentifierExtension_m3CEDDCED26AD5621407DAA401F385269348BB789 (void);
  1484. // 0x000002E5 System.String System.Security.Cryptography.AsnEncodedData::SubjectAltName(System.Boolean)
  1485. extern void AsnEncodedData_SubjectAltName_mDE2F39E1A43C1E13D89319F221517EE54B1A6A14 (void);
  1486. // 0x000002E6 System.String System.Security.Cryptography.AsnEncodedData::NetscapeCertType(System.Boolean)
  1487. extern void AsnEncodedData_NetscapeCertType_m55E43EBDA7882304E8FE5F3DC134A2719F519373 (void);
  1488. // 0x000002E7 System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::get_EncodedKeyValue()
  1489. extern void PublicKey_get_EncodedKeyValue_m153EF781728D471C55002A40BBDA435F1B3A1213 (void);
  1490. // 0x000002E8 System.Security.Cryptography.AsnEncodedData System.Security.Cryptography.X509Certificates.PublicKey::get_EncodedParameters()
  1491. extern void PublicKey_get_EncodedParameters_mE338A4A69A15907E38A644D624A07DDD55C521E0 (void);
  1492. // 0x000002E9 System.Security.Cryptography.Oid System.Security.Cryptography.X509Certificates.PublicKey::get_Oid()
  1493. extern void PublicKey_get_Oid_mB5796F569C136759CB740F747C6A3B6F8976401A (void);
  1494. // 0x000002EA System.Void System.Security.Cryptography.X509Certificates.PublicKey::.cctor()
  1495. extern void PublicKey__cctor_m1B2E44B5BBF321952E0FD1F19C048E43A6506407 (void);
  1496. // 0x000002EB System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor()
  1497. extern void X509BasicConstraintsExtension__ctor_m672BE9B41107A8C30454BF4CAC120D70512BA89A (void);
  1498. // 0x000002EC System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
  1499. extern void X509BasicConstraintsExtension__ctor_m76C88E8D4C7CCEC7B2C3D56CC58A56352F7729E4 (void);
  1500. // 0x000002ED System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::.ctor(System.Boolean,System.Boolean,System.Int32,System.Boolean)
  1501. extern void X509BasicConstraintsExtension__ctor_m02334D8CAA280B339CA41E2019CF1F02C8B2E7DE (void);
  1502. // 0x000002EE System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::get_CertificateAuthority()
  1503. extern void X509BasicConstraintsExtension_get_CertificateAuthority_mB4ECEF43A245E97DA80C6323BE339BE2DF99FF5C (void);
  1504. // 0x000002EF System.Boolean System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::get_HasPathLengthConstraint()
  1505. extern void X509BasicConstraintsExtension_get_HasPathLengthConstraint_m8F7C371EFF99BD110663DB106BEE889955255BC7 (void);
  1506. // 0x000002F0 System.Int32 System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::get_PathLengthConstraint()
  1507. extern void X509BasicConstraintsExtension_get_PathLengthConstraint_m4D3F016E42C243887D07DD955518A818DC14BBC5 (void);
  1508. // 0x000002F1 System.Void System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::CopyFrom(System.Security.Cryptography.AsnEncodedData)
  1509. extern void X509BasicConstraintsExtension_CopyFrom_mCC603D99CEC828BDF86FDEB3C4650CF4D3753B8E (void);
  1510. // 0x000002F2 System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::Decode(System.Byte[])
  1511. extern void X509BasicConstraintsExtension_Decode_m7C50097B6238FEF4DAD6A9A09A449DB0CAFFEBEB (void);
  1512. // 0x000002F3 System.Byte[] System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::Encode()
  1513. extern void X509BasicConstraintsExtension_Encode_mD7FA31A70B025F67062C3844E4FEB09B14A4DE2B (void);
  1514. // 0x000002F4 System.String System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension::ToString(System.Boolean)
  1515. extern void X509BasicConstraintsExtension_ToString_mBFC61BA07CD2BB8EACCC19A5AE72EA81C11D02E4 (void);
  1516. // 0x000002F5 System.Void System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
  1517. extern void X509EnhancedKeyUsageExtension__ctor_mBDA55EB3C6594D4F6A06102B4EAF633F86C3E092 (void);
  1518. // 0x000002F6 System.Void System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::CopyFrom(System.Security.Cryptography.AsnEncodedData)
  1519. extern void X509EnhancedKeyUsageExtension_CopyFrom_m9577FF97B8E3074B12B7056BF7E30AA0F84309BF (void);
  1520. // 0x000002F7 System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::Decode(System.Byte[])
  1521. extern void X509EnhancedKeyUsageExtension_Decode_m1110DD9BD5D717540009DB5D90805458CF07423C (void);
  1522. // 0x000002F8 System.String System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension::ToString(System.Boolean)
  1523. extern void X509EnhancedKeyUsageExtension_ToString_m9576793CE590716A3BB5AAC1632F946DF75605DE (void);
  1524. // 0x000002F9 System.Void System.Security.Cryptography.X509Certificates.X509Extension::.ctor()
  1525. extern void X509Extension__ctor_mFC88C10C2C6718E6AE74CE37E10D4EBB8FD67BAC (void);
  1526. // 0x000002FA System.Boolean System.Security.Cryptography.X509Certificates.X509Extension::get_Critical()
  1527. extern void X509Extension_get_Critical_mEF827F09D95784210C2F8D5FD7BE27BB54803E35 (void);
  1528. // 0x000002FB System.Void System.Security.Cryptography.X509Certificates.X509Extension::set_Critical(System.Boolean)
  1529. extern void X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF (void);
  1530. // 0x000002FC System.Void System.Security.Cryptography.X509Certificates.X509Extension::CopyFrom(System.Security.Cryptography.AsnEncodedData)
  1531. extern void X509Extension_CopyFrom_m674ABC4ECF701B708C28B546B42B7799CA24D4A9 (void);
  1532. // 0x000002FD System.String System.Security.Cryptography.X509Certificates.X509Extension::FormatUnkownData(System.Byte[])
  1533. extern void X509Extension_FormatUnkownData_mD0463F5096A6937E95E3165048299CBA9A1A6F7D (void);
  1534. // 0x000002FE System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::.ctor()
  1535. extern void X509KeyUsageExtension__ctor_mE0EE68497EDEDD78213EEDC931D68DD35DF6340C (void);
  1536. // 0x000002FF System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
  1537. extern void X509KeyUsageExtension__ctor_m1DE9CD768712A07E5803496501CCFDA81CFB2689 (void);
  1538. // 0x00000300 System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::.ctor(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags,System.Boolean)
  1539. extern void X509KeyUsageExtension__ctor_m2FAA526721435935D0B10E0DB916AF56CFD84751 (void);
  1540. // 0x00000301 System.Security.Cryptography.X509Certificates.X509KeyUsageFlags System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::get_KeyUsages()
  1541. extern void X509KeyUsageExtension_get_KeyUsages_m1BD6C5BC6E3E380982C135B2E81731435345144F (void);
  1542. // 0x00000302 System.Void System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::CopyFrom(System.Security.Cryptography.AsnEncodedData)
  1543. extern void X509KeyUsageExtension_CopyFrom_mCBCF5CA17676B2030F6C82ED80A008EF029AF733 (void);
  1544. // 0x00000303 System.Security.Cryptography.X509Certificates.X509KeyUsageFlags System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::GetValidFlags(System.Security.Cryptography.X509Certificates.X509KeyUsageFlags)
  1545. extern void X509KeyUsageExtension_GetValidFlags_m82B1C7DA4F4E0F16090782189E1B4984D133BB45 (void);
  1546. // 0x00000304 System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::Decode(System.Byte[])
  1547. extern void X509KeyUsageExtension_Decode_mB64239ABDEA862E43E26CF324D3E41ECCF3088BC (void);
  1548. // 0x00000305 System.Byte[] System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::Encode()
  1549. extern void X509KeyUsageExtension_Encode_m38D20B2FB68EDF3594EDC0D9BA88800ABF305542 (void);
  1550. // 0x00000306 System.String System.Security.Cryptography.X509Certificates.X509KeyUsageExtension::ToString(System.Boolean)
  1551. extern void X509KeyUsageExtension_ToString_m270131139984275D7571120A2984F0F5E77E79DC (void);
  1552. // 0x00000307 System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor()
  1553. extern void X509SubjectKeyIdentifierExtension__ctor_mFC2A19B1301ABBA5F6C5CE407ABC4F4CA1EB49B1 (void);
  1554. // 0x00000308 System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Security.Cryptography.AsnEncodedData,System.Boolean)
  1555. extern void X509SubjectKeyIdentifierExtension__ctor_m421293DCB67F3A918098962166B8166FD9657D08 (void);
  1556. // 0x00000309 System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Byte[],System.Boolean)
  1557. extern void X509SubjectKeyIdentifierExtension__ctor_m610C9C804421B7CB519F3A5C7D66827CC1106EE1 (void);
  1558. // 0x0000030A System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.String,System.Boolean)
  1559. extern void X509SubjectKeyIdentifierExtension__ctor_mECF6398B9841FB4533228FE77F51F93316EADE94 (void);
  1560. // 0x0000030B System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Security.Cryptography.X509Certificates.PublicKey,System.Boolean)
  1561. extern void X509SubjectKeyIdentifierExtension__ctor_m3DD2C4E1505A6E625499FBD833BFC076D28D83EB (void);
  1562. // 0x0000030C System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::.ctor(System.Security.Cryptography.X509Certificates.PublicKey,System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierHashAlgorithm,System.Boolean)
  1563. extern void X509SubjectKeyIdentifierExtension__ctor_m1858C1B050FAF65946B790737652E874781B4B56 (void);
  1564. // 0x0000030D System.String System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::get_SubjectKeyIdentifier()
  1565. extern void X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier_mFF2A155072C67F430E7F4B178733A80388943CBA (void);
  1566. // 0x0000030E System.Void System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::CopyFrom(System.Security.Cryptography.AsnEncodedData)
  1567. extern void X509SubjectKeyIdentifierExtension_CopyFrom_m959BB16C6973B1B565D02ED9993AF9069019D77A (void);
  1568. // 0x0000030F System.Byte System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::FromHexChar(System.Char)
  1569. extern void X509SubjectKeyIdentifierExtension_FromHexChar_m6A90ECC8622DD1D2DEA0FB18356E97B15E8371A9 (void);
  1570. // 0x00000310 System.Byte System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::FromHexChars(System.Char,System.Char)
  1571. extern void X509SubjectKeyIdentifierExtension_FromHexChars_mFBC6B2009778633420F9F4FF38D7E641FBF63EFA (void);
  1572. // 0x00000311 System.Byte[] System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::FromHex(System.String)
  1573. extern void X509SubjectKeyIdentifierExtension_FromHex_m0C965FECB6AC9330589DBDC182E7EA34EFE4195D (void);
  1574. // 0x00000312 System.Security.Cryptography.AsnDecodeStatus System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::Decode(System.Byte[])
  1575. extern void X509SubjectKeyIdentifierExtension_Decode_m9E9B87F478F55E202411CBCE3AA314CBF73C7F30 (void);
  1576. // 0x00000313 System.Byte[] System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::Encode()
  1577. extern void X509SubjectKeyIdentifierExtension_Encode_m8746D45CE4AC46543D3332BC6001FA1BC7A72CB3 (void);
  1578. // 0x00000314 System.String System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension::ToString(System.Boolean)
  1579. extern void X509SubjectKeyIdentifierExtension_ToString_m9AE51334149DE6200E554F9C30E2DC5570D36707 (void);
  1580. // 0x00000315 System.Boolean System.Net.IPAddress::get_IsIPv4()
  1581. extern void IPAddress_get_IsIPv4_m912994B89DDE21F85E4FE40381CDFF1688BE3F38 (void);
  1582. // 0x00000316 System.Boolean System.Net.IPAddress::get_IsIPv6()
  1583. extern void IPAddress_get_IsIPv6_m957F80A11C7E40C2CCAE554F12AA547E387B6884 (void);
  1584. // 0x00000317 System.UInt32 System.Net.IPAddress::get_PrivateAddress()
  1585. extern void IPAddress_get_PrivateAddress_mE1CD072F1E7BDF981FD71CBD984F5FD2A2EC6399 (void);
  1586. // 0x00000318 System.Void System.Net.IPAddress::set_PrivateAddress(System.UInt32)
  1587. extern void IPAddress_set_PrivateAddress_m73BD8A117538CBDB80F8FF47D31609FA4855D74E (void);
  1588. // 0x00000319 System.UInt32 System.Net.IPAddress::get_PrivateScopeId()
  1589. extern void IPAddress_get_PrivateScopeId_m3C01EDB8971607BAC0398557E295B5A818191532 (void);
  1590. // 0x0000031A System.Void System.Net.IPAddress::set_PrivateScopeId(System.UInt32)
  1591. extern void IPAddress_set_PrivateScopeId_m2BA43F20C3B975BDAC6E330C09E09BFD34594A42 (void);
  1592. // 0x0000031B System.Void System.Net.IPAddress::.ctor(System.Int64)
  1593. extern void IPAddress__ctor_mC240D2060BA0F5A96D286CDE3772FE4354D7030B (void);
  1594. // 0x0000031C System.Void System.Net.IPAddress::.ctor(System.Byte[],System.Int64)
  1595. extern void IPAddress__ctor_m8D2578858CF6F8E56591F45C8A14150DEFFA44F5 (void);
  1596. // 0x0000031D System.Void System.Net.IPAddress::.ctor(System.ReadOnlySpan`1<System.Byte>,System.Int64)
  1597. extern void IPAddress__ctor_mFD3C42E1EECC3099D6E347238FB2A0EBE822AF19 (void);
  1598. // 0x0000031E System.Net.Sockets.AddressFamily System.Net.IPAddress::get_AddressFamily()
  1599. extern void IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21 (void);
  1600. // 0x0000031F System.String System.Net.IPAddress::ToString()
  1601. extern void IPAddress_ToString_m91FE727877BEAA0115F497387E2E9CB0B45C3895 (void);
  1602. // 0x00000320 System.Boolean System.Net.IPAddress::Equals(System.Object,System.Boolean)
  1603. extern void IPAddress_Equals_mC4514B3B7F9B95B79A1121706C115AECE61636C7 (void);
  1604. // 0x00000321 System.Boolean System.Net.IPAddress::Equals(System.Object)
  1605. extern void IPAddress_Equals_m5EA56A0CBC4F66012C11628D8CC75E03E5A8C462 (void);
  1606. // 0x00000322 System.Int32 System.Net.IPAddress::GetHashCode()
  1607. extern void IPAddress_GetHashCode_m243850627E81961E58E3A7A0A39A1F365C47A4BA (void);
  1608. // 0x00000323 System.Byte[] System.Net.IPAddress::ThrowAddressNullException()
  1609. extern void IPAddress_ThrowAddressNullException_m2D5037C15BE289427E4A761A643C4F26C2F3F034 (void);
  1610. // 0x00000324 System.Void System.Net.IPAddress::.cctor()
  1611. extern void IPAddress__cctor_m83F9B947B6C0D0F8DEA3E0C62FCCC2573495D6CA (void);
  1612. // 0x00000325 System.Void System.Net.IPAddress/ReadOnlyIPAddress::.ctor(System.Int64)
  1613. extern void ReadOnlyIPAddress__ctor_m0E47AC9070535FCCC4796C165AC8DAB6FA2B5AC5 (void);
  1614. // 0x00000326 System.String System.Net.IPAddressParser::IPv4AddressToString(System.UInt32)
  1615. extern void IPAddressParser_IPv4AddressToString_m3D56686708BDA87E76737D94441BF1AE486922D2 (void);
  1616. // 0x00000327 System.Void System.Net.IPAddressParser::IPv4AddressToString(System.UInt32,System.Text.StringBuilder)
  1617. extern void IPAddressParser_IPv4AddressToString_m4113E0673C882A7CB1313639E2836FB24B9BC6A0 (void);
  1618. // 0x00000328 System.Int32 System.Net.IPAddressParser::IPv4AddressToStringHelper(System.UInt32,System.Char*)
  1619. extern void IPAddressParser_IPv4AddressToStringHelper_m4226589AD61857FE45C082110271FFF2D3DF8C91 (void);
  1620. // 0x00000329 System.String System.Net.IPAddressParser::IPv6AddressToString(System.UInt16[],System.UInt32)
  1621. extern void IPAddressParser_IPv6AddressToString_m7C25DEA2FB9E3F863777653CB9C314BBEDF911A6 (void);
  1622. // 0x0000032A System.Text.StringBuilder System.Net.IPAddressParser::IPv6AddressToStringHelper(System.UInt16[],System.UInt32)
  1623. extern void IPAddressParser_IPv6AddressToStringHelper_m405EE1B288D87500878DD96ADAEE31B106CCF930 (void);
  1624. // 0x0000032B System.Void System.Net.IPAddressParser::FormatIPv4AddressNumber(System.Int32,System.Char*,System.Int32&)
  1625. extern void IPAddressParser_FormatIPv4AddressNumber_m716041E973744C431B090589D624C53696FD801F (void);
  1626. // 0x0000032C System.Void System.Net.IPAddressParser::AppendSections(System.UInt16[],System.Int32,System.Int32,System.Text.StringBuilder)
  1627. extern void IPAddressParser_AppendSections_m141C016465F9E7E1538E03340FEC16F89B500284 (void);
  1628. // 0x0000032D System.Void System.Net.IPAddressParser::AppendHex(System.UInt16,System.Text.StringBuilder)
  1629. extern void IPAddressParser_AppendHex_m877259AD615A68FDC55EDC188758E5AA95C124B2 (void);
  1630. // 0x0000032E System.UInt32 System.Net.IPAddressParser::ExtractIPv4Address(System.UInt16[])
  1631. extern void IPAddressParser_ExtractIPv4Address_mB79D4899358C69C1FC7C44C81A26BBD976FC2CB6 (void);
  1632. // 0x0000032F System.UInt16 System.Net.IPAddressParser::Reverse(System.UInt16)
  1633. extern void IPAddressParser_Reverse_mDEBC20FC5D00F7C505E1ADE428CB6967B72B425E (void);
  1634. // 0x00000330 System.Void System.Net.WebClient::.ctor()
  1635. extern void WebClient__ctor_mC6890BD603C98D56E8D475D0D11180980F228C3F (void);
  1636. // 0x00000331 System.Void System.Net.WebClient::.cctor()
  1637. extern void WebClient__cctor_mA59E82CE3A67F145FD50C28BAC69ED5641781EDF (void);
  1638. // 0x00000332 System.Void System.ComponentModel.DefaultValueAttribute::.ctor(System.Boolean)
  1639. extern void DefaultValueAttribute__ctor_m34A58D59C771D6EB91D55AE4F97413CD711B8FB5 (void);
  1640. // 0x00000333 System.Void System.ComponentModel.DefaultValueAttribute::.ctor(System.String)
  1641. extern void DefaultValueAttribute__ctor_mC4A9C09859A2DFDDDADB72E3CC91DF3C874A45BB (void);
  1642. // 0x00000334 System.Object System.ComponentModel.DefaultValueAttribute::get_Value()
  1643. extern void DefaultValueAttribute_get_Value_mE5E6819598048D2585D6DB475918E60ACE802470 (void);
  1644. // 0x00000335 System.Boolean System.ComponentModel.DefaultValueAttribute::Equals(System.Object)
  1645. extern void DefaultValueAttribute_Equals_m61297DB3C3A7E76FC868A653371853B14BC42FC1 (void);
  1646. // 0x00000336 System.Int32 System.ComponentModel.DefaultValueAttribute::GetHashCode()
  1647. extern void DefaultValueAttribute_GetHashCode_m74095EF1526DBFB27CF56AFA21690C77A5289A33 (void);
  1648. // 0x00000337 System.Void System.ComponentModel.EditorBrowsableAttribute::.ctor(System.ComponentModel.EditorBrowsableState)
  1649. extern void EditorBrowsableAttribute__ctor_mE6105AD9666A4DF03DB2590C687EAC6B12D908CE (void);
  1650. // 0x00000338 System.Boolean System.ComponentModel.EditorBrowsableAttribute::Equals(System.Object)
  1651. extern void EditorBrowsableAttribute_Equals_m2DFA6ADDE69D95657A8257840C01FCAF74A6B02F (void);
  1652. // 0x00000339 System.Int32 System.ComponentModel.EditorBrowsableAttribute::GetHashCode()
  1653. extern void EditorBrowsableAttribute_GetHashCode_m1AE50FA45B338D71189AA3C249DB56406DEC798C (void);
  1654. // 0x0000033A System.Void System.ComponentModel.BrowsableAttribute::.ctor(System.Boolean)
  1655. extern void BrowsableAttribute__ctor_m1828B5114921E3FF83082211F2FBE82517559035 (void);
  1656. // 0x0000033B System.Boolean System.ComponentModel.BrowsableAttribute::get_Browsable()
  1657. extern void BrowsableAttribute_get_Browsable_m23594845C49373D8D6AB753D89DB39D8285250F0 (void);
  1658. // 0x0000033C System.Boolean System.ComponentModel.BrowsableAttribute::Equals(System.Object)
  1659. extern void BrowsableAttribute_Equals_m8EF756EC88F170513772F14FC08BDAD1EC2B863D (void);
  1660. // 0x0000033D System.Int32 System.ComponentModel.BrowsableAttribute::GetHashCode()
  1661. extern void BrowsableAttribute_GetHashCode_m40CEC719AE0A79F4339009D2E473342E59BAEDD1 (void);
  1662. // 0x0000033E System.Void System.ComponentModel.BrowsableAttribute::.cctor()
  1663. extern void BrowsableAttribute__cctor_mEE3D932880029AEFB302C723B33DE48D4497A369 (void);
  1664. // 0x0000033F System.Void System.ComponentModel.DescriptionAttribute::.ctor()
  1665. extern void DescriptionAttribute__ctor_m6140728AB61731BC01DEC122FDAA93854AAC723F (void);
  1666. // 0x00000340 System.Void System.ComponentModel.DescriptionAttribute::.ctor(System.String)
  1667. extern void DescriptionAttribute__ctor_m5A3D1DF34E3AACD9FF690A3CBE78F822F3A2EF97 (void);
  1668. // 0x00000341 System.String System.ComponentModel.DescriptionAttribute::get_Description()
  1669. extern void DescriptionAttribute_get_Description_m153F27F0911FC88F9DD8856BCA449AF5BE46F100 (void);
  1670. // 0x00000342 System.String System.ComponentModel.DescriptionAttribute::get_DescriptionValue()
  1671. extern void DescriptionAttribute_get_DescriptionValue_m1F4A0829E3BE8AF3BBB9A5F2344BA672E07DC975 (void);
  1672. // 0x00000343 System.Void System.ComponentModel.DescriptionAttribute::set_DescriptionValue(System.String)
  1673. extern void DescriptionAttribute_set_DescriptionValue_mE3DE3C009CBEA82A5DC0EFB299943118BF487800 (void);
  1674. // 0x00000344 System.Boolean System.ComponentModel.DescriptionAttribute::Equals(System.Object)
  1675. extern void DescriptionAttribute_Equals_m1CD8A994656358F30F29950E0F51F6FDFCA5306A (void);
  1676. // 0x00000345 System.Int32 System.ComponentModel.DescriptionAttribute::GetHashCode()
  1677. extern void DescriptionAttribute_GetHashCode_m611CD3279B54EE7678ED42409F142DF4303A3357 (void);
  1678. // 0x00000346 System.Void System.ComponentModel.DescriptionAttribute::.cctor()
  1679. extern void DescriptionAttribute__cctor_m834DAB71B6D455F27EDFF240E854DC175D402775 (void);
  1680. // 0x00000347 System.Void System.ComponentModel.DesignerCategoryAttribute::.ctor()
  1681. extern void DesignerCategoryAttribute__ctor_mC6EAF0212217A1CEE757459ADDB8D48D3B61A4EB (void);
  1682. // 0x00000348 System.Void System.ComponentModel.DesignerCategoryAttribute::.ctor(System.String)
  1683. extern void DesignerCategoryAttribute__ctor_mC3C69034E0CFED55C40A25A7AAF09F85CF4BB583 (void);
  1684. // 0x00000349 System.String System.ComponentModel.DesignerCategoryAttribute::get_Category()
  1685. extern void DesignerCategoryAttribute_get_Category_mDBA8396BD3225636679F3CFBD7ED5724189E7D77 (void);
  1686. // 0x0000034A System.Boolean System.ComponentModel.DesignerCategoryAttribute::Equals(System.Object)
  1687. extern void DesignerCategoryAttribute_Equals_m1AC49F2D111D21ED13E8BA1F2E40C1F3B859260C (void);
  1688. // 0x0000034B System.Int32 System.ComponentModel.DesignerCategoryAttribute::GetHashCode()
  1689. extern void DesignerCategoryAttribute_GetHashCode_mAAF7FBB9086B1B80FB129D77C2B2E195235A54FA (void);
  1690. // 0x0000034C System.Void System.ComponentModel.DesignerCategoryAttribute::.cctor()
  1691. extern void DesignerCategoryAttribute__cctor_m2D9C1A5339A186C402AC69970452A5AB62479855 (void);
  1692. // 0x0000034D System.Void System.ComponentModel.DesignerSerializationVisibilityAttribute::.ctor(System.ComponentModel.DesignerSerializationVisibility)
  1693. extern void DesignerSerializationVisibilityAttribute__ctor_m6E0E13DF36C75007C7917D0B635ACA0FCBFADDC1 (void);
  1694. // 0x0000034E System.ComponentModel.DesignerSerializationVisibility System.ComponentModel.DesignerSerializationVisibilityAttribute::get_Visibility()
  1695. extern void DesignerSerializationVisibilityAttribute_get_Visibility_mACD772642393B55DC72E03BB90D67C6C829C4D5E (void);
  1696. // 0x0000034F System.Boolean System.ComponentModel.DesignerSerializationVisibilityAttribute::Equals(System.Object)
  1697. extern void DesignerSerializationVisibilityAttribute_Equals_m0BE73F494AEFD4118E82420382640874637AD94F (void);
  1698. // 0x00000350 System.Int32 System.ComponentModel.DesignerSerializationVisibilityAttribute::GetHashCode()
  1699. extern void DesignerSerializationVisibilityAttribute_GetHashCode_m33E067E26D97A5A40DD224E33230351C6169579F (void);
  1700. // 0x00000351 System.Void System.ComponentModel.DesignerSerializationVisibilityAttribute::.cctor()
  1701. extern void DesignerSerializationVisibilityAttribute__cctor_mAD072BAB004E4D3331CE67CBC6D1012D5916101D (void);
  1702. // 0x00000352 System.Void System.ComponentModel.DisplayNameAttribute::.ctor()
  1703. extern void DisplayNameAttribute__ctor_mE16A1FD5C8425C7F00EC5728A1227AF6FBEFB968 (void);
  1704. // 0x00000353 System.Void System.ComponentModel.DisplayNameAttribute::.ctor(System.String)
  1705. extern void DisplayNameAttribute__ctor_m396F07353E80428B4AEB85DC66F5B9380A077AE3 (void);
  1706. // 0x00000354 System.String System.ComponentModel.DisplayNameAttribute::get_DisplayName()
  1707. extern void DisplayNameAttribute_get_DisplayName_mA3E91855E1EAC0085BF2C1EB501B7801B9563D5D (void);
  1708. // 0x00000355 System.String System.ComponentModel.DisplayNameAttribute::get_DisplayNameValue()
  1709. extern void DisplayNameAttribute_get_DisplayNameValue_mD9F58F5FFF2B7C682D8470101352BEA88AE0E5AC (void);
  1710. // 0x00000356 System.Void System.ComponentModel.DisplayNameAttribute::set_DisplayNameValue(System.String)
  1711. extern void DisplayNameAttribute_set_DisplayNameValue_m2DA6A8AA72F3969BA5639F707AB90A2D363BC49C (void);
  1712. // 0x00000357 System.Boolean System.ComponentModel.DisplayNameAttribute::Equals(System.Object)
  1713. extern void DisplayNameAttribute_Equals_m06E1BC5B48A9D42FECF4BEC20338F8DD6A525E88 (void);
  1714. // 0x00000358 System.Int32 System.ComponentModel.DisplayNameAttribute::GetHashCode()
  1715. extern void DisplayNameAttribute_GetHashCode_m882BB47C783C5D55149DB892F41108D4953B8B16 (void);
  1716. // 0x00000359 System.Void System.ComponentModel.DisplayNameAttribute::.cctor()
  1717. extern void DisplayNameAttribute__cctor_mD9A9030A1931AD6CDF0428CFEC3E34B91652A8F4 (void);
  1718. // 0x0000035A System.Delegate System.ComponentModel.EventHandlerList::get_Item(System.Object)
  1719. extern void EventHandlerList_get_Item_m9AD24EA65E3832B81146EC24604BABE4FC3CFCC7 (void);
  1720. // 0x0000035B System.ComponentModel.EventHandlerList/ListEntry System.ComponentModel.EventHandlerList::Find(System.Object)
  1721. extern void EventHandlerList_Find_m5E0CAB161102D1551CF2E636C8BC7B71C959A5C8 (void);
  1722. // 0x0000035C System.Void System.ComponentModel.IContainer::Remove(System.ComponentModel.IComponent)
  1723. // 0x0000035D System.ComponentModel.IContainer System.ComponentModel.ISite::get_Container()
  1724. // 0x0000035E System.Boolean System.ComponentModel.ISite::get_DesignMode()
  1725. // 0x0000035F System.String System.ComponentModel.ISite::get_Name()
  1726. // 0x00000360 System.Boolean System.ComponentModel.ISynchronizeInvoke::get_InvokeRequired()
  1727. // 0x00000361 System.IAsyncResult System.ComponentModel.ISynchronizeInvoke::BeginInvoke(System.Delegate,System.Object[])
  1728. // 0x00000362 System.Void System.ComponentModel.ArrayConverter::.ctor()
  1729. extern void ArrayConverter__ctor_mAA6B57C16F167FF104B8E23402DE87ACA5E13A2B (void);
  1730. // 0x00000363 System.Void System.ComponentModel.BaseNumberConverter::.ctor()
  1731. extern void BaseNumberConverter__ctor_m697E7E5DB315CE6CDA318F256A634BAEF3C7C76F (void);
  1732. // 0x00000364 System.Void System.ComponentModel.BooleanConverter::.ctor()
  1733. extern void BooleanConverter__ctor_m50990A1CB60D3557199985EF164FF1E8AFCADC87 (void);
  1734. // 0x00000365 System.Void System.ComponentModel.DecimalConverter::.ctor()
  1735. extern void DecimalConverter__ctor_mC1E815EF17DE8DBD91FB472C83A4F38514704B46 (void);
  1736. // 0x00000366 System.Void System.ComponentModel.DefaultEventAttribute::.ctor(System.String)
  1737. extern void DefaultEventAttribute__ctor_m7FE746F300D84188A24F4CF38A330EA255E5EE46 (void);
  1738. // 0x00000367 System.String System.ComponentModel.DefaultEventAttribute::get_Name()
  1739. extern void DefaultEventAttribute_get_Name_m156545E2B0D123DFD61C375B1CB4987F08D65BF3 (void);
  1740. // 0x00000368 System.Boolean System.ComponentModel.DefaultEventAttribute::Equals(System.Object)
  1741. extern void DefaultEventAttribute_Equals_m1B7CE5677AFA75A3AD6223345C99D5EA796622B2 (void);
  1742. // 0x00000369 System.Int32 System.ComponentModel.DefaultEventAttribute::GetHashCode()
  1743. extern void DefaultEventAttribute_GetHashCode_mD3A5713780914BA883AF0AB0AD88E5427D910184 (void);
  1744. // 0x0000036A System.Void System.ComponentModel.DefaultEventAttribute::.cctor()
  1745. extern void DefaultEventAttribute__cctor_m8F7247E7092040D01936116D0D07453F983A06E7 (void);
  1746. // 0x0000036B System.Void System.ComponentModel.DefaultPropertyAttribute::.ctor(System.String)
  1747. extern void DefaultPropertyAttribute__ctor_m43FD7A91A431F72713FFA7829DE9BD24A321FD3A (void);
  1748. // 0x0000036C System.String System.ComponentModel.DefaultPropertyAttribute::get_Name()
  1749. extern void DefaultPropertyAttribute_get_Name_m1F2C2642F68F489167FB7F2E005CCBDBF9745890 (void);
  1750. // 0x0000036D System.Boolean System.ComponentModel.DefaultPropertyAttribute::Equals(System.Object)
  1751. extern void DefaultPropertyAttribute_Equals_mCD709C4B3F90DDDBDB45AE2969732EA3775CF26E (void);
  1752. // 0x0000036E System.Int32 System.ComponentModel.DefaultPropertyAttribute::GetHashCode()
  1753. extern void DefaultPropertyAttribute_GetHashCode_m401BC4A948F7890DDD718B884C6CE06296578BA2 (void);
  1754. // 0x0000036F System.Void System.ComponentModel.DefaultPropertyAttribute::.cctor()
  1755. extern void DefaultPropertyAttribute__cctor_mE7CC9E813F3663E5D55E5F2FA52D6E1A8C0040E8 (void);
  1756. // 0x00000370 System.Void System.ComponentModel.DoubleConverter::.ctor()
  1757. extern void DoubleConverter__ctor_m3CA5201BA68AB510BB2112A6755FCFEAB6DE53BA (void);
  1758. // 0x00000371 System.Void System.ComponentModel.EditorAttribute::.ctor(System.String,System.String)
  1759. extern void EditorAttribute__ctor_mAD74D6DDDC7752F9BD989300FBE02E1E4FE83FAA (void);
  1760. // 0x00000372 System.String System.ComponentModel.EditorAttribute::get_EditorBaseTypeName()
  1761. extern void EditorAttribute_get_EditorBaseTypeName_m1CF77F3AA9AB5AE9CD3585FE86B24E1DD21B1EB4 (void);
  1762. // 0x00000373 System.String System.ComponentModel.EditorAttribute::get_EditorTypeName()
  1763. extern void EditorAttribute_get_EditorTypeName_m587C6D66C4567BC349AC9E2C65FE5E021ED2EB09 (void);
  1764. // 0x00000374 System.Boolean System.ComponentModel.EditorAttribute::Equals(System.Object)
  1765. extern void EditorAttribute_Equals_mE07449682FEDC2A230A7ECB0A005E1F91F6EF693 (void);
  1766. // 0x00000375 System.Int32 System.ComponentModel.EditorAttribute::GetHashCode()
  1767. extern void EditorAttribute_GetHashCode_mBB45B68F421A996ABBF4B6AC8DC506D4C96CE7DC (void);
  1768. // 0x00000376 System.Void System.ComponentModel.ExpandableObjectConverter::.ctor()
  1769. extern void ExpandableObjectConverter__ctor_mB2F0F20591EA133C5A0BCC4C871CDDD6974730DC (void);
  1770. // 0x00000377 System.Void System.ComponentModel.Int16Converter::.ctor()
  1771. extern void Int16Converter__ctor_m3803A7772B21F49200FC142C193A40DC286C9DFF (void);
  1772. // 0x00000378 System.Void System.ComponentModel.Int32Converter::.ctor()
  1773. extern void Int32Converter__ctor_m88220DA12F6ED6FE4D1232B73C20DECE9EFC63FF (void);
  1774. // 0x00000379 System.Void System.ComponentModel.Int64Converter::.ctor()
  1775. extern void Int64Converter__ctor_m3C124DB065F27F6BEAB7ABAF4B3D13E6A9F3E94C (void);
  1776. // 0x0000037A System.Void System.ComponentModel.ReferenceConverter::.ctor(System.Type)
  1777. extern void ReferenceConverter__ctor_mECD358A5C07B37EFD8659FDEF4C067A16E51171E (void);
  1778. // 0x0000037B System.Void System.ComponentModel.ReferenceConverter::.cctor()
  1779. extern void ReferenceConverter__cctor_m7A6A35413E4F4527499053D28FDEFB4BB91AC1A5 (void);
  1780. // 0x0000037C System.Void System.ComponentModel.SettingsBindableAttribute::.ctor(System.Boolean)
  1781. extern void SettingsBindableAttribute__ctor_mC0F9613A258449016DF2A53220343DB20A388A91 (void);
  1782. // 0x0000037D System.Boolean System.ComponentModel.SettingsBindableAttribute::get_Bindable()
  1783. extern void SettingsBindableAttribute_get_Bindable_m448BA41F157DF20B461625E635BAA0DD861668F3 (void);
  1784. // 0x0000037E System.Boolean System.ComponentModel.SettingsBindableAttribute::Equals(System.Object)
  1785. extern void SettingsBindableAttribute_Equals_mF15B757F5C23A846B04FB2FB277E23572CF6FECB (void);
  1786. // 0x0000037F System.Int32 System.ComponentModel.SettingsBindableAttribute::GetHashCode()
  1787. extern void SettingsBindableAttribute_GetHashCode_m890594467DEA957BDEC69BC6EA32A5728DD84D47 (void);
  1788. // 0x00000380 System.Void System.ComponentModel.SettingsBindableAttribute::.cctor()
  1789. extern void SettingsBindableAttribute__cctor_m7535DF492E918C80ED2CB42AD5ABD1ACB1D57C68 (void);
  1790. // 0x00000381 System.Void System.ComponentModel.SingleConverter::.ctor()
  1791. extern void SingleConverter__ctor_m463B63EB8D945D2D43E5B8099D8F0EC24AEBDA7A (void);
  1792. // 0x00000382 System.Void System.ComponentModel.StringConverter::.ctor()
  1793. extern void StringConverter__ctor_m074D8686ED6ABC0E64C20D1EFD4406F215E7187A (void);
  1794. // 0x00000383 System.Void System.ComponentModel.TimeSpanConverter::.ctor()
  1795. extern void TimeSpanConverter__ctor_m7319DCEEDA2578B340AD4FEEE010AE5CEFAC9BD5 (void);
  1796. // 0x00000384 System.Void System.ComponentModel.TypeConverterAttribute::.ctor()
  1797. extern void TypeConverterAttribute__ctor_mEEE3CA7C17555BA93BB76201BA2BCF879E617DA9 (void);
  1798. // 0x00000385 System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.Type)
  1799. extern void TypeConverterAttribute__ctor_m0E1A55E1BD368F0AABCAF766BBCE1D275777A52A (void);
  1800. // 0x00000386 System.Void System.ComponentModel.TypeConverterAttribute::.ctor(System.String)
  1801. extern void TypeConverterAttribute__ctor_mF1AB0946F2E1E398141ACF79468EA4DB1FE27139 (void);
  1802. // 0x00000387 System.String System.ComponentModel.TypeConverterAttribute::get_ConverterTypeName()
  1803. extern void TypeConverterAttribute_get_ConverterTypeName_mBBE5335F11FC13345D2828866172BB5DDF9F3E45 (void);
  1804. // 0x00000388 System.Boolean System.ComponentModel.TypeConverterAttribute::Equals(System.Object)
  1805. extern void TypeConverterAttribute_Equals_mA3BF2C8CFA0AE8B5D0F52E066B1141AA53B4E015 (void);
  1806. // 0x00000389 System.Int32 System.ComponentModel.TypeConverterAttribute::GetHashCode()
  1807. extern void TypeConverterAttribute_GetHashCode_m23ACA2A297447E17150BF490188919676FBD8A01 (void);
  1808. // 0x0000038A System.Void System.ComponentModel.TypeConverterAttribute::.cctor()
  1809. extern void TypeConverterAttribute__cctor_m7A206154E18C66B9CEA6934D8AFB1AE9DA4EA666 (void);
  1810. // 0x0000038B System.Void System.ComponentModel.CollectionConverter::.ctor()
  1811. extern void CollectionConverter__ctor_m20ED0C661750EBE427D356F24AED92A407988147 (void);
  1812. // 0x0000038C System.Void System.ComponentModel.Component::Finalize()
  1813. extern void Component_Finalize_m124F6FA2207E76C9DF18740E653C49D483A6E5C6 (void);
  1814. // 0x0000038D System.Boolean System.ComponentModel.Component::get_CanRaiseEvents()
  1815. extern void Component_get_CanRaiseEvents_m23993A519269D33F515ADADAB081C6ADF1551AF4 (void);
  1816. // 0x0000038E System.Boolean System.ComponentModel.Component::get_CanRaiseEventsInternal()
  1817. extern void Component_get_CanRaiseEventsInternal_mAF68FD325FA909AEA171953DF83CB1051A9EA3CC (void);
  1818. // 0x0000038F System.ComponentModel.ISite System.ComponentModel.Component::get_Site()
  1819. extern void Component_get_Site_mAB0D574C04230287AFDEB9E691F885A49E18A80C (void);
  1820. // 0x00000390 System.Void System.ComponentModel.Component::Dispose()
  1821. extern void Component_Dispose_m7D0C063EA18E1FFA59CB369232131150372DC7B2 (void);
  1822. // 0x00000391 System.Void System.ComponentModel.Component::Dispose(System.Boolean)
  1823. extern void Component_Dispose_mD106692D0A494758CFFA2C9ACC0D7F94DD389192 (void);
  1824. // 0x00000392 System.Object System.ComponentModel.Component::GetService(System.Type)
  1825. extern void Component_GetService_mBAA7A515C81E800F2EEF6B796A5C4AA7C08B0A57 (void);
  1826. // 0x00000393 System.Boolean System.ComponentModel.Component::get_DesignMode()
  1827. extern void Component_get_DesignMode_m1F9F6A7CF2856B86B6571430C7F403A6393B90F0 (void);
  1828. // 0x00000394 System.String System.ComponentModel.Component::ToString()
  1829. extern void Component_ToString_m6B31E5C41739F547FD9F10B6439E8C3F1E15EBC3 (void);
  1830. // 0x00000395 System.Void System.ComponentModel.Component::.ctor()
  1831. extern void Component__ctor_mDA70A27899B8D66203C57A3E8678A11E033B4DF6 (void);
  1832. // 0x00000396 System.Void System.ComponentModel.Component::.cctor()
  1833. extern void Component__cctor_mFA01BE8B3C6836B029B2E607352AF2E0D3D10057 (void);
  1834. // 0x00000397 System.Void System.ComponentModel.ComponentConverter::.ctor(System.Type)
  1835. extern void ComponentConverter__ctor_m55556BF96FD3D27C7D9F5B413514A01DF0A3911C (void);
  1836. // 0x00000398 System.Void System.ComponentModel.EnumConverter::.ctor(System.Type)
  1837. extern void EnumConverter__ctor_m3E3C7D81C8092A5591BAA556288B2A3E22DCA99B (void);
  1838. // 0x00000399 System.Void System.ComponentModel.TypeConverter::.ctor()
  1839. extern void TypeConverter__ctor_mA5B1882A94D0491297B903563E8B03D75B2F67A2 (void);
  1840. // 0x0000039A System.Void System.ComponentModel.Win32Exception::.ctor()
  1841. extern void Win32Exception__ctor_m0B20F25EC4A56A122FF766429AF40AF6292E11B1 (void);
  1842. // 0x0000039B System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32)
  1843. extern void Win32Exception__ctor_mFC38F1C99031D227C6BB3CA07099866D39994281 (void);
  1844. // 0x0000039C System.Void System.ComponentModel.Win32Exception::.ctor(System.Int32,System.String)
  1845. extern void Win32Exception__ctor_mB0380F996944EDFCF9CACC7F28A18874F19B4FD4 (void);
  1846. // 0x0000039D System.Void System.ComponentModel.Win32Exception::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1847. extern void Win32Exception__ctor_m1B3DF3F51BBF050C18F933B36027A8A4902668C4 (void);
  1848. // 0x0000039E System.Void System.ComponentModel.Win32Exception::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1849. extern void Win32Exception_GetObjectData_mB7993FD0BE12222D5518373EBAB84F89651D99D2 (void);
  1850. // 0x0000039F System.String System.ComponentModel.Win32Exception::GetErrorMessage(System.Int32)
  1851. extern void Win32Exception_GetErrorMessage_m4DF2B191F4BBBF3B7AC82CE276E3E62F0A9159CC (void);
  1852. // 0x000003A0 System.Void System.ComponentModel.NotifyParentPropertyAttribute::.ctor(System.Boolean)
  1853. extern void NotifyParentPropertyAttribute__ctor_m921D2426472D2601F59590590DAE1585D8768FD5 (void);
  1854. // 0x000003A1 System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::get_NotifyParent()
  1855. extern void NotifyParentPropertyAttribute_get_NotifyParent_m9CE85A9E830D177C945D2E79C8BB15F1E4354A80 (void);
  1856. // 0x000003A2 System.Boolean System.ComponentModel.NotifyParentPropertyAttribute::Equals(System.Object)
  1857. extern void NotifyParentPropertyAttribute_Equals_m3E26D4045E9F41428447AAC23326763A6794A810 (void);
  1858. // 0x000003A3 System.Int32 System.ComponentModel.NotifyParentPropertyAttribute::GetHashCode()
  1859. extern void NotifyParentPropertyAttribute_GetHashCode_mD6070F690A4DA9B4E70962FDEE7E5CD9EC1B8FC8 (void);
  1860. // 0x000003A4 System.Void System.ComponentModel.NotifyParentPropertyAttribute::.cctor()
  1861. extern void NotifyParentPropertyAttribute__cctor_mBA4B327F55E2A2DD03A16456139F97628070B152 (void);
  1862. // 0x000003A5 System.ComponentModel.IComponent System.ComponentModel.Design.IDesignerHost::get_RootComponent()
  1863. // 0x000003A6 System.Void System.ComponentModel.Design.Serialization.RootDesignerSerializerAttribute::.ctor(System.String,System.String,System.Boolean)
  1864. extern void RootDesignerSerializerAttribute__ctor_m52C401C2E19FF1C4E9A8F140811D5AA762C60602 (void);
  1865. // 0x000003A7 System.Boolean System.Collections.HashtableExtensions::TryGetValue(System.Collections.Hashtable,System.Object,T&)
  1866. // 0x000003A8 System.Void System.Collections.Specialized.NameValueCollection::.ctor()
  1867. extern void NameValueCollection__ctor_mCA29E5386DACDF19F6F51BC395324F0A8EE05604 (void);
  1868. // 0x000003A9 System.Void System.Collections.Specialized.NameValueCollection::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1869. extern void NameValueCollection__ctor_mAC66C8064A4AAB73914143C4CDF3BF28543BAEC3 (void);
  1870. // 0x000003AA System.Void System.Collections.Specialized.NameValueCollection::InvalidateCachedArrays()
  1871. extern void NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B (void);
  1872. // 0x000003AB System.String System.Collections.Specialized.NameValueCollection::GetAsOneString(System.Collections.ArrayList)
  1873. extern void NameValueCollection_GetAsOneString_m9572A021DF304441085F4661526BB1289957A193 (void);
  1874. // 0x000003AC System.Void System.Collections.Specialized.NameValueCollection::Add(System.String,System.String)
  1875. extern void NameValueCollection_Add_m68C266151774CD1FC057C9349BAE09BDB15A26A7 (void);
  1876. // 0x000003AD System.String System.Collections.Specialized.NameValueCollection::Get(System.String)
  1877. extern void NameValueCollection_Get_m786B25D45B38D7051C696104946F3F0A2DF78106 (void);
  1878. // 0x000003AE System.String System.Collections.Specialized.NameValueCollection::get_Item(System.String)
  1879. extern void NameValueCollection_get_Item_mE3ED755803E67BC852123C70EEF8D53774FA635F (void);
  1880. // 0x000003AF System.String[] System.Collections.Specialized.NameValueCollection::get_AllKeys()
  1881. extern void NameValueCollection_get_AllKeys_mEE8B643F93B5714DD9C231385589020E778AA94D (void);
  1882. // 0x000003B0 System.Void System.Collections.Specialized.OrderedDictionary::.ctor()
  1883. extern void OrderedDictionary__ctor_mBEC4CCF86E1A22330C31E1C069B2F21695445A10 (void);
  1884. // 0x000003B1 System.Void System.Collections.Specialized.OrderedDictionary::.ctor(System.Int32)
  1885. extern void OrderedDictionary__ctor_m552AA3E019FF5D93545B5DFFB7B4917C72251600 (void);
  1886. // 0x000003B2 System.Void System.Collections.Specialized.OrderedDictionary::.ctor(System.Collections.IEqualityComparer)
  1887. extern void OrderedDictionary__ctor_mAF002F0247B65A7CC1A012077622E8A5E97A7BE9 (void);
  1888. // 0x000003B3 System.Void System.Collections.Specialized.OrderedDictionary::.ctor(System.Int32,System.Collections.IEqualityComparer)
  1889. extern void OrderedDictionary__ctor_mF88C40080BA8F436358DE5195BB88C5957A4AC66 (void);
  1890. // 0x000003B4 System.Void System.Collections.Specialized.OrderedDictionary::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1891. extern void OrderedDictionary__ctor_m442555F1C427B3EF7DC305AE414FD5EBD90A4861 (void);
  1892. // 0x000003B5 System.Int32 System.Collections.Specialized.OrderedDictionary::get_Count()
  1893. extern void OrderedDictionary_get_Count_m9B55DB3275692CD51DE69FA8200D1998BD258A0A (void);
  1894. // 0x000003B6 System.Boolean System.Collections.Specialized.OrderedDictionary::System.Collections.IDictionary.get_IsFixedSize()
  1895. extern void OrderedDictionary_System_Collections_IDictionary_get_IsFixedSize_mC85A0FC9CF039E7594E4C28C68B0E4BA243E1595 (void);
  1896. // 0x000003B7 System.Boolean System.Collections.Specialized.OrderedDictionary::get_IsReadOnly()
  1897. extern void OrderedDictionary_get_IsReadOnly_m8D512A98345A30BC8BB45818A36FCC20DCE3569A (void);
  1898. // 0x000003B8 System.Boolean System.Collections.Specialized.OrderedDictionary::System.Collections.ICollection.get_IsSynchronized()
  1899. extern void OrderedDictionary_System_Collections_ICollection_get_IsSynchronized_m68B485D9B7C83F599CDA6CA26D88EBCFE4DBA22B (void);
  1900. // 0x000003B9 System.Collections.ICollection System.Collections.Specialized.OrderedDictionary::get_Keys()
  1901. extern void OrderedDictionary_get_Keys_m39D726F42E6E2A524AE555A41AE203F06E4F6792 (void);
  1902. // 0x000003BA System.Collections.ArrayList System.Collections.Specialized.OrderedDictionary::get_objectsArray()
  1903. extern void OrderedDictionary_get_objectsArray_mDA996CFABA5837C3361B0E94C89E6389202A9756 (void);
  1904. // 0x000003BB System.Collections.Hashtable System.Collections.Specialized.OrderedDictionary::get_objectsTable()
  1905. extern void OrderedDictionary_get_objectsTable_mA667F6EDF6E4E78C7F7AA118F35C86C64A9EFD80 (void);
  1906. // 0x000003BC System.Object System.Collections.Specialized.OrderedDictionary::System.Collections.ICollection.get_SyncRoot()
  1907. extern void OrderedDictionary_System_Collections_ICollection_get_SyncRoot_m67C653BEB9C1E451229203FAE5B6453681E7FBDB (void);
  1908. // 0x000003BD System.Object System.Collections.Specialized.OrderedDictionary::get_Item(System.Object)
  1909. extern void OrderedDictionary_get_Item_m5755C415F2E5CAC5A0AE3EFBB5A8D84915B37ED8 (void);
  1910. // 0x000003BE System.Void System.Collections.Specialized.OrderedDictionary::set_Item(System.Object,System.Object)
  1911. extern void OrderedDictionary_set_Item_m9406B6A94651B7DB301BC383518FC9B37277122E (void);
  1912. // 0x000003BF System.Collections.ICollection System.Collections.Specialized.OrderedDictionary::get_Values()
  1913. extern void OrderedDictionary_get_Values_m14CFA04FF0A8DC8B41386192B029EC604AF551BA (void);
  1914. // 0x000003C0 System.Void System.Collections.Specialized.OrderedDictionary::Add(System.Object,System.Object)
  1915. extern void OrderedDictionary_Add_m0E0236E85A80AB44EC533F2127F485E88753B4B3 (void);
  1916. // 0x000003C1 System.Void System.Collections.Specialized.OrderedDictionary::Clear()
  1917. extern void OrderedDictionary_Clear_mCED01246B19A457FAD097372DD7EFA0840D94E07 (void);
  1918. // 0x000003C2 System.Boolean System.Collections.Specialized.OrderedDictionary::Contains(System.Object)
  1919. extern void OrderedDictionary_Contains_m63AFE431564000B20908A732633780B192F7F95E (void);
  1920. // 0x000003C3 System.Void System.Collections.Specialized.OrderedDictionary::CopyTo(System.Array,System.Int32)
  1921. extern void OrderedDictionary_CopyTo_m96E73EF7B84BA4D1ABA184134465F41DFFE73C2A (void);
  1922. // 0x000003C4 System.Int32 System.Collections.Specialized.OrderedDictionary::IndexOfKey(System.Object)
  1923. extern void OrderedDictionary_IndexOfKey_m0A1A8D3EA6A175D722513B7AAD3518A4C1502837 (void);
  1924. // 0x000003C5 System.Void System.Collections.Specialized.OrderedDictionary::Remove(System.Object)
  1925. extern void OrderedDictionary_Remove_mD4DFDFA8710B689C990EEE8EFCC50EC21CE51EA3 (void);
  1926. // 0x000003C6 System.Collections.IDictionaryEnumerator System.Collections.Specialized.OrderedDictionary::GetEnumerator()
  1927. extern void OrderedDictionary_GetEnumerator_mECA50DD161EDC87F84CD75764643826BFF14C16F (void);
  1928. // 0x000003C7 System.Collections.IEnumerator System.Collections.Specialized.OrderedDictionary::System.Collections.IEnumerable.GetEnumerator()
  1929. extern void OrderedDictionary_System_Collections_IEnumerable_GetEnumerator_m4AC8186C465CF478A39CC2FADBDBA75AA9DA5084 (void);
  1930. // 0x000003C8 System.Void System.Collections.Specialized.OrderedDictionary::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1931. extern void OrderedDictionary_GetObjectData_m946A3884AC9A0398EF3CBDA7E5C7C268B01FC02C (void);
  1932. // 0x000003C9 System.Void System.Collections.Specialized.OrderedDictionary::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
  1933. extern void OrderedDictionary_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m600671E042DB3E5BD39D5439D3C88010EEA1E95A (void);
  1934. // 0x000003CA System.Void System.Collections.Specialized.OrderedDictionary::OnDeserialization(System.Object)
  1935. extern void OrderedDictionary_OnDeserialization_m069DE30CEBE5F11C239DD42383204D14793714D7 (void);
  1936. // 0x000003CB System.Void System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::.ctor(System.Collections.ArrayList,System.Int32)
  1937. extern void OrderedDictionaryEnumerator__ctor_mEC12764C0293A3EFE021BEE4385D537C3C0EB775 (void);
  1938. // 0x000003CC System.Object System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::get_Current()
  1939. extern void OrderedDictionaryEnumerator_get_Current_m1513DF120F398083CA52B7B330D7FF9D5FD6BC69 (void);
  1940. // 0x000003CD System.Collections.DictionaryEntry System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::get_Entry()
  1941. extern void OrderedDictionaryEnumerator_get_Entry_m70BE070A9125BA894E98803E322A51E34AAB0074 (void);
  1942. // 0x000003CE System.Object System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::get_Key()
  1943. extern void OrderedDictionaryEnumerator_get_Key_mAE1632D8B4767AC6A321CDDCECFA3B943CFEB202 (void);
  1944. // 0x000003CF System.Object System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::get_Value()
  1945. extern void OrderedDictionaryEnumerator_get_Value_m3D9DB591978A7EA9C640AD820A301AD176665AB9 (void);
  1946. // 0x000003D0 System.Boolean System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::MoveNext()
  1947. extern void OrderedDictionaryEnumerator_MoveNext_m25E708E43E6B36CEAB84121CB0831590F40985BF (void);
  1948. // 0x000003D1 System.Void System.Collections.Specialized.OrderedDictionary/OrderedDictionaryEnumerator::Reset()
  1949. extern void OrderedDictionaryEnumerator_Reset_m6878E0A1524911AEBEEC87C578C75584DAFD9022 (void);
  1950. // 0x000003D2 System.Void System.Collections.Specialized.OrderedDictionary/OrderedDictionaryKeyValueCollection::.ctor(System.Collections.ArrayList,System.Boolean)
  1951. extern void OrderedDictionaryKeyValueCollection__ctor_mA61FF47888F401F7194B3AD6B6F5F81F9FECEA64 (void);
  1952. // 0x000003D3 System.Void System.Collections.Specialized.OrderedDictionary/OrderedDictionaryKeyValueCollection::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  1953. extern void OrderedDictionaryKeyValueCollection_System_Collections_ICollection_CopyTo_m6B8299303DC7D0A30936938CABE4F81F610077FF (void);
  1954. // 0x000003D4 System.Int32 System.Collections.Specialized.OrderedDictionary/OrderedDictionaryKeyValueCollection::System.Collections.ICollection.get_Count()
  1955. extern void OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_Count_m7E6084DFB4648AD05337326CC87BC5AAAC2B310B (void);
  1956. // 0x000003D5 System.Boolean System.Collections.Specialized.OrderedDictionary/OrderedDictionaryKeyValueCollection::System.Collections.ICollection.get_IsSynchronized()
  1957. extern void OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_IsSynchronized_mE73CC54355B822C837985F6534050DB9472A42EA (void);
  1958. // 0x000003D6 System.Object System.Collections.Specialized.OrderedDictionary/OrderedDictionaryKeyValueCollection::System.Collections.ICollection.get_SyncRoot()
  1959. extern void OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_SyncRoot_m970D75F7E81A1BB6FA21D797A7D0A068D749E511 (void);
  1960. // 0x000003D7 System.Collections.IEnumerator System.Collections.Specialized.OrderedDictionary/OrderedDictionaryKeyValueCollection::System.Collections.IEnumerable.GetEnumerator()
  1961. extern void OrderedDictionaryKeyValueCollection_System_Collections_IEnumerable_GetEnumerator_m915EACF605AF9EBDC96A2BDB466682095A03154D (void);
  1962. // 0x000003D8 System.Void System.Collections.Specialized.StringDictionary::.ctor()
  1963. extern void StringDictionary__ctor_mF13D065DE0B8C21DBAB7873436D7D7C879373A7C (void);
  1964. // 0x000003D9 System.Void System.Collections.Specialized.StringDictionary::Add(System.String,System.String)
  1965. extern void StringDictionary_Add_mE81F28657F0C11A7242C286D10AB4BFA34081FAB (void);
  1966. // 0x000003DA System.Collections.IEnumerator System.Collections.Specialized.StringDictionary::GetEnumerator()
  1967. extern void StringDictionary_GetEnumerator_m3E900457E2146001383B0E3590FA5FECD3460BC1 (void);
  1968. // 0x000003DB System.Void System.Collections.Specialized.CaseSensitiveStringDictionary::.ctor()
  1969. extern void CaseSensitiveStringDictionary__ctor_m2AF7A1302E4A8EE55E5E98BA342FDC3EF89A3F5E (void);
  1970. // 0x000003DC System.Void System.Collections.Specialized.CaseSensitiveStringDictionary::Add(System.String,System.String)
  1971. extern void CaseSensitiveStringDictionary_Add_m9B3BE19D3A3468F470E99F7CC4D553877A81764D (void);
  1972. // 0x000003DD System.Void System.Collections.Specialized.NameObjectCollectionBase::.ctor()
  1973. extern void NameObjectCollectionBase__ctor_m6E0DCD48B817A59D0156390A09CD50BE07BF145D (void);
  1974. // 0x000003DE System.Void System.Collections.Specialized.NameObjectCollectionBase::.ctor(System.Collections.IEqualityComparer)
  1975. extern void NameObjectCollectionBase__ctor_mB5F581BB65F493F603EE57E1815389E1406D5B61 (void);
  1976. // 0x000003DF System.Void System.Collections.Specialized.NameObjectCollectionBase::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1977. extern void NameObjectCollectionBase__ctor_m7E8E8B56138D44BECF32865A11DAF942AE2BA4DA (void);
  1978. // 0x000003E0 System.Void System.Collections.Specialized.NameObjectCollectionBase::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  1979. extern void NameObjectCollectionBase_GetObjectData_m0675A0B0EC79E1DAD6E307764C899EC5E552B32A (void);
  1980. // 0x000003E1 System.Void System.Collections.Specialized.NameObjectCollectionBase::OnDeserialization(System.Object)
  1981. extern void NameObjectCollectionBase_OnDeserialization_mFF0F15B0E4DB6D9B6043E2B338160B321889C4B6 (void);
  1982. // 0x000003E2 System.Void System.Collections.Specialized.NameObjectCollectionBase::Reset()
  1983. extern void NameObjectCollectionBase_Reset_m107877B3D64D818F9D4E0936DA9627C4D94DF6DC (void);
  1984. // 0x000003E3 System.Void System.Collections.Specialized.NameObjectCollectionBase::Reset(System.Int32)
  1985. extern void NameObjectCollectionBase_Reset_mFF34A1D69D7F9BECD9948E748769623EFA50C0D3 (void);
  1986. // 0x000003E4 System.Collections.Specialized.NameObjectCollectionBase/NameObjectEntry System.Collections.Specialized.NameObjectCollectionBase::FindEntry(System.String)
  1987. extern void NameObjectCollectionBase_FindEntry_m1BC4B6ACCE244B544B216D16DB53A769E670876F (void);
  1988. // 0x000003E5 System.Boolean System.Collections.Specialized.NameObjectCollectionBase::get_IsReadOnly()
  1989. extern void NameObjectCollectionBase_get_IsReadOnly_m1B1072E33B3B42507F822EBB61F75A804A1D503A (void);
  1990. // 0x000003E6 System.Void System.Collections.Specialized.NameObjectCollectionBase::BaseAdd(System.String,System.Object)
  1991. extern void NameObjectCollectionBase_BaseAdd_m1A8E236F037A35B3FBC7435A120B2E66EE7F563E (void);
  1992. // 0x000003E7 System.Object System.Collections.Specialized.NameObjectCollectionBase::BaseGet(System.String)
  1993. extern void NameObjectCollectionBase_BaseGet_mA6FA3CE608E74CF1E4C71227EA95F15C0D2BB154 (void);
  1994. // 0x000003E8 System.String System.Collections.Specialized.NameObjectCollectionBase::BaseGetKey(System.Int32)
  1995. extern void NameObjectCollectionBase_BaseGetKey_m4435B786286C5946CFA38206FFE20E33F32A78A6 (void);
  1996. // 0x000003E9 System.Collections.IEnumerator System.Collections.Specialized.NameObjectCollectionBase::GetEnumerator()
  1997. extern void NameObjectCollectionBase_GetEnumerator_mDEEC7FF01AEF8FB0739964513BAF10C4C3F254BC (void);
  1998. // 0x000003EA System.Int32 System.Collections.Specialized.NameObjectCollectionBase::get_Count()
  1999. extern void NameObjectCollectionBase_get_Count_m766C6702F64CD224AB123566BAACB2A81FCBF5F0 (void);
  2000. // 0x000003EB System.Void System.Collections.Specialized.NameObjectCollectionBase::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  2001. extern void NameObjectCollectionBase_System_Collections_ICollection_CopyTo_mF47F5F43F47C553B071EB7A6AA4A352D95B02E01 (void);
  2002. // 0x000003EC System.Object System.Collections.Specialized.NameObjectCollectionBase::System.Collections.ICollection.get_SyncRoot()
  2003. extern void NameObjectCollectionBase_System_Collections_ICollection_get_SyncRoot_mAC6E9FEF3C7C442481772E568C4FBF552B908624 (void);
  2004. // 0x000003ED System.Boolean System.Collections.Specialized.NameObjectCollectionBase::System.Collections.ICollection.get_IsSynchronized()
  2005. extern void NameObjectCollectionBase_System_Collections_ICollection_get_IsSynchronized_mA19A4DFBCF83655C1960F608E1CE54201D224AC8 (void);
  2006. // 0x000003EE System.String[] System.Collections.Specialized.NameObjectCollectionBase::BaseGetAllKeys()
  2007. extern void NameObjectCollectionBase_BaseGetAllKeys_m00ADAB2845483DCD590077264B6C11553BBAD744 (void);
  2008. // 0x000003EF System.Void System.Collections.Specialized.NameObjectCollectionBase::.cctor()
  2009. extern void NameObjectCollectionBase__cctor_m9D96ED9D8FAA7D5C0F233E940EA3FEA3FACBCA5D (void);
  2010. // 0x000003F0 System.Void System.Collections.Specialized.NameObjectCollectionBase/NameObjectEntry::.ctor(System.String,System.Object)
  2011. extern void NameObjectEntry__ctor_m36EA15EE18936FA78B2E4E29C63311E03221F513 (void);
  2012. // 0x000003F1 System.Void System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::.ctor(System.Collections.Specialized.NameObjectCollectionBase)
  2013. extern void NameObjectKeysEnumerator__ctor_mF3026FAD0A80AADFBC11888DCB0FDF7C2DD71801 (void);
  2014. // 0x000003F2 System.Boolean System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::MoveNext()
  2015. extern void NameObjectKeysEnumerator_MoveNext_m8800474BD1E5F24E4B88D1E33ABA793CB05DD540 (void);
  2016. // 0x000003F3 System.Void System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::Reset()
  2017. extern void NameObjectKeysEnumerator_Reset_m548902A21282FB0766D833231BE700069DA316A5 (void);
  2018. // 0x000003F4 System.Object System.Collections.Specialized.NameObjectCollectionBase/NameObjectKeysEnumerator::get_Current()
  2019. extern void NameObjectKeysEnumerator_get_Current_m23AC7A2525995AC67EF4002996653748F33F6096 (void);
  2020. // 0x000003F5 System.Void System.Collections.Specialized.CompatibleComparer::.ctor(System.Collections.IComparer,System.Collections.IHashCodeProvider)
  2021. extern void CompatibleComparer__ctor_m9F601617145FDFCA25983415C4427C47E5C170A7 (void);
  2022. // 0x000003F6 System.Boolean System.Collections.Specialized.CompatibleComparer::Equals(System.Object,System.Object)
  2023. extern void CompatibleComparer_Equals_m09CF7F036688C2E00C8BF5618C0528BA8D8C40D5 (void);
  2024. // 0x000003F7 System.Int32 System.Collections.Specialized.CompatibleComparer::GetHashCode(System.Object)
  2025. extern void CompatibleComparer_GetHashCode_mE88BB0E4CC1A615946A43A8DE75B6F1F57B1CDAF (void);
  2026. // 0x000003F8 System.Collections.IComparer System.Collections.Specialized.CompatibleComparer::get_Comparer()
  2027. extern void CompatibleComparer_get_Comparer_mFA7D1FF54540B95FED7C58DBCDB7ACC037FD3DF9 (void);
  2028. // 0x000003F9 System.Collections.IHashCodeProvider System.Collections.Specialized.CompatibleComparer::get_HashCodeProvider()
  2029. extern void CompatibleComparer_get_HashCodeProvider_m1085836D796353C24686CF56026EB89D783BBFC4 (void);
  2030. // 0x000003FA System.Collections.IComparer System.Collections.Specialized.CompatibleComparer::get_DefaultComparer()
  2031. extern void CompatibleComparer_get_DefaultComparer_m1764CA10BF8362FE4B86743BC5450ACF9F33AC77 (void);
  2032. // 0x000003FB System.Collections.IHashCodeProvider System.Collections.Specialized.CompatibleComparer::get_DefaultHashCodeProvider()
  2033. extern void CompatibleComparer_get_DefaultHashCodeProvider_m0DEC6F17BB96B8492250DCC38617890C4417E284 (void);
  2034. // 0x000003FC System.Void System.Collections.Generic.ValueListBuilder`1::.ctor(System.Span`1<T>)
  2035. // 0x000003FD System.Int32 System.Collections.Generic.ValueListBuilder`1::get_Length()
  2036. // 0x000003FE T& System.Collections.Generic.ValueListBuilder`1::get_Item(System.Int32)
  2037. // 0x000003FF System.Void System.Collections.Generic.ValueListBuilder`1::Append(T)
  2038. // 0x00000400 System.ReadOnlySpan`1<T> System.Collections.Generic.ValueListBuilder`1::AsSpan()
  2039. // 0x00000401 System.Void System.Collections.Generic.ValueListBuilder`1::Dispose()
  2040. // 0x00000402 System.Void System.Collections.Generic.ValueListBuilder`1::Grow()
  2041. // 0x00000403 T System.Collections.Generic.ValueListBuilder`1::Pop()
  2042. // 0x00000404 System.Void System.Collections.Generic.LinkedList`1::.ctor()
  2043. // 0x00000405 System.Void System.Collections.Generic.LinkedList`1::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  2044. // 0x00000406 System.Int32 System.Collections.Generic.LinkedList`1::get_Count()
  2045. // 0x00000407 System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::get_First()
  2046. // 0x00000408 System.Boolean System.Collections.Generic.LinkedList`1::System.Collections.Generic.ICollection<T>.get_IsReadOnly()
  2047. // 0x00000409 System.Void System.Collections.Generic.LinkedList`1::System.Collections.Generic.ICollection<T>.Add(T)
  2048. // 0x0000040A System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::AddLast(T)
  2049. // 0x0000040B System.Void System.Collections.Generic.LinkedList`1::Clear()
  2050. // 0x0000040C System.Boolean System.Collections.Generic.LinkedList`1::Contains(T)
  2051. // 0x0000040D System.Void System.Collections.Generic.LinkedList`1::CopyTo(T[],System.Int32)
  2052. // 0x0000040E System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedList`1::Find(T)
  2053. // 0x0000040F System.Collections.Generic.LinkedList`1/Enumerator<T> System.Collections.Generic.LinkedList`1::GetEnumerator()
  2054. // 0x00000410 System.Collections.Generic.IEnumerator`1<T> System.Collections.Generic.LinkedList`1::System.Collections.Generic.IEnumerable<T>.GetEnumerator()
  2055. // 0x00000411 System.Boolean System.Collections.Generic.LinkedList`1::Remove(T)
  2056. // 0x00000412 System.Void System.Collections.Generic.LinkedList`1::Remove(System.Collections.Generic.LinkedListNode`1<T>)
  2057. // 0x00000413 System.Void System.Collections.Generic.LinkedList`1::RemoveFirst()
  2058. // 0x00000414 System.Void System.Collections.Generic.LinkedList`1::GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  2059. // 0x00000415 System.Void System.Collections.Generic.LinkedList`1::OnDeserialization(System.Object)
  2060. // 0x00000416 System.Void System.Collections.Generic.LinkedList`1::InternalInsertNodeBefore(System.Collections.Generic.LinkedListNode`1<T>,System.Collections.Generic.LinkedListNode`1<T>)
  2061. // 0x00000417 System.Void System.Collections.Generic.LinkedList`1::InternalInsertNodeToEmptyList(System.Collections.Generic.LinkedListNode`1<T>)
  2062. // 0x00000418 System.Void System.Collections.Generic.LinkedList`1::InternalRemoveNode(System.Collections.Generic.LinkedListNode`1<T>)
  2063. // 0x00000419 System.Void System.Collections.Generic.LinkedList`1::ValidateNode(System.Collections.Generic.LinkedListNode`1<T>)
  2064. // 0x0000041A System.Boolean System.Collections.Generic.LinkedList`1::System.Collections.ICollection.get_IsSynchronized()
  2065. // 0x0000041B System.Object System.Collections.Generic.LinkedList`1::System.Collections.ICollection.get_SyncRoot()
  2066. // 0x0000041C System.Void System.Collections.Generic.LinkedList`1::System.Collections.ICollection.CopyTo(System.Array,System.Int32)
  2067. // 0x0000041D System.Collections.IEnumerator System.Collections.Generic.LinkedList`1::System.Collections.IEnumerable.GetEnumerator()
  2068. // 0x0000041E System.Void System.Collections.Generic.LinkedList`1/Enumerator::.ctor(System.Collections.Generic.LinkedList`1<T>)
  2069. // 0x0000041F System.Void System.Collections.Generic.LinkedList`1/Enumerator::.ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  2070. // 0x00000420 T System.Collections.Generic.LinkedList`1/Enumerator::get_Current()
  2071. // 0x00000421 System.Object System.Collections.Generic.LinkedList`1/Enumerator::System.Collections.IEnumerator.get_Current()
  2072. // 0x00000422 System.Boolean System.Collections.Generic.LinkedList`1/Enumerator::MoveNext()
  2073. // 0x00000423 System.Void System.Collections.Generic.LinkedList`1/Enumerator::System.Collections.IEnumerator.Reset()
  2074. // 0x00000424 System.Void System.Collections.Generic.LinkedList`1/Enumerator::Dispose()
  2075. // 0x00000425 System.Void System.Collections.Generic.LinkedList`1/Enumerator::System.Runtime.Serialization.ISerializable.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)
  2076. // 0x00000426 System.Void System.Collections.Generic.LinkedList`1/Enumerator::System.Runtime.Serialization.IDeserializationCallback.OnDeserialization(System.Object)
  2077. // 0x00000427 System.Void System.Collections.Generic.LinkedListNode`1::.ctor(System.Collections.Generic.LinkedList`1<T>,T)
  2078. // 0x00000428 System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::get_Next()
  2079. // 0x00000429 T System.Collections.Generic.LinkedListNode`1::get_Value()
  2080. // 0x0000042A System.Void System.Collections.Generic.LinkedListNode`1::Invalidate()
  2081. // 0x0000042B System.String System.IO.Ports.InternalResources::GetMessage(System.Int32)
  2082. extern void InternalResources_GetMessage_m772EEF9B7C246A113177F060FD06ADB8442B0ED6 (void);
  2083. // 0x0000042C System.Void System.IO.Ports.InternalResources::WinIOError(System.Int32,System.String)
  2084. extern void InternalResources_WinIOError_m00EDA6C02E1DA83984D69308023029541AE785B2 (void);
  2085. // 0x0000042D System.Int32 System.IO.Ports.InternalResources::MakeHRFromErrorCode(System.Int32)
  2086. extern void InternalResources_MakeHRFromErrorCode_mE80550681537780A529853182710AC3228890880 (void);
  2087. // 0x0000042E System.UInt32 <PrivateImplementationDetails>::ComputeStringHash(System.String)
  2088. extern void U3CPrivateImplementationDetailsU3E_ComputeStringHash_m171C269D828658C44041FA68B6DE8CA290ED517F (void);
  2089. // 0x0000042F System.Void System.Net.Configuration.BypassElementCollection::.ctor()
  2090. extern void BypassElementCollection__ctor_m344EC8CD2EACA36E1213C5914037BB133E87FE54 (void);
  2091. // 0x00000430 System.Void System.Net.Configuration.ConnectionManagementElementCollection::.ctor()
  2092. extern void ConnectionManagementElementCollection__ctor_m4698342A715032A762FA04B2745BFCA46263BCB3 (void);
  2093. // 0x00000431 System.Void System.Net.Configuration.ConnectionManagementSection::.ctor()
  2094. extern void ConnectionManagementSection__ctor_m2FA1D29F887BD6498FBEF692BBC0AA727E38E802 (void);
  2095. // 0x00000432 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.ConnectionManagementSection::get_Properties()
  2096. extern void ConnectionManagementSection_get_Properties_mFCE0F9418E9E8CD2E1301815CC4D548261F58E95 (void);
  2097. // 0x00000433 System.Void System.Net.Configuration.DefaultProxySection::.ctor()
  2098. extern void DefaultProxySection__ctor_m962B68CEFCDE7DFB7646EF16297CA4BE0097284D (void);
  2099. // 0x00000434 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.DefaultProxySection::get_Properties()
  2100. extern void DefaultProxySection_get_Properties_m5186F1A2734EB96F065C7BC14A215D17F8325418 (void);
  2101. // 0x00000435 System.Void System.Net.Configuration.DefaultProxySection::Reset(System.Configuration.ConfigurationElement)
  2102. extern void DefaultProxySection_Reset_m0B9A1155840E7C55FC24AEDB23FB17A2815EEB77 (void);
  2103. // 0x00000436 System.Void System.Net.Configuration.ProxyElement::.ctor()
  2104. extern void ProxyElement__ctor_mC1BDF426F97F4F84CB5A34B423F59EC8748EBD70 (void);
  2105. // 0x00000437 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.ProxyElement::get_Properties()
  2106. extern void ProxyElement_get_Properties_mBFE6E283FE7E9329B586ACAADC8F2E047C7ABB2A (void);
  2107. // 0x00000438 System.Void System.Net.Configuration.HttpWebRequestElement::.ctor()
  2108. extern void HttpWebRequestElement__ctor_mB9DDAC7FF431D4AF4CAFCBC96E1A3572A1F83717 (void);
  2109. // 0x00000439 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.HttpWebRequestElement::get_Properties()
  2110. extern void HttpWebRequestElement_get_Properties_mAA0F11EA73B5397C50809EAC679F2C564F9EC7CA (void);
  2111. // 0x0000043A System.Void System.Net.Configuration.Ipv6Element::.ctor()
  2112. extern void Ipv6Element__ctor_m869AC261E0994A8B3D83CEE25C6CB99E6A5EA4C1 (void);
  2113. // 0x0000043B System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.Ipv6Element::get_Properties()
  2114. extern void Ipv6Element_get_Properties_m382D5B5B098EFF19C2A4AC1889CD1C8EAB918322 (void);
  2115. // 0x0000043C System.Void System.Net.Configuration.NetSectionGroup::.ctor()
  2116. extern void NetSectionGroup__ctor_mCD2F0DC2B9F0C6C346BC91BD8750C7111A9528AC (void);
  2117. // 0x0000043D System.Void System.Net.Configuration.SettingsSection::.ctor()
  2118. extern void SettingsSection__ctor_mBD94E7E098221DC09775A3AE1713930F6820D242 (void);
  2119. // 0x0000043E System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.SettingsSection::get_Properties()
  2120. extern void SettingsSection_get_Properties_mA774C9C884F4AD5DEC2BBE31DF7E35CAC71EBF8F (void);
  2121. // 0x0000043F System.Void System.Net.Configuration.PerformanceCountersElement::.ctor()
  2122. extern void PerformanceCountersElement__ctor_m9537195CBC7DC607F7253D06E7B6B1090456E68F (void);
  2123. // 0x00000440 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.PerformanceCountersElement::get_Properties()
  2124. extern void PerformanceCountersElement_get_Properties_m7C16FBC3E915E8384FB4409209628737B1537C9B (void);
  2125. // 0x00000441 System.Void System.Net.Configuration.ServicePointManagerElement::.ctor()
  2126. extern void ServicePointManagerElement__ctor_m0F1CF21589CA283DA734A472930A9665698B2D36 (void);
  2127. // 0x00000442 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.ServicePointManagerElement::get_Properties()
  2128. extern void ServicePointManagerElement_get_Properties_m70469523AAD1A2C2E9D4F90DDA1BA619FCE68B58 (void);
  2129. // 0x00000443 System.Void System.Net.Configuration.SocketElement::.ctor()
  2130. extern void SocketElement__ctor_m4FB4C851F1BB20CED74C206EFB1BA9DDFBE024D2 (void);
  2131. // 0x00000444 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.SocketElement::get_Properties()
  2132. extern void SocketElement_get_Properties_m8AF94DEEDA0EB4092F59FBDC361592E1B9EBDEC3 (void);
  2133. // 0x00000445 System.Void System.Net.Configuration.WebProxyScriptElement::.ctor()
  2134. extern void WebProxyScriptElement__ctor_mB613D71DE569317E40726CD8DB9A6ABA0A302821 (void);
  2135. // 0x00000446 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.WebProxyScriptElement::get_Properties()
  2136. extern void WebProxyScriptElement_get_Properties_mF5188225C0C1D64BC136465BB4B0E962FFE9240B (void);
  2137. // 0x00000447 System.Void System.Net.Configuration.WebRequestModulesSection::.ctor()
  2138. extern void WebRequestModulesSection__ctor_mF25CD80A5111A4F87B7FBF7663A3442470B97C0E (void);
  2139. // 0x00000448 System.Configuration.ConfigurationPropertyCollection System.Net.Configuration.WebRequestModulesSection::get_Properties()
  2140. extern void WebRequestModulesSection_get_Properties_mBDBDED569E677717FB617CD36B94AE34BF4208F6 (void);
  2141. // 0x00000449 System.Void System.Net.Configuration.WebRequestModuleElementCollection::.ctor()
  2142. extern void WebRequestModuleElementCollection__ctor_m62C156D78336B2E37EA6F10D477FDEAE4161F99E (void);
  2143. // 0x0000044A System.Void System.Diagnostics.DiagnosticsConfigurationHandler::.ctor()
  2144. extern void DiagnosticsConfigurationHandler__ctor_mDFB0000E6218840F66D21BB6C9BF3F647CCBC5A3 (void);
  2145. // 0x0000044B System.Object System.Diagnostics.DiagnosticsConfigurationHandler::Create(System.Object,System.Object,System.Xml.XmlNode)
  2146. extern void DiagnosticsConfigurationHandler_Create_mF21B1CC68B87DE078690B2B493FCDC5F728CBAAB (void);
  2147. // 0x0000044C System.Void Unity.ThrowStub::ThrowNotSupportedException()
  2148. extern void ThrowStub_ThrowNotSupportedException_m14168B43936EF78B7B8AC08BD815254DAA1D9FA2 (void);
  2149. static Il2CppMethodPointer s_methodPointers[1100] =
  2150. {
  2151. OidLookup_ToOid_m084AE2948BA1D784EAC148B97B6D5EF94F0D58B0,
  2152. OidLookup_ShouldUseCache_mAF605BA00A22EA400B99D24286837F6904C84ED0,
  2153. OidLookup_NativeFriendlyNameToOid_m383F983E8333B3DAB97C9278B3B0EDF09E61758D,
  2154. OidLookup__cctor_mBF99F75584EA62215139C76A1BBF57BCEAD2ADBC,
  2155. U3CU3Ec__cctor_m63CA89B172417DB40229C01C86A24DAAD5EC9963,
  2156. U3CU3Ec__ctor_m381C6259C7B5579501CBFB1E4D1DF201D5928470,
  2157. U3CU3Ec_U3C_cctorU3Eb__10_0_m6CCA3946EAC08544EB57D764DBF2D23E12DE30A1,
  2158. U3CU3Ec_U3C_cctorU3Eb__10_1_m7F86444F2B083758A76759BD54D31A3538101A4E,
  2159. NativeMethods_DuplicateHandle_m34BEE27509460FD294C19D18F4A44CB7683BB750,
  2160. NativeMethods_DuplicateHandle_m3264217E922ADAC535774687A4521889DB87CB6C,
  2161. NativeMethods_GetCurrentProcess_m0DDA8AB28E27F6B04D1CD3B60AF94D066F3953C8,
  2162. NativeMethods_GetExitCodeProcess_mE7FD943FE22AC0AE9D8B7E819A78CD069EDF6A42,
  2163. NativeMethods_GetExitCodeProcess_m0CE4AB8F1AB1431791D1A23803ED98E96DDCC2B7,
  2164. NativeMethods_GetCurrentProcessId_mDBBBEE33B07C6E14425814FE377C33984FF99ACB,
  2165. NativeMethods_CloseProcess_m46F696AA3E8FE85EA84504B04C06706A2716A8E1,
  2166. SafeProcessHandle__ctor_m347300F5032173FAA9287B4CDC692BBA71D82E95,
  2167. SafeProcessHandle__ctor_mF35A5C60AA1DFE35E75F353C346E941D62DB8859,
  2168. SafeProcessHandle_ReleaseHandle_m9026551EED6D5751BCBB3F413986A339E0DFE258,
  2169. SafeProcessHandle__cctor_m8464FCF181C5F99CFF547FD4D6AC106F9F9E385E,
  2170. IPv4AddressHelper_ParseHostNumber_m3ECD734470D95F75F0A7475BB69A53D48A924179,
  2171. IPv4AddressHelper_IsValid_mB71D85892F391896358B6C19C6E4899ED31EFCF8,
  2172. IPv4AddressHelper_ParseCanonical_m38827B1F002AC415916FF17D5C7DA3279486A91C,
  2173. IPv4AddressHelper_IsValidCanonical_m157BF3179C5A511A8915C572111A7014D7E5DB84,
  2174. IPv4AddressHelper_ParseNonCanonical_m8A508ED61556F4182AAEBE3E7D43C738A57C984D,
  2175. IPv4AddressHelper_ParseCanonicalName_mF74A625E0C85FC8C5CAE3A47785606BF93777FF1,
  2176. IPv4AddressHelper_Parse_m0F43F114BC6D0C8D85D29D3CA2CE24CA19714026,
  2177. IPv6AddressHelper_FindCompressionRange_m5BA0C004FA7BE7CB3C520AB47C4D6B6FA6C13C56,
  2178. IPv6AddressHelper_ShouldHaveIpv4Embedded_m08BEFD0452A0145779E70931B00F2D6EA15A1E70,
  2179. IPv6AddressHelper_Parse_m6F68528ADBA8B6ECED3060135FC1DF6CCD2B0543,
  2180. IPv6AddressHelper_ParseCanonicalName_m5C5161CE7D6F7D7C7D81A808F51107C85A6CA21B,
  2181. IPv6AddressHelper_IsLoopback_mAE6B2C6CFAD787337C6ABB41F2D2942A4C191C84,
  2182. IPv6AddressHelper_InternalIsValid_mDF9ADFBBDDD76F8B77EC140686B6280F4BD53478,
  2183. IPv6AddressHelper_IsValid_mDEE6D566114425592CA0A067775A2E0C771CA5DA,
  2184. NotImplemented_ByDesignWithMessage_m9A8A83C6B994C16CA1CFA80F5AD748ABA3510535,
  2185. PasteArguments_AppendArgument_mE29A5B3AEF8F74460A923B540FD9DC928D7F1163,
  2186. PasteArguments_ContainsNoWhitespaceOrQuotes_m1BDACFD9C7B6A252300167B6FD7B80C1EC4E59B9,
  2187. UriBuilder__ctor_m782D0160E73CC61448E17FF5AEFAEA22B3BAC145,
  2188. UriBuilder_Init_m5A6628A92532D3CAACD649C7528C15261C17A99D,
  2189. UriBuilder_set_Query_m1B7AB6F65BBAC94C07681D79F2A8DBDB15E844ED,
  2190. UriBuilder_get_Uri_mD0DF3F7DDF7C56CC99E2D29E06C959F80A4171A1,
  2191. UriBuilder_Equals_m2318FB925C63380B75D92D199A9C2AE4AA98F322,
  2192. UriBuilder_GetHashCode_m8ECFACD3573A5E927B335A3443481248118C8310,
  2193. UriBuilder_SetFieldsFromUri_mB6015DF5AA0D123A1B2749378D88FA26D409788E,
  2194. UriBuilder_ToString_m0DEFF1C8981338B9D30B81620E839DCF2CFF4713,
  2195. IriHelper_CheckIriUnicodeRange_m584D1B233AB9DB3642640CDBD787B0E51D2AC625,
  2196. IriHelper_CheckIriUnicodeRange_m0989646614B5D6CD18622388A069BEA8A755F013,
  2197. IriHelper_CheckIsReserved_m0F5942330B329B65D738A398854399FD43A5589C,
  2198. IriHelper_EscapeUnescapeIri_m311CD9679869740C6A303485944EF6DAE96FB169,
  2199. Uri_get_IsImplicitFile_m8D1A522158E4EB8AD8C077376D023ED1262998F6,
  2200. Uri_get_IsUncOrDosPath_m33F2D8808AB44816518C1C464152D4B7872374F0,
  2201. Uri_get_IsDosPath_m16357B61F5D111C45EF7D40276B96429E414F0D2,
  2202. Uri_get_IsUncPath_m2D9E7E2DB4EA57EF268B9BA167A1389E18AE9835,
  2203. Uri_get_HostType_mA30DC51045EE5FE94B3CB84B0D361A9C28EE572E,
  2204. Uri_get_Syntax_mCBAC18B1DC71D269BF6C98417D923674DE258DC2,
  2205. Uri_get_IsNotAbsoluteUri_m374185EB37A209B6102F955427913168C5543028,
  2206. Uri_IriParsingStatic_mF071497F10CC1CC81177D6F4BCE9D2007D8FDA16,
  2207. Uri_get_AllowIdn_m612B747CE2F03FCA867D81F14710758B561209E7,
  2208. Uri_AllowIdnStatic_m0B61B2A586F2BF870D185A1BD65151F52EFBC457,
  2209. Uri_IsIntranet_m3AC6DBC7C35F309DFAD0951ABC7D95A8000548EE,
  2210. Uri_get_UserDrivenParsing_mF2426529046B3DF3292A7AA2F4885F8D6591BBBD,
  2211. Uri_SetUserDrivenParsing_mDE80D352D6343F50F152EB65EF142E84F7F79D69,
  2212. Uri_get_SecuredPathIndex_m575B7B28B17F8F7EE3FA563ACF6390B0926732AD,
  2213. Uri_NotAny_mB88A38A602D4A784CADBD43FDF4CDA0235371E81,
  2214. Uri_InFact_mEEE8ADE0780C0712A3DEB8935BD6FC7B23F38A7B,
  2215. Uri_StaticNotAny_mDC2D7341AE3679E5750481E7B793F4E3636ACD6C,
  2216. Uri_StaticInFact_m8F3964455197F6C2CB588843D71DDAD3B2F2AB77,
  2217. Uri_EnsureUriInfo_m6FE387306AF82CDCFC56E2E9C2171C406D1FA982,
  2218. Uri_EnsureParseRemaining_mDF7D4313A56047EB22457E12330C138156D54783,
  2219. Uri_EnsureHostString_m7F5F3ED8488F83170A857CD51F0CFEB8322AA055,
  2220. Uri__ctor_m6CA436E6AD2768A121FA851CBEEFA3623E849D3A,
  2221. Uri__ctor_m24549041BC5661EAC10BA8CB35B60AD6512AF69B,
  2222. Uri__ctor_mD7EC916948CBFE71F80298DDA6E4209724958B09,
  2223. Uri_CreateUri_m9D81A5F3B332C44FDD875893EF619631708791F2,
  2224. Uri__ctor_m5AA91BCDE21E8AD62B9A48948CF3661B2F00E38F,
  2225. Uri_GetCombinedString_m7D6A3DEB5DB42F79271CEC67DA2AEAD0E05BCEEF,
  2226. Uri_GetException_m80C3194C72CA8F86F95A6DFC8D5C29BE31D749A8,
  2227. Uri__ctor_mE1AB9FB0563073B8DFB381A69A54E9E0459D583F,
  2228. Uri_System_Runtime_Serialization_ISerializable_GetObjectData_m39D9B260E68B8715E9B693A125A2116CE14D760D,
  2229. Uri_GetObjectData_m0D16C2BC060F0B88503DCC0EEACB151D43FA16CA,
  2230. Uri_get_AbsolutePath_mABB93DD30D4C0F11948DE5C117650B1C3A9925CA,
  2231. Uri_get_PrivateAbsolutePath_mF7B63FC5EBFAB1EE164BF868900B548962C5A546,
  2232. Uri_get_AbsoluteUri_m080934F4F2E2160EBEABDF00F8B6D59888EA63AE,
  2233. Uri_get_IsFile_m760E384ED177DC9197D5010B763F64196552DF5F,
  2234. Uri_get_IsLoopback_m0E865DCC324F483C0C60E7D8E6FEF7AD0F46059A,
  2235. Uri_get_PathAndQuery_m33B64A4AAF08510C0199CF5A85918B91D1008E5C,
  2236. Uri_get_IsUnc_mB190B452D6A7B09FC8BDD967A5C38F32E87E0FCA,
  2237. Uri_get_Host_m2C0E258C7DFF7A340049BE9BC08FF45E90988D8C,
  2238. Uri_StaticIsFile_m8BD582D32BB053DCB5BADA29C1DD807AACCCE7E1,
  2239. Uri_get_InitializeLock_m29D252F7183FE4C205E618018E8C42B56BC2B091,
  2240. Uri_InitializeUriConfig_mCD4E00EDCA27459C7B005DDFFAD9D54396BF7DCB,
  2241. Uri_get_Port_m7A1413AC9D9A2FC5DC8A7F89DF4A01ACA0241A02,
  2242. Uri_get_Query_m17DEC663263C486C8C8177AF9C4BFE2FFBE51178,
  2243. Uri_get_Fragment_m3CB7AD14DA9618ADE406039D4713F67D6951D835,
  2244. Uri_get_Scheme_m29106D5109538220B22FC49DE7B44040E51B0F6F,
  2245. Uri_get_OriginalStringSwitched_mBE7152D5DA7A1D922B728B9EA8C64815B0469FB7,
  2246. Uri_get_OriginalString_m3031F9054CA10F2C55C0E2415CC19810D360A5D6,
  2247. Uri_get_DnsSafeHost_mE5001E7AE7F1879A2059024EA06C9031F6320A2B,
  2248. Uri_get_IsAbsoluteUri_m2F9B759B85D295639D7959A616E1FBC203D756DF,
  2249. Uri_get_UserEscaped_m5A376B8E2DDB815CAA2E34AF8890FBA943DC2085,
  2250. Uri_get_UserInfo_mC0189C851F71ACF0B48A462E74C7F3EB86501C8D,
  2251. Uri_IsGenDelim_mED487423251FBC7A3AA85A70023D531DED88B0D3,
  2252. Uri_IsHexDigit_m89270CD137F8D5AAC9953CB367BF194D0D0EEDBC,
  2253. Uri_FromHex_m30578BD6ADBA0FE875257A8296ED979DC7849020,
  2254. Uri_GetHashCode_m41959A208E51019C57C20014B2505993FB94B70C,
  2255. Uri_ToString_mDD98375BF8CEBEF6E3708BBCA6C4AB0B54165DA2,
  2256. Uri_op_Equality_mD7D7AAB7023C0873B37D8B8C7195BEF34002A194,
  2257. Uri_op_Inequality_m64BE981CDF88B751677B80D883B201BF3CFD83F7,
  2258. Uri_Equals_m1BD19791DD8A42FEFF5844C29623626C2849C452,
  2259. Uri_ParseScheme_m8E14D8CA20935DF4A14DC0C7DFE2330C734F1AD6,
  2260. Uri_ParseMinimal_m24D824EC77216C64F4B8B9175915CD6C3C6DB7B5,
  2261. Uri_PrivateParseMinimal_m4D4C3CB26AC0DE8B0E1F7DC4143F2004D9D25B17,
  2262. Uri_PrivateParseMinimalIri_mD8C7CA7EE14D994E915B48FB6A2CDE62253D4F1E,
  2263. Uri_CreateUriInfo_m3B4F804AB6CB010246F2A52F123D6E44DECDE998,
  2264. Uri_CreateHostString_mBBAF0ACD4E2EE673F8F7F4E416D87517D94245CF,
  2265. Uri_CreateHostStringHelper_m196C6DAB9F26F08459220AC87C0A74785A61E9C3,
  2266. Uri_GetHostViaCustomSyntax_m6632DAD1F66901E82C60A47D626A9140A586C802,
  2267. Uri_GetParts_m432C93EAC8684C7410585D36DA00B04F6DC34357,
  2268. Uri_GetEscapedParts_m0C33275AFEA210E5CAD22649E8B61B49FB43971E,
  2269. Uri_GetUnescapedParts_m57F83B75B05C5D8EAB6B8ACCB6C8E4F0922CB7ED,
  2270. Uri_ReCreateParts_mB622FFDF74676902D184FD96C4E6B740B65140AF,
  2271. Uri_GetUriPartsFromUserString_m3D6EEB76609CCC54A0ABE65911CC24603A184B29,
  2272. Uri_ParseRemaining_m9134D26360C9EEDFAFAFEE1ECA1A5CEE66BE5A3A,
  2273. Uri_ParseSchemeCheckImplicitFile_m3577C77315714DF277763F7DE3BAAD8D94D2CA93,
  2274. Uri_CheckKnownSchemes_m598B70C53F57AB20E2406763BAA5636A3B57195A,
  2275. Uri_CheckSchemeSyntax_m37B81B236F58066982C17FF76058B3ECB0740647,
  2276. Uri_CheckAuthorityHelper_m7946931160B7EC50E7167A11E570A4AF8AEB5B2E,
  2277. Uri_CheckAuthorityHelperHandleDnsIri_mB737EC35D3A477668E6E289D09DFB43EAD4D4D62,
  2278. Uri_CheckAuthorityHelperHandleAnyHostIri_mE38845CEFA41AB52AB949CAE2A43D77FB397C08D,
  2279. Uri_FindEndOfComponent_m59CB1EFDA410B42014EA7DCDBA0C9FC9F5996E02,
  2280. Uri_FindEndOfComponent_m198F7AC80BEA08E8DAA6B4577D8A872B41C519B1,
  2281. Uri_CheckCanonical_m54AFA85AA00A9909C2EC01F026873F12532AD7F7,
  2282. Uri_GetCanonicalPath_m66FA22F6E85D79E360A7EE86C0E03F1A009F6F99,
  2283. Uri_UnescapeOnly_mBED4CBBC30D19BA6BA801BCF9B33CD681771102B,
  2284. Uri_Compress_m22981FC433505DEE0F230312B93B062096607CCD,
  2285. Uri_CalculateCaseInsensitiveHashCode_m635E27F73B39946637685A19CD09741D14A359EE,
  2286. Uri_CombineUri_m92FB418ECA7D55262958241C8A274715C58C6424,
  2287. Uri_get_HasAuthority_m2180FC17FB6FE7A11EBA0BDE1EF5EB9EF808A909,
  2288. Uri_IsLWS_mE00B6D5A24D07A5EA80278F981F1516343C0846D,
  2289. Uri_IsAsciiLetter_m54D66D3D390C364A49529D304526152E2339A140,
  2290. Uri_IsAsciiLetterOrDigit_m9033B2053D679076DEADF04748CE5E983B25A9E0,
  2291. Uri_IsBidiControlCharacter_m37BFE363354928FB34D016950008D1FB29DFBB0F,
  2292. Uri_StripBidiControlCharacter_mB8C52362A2A248EB33737D1A4792B3FB57975912,
  2293. Uri_CreateThis_m522F36D576D9A8803410439127DB32837331BA3A,
  2294. Uri_InitializeUri_m044EA7C6188B132874B4522D5CA41EEFDB9A1718,
  2295. Uri_CheckForConfigLoad_mC7297EBC00884B1793FDB16F79BF0FCFD53E9FA7,
  2296. Uri_CheckForUnicode_mC763EF0DDC61EE359A6256B95209736EC0353AA1,
  2297. Uri_CheckForEscapedUnreserved_mCEF702F733C72BE825E9FEBBEA751540A6A78D11,
  2298. Uri_TryCreate_m183077985BD7B1BE8DBDBCC4604F775C44723EC9,
  2299. Uri_GetComponents_m30E3EAD4E9A39939456E764FEF94AFD4D6B7532A,
  2300. Uri_UnescapeDataString_m095AF55EE0F237A44FC8A53D2EE6FA66A567634D,
  2301. Uri_EscapeUnescapeIri_m14C0CD1A4C14E2458685E5A10049204B1A15C16C,
  2302. Uri__ctor_m6EA3AF49C103A3D56EBBB24BCAEE8DE7E8676AF4,
  2303. Uri_CreateHelper_mB015D0E87C2F9401D7C9B929C194AA5E432DA224,
  2304. Uri_ResolveHelper_mCF316B7B35401CFE251F64CCE66AF24F687E7E04,
  2305. Uri_GetRelativeSerializationString_mDEB0AD1094EC2842C2F0830C1E43FF2FFDEB6F5B,
  2306. Uri_GetComponentsHelper_m83D8E4A027E180AFB34BA5290A8FF381EBCBCB75,
  2307. Uri_CreateThisFromUri_m986BB8F1CF8D75EEFA12D9D0963BA927FA394BE5,
  2308. Uri__cctor_mF9A6F75B43C4652D9B89180A998B3D86B61F5594,
  2309. UriInfo__ctor_m88A6E3E7164B78B18C70D83CA5AD734517D308B3,
  2310. MoreInfo__ctor_m4AC1286A4D4DAD0AB0EE99A2C952D54BFA5F44A7,
  2311. UriFormatException__ctor_m4D218C92C093CD0CDDDC012911A1E10CB327BB70,
  2312. UriFormatException__ctor_m718A5DEB020FAAD1F654CD05E63C3988AA7712D3,
  2313. UriFormatException__ctor_m15F8C1205D9A648F72DD5D94DB92FD1FA1397FE0,
  2314. UriFormatException_System_Runtime_Serialization_ISerializable_GetObjectData_mF5C6CA057915A5F7F4E9D8FBE5D6EB2595A4FD80,
  2315. UriHelper_EscapeString_mA9075A39AFEE45E310AA6E2977B46D74F2FE38D3,
  2316. UriHelper_EnsureDestinationSize_m0A91CAD854571386F0490A975BA25CEEA93614C0,
  2317. UriHelper_UnescapeString_m37D24870CC3AF00984435A567B7AB28E7225D7B3,
  2318. UriHelper_UnescapeString_mAB62B336BC58C7697B4CA7355405F3C1FDBBB7E0,
  2319. UriHelper_MatchUTF8Sequence_mD118AEEE32C6BCBA4ED2E41E2B008EB83412D54B,
  2320. UriHelper_EscapeAsciiChar_mFA21BF7A2306446A8E552111DA06160A41CD07D1,
  2321. UriHelper_EscapedAscii_m93D49C2D42E1E5E292199FACF5B4D6CC770D3DA1,
  2322. UriHelper_IsNotSafeForUnescape_m79864E996F8F46D4A1C00B965E2EB4EE7AFE63ED,
  2323. UriHelper_IsReservedUnreservedOrHash_m7B622D953837E4F0FEF44B114718B75B846512A1,
  2324. UriHelper_IsUnreserved_mED7CF4BB5F43C337685396D5F99D7EFABAD5E5C9,
  2325. UriHelper_Is3986Unreserved_mCDBDBB83B68181182A6AD07747084B3204C7BDCA,
  2326. UriHelper__cctor_mB25AC23398D53149F4C33FB739BC6010324D0D81,
  2327. UriParser_get_SchemeName_m3BD969B4E8EEA3769D070FA42CE340CDC766F47D,
  2328. UriParser_get_DefaultPort_m38684C86B40F59960533D8F812B311ACBBEB7AA5,
  2329. UriParser_OnNewUri_m752BC0174A2E3F7AA99F1088E1D539E5B8F7B5B2,
  2330. UriParser_InitializeAndValidate_m5B38A10B57DC49B1CE13F361ABD78D7269EDA886,
  2331. UriParser_Resolve_m7CC03524A2848FBD24BAB57CC62A19C751937182,
  2332. UriParser_GetComponents_m230F3341901B4B90DC4650093272BC15A1161FAF,
  2333. UriParser_get_ShouldUseLegacyV2Quirks_m8EC9AB4BB2AD4FAAC4CD7C921C7A61AA4FC914D2,
  2334. UriParser__cctor_m0F0B1F5441AF97DDBE797061C6CABA2CD4CDBE69,
  2335. UriParser_get_Flags_mBE183D7CBEEEBEC670CCF1DF21D56B354796D6C3,
  2336. UriParser_NotAny_mCE6CF6736414BE547215F6E44C3E1283DEA05F56,
  2337. UriParser_InFact_m3C07C3050DE1E69F6B0BC816EC34AF610373E532,
  2338. UriParser_IsAllSet_mEE811F1E7BBCC34D7A32BC30A18AD5D34E690813,
  2339. UriParser_IsFullMatch_mFC1C9EEDD31F040997931B26EF54CE7988495550,
  2340. UriParser__ctor_m4FA54685DFA00FC6AEA73E94CD59C5FF2872E55A,
  2341. UriParser_FindOrFetchAsUnknownV1Syntax_m780CA32D27A4F1D8B7798FC4D3CC28A6FC4ACCE0,
  2342. UriParser_GetSyntax_mEAED92E4DCA23EA5240B39CD1165F450374A0A57,
  2343. UriParser_get_IsSimple_m8ED850D585BA3BA0FDC239496065E6D2D973C7E5,
  2344. UriParser_InternalOnNewUri_m93B84E04949FAE8FE3B6919DA9F933B682D4B2F8,
  2345. UriParser_InternalValidate_m69157B3E80381F3FC104788160F2213B3FE8F39D,
  2346. UriParser_InternalResolve_mD1963080EBCF493DA78656AA5AEA458BF5138F5B,
  2347. UriParser_InternalGetComponents_m52F450C5283A1820D5AFD07505E5FE82D4F476B0,
  2348. BuiltInUriParser__ctor_m6E9775075E7360DD524B7E3E456A3FFA58F89E79,
  2349. DomainNameHelper_ParseCanonicalName_mCDD58AA526B15176E4468ABA169068B279F3817F,
  2350. DomainNameHelper_IsValid_mD977C4425926C44931F21A478C861D1041AF5B67,
  2351. DomainNameHelper_IsValidByIri_m94490F7D0A09B0C35C89E2CD478B935EECEC5F96,
  2352. DomainNameHelper_IdnEquivalent_m797D2222F0F6786FF059095B73ACF47A3374E8DC,
  2353. DomainNameHelper_IdnEquivalent_mEFD473FCBC1D7F515577673838569560777F5D2B,
  2354. DomainNameHelper_IsIdnAce_m95A0515B49C9679EE331F830D05C2C12853919BC,
  2355. DomainNameHelper_IsIdnAce_mC02E0A64A83B0C99CF26AD5D49AA541E33143947,
  2356. DomainNameHelper_UnicodeEquivalent_m390DFCD943A3716158026F5E1AF6558E56461F12,
  2357. DomainNameHelper_UnicodeEquivalent_m9C7E79F0172D7AC0DEF7FC5236F1B9766C735517,
  2358. DomainNameHelper_IsASCIILetterOrDigit_m5C30C4CDEF0ECE647B2C5E714A595B08A8009B3A,
  2359. DomainNameHelper_IsValidDomainLabelCharacter_m9BBE29F6DEACCA6864574A1B6C8BCBE6732BF5CF,
  2360. UncNameHelper_ParseCanonicalName_m938F53305ABCF1840011969B589F0D53A1028C79,
  2361. UncNameHelper_IsValid_mCF30A9D7038A73997B8B198D7EB606B171E00526,
  2362. IOAsyncCallback__ctor_m58A7C732444005CB72C5B352096C2DB252A6F113,
  2363. IOAsyncCallback_Invoke_m70CC21061AD0965DBC87CB382AD395A35E1788B2,
  2364. UriTypeConverter__ctor_m02CB01E1305031BE5A45FB54601E520748B6EDB6,
  2365. UriTypeConverter_CanConvert_m970377ED30FF1B6875CCDA64FDC87EFE7D381DE3,
  2366. Semaphore__ctor_m5954C9FB5ED41FD527888AA96F28398DBCAFA237,
  2367. Semaphore__ctor_m21267A4125BC0EBE8EE42B35C6D0032F5976CB03,
  2368. Semaphore_Release_m3AA41CBF1DEA03948FD56E47B5E05A68F43A7A94,
  2369. Semaphore_Release_m69BEC06D53D264DAF55DC483D40AA15DE6CC6374,
  2370. Semaphore_CreateSemaphore_internal_m4C9C25F3F249CC713125E14D94657E3C115C69D0,
  2371. Semaphore_CreateSemaphore_icall_m9AB21A1FED62E361BA94EC9AE2938EB0986EF2D8,
  2372. Semaphore_ReleaseSemaphore_internal_m6AD8D5EEBC935B1D85C1F29D383F63BD8C49756E,
  2373. Capture__ctor_mDC1197B1E29487F3D086091CF3D5B1029D593402,
  2374. Capture_get_Index_m35E8D105E5E2142415F85116BFD4BA369AF7A17A,
  2375. Capture_set_Index_mD5E578A0833A03602FBDAA2ABF77C9CC849CDABE,
  2376. Capture_get_Length_mA3E97C9DF116CD4B4C20EBFB70A1312F33DA7A92,
  2377. Capture_set_Length_mF9069396819D5D0282F38E70F347CDC625BE016E,
  2378. Capture_get_Text_mDD394681E5FC39FFDCCD9552C0BF09DF8A7054ED,
  2379. Capture_set_Text_m99AE1BB9AF9D7744D0E6F747DCF5A378591C353C,
  2380. Capture_get_Value_m1AB4193C2FC4B0D08AA34FECF10D03876D848BDC,
  2381. Capture_ToString_mC843EDDC990DBE2696BA08D08B1081CA12228F2C,
  2382. Capture_GetLeftSubstring_mBFF01B80F38DA0FF4E56EFEF9FD9EE8899AE57DC,
  2383. Capture_GetRightSubstring_m1F1F896A999BC08AEEBD1BB28616F12FC593D1C3,
  2384. Group__ctor_mFDE74CF068520CBE797B563B419B8817E60CB58C,
  2385. Group_get_Success_m4E0238EE4B1E7F927E2AF13E2E5901BCA92BE62F,
  2386. Group__cctor_mCEC94034CDEE90B4E5B77AE639965DA426C49161,
  2387. Group__ctor_mEB6936CDFD191A4C92766CE3F3301161D7505C5E,
  2388. GroupCollection__ctor_m70201F22BBECA6AE7E6132AB9629B24EA458A7D2,
  2389. GroupCollection_get_IsReadOnly_mF1DE2BBB4E573C6EDE85B787281F90951AAB8C4A,
  2390. GroupCollection_get_Count_mE8775E53B4F5DA6D520BEF5ECEED2E0C08A26B39,
  2391. GroupCollection_get_Item_m40EC174D4AC8FDD68F8819C35B779C79A44322F3,
  2392. GroupCollection_GetEnumerator_m47E269C5A8C902948812AF4F52D0C96759550EE9,
  2393. GroupCollection_System_Collections_Generic_IEnumerableU3CSystem_Text_RegularExpressions_GroupU3E_GetEnumerator_m593F2B44A71E46606D2E8C0816E626675EE2087D,
  2394. GroupCollection_GetGroup_m8EDFDB8D85D8BEC6EB98B68CA69EE0022FC16B13,
  2395. GroupCollection_GetGroupImpl_m27CE16949BE0A9CFC61CC6CBF3FB179F63654D92,
  2396. GroupCollection_get_IsSynchronized_m31D8770968C4D1322FBD2572204C74F978ED7DA3,
  2397. GroupCollection_get_SyncRoot_m7505B29FFFE40E5319BAD3F3B3332F8A6299570A,
  2398. GroupCollection_CopyTo_m122BEB82372AC34C575FCB8C71188A2A49CCC482,
  2399. GroupCollection_CopyTo_mCA848040E42611E6A969C9E4F632FD81FC27B52A,
  2400. GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_IndexOf_m63AB69A8D37D49B1AFFE8CDEED6442D25A25F94A,
  2401. GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_Insert_m515A74F3095C972A28657B89FE6B65A3EC5324FA,
  2402. GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_RemoveAt_m981151BB2C68E7F2DC0BF4DD61D4AD4AB5B5AE3A,
  2403. GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_get_Item_m7FD6BE83AFD3DCC2F9ABB2AB4B938F552DF1D45D,
  2404. GroupCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_GroupU3E_set_Item_mB5DBB39B4E6F360B8105064E6659EFC49E8B1C85,
  2405. GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Add_m96D9B7FCEC33784ED88BAC3C291146E64A921D8D,
  2406. GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Clear_m67DAFAB787617D8A9B720AAF612436587E2C3172,
  2407. GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Contains_m260CC86A4FD94F5682B73C9C8BE03551C14B3568,
  2408. GroupCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_GroupU3E_Remove_m008F559DB848823129DDCB7B832C731F0D4AFF83,
  2409. GroupCollection_System_Collections_IList_Add_m08D9178D05AE66397CBCF2184448AE712741E4D1,
  2410. GroupCollection_System_Collections_IList_Clear_mCFF90C2303D7106D722E8B574ED3261C80F250CE,
  2411. GroupCollection_System_Collections_IList_Contains_m9E34B033D0BB903B2491336D7F70BE5A59D46208,
  2412. GroupCollection_System_Collections_IList_IndexOf_mA974FC7CFC23310A1CAAD8A750823D5E0ED762AC,
  2413. GroupCollection_System_Collections_IList_Insert_m3CDAAB43F292FD0ABD2D9595F02233FB55577623,
  2414. GroupCollection_System_Collections_IList_get_IsFixedSize_m5AA2CBFB17E2617597BDFBB56CCA1E435A763014,
  2415. GroupCollection_System_Collections_IList_Remove_m32982B763D442200E71B8A5E6C85C9501A555F23,
  2416. GroupCollection_System_Collections_IList_RemoveAt_m32BF4A16212F4849AD46F680E5D0D14268CB7C58,
  2417. GroupCollection_System_Collections_IList_get_Item_m969EA1758BE453F49B700FABF29940C5C9800573,
  2418. GroupCollection_System_Collections_IList_set_Item_mDDFE5D350953DB61758FE64D556670EA5A402C48,
  2419. GroupCollection__ctor_mB178F93E8DB52AA6412FF28E5FE50943E2BABFFB,
  2420. Enumerator__ctor_m17B823D35315CED0509F6B4C5F04C148B9388DDD,
  2421. Enumerator_MoveNext_m1DDDE3FC6B83FF15ED8AA895DE1357C37B7241C5,
  2422. Enumerator_get_Current_m6201905A1315214B04F5001307F52887F9161F43,
  2423. Enumerator_System_Collections_IEnumerator_get_Current_m16F94921184B09EDC3D45E9CFE3F3FAA1E5D862D,
  2424. Enumerator_System_Collections_IEnumerator_Reset_m5B7067CCF9E8139F34641618492A2DAACA5419B0,
  2425. Enumerator_System_IDisposable_Dispose_m1C77D8E3DFF1A034E9329E11854F11012F20AA69,
  2426. Match__ctor_m2A6BD37E98680890114AC62CDD23E1821E80A53A,
  2427. Match_get_Empty_m50E10899C5A892532ED484CDA11DE27CC6A7B546,
  2428. Match_Reset_m53A78F16760B7CD5CC8A104F6CD95CA255D888AA,
  2429. Match_get_Groups_mFFA743CDBD78BAD530F2C66FE216C9A5282DA09B,
  2430. Match_NextMatch_m4B7BA2B21E09FA0937806F41DDE3EE0F052C4052,
  2431. Match_GroupToStringImpl_mF3F2A3BC4EC33DD1FD35244E2412E05151AF6A1A,
  2432. Match_LastGroupToStringImpl_m78C890F3547E00454BEB81BC939FE680AAEBB29A,
  2433. Match_AddMatch_m5F28F3255C64D67D56C1542CE32A9D324F96780E,
  2434. Match_BalanceMatch_m85EA44453E637DEBE24ABC7562BF91EE1222DBFD,
  2435. Match_RemoveMatch_m154DB10030027B3738903FFB50DE511D71656B04,
  2436. Match_IsMatched_m9D6E0C0AB1F3E1E8E49E77E3A0A0ECCD7C2C4FBA,
  2437. Match_MatchIndex_m97F06DECDDA8BD3E4D8DF6B9224B8E24C0764F35,
  2438. Match_MatchLength_m5C93EA60B018A79D9D05C8E69D25835848471B01,
  2439. Match_Tidy_mF0A46109EAF0E91CBCA732985265E1DC20CA3F51,
  2440. Match__cctor_mB241D90D9F6B1311AC606248B3CCA821F8CC9855,
  2441. Match__ctor_mBABEF8F11A3BC6DB713519819D135CC87AC1B4CD,
  2442. MatchSparse__ctor_m7CEA8A7F538C706527778E8E75003DD74AC2FD41,
  2443. MatchSparse_get_Groups_m02FA0AF82798ECC113234C2ED840DD630A3CCB45,
  2444. MatchCollection__ctor_mCB1E897117A6976A5932C82A9EA0F11FF7BCABFE,
  2445. MatchCollection_get_IsReadOnly_mC801B489E41AACA6A80CEAD222CC78EFD212E994,
  2446. MatchCollection_get_Count_mF9D979B5B9D3835CC61977CBFB4110173B1CC926,
  2447. MatchCollection_get_Item_m22EC679C4BB2C29C63AF2195C98C886EB73303D1,
  2448. MatchCollection_GetEnumerator_mEDB2417DB45B514C8015043F52630DE1AD15447B,
  2449. MatchCollection_System_Collections_Generic_IEnumerableU3CSystem_Text_RegularExpressions_MatchU3E_GetEnumerator_mCC91AB6EA562C3AD42A7B202B207EC0FD4537934,
  2450. MatchCollection_GetMatch_mFDC0D40A44A2A7B8DD98B2042C58F087C906FB6D,
  2451. MatchCollection_EnsureInitialized_mCCDBDFD1886387A00C69F58576873861916A2654,
  2452. MatchCollection_get_IsSynchronized_mADB36B54C8A13661C6235AAF79E8C0FD659A163D,
  2453. MatchCollection_get_SyncRoot_m5E9A0515710C5B63B349C1B9E4D937D76AF43E68,
  2454. MatchCollection_CopyTo_m840C9BD921059464F949874DACD5D253AD3D7F9D,
  2455. MatchCollection_CopyTo_m63FBC7E98C8B6B4DB3D155758D4E378F01CFA539,
  2456. MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_IndexOf_m3F6BCFC1B93F62099835387557F8EF4F5F009E9F,
  2457. MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_Insert_m8F23643755F8DBBDB9F62C93983A65467B3C9ACE,
  2458. MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_RemoveAt_m35604FC5400522F86CAE7CAA4D13935A81BE8752,
  2459. MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_get_Item_m58CD54D0E2F19880287070225CB97B987B7F5C84,
  2460. MatchCollection_System_Collections_Generic_IListU3CSystem_Text_RegularExpressions_MatchU3E_set_Item_mEAF77169289374758416D2911AF012C7DCE9378A,
  2461. MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Add_m154176CEDE7E9E069DDA9DDE0A81EF6B37BD0165,
  2462. MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Clear_m9BB9C93A481537B734AF3EB6715BFC00B94547BD,
  2463. MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Contains_m388400538ADC88F2EA33B62458D2D05B647C4FAF,
  2464. MatchCollection_System_Collections_Generic_ICollectionU3CSystem_Text_RegularExpressions_MatchU3E_Remove_mEBB078E88FD8336140F2B4B0359CA4DF5D61D903,
  2465. MatchCollection_System_Collections_IList_Add_mC16406A9EE094327248A90E65F4E36CD53DFEFEE,
  2466. MatchCollection_System_Collections_IList_Clear_mCFB22D61C256132062B66F3D91721F71B32C02E2,
  2467. MatchCollection_System_Collections_IList_Contains_m2A0C18BBE1D5CE215A57706BB1E81C375BE53A07,
  2468. MatchCollection_System_Collections_IList_IndexOf_m324811BE6C4E84EAC5FD55325201E2EE07D9AE4B,
  2469. MatchCollection_System_Collections_IList_Insert_m3D517C0C55A72CDD8D2AD7D59D7D1423C807231C,
  2470. MatchCollection_System_Collections_IList_get_IsFixedSize_mFDC4D4DAD504EB2D9A2CE03BAC58A03C0DC946A7,
  2471. MatchCollection_System_Collections_IList_Remove_mAD17E6DAC2834015AB24C4D66EABB9353C24089A,
  2472. MatchCollection_System_Collections_IList_RemoveAt_m5177AB0687CF2F1EB97C591DB987491DDDD7B2C9,
  2473. MatchCollection_System_Collections_IList_get_Item_mC90C6F44948350631D273AFAEE08873B39F8EF1F,
  2474. MatchCollection_System_Collections_IList_set_Item_mF5EE10AA5EF639CB97DCA5D5F82A41DA2C196E32,
  2475. MatchCollection__ctor_m816A933886BCC9F63F61F20057F42B2322B5E512,
  2476. Enumerator__ctor_m7FB61A151678DD2B024D5064248818D83F77A6B1,
  2477. Enumerator_MoveNext_mB909B0EBF0E5BDE4E0686174E2F15ED8DA9A6A3F,
  2478. Enumerator_get_Current_mBF83C87086008D3CC421C741DAA8F7C68D0C25E7,
  2479. Enumerator_System_Collections_IEnumerator_get_Current_mBC6B322ACF6C0378854DBC6511B79D9ADF947A9B,
  2480. Enumerator_System_Collections_IEnumerator_Reset_m08E6B917407D0CFD0D52DBA2B2A932E079C4B91E,
  2481. Enumerator_System_IDisposable_Dispose_mF679BE85FB31DEBD4E1DEE10118DE35A5DCE322E,
  2482. ExclusiveReference_Get_mCC2B9161946C9532001438C65A38E8D8FD56FB3C,
  2483. ExclusiveReference_Release_m7A911FBF52436AA832188BF89CC558155BE09018,
  2484. ExclusiveReference__ctor_m41EB96FC1FA261CB792752B89F15E6513FEA1722,
  2485. Regex_GetCachedCode_m2039E73548B61FE55B6C8D85C00076DBA50332E6,
  2486. Regex_GetCachedCodeEntryInternal_m9FE175C47BF909F7F223013004C0EA0DAD660C06,
  2487. Regex_FillCacheDictionary_mC47F317967E556D1F03A344B78B215356D604755,
  2488. Regex_TryGetCacheValue_mA2B41F91C84CB02DA59E18DB80B0A49CBC600A8B,
  2489. Regex_TryGetCacheValueSmall_mA62E6520886883BC787412F588CF79B7A02B9A28,
  2490. Regex_LookupCachedAndPromote_m2FE5584043609F1616158AF8621FC3ED48BCD900,
  2491. Regex_IsMatch_m66D13054C7992322810B0CFC6B46AF11A927C9AA,
  2492. Regex_IsMatch_mCC0157A5E20FC634B8812B494F48877D55602C4D,
  2493. Regex_IsMatch_m7E96E666FBE7259D7638A3A6A21BE824D2406F49,
  2494. Regex_IsMatch_mC358D80573E765ECC19F9F5882664E3B1FA0966E,
  2495. Regex_Match_m58565ECF23ACCD2CA77D6F10A6A182B03CF0FF84,
  2496. Regex_Match_mDF110993CAA26CD41AE9F5DB7F0C307B2680CED3,
  2497. Regex_Matches_m6173BAB925E8664D3E962C59D780625528CAC22F,
  2498. Regex_Matches_mC66F7FB9D61C63554E96ED6942214375EFA110D5,
  2499. Regex_Matches_m6654B7647075F4D6B1470042719C2EB6FCC16024,
  2500. Regex_Matches_mD0E47C23B403AC380AF7EAECA48E63C61DC39CDF,
  2501. Regex_Replace_m8E802C10B5A591BEA61FC00EA8E4AF398D815A90,
  2502. Regex_Replace_mD86A837354847D86EC562069D67567F9F707C9C4,
  2503. Regex__cctor_m689E73750FECC607BB4E1BF503660C16BE0F40E8,
  2504. Regex_ValidateMatchTimeout_m530D1B5EBC69BEAA11CCB7053A96C4AA9869C591,
  2505. Regex_InitDefaultMatchTimeout_m8EEBEF239D034DCF29E50E681B318B517202854E,
  2506. Regex__ctor_m082970AA73B8236360F0CA651FA24A8D1EBF89CD,
  2507. Regex__ctor_mE3996C71B04A4A6845745D01C93B1D27423D0621,
  2508. Regex_System_Runtime_Serialization_ISerializable_GetObjectData_mD788EE38607BF5D618FDA920048707DF4CA4B99C,
  2509. Regex__ctor_mA8EBF2F80CC00D741BFD2FFD7DC9DB26FBCEE2A4,
  2510. Regex_get_RightToLeft_m52C4DEE1DC94FC9531785B74111022F3BCC1DF4B,
  2511. Regex_ToString_m4982DE4C344F7D529666314646F071580A450D5B,
  2512. Regex_GroupNameFromNumber_mC99A37419C4C0C9C3869BCDF055EDC72782D53FF,
  2513. Regex_InitializeReferences_m55385AD102411A38BF4426C08F6FEC6E55E4D4D6,
  2514. Regex_Run_m4DCD2202C599273C00D6052A77BDD2F39E2F5BF8,
  2515. Regex_UseOptionR_mFAB8780E9F998BE60C4B1127D57DD627A3B5629C,
  2516. Regex_UseOptionInvariant_mD51BCBA0BF4C1B5CEBE9423B4AAA93CD83569B60,
  2517. CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F,
  2518. CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2,
  2519. CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0,
  2520. CachedCodeEntryKey_op_Equality_mE9E3CA5933F8AE24BCE5AD52D6C4EE014C085E40,
  2521. CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE,
  2522. CachedCodeEntry__ctor_m14145ADFF67BA7C888673D806C24E28C96B83B2A,
  2523. RegexBoyerMoore__ctor_mFDCB1AB420E718548B67DE42C233402955BBB189,
  2524. RegexBoyerMoore_MatchPattern_m0E84EAABBFCDA85484466A41A7B90187D3489E8C,
  2525. RegexBoyerMoore_IsMatch_mC09692237823CC6C74D4F5D8900D82CEC840FB47,
  2526. RegexBoyerMoore_Scan_m86EB5A209D33DA3F4C7335F8FE133238666FA57B,
  2527. RegexCharClass__ctor_m165680E6EA10035E0630220C967BD772F5D6F52E,
  2528. RegexCharClass__ctor_mFAD2AF3D7B0D4D3DC8BC850B8899C5C4D55F8B49,
  2529. RegexCharClass_get_CanMerge_mC093FE4BE7C1933BA9F146CF2A33CD729A965172,
  2530. RegexCharClass_set_Negate_m8EA71CB8F671E99EF0B388CB520F44B8B6653A6B,
  2531. RegexCharClass_AddChar_mED269B31D5C606032B3394A9B9305ED172D16746,
  2532. RegexCharClass_AddCharClass_mDE8C70A6A99B2223DE4EA36A4753A13B5EEDE7BB,
  2533. RegexCharClass_AddSet_mFC202CC46631017C7D64ED17EAA9C786C5C7CE83,
  2534. RegexCharClass_AddSubtraction_m4EF34AFB93C001C6A4521E1F1C5F4B54833E8A12,
  2535. RegexCharClass_AddRange_mB1188A62712FE4ABB7F5DB28645351E375B5C6A7,
  2536. RegexCharClass_AddCategoryFromName_m032AED661665AE30D7F3F712914E2937F6E4FF97,
  2537. RegexCharClass_AddCategory_m3A3C78511F279FD0CF67A3EE36F59A548A37269A,
  2538. RegexCharClass_AddLowercase_mB87FC245CC837E582370E5410A6B40B23BEAC0BE,
  2539. RegexCharClass_AddLowercaseRange_m75E07C55A082FE5B2926997F2564B611DF61A343,
  2540. RegexCharClass_AddWord_mAED995BB6613893E0950C5895515204F1E95D152,
  2541. RegexCharClass_AddSpace_mD1BF3AD215D69EC6CF0E49A359F7FC709FD6FBB6,
  2542. RegexCharClass_AddDigit_m04C1001F7E8DA85CB2D262ED403BA9BD215A7A8E,
  2543. RegexCharClass_SingletonChar_m4B0E4CE38D80141C013BE74B01C58FB81B0DE630,
  2544. RegexCharClass_IsMergeable_m986CE5853CF227EC275D0F16E91472A3FA903531,
  2545. RegexCharClass_IsEmpty_m10A0C981C0200FFA5211CF9EEC8EE1FFECE27545,
  2546. RegexCharClass_IsSingleton_mA3970BE305000CAE9576642E3C6751249767A2B4,
  2547. RegexCharClass_IsSingletonInverse_m04C0F39C52377F64FA6B7D93AF2B89D203E9A108,
  2548. RegexCharClass_IsSubtraction_mE9E413F4B753B830F3091897DB20C4E6E88EA5F9,
  2549. RegexCharClass_IsNegated_m7F52D93AA1B63D6C1AACB04DE2CA8ECFB901BA47,
  2550. RegexCharClass_IsECMAWordChar_m95AFA872BB22C901C60DFCC9C8735BA78EE1EC84,
  2551. RegexCharClass_IsWordChar_m2912E5148F0F89512DDF7D629188ADA82961080C,
  2552. RegexCharClass_CharInClass_m635FAC50DE8EF6690ECA98FADD367716A5A54BEC,
  2553. RegexCharClass_CharInClassRecursive_mEC6F84D9CFEAD5A3F0091FC05296AA53FF188232,
  2554. RegexCharClass_CharInClassInternal_m013394FB15A790E1BF02D518C3F7485359A4E3E3,
  2555. RegexCharClass_CharInCategory_m18B64CFDDA01F24D468ED85E35E72D7B71203957,
  2556. RegexCharClass_CharInCategoryGroup_mE20D51D1FD31B839D900136C42B8A7F014032C82,
  2557. RegexCharClass_NegateCategory_m6BE8AAA97753BF3F6A9577E4EB5D8A0590ADF638,
  2558. RegexCharClass_Parse_mE586DA457874C3808D48C2C514AED5B147221D27,
  2559. RegexCharClass_ParseRecursive_m04198C9230D295E6B3261040CA9DD37DE03EE79F,
  2560. RegexCharClass_RangeCount_m36A38A50CD2E3E61B5F55D95562BD92923F981F1,
  2561. RegexCharClass_ToStringClass_m6B0B92A0A525001CD78A6C2A766295268E0FED57,
  2562. RegexCharClass_GetRangeAt_m67B8198B09F344044D8F742C5C9869034C4A3128,
  2563. RegexCharClass_Canonicalize_m77EEBAD046B3EAD5110DD472434BDE16851C7A9E,
  2564. RegexCharClass_SetFromProperty_mD4411181E13EEB6F8D96972AF4564698999E9DF1,
  2565. RegexCharClass__cctor_m15D71DF95CE4C3DEF5BDF06B03E6521A07E58296,
  2566. LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A,
  2567. SingleRangeComparer__ctor_m9B430EFE70974D964D73913D81E7C6C9236BBCCE,
  2568. SingleRangeComparer_Compare_m917FDE86E5F31A755D07077EA095F8B7E27E130B,
  2569. SingleRangeComparer__cctor_m649382AF0493818C7B5D453010FE22A3523F1A90,
  2570. SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E,
  2571. RegexCode__ctor_mA50EE1CFA1A050BFC45E135DAB7E2704049512E0,
  2572. RegexCode_OpcodeBacktracks_m44FC8B177CFCB191B72C109984A707744FD7B2BC,
  2573. RegexFCD__ctor_mE1C0A21180069D25EEF6F3702938ABB087F35C0C,
  2574. RegexFCD_FirstChars_m3BAEF0481AF78F4FC40C35CEDA9100017A6D794B,
  2575. RegexFCD_Prefix_mE4F5ABEA5443B6940F83E59C60D0A9A201CC4BD6,
  2576. RegexFCD_Anchors_m9211098DA08795B8459B918CA3D9A1A4733365D7,
  2577. RegexFCD_AnchorFromType_m825872EAB7A0322BBD677DF34281A3ACEE8808D4,
  2578. RegexFCD_PushInt_m0B38AFDAF0D14FF1E41AC90838B40C4C866D8875,
  2579. RegexFCD_IntIsEmpty_m05E3C6FF40B69E98D90CF1C12DF3F32AEC800B5E,
  2580. RegexFCD_PopInt_m1DF4F5E6B4BA9E15AFF2B3C44D1A233EA46EFCD0,
  2581. RegexFCD_PushFC_m1396C7FD5ACE3D28076FAFF667D9A0D169F8B675,
  2582. RegexFCD_FCIsEmpty_m749E6423466EAD51E38445AC91E76DE31258574F,
  2583. RegexFCD_PopFC_mB83F2100E8EBACF17904BD5CACB57525D2966628,
  2584. RegexFCD_TopFC_mAE41171B96938FD879E0C0AE7C0D06645AAA84CD,
  2585. RegexFCD_Dispose_m0B04A2F3B819FA7BFAF0AECCBF6D22E6D9789C07,
  2586. RegexFCD_RegexFCFromRegexTree_mD5A53219905969B914CE27404553A4360DA78500,
  2587. RegexFCD_SkipChild_m5ACE619BAC10DD5DFE755655DB6151E7DB0885FD,
  2588. RegexFCD_CalculateFC_m16F7EB523C02B530A741A7F6364F2E46865DCC91,
  2589. RegexFC__ctor_m18E889B95C8C6014582FD2C6991F789190519F0A,
  2590. RegexFC__ctor_m073D88DF033828EB626DBEA191FE78296CADB57D,
  2591. RegexFC__ctor_m69E0058CD2F4A36F14589250B3F5CBAD7025D6F5,
  2592. RegexFC_AddFC_m61D0F8CDE635ED3A48AEA069A7700B100D2AE851,
  2593. RegexFC_get_CaseInsensitive_m4FCD7C7545925463ADA4055E9FE62D5A452E2102,
  2594. RegexFC_set_CaseInsensitive_mF9A3745D1575160C2F2B1F7F9EB5541BD0C9FF4B,
  2595. RegexFC_GetFirstChars_m6BAC398ABDCA5AF58CBE678143C9792611A2A3E8,
  2596. RegexInterpreter__ctor_mB81896A8292574F7532CF707F74A1AC1DECEA9FF,
  2597. RegexInterpreter_InitTrackCount_mFFFBE9294C6FCB854D4502362473C40A5ABBBFC4,
  2598. RegexInterpreter_Advance_m31E2455F84B61536DE535BE51D4D0B42DC33857B,
  2599. RegexInterpreter_Goto_m9BF559085E75D4AA7457FAD60E879AB96BB4AEC9,
  2600. RegexInterpreter_Textto_m66DE4B949DBAA02672CFDE27162BCED542038850,
  2601. RegexInterpreter_Trackto_mDFDFF0401BC8F2B2D26AEC65B54B963F84A089AE,
  2602. RegexInterpreter_Textstart_mDF185C6B3E245A2307A8B0B9F5FE5DF8C8C9936E,
  2603. RegexInterpreter_Textpos_m6E20619B1C7F8B77D7A57A8A6939C24011808DEC,
  2604. RegexInterpreter_Trackpos_m6BDE792A7333FADB2533591B88211FD77E8F0401,
  2605. RegexInterpreter_TrackPush_mC82959F407482A4713C419296455A18F5D861E93,
  2606. RegexInterpreter_TrackPush_mA225A4A0302F57CE82842189DCB8895A9AAEDB3D,
  2607. RegexInterpreter_TrackPush_m94D69F6CC8E122478F4EADE04FB7FC9482CEC878,
  2608. RegexInterpreter_TrackPush_m606F28BD60B479F0FD3073F8B5627836DB89230E,
  2609. RegexInterpreter_TrackPush2_m5131F1DCBCA4D4D2231B44A85B08DE319BE31C9F,
  2610. RegexInterpreter_TrackPush2_m18FF10B704A6586A18D9AB21D28737DC32DA2797,
  2611. RegexInterpreter_Backtrack_m8D227FAE1EFD91174D43FF070D9200291941E593,
  2612. RegexInterpreter_SetOperator_m693B374C6827D36CE755EFFDA53E245FB04652EC,
  2613. RegexInterpreter_TrackPop_m2FE356634C8337D8B657D30790588E4A4D7DECC1,
  2614. RegexInterpreter_TrackPop_mD3125258D278581E337C822F3C9847233E06224B,
  2615. RegexInterpreter_TrackPeek_m8D2CDC071ADBBC028FBAA364E2C18BD19FD6D861,
  2616. RegexInterpreter_TrackPeek_m45C4F44554EC086C01B03C054BF6A94105D39699,
  2617. RegexInterpreter_StackPush_m9BC14D7DD0FAF99AF230B436F32557E056F8FB60,
  2618. RegexInterpreter_StackPush_m7741DC1BAEE69DFB68E1D60A9FC39C718829DF0F,
  2619. RegexInterpreter_StackPop_m3284B40674B96F317D05BD2616AAA80181E0AEFF,
  2620. RegexInterpreter_StackPop_mAEBB71FEDEADC065C5FA19E7C2C0FF0E82CEE681,
  2621. RegexInterpreter_StackPeek_m16057890EE30C3383227F21632C02C6BEF981991,
  2622. RegexInterpreter_StackPeek_mAFBD38869C8A829D6ACF534643B8A6C9863A10D8,
  2623. RegexInterpreter_Operator_m3BD9AD7DCDA4E84DE4821DA786E1B1483E677B58,
  2624. RegexInterpreter_Operand_m09F048ED7BBB36BEFC5023D420323E37A97C9560,
  2625. RegexInterpreter_Leftchars_m6FD5AA399927D1767633B24AE234D596CBDD4002,
  2626. RegexInterpreter_Rightchars_m0D684BDADC810F61B803D30D121506833AD07CD7,
  2627. RegexInterpreter_Bump_mD5E6B4A80D6C620EDD37A5C04156ADF7C27EE9E1,
  2628. RegexInterpreter_Forwardchars_mE97F35195F994160F951E3C035F9E0C35EB739C6,
  2629. RegexInterpreter_Forwardcharnext_m78266C74DAAFD2D09050F148FFDA0A50656AC4C1,
  2630. RegexInterpreter_Stringmatch_m89AE288DB294AC0146C7772193CAD3B702849E54,
  2631. RegexInterpreter_Refmatch_m457B37C3E3B0671E7E89B7F6C16396D36EB32F68,
  2632. RegexInterpreter_Backwardnext_m0C573AFAD3FAEBED37991618A232ACB169F524FF,
  2633. RegexInterpreter_CharAt_m9EFCB7CE5FB311B6C061AA996705CD3D402F8E8C,
  2634. RegexInterpreter_FindFirstChar_m87D986F0502AEEFC4F13EBD0EAD891C495C4845F,
  2635. RegexInterpreter_Go_m1CF26F8D95231F3B2235EA98AFB286C3F1629BED,
  2636. RegexMatchTimeoutException__ctor_m24286DF7231B227E3A8B3C31AE33447361971005,
  2637. RegexMatchTimeoutException__ctor_mA8C497C6700E1233B4953A8AA7B8F57C8682C410,
  2638. RegexMatchTimeoutException__ctor_m7DE41C173C1A57CEA5D015FF63DDFCB70CFF4FBF,
  2639. RegexMatchTimeoutException_System_Runtime_Serialization_ISerializable_GetObjectData_m6F530DBA34FE5CBECBCD322C8FBD4AE28054688C,
  2640. RegexMatchTimeoutException_get_Input_mA4DCA4F3C9692ACDC45FBEB683EE4165C84E4073,
  2641. RegexMatchTimeoutException_get_Pattern_m8F12503E2B66F34B8E8EFE46971C169EA1BFBAB2,
  2642. RegexMatchTimeoutException_get_MatchTimeout_m12D9D88EFFA06EAC0FF06C81ECF29BAE0F906087,
  2643. RegexNode__ctor_mAE4AC160F21E5DF26B99B74753BCFB9EF0951B2B,
  2644. RegexNode__ctor_mFA693535F5B9610F075D30F19626A8AFFA879D7B,
  2645. RegexNode__ctor_m00D0AE9AB07549681FB13D96CC0AA20FED8CE6EA,
  2646. RegexNode__ctor_m3352B98BE0DAD220AB653F929BD6D95689B5E07F,
  2647. RegexNode__ctor_m5ECC62B9C3918CD043542E5BEAAD39A06158E27A,
  2648. RegexNode_UseOptionR_mEBD872419C386D7C7802D2A6D2187E7B6D1D1641,
  2649. RegexNode_ReverseLeft_m251846220299FD022068361A09B9A7A4CF67A586,
  2650. RegexNode_MakeRep_mFDCFC9F5DA5DCBFC66D6F00A8E08A602F00C5F48,
  2651. RegexNode_Reduce_m9D14953F47CD1D924C3EEB9D0287D7F257AD2D98,
  2652. RegexNode_StripEnation_m2BACBC29E58CEC452B91534BCFA2A21639712B61,
  2653. RegexNode_ReduceGroup_m62F5B20C564AC8A8E8C1C9E00684A8BB9A988E3B,
  2654. RegexNode_ReduceRep_m85B3760500D732A04B60CD3F247CE8ECA1E6F8C1,
  2655. RegexNode_ReduceSet_mD307DD149936830074467A0F24C2E20032F708E9,
  2656. RegexNode_ReduceAlternation_m193F3C5A073401BA987E5AB7D35F59B1FC902341,
  2657. RegexNode_ReduceConcatenation_m95EE4F324360AC71D52EDEC1C53F6F81D73C67C3,
  2658. RegexNode_MakeQuantifier_mA6A10E1AEF5AA80F82BD1BE6D28E62259208B5BC,
  2659. RegexNode_AddChild_m1A2B3A7445927E39341C233C0E533D77FC9517A8,
  2660. RegexNode_Child_m6F5C25EE5349D1BE0D65C89475FB0C42A15BFF27,
  2661. RegexNode_ChildCount_m833AF69D2711D8EEC5E50FD666A61F428A12396D,
  2662. RegexNode_Type_mDE9685FD99646016D0D6038C4509C6392B10F019,
  2663. RegexParser_Parse_mB845F2DC38DFD8C50E5B8D0D0F87330597409793,
  2664. RegexParser_ParseReplacement_m552460B4F6F5F7B1B0D2F4E01A3847BE8662AF13,
  2665. RegexParser__ctor_m99DC2B2C4B64E7298BBF49AD862BFD12007E38E4,
  2666. RegexParser_SetPattern_m852D668CE45FBCAA3A6ACC415B94BDD0A7190265,
  2667. RegexParser_Reset_m426A8C90F4D8065486802AE7AC9FB07FC599EB01,
  2668. RegexParser_ScanRegex_m3CD95B8EAE4F2E8ECF3461F199B04A021C77231D,
  2669. RegexParser_ScanReplacement_mC27972ADC38D857F44851CE642162928ED4D12D6,
  2670. RegexParser_ScanCharClass_m01448F1178653B15083659F29014BB87A6E2295D,
  2671. RegexParser_ScanGroupOpen_m5ABFBB28982A5097B2D560091D2AC12EA8B028F7,
  2672. RegexParser_ScanBlank_m4C1B18EC7A5DF860363CA17E69B20A00023B5E82,
  2673. RegexParser_ScanBackslash_mAAE11106CB78789803468679894E1D7AE6B0C92E,
  2674. RegexParser_ScanBasicBackslash_mB0F1728AD89C8F196601B3110F0BA807FBC8FCEC,
  2675. RegexParser_ScanDollar_mB8FD395274F630278543211B2BB583AA5B03D96A,
  2676. RegexParser_ScanCapname_mC9524DCBE266D677078207375663506AC32BE3F7,
  2677. RegexParser_ScanOctal_m95EA0AE4B61D5418914DDD3815C6277471B4EDFD,
  2678. RegexParser_ScanDecimal_m1BFFE19E0698D0EC97D81C655F3D04B608897161,
  2679. RegexParser_ScanHex_mDD96A112E30DABDB5BC0C558373DA5607F8ACF95,
  2680. RegexParser_HexDigit_m40FED0646820843A4C35AF9349E27B0E0A84A5CE,
  2681. RegexParser_ScanControl_m26274BE5776CF5AC03E8EAC7B5972C0A8AF2A95B,
  2682. RegexParser_IsOnlyTopOption_mAA13B95864B8B314B8B6689B47FA4BFE3B433280,
  2683. RegexParser_ScanOptions_m56F01464F53558D3AF3BF1CD874A2656930AF31C,
  2684. RegexParser_ScanCharEscape_mA872DDDD24E165F5B5C5F62DCFAE3B02CCF97C98,
  2685. RegexParser_ParseProperty_m3B765A1B30A38A723CAFE63AF9D6F3D08C7C6F38,
  2686. RegexParser_TypeFromCode_m11B176B0B9A6EF391370E021B111101AE56F4CC6,
  2687. RegexParser_OptionFromCode_m7E2E8164FA38C45692BC68054E574F00B65F383A,
  2688. RegexParser_CountCaptures_m2ECDC9ED534F245A12224038BB86DE5D66DB56A3,
  2689. RegexParser_NoteCaptureSlot_m21BD1F90FF2C62FFA445303D574D271757D62222,
  2690. RegexParser_NoteCaptureName_m5CDAF94FD43B665DE067B6DC02BD72A315D48FFD,
  2691. RegexParser_NoteCaptures_mC02396D9D7C522A5B701A2C1C88E742C98EAAF17,
  2692. RegexParser_AssignNameSlots_mC5738B99DE328E7D1FA7279A717640EC2044857E,
  2693. RegexParser_CaptureSlotFromName_mE18BA49BCA1CE4B972DC804E52C78E48905FEFAB,
  2694. RegexParser_IsCaptureSlot_m1EE21960AA0BB1C072BD9D765AFF8A6DFC3192C3,
  2695. RegexParser_IsCaptureName_m5DC0D7BF3AD01C929CB982048722BCD43797CEAE,
  2696. RegexParser_UseOptionN_mD441B71AC8368C644B8D9A0CCB3DB8BD681639B3,
  2697. RegexParser_UseOptionI_mB3FB0740ED596E6ABC827E903DCE8AA4258BA701,
  2698. RegexParser_UseOptionM_mAE3FC2655A6E80EA35D5CEBEE1D82B5B07529118,
  2699. RegexParser_UseOptionS_m070AD4458172FB14FF21E4502DCA6ECEE8938994,
  2700. RegexParser_UseOptionX_m0BFB48EDC8A2F38A29A8F6CEC85080D9E04010FC,
  2701. RegexParser_UseOptionE_mE0B7314EAB95CAC9B9762CD3AB9FBC71BFD410D9,
  2702. RegexParser_IsSpecial_mF59FE804CDD354250CB77C4113F39C627349D051,
  2703. RegexParser_IsStopperX_m173A82937CA9600F7CB12B9A101F39CCFDA630C9,
  2704. RegexParser_IsQuantifier_mBD18FA810A0404B632392725175846E6B30A8782,
  2705. RegexParser_IsTrueQuantifier_m22CCE851B85E0760270178DF1184746040E68AEF,
  2706. RegexParser_IsSpace_m322B45C2A04F07D8C83B547370D266F39A8DE14E,
  2707. RegexParser_AddConcatenate_mDDD0350FE254D75D6707668332D0F3088A5572AF,
  2708. RegexParser_PushGroup_m2D76CB852430A3B3F7454DDC3322B2A5E4CE398F,
  2709. RegexParser_PopGroup_mEC525DC83E5BF2F8DA03129AE3DF06834EB76552,
  2710. RegexParser_EmptyStack_m756AC5BB66D0F2077EC7DD655A3D57681200F5CA,
  2711. RegexParser_StartGroup_mBF861FCFB0FB9ED26744CAE2297537DAB6DF37C1,
  2712. RegexParser_AddAlternate_m77BCF63DD4E1AB89B70F72821CAE4B67936CD847,
  2713. RegexParser_AddConcatenate_m77A3D9F6B1484C7B656BDF3CC5659248F9DEA1EA,
  2714. RegexParser_AddConcatenate_m3B10D68AE09CC6A2F06AC65E49B918D11D5375FF,
  2715. RegexParser_Unit_m6C984A797C4A92AB0A9985E5A8207DB9CA9AE87F,
  2716. RegexParser_AddUnitOne_m991DCA85D3432B8F7F74D18125A69FFE25108F47,
  2717. RegexParser_AddUnitNotone_m4F79DE175B95FDB88323D7FE9DC3132E24F8F0C0,
  2718. RegexParser_AddUnitSet_mA262F57A7FAB27996D8115F66BC84A5C58317D7F,
  2719. RegexParser_AddUnitNode_mE8DC7CD039C933AE881097E041BA620AA325FDE8,
  2720. RegexParser_AddUnitType_mEBDFA2325ABDA3FDA74184DBFB706824F6540553,
  2721. RegexParser_AddGroup_m8989D6A9CD4B700522D722DEF5FEFC267C4DBFB7,
  2722. RegexParser_PushOptions_m6E501EE3C5D6FE990ED74935A9AC9A6E834FD968,
  2723. RegexParser_PopOptions_mAE4848419A71162B8E563781AC817A8D6ACEB91B,
  2724. RegexParser_EmptyOptionsStack_mC16A4D18503FF296911710732A95062A8279163B,
  2725. RegexParser_PopKeepOptions_m911F83DFA290ED90B06D3D3166553E6205C256C1,
  2726. RegexParser_MakeException_m385FDF5B69D02A0CE93393E92AFAD928A9CCE3FC,
  2727. RegexParser_Textpos_mBF50F3EB06FDA6C68AF4BF0D0C8D4FC09FDCFC88,
  2728. RegexParser_Textto_mA45B325CA6CCBC0012F1CBB0282AE114B34AEBE2,
  2729. RegexParser_RightCharMoveRight_m4386CDEFA7DC102FCA0E6E00E522E1712AE3AFE9,
  2730. RegexParser_MoveRight_m5F6B031B292FC0F81DF5E7039EDA6C9D0706A0A9,
  2731. RegexParser_MoveRight_m921C1D96B625B4C8AF1D658E514D57CC44E40B61,
  2732. RegexParser_MoveLeft_m57BB7A0146D0E8834D715667048B75A517761AD5,
  2733. RegexParser_CharAt_mF46179762DDF46FB78E32CCA3058950244CFCB70,
  2734. RegexParser_RightChar_m23D21ECC3D6999A466C0A91BDF589BFE4801CF91,
  2735. RegexParser_RightChar_m6BEE1FBF048A2DFC53235447BB2F6AC8C56A4147,
  2736. RegexParser_CharsRight_m6F83CD819B532331F5778143B6A95B31C8734A79,
  2737. RegexParser__cctor_mC883BE9D9C8D47723D5CAD7CE25B5F347929AF54,
  2738. RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4,
  2739. RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6,
  2740. RegexPrefix_get_Empty_m54EA279F2BE7F39358AB5DF1A5362A8CD92B4326,
  2741. RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E,
  2742. RegexPrefix__cctor_m55930FB75AB023BADBEAB107BE38A1A559DDB7F2,
  2743. RegexReplacement__ctor_m9CE743F0908A59F98461440AE5B842BE1BC72EA5,
  2744. RegexReplacement_GetOrCreate_m2C3E8DB4E10AFC24D45D754E67E5C989F40455F1,
  2745. RegexReplacement_get_Pattern_m146EA30FB574587E88DD056AC22F79375C3F55E6,
  2746. RegexReplacement_ReplacementImpl_m60E4B82702C44912E56FED402AC793E7B7CCC7E8,
  2747. RegexReplacement_ReplacementImplRTL_m343AE6575EE1B8810D049CA7F8203237920C84E0,
  2748. RegexReplacement_Replace_m54375FA094C20D81305C8DDC17AB973BF1B461F9,
  2749. RegexRunner__ctor_mBC777F351AD6D1CDD5F20C408B936F7D0F36ED69,
  2750. RegexRunner_Scan_m903691F4DFB68C0267F240D61A6F166BB592CE53,
  2751. RegexRunner_StartTimeoutWatch_mA17870A15492787CA1384132267054AB09BE8BE9,
  2752. RegexRunner_CheckTimeout_m20BF0CD8BC16738ED6E7F20AAF5B4EE695E7E120,
  2753. RegexRunner_DoCheckTimeout_mC26B9239FA1CD3DC98F11A82800F61852793CEA5,
  2754. NULL,
  2755. NULL,
  2756. NULL,
  2757. RegexRunner_InitMatch_mCCF94A1E7CCE89275E47BB218C4DD58DF5D5593D,
  2758. RegexRunner_TidyMatch_m0EEEF0CFBB55AFF485B4D9F9FD21834B9B3A01FA,
  2759. RegexRunner_EnsureStorage_mB3DB043396771740A05B2AABC293DAAB1250B024,
  2760. RegexRunner_IsBoundary_mCF4AE83F6FE3CC46C71C4558DBCDEC255BD422B8,
  2761. RegexRunner_IsECMABoundary_m56C692126DF69F0933BBFCBF122F764C6093DA26,
  2762. RegexRunner_DoubleTrack_m15E35365FAF5F438C7BD0BB0C37594F765949F1F,
  2763. RegexRunner_DoubleStack_m89C12DF438D7BE4ADA2A4D1DFA36F274F292E1F4,
  2764. RegexRunner_DoubleCrawl_m7B67CFD3071825C9F01BC0ACE0E27B1C4EC6DED5,
  2765. RegexRunner_Crawl_mBE60CC8F17E6D85E1A87F0A86BC684F32ACE7CA5,
  2766. RegexRunner_Popcrawl_m2C994BE22A9A4DE0D897691A1CEF87189DB43E67,
  2767. RegexRunner_Crawlpos_m4EC84964D3AD3DB49724BFC28CE89FC34478D532,
  2768. RegexRunner_Capture_m3EB42B55A19BD7776156F04CBE9367C6EBA59F9C,
  2769. RegexRunner_TransferCapture_m642CC595E9FA641B913CCBE02E233DBB319A6E8A,
  2770. RegexRunner_Uncapture_m70B0FFB308F48B4673F73311330BFF640F47B7D9,
  2771. RegexRunner_IsMatched_m7E64237D020BFFA74813A8B6455D5F35671A876C,
  2772. RegexRunner_MatchIndex_m150A8B71C07022C485630C71B2A9FA6FD195F88F,
  2773. RegexRunner_MatchLength_m19C9B24F4F6CAC56A391A0AC47A4358C61615BF7,
  2774. NULL,
  2775. RegexTree__ctor_m89DA1335AAB55B0707774E978E6078CE42DB0DA6,
  2776. RegexWriter__ctor_m37DF964F59213D287C9D812A3D0945744BF341EE,
  2777. RegexWriter_Write_m69A5583635E511D67176A977E96C17AC982C4F01,
  2778. RegexWriter_Dispose_mD34F8BFC41D28F22FBC65E3F1A211DFE85625E04,
  2779. RegexWriter_RegexCodeFromRegexTree_m3352CAF05A1B1753D32D768B83BB778B3E2D4568,
  2780. RegexWriter_PatchJump_mC1090F37107CAF7F4B52B020E070BDE9284118A6,
  2781. RegexWriter_Emit_m5884414A6EA7431DA9C5708E650B20BEDF982CAC,
  2782. RegexWriter_Emit_m41C2B9DF58542C452CA4FC77A317884578757D75,
  2783. RegexWriter_Emit_mDED2545E64CE95D941A1232DBA24EB6C81A7DB0C,
  2784. RegexWriter_StringCode_m5D4A227BBAA0674B820D70BEA1A2F7D0B29635FE,
  2785. RegexWriter_MapCapnum_m5EA7BA45A1C4D51DC20C281246D3997A3001A0B6,
  2786. RegexWriter_EmitFragment_m0B35F7C3BDC22B5DE82735F2652C7948AE8494A5,
  2787. AsyncStreamReader_Close_m0E2C4AE11462C4E48FA868098E96C3383F760FF7,
  2788. AsyncStreamReader_Dispose_mCE17ACF06D4F7EBDB9275ADC2C6F8AF09BDE2402,
  2789. AsyncStreamReader_CancelOperation_mFB9524C17B1668A1B804DFACB9475F4FD7849982,
  2790. Process__ctor_m0FC7997861C052C396D53CBEDE53D2DDA388FDA0,
  2791. Process__ctor_m6A606F7D939C8186E6DFD910A65FE6AEFE0D725C,
  2792. Process_get_Associated_m937DBB0D3D22199FDAE59C73CB94291D41E903F5,
  2793. Process_get_HasExited_m579B038BCCBC4C468970D4CB171173FAB4FFA7C6,
  2794. Process_get_Handle_m4602F950B067EC1D445B27D62C6097F949A6D5A9,
  2795. Process_get_StartInfo_m5CF742569E93D773509E27125BB14581C02B3FE5,
  2796. Process_set_StartInfo_m89C367BE7A1E957307F490DF1FBC99B60CC78084,
  2797. Process_get_SynchronizingObject_mBDAE5545C753268148A7C6FC28DEADDC964769B7,
  2798. Process_ReleaseProcessHandle_m3A7BE4BCA49D9A5C1174975C11B78E4D6F8901BD,
  2799. Process_CompletionCallback_mC08909238807837F337100DEABF21065037C8598,
  2800. Process_Dispose_mF933D46A45CED6769611FA84D148AA7D44505ABC,
  2801. Process_Close_m1319814A5C51B6B53330B294CD961D7221630CAB,
  2802. Process_EnsureState_mAF2E5BE1A4336E9710E74508D3A9B16C7049B8F1,
  2803. Process_EnsureWatchingForExit_m31486499794A4913C46D20451AF87F2860A51BA9,
  2804. Process_GetCurrentProcess_mB9E146001302DA6A60946152A09E8205E5FD2F0E,
  2805. Process_OnExited_m16FF7289D7B34FE7F2EF6E2FDB8730C4E79052CB,
  2806. Process_GetProcessHandle_m779733CC7F7164522150D645C936457CD8482370,
  2807. Process_GetProcessHandle_mA1CF28D2E052D42DFDF95456FF74DF6D5F9DEFAB,
  2808. Process_OpenProcessHandle_mD12E1806003C1E62BAF1DC75BCE1AD4A6FC45241,
  2809. Process_Refresh_mE0363D6E2713A0002941C693EF50BD1B0593198B,
  2810. Process_SetProcessHandle_m70C1DBD7470DED1AFADE66C06B9F979CA130A6AD,
  2811. Process_SetProcessId_m7C765380F5141C71F66B200830C3F0BB0A00A78D,
  2812. Process_Start_m1255D653552F95A3D7FEEA60DA9201E946AC2921,
  2813. Process_Start_mA1D50105E0F1FE21AB2687231373BA66F0B51B79,
  2814. Process_Start_m35C2A82F8543B6F2F5B6CA57E9BA966C6C1BCA79,
  2815. Process_StopWatchingForExit_mBAD0DCA6C4ED339EDF09413F34C965E9A757CA54,
  2816. Process_ToString_m5D55F0EEA76377972D53D3757A4132CCCC0A5F87,
  2817. Process_ProcessName_icall_mAE42225C42C02219D3C2511B4FFF71F91621B3A2,
  2818. Process_ProcessName_internal_m39C7A89722F7A787104B17915F61E77F05A809D6,
  2819. Process_get_ProcessName_mC66C70C57531D1DA91A51FCBA2CA41086B739C63,
  2820. Process_ShellExecuteEx_internal_mA9CEB4E599A13AC37DCB7045484AD544E4E30A6D,
  2821. Process_CreateProcess_internal_m336933D160945885B1EE7209DF24F187C283DCAE,
  2822. Process_StartWithShellExecuteEx_mE88F4112E3EA6F847CDDD259904AF1548C5D4410,
  2823. Process_CreatePipe_m2E4AFFB9004179A99C29A12F6A88B676486338AC,
  2824. Process_get_IsWindows_m9CB02EEF63AFDEFB8791BCD3DF4C05419C7617EA,
  2825. Process_StartWithCreateProcess_mA5541702C79F96AC772473AAD725A3A78F0CD2D0,
  2826. Process_FillUserInfo_mC7D3B7AD3C0940CE437C6702FF0AD23C102828F2,
  2827. Process_RaiseOnExited_mAE4A537F5FA32E4F6F283B0D665D41A6CBEFB420,
  2828. ProcessStartInfo__ctor_mB83B1F3722B69B6A212B85ADDCB636E63E6EE09F,
  2829. ProcessStartInfo__ctor_m61D7C61CBD55C32AD1DE83E1C17279F1241AE16E,
  2830. ProcessStartInfo_get_ArgumentList_mB8D94EA559605295AACF34CEFD80E7B7DC73AADC,
  2831. ProcessStartInfo_get_Arguments_mA584AC8FB8210FFE888AA42532AD3A31784D6EC7,
  2832. ProcessStartInfo_set_Arguments_mB0FD15AAE263A0BE623B23A0FCB2E8091B73335E,
  2833. ProcessStartInfo_get_EnvironmentVariables_m2D3A45132BAA93948D2018F9A1E04D465D20776D,
  2834. ProcessStartInfo_get_RedirectStandardInput_m26C0E09A37FDFE804FE4A669D03DF377D96BE9E7,
  2835. ProcessStartInfo_get_RedirectStandardOutput_mB52CFF493E90893AEAE01C85ED162547646BFEC0,
  2836. ProcessStartInfo_get_RedirectStandardError_m88E395C99E3FA8D289ABF575EA400E11F02C449A,
  2837. ProcessStartInfo_get_StandardErrorEncoding_m7F14E239FB2676D432EC8C75FFE9D7506B4FE8BF,
  2838. ProcessStartInfo_get_StandardOutputEncoding_mCFBE2B3FFC5FF52DCA9A0D7F8F7E5990F9340066,
  2839. ProcessStartInfo_get_UseShellExecute_m5A39BF230D7E14AB73D31AACA175DB66B406E8B7,
  2840. ProcessStartInfo_get_UserName_m85741EF26D7D9707B4DC8492EE2318045F716D60,
  2841. ProcessStartInfo_get_Password_m41E2B779C5A3CB19DA90C1B88F9973376B2BC4DA,
  2842. ProcessStartInfo_get_Domain_mEB80C28F46CA07CAAA39C8266A2350CD003F01A4,
  2843. ProcessStartInfo_get_LoadUserProfile_m849B59F3CABDB8965E158A2F7FD696BE0A1D7C42,
  2844. ProcessStartInfo_get_FileName_mF4DC31E6FF1E17A4E6BB8E0928621A825EE0AFDC,
  2845. ProcessStartInfo_get_WorkingDirectory_m7B39909360A9507AD5F2B91C0DC267BA96A8C885,
  2846. ProcessStartInfo_get_HaveEnvVars_m93DFEAECCDF06DEC08F479DB32F3DB2990037698,
  2847. ProcessStartInfo_get_StandardInputEncoding_m678223845EB327856D00DE2F4D519701FDFB5CFA,
  2848. ProcessStartInfo__cctor_m1CE3CAE8B2C7E8F1BCCAEB4B60A33FE34C7D1E71,
  2849. ProcessWaitHandle__ctor_mB6F85E300A73FD16261E29E69F1ACBF17E0F44EB,
  2850. MonitoringDescriptionAttribute__ctor_m41C05A99A8DFCA8AB181CC0E06F0B89D183C5CD2,
  2851. MonitoringDescriptionAttribute_get_Description_mD28A2C666D1B4100914C186C9F8C84EC8B2E59CE,
  2852. Stopwatch_GetTimestamp_mA3BDF219C573A34751D6A792E86C825B74D2CEB7,
  2853. Stopwatch__ctor_mAFE6B2F45CF1C3469EF6D5307972BC098B473D0A,
  2854. Stopwatch_get_Elapsed_mF16CCA2F9B7E2EAEFCAF8D81F44370DBAC1B2178,
  2855. Stopwatch_get_ElapsedMilliseconds_m8D8E60ADEB47D008C06D8E57D28D41EAE07AECBF,
  2856. Stopwatch_get_ElapsedTicks_m3F4040FBF8C7CCDC69E0E04824019DEBB25AA410,
  2857. Stopwatch_Start_m35906A38C7D336CF9DD35854C7E170D762A55915,
  2858. Stopwatch_Stop_m8F2A2EFD9D7D5B4180A5E5379E5443864618D7DC,
  2859. Stopwatch__cctor_mF9BBC572803E232BF2D323301E90A6AFDB496FB9,
  2860. ExcludeFromCodeCoverageAttribute__ctor_m2CB8196E20519167E842D03BE4CFBCC84BEFC9E2,
  2861. Oid__ctor_m4AF81B9D51BED48AE505251E0874EC654BA07B72,
  2862. Oid__ctor_m533C0126C7C8D382D3E702287A9AD0CED2D0377D,
  2863. Oid__ctor_m3973A5FE5482D45FABC8642E59B655274B0B5D59,
  2864. Oid_get_Value_m59D678A83ED4DE7D87FB7450C8CF4084DB506FD3,
  2865. Oid_set_Value_m122282994E6EE138CE4284B052EF8BE2086CA72F,
  2866. OidCollection__ctor_m9B8C252AE048962DAD7419597007ABA2793F9D98,
  2867. OidCollection_Add_m1D4822DF4EA0B912A1DED6AA102D41F7FAEDC8F5,
  2868. OidCollection_get_Item_m0AEC71C746E735035A05C50EE2721C1E8FE08F7A,
  2869. OidCollection_get_Count_m9560D70809087591935904924A15FBEC1FEFEB11,
  2870. OidCollection_GetEnumerator_mBB791F48E305B3355A1BCE624E0BB367331F82AC,
  2871. OidCollection_System_Collections_IEnumerable_GetEnumerator_m4624AA2C7F0693698228803D9B59EFE6AAD6AFE4,
  2872. OidCollection_System_Collections_ICollection_CopyTo_m4EF1FB9A18E822BA196BF3F0204B7C06178B9CFC,
  2873. OidCollection_get_IsSynchronized_mF751E9C1DBC7A5637C7CD8A0FEB39AB15C74A0A7,
  2874. OidCollection_get_SyncRoot_mD310358F3BF4454604AD96C734BA6EC180CE7A85,
  2875. OidEnumerator__ctor_m2168FEE96614FB7460C84762ED3728A5413F42E6,
  2876. OidEnumerator_get_Current_mCED077699FA00ED57FA82F8B460C28B86F1B5C9F,
  2877. OidEnumerator_System_Collections_IEnumerator_get_Current_m0B627B9F510EF4F283F40EBE17164B9231BB7735,
  2878. OidEnumerator_MoveNext_mD42201944C163E81DABDE08B1535C4AB9A5778DD,
  2879. OidEnumerator_Reset_m24F1F25812A7BFE9B02B312BA9E670C930622F27,
  2880. AsnEncodedData__ctor_m90028EC56A5E36272EAA4A9279AE23358D46F547,
  2881. AsnEncodedData_set_Oid_m877771219F651EA3FF834952300180274531C9C7,
  2882. AsnEncodedData_get_RawData_m629D858D7D20E72C1F46124E5032FE0D3B32AADF,
  2883. AsnEncodedData_set_RawData_m05F9F17765AD384ECE3A333DCBF6A0572099346B,
  2884. AsnEncodedData_CopyFrom_mA5DD4A419C5FC29D82DBE9B69C9F8CBC2872A1F2,
  2885. AsnEncodedData_ToString_m669772943B78D9242BC5F176A4BD857326F95021,
  2886. AsnEncodedData_Default_m883444CBD5238793D1B94A6DE273FF2F9C47EA70,
  2887. AsnEncodedData_BasicConstraintsExtension_m74BFC192666755E9D8A088880789AB6EA84F1FCC,
  2888. AsnEncodedData_EnhancedKeyUsageExtension_m3C95D5D2D8F81BEA5E33B264767C8A5E5575D7CA,
  2889. AsnEncodedData_KeyUsageExtension_m9A9C72CF2A831A1849A55336FC8D6DEE097E28D3,
  2890. AsnEncodedData_SubjectKeyIdentifierExtension_m3CEDDCED26AD5621407DAA401F385269348BB789,
  2891. AsnEncodedData_SubjectAltName_mDE2F39E1A43C1E13D89319F221517EE54B1A6A14,
  2892. AsnEncodedData_NetscapeCertType_m55E43EBDA7882304E8FE5F3DC134A2719F519373,
  2893. PublicKey_get_EncodedKeyValue_m153EF781728D471C55002A40BBDA435F1B3A1213,
  2894. PublicKey_get_EncodedParameters_mE338A4A69A15907E38A644D624A07DDD55C521E0,
  2895. PublicKey_get_Oid_mB5796F569C136759CB740F747C6A3B6F8976401A,
  2896. PublicKey__cctor_m1B2E44B5BBF321952E0FD1F19C048E43A6506407,
  2897. X509BasicConstraintsExtension__ctor_m672BE9B41107A8C30454BF4CAC120D70512BA89A,
  2898. X509BasicConstraintsExtension__ctor_m76C88E8D4C7CCEC7B2C3D56CC58A56352F7729E4,
  2899. X509BasicConstraintsExtension__ctor_m02334D8CAA280B339CA41E2019CF1F02C8B2E7DE,
  2900. X509BasicConstraintsExtension_get_CertificateAuthority_mB4ECEF43A245E97DA80C6323BE339BE2DF99FF5C,
  2901. X509BasicConstraintsExtension_get_HasPathLengthConstraint_m8F7C371EFF99BD110663DB106BEE889955255BC7,
  2902. X509BasicConstraintsExtension_get_PathLengthConstraint_m4D3F016E42C243887D07DD955518A818DC14BBC5,
  2903. X509BasicConstraintsExtension_CopyFrom_mCC603D99CEC828BDF86FDEB3C4650CF4D3753B8E,
  2904. X509BasicConstraintsExtension_Decode_m7C50097B6238FEF4DAD6A9A09A449DB0CAFFEBEB,
  2905. X509BasicConstraintsExtension_Encode_mD7FA31A70B025F67062C3844E4FEB09B14A4DE2B,
  2906. X509BasicConstraintsExtension_ToString_mBFC61BA07CD2BB8EACCC19A5AE72EA81C11D02E4,
  2907. X509EnhancedKeyUsageExtension__ctor_mBDA55EB3C6594D4F6A06102B4EAF633F86C3E092,
  2908. X509EnhancedKeyUsageExtension_CopyFrom_m9577FF97B8E3074B12B7056BF7E30AA0F84309BF,
  2909. X509EnhancedKeyUsageExtension_Decode_m1110DD9BD5D717540009DB5D90805458CF07423C,
  2910. X509EnhancedKeyUsageExtension_ToString_m9576793CE590716A3BB5AAC1632F946DF75605DE,
  2911. X509Extension__ctor_mFC88C10C2C6718E6AE74CE37E10D4EBB8FD67BAC,
  2912. X509Extension_get_Critical_mEF827F09D95784210C2F8D5FD7BE27BB54803E35,
  2913. X509Extension_set_Critical_m19FBE6E0C8B9069E5A2C232DAAE06046AF18EFEF,
  2914. X509Extension_CopyFrom_m674ABC4ECF701B708C28B546B42B7799CA24D4A9,
  2915. X509Extension_FormatUnkownData_mD0463F5096A6937E95E3165048299CBA9A1A6F7D,
  2916. X509KeyUsageExtension__ctor_mE0EE68497EDEDD78213EEDC931D68DD35DF6340C,
  2917. X509KeyUsageExtension__ctor_m1DE9CD768712A07E5803496501CCFDA81CFB2689,
  2918. X509KeyUsageExtension__ctor_m2FAA526721435935D0B10E0DB916AF56CFD84751,
  2919. X509KeyUsageExtension_get_KeyUsages_m1BD6C5BC6E3E380982C135B2E81731435345144F,
  2920. X509KeyUsageExtension_CopyFrom_mCBCF5CA17676B2030F6C82ED80A008EF029AF733,
  2921. X509KeyUsageExtension_GetValidFlags_m82B1C7DA4F4E0F16090782189E1B4984D133BB45,
  2922. X509KeyUsageExtension_Decode_mB64239ABDEA862E43E26CF324D3E41ECCF3088BC,
  2923. X509KeyUsageExtension_Encode_m38D20B2FB68EDF3594EDC0D9BA88800ABF305542,
  2924. X509KeyUsageExtension_ToString_m270131139984275D7571120A2984F0F5E77E79DC,
  2925. X509SubjectKeyIdentifierExtension__ctor_mFC2A19B1301ABBA5F6C5CE407ABC4F4CA1EB49B1,
  2926. X509SubjectKeyIdentifierExtension__ctor_m421293DCB67F3A918098962166B8166FD9657D08,
  2927. X509SubjectKeyIdentifierExtension__ctor_m610C9C804421B7CB519F3A5C7D66827CC1106EE1,
  2928. X509SubjectKeyIdentifierExtension__ctor_mECF6398B9841FB4533228FE77F51F93316EADE94,
  2929. X509SubjectKeyIdentifierExtension__ctor_m3DD2C4E1505A6E625499FBD833BFC076D28D83EB,
  2930. X509SubjectKeyIdentifierExtension__ctor_m1858C1B050FAF65946B790737652E874781B4B56,
  2931. X509SubjectKeyIdentifierExtension_get_SubjectKeyIdentifier_mFF2A155072C67F430E7F4B178733A80388943CBA,
  2932. X509SubjectKeyIdentifierExtension_CopyFrom_m959BB16C6973B1B565D02ED9993AF9069019D77A,
  2933. X509SubjectKeyIdentifierExtension_FromHexChar_m6A90ECC8622DD1D2DEA0FB18356E97B15E8371A9,
  2934. X509SubjectKeyIdentifierExtension_FromHexChars_mFBC6B2009778633420F9F4FF38D7E641FBF63EFA,
  2935. X509SubjectKeyIdentifierExtension_FromHex_m0C965FECB6AC9330589DBDC182E7EA34EFE4195D,
  2936. X509SubjectKeyIdentifierExtension_Decode_m9E9B87F478F55E202411CBCE3AA314CBF73C7F30,
  2937. X509SubjectKeyIdentifierExtension_Encode_m8746D45CE4AC46543D3332BC6001FA1BC7A72CB3,
  2938. X509SubjectKeyIdentifierExtension_ToString_m9AE51334149DE6200E554F9C30E2DC5570D36707,
  2939. IPAddress_get_IsIPv4_m912994B89DDE21F85E4FE40381CDFF1688BE3F38,
  2940. IPAddress_get_IsIPv6_m957F80A11C7E40C2CCAE554F12AA547E387B6884,
  2941. IPAddress_get_PrivateAddress_mE1CD072F1E7BDF981FD71CBD984F5FD2A2EC6399,
  2942. IPAddress_set_PrivateAddress_m73BD8A117538CBDB80F8FF47D31609FA4855D74E,
  2943. IPAddress_get_PrivateScopeId_m3C01EDB8971607BAC0398557E295B5A818191532,
  2944. IPAddress_set_PrivateScopeId_m2BA43F20C3B975BDAC6E330C09E09BFD34594A42,
  2945. IPAddress__ctor_mC240D2060BA0F5A96D286CDE3772FE4354D7030B,
  2946. IPAddress__ctor_m8D2578858CF6F8E56591F45C8A14150DEFFA44F5,
  2947. IPAddress__ctor_mFD3C42E1EECC3099D6E347238FB2A0EBE822AF19,
  2948. IPAddress_get_AddressFamily_m1CE4BCCE499BD70B22F9E37B3F266F9306A98C21,
  2949. IPAddress_ToString_m91FE727877BEAA0115F497387E2E9CB0B45C3895,
  2950. IPAddress_Equals_mC4514B3B7F9B95B79A1121706C115AECE61636C7,
  2951. IPAddress_Equals_m5EA56A0CBC4F66012C11628D8CC75E03E5A8C462,
  2952. IPAddress_GetHashCode_m243850627E81961E58E3A7A0A39A1F365C47A4BA,
  2953. IPAddress_ThrowAddressNullException_m2D5037C15BE289427E4A761A643C4F26C2F3F034,
  2954. IPAddress__cctor_m83F9B947B6C0D0F8DEA3E0C62FCCC2573495D6CA,
  2955. ReadOnlyIPAddress__ctor_m0E47AC9070535FCCC4796C165AC8DAB6FA2B5AC5,
  2956. IPAddressParser_IPv4AddressToString_m3D56686708BDA87E76737D94441BF1AE486922D2,
  2957. IPAddressParser_IPv4AddressToString_m4113E0673C882A7CB1313639E2836FB24B9BC6A0,
  2958. IPAddressParser_IPv4AddressToStringHelper_m4226589AD61857FE45C082110271FFF2D3DF8C91,
  2959. IPAddressParser_IPv6AddressToString_m7C25DEA2FB9E3F863777653CB9C314BBEDF911A6,
  2960. IPAddressParser_IPv6AddressToStringHelper_m405EE1B288D87500878DD96ADAEE31B106CCF930,
  2961. IPAddressParser_FormatIPv4AddressNumber_m716041E973744C431B090589D624C53696FD801F,
  2962. IPAddressParser_AppendSections_m141C016465F9E7E1538E03340FEC16F89B500284,
  2963. IPAddressParser_AppendHex_m877259AD615A68FDC55EDC188758E5AA95C124B2,
  2964. IPAddressParser_ExtractIPv4Address_mB79D4899358C69C1FC7C44C81A26BBD976FC2CB6,
  2965. IPAddressParser_Reverse_mDEBC20FC5D00F7C505E1ADE428CB6967B72B425E,
  2966. WebClient__ctor_mC6890BD603C98D56E8D475D0D11180980F228C3F,
  2967. WebClient__cctor_mA59E82CE3A67F145FD50C28BAC69ED5641781EDF,
  2968. DefaultValueAttribute__ctor_m34A58D59C771D6EB91D55AE4F97413CD711B8FB5,
  2969. DefaultValueAttribute__ctor_mC4A9C09859A2DFDDDADB72E3CC91DF3C874A45BB,
  2970. DefaultValueAttribute_get_Value_mE5E6819598048D2585D6DB475918E60ACE802470,
  2971. DefaultValueAttribute_Equals_m61297DB3C3A7E76FC868A653371853B14BC42FC1,
  2972. DefaultValueAttribute_GetHashCode_m74095EF1526DBFB27CF56AFA21690C77A5289A33,
  2973. EditorBrowsableAttribute__ctor_mE6105AD9666A4DF03DB2590C687EAC6B12D908CE,
  2974. EditorBrowsableAttribute_Equals_m2DFA6ADDE69D95657A8257840C01FCAF74A6B02F,
  2975. EditorBrowsableAttribute_GetHashCode_m1AE50FA45B338D71189AA3C249DB56406DEC798C,
  2976. BrowsableAttribute__ctor_m1828B5114921E3FF83082211F2FBE82517559035,
  2977. BrowsableAttribute_get_Browsable_m23594845C49373D8D6AB753D89DB39D8285250F0,
  2978. BrowsableAttribute_Equals_m8EF756EC88F170513772F14FC08BDAD1EC2B863D,
  2979. BrowsableAttribute_GetHashCode_m40CEC719AE0A79F4339009D2E473342E59BAEDD1,
  2980. BrowsableAttribute__cctor_mEE3D932880029AEFB302C723B33DE48D4497A369,
  2981. DescriptionAttribute__ctor_m6140728AB61731BC01DEC122FDAA93854AAC723F,
  2982. DescriptionAttribute__ctor_m5A3D1DF34E3AACD9FF690A3CBE78F822F3A2EF97,
  2983. DescriptionAttribute_get_Description_m153F27F0911FC88F9DD8856BCA449AF5BE46F100,
  2984. DescriptionAttribute_get_DescriptionValue_m1F4A0829E3BE8AF3BBB9A5F2344BA672E07DC975,
  2985. DescriptionAttribute_set_DescriptionValue_mE3DE3C009CBEA82A5DC0EFB299943118BF487800,
  2986. DescriptionAttribute_Equals_m1CD8A994656358F30F29950E0F51F6FDFCA5306A,
  2987. DescriptionAttribute_GetHashCode_m611CD3279B54EE7678ED42409F142DF4303A3357,
  2988. DescriptionAttribute__cctor_m834DAB71B6D455F27EDFF240E854DC175D402775,
  2989. DesignerCategoryAttribute__ctor_mC6EAF0212217A1CEE757459ADDB8D48D3B61A4EB,
  2990. DesignerCategoryAttribute__ctor_mC3C69034E0CFED55C40A25A7AAF09F85CF4BB583,
  2991. DesignerCategoryAttribute_get_Category_mDBA8396BD3225636679F3CFBD7ED5724189E7D77,
  2992. DesignerCategoryAttribute_Equals_m1AC49F2D111D21ED13E8BA1F2E40C1F3B859260C,
  2993. DesignerCategoryAttribute_GetHashCode_mAAF7FBB9086B1B80FB129D77C2B2E195235A54FA,
  2994. DesignerCategoryAttribute__cctor_m2D9C1A5339A186C402AC69970452A5AB62479855,
  2995. DesignerSerializationVisibilityAttribute__ctor_m6E0E13DF36C75007C7917D0B635ACA0FCBFADDC1,
  2996. DesignerSerializationVisibilityAttribute_get_Visibility_mACD772642393B55DC72E03BB90D67C6C829C4D5E,
  2997. DesignerSerializationVisibilityAttribute_Equals_m0BE73F494AEFD4118E82420382640874637AD94F,
  2998. DesignerSerializationVisibilityAttribute_GetHashCode_m33E067E26D97A5A40DD224E33230351C6169579F,
  2999. DesignerSerializationVisibilityAttribute__cctor_mAD072BAB004E4D3331CE67CBC6D1012D5916101D,
  3000. DisplayNameAttribute__ctor_mE16A1FD5C8425C7F00EC5728A1227AF6FBEFB968,
  3001. DisplayNameAttribute__ctor_m396F07353E80428B4AEB85DC66F5B9380A077AE3,
  3002. DisplayNameAttribute_get_DisplayName_mA3E91855E1EAC0085BF2C1EB501B7801B9563D5D,
  3003. DisplayNameAttribute_get_DisplayNameValue_mD9F58F5FFF2B7C682D8470101352BEA88AE0E5AC,
  3004. DisplayNameAttribute_set_DisplayNameValue_m2DA6A8AA72F3969BA5639F707AB90A2D363BC49C,
  3005. DisplayNameAttribute_Equals_m06E1BC5B48A9D42FECF4BEC20338F8DD6A525E88,
  3006. DisplayNameAttribute_GetHashCode_m882BB47C783C5D55149DB892F41108D4953B8B16,
  3007. DisplayNameAttribute__cctor_mD9A9030A1931AD6CDF0428CFEC3E34B91652A8F4,
  3008. EventHandlerList_get_Item_m9AD24EA65E3832B81146EC24604BABE4FC3CFCC7,
  3009. EventHandlerList_Find_m5E0CAB161102D1551CF2E636C8BC7B71C959A5C8,
  3010. NULL,
  3011. NULL,
  3012. NULL,
  3013. NULL,
  3014. NULL,
  3015. NULL,
  3016. ArrayConverter__ctor_mAA6B57C16F167FF104B8E23402DE87ACA5E13A2B,
  3017. BaseNumberConverter__ctor_m697E7E5DB315CE6CDA318F256A634BAEF3C7C76F,
  3018. BooleanConverter__ctor_m50990A1CB60D3557199985EF164FF1E8AFCADC87,
  3019. DecimalConverter__ctor_mC1E815EF17DE8DBD91FB472C83A4F38514704B46,
  3020. DefaultEventAttribute__ctor_m7FE746F300D84188A24F4CF38A330EA255E5EE46,
  3021. DefaultEventAttribute_get_Name_m156545E2B0D123DFD61C375B1CB4987F08D65BF3,
  3022. DefaultEventAttribute_Equals_m1B7CE5677AFA75A3AD6223345C99D5EA796622B2,
  3023. DefaultEventAttribute_GetHashCode_mD3A5713780914BA883AF0AB0AD88E5427D910184,
  3024. DefaultEventAttribute__cctor_m8F7247E7092040D01936116D0D07453F983A06E7,
  3025. DefaultPropertyAttribute__ctor_m43FD7A91A431F72713FFA7829DE9BD24A321FD3A,
  3026. DefaultPropertyAttribute_get_Name_m1F2C2642F68F489167FB7F2E005CCBDBF9745890,
  3027. DefaultPropertyAttribute_Equals_mCD709C4B3F90DDDBDB45AE2969732EA3775CF26E,
  3028. DefaultPropertyAttribute_GetHashCode_m401BC4A948F7890DDD718B884C6CE06296578BA2,
  3029. DefaultPropertyAttribute__cctor_mE7CC9E813F3663E5D55E5F2FA52D6E1A8C0040E8,
  3030. DoubleConverter__ctor_m3CA5201BA68AB510BB2112A6755FCFEAB6DE53BA,
  3031. EditorAttribute__ctor_mAD74D6DDDC7752F9BD989300FBE02E1E4FE83FAA,
  3032. EditorAttribute_get_EditorBaseTypeName_m1CF77F3AA9AB5AE9CD3585FE86B24E1DD21B1EB4,
  3033. EditorAttribute_get_EditorTypeName_m587C6D66C4567BC349AC9E2C65FE5E021ED2EB09,
  3034. EditorAttribute_Equals_mE07449682FEDC2A230A7ECB0A005E1F91F6EF693,
  3035. EditorAttribute_GetHashCode_mBB45B68F421A996ABBF4B6AC8DC506D4C96CE7DC,
  3036. ExpandableObjectConverter__ctor_mB2F0F20591EA133C5A0BCC4C871CDDD6974730DC,
  3037. Int16Converter__ctor_m3803A7772B21F49200FC142C193A40DC286C9DFF,
  3038. Int32Converter__ctor_m88220DA12F6ED6FE4D1232B73C20DECE9EFC63FF,
  3039. Int64Converter__ctor_m3C124DB065F27F6BEAB7ABAF4B3D13E6A9F3E94C,
  3040. ReferenceConverter__ctor_mECD358A5C07B37EFD8659FDEF4C067A16E51171E,
  3041. ReferenceConverter__cctor_m7A6A35413E4F4527499053D28FDEFB4BB91AC1A5,
  3042. SettingsBindableAttribute__ctor_mC0F9613A258449016DF2A53220343DB20A388A91,
  3043. SettingsBindableAttribute_get_Bindable_m448BA41F157DF20B461625E635BAA0DD861668F3,
  3044. SettingsBindableAttribute_Equals_mF15B757F5C23A846B04FB2FB277E23572CF6FECB,
  3045. SettingsBindableAttribute_GetHashCode_m890594467DEA957BDEC69BC6EA32A5728DD84D47,
  3046. SettingsBindableAttribute__cctor_m7535DF492E918C80ED2CB42AD5ABD1ACB1D57C68,
  3047. SingleConverter__ctor_m463B63EB8D945D2D43E5B8099D8F0EC24AEBDA7A,
  3048. StringConverter__ctor_m074D8686ED6ABC0E64C20D1EFD4406F215E7187A,
  3049. TimeSpanConverter__ctor_m7319DCEEDA2578B340AD4FEEE010AE5CEFAC9BD5,
  3050. TypeConverterAttribute__ctor_mEEE3CA7C17555BA93BB76201BA2BCF879E617DA9,
  3051. TypeConverterAttribute__ctor_m0E1A55E1BD368F0AABCAF766BBCE1D275777A52A,
  3052. TypeConverterAttribute__ctor_mF1AB0946F2E1E398141ACF79468EA4DB1FE27139,
  3053. TypeConverterAttribute_get_ConverterTypeName_mBBE5335F11FC13345D2828866172BB5DDF9F3E45,
  3054. TypeConverterAttribute_Equals_mA3BF2C8CFA0AE8B5D0F52E066B1141AA53B4E015,
  3055. TypeConverterAttribute_GetHashCode_m23ACA2A297447E17150BF490188919676FBD8A01,
  3056. TypeConverterAttribute__cctor_m7A206154E18C66B9CEA6934D8AFB1AE9DA4EA666,
  3057. CollectionConverter__ctor_m20ED0C661750EBE427D356F24AED92A407988147,
  3058. Component_Finalize_m124F6FA2207E76C9DF18740E653C49D483A6E5C6,
  3059. Component_get_CanRaiseEvents_m23993A519269D33F515ADADAB081C6ADF1551AF4,
  3060. Component_get_CanRaiseEventsInternal_mAF68FD325FA909AEA171953DF83CB1051A9EA3CC,
  3061. Component_get_Site_mAB0D574C04230287AFDEB9E691F885A49E18A80C,
  3062. Component_Dispose_m7D0C063EA18E1FFA59CB369232131150372DC7B2,
  3063. Component_Dispose_mD106692D0A494758CFFA2C9ACC0D7F94DD389192,
  3064. Component_GetService_mBAA7A515C81E800F2EEF6B796A5C4AA7C08B0A57,
  3065. Component_get_DesignMode_m1F9F6A7CF2856B86B6571430C7F403A6393B90F0,
  3066. Component_ToString_m6B31E5C41739F547FD9F10B6439E8C3F1E15EBC3,
  3067. Component__ctor_mDA70A27899B8D66203C57A3E8678A11E033B4DF6,
  3068. Component__cctor_mFA01BE8B3C6836B029B2E607352AF2E0D3D10057,
  3069. ComponentConverter__ctor_m55556BF96FD3D27C7D9F5B413514A01DF0A3911C,
  3070. EnumConverter__ctor_m3E3C7D81C8092A5591BAA556288B2A3E22DCA99B,
  3071. TypeConverter__ctor_mA5B1882A94D0491297B903563E8B03D75B2F67A2,
  3072. Win32Exception__ctor_m0B20F25EC4A56A122FF766429AF40AF6292E11B1,
  3073. Win32Exception__ctor_mFC38F1C99031D227C6BB3CA07099866D39994281,
  3074. Win32Exception__ctor_mB0380F996944EDFCF9CACC7F28A18874F19B4FD4,
  3075. Win32Exception__ctor_m1B3DF3F51BBF050C18F933B36027A8A4902668C4,
  3076. Win32Exception_GetObjectData_mB7993FD0BE12222D5518373EBAB84F89651D99D2,
  3077. Win32Exception_GetErrorMessage_m4DF2B191F4BBBF3B7AC82CE276E3E62F0A9159CC,
  3078. NotifyParentPropertyAttribute__ctor_m921D2426472D2601F59590590DAE1585D8768FD5,
  3079. NotifyParentPropertyAttribute_get_NotifyParent_m9CE85A9E830D177C945D2E79C8BB15F1E4354A80,
  3080. NotifyParentPropertyAttribute_Equals_m3E26D4045E9F41428447AAC23326763A6794A810,
  3081. NotifyParentPropertyAttribute_GetHashCode_mD6070F690A4DA9B4E70962FDEE7E5CD9EC1B8FC8,
  3082. NotifyParentPropertyAttribute__cctor_mBA4B327F55E2A2DD03A16456139F97628070B152,
  3083. NULL,
  3084. RootDesignerSerializerAttribute__ctor_m52C401C2E19FF1C4E9A8F140811D5AA762C60602,
  3085. NULL,
  3086. NameValueCollection__ctor_mCA29E5386DACDF19F6F51BC395324F0A8EE05604,
  3087. NameValueCollection__ctor_mAC66C8064A4AAB73914143C4CDF3BF28543BAEC3,
  3088. NameValueCollection_InvalidateCachedArrays_mA9AA2F9B6A67C2576FA30F12208AA6E1F149C44B,
  3089. NameValueCollection_GetAsOneString_m9572A021DF304441085F4661526BB1289957A193,
  3090. NameValueCollection_Add_m68C266151774CD1FC057C9349BAE09BDB15A26A7,
  3091. NameValueCollection_Get_m786B25D45B38D7051C696104946F3F0A2DF78106,
  3092. NameValueCollection_get_Item_mE3ED755803E67BC852123C70EEF8D53774FA635F,
  3093. NameValueCollection_get_AllKeys_mEE8B643F93B5714DD9C231385589020E778AA94D,
  3094. OrderedDictionary__ctor_mBEC4CCF86E1A22330C31E1C069B2F21695445A10,
  3095. OrderedDictionary__ctor_m552AA3E019FF5D93545B5DFFB7B4917C72251600,
  3096. OrderedDictionary__ctor_mAF002F0247B65A7CC1A012077622E8A5E97A7BE9,
  3097. OrderedDictionary__ctor_mF88C40080BA8F436358DE5195BB88C5957A4AC66,
  3098. OrderedDictionary__ctor_m442555F1C427B3EF7DC305AE414FD5EBD90A4861,
  3099. OrderedDictionary_get_Count_m9B55DB3275692CD51DE69FA8200D1998BD258A0A,
  3100. OrderedDictionary_System_Collections_IDictionary_get_IsFixedSize_mC85A0FC9CF039E7594E4C28C68B0E4BA243E1595,
  3101. OrderedDictionary_get_IsReadOnly_m8D512A98345A30BC8BB45818A36FCC20DCE3569A,
  3102. OrderedDictionary_System_Collections_ICollection_get_IsSynchronized_m68B485D9B7C83F599CDA6CA26D88EBCFE4DBA22B,
  3103. OrderedDictionary_get_Keys_m39D726F42E6E2A524AE555A41AE203F06E4F6792,
  3104. OrderedDictionary_get_objectsArray_mDA996CFABA5837C3361B0E94C89E6389202A9756,
  3105. OrderedDictionary_get_objectsTable_mA667F6EDF6E4E78C7F7AA118F35C86C64A9EFD80,
  3106. OrderedDictionary_System_Collections_ICollection_get_SyncRoot_m67C653BEB9C1E451229203FAE5B6453681E7FBDB,
  3107. OrderedDictionary_get_Item_m5755C415F2E5CAC5A0AE3EFBB5A8D84915B37ED8,
  3108. OrderedDictionary_set_Item_m9406B6A94651B7DB301BC383518FC9B37277122E,
  3109. OrderedDictionary_get_Values_m14CFA04FF0A8DC8B41386192B029EC604AF551BA,
  3110. OrderedDictionary_Add_m0E0236E85A80AB44EC533F2127F485E88753B4B3,
  3111. OrderedDictionary_Clear_mCED01246B19A457FAD097372DD7EFA0840D94E07,
  3112. OrderedDictionary_Contains_m63AFE431564000B20908A732633780B192F7F95E,
  3113. OrderedDictionary_CopyTo_m96E73EF7B84BA4D1ABA184134465F41DFFE73C2A,
  3114. OrderedDictionary_IndexOfKey_m0A1A8D3EA6A175D722513B7AAD3518A4C1502837,
  3115. OrderedDictionary_Remove_mD4DFDFA8710B689C990EEE8EFCC50EC21CE51EA3,
  3116. OrderedDictionary_GetEnumerator_mECA50DD161EDC87F84CD75764643826BFF14C16F,
  3117. OrderedDictionary_System_Collections_IEnumerable_GetEnumerator_m4AC8186C465CF478A39CC2FADBDBA75AA9DA5084,
  3118. OrderedDictionary_GetObjectData_m946A3884AC9A0398EF3CBDA7E5C7C268B01FC02C,
  3119. OrderedDictionary_System_Runtime_Serialization_IDeserializationCallback_OnDeserialization_m600671E042DB3E5BD39D5439D3C88010EEA1E95A,
  3120. OrderedDictionary_OnDeserialization_m069DE30CEBE5F11C239DD42383204D14793714D7,
  3121. OrderedDictionaryEnumerator__ctor_mEC12764C0293A3EFE021BEE4385D537C3C0EB775,
  3122. OrderedDictionaryEnumerator_get_Current_m1513DF120F398083CA52B7B330D7FF9D5FD6BC69,
  3123. OrderedDictionaryEnumerator_get_Entry_m70BE070A9125BA894E98803E322A51E34AAB0074,
  3124. OrderedDictionaryEnumerator_get_Key_mAE1632D8B4767AC6A321CDDCECFA3B943CFEB202,
  3125. OrderedDictionaryEnumerator_get_Value_m3D9DB591978A7EA9C640AD820A301AD176665AB9,
  3126. OrderedDictionaryEnumerator_MoveNext_m25E708E43E6B36CEAB84121CB0831590F40985BF,
  3127. OrderedDictionaryEnumerator_Reset_m6878E0A1524911AEBEEC87C578C75584DAFD9022,
  3128. OrderedDictionaryKeyValueCollection__ctor_mA61FF47888F401F7194B3AD6B6F5F81F9FECEA64,
  3129. OrderedDictionaryKeyValueCollection_System_Collections_ICollection_CopyTo_m6B8299303DC7D0A30936938CABE4F81F610077FF,
  3130. OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_Count_m7E6084DFB4648AD05337326CC87BC5AAAC2B310B,
  3131. OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_IsSynchronized_mE73CC54355B822C837985F6534050DB9472A42EA,
  3132. OrderedDictionaryKeyValueCollection_System_Collections_ICollection_get_SyncRoot_m970D75F7E81A1BB6FA21D797A7D0A068D749E511,
  3133. OrderedDictionaryKeyValueCollection_System_Collections_IEnumerable_GetEnumerator_m915EACF605AF9EBDC96A2BDB466682095A03154D,
  3134. StringDictionary__ctor_mF13D065DE0B8C21DBAB7873436D7D7C879373A7C,
  3135. StringDictionary_Add_mE81F28657F0C11A7242C286D10AB4BFA34081FAB,
  3136. StringDictionary_GetEnumerator_m3E900457E2146001383B0E3590FA5FECD3460BC1,
  3137. CaseSensitiveStringDictionary__ctor_m2AF7A1302E4A8EE55E5E98BA342FDC3EF89A3F5E,
  3138. CaseSensitiveStringDictionary_Add_m9B3BE19D3A3468F470E99F7CC4D553877A81764D,
  3139. NameObjectCollectionBase__ctor_m6E0DCD48B817A59D0156390A09CD50BE07BF145D,
  3140. NameObjectCollectionBase__ctor_mB5F581BB65F493F603EE57E1815389E1406D5B61,
  3141. NameObjectCollectionBase__ctor_m7E8E8B56138D44BECF32865A11DAF942AE2BA4DA,
  3142. NameObjectCollectionBase_GetObjectData_m0675A0B0EC79E1DAD6E307764C899EC5E552B32A,
  3143. NameObjectCollectionBase_OnDeserialization_mFF0F15B0E4DB6D9B6043E2B338160B321889C4B6,
  3144. NameObjectCollectionBase_Reset_m107877B3D64D818F9D4E0936DA9627C4D94DF6DC,
  3145. NameObjectCollectionBase_Reset_mFF34A1D69D7F9BECD9948E748769623EFA50C0D3,
  3146. NameObjectCollectionBase_FindEntry_m1BC4B6ACCE244B544B216D16DB53A769E670876F,
  3147. NameObjectCollectionBase_get_IsReadOnly_m1B1072E33B3B42507F822EBB61F75A804A1D503A,
  3148. NameObjectCollectionBase_BaseAdd_m1A8E236F037A35B3FBC7435A120B2E66EE7F563E,
  3149. NameObjectCollectionBase_BaseGet_mA6FA3CE608E74CF1E4C71227EA95F15C0D2BB154,
  3150. NameObjectCollectionBase_BaseGetKey_m4435B786286C5946CFA38206FFE20E33F32A78A6,
  3151. NameObjectCollectionBase_GetEnumerator_mDEEC7FF01AEF8FB0739964513BAF10C4C3F254BC,
  3152. NameObjectCollectionBase_get_Count_m766C6702F64CD224AB123566BAACB2A81FCBF5F0,
  3153. NameObjectCollectionBase_System_Collections_ICollection_CopyTo_mF47F5F43F47C553B071EB7A6AA4A352D95B02E01,
  3154. NameObjectCollectionBase_System_Collections_ICollection_get_SyncRoot_mAC6E9FEF3C7C442481772E568C4FBF552B908624,
  3155. NameObjectCollectionBase_System_Collections_ICollection_get_IsSynchronized_mA19A4DFBCF83655C1960F608E1CE54201D224AC8,
  3156. NameObjectCollectionBase_BaseGetAllKeys_m00ADAB2845483DCD590077264B6C11553BBAD744,
  3157. NameObjectCollectionBase__cctor_m9D96ED9D8FAA7D5C0F233E940EA3FEA3FACBCA5D,
  3158. NameObjectEntry__ctor_m36EA15EE18936FA78B2E4E29C63311E03221F513,
  3159. NameObjectKeysEnumerator__ctor_mF3026FAD0A80AADFBC11888DCB0FDF7C2DD71801,
  3160. NameObjectKeysEnumerator_MoveNext_m8800474BD1E5F24E4B88D1E33ABA793CB05DD540,
  3161. NameObjectKeysEnumerator_Reset_m548902A21282FB0766D833231BE700069DA316A5,
  3162. NameObjectKeysEnumerator_get_Current_m23AC7A2525995AC67EF4002996653748F33F6096,
  3163. CompatibleComparer__ctor_m9F601617145FDFCA25983415C4427C47E5C170A7,
  3164. CompatibleComparer_Equals_m09CF7F036688C2E00C8BF5618C0528BA8D8C40D5,
  3165. CompatibleComparer_GetHashCode_mE88BB0E4CC1A615946A43A8DE75B6F1F57B1CDAF,
  3166. CompatibleComparer_get_Comparer_mFA7D1FF54540B95FED7C58DBCDB7ACC037FD3DF9,
  3167. CompatibleComparer_get_HashCodeProvider_m1085836D796353C24686CF56026EB89D783BBFC4,
  3168. CompatibleComparer_get_DefaultComparer_m1764CA10BF8362FE4B86743BC5450ACF9F33AC77,
  3169. CompatibleComparer_get_DefaultHashCodeProvider_m0DEC6F17BB96B8492250DCC38617890C4417E284,
  3170. NULL,
  3171. NULL,
  3172. NULL,
  3173. NULL,
  3174. NULL,
  3175. NULL,
  3176. NULL,
  3177. NULL,
  3178. NULL,
  3179. NULL,
  3180. NULL,
  3181. NULL,
  3182. NULL,
  3183. NULL,
  3184. NULL,
  3185. NULL,
  3186. NULL,
  3187. NULL,
  3188. NULL,
  3189. NULL,
  3190. NULL,
  3191. NULL,
  3192. NULL,
  3193. NULL,
  3194. NULL,
  3195. NULL,
  3196. NULL,
  3197. NULL,
  3198. NULL,
  3199. NULL,
  3200. NULL,
  3201. NULL,
  3202. NULL,
  3203. NULL,
  3204. NULL,
  3205. NULL,
  3206. NULL,
  3207. NULL,
  3208. NULL,
  3209. NULL,
  3210. NULL,
  3211. NULL,
  3212. NULL,
  3213. NULL,
  3214. NULL,
  3215. NULL,
  3216. NULL,
  3217. InternalResources_GetMessage_m772EEF9B7C246A113177F060FD06ADB8442B0ED6,
  3218. InternalResources_WinIOError_m00EDA6C02E1DA83984D69308023029541AE785B2,
  3219. InternalResources_MakeHRFromErrorCode_mE80550681537780A529853182710AC3228890880,
  3220. U3CPrivateImplementationDetailsU3E_ComputeStringHash_m171C269D828658C44041FA68B6DE8CA290ED517F,
  3221. BypassElementCollection__ctor_m344EC8CD2EACA36E1213C5914037BB133E87FE54,
  3222. ConnectionManagementElementCollection__ctor_m4698342A715032A762FA04B2745BFCA46263BCB3,
  3223. ConnectionManagementSection__ctor_m2FA1D29F887BD6498FBEF692BBC0AA727E38E802,
  3224. ConnectionManagementSection_get_Properties_mFCE0F9418E9E8CD2E1301815CC4D548261F58E95,
  3225. DefaultProxySection__ctor_m962B68CEFCDE7DFB7646EF16297CA4BE0097284D,
  3226. DefaultProxySection_get_Properties_m5186F1A2734EB96F065C7BC14A215D17F8325418,
  3227. DefaultProxySection_Reset_m0B9A1155840E7C55FC24AEDB23FB17A2815EEB77,
  3228. ProxyElement__ctor_mC1BDF426F97F4F84CB5A34B423F59EC8748EBD70,
  3229. ProxyElement_get_Properties_mBFE6E283FE7E9329B586ACAADC8F2E047C7ABB2A,
  3230. HttpWebRequestElement__ctor_mB9DDAC7FF431D4AF4CAFCBC96E1A3572A1F83717,
  3231. HttpWebRequestElement_get_Properties_mAA0F11EA73B5397C50809EAC679F2C564F9EC7CA,
  3232. Ipv6Element__ctor_m869AC261E0994A8B3D83CEE25C6CB99E6A5EA4C1,
  3233. Ipv6Element_get_Properties_m382D5B5B098EFF19C2A4AC1889CD1C8EAB918322,
  3234. NetSectionGroup__ctor_mCD2F0DC2B9F0C6C346BC91BD8750C7111A9528AC,
  3235. SettingsSection__ctor_mBD94E7E098221DC09775A3AE1713930F6820D242,
  3236. SettingsSection_get_Properties_mA774C9C884F4AD5DEC2BBE31DF7E35CAC71EBF8F,
  3237. PerformanceCountersElement__ctor_m9537195CBC7DC607F7253D06E7B6B1090456E68F,
  3238. PerformanceCountersElement_get_Properties_m7C16FBC3E915E8384FB4409209628737B1537C9B,
  3239. ServicePointManagerElement__ctor_m0F1CF21589CA283DA734A472930A9665698B2D36,
  3240. ServicePointManagerElement_get_Properties_m70469523AAD1A2C2E9D4F90DDA1BA619FCE68B58,
  3241. SocketElement__ctor_m4FB4C851F1BB20CED74C206EFB1BA9DDFBE024D2,
  3242. SocketElement_get_Properties_m8AF94DEEDA0EB4092F59FBDC361592E1B9EBDEC3,
  3243. WebProxyScriptElement__ctor_mB613D71DE569317E40726CD8DB9A6ABA0A302821,
  3244. WebProxyScriptElement_get_Properties_mF5188225C0C1D64BC136465BB4B0E962FFE9240B,
  3245. WebRequestModulesSection__ctor_mF25CD80A5111A4F87B7FBF7663A3442470B97C0E,
  3246. WebRequestModulesSection_get_Properties_mBDBDED569E677717FB617CD36B94AE34BF4208F6,
  3247. WebRequestModuleElementCollection__ctor_m62C156D78336B2E37EA6F10D477FDEAE4161F99E,
  3248. DiagnosticsConfigurationHandler__ctor_mDFB0000E6218840F66D21BB6C9BF3F647CCBC5A3,
  3249. DiagnosticsConfigurationHandler_Create_mF21B1CC68B87DE078690B2B493FCDC5F728CBAAB,
  3250. ThrowStub_ThrowNotSupportedException_m14168B43936EF78B7B8AC08BD815254DAA1D9FA2,
  3251. };
  3252. extern void CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F_AdjustorThunk (void);
  3253. extern void CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2_AdjustorThunk (void);
  3254. extern void CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0_AdjustorThunk (void);
  3255. extern void CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE_AdjustorThunk (void);
  3256. extern void LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A_AdjustorThunk (void);
  3257. extern void SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E_AdjustorThunk (void);
  3258. extern void RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4_AdjustorThunk (void);
  3259. extern void RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_AdjustorThunk (void);
  3260. extern void RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_AdjustorThunk (void);
  3261. static Il2CppTokenAdjustorThunkPair s_adjustorThunks[9] =
  3262. {
  3263. { 0x0600016F, CachedCodeEntryKey__ctor_mE505E40C97820B3FD140F6212F0B4ECF8745585F_AdjustorThunk },
  3264. { 0x06000170, CachedCodeEntryKey_Equals_m59F40708B97179EA5C9019EA6A958D7AB8BC8CA2_AdjustorThunk },
  3265. { 0x06000171, CachedCodeEntryKey_Equals_m55F9ED97CB9AF357034A75C2FDB8498FC55D3AF0_AdjustorThunk },
  3266. { 0x06000173, CachedCodeEntryKey_GetHashCode_m253B53C100F840B987A487020F02184019D776DE_AdjustorThunk },
  3267. { 0x060001A0, LowerCaseMapping__ctor_m06D0A21D5D72E39535F82076EF046F98C62D7D5A_AdjustorThunk },
  3268. { 0x060001A4, SingleRange__ctor_m14FD490AFB119E412298554D31FADDCB9465511E_AdjustorThunk },
  3269. { 0x0600024C, RegexPrefix__ctor_m05CD44F32CB0B5F8B2C080EAB94886F9743E86A4_AdjustorThunk },
  3270. { 0x0600024D, RegexPrefix_get_CaseInsensitive_m4DAE2D9E91916BFFAB928F7DCAA20A5ABD4560E6_AdjustorThunk },
  3271. { 0x0600024F, RegexPrefix_get_Prefix_m844D02262C0720B0DC488AD1541713AD37BC518E_AdjustorThunk },
  3272. };
  3273. static const int32_t s_InvokerIndices[1100] =
  3274. {
  3275. 5604,
  3276. 6376,
  3277. 5604,
  3278. 6811,
  3279. 6811,
  3280. 4506,
  3281. 3250,
  3282. 3250,
  3283. 4685,
  3284. 4684,
  3285. 6776,
  3286. 5892,
  3287. 5900,
  3288. 6774,
  3289. 6378,
  3290. 3662,
  3291. 2112,
  3292. 4336,
  3293. 6811,
  3294. 5510,
  3295. 4738,
  3296. 5095,
  3297. 4840,
  3298. 5244,
  3299. 5274,
  3300. 5115,
  3301. 6335,
  3302. 6367,
  3303. 5321,
  3304. 5271,
  3305. 6367,
  3306. 5104,
  3307. 5443,
  3308. 6541,
  3309. 6254,
  3310. 6379,
  3311. 3680,
  3312. 3680,
  3313. 3680,
  3314. 4406,
  3315. 2677,
  3316. 4384,
  3317. 3680,
  3318. 4406,
  3319. 5942,
  3320. 5133,
  3321. 5943,
  3322. 5257,
  3323. 4336,
  3324. 4336,
  3325. 4336,
  3326. 4336,
  3327. 4495,
  3328. 4406,
  3329. 4336,
  3330. 6379,
  3331. 4336,
  3332. 1277,
  3333. 2677,
  3334. 4336,
  3335. 4506,
  3336. 4493,
  3337. 2763,
  3338. 2763,
  3339. 5946,
  3340. 5946,
  3341. 4406,
  3342. 4506,
  3343. 3606,
  3344. 3680,
  3345. 2132,
  3346. 2136,
  3347. 1121,
  3348. 2136,
  3349. 5178,
  3350. 6537,
  3351. 2142,
  3352. 2142,
  3353. 2142,
  3354. 4406,
  3355. 4406,
  3356. 4406,
  3357. 4336,
  3358. 4336,
  3359. 4406,
  3360. 4336,
  3361. 4406,
  3362. 6379,
  3363. 6781,
  3364. 6811,
  3365. 4384,
  3366. 4406,
  3367. 4406,
  3368. 4406,
  3369. 4336,
  3370. 4406,
  3371. 4406,
  3372. 4336,
  3373. 4336,
  3374. 4406,
  3375. 6388,
  3376. 6388,
  3377. 6470,
  3378. 4384,
  3379. 4406,
  3380. 5903,
  3381. 5903,
  3382. 2677,
  3383. 5530,
  3384. 4406,
  3385. 4384,
  3386. 2146,
  3387. 3759,
  3388. 4506,
  3389. 4992,
  3390. 4506,
  3391. 1622,
  3392. 3264,
  3393. 1622,
  3394. 955,
  3395. 3264,
  3396. 4506,
  3397. 5003,
  3398. 5446,
  3399. 5520,
  3400. 135,
  3401. 17,
  3402. 45,
  3403. 725,
  3404. 679,
  3405. 454,
  3406. 959,
  3407. 4800,
  3408. 5288,
  3409. 6467,
  3410. 5610,
  3411. 4336,
  3412. 6388,
  3413. 6388,
  3414. 6388,
  3415. 6388,
  3416. 5575,
  3417. 1097,
  3418. 1068,
  3419. 2677,
  3420. 2677,
  3421. 2677,
  3422. 5459,
  3423. 1622,
  3424. 6541,
  3425. 643,
  3426. 1153,
  3427. 5270,
  3428. 4981,
  3429. 3264,
  3430. 1622,
  3431. 3680,
  3432. 6811,
  3433. 4506,
  3434. 4506,
  3435. 4506,
  3436. 3680,
  3437. 2142,
  3438. 2142,
  3439. 4624,
  3440. 4693,
  3441. 4598,
  3442. 4597,
  3443. 4629,
  3444. 5804,
  3445. 6151,
  3446. 6388,
  3447. 6388,
  3448. 6388,
  3449. 6388,
  3450. 6811,
  3451. 4406,
  3452. 4384,
  3453. 4406,
  3454. 2119,
  3455. 967,
  3456. 965,
  3457. 6761,
  3458. 6811,
  3459. 4384,
  3460. 2655,
  3461. 2655,
  3462. 2655,
  3463. 1237,
  3464. 3660,
  3465. 6541,
  3466. 6541,
  3467. 4336,
  3468. 4406,
  3469. 2119,
  3470. 967,
  3471. 965,
  3472. 1106,
  3473. 5274,
  3474. 4842,
  3475. 4842,
  3476. 4966,
  3477. 4966,
  3478. 5902,
  3479. 5856,
  3480. 5267,
  3481. 4966,
  3482. 5941,
  3483. 5941,
  3484. 5274,
  3485. 5108,
  3486. 2134,
  3487. 3680,
  3488. 4506,
  3489. 2677,
  3490. 1969,
  3491. 1072,
  3492. 4384,
  3493. 3086,
  3494. 5251,
  3495. 4963,
  3496. 5451,
  3497. 1106,
  3498. 4384,
  3499. 3660,
  3500. 4384,
  3501. 3660,
  3502. 4406,
  3503. 3680,
  3504. 4406,
  3505. 4406,
  3506. 4272,
  3507. 4272,
  3508. 781,
  3509. 4336,
  3510. 6811,
  3511. 4506,
  3512. 2136,
  3513. 4336,
  3514. 4384,
  3515. 3264,
  3516. 4406,
  3517. 4406,
  3518. 3264,
  3519. 3264,
  3520. 4336,
  3521. 4406,
  3522. 2132,
  3523. 2132,
  3524. 3105,
  3525. 1988,
  3526. 3660,
  3527. 3264,
  3528. 1988,
  3529. 3680,
  3530. 4506,
  3531. 2677,
  3532. 2677,
  3533. 3105,
  3534. 4506,
  3535. 2677,
  3536. 3105,
  3537. 1988,
  3538. 4336,
  3539. 3680,
  3540. 3660,
  3541. 3264,
  3542. 1988,
  3543. 4506,
  3544. 3680,
  3545. 4336,
  3546. 4406,
  3547. 4406,
  3548. 4506,
  3549. 4506,
  3550. 226,
  3551. 6781,
  3552. 394,
  3553. 4406,
  3554. 4406,
  3555. 2334,
  3556. 4272,
  3557. 1071,
  3558. 3660,
  3559. 3660,
  3560. 2655,
  3561. 3086,
  3562. 3086,
  3563. 3660,
  3564. 6811,
  3565. 4506,
  3566. 151,
  3567. 4406,
  3568. 394,
  3569. 4336,
  3570. 4384,
  3571. 3264,
  3572. 4406,
  3573. 4406,
  3574. 3264,
  3575. 4506,
  3576. 4336,
  3577. 4406,
  3578. 2132,
  3579. 2132,
  3580. 3105,
  3581. 1988,
  3582. 3660,
  3583. 3264,
  3584. 1988,
  3585. 3680,
  3586. 4506,
  3587. 2677,
  3588. 2677,
  3589. 3105,
  3590. 4506,
  3591. 2677,
  3592. 3105,
  3593. 1988,
  3594. 4336,
  3595. 3680,
  3596. 3660,
  3597. 3264,
  3598. 1988,
  3599. 4506,
  3600. 3680,
  3601. 4336,
  3602. 4406,
  3603. 4406,
  3604. 4506,
  3605. 4506,
  3606. 4406,
  3607. 3680,
  3608. 4506,
  3609. 1705,
  3610. 1705,
  3611. 4506,
  3612. 5956,
  3613. 5956,
  3614. 6565,
  3615. 5903,
  3616. 5124,
  3617. 2677,
  3618. 1267,
  3619. 3267,
  3620. 1644,
  3621. 6075,
  3622. 5280,
  3623. 3267,
  3624. 1644,
  3625. 1645,
  3626. 651,
  3627. 6811,
  3628. 6708,
  3629. 6802,
  3630. 3680,
  3631. 2132,
  3632. 2142,
  3633. 768,
  3634. 4336,
  3635. 4406,
  3636. 3264,
  3637. 4506,
  3638. 193,
  3639. 4336,
  3640. 4336,
  3641. 1078,
  3642. 2677,
  3643. 2801,
  3644. 5957,
  3645. 4384,
  3646. 112,
  3647. 729,
  3648. 1267,
  3649. 441,
  3650. 547,
  3651. 4506,
  3652. 697,
  3653. 4336,
  3654. 3606,
  3655. 3757,
  3656. 3680,
  3657. 3680,
  3658. 3680,
  3659. 2182,
  3660. 729,
  3661. 3680,
  3662. 3680,
  3663. 1146,
  3664. 1776,
  3665. 1776,
  3666. 1031,
  3667. 6643,
  3668. 6379,
  3669. 6379,
  3670. 6379,
  3671. 6379,
  3672. 6379,
  3673. 6379,
  3674. 6388,
  3675. 6388,
  3676. 5944,
  3677. 5478,
  3678. 4864,
  3679. 4864,
  3680. 5132,
  3681. 6541,
  3682. 6541,
  3683. 6071,
  3684. 4384,
  3685. 4406,
  3686. 3872,
  3687. 4506,
  3688. 5602,
  3689. 6811,
  3690. 808,
  3691. 4506,
  3692. 1525,
  3693. 6811,
  3694. 2182,
  3695. 50,
  3696. 6376,
  3697. 3549,
  3698. 6308,
  3699. 6577,
  3700. 6467,
  3701. 6463,
  3702. 3660,
  3703. 4336,
  3704. 4384,
  3705. 3680,
  3706. 4336,
  3707. 4406,
  3708. 4406,
  3709. 4506,
  3710. 3267,
  3711. 4506,
  3712. 1077,
  3713. 3606,
  3714. 806,
  3715. 1095,
  3716. 1261,
  3717. 4336,
  3718. 3606,
  3719. 3267,
  3720. 2136,
  3721. 4506,
  3722. 3660,
  3723. 3660,
  3724. 3660,
  3725. 3660,
  3726. 4384,
  3727. 4384,
  3728. 4384,
  3729. 4506,
  3730. 3660,
  3731. 1969,
  3732. 1071,
  3733. 3660,
  3734. 1969,
  3735. 4506,
  3736. 3660,
  3737. 4506,
  3738. 3660,
  3739. 4384,
  3740. 3086,
  3741. 3660,
  3742. 1969,
  3743. 4506,
  3744. 3660,
  3745. 4384,
  3746. 3086,
  3747. 4384,
  3748. 3086,
  3749. 4384,
  3750. 4384,
  3751. 4384,
  3752. 4384,
  3753. 4493,
  3754. 2677,
  3755. 1237,
  3756. 4506,
  3757. 3389,
  3758. 4336,
  3759. 4506,
  3760. 1129,
  3761. 4506,
  3762. 2142,
  3763. 2142,
  3764. 4406,
  3765. 4406,
  3766. 4483,
  3767. 1969,
  3768. 1074,
  3769. 1072,
  3770. 1071,
  3771. 710,
  3772. 4336,
  3773. 4406,
  3774. 1071,
  3775. 4406,
  3776. 3264,
  3777. 4406,
  3778. 4406,
  3779. 4406,
  3780. 4406,
  3781. 4406,
  3782. 944,
  3783. 3680,
  3784. 3264,
  3785. 4384,
  3786. 4384,
  3787. 6071,
  3788. 4982,
  3789. 3680,
  3790. 3680,
  3791. 3660,
  3792. 4406,
  3793. 4406,
  3794. 1573,
  3795. 4406,
  3796. 4506,
  3797. 3256,
  3798. 3256,
  3799. 4406,
  3800. 4406,
  3801. 4493,
  3802. 4384,
  3803. 3389,
  3804. 6470,
  3805. 4493,
  3806. 2655,
  3807. 4506,
  3808. 4493,
  3809. 4406,
  3810. 3159,
  3811. 6470,
  3812. 4506,
  3813. 1969,
  3814. 2132,
  3815. 1109,
  3816. 4506,
  3817. 3105,
  3818. 2655,
  3819. 2677,
  3820. 4336,
  3821. 4336,
  3822. 4336,
  3823. 4336,
  3824. 4336,
  3825. 4336,
  3826. 6388,
  3827. 6388,
  3828. 6388,
  3829. 4336,
  3830. 6388,
  3831. 1069,
  3832. 4506,
  3833. 4506,
  3834. 4336,
  3835. 3680,
  3836. 4506,
  3837. 4506,
  3838. 1033,
  3839. 4406,
  3840. 3757,
  3841. 3757,
  3842. 3680,
  3843. 3680,
  3844. 3660,
  3845. 4506,
  3846. 4506,
  3847. 4506,
  3848. 4336,
  3849. 4506,
  3850. 3267,
  3851. 4384,
  3852. 3660,
  3853. 4493,
  3854. 4506,
  3855. 3660,
  3856. 4506,
  3857. 3389,
  3858. 4493,
  3859. 3389,
  3860. 4384,
  3861. 6811,
  3862. 2121,
  3863. 4336,
  3864. 6792,
  3865. 4406,
  3866. 6811,
  3867. 1125,
  3868. 4778,
  3869. 4406,
  3870. 2136,
  3871. 2136,
  3872. 651,
  3873. 4506,
  3874. 89,
  3875. 4506,
  3876. 4506,
  3877. 4506,
  3878. 0,
  3879. 0,
  3880. 0,
  3881. 4506,
  3882. 3256,
  3883. 4506,
  3884. 848,
  3885. 848,
  3886. 4506,
  3887. 4506,
  3888. 4506,
  3889. 3660,
  3890. 4384,
  3891. 4384,
  3892. 1071,
  3893. 710,
  3894. 4506,
  3895. 2655,
  3896. 3086,
  3897. 3086,
  3898. 0,
  3899. 153,
  3900. 1760,
  3901. 6541,
  3902. 4506,
  3903. 3267,
  3904. 1969,
  3905. 3660,
  3906. 1969,
  3907. 1071,
  3908. 3105,
  3909. 3086,
  3910. 1077,
  3911. 4506,
  3912. 3606,
  3913. 4506,
  3914. 4506,
  3915. 731,
  3916. 4336,
  3917. 4336,
  3918. 4386,
  3919. 4406,
  3920. 3680,
  3921. 4406,
  3922. 3680,
  3923. 2121,
  3924. 3606,
  3925. 4506,
  3926. 3660,
  3927. 4506,
  3928. 6781,
  3929. 4506,
  3930. 1617,
  3931. 3264,
  3932. 3264,
  3933. 4506,
  3934. 3680,
  3935. 3660,
  3936. 4336,
  3937. 6541,
  3938. 6541,
  3939. 4506,
  3940. 4406,
  3941. 6539,
  3942. 6541,
  3943. 4406,
  3944. 5900,
  3945. 4856,
  3946. 2677,
  3947. 5700,
  3948. 6761,
  3949. 2677,
  3950. 6245,
  3951. 4506,
  3952. 3680,
  3953. 3680,
  3954. 4406,
  3955. 4406,
  3956. 3680,
  3957. 4406,
  3958. 4336,
  3959. 4336,
  3960. 4336,
  3961. 4406,
  3962. 4406,
  3963. 4336,
  3964. 4406,
  3965. 4406,
  3966. 4406,
  3967. 4336,
  3968. 4406,
  3969. 4406,
  3970. 4336,
  3971. 4406,
  3972. 6811,
  3973. 3680,
  3974. 3680,
  3975. 4406,
  3976. 6775,
  3977. 4506,
  3978. 4483,
  3979. 4385,
  3980. 4385,
  3981. 4506,
  3982. 4506,
  3983. 6811,
  3984. 4506,
  3985. 3680,
  3986. 2136,
  3987. 3680,
  3988. 4406,
  3989. 3680,
  3990. 4506,
  3991. 3105,
  3992. 3264,
  3993. 4384,
  3994. 4406,
  3995. 4406,
  3996. 2132,
  3997. 4336,
  3998. 4406,
  3999. 3680,
  4000. 4406,
  4001. 4406,
  4002. 4336,
  4003. 4506,
  4004. 4506,
  4005. 3680,
  4006. 4406,
  4007. 3680,
  4008. 3680,
  4009. 3256,
  4010. 3256,
  4011. 3256,
  4012. 3256,
  4013. 3256,
  4014. 3256,
  4015. 3256,
  4016. 3256,
  4017. 4406,
  4018. 4406,
  4019. 4406,
  4020. 6811,
  4021. 4506,
  4022. 2121,
  4023. 690,
  4024. 4336,
  4025. 4336,
  4026. 4384,
  4027. 3680,
  4028. 3105,
  4029. 4406,
  4030. 3256,
  4031. 2121,
  4032. 3680,
  4033. 3105,
  4034. 3256,
  4035. 4506,
  4036. 4336,
  4037. 3606,
  4038. 3680,
  4039. 3267,
  4040. 4506,
  4041. 2121,
  4042. 1937,
  4043. 4384,
  4044. 3680,
  4045. 3086,
  4046. 3105,
  4047. 4406,
  4048. 3256,
  4049. 4506,
  4050. 2121,
  4051. 2121,
  4052. 2121,
  4053. 2121,
  4054. 1103,
  4055. 4406,
  4056. 3680,
  4057. 6388,
  4058. 5945,
  4059. 6541,
  4060. 3105,
  4061. 4406,
  4062. 3256,
  4063. 4336,
  4064. 4336,
  4065. 4494,
  4066. 3758,
  4067. 4494,
  4068. 3758,
  4069. 3661,
  4070. 2133,
  4071. 1750,
  4072. 4384,
  4073. 4406,
  4074. 1261,
  4075. 2677,
  4076. 4384,
  4077. 6781,
  4078. 6811,
  4079. 3661,
  4080. 6555,
  4081. 6279,
  4082. 6026,
  4083. 6080,
  4084. 6080,
  4085. 5732,
  4086. 5370,
  4087. 6277,
  4088. 6656,
  4089. 6646,
  4090. 4506,
  4091. 6811,
  4092. 3606,
  4093. 3680,
  4094. 4406,
  4095. 2677,
  4096. 4384,
  4097. 3660,
  4098. 2677,
  4099. 4384,
  4100. 3606,
  4101. 4336,
  4102. 2677,
  4103. 4384,
  4104. 6811,
  4105. 4506,
  4106. 3680,
  4107. 4406,
  4108. 4406,
  4109. 3680,
  4110. 2677,
  4111. 4384,
  4112. 6811,
  4113. 4506,
  4114. 3680,
  4115. 4406,
  4116. 2677,
  4117. 4384,
  4118. 6811,
  4119. 3660,
  4120. 4384,
  4121. 2677,
  4122. 4384,
  4123. 6811,
  4124. 4506,
  4125. 3680,
  4126. 4406,
  4127. 4406,
  4128. 3680,
  4129. 2677,
  4130. 4384,
  4131. 6811,
  4132. 3267,
  4133. 3267,
  4134. 0,
  4135. 0,
  4136. 0,
  4137. 0,
  4138. 0,
  4139. 0,
  4140. 4506,
  4141. 4506,
  4142. 4506,
  4143. 4506,
  4144. 3680,
  4145. 4406,
  4146. 2677,
  4147. 4384,
  4148. 6811,
  4149. 3680,
  4150. 4406,
  4151. 2677,
  4152. 4384,
  4153. 6811,
  4154. 4506,
  4155. 2136,
  4156. 4406,
  4157. 4406,
  4158. 2677,
  4159. 4384,
  4160. 4506,
  4161. 4506,
  4162. 4506,
  4163. 4506,
  4164. 3680,
  4165. 6811,
  4166. 3606,
  4167. 4336,
  4168. 2677,
  4169. 4384,
  4170. 6811,
  4171. 4506,
  4172. 4506,
  4173. 4506,
  4174. 4506,
  4175. 3680,
  4176. 3680,
  4177. 4406,
  4178. 2677,
  4179. 4384,
  4180. 6811,
  4181. 4506,
  4182. 4506,
  4183. 4336,
  4184. 4336,
  4185. 4406,
  4186. 4506,
  4187. 3606,
  4188. 3267,
  4189. 4336,
  4190. 4406,
  4191. 4506,
  4192. 6811,
  4193. 3680,
  4194. 3680,
  4195. 4506,
  4196. 4506,
  4197. 3660,
  4198. 1988,
  4199. 2142,
  4200. 2142,
  4201. 6537,
  4202. 3606,
  4203. 4336,
  4204. 2677,
  4205. 4384,
  4206. 6811,
  4207. 0,
  4208. 1121,
  4209. 0,
  4210. 4506,
  4211. 2142,
  4212. 4506,
  4213. 6541,
  4214. 2136,
  4215. 3267,
  4216. 3267,
  4217. 4406,
  4218. 4506,
  4219. 3660,
  4220. 3680,
  4221. 1988,
  4222. 2142,
  4223. 4384,
  4224. 4336,
  4225. 4336,
  4226. 4336,
  4227. 4406,
  4228. 4406,
  4229. 4406,
  4230. 4406,
  4231. 3267,
  4232. 2136,
  4233. 4406,
  4234. 2136,
  4235. 4506,
  4236. 2677,
  4237. 2132,
  4238. 3105,
  4239. 3680,
  4240. 4406,
  4241. 4406,
  4242. 2142,
  4243. 3680,
  4244. 3680,
  4245. 2132,
  4246. 4406,
  4247. 4352,
  4248. 4406,
  4249. 4406,
  4250. 4336,
  4251. 4506,
  4252. 2121,
  4253. 2132,
  4254. 4384,
  4255. 4336,
  4256. 4406,
  4257. 4406,
  4258. 4506,
  4259. 2136,
  4260. 4406,
  4261. 4506,
  4262. 2136,
  4263. 4506,
  4264. 3680,
  4265. 2142,
  4266. 2142,
  4267. 3680,
  4268. 4506,
  4269. 3660,
  4270. 3267,
  4271. 4336,
  4272. 2136,
  4273. 3267,
  4274. 3264,
  4275. 4406,
  4276. 4384,
  4277. 2132,
  4278. 4406,
  4279. 4336,
  4280. 4406,
  4281. 6811,
  4282. 2136,
  4283. 3680,
  4284. 4336,
  4285. 4506,
  4286. 4406,
  4287. 2136,
  4288. 1268,
  4289. 3105,
  4290. 4406,
  4291. 4406,
  4292. 6781,
  4293. 6781,
  4294. 0,
  4295. 0,
  4296. 0,
  4297. 0,
  4298. 0,
  4299. 0,
  4300. 0,
  4301. 0,
  4302. 0,
  4303. 0,
  4304. 0,
  4305. 0,
  4306. 0,
  4307. 0,
  4308. 0,
  4309. 0,
  4310. 0,
  4311. 0,
  4312. 0,
  4313. 0,
  4314. 0,
  4315. 0,
  4316. 0,
  4317. 0,
  4318. 0,
  4319. 0,
  4320. 0,
  4321. 0,
  4322. 0,
  4323. 0,
  4324. 0,
  4325. 0,
  4326. 0,
  4327. 0,
  4328. 0,
  4329. 0,
  4330. 0,
  4331. 0,
  4332. 0,
  4333. 0,
  4334. 0,
  4335. 0,
  4336. 0,
  4337. 0,
  4338. 0,
  4339. 0,
  4340. 0,
  4341. 6537,
  4342. 6218,
  4343. 6463,
  4344. 6656,
  4345. 4506,
  4346. 4506,
  4347. 4506,
  4348. 4406,
  4349. 4506,
  4350. 4406,
  4351. 3680,
  4352. 4506,
  4353. 4406,
  4354. 4506,
  4355. 4406,
  4356. 4506,
  4357. 4406,
  4358. 4506,
  4359. 4506,
  4360. 4406,
  4361. 4506,
  4362. 4406,
  4363. 4506,
  4364. 4406,
  4365. 4506,
  4366. 4406,
  4367. 4506,
  4368. 4406,
  4369. 4506,
  4370. 4406,
  4371. 4506,
  4372. 4506,
  4373. 971,
  4374. 6811,
  4375. };
  4376. static const Il2CppTokenRangePair s_rgctxIndices[4] =
  4377. {
  4378. { 0x0200009E, { 1, 12 } },
  4379. { 0x020000A0, { 13, 23 } },
  4380. { 0x020000A1, { 36, 3 } },
  4381. { 0x060003A7, { 0, 1 } },
  4382. };
  4383. extern const uint32_t g_rgctx_T_t047CCAB016DADA45BF2B971B3E7C13F5D9EEAD31;
  4384. extern const uint32_t g_rgctx_Span_1_get_Length_m839FCF6D0CEBC13A23B4913B4B3BE1D2EF497540;
  4385. extern const uint32_t g_rgctx_ValueListBuilder_1_Grow_m64DA028E30FA837F9D8AA340D3A9344AA8CAEB90;
  4386. extern const uint32_t g_rgctx_Span_1_Slice_mD195CE80DA136235424FC8460CCC1F444AA8F4C1;
  4387. extern const uint32_t g_rgctx_Span_1_op_Implicit_m3BF14B5756BF4908C2A9A5E34B150191F65411C7;
  4388. extern const uint32_t g_rgctx_Span_1_t44C40F6E179DE0B4F52D7DA2E1884C0EE6DE3FB3;
  4389. extern const uint32_t g_rgctx_ArrayPool_1_get_Shared_mFF75CCDA4CFD179AEFF8DCACCB63C2F7A077C4BE;
  4390. extern const uint32_t g_rgctx_ArrayPool_1_t58F3AC60669102F215C83BF8491B2CFFADF20417;
  4391. extern const uint32_t g_rgctx_ArrayPool_1_t58F3AC60669102F215C83BF8491B2CFFADF20417;
  4392. extern const uint32_t g_rgctx_ArrayPool_1_Return_mFE24FCB54D3C02CA684BD71EA9152AED02E0B440;
  4393. extern const uint32_t g_rgctx_ArrayPool_1_Rent_m5EF306341F1ED22323168043C5B68D869254CC35;
  4394. extern const uint32_t g_rgctx_Span_1_op_Implicit_m951005873D5028B6640FA52DF3A3E88636FD12BD;
  4395. extern const uint32_t g_rgctx_Span_1_TryCopyTo_m42CCEFF44F507F716B350717B93A19A5C5529A78;
  4396. extern const uint32_t g_rgctx_LinkedList_1_AddLast_m92E9EBD6A9A39368C44BA4FA908B1C7A20FBB251;
  4397. extern const uint32_t g_rgctx_LinkedListNode_1_t9E9525296AF0CCB2ED20655A790C2E4CD8622A56;
  4398. extern const uint32_t g_rgctx_LinkedListNode_1__ctor_m20FB5915DCE814C5B5ABFF83B3DB1D13FD2002B2;
  4399. extern const uint32_t g_rgctx_LinkedList_1_InternalInsertNodeToEmptyList_m260D83D9B9C9EA04987CB40AE53195CB13DF8DB9;
  4400. extern const uint32_t g_rgctx_LinkedList_1_InternalInsertNodeBefore_m05B6CF176F09A50E6D93416C84B856EC3E4BAF89;
  4401. extern const uint32_t g_rgctx_LinkedListNode_1_get_Next_mB1A01A4FC5490DBA9D6A301ED56851E198C9B4BE;
  4402. extern const uint32_t g_rgctx_LinkedListNode_1_Invalidate_m92AA7C26274AB3F1B2C90AAD36ED50BA53479F31;
  4403. extern const uint32_t g_rgctx_LinkedList_1_Find_m05423F53A6D38259BBFB8C5A4DC487E2C2182B00;
  4404. extern const uint32_t g_rgctx_LinkedList_1_get_Count_m9716A6902AA14DDA5DD9C943647E5A06A1DBB6E9;
  4405. extern const uint32_t g_rgctx_EqualityComparer_1_get_Default_m831FBA2817035A8EB2087E6CF99799DA6F98DAE3;
  4406. extern const uint32_t g_rgctx_EqualityComparer_1_t392B3893C4126DDA49A6D8C4161C74BC1ECB9674;
  4407. extern const uint32_t g_rgctx_T_tB8CC012B03969318B6B5424CAE7A44EDE0AA6665;
  4408. extern const uint32_t g_rgctx_EqualityComparer_1_t392B3893C4126DDA49A6D8C4161C74BC1ECB9674;
  4409. extern const uint32_t g_rgctx_EqualityComparer_1_Equals_m6B7ECAC5C3E3877985F42ACB5093D9C5A28CCEBF;
  4410. extern const uint32_t g_rgctx_Enumerator_t82440D780591BF278D7D247E299FBB6BA82EFC94;
  4411. extern const uint32_t g_rgctx_Enumerator__ctor_mE01A798BE61864D38C425E7B6BE7935FB7850D7D;
  4412. extern const uint32_t g_rgctx_LinkedList_1_GetEnumerator_m8083B3D2C3FAE458314291AD1BA07D81465BE251;
  4413. extern const uint32_t g_rgctx_LinkedList_1_InternalRemoveNode_mDA777B72523F891BA292ADFA7EEB3ED1C7889689;
  4414. extern const uint32_t g_rgctx_LinkedList_1_ValidateNode_m131AE8D054B03E0FBCE81CEED06D9D1EB793E9C5;
  4415. extern const uint32_t g_rgctx_TU5BU5D_tB7945C667DD94B711E283C8F803CF9F9F3DF9C5E;
  4416. extern const uint32_t g_rgctx_LinkedList_1_CopyTo_m7F21A67D5C258A0B54301C4A6A402621CC82D581;
  4417. extern const uint32_t g_rgctx_TU5BU5D_tB7945C667DD94B711E283C8F803CF9F9F3DF9C5E;
  4418. extern const uint32_t g_rgctx_TU5BU5D_tB7945C667DD94B711E283C8F803CF9F9F3DF9C5E;
  4419. extern const uint32_t g_rgctx_LinkedList_1_t2BE688DBB804B0F90493D85355AF0536C5697D2D;
  4420. extern const uint32_t g_rgctx_LinkedList_1_get_Count_m00D92A248A5513B9C324C4F8A7EEAAE4A1AB9A85;
  4421. extern const uint32_t g_rgctx_T_t40ED5F405E4C66916984D6B18DAD11FB5460B70E;
  4422. static const Il2CppRGCTXDefinition s_rgctxValues[39] =
  4423. {
  4424. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t047CCAB016DADA45BF2B971B3E7C13F5D9EEAD31 },
  4425. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Span_1_get_Length_m839FCF6D0CEBC13A23B4913B4B3BE1D2EF497540 },
  4426. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ValueListBuilder_1_Grow_m64DA028E30FA837F9D8AA340D3A9344AA8CAEB90 },
  4427. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Span_1_Slice_mD195CE80DA136235424FC8460CCC1F444AA8F4C1 },
  4428. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Span_1_op_Implicit_m3BF14B5756BF4908C2A9A5E34B150191F65411C7 },
  4429. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Span_1_t44C40F6E179DE0B4F52D7DA2E1884C0EE6DE3FB3 },
  4430. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ArrayPool_1_get_Shared_mFF75CCDA4CFD179AEFF8DCACCB63C2F7A077C4BE },
  4431. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ArrayPool_1_t58F3AC60669102F215C83BF8491B2CFFADF20417 },
  4432. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_ArrayPool_1_t58F3AC60669102F215C83BF8491B2CFFADF20417 },
  4433. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ArrayPool_1_Return_mFE24FCB54D3C02CA684BD71EA9152AED02E0B440 },
  4434. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_ArrayPool_1_Rent_m5EF306341F1ED22323168043C5B68D869254CC35 },
  4435. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Span_1_op_Implicit_m951005873D5028B6640FA52DF3A3E88636FD12BD },
  4436. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Span_1_TryCopyTo_m42CCEFF44F507F716B350717B93A19A5C5529A78 },
  4437. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_AddLast_m92E9EBD6A9A39368C44BA4FA908B1C7A20FBB251 },
  4438. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_LinkedListNode_1_t9E9525296AF0CCB2ED20655A790C2E4CD8622A56 },
  4439. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedListNode_1__ctor_m20FB5915DCE814C5B5ABFF83B3DB1D13FD2002B2 },
  4440. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_InternalInsertNodeToEmptyList_m260D83D9B9C9EA04987CB40AE53195CB13DF8DB9 },
  4441. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_InternalInsertNodeBefore_m05B6CF176F09A50E6D93416C84B856EC3E4BAF89 },
  4442. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedListNode_1_get_Next_mB1A01A4FC5490DBA9D6A301ED56851E198C9B4BE },
  4443. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedListNode_1_Invalidate_m92AA7C26274AB3F1B2C90AAD36ED50BA53479F31 },
  4444. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_Find_m05423F53A6D38259BBFB8C5A4DC487E2C2182B00 },
  4445. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_get_Count_m9716A6902AA14DDA5DD9C943647E5A06A1DBB6E9 },
  4446. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_EqualityComparer_1_get_Default_m831FBA2817035A8EB2087E6CF99799DA6F98DAE3 },
  4447. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_EqualityComparer_1_t392B3893C4126DDA49A6D8C4161C74BC1ECB9674 },
  4448. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_tB8CC012B03969318B6B5424CAE7A44EDE0AA6665 },
  4449. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_EqualityComparer_1_t392B3893C4126DDA49A6D8C4161C74BC1ECB9674 },
  4450. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_EqualityComparer_1_Equals_m6B7ECAC5C3E3877985F42ACB5093D9C5A28CCEBF },
  4451. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_Enumerator_t82440D780591BF278D7D247E299FBB6BA82EFC94 },
  4452. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_Enumerator__ctor_mE01A798BE61864D38C425E7B6BE7935FB7850D7D },
  4453. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_GetEnumerator_m8083B3D2C3FAE458314291AD1BA07D81465BE251 },
  4454. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_InternalRemoveNode_mDA777B72523F891BA292ADFA7EEB3ED1C7889689 },
  4455. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_ValidateNode_m131AE8D054B03E0FBCE81CEED06D9D1EB793E9C5 },
  4456. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_tB7945C667DD94B711E283C8F803CF9F9F3DF9C5E },
  4457. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_CopyTo_m7F21A67D5C258A0B54301C4A6A402621CC82D581 },
  4458. { (Il2CppRGCTXDataType)1, (const void *)&g_rgctx_TU5BU5D_tB7945C667DD94B711E283C8F803CF9F9F3DF9C5E },
  4459. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_TU5BU5D_tB7945C667DD94B711E283C8F803CF9F9F3DF9C5E },
  4460. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_LinkedList_1_t2BE688DBB804B0F90493D85355AF0536C5697D2D },
  4461. { (Il2CppRGCTXDataType)3, (const void *)&g_rgctx_LinkedList_1_get_Count_m00D92A248A5513B9C324C4F8A7EEAAE4A1AB9A85 },
  4462. { (Il2CppRGCTXDataType)2, (const void *)&g_rgctx_T_t40ED5F405E4C66916984D6B18DAD11FB5460B70E },
  4463. };
  4464. IL2CPP_EXTERN_C const Il2CppCodeGenModule g_System_CodeGenModule;
  4465. const Il2CppCodeGenModule g_System_CodeGenModule =
  4466. {
  4467. "System.dll",
  4468. 1100,
  4469. s_methodPointers,
  4470. 9,
  4471. s_adjustorThunks,
  4472. s_InvokerIndices,
  4473. 0,
  4474. NULL,
  4475. 4,
  4476. s_rgctxIndices,
  4477. 39,
  4478. s_rgctxValues,
  4479. NULL,
  4480. NULL, // module initializer,
  4481. NULL,
  4482. NULL,
  4483. NULL,
  4484. };