profile.json 854 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951
  1. {
  2. "instructions_readme": "1) Open Chrome, 2) go to chrome://tracing, 3) click Load, 4) navigate to this file.",
  3. "traceEvents":[
  4. { "pid": 1, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  5. { "pid": 1, "tid": 1, "ts": 755.5000185966492, "dur": 53517789.0625, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 53517.7890625, "detail": "" } },
  6. { "pid": 1, "tid": 1, "ts": 96906.80694580078, "dur": 3743083.251953125, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 3743.083251953125, "detail": "" } },
  7. { "pid": 1, "tid": 1, "ts": 174998.291015625, "dur": 274480.40771484375, "ph": "X", "name": "InitializePhase", "args": { "durationMS": 274.48040771484375, "detail": "" } },
  8. { "pid": 1, "tid": 1, "ts": 174998.6114501953, "dur": 273352.294921875, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 273.352294921875, "detail": "" } },
  9. { "pid": 1, "tid": 1, "ts": 449883.1787109375, "dur": 323635.7116699219, "ph": "X", "name": "SetupPhase", "args": { "durationMS": 323.6357116699219, "detail": "" } },
  10. { "pid": 1, "tid": 1, "ts": 450975.89111328125, "dur": 70906.70013427734, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 70.90670013427734, "detail": "" } },
  11. { "pid": 1, "tid": 1, "ts": 523283.0810546875, "dur": 69483.4976196289, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 69.4834976196289, "detail": "" } },
  12. { "pid": 1, "tid": 1, "ts": 523283.50830078125, "dur": 31562.5, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 31.5625, "detail": "" } },
  13. { "pid": 1, "tid": 1, "ts": 524290.5883789062, "dur": 29357.2998046875, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 29.3572998046875, "detail": "mscorlib" } },
  14. { "pid": 1, "tid": 1, "ts": 554846.3134765625, "dur": 37919.99816894531, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 37.91999816894531, "detail": "" } },
  15. { "pid": 1, "tid": 1, "ts": 555387.5122070312, "dur": 8166.299819946289, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 8.166299819946289, "detail": "mscorlib" } },
  16. { "pid": 1, "tid": 1, "ts": 563830.5053710938, "dur": 596.0000157356262, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.5960000157356262, "detail": "UnityEngine.CoreModule" } },
  17. { "pid": 1, "tid": 1, "ts": 564579.4067382812, "dur": 27650.300979614258, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 27.650300979614258, "detail": "UnityEngine.PhysicsModule" } },
  18. { "pid": 1, "tid": 1, "ts": 592303.8330078125, "dur": 419.4999933242798, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.4194999933242798, "detail": "UnityEngine.UI" } },
  19. { "pid": 1, "tid": 1, "ts": 592929.8706054688, "dur": 4609.899997711182, "ph": "X", "name": "WriteResources", "args": { "durationMS": 4.609899997711182, "detail": "" } },
  20. { "pid": 1, "tid": 1, "ts": 597755.7983398438, "dur": 109679.60357666016, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 109.67960357666016, "detail": "" } },
  21. { "pid": 1, "tid": 1, "ts": 718626.0986328125, "dur": 54116.40167236328, "ph": "X", "name": "Add Missing rets", "args": { "durationMS": 54.11640167236328, "detail": "" } },
  22. { "pid": 1, "tid": 1, "ts": 738654.9682617188, "dur": 34042.598724365234, "ph": "X", "name": "mscorlib", "args": { "durationMS": 34.042598724365234, "detail": "" } },
  23. { "pid": 1, "tid": 1, "ts": 772742.7368164062, "dur": 775.600016117096, "ph": "X", "name": "Build Results", "args": { "durationMS": 0.775600016117096, "detail": "" } },
  24. { "pid": 1, "tid": 1, "ts": 774945.6787109375, "dur": 540343.3837890625, "ph": "X", "name": "PrimaryCollectionPhase", "args": { "durationMS": 540.3433837890625, "detail": "" } },
  25. { "pid": 1, "tid": 1, "ts": 776001.8920898438, "dur": 20434.099197387695, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 20.434099197387695, "detail": "" } },
  26. { "pid": 1, "tid": 1, "ts": 786464.2944335938, "dur": 6291.399955749512, "ph": "X", "name": "ForkedContextScope.Setup", "args": { "durationMS": 6.291399955749512, "detail": "" } },
  27. { "pid": 1, "tid": 1, "ts": 796436.4013671875, "dur": 36793.697357177734, "ph": "X", "name": "Scheduling", "args": { "durationMS": 36.793697357177734, "detail": "" } },
  28. { "pid": 1, "tid": 1, "ts": 834027.8930664062, "dur": 454571.3195800781, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 454.5713195800781, "detail": "" } },
  29. { "pid": 1, "tid": 1, "ts": 1290792.96875, "dur": 21737.2989654541, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 21.7372989654541, "detail": "" } },
  30. { "pid": 1, "tid": 1, "ts": 1301753.662109375, "dur": 401.8999934196472, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.4018999934196472, "detail": "Unity.IL2CPP.Contexts.Components.MethodCollector" } },
  31. { "pid": 1, "tid": 1, "ts": 1302314.453125, "dur": 10002.300262451172, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 10.002300262451172, "detail": "Unity.IL2CPP.Naming.NamingComponent" } },
  32. { "pid": 1, "tid": 1, "ts": 1303630.9814453125, "dur": 580.9000134468079, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5809000134468079, "detail": "_typeNameOnlyCache" } },
  33. { "pid": 1, "tid": 1, "ts": 1304212.0361328125, "dur": 2854.79998588562, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.85479998588562, "detail": "_methodNameOnlyCache" } },
  34. { "pid": 1, "tid": 1, "ts": 1307069.2138671875, "dur": 836.1999988555908, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.8361999988555908, "detail": "_cleanNamesCache" } },
  35. { "pid": 1, "tid": 1, "ts": 1309231.3232421875, "dur": 1298.0999946594238, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.2980999946594238, "detail": "_methodNameOnlyCache" } },
  36. { "pid": 1, "tid": 1, "ts": 1310529.9072265625, "dur": 1462.2999429702759, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.4622999429702759, "detail": "_cleanNamesCache" } },
  37. { "pid": 1, "tid": 1, "ts": 1312561.767578125, "dur": 2726.799964904785, "ph": "X", "name": "Build Results", "args": { "durationMS": 2.726799964904785, "detail": "" } },
  38. { "pid": 1, "tid": 1, "ts": 1317227.294921875, "dur": 1919529.1748046875, "ph": "X", "name": "PrimaryWritePhase", "args": { "durationMS": 1919.5291748046875, "detail": "" } },
  39. { "pid": 1, "tid": 1, "ts": 1317512.3291015625, "dur": 2147.700071334839, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 2.147700071334839, "detail": "" } },
  40. { "pid": 1, "tid": 1, "ts": 1319660.2783203125, "dur": 113037.39929199219, "ph": "X", "name": "Scheduling", "args": { "durationMS": 113.03739929199219, "detail": "" } },
  41. { "pid": 1, "tid": 1, "ts": 1432708.0078125, "dur": 1710419.189453125, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 1710.419189453125, "detail": "" } },
  42. { "pid": 1, "tid": 1, "ts": 3143345.947265625, "dur": 53029.89959716797, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 53.02989959716797, "detail": "" } },
  43. { "pid": 1, "tid": 1, "ts": 3143760.986328125, "dur": 12929.100036621094, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 12.929100036621094, "detail": "Unity.IL2CPP.Contexts.Components.MetadataUsageCollectorComponent" } },
  44. { "pid": 1, "tid": 1, "ts": 3196396.240234375, "dur": 40359.29870605469, "ph": "X", "name": "Build Results", "args": { "durationMS": 40.35929870605469, "detail": "" } },
  45. { "pid": 1, "tid": 1, "ts": 3238014.404296875, "dur": 230503.7078857422, "ph": "X", "name": "SecondaryCollectionPhase", "args": { "durationMS": 230.5037078857422, "detail": "" } },
  46. { "pid": 1, "tid": 1, "ts": 3238014.892578125, "dur": 221921.40197753906, "ph": "X", "name": "Scheduling", "args": { "durationMS": 221.92140197753906, "detail": "" } },
  47. { "pid": 1, "tid": 1, "ts": 3238317.3828125, "dur": 1941.2000179290771, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 1.9412000179290771, "detail": "" } },
  48. { "pid": 1, "tid": 1, "ts": 3256137.451171875, "dur": 202137.4969482422, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 202.1374969482422, "detail": "" } },
  49. { "pid": 1, "tid": 1, "ts": 3458455.56640625, "dur": 1468.0999517440796, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 1.4680999517440796, "detail": "" } },
  50. { "pid": 1, "tid": 1, "ts": 3459936.279296875, "dur": 8580.900192260742, "ph": "X", "name": "Build Results", "args": { "durationMS": 8.580900192260742, "detail": "" } },
  51. { "pid": 1, "tid": 1, "ts": 3468746.337890625, "dur": 225710.205078125, "ph": "X", "name": "SecondaryWritePhase", "args": { "durationMS": 225.710205078125, "detail": "" } },
  52. { "pid": 1, "tid": 1, "ts": 3469213.37890625, "dur": 2057.8999519348145, "ph": "X", "name": "Part1", "args": { "durationMS": 2.0578999519348145, "detail": "" } },
  53. { "pid": 1, "tid": 1, "ts": 3469213.37890625, "dur": 431.60000443458557, "ph": "X", "name": "Scheduling", "args": { "durationMS": 0.43160000443458557, "detail": "" } },
  54. { "pid": 1, "tid": 1, "ts": 3469645.01953125, "dur": 1625.3000497817993, "ph": "X", "name": "Build Results", "args": { "durationMS": 1.6253000497817993, "detail": "" } },
  55. { "pid": 1, "tid": 1, "ts": 3471662.353515625, "dur": 11062.899589538574, "ph": "X", "name": "Part3", "args": { "durationMS": 11.062899589538574, "detail": "" } },
  56. { "pid": 1, "tid": 1, "ts": 3471662.59765625, "dur": 11060.999870300293, "ph": "X", "name": "Scheduling", "args": { "durationMS": 11.060999870300293, "detail": "" } },
  57. { "pid": 1, "tid": 1, "ts": 3471834.716796875, "dur": 10887.299537658691, "ph": "X", "name": "WriteUnresolvedStubs", "args": { "durationMS": 10.887299537658691, "detail": "" } },
  58. { "pid": 1, "tid": 1, "ts": 3472823.974609375, "dur": 9896.80004119873, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 9.89680004119873, "detail": "" } },
  59. { "pid": 1, "tid": 1, "ts": 3483646.240234375, "dur": 210809.60083007812, "ph": "X", "name": "Part4", "args": { "durationMS": 210.80960083007812, "detail": "" } },
  60. { "pid": 1, "tid": 1, "ts": 3483646.240234375, "dur": 210548.9044189453, "ph": "X", "name": "Scheduling", "args": { "durationMS": 210.5489044189453, "detail": "" } },
  61. { "pid": 1, "tid": 1, "ts": 3483913.330078125, "dur": 1744.6999549865723, "ph": "X", "name": "Create Scheduler", "args": { "durationMS": 1.7446999549865723, "detail": "" } },
  62. { "pid": 1, "tid": 1, "ts": 3500772.94921875, "dur": 192504.28771972656, "ph": "X", "name": "PhaseWorkScheduler.WaitForEmptyQueue", "args": { "durationMS": 192.50428771972656, "detail": "" } },
  63. { "pid": 1, "tid": 1, "ts": 3693481.689453125, "dur": 703.000009059906, "ph": "X", "name": "ForkedContextScope.MergeBack", "args": { "durationMS": 0.703000009059906, "detail": "" } },
  64. { "pid": 1, "tid": 1, "ts": 3694619.384765625, "dur": 103474.50256347656, "ph": "X", "name": "MetadataWritePhase", "args": { "durationMS": 103.47450256347656, "detail": "" } },
  65. { "pid": 1, "tid": 1, "ts": 3700496.09375, "dur": 29449.901580810547, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 29.449901580810547, "detail": "" } },
  66. { "pid": 1, "tid": 1, "ts": 3730184.5703125, "dur": 795.0000166893005, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 0.7950000166893005, "detail": "" } },
  67. { "pid": 1, "tid": 1, "ts": 3730981.689453125, "dur": 1805.0999641418457, "ph": "X", "name": "Events", "args": { "durationMS": 1.8050999641418457, "detail": "" } },
  68. { "pid": 1, "tid": 1, "ts": 3732787.109375, "dur": 3082.0999145507812, "ph": "X", "name": "Properties", "args": { "durationMS": 3.0820999145507812, "detail": "" } },
  69. { "pid": 1, "tid": 1, "ts": 3735869.873046875, "dur": 15331.900596618652, "ph": "X", "name": "Methods", "args": { "durationMS": 15.331900596618652, "detail": "" } },
  70. { "pid": 1, "tid": 1, "ts": 3751203.125, "dur": 748.0999827384949, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 0.7480999827384949, "detail": "" } },
  71. { "pid": 1, "tid": 1, "ts": 3751951.66015625, "dur": 1847.9000329971313, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 1.8479000329971313, "detail": "" } },
  72. { "pid": 1, "tid": 1, "ts": 3754129.39453125, "dur": 598.1000065803528, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 0.5981000065803528, "detail": "" } },
  73. { "pid": 1, "tid": 1, "ts": 3754727.783203125, "dur": 6403.10001373291, "ph": "X", "name": "Parameters", "args": { "durationMS": 6.40310001373291, "detail": "" } },
  74. { "pid": 1, "tid": 1, "ts": 3761131.8359375, "dur": 3666.100025177002, "ph": "X", "name": "Fields", "args": { "durationMS": 3.666100025177002, "detail": "" } },
  75. { "pid": 1, "tid": 1, "ts": 3764799.072265625, "dur": 1103.0999422073364, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 1.1030999422073364, "detail": "" } },
  76. { "pid": 1, "tid": 1, "ts": 3765902.83203125, "dur": 399.1999924182892, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 0.3991999924182892, "detail": "" } },
  77. { "pid": 1, "tid": 1, "ts": 3766302.24609375, "dur": 1031.2000513076782, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 1.0312000513076782, "detail": "" } },
  78. { "pid": 1, "tid": 1, "ts": 3767333.984375, "dur": 345.8000123500824, "ph": "X", "name": "Nested Types", "args": { "durationMS": 0.3458000123500824, "detail": "" } },
  79. { "pid": 1, "tid": 1, "ts": 3767680.17578125, "dur": 489.80000615119934, "ph": "X", "name": "Interfaces", "args": { "durationMS": 0.48980000615119934, "detail": "" } },
  80. { "pid": 1, "tid": 1, "ts": 3768170.41015625, "dur": 3405.6999683380127, "ph": "X", "name": "VTables", "args": { "durationMS": 3.4056999683380127, "detail": "" } },
  81. { "pid": 1, "tid": 1, "ts": 3771576.66015625, "dur": 1463.9999866485596, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 1.4639999866485596, "detail": "" } },
  82. { "pid": 1, "tid": 1, "ts": 3773041.50390625, "dur": 13408.499717712402, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 13.408499717712402, "detail": "" } },
  83. { "pid": 1, "tid": 1, "ts": 3786709.47265625, "dur": 2893.8000202178955, "ph": "X", "name": "Images", "args": { "durationMS": 2.8938000202178955, "detail": "" } },
  84. { "pid": 1, "tid": 1, "ts": 3789603.271484375, "dur": 1276.2000560760498, "ph": "X", "name": "Assemblies", "args": { "durationMS": 1.2762000560760498, "detail": "" } },
  85. { "pid": 1, "tid": 1, "ts": 3791081.54296875, "dur": 333.79998803138733, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.33379998803138733, "detail": "" } },
  86. { "pid": 1, "tid": 1, "ts": 3791415.771484375, "dur": 1416.3000583648682, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 1.4163000583648682, "detail": "" } },
  87. { "pid": 1, "tid": 1, "ts": 3792832.51953125, "dur": 1945.5000162124634, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 1.9455000162124634, "detail": "" } },
  88. { "pid": 1, "tid": 1, "ts": 3794778.564453125, "dur": 893.999993801117, "ph": "X", "name": "Unresolved Virtual Call Parameter Types", "args": { "durationMS": 0.8939999938011169, "detail": "" } },
  89. { "pid": 1, "tid": 1, "ts": 3796478.271484375, "dur": 995.7000017166138, "ph": "X", "name": "Exported Types", "args": { "durationMS": 0.9957000017166138, "detail": "" } },
  90. { "pid": 1, "tid": 1, "ts": 3798633.30078125, "dur": 40739.0022277832, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 40.7390022277832, "detail": "" } },
  91. { "pid": 1, "tid": 1, "ts": 3892792.236328125, "dur": 49624546.875, "ph": "X", "name": "Build", "args": { "durationMS": 49624.546875, "detail": "" } },
  92. { "pid": 1, "tid": 1, "ts": 3915465.8203125, "dur": 49601171.875, "ph": "X", "name": "BuildBinary", "args": { "durationMS": 49601.171875, "detail": "" } },
  93. { "pid": 1, "tid": 1, "ts": 3915669.189453125, "dur": 239282.1044921875, "ph": "X", "name": "FindFilesToCompile", "args": { "durationMS": 239.2821044921875, "detail": "" } },
  94. { "pid": 1, "tid": 1, "ts": 4154951.66015625, "dur": 919732.421875, "ph": "X", "name": "Calculate header hashes", "args": { "durationMS": 919.732421875, "detail": "" } },
  95. { "pid": 1, "tid": 1, "ts": 5074684.5703125, "dur": 2515331.787109375, "ph": "X", "name": "Calculate lumped hashes", "args": { "durationMS": 2515.331787109375, "detail": "" } },
  96. { "pid": 1, "tid": 1, "ts": 7590094.23828125, "dur": 12216348.6328125, "ph": "X", "name": "BuildAllCppFiles", "args": { "durationMS": 12216.3486328125, "detail": "" } },
  97. { "pid": 1, "tid": 1, "ts": 7594286.1328125, "dur": 12212157.2265625, "ph": "X", "name": "Compile", "args": { "durationMS": 12212.1572265625, "detail": "" } },
  98. { "pid": 1, "tid": 1, "ts": 19806451.171875, "dur": 583.299994468689, "ph": "X", "name": "OnBeforeLink Build", "args": { "durationMS": 0.583299994468689, "detail": "" } },
  99. { "pid": 1, "tid": 1, "ts": 19807035.15625, "dur": 33430492.1875, "ph": "X", "name": "Postprocess Object Files", "args": { "durationMS": 33430.4921875, "detail": "" } },
  100. { "pid": 1, "tid": 1, "ts": 19808927.734375, "dur": 33428597.65625, "ph": "X", "name": "Link", "args": { "durationMS": 33428.59765625, "detail": "build.bc" } },
  101. { "pid": 1, "tid": 1, "ts": 19822722.65625, "dur": 619281.9213867188, "ph": "X", "name": "hash linker invocation", "args": { "durationMS": 619.2819213867188, "detail": "" } },
  102. { "pid": 1, "tid": 1, "ts": 20488246.09375, "dur": 32698570.3125, "ph": "X", "name": "ActualLinkerInvocation", "args": { "durationMS": 32698.5703125, "detail": "build.bc" } },
  103. { "pid": 1, "tid": 1, "ts": 53237527.34375, "dur": 191614.39514160156, "ph": "X", "name": "ProgramDescription Finalize Build", "args": { "durationMS": 191.61439514160156, "detail": "" } },
  104. { "pid": 1, "tid": 1, "ts": 53429140.625, "dur": 87493.90411376953, "ph": "X", "name": "Clean IL2CPP Cache", "args": { "durationMS": 87.49390411376953, "detail": "" } },
  105. { "pid": 1, "tid": 4, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  106. { "pid": 1, "tid": 4, "ts": 738698.0590820312, "dur": 14203.900337219238, "ph": "X", "name": "System.Xml", "args": { "durationMS": 14.203900337219238, "detail": "" } },
  107. { "pid": 1, "tid": 4, "ts": 1301794.921875, "dur": 336.1999988555908, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.3361999988555908, "detail": "Unity.IL2CPP.Symbols.SymbolsCollector" } },
  108. { "pid": 1, "tid": 4, "ts": 3143820.068359375, "dur": 3547.8999614715576, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.5478999614715576, "detail": "Unity.IL2CPP.Tiny.TinyTypeCollectorComponent" } },
  109. { "pid": 1, "tid": 5, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  110. { "pid": 1, "tid": 5, "ts": 738729.8583984375, "dur": 12394.800186157227, "ph": "X", "name": "UnityEngine.SharedInternalsModule", "args": { "durationMS": 12.394800186157227, "detail": "" } },
  111. { "pid": 1, "tid": 5, "ts": 751126.8920898438, "dur": 4206.399917602539, "ph": "X", "name": "UnityEngine.CoreModule", "args": { "durationMS": 4.206399917602539, "detail": "" } },
  112. { "pid": 1, "tid": 5, "ts": 1301592.529296875, "dur": 531.499981880188, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.531499981880188, "detail": "Unity.IL2CPP.Contexts.Components.MetadataUsageCollectorComponent" } },
  113. { "pid": 1, "tid": 5, "ts": 1302128.7841796875, "dur": 1785.5000495910645, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.7855000495910645, "detail": "Unity.IL2CPP.Metadata.VTableBuilder" } },
  114. { "pid": 1, "tid": 5, "ts": 3143778.80859375, "dur": 692.4999952316284, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6924999952316284, "detail": "Unity.IL2CPP.Symbols.SymbolsCollector" } },
  115. { "pid": 1, "tid": 5, "ts": 3144477.783203125, "dur": 9560.500144958496, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 9.560500144958496, "detail": "Unity.IL2CPP.Metadata.VTableBuilder" } },
  116. { "pid": 1, "tid": 11, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  117. { "pid": 1, "tid": 11, "ts": 738737.79296875, "dur": 10541.600227355957, "ph": "X", "name": "UnityEngine.AudioModule", "args": { "durationMS": 10.541600227355957, "detail": "" } },
  118. { "pid": 1, "tid": 11, "ts": 749281.1889648438, "dur": 8777.799606323242, "ph": "X", "name": "UnityEngine.UI", "args": { "durationMS": 8.777799606323242, "detail": "" } },
  119. { "pid": 1, "tid": 11, "ts": 1301657.958984375, "dur": 2030.900001525879, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.030900001525879, "detail": "Unity.IL2CPP.Metadata.GenericMethodCollectorComponent" } },
  120. { "pid": 1, "tid": 11, "ts": 3143784.423828125, "dur": 752.2000074386597, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.7522000074386597, "detail": "Unity.IL2CPP.Contexts.Components.VirtualCallCollector" } },
  121. { "pid": 1, "tid": 11, "ts": 3144542.48046875, "dur": 4205.900192260742, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 4.205900192260742, "detail": "Unity.IL2CPP.Contexts.Components.CppDeclarationsComponent" } },
  122. { "pid": 1, "tid": 6, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  123. { "pid": 1, "tid": 6, "ts": 738765.869140625, "dur": 12350.700378417969, "ph": "X", "name": "UnityEngine.InputLegacyModule", "args": { "durationMS": 12.350700378417969, "detail": "" } },
  124. { "pid": 1, "tid": 6, "ts": 751135.498046875, "dur": 1787.999987602234, "ph": "X", "name": "UnityEngine.TextRenderingModule", "args": { "durationMS": 1.7879999876022339, "detail": "" } },
  125. { "pid": 1, "tid": 6, "ts": 3143958.49609375, "dur": 1492.799997329712, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.492799997329712, "detail": "Unity.IL2CPP.Contexts.Components.StatsComponent" } },
  126. { "pid": 1, "tid": 6, "ts": 3145461.9140625, "dur": 686.6999864578247, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6866999864578247, "detail": "Unity.IL2CPP.Contexts.Components.SourceAnnotationWriterComponent" } },
  127. { "pid": 1, "tid": 8, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  128. { "pid": 1, "tid": 8, "ts": 738772.4609375, "dur": 11939.70012664795, "ph": "X", "name": "UnityEngine.AnimationModule", "args": { "durationMS": 11.93970012664795, "detail": "" } },
  129. { "pid": 1, "tid": 8, "ts": 750713.5009765625, "dur": 3112.600088119507, "ph": "X", "name": "UnityEngine.IMGUIModule", "args": { "durationMS": 3.112600088119507, "detail": "" } },
  130. { "pid": 1, "tid": 8, "ts": 1301592.529296875, "dur": 1422.6000308990479, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.4226000308990479, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
  131. { "pid": 1, "tid": 8, "ts": 3143803.7109375, "dur": 4261.40022277832, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 4.26140022277832, "detail": "Unity.IL2CPP.Metadata.GenericMethodCollectorComponent" } },
  132. { "pid": 1, "tid": 7, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  133. { "pid": 1, "tid": 7, "ts": 738773.6206054688, "dur": 11854.299545288086, "ph": "X", "name": "UnityEngine.UnityWebRequestModule", "args": { "durationMS": 11.854299545288086, "detail": "" } },
  134. { "pid": 1, "tid": 7, "ts": 750631.7749023438, "dur": 868.7999844551086, "ph": "X", "name": "Assembly-CSharp", "args": { "durationMS": 0.8687999844551086, "detail": "" } },
  135. { "pid": 1, "tid": 7, "ts": 1301722.65625, "dur": 412.2999906539917, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.4122999906539917, "detail": "Unity.IL2CPP.Tiny.TinyTypeCollectorComponent" } },
  136. { "pid": 1, "tid": 7, "ts": 1302145.751953125, "dur": 857.5999736785889, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.8575999736785889, "detail": "Unity.IL2CPP.Contexts.Components.WindowsRuntimeTypeWithNameComponent" } },
  137. { "pid": 1, "tid": 7, "ts": 3143790.283203125, "dur": 3978.600025177002, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.978600025177002, "detail": "Unity.IL2CPP.Contexts.Components.SharedMethodCollector" } },
  138. { "pid": 1, "tid": 7, "ts": 3458632.8125, "dur": 1279.3999910354614, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.2793999910354614, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
  139. { "pid": 1, "tid": 10, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  140. { "pid": 1, "tid": 10, "ts": 738775.0854492188, "dur": 3741.100072860718, "ph": "X", "name": "UnityEngine.SpriteShapeModule", "args": { "durationMS": 3.7411000728607178, "detail": "" } },
  141. { "pid": 1, "tid": 10, "ts": 742541.8701171875, "dur": 8127.099990844727, "ph": "X", "name": "UnityEngine.UIModule", "args": { "durationMS": 8.127099990844727, "detail": "" } },
  142. { "pid": 1, "tid": 10, "ts": 750670.8984375, "dur": 5614.799976348877, "ph": "X", "name": "System", "args": { "durationMS": 5.614799976348877, "detail": "" } },
  143. { "pid": 1, "tid": 10, "ts": 756287.4755859375, "dur": 548.5000014305115, "ph": "X", "name": "System.Core", "args": { "durationMS": 0.5485000014305115, "detail": "" } },
  144. { "pid": 1, "tid": 10, "ts": 1301599.2431640625, "dur": 550.3000020980835, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.5503000020980835, "detail": "Unity.IL2CPP.Contexts.Components.SharedMethodCollector" } },
  145. { "pid": 1, "tid": 10, "ts": 1302321.8994140625, "dur": 659.7999930381775, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.6597999930381775, "detail": "Unity.IL2CPP.Contexts.Components.MessageLoggerComponent" } },
  146. { "pid": 1, "tid": 10, "ts": 3143794.921875, "dur": 1112.5999689102173, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 1.1125999689102173, "detail": "Unity.IL2CPP.Contexts.Components.TypeCollector" } },
  147. { "pid": 1, "tid": 10, "ts": 3145078.857421875, "dur": 51223.899841308594, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 51.223899841308594, "detail": "Unity.IL2CPP.Naming.NamingComponent" } },
  148. { "pid": 1, "tid": 10, "ts": 3145079.1015625, "dur": 821.5000033378601, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.8215000033378601, "detail": "_typeNameOnlyCache" } },
  149. { "pid": 1, "tid": 10, "ts": 3145901.123046875, "dur": 3374.7000694274902, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.3747000694274902, "detail": "_methodNameOnlyCache" } },
  150. { "pid": 1, "tid": 10, "ts": 3149337.890625, "dur": 2035.5000495910645, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.0355000495910645, "detail": "_cleanNamesCache" } },
  151. { "pid": 1, "tid": 10, "ts": 3151375.48828125, "dur": 563.7000203132629, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5637000203132629, "detail": "_typeNameOnlyCache" } },
  152. { "pid": 1, "tid": 10, "ts": 3151939.697265625, "dur": 2647.0000743865967, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.6470000743865967, "detail": "_methodNameOnlyCache" } },
  153. { "pid": 1, "tid": 10, "ts": 3154671.630859375, "dur": 1982.800006866455, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.982800006866455, "detail": "_cleanNamesCache" } },
  154. { "pid": 1, "tid": 10, "ts": 3156655.517578125, "dur": 857.1000099182129, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.8571000099182129, "detail": "_typeNameOnlyCache" } },
  155. { "pid": 1, "tid": 10, "ts": 3157513.18359375, "dur": 3035.599946975708, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.035599946975708, "detail": "_methodNameOnlyCache" } },
  156. { "pid": 1, "tid": 10, "ts": 3160603.759765625, "dur": 2054.1999340057373, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.0541999340057373, "detail": "_cleanNamesCache" } },
  157. { "pid": 1, "tid": 10, "ts": 3162660.15625, "dur": 628.4000277519226, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.6284000277519226, "detail": "_typeNameOnlyCache" } },
  158. { "pid": 1, "tid": 10, "ts": 3163288.57421875, "dur": 2792.9000854492188, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.7929000854492188, "detail": "_methodNameOnlyCache" } },
  159. { "pid": 1, "tid": 10, "ts": 3166146.240234375, "dur": 1717.2000408172607, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.7172000408172607, "detail": "_cleanNamesCache" } },
  160. { "pid": 1, "tid": 10, "ts": 3167864.74609375, "dur": 550.1000285148621, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5501000285148621, "detail": "_typeNameOnlyCache" } },
  161. { "pid": 1, "tid": 10, "ts": 3168415.0390625, "dur": 2635.6000900268555, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.6356000900268555, "detail": "_methodNameOnlyCache" } },
  162. { "pid": 1, "tid": 10, "ts": 3171168.9453125, "dur": 2450.7999420166016, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.4507999420166016, "detail": "_cleanNamesCache" } },
  163. { "pid": 1, "tid": 10, "ts": 3173622.314453125, "dur": 741.9999837875366, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.7419999837875366, "detail": "_typeNameOnlyCache" } },
  164. { "pid": 1, "tid": 10, "ts": 3174364.74609375, "dur": 3302.2000789642334, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 3.3022000789642334, "detail": "_methodNameOnlyCache" } },
  165. { "pid": 1, "tid": 10, "ts": 3177761.23046875, "dur": 1967.3999547958374, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.9673999547958374, "detail": "_cleanNamesCache" } },
  166. { "pid": 1, "tid": 10, "ts": 3179729.98046875, "dur": 623.8999962806702, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.6238999962806702, "detail": "_typeNameOnlyCache" } },
  167. { "pid": 1, "tid": 10, "ts": 3180354.248046875, "dur": 2831.399917602539, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.831399917602539, "detail": "_methodNameOnlyCache" } },
  168. { "pid": 1, "tid": 10, "ts": 3183270.99609375, "dur": 1825.8999586105347, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 1.8258999586105347, "detail": "_cleanNamesCache" } },
  169. { "pid": 1, "tid": 10, "ts": 3185099.12109375, "dur": 597.9999899864197, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5979999899864197, "detail": "_typeNameOnlyCache" } },
  170. { "pid": 1, "tid": 10, "ts": 3185697.265625, "dur": 2816.200017929077, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.816200017929077, "detail": "_methodNameOnlyCache" } },
  171. { "pid": 1, "tid": 10, "ts": 3188592.7734375, "dur": 2105.600118637085, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.105600118637085, "detail": "_cleanNamesCache" } },
  172. { "pid": 1, "tid": 10, "ts": 3190699.70703125, "dur": 559.7000122070312, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 0.5597000122070312, "detail": "_typeNameOnlyCache" } },
  173. { "pid": 1, "tid": 10, "ts": 3191259.521484375, "dur": 2743.5998916625977, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.7435998916625977, "detail": "_methodNameOnlyCache" } },
  174. { "pid": 1, "tid": 10, "ts": 3194004.39453125, "dur": 2297.600030899048, "ph": "X", "name": "Merging Cache", "args": { "durationMS": 2.297600030899048, "detail": "_cleanNamesCache" } },
  175. { "pid": 1, "tid": 9, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  176. { "pid": 1, "tid": 9, "ts": 738804.3823242188, "dur": 10203.399658203125, "ph": "X", "name": "System.Configuration", "args": { "durationMS": 10.203399658203125, "detail": "" } },
  177. { "pid": 1, "tid": 9, "ts": 749013.7939453125, "dur": 3910.0000858306885, "ph": "X", "name": "Mono.Security", "args": { "durationMS": 3.9100000858306885, "detail": "" } },
  178. { "pid": 1, "tid": 9, "ts": 1301690.5517578125, "dur": 412.6000106334686, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.41260001063346863, "detail": "Unity.IL2CPP.Tiny.TinyStringCollectorComponent" } },
  179. { "pid": 1, "tid": 9, "ts": 1302124.755859375, "dur": 2453.9999961853027, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 2.4539999961853027, "detail": "Unity.IL2CPP.Contexts.Components.StatsComponent" } },
  180. { "pid": 1, "tid": 9, "ts": 3143769.775390625, "dur": 3559.2000484466553, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 3.5592000484466553, "detail": "Unity.IL2CPP.Contexts.Components.MethodCollector" } },
  181. { "pid": 1, "tid": 9, "ts": 3693657.2265625, "dur": 518.4999704360962, "ph": "X", "name": "ForkedContextScope.MergingComponent", "args": { "durationMS": 0.5184999704360962, "detail": "Unity.IL2CPP.Contexts.Components.SourceAnnotationWriterComponent" } },
  182. { "pid": 1, "tid": 14, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  183. { "pid": 1, "tid": 14, "ts": 797125.3051757812, "dur": 28908.601760864258, "ph": "X", "name": "Idle", "args": { "durationMS": 28.908601760864258, "detail": "" } },
  184. { "pid": 1, "tid": 14, "ts": 826183.0444335938, "dur": 433.2999885082245, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4332999885082245, "detail": "" } },
  185. { "pid": 1, "tid": 14, "ts": 826619.8120117188, "dur": 2514.1000747680664, "ph": "X", "name": "Idle", "args": { "durationMS": 2.5141000747680664, "detail": "" } },
  186. { "pid": 1, "tid": 14, "ts": 830978.0883789062, "dur": 16963.199615478516, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 16.963199615478516, "detail": "System" } },
  187. { "pid": 1, "tid": 14, "ts": 847954.2846679688, "dur": 19333.999633789062, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 19.333999633789062, "detail": "System.Configuration" } },
  188. { "pid": 1, "tid": 14, "ts": 867336.6088867188, "dur": 1463.1999731063843, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.4631999731063843, "detail": "UnityEngine.SharedInternalsModule" } },
  189. { "pid": 1, "tid": 14, "ts": 868802.3681640625, "dur": 2026.7000198364258, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.026700019836426, "detail": "UnityEngine.PhysicsModule" } },
  190. { "pid": 1, "tid": 14, "ts": 870831.6040039062, "dur": 26993.70002746582, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 26.99370002746582, "detail": "UnityEngine.UI" } },
  191. { "pid": 1, "tid": 14, "ts": 897830.078125, "dur": 2484.4000339508057, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 2.4844000339508057, "detail": "System.Xml" } },
  192. { "pid": 1, "tid": 14, "ts": 900324.8901367188, "dur": 351.20001435279846, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.35120001435279846, "detail": "UnityEngine.SharedInternalsModule" } },
  193. { "pid": 1, "tid": 14, "ts": 900970.703125, "dur": 451.200008392334, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.451200008392334, "detail": "UnityEngine.TextRenderingModule" } },
  194. { "pid": 1, "tid": 14, "ts": 901422.7905273438, "dur": 486.0000014305115, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.4860000014305115, "detail": "UnityEngine.AnimationModule" } },
  195. { "pid": 1, "tid": 14, "ts": 901910.0952148438, "dur": 777.899980545044, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.777899980545044, "detail": "UnityEngine.IMGUIModule" } },
  196. { "pid": 1, "tid": 14, "ts": 903391.7236328125, "dur": 7575.399875640869, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 7.575399875640869, "detail": "UnityEngine.UI" } },
  197. { "pid": 1, "tid": 14, "ts": 910973.7548828125, "dur": 378023.4069824219, "ph": "X", "name": "Idle", "args": { "durationMS": 378.0234069824219, "detail": "" } },
  198. { "pid": 1, "tid": 13, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  199. { "pid": 1, "tid": 13, "ts": 797129.2114257812, "dur": 28904.701232910156, "ph": "X", "name": "Idle", "args": { "durationMS": 28.904701232910156, "detail": "" } },
  200. { "pid": 1, "tid": 13, "ts": 826215.7592773438, "dur": 382.2999894618988, "ph": "X", "name": "Idle", "args": { "durationMS": 0.3822999894618988, "detail": "" } },
  201. { "pid": 1, "tid": 13, "ts": 826604.3090820312, "dur": 2648.699998855591, "ph": "X", "name": "Idle", "args": { "durationMS": 2.648699998855591, "detail": "" } },
  202. { "pid": 1, "tid": 13, "ts": 831047.119140625, "dur": 16981.000900268555, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 16.981000900268555, "detail": "System.Core" } },
  203. { "pid": 1, "tid": 13, "ts": 848033.5083007812, "dur": 19251.699447631836, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 19.251699447631836, "detail": "Mono.Security" } },
  204. { "pid": 1, "tid": 13, "ts": 867341.4306640625, "dur": 730.5999994277954, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.7305999994277954, "detail": "UnityEngine.InputLegacyModule" } },
  205. { "pid": 1, "tid": 13, "ts": 868073.486328125, "dur": 4768.499851226807, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 4.768499851226807, "detail": "UnityEngine.IMGUIModule" } },
  206. { "pid": 1, "tid": 13, "ts": 872844.2993164062, "dur": 3653.3000469207764, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 3.6533000469207764, "detail": "System.Configuration" } },
  207. { "pid": 1, "tid": 13, "ts": 876932.6171875, "dur": 5443.399906158447, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 5.443399906158447, "detail": "mscorlib" } },
  208. { "pid": 1, "tid": 13, "ts": 882378.662109375, "dur": 15463.5009765625, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 15.4635009765625, "detail": "Mono.Security" } },
  209. { "pid": 1, "tid": 13, "ts": 897876.4038085938, "dur": 5557.600021362305, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 5.557600021362305, "detail": "System" } },
  210. { "pid": 1, "tid": 13, "ts": 903436.4624023438, "dur": 686.9000196456909, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.6869000196456909, "detail": "UnityEngine.UnityAnalyticsModule" } },
  211. { "pid": 1, "tid": 13, "ts": 904229.5532226562, "dur": 384730.89599609375, "ph": "X", "name": "Idle", "args": { "durationMS": 384.73089599609375, "detail": "" } },
  212. { "pid": 1, "tid": 15, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  213. { "pid": 1, "tid": 15, "ts": 797132.3852539062, "dur": 28901.40151977539, "ph": "X", "name": "Idle", "args": { "durationMS": 28.90140151977539, "detail": "" } },
  214. { "pid": 1, "tid": 15, "ts": 826150.5126953125, "dur": 465.9999907016754, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4659999907016754, "detail": "" } },
  215. { "pid": 1, "tid": 15, "ts": 826619.9951171875, "dur": 2513.400077819824, "ph": "X", "name": "Idle", "args": { "durationMS": 2.513400077819824, "detail": "" } },
  216. { "pid": 1, "tid": 15, "ts": 831010.0708007812, "dur": 8317.000389099121, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 8.317000389099121, "detail": "Mono.Security" } },
  217. { "pid": 1, "tid": 15, "ts": 841198.974609375, "dur": 8521.300315856934, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 8.521300315856934, "detail": "UnityEngine.CoreModule" } },
  218. { "pid": 1, "tid": 15, "ts": 849723.8159179688, "dur": 17575.39939880371, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 17.57539939880371, "detail": "System.Xml" } },
  219. { "pid": 1, "tid": 15, "ts": 867549.3774414062, "dur": 2556.0998916625977, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.5560998916625977, "detail": "UnityEngine.TextRenderingModule" } },
  220. { "pid": 1, "tid": 15, "ts": 870108.2763671875, "dur": 1675.1999855041504, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.6751999855041504, "detail": "UnityEngine.AudioModule" } },
  221. { "pid": 1, "tid": 15, "ts": 871786.9262695312, "dur": 681.9000244140625, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.6819000244140625, "detail": "UnityEngine.UnityAnalyticsModule" } },
  222. { "pid": 1, "tid": 15, "ts": 872498.4741210938, "dur": 1171.3000535964966, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.1713000535964966, "detail": "Assembly-CSharp" } },
  223. { "pid": 1, "tid": 15, "ts": 873672.4853515625, "dur": 2819.9000358581543, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 2.8199000358581543, "detail": "Mono.Security" } },
  224. { "pid": 1, "tid": 15, "ts": 876937.9272460938, "dur": 1219.4000482559204, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.2194000482559204, "detail": "System.Configuration" } },
  225. { "pid": 1, "tid": 15, "ts": 878158.935546875, "dur": 507.8999996185303, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 0.5078999996185303, "detail": "System" } },
  226. { "pid": 1, "tid": 15, "ts": 879295.41015625, "dur": 1222.000002861023, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.222000002861023, "detail": "UnityEngine.UI" } },
  227. { "pid": 1, "tid": 15, "ts": 880519.1650390625, "dur": 19981.901168823242, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 19.981901168823242, "detail": "System.Configuration" } },
  228. { "pid": 1, "tid": 15, "ts": 900517.578125, "dur": 8704.999923706055, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 8.704999923706055, "detail": "UnityEngine.CoreModule" } },
  229. { "pid": 1, "tid": 15, "ts": 909230.4077148438, "dur": 379750.9765625, "ph": "X", "name": "Idle", "args": { "durationMS": 379.7509765625, "detail": "" } },
  230. { "pid": 1, "tid": 18, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  231. { "pid": 1, "tid": 18, "ts": 797133.7280273438, "dur": 28911.60011291504, "ph": "X", "name": "Idle", "args": { "durationMS": 28.91160011291504, "detail": "" } },
  232. { "pid": 1, "tid": 18, "ts": 826252.5024414062, "dur": 363.7999892234802, "ph": "X", "name": "Idle", "args": { "durationMS": 0.3637999892234802, "detail": "" } },
  233. { "pid": 1, "tid": 18, "ts": 826619.6899414062, "dur": 2513.700008392334, "ph": "X", "name": "Idle", "args": { "durationMS": 2.513700008392334, "detail": "" } },
  234. { "pid": 1, "tid": 18, "ts": 831009.765625, "dur": 8062.399864196777, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 8.062399864196777, "detail": "System.Configuration" } },
  235. { "pid": 1, "tid": 18, "ts": 841335.2661132812, "dur": 449.0000009536743, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 0.4490000009536743, "detail": "UnityEngine.IMGUIModule" } },
  236. { "pid": 1, "tid": 18, "ts": 842385.6201171875, "dur": 253005.6915283203, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 253.0056915283203, "detail": "mscorlib" } },
  237. { "pid": 1, "tid": 18, "ts": 1095519.775390625, "dur": 193435.40954589844, "ph": "X", "name": "Idle", "args": { "durationMS": 193.43540954589844, "detail": "" } },
  238. { "pid": 1, "tid": 17, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  239. { "pid": 1, "tid": 17, "ts": 797153.1982421875, "dur": 28880.60188293457, "ph": "X", "name": "Idle", "args": { "durationMS": 28.88060188293457, "detail": "" } },
  240. { "pid": 1, "tid": 17, "ts": 826118.408203125, "dur": 489.4999861717224, "ph": "X", "name": "Idle", "args": { "durationMS": 0.4894999861717224, "detail": "" } },
  241. { "pid": 1, "tid": 17, "ts": 826608.7646484375, "dur": 2491.6999340057373, "ph": "X", "name": "Idle", "args": { "durationMS": 2.4916999340057373, "detail": "" } },
  242. { "pid": 1, "tid": 17, "ts": 830976.07421875, "dur": 29337.100982666016, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 29.337100982666016, "detail": "mscorlib" } },
  243. { "pid": 1, "tid": 17, "ts": 863340.7592773438, "dur": 1651.900053024292, "ph": "X", "name": "Merging Generic Sharing", "args": { "durationMS": 1.651900053024292, "detail": "" } },
  244. { "pid": 1, "tid": 17, "ts": 864995.60546875, "dur": 2298.7000942230225, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.2987000942230225, "detail": "System.Core" } },
  245. { "pid": 1, "tid": 17, "ts": 867336.9140625, "dur": 31580.400466918945, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 31.580400466918945, "detail": "UnityEngine.CoreModule" } },
  246. { "pid": 1, "tid": 17, "ts": 898920.3491210938, "dur": 4949.80001449585, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 4.94980001449585, "detail": "System.Core" } },
  247. { "pid": 1, "tid": 17, "ts": 903914.9169921875, "dur": 378.60000133514404, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 0.37860000133514404, "detail": "Assembly-CSharp" } },
  248. { "pid": 1, "tid": 17, "ts": 904298.7060546875, "dur": 384657.3181152344, "ph": "X", "name": "Idle", "args": { "durationMS": 384.6573181152344, "detail": "" } },
  249. { "pid": 1, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  250. { "pid": 1, "tid": 16, "ts": 797158.0200195312, "dur": 28845.79849243164, "ph": "X", "name": "Idle", "args": { "durationMS": 28.84579849243164, "detail": "" } },
  251. { "pid": 1, "tid": 16, "ts": 827333.8012695312, "dur": 460483.6730957031, "ph": "X", "name": "All Generics Collection", "args": { "durationMS": 460.4836730957031, "detail": "" } },
  252. { "pid": 1, "tid": 16, "ts": 827845.458984375, "dur": 439529.3273925781, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 439.5293273925781, "detail": "" } },
  253. { "pid": 1, "tid": 16, "ts": 829001.4038085938, "dur": 20474.000930786133, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 20.474000930786133, "detail": "" } },
  254. { "pid": 1, "tid": 16, "ts": 829001.6479492188, "dur": 19985.1016998291, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 19.9851016998291, "detail": "" } },
  255. { "pid": 1, "tid": 16, "ts": 1267375.244140625, "dur": 7693.50004196167, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 7.69350004196167, "detail": "" } },
  256. { "pid": 1, "tid": 16, "ts": 1275069.091796875, "dur": 1090.000033378601, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 1.090000033378601, "detail": "" } },
  257. { "pid": 1, "tid": 16, "ts": 1285369.873046875, "dur": 1246.6000318527222, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 1.2466000318527222, "detail": "" } },
  258. { "pid": 1, "tid": 16, "ts": 1286647.3388671875, "dur": 1168.4000492095947, "ph": "X", "name": "Collect Generic CCWMarshallingFunctions", "args": { "durationMS": 1.1684000492095947, "detail": "" } },
  259. { "pid": 1, "tid": 16, "ts": 1287825.68359375, "dur": 1155.6999683380127, "ph": "X", "name": "Idle", "args": { "durationMS": 1.1556999683380127, "detail": "" } },
  260. { "pid": 1, "tid": 19, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  261. { "pid": 1, "tid": 19, "ts": 797160.5834960938, "dur": 28884.700775146484, "ph": "X", "name": "Idle", "args": { "durationMS": 28.884700775146484, "detail": "" } },
  262. { "pid": 1, "tid": 19, "ts": 826619.9951171875, "dur": 2513.7999057769775, "ph": "X", "name": "Idle", "args": { "durationMS": 2.5137999057769775, "detail": "" } },
  263. { "pid": 1, "tid": 19, "ts": 830978.0883789062, "dur": 8346.500396728516, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 8.346500396728516, "detail": "System.Xml" } },
  264. { "pid": 1, "tid": 19, "ts": 841506.5307617188, "dur": 8968.799591064453, "ph": "X", "name": "Generic Sharing", "args": { "durationMS": 8.968799591064453, "detail": "UnityEngine.UI" } },
  265. { "pid": 1, "tid": 19, "ts": 850478.271484375, "dur": 16811.901092529297, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 16.811901092529297, "detail": "System" } },
  266. { "pid": 1, "tid": 19, "ts": 867671.9360351562, "dur": 1690.7999515533447, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 1.6907999515533447, "detail": "UnityEngine.AnimationModule" } },
  267. { "pid": 1, "tid": 19, "ts": 869752.9296875, "dur": 2426.500082015991, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 2.426500082015991, "detail": "UnityEngine.UIModule" } },
  268. { "pid": 1, "tid": 19, "ts": 872181.9458007812, "dur": 334.69998836517334, "ph": "X", "name": "Collecting Attribute Data", "args": { "durationMS": 0.33469998836517334, "detail": "UnityEngine.UnityWebRequestModule" } },
  269. { "pid": 1, "tid": 19, "ts": 872593.017578125, "dur": 3910.5000495910645, "ph": "X", "name": "Collect Windows Runtime Data", "args": { "durationMS": 3.9105000495910645, "detail": "mscorlib" } },
  270. { "pid": 1, "tid": 19, "ts": 877075.2563476562, "dur": 1053.5000562667847, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.0535000562667847, "detail": "Mono.Security" } },
  271. { "pid": 1, "tid": 19, "ts": 878304.9926757812, "dur": 1639.799952507019, "ph": "X", "name": "Collect CCW Marshaling Functions", "args": { "durationMS": 1.639799952507019, "detail": "UnityEngine.CoreModule" } },
  272. { "pid": 1, "tid": 19, "ts": 880248.53515625, "dur": 50097.999572753906, "ph": "X", "name": "Collect Assembly Data", "args": { "durationMS": 50.097999572753906, "detail": "mscorlib" } },
  273. { "pid": 1, "tid": 19, "ts": 930423.7060546875, "dur": 358532.28759765625, "ph": "X", "name": "Idle", "args": { "durationMS": 358.53228759765625, "detail": "" } },
  274. { "pid": 1, "tid": 12, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  275. { "pid": 1, "tid": 12, "ts": 797164.6118164062, "dur": 28888.399124145508, "ph": "X", "name": "Idle", "args": { "durationMS": 28.888399124145508, "detail": "" } },
  276. { "pid": 1, "tid": 12, "ts": 827243.2250976562, "dur": 322528.1066894531, "ph": "X", "name": "All Warm up Naming", "args": { "durationMS": 322.5281066894531, "detail": "" } },
  277. { "pid": 1, "tid": 12, "ts": 827616.943359375, "dur": 259272.30834960938, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 259.2723083496094, "detail": "mscorlib" } },
  278. { "pid": 1, "tid": 12, "ts": 1087213.134765625, "dur": 730.3000092506409, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.7303000092506409, "detail": "Mono.Security" } },
  279. { "pid": 1, "tid": 12, "ts": 1087944.3359375, "dur": 548.5000014305115, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.5485000014305115, "detail": "System.Xml" } },
  280. { "pid": 1, "tid": 12, "ts": 1088493.896484375, "dur": 10467.80014038086, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 10.46780014038086, "detail": "System" } },
  281. { "pid": 1, "tid": 12, "ts": 1098963.37890625, "dur": 1882.099986076355, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.882099986076355, "detail": "System.Core" } },
  282. { "pid": 1, "tid": 12, "ts": 1100846.5576171875, "dur": 527.899980545044, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.527899980545044, "detail": "UnityEngine.SharedInternalsModule" } },
  283. { "pid": 1, "tid": 12, "ts": 1101375.1220703125, "dur": 15695.40023803711, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 15.69540023803711, "detail": "UnityEngine.CoreModule" } },
  284. { "pid": 1, "tid": 12, "ts": 1117086.3037109375, "dur": 385.699987411499, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.385699987411499, "detail": "UnityEngine.InputLegacyModule" } },
  285. { "pid": 1, "tid": 12, "ts": 1117538.57421875, "dur": 864.1999959945679, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.8641999959945679, "detail": "UnityEngine.TextRenderingModule" } },
  286. { "pid": 1, "tid": 12, "ts": 1118403.6865234375, "dur": 1028.39994430542, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.02839994430542, "detail": "UnityEngine.AnimationModule" } },
  287. { "pid": 1, "tid": 12, "ts": 1119432.9833984375, "dur": 3838.200092315674, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 3.838200092315674, "detail": "UnityEngine.IMGUIModule" } },
  288. { "pid": 1, "tid": 12, "ts": 1123272.4609375, "dur": 741.6999936103821, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.7416999936103821, "detail": "UnityEngine.PhysicsModule" } },
  289. { "pid": 1, "tid": 12, "ts": 1124044.0673828125, "dur": 773.9999890327454, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 0.7739999890327454, "detail": "UnityEngine.UIModule" } },
  290. { "pid": 1, "tid": 12, "ts": 1125058.837890625, "dur": 22938.800811767578, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 22.938800811767578, "detail": "UnityEngine.UI" } },
  291. { "pid": 1, "tid": 12, "ts": 1148300.9033203125, "dur": 1465.8000469207764, "ph": "X", "name": "Warm up Naming", "args": { "durationMS": 1.4658000469207764, "detail": "Assembly-CSharp" } },
  292. { "pid": 1, "tid": 12, "ts": 1149777.83203125, "dur": 139219.29931640625, "ph": "X", "name": "Idle", "args": { "durationMS": 139.21929931640625, "detail": "" } },
  293. { "pid": 1, "tid": 20, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  294. { "pid": 1, "tid": 20, "ts": 1318658.8134765625, "dur": 12748.299598693848, "ph": "X", "name": "Idle", "args": { "durationMS": 12.748299598693848, "detail": "" } },
  295. { "pid": 1, "tid": 20, "ts": 1431494.873046875, "dur": 748.7000226974487, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 0.7487000226974487, "detail": "mscorlib" } },
  296. { "pid": 1, "tid": 20, "ts": 1433407.5927734375, "dur": 185072.29614257812, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 185.07229614257812, "detail": "Mono.Security" } },
  297. { "pid": 1, "tid": 20, "ts": 1434946.1669921875, "dur": 183533.09631347656, "ph": "X", "name": "Mono.Security_Attr.cpp", "args": { "durationMS": 183.53309631347656, "detail": "" } },
  298. { "pid": 1, "tid": 20, "ts": 1620430.17578125, "dur": 5311.399936676025, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 5.311399936676025, "detail": "UnityEngine.GridModule" } },
  299. { "pid": 1, "tid": 20, "ts": 1620464.84375, "dur": 5275.899887084961, "ph": "X", "name": "UnityEngine.GridModule_Attr.cpp", "args": { "durationMS": 5.275899887084961, "detail": "" } },
  300. { "pid": 1, "tid": 20, "ts": 1625744.9951171875, "dur": 20527.599334716797, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 20.527599334716797, "detail": "UnityEngine.UIModule" } },
  301. { "pid": 1, "tid": 20, "ts": 1625763.3056640625, "dur": 20508.70132446289, "ph": "X", "name": "UnityEngine.UIModule_Attr.cpp", "args": { "durationMS": 20.50870132446289, "detail": "" } },
  302. { "pid": 1, "tid": 20, "ts": 1646830.9326171875, "dur": 5621.500015258789, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 5.621500015258789, "detail": "" } },
  303. { "pid": 1, "tid": 20, "ts": 1653931.884765625, "dur": 2261.899948120117, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.261899948120117, "detail": "<Module>" } },
  304. { "pid": 1, "tid": 20, "ts": 1656700.1953125, "dur": 1150.6999731063843, "ph": "X", "name": "UnityEngine.GridModule.cpp", "args": { "durationMS": 1.1506999731063843, "detail": "" } },
  305. { "pid": 1, "tid": 20, "ts": 1659138.916015625, "dur": 11226.900100708008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.226900100708008, "detail": "UnityEngine.Experimental.GlobalIllumination.RectangleLight" } },
  306. { "pid": 1, "tid": 20, "ts": 1670367.67578125, "dur": 42874.202728271484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.874202728271484, "detail": "UnityEngine.ReflectionProbe" } },
  307. { "pid": 1, "tid": 20, "ts": 1713244.384765625, "dur": 38211.60125732422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 38.21160125732422, "detail": "UnityEngine.Rendering.RenderPipeline" } },
  308. { "pid": 1, "tid": 20, "ts": 1751458.0078125, "dur": 28440.000534057617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.440000534057617, "detail": "UnityEngine.Rendering.RenderPipelineAsset" } },
  309. { "pid": 1, "tid": 20, "ts": 1779899.5361328125, "dur": 2831.5000534057617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8315000534057617, "detail": "UnityEngine.Rendering.RenderPipelineManager" } },
  310. { "pid": 1, "tid": 20, "ts": 1782746.7041015625, "dur": 5978.099822998047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.978099822998047, "detail": "UnityEngine.RenderTexture" } },
  311. { "pid": 1, "tid": 20, "ts": 1788734.86328125, "dur": 3974.2000102996826, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9742000102996826, "detail": "UnityEngine.RenderTextureDescriptor" } },
  312. { "pid": 1, "tid": 20, "ts": 1792738.1591796875, "dur": 354.29999232292175, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35429999232292175, "detail": "UnityEngine.Renderer" } },
  313. { "pid": 1, "tid": 20, "ts": 1793293.9453125, "dur": 982.699990272522, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.982699990272522, "detail": "UnityEngine.Resolution" } },
  314. { "pid": 1, "tid": 20, "ts": 1794277.9541015625, "dur": 722.2999930381775, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7222999930381775, "detail": "UnityEngine.ResourceRequest" } },
  315. { "pid": 1, "tid": 20, "ts": 1795001.0986328125, "dur": 714.1000032424927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7141000032424927, "detail": "UnityEngine.Resources" } },
  316. { "pid": 1, "tid": 20, "ts": 1795716.064453125, "dur": 639.19997215271, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.63919997215271, "detail": "UnityEngine.ResourcesAPI" } },
  317. { "pid": 1, "tid": 20, "ts": 1796519.53125, "dur": 381.5999925136566, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3815999925136566, "detail": "UnityEngine.RuntimeInitializeOnLoadMethodAttribute" } },
  318. { "pid": 1, "tid": 20, "ts": 1796913.2080078125, "dur": 998.0999827384949, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9980999827384949, "detail": "UnityEngine.SceneManagement.Scene" } },
  319. { "pid": 1, "tid": 20, "ts": 1797911.9873046875, "dur": 2564.800024032593, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5648000240325928, "detail": "UnityEngine.SceneManagement.SceneManager" } },
  320. { "pid": 1, "tid": 20, "ts": 1800477.9052734375, "dur": 1025.7999897003174, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0257999897003174, "detail": "UnityEngine.SceneManagement.SceneManagerAPI" } },
  321. { "pid": 1, "tid": 20, "ts": 1801504.7607421875, "dur": 527.5999903678894, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5275999903678894, "detail": "UnityEngine.SceneManagement.SceneManagerAPIInternal" } },
  322. { "pid": 1, "tid": 20, "ts": 1802361.083984375, "dur": 1376.7000436782837, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3767000436782837, "detail": "UnityEngine.ScriptableObject" } },
  323. { "pid": 1, "tid": 20, "ts": 1803738.525390625, "dur": 2812.9000663757324, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8129000663757324, "detail": "UnityEngine.Rendering.ScriptableRenderContext" } },
  324. { "pid": 1, "tid": 20, "ts": 1806552.734375, "dur": 778.8000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7788000106811523, "detail": "UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemSettings" } },
  325. { "pid": 1, "tid": 20, "ts": 1807332.1533203125, "dur": 585.6999754905701, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5856999754905701, "detail": "UnityEngine.Experimental.Rendering.ScriptableRuntimeReflectionSystemWrapper" } },
  326. { "pid": 1, "tid": 20, "ts": 1808326.416015625, "dur": 2341.200113296509, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.341200113296509, "detail": "UnityEngine.SetupCoroutine" } },
  327. { "pid": 1, "tid": 20, "ts": 1810901.0009765625, "dur": 1126.8999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1268999576568604, "detail": "UnityEngine.Rendering.ShaderTagId" } },
  328. { "pid": 1, "tid": 20, "ts": 1812455.2001953125, "dur": 1414.0000343322754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4140000343322754, "detail": "UnityEngine.Experimental.GlobalIllumination.SpotLight" } },
  329. { "pid": 1, "tid": 20, "ts": 1813869.9951171875, "dur": 3324.899911880493, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.324899911880493, "detail": "UnityEngine.Sprite" } },
  330. { "pid": 1, "tid": 20, "ts": 1817410.400390625, "dur": 1758.5999965667725, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7585999965667725, "detail": "UnityEngine.U2D.SpriteAtlasManager" } },
  331. { "pid": 1, "tid": 20, "ts": 1819170.0439453125, "dur": 814.4000172615051, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8144000172615051, "detail": "UnityEngine.U2D.SpriteBone" } },
  332. { "pid": 1, "tid": 20, "ts": 1820370.7275390625, "dur": 8817.500114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.817500114440918, "detail": "UnityEngine.StackTraceUtility" } },
  333. { "pid": 1, "tid": 20, "ts": 1829201.0498046875, "dur": 5980.000019073486, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.980000019073486, "detail": "UnityEngine.Rendering.SupportedRenderingFeatures" } },
  334. { "pid": 1, "tid": 20, "ts": 1835182.4951171875, "dur": 1405.0999879837036, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4050999879837036, "detail": "UnityEngine.SystemInfo" } },
  335. { "pid": 1, "tid": 20, "ts": 1836756.9580078125, "dur": 2108.599901199341, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.108599901199341, "detail": "UnityEngine.TextAsset" } },
  336. { "pid": 1, "tid": 20, "ts": 1838866.8212890625, "dur": 3887.0999813079834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8870999813079834, "detail": "UnityEngine.Texture" } },
  337. { "pid": 1, "tid": 20, "ts": 1842754.7607421875, "dur": 723.9999771118164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7239999771118164, "detail": "UnityEngine.Texture2D" } },
  338. { "pid": 1, "tid": 20, "ts": 1843479.736328125, "dur": 4334.499835968018, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.334499835968018, "detail": "UnityEngine.Texture2DArray" } },
  339. { "pid": 1, "tid": 20, "ts": 1847815.4296875, "dur": 3801.5999794006348, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8015999794006348, "detail": "UnityEngine.Texture3D" } },
  340. { "pid": 1, "tid": 20, "ts": 1851640.869140625, "dur": 542.5000190734863, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5425000190734863, "detail": "UnityEngine.Experimental.Playables.TextureMixerPlayable" } },
  341. { "pid": 1, "tid": 20, "ts": 1852212.890625, "dur": 356.0999929904938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3560999929904938, "detail": "UnityEngine.Time" } },
  342. { "pid": 1, "tid": 20, "ts": 1852728.759765625, "dur": 4830.699920654297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.830699920654297, "detail": "UnityEngine.TouchScreenKeyboard" } },
  343. { "pid": 1, "tid": 20, "ts": 1857895.99609375, "dur": 7726.29976272583, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.72629976272583, "detail": "UnityEngine.Transform" } },
  344. { "pid": 1, "tid": 20, "ts": 1865623.1689453125, "dur": 547.6999878883362, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5476999878883362, "detail": "UnityEngineInternal.TypeInferenceRuleAttribute" } },
  345. { "pid": 1, "tid": 20, "ts": 1866182.4951171875, "dur": 555.9999942779541, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5559999942779541, "detail": "UnityEngine.UnhandledExceptionHandler" } },
  346. { "pid": 1, "tid": 20, "ts": 1866739.2578125, "dur": 732.200026512146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.732200026512146, "detail": "UnityEngine.Events.UnityAction" } },
  347. { "pid": 1, "tid": 20, "ts": 1867472.5341796875, "dur": 1815.0999546051025, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8150999546051025, "detail": "UnityEngine.Events.UnityEvent" } },
  348. { "pid": 1, "tid": 20, "ts": 1869288.4521484375, "dur": 5844.5000648498535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.8445000648498535, "detail": "UnityEngine.Events.UnityEventBase" } },
  349. { "pid": 1, "tid": 20, "ts": 1875147.216796875, "dur": 1313.5000467300415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3135000467300415, "detail": "UnityEngine.Events.UnityEventTools" } },
  350. { "pid": 1, "tid": 20, "ts": 1876461.5478515625, "dur": 428.0000030994415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42800000309944153, "detail": "UnityEngine.UnityException" } },
  351. { "pid": 1, "tid": 20, "ts": 1876890.380859375, "dur": 5093.999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.093999862670898, "detail": "UnityEngine.UnitySynchronizationContext" } },
  352. { "pid": 1, "tid": 20, "ts": 1882284.912109375, "dur": 12137.999534606934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.137999534606934, "detail": "UnityEngine.Vector2" } },
  353. { "pid": 1, "tid": 20, "ts": 1894423.9501953125, "dur": 3634.2999935150146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6342999935150146, "detail": "UnityEngine.Vector2Int" } },
  354. { "pid": 1, "tid": 20, "ts": 1898059.5703125, "dur": 12765.000343322754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.765000343322754, "detail": "UnityEngine.Vector3" } },
  355. { "pid": 1, "tid": 20, "ts": 1910825.8056640625, "dur": 8316.499710083008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.316499710083008, "detail": "UnityEngine.Vector4" } },
  356. { "pid": 1, "tid": 20, "ts": 1919380.126953125, "dur": 3533.900022506714, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.533900022506714, "detail": "UnityEngine.WaitForSeconds" } },
  357. { "pid": 1, "tid": 20, "ts": 1922915.283203125, "dur": 1809.499979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.809499979019165, "detail": "UnityEngine.WaitForSecondsRealtime" } },
  358. { "pid": 1, "tid": 20, "ts": 1925186.4013671875, "dur": 1159.8000526428223, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1598000526428223, "detail": "UnityEngine.Application/LogCallback" } },
  359. { "pid": 1, "tid": 20, "ts": 1926347.412109375, "dur": 640.2000188827515, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6402000188827515, "detail": "UnityEngine.Application/LowMemoryCallback" } },
  360. { "pid": 1, "tid": 20, "ts": 1926988.76953125, "dur": 887.0999813079834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8870999813079834, "detail": "UnityEngine.Rendering.BatchRendererGroup/OnPerformCulling" } },
  361. { "pid": 1, "tid": 20, "ts": 1927876.8310546875, "dur": 2061.800003051758, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.061800003051758, "detail": "UnityEngine.BeforeRenderHelper/OrderBlock" } },
  362. { "pid": 1, "tid": 20, "ts": 1929939.5751953125, "dur": 565.2999877929688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5652999877929688, "detail": "UnityEngine.Camera/CameraCallback" } },
  363. { "pid": 1, "tid": 20, "ts": 1930765.869140625, "dur": 617.2000169754028, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6172000169754028, "detail": "UnityEngine.CullingGroup/StateChanged" } },
  364. { "pid": 1, "tid": 20, "ts": 1931384.033203125, "dur": 429.1999936103821, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4291999936103821, "detail": "UnityEngine.Display/DisplaysUpdatedDelegate" } },
  365. { "pid": 1, "tid": 20, "ts": 1932160.7666015625, "dur": 3282.7000617980957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2827000617980957, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping/<>c" } },
  366. { "pid": 1, "tid": 20, "ts": 1935444.3359375, "dur": 679.4999837875366, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6794999837875366, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping/RequestLightsDelegate" } },
  367. { "pid": 1, "tid": 20, "ts": 1936148.4375, "dur": 3689.500093460083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.689500093460083, "detail": "UnityEngine.Playables.PlayableBinding/CreateOutputMethod" } },
  368. { "pid": 1, "tid": 20, "ts": 1939839.35546875, "dur": 471.19998931884766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47119998931884766, "detail": "UnityEngine.Networking.PlayerConnection.PlayerConnection/<>c__DisplayClass12_0" } },
  369. { "pid": 1, "tid": 20, "ts": 1940856.201171875, "dur": 357.40000009536743, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35740000009536743, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/<>c__DisplayClass6_0" } },
  370. { "pid": 1, "tid": 20, "ts": 1942173.4619140625, "dur": 683.4999918937683, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6834999918937683, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers" } },
  371. { "pid": 1, "tid": 20, "ts": 1942857.7880859375, "dur": 434.8999857902527, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4348999857902527, "detail": "UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction" } },
  372. { "pid": 1, "tid": 20, "ts": 1943744.2626953125, "dur": 611.8000149726868, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6118000149726868, "detail": "UnityEngine.RectTransform/ReapplyDrivenProperties" } },
  373. { "pid": 1, "tid": 20, "ts": 1944400.87890625, "dur": 1159.600019454956, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.159600019454956, "detail": "UnityEngine.TextAsset/EncodingUtility" } },
  374. { "pid": 1, "tid": 20, "ts": 1945587.2802734375, "dur": 868.399977684021, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.868399977684021, "detail": "UnityEngine.Transform/Enumerator" } },
  375. { "pid": 1, "tid": 20, "ts": 1946456.4208984375, "dur": 486.9000017642975, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4869000017642975, "detail": "UnityEngine.UnhandledExceptionHandler/<>c" } },
  376. { "pid": 1, "tid": 20, "ts": 1946943.84765625, "dur": 1612.5999689102173, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6125999689102173, "detail": "UnityEngine.UnitySynchronizationContext/WorkRequest" } },
  377. { "pid": 1, "tid": 20, "ts": 1948590.087890625, "dur": 103476.50146484375, "ph": "X", "name": "UnityEngine.CoreModule1.cpp", "args": { "durationMS": 103.47650146484375, "detail": "" } },
  378. { "pid": 1, "tid": 20, "ts": 2052084.716796875, "dur": 9516.300201416016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.516300201416016, "detail": "System.IO.BinaryReader" } },
  379. { "pid": 1, "tid": 20, "ts": 2061613.76953125, "dur": 5410.900115966797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.410900115966797, "detail": "System.IO.BinaryWriter" } },
  380. { "pid": 1, "tid": 20, "ts": 2067025.390625, "dur": 516.7999863624573, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5167999863624573, "detail": "System.Reflection.Binder" } },
  381. { "pid": 1, "tid": 20, "ts": 2067552.978515625, "dur": 4653.299808502197, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.653299808502197, "detail": "System.BitConverter" } },
  382. { "pid": 1, "tid": 20, "ts": 2072207.51953125, "dur": 1684.499979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.684499979019165, "detail": "Mono.Security.BitConverterLE" } },
  383. { "pid": 1, "tid": 20, "ts": 2073893.06640625, "dur": 10386.899948120117, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.386899948120117, "detail": "System.Boolean" } },
  384. { "pid": 1, "tid": 20, "ts": 2084280.76171875, "dur": 4842.100143432617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.842100143432617, "detail": "System.Globalization.Bootstring" } },
  385. { "pid": 1, "tid": 20, "ts": 2089124.0234375, "dur": 4500.500202178955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.500500202178955, "detail": "System.Buffer" } },
  386. { "pid": 1, "tid": 20, "ts": 2093625.48828125, "dur": 25853.00064086914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.85300064086914, "detail": "System.Byte" } },
  387. { "pid": 1, "tid": 20, "ts": 2119489.501953125, "dur": 1140.4000520706177, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1404000520706177, "detail": "System.Collections.Generic.ByteEqualityComparer" } },
  388. { "pid": 1, "tid": 20, "ts": 2120631.34765625, "dur": 1857.200026512146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.857200026512146, "detail": "System.ByteMatcher" } },
  389. { "pid": 1, "tid": 20, "ts": 2122579.58984375, "dur": 6526.800155639648, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.526800155639648, "detail": "System.Runtime.Remoting.Messaging.CADMessageBase" } },
  390. { "pid": 1, "tid": 20, "ts": 2129107.666015625, "dur": 950.2999782562256, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9502999782562256, "detail": "System.Runtime.Remoting.Messaging.CADMethodCallMessage" } },
  391. { "pid": 1, "tid": 20, "ts": 2130058.837890625, "dur": 2444.6001052856445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4446001052856445, "detail": "System.Runtime.Remoting.Messaging.CADMethodRef" } },
  392. { "pid": 1, "tid": 20, "ts": 2132504.150390625, "dur": 1519.700050354004, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.519700050354004, "detail": "System.Runtime.Remoting.Messaging.CADMethodReturnMessage" } },
  393. { "pid": 1, "tid": 20, "ts": 2134159.912109375, "dur": 980.89998960495, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.98089998960495, "detail": "System.Runtime.Remoting.Channels.CADSerializer" } },
  394. { "pid": 1, "tid": 20, "ts": 2135616.943359375, "dur": 1014.7000551223755, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0147000551223755, "detail": "System.Runtime.InteropServices.COMException" } },
  395. { "pid": 1, "tid": 20, "ts": 2136632.568359375, "dur": 6503.399848937988, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.503399848937988, "detail": "System.IO.CStreamReader" } },
  396. { "pid": 1, "tid": 20, "ts": 2143136.71875, "dur": 2250.9000301361084, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2509000301361084, "detail": "System.IO.CStreamWriter" } },
  397. { "pid": 1, "tid": 20, "ts": 2145388.427734375, "dur": 2804.1999340057373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8041999340057373, "detail": "System.Globalization.Calendar" } },
  398. { "pid": 1, "tid": 20, "ts": 2148193.84765625, "dur": 6157.9999923706055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.1579999923706055, "detail": "System.Globalization.CalendarData" } },
  399. { "pid": 1, "tid": 20, "ts": 2154651.123046875, "dur": 459.89999175071716, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45989999175071716, "detail": "System.Runtime.Remoting.Messaging.CallContextRemotingData" } },
  400. { "pid": 1, "tid": 20, "ts": 2155714.35546875, "dur": 553.0999898910522, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5530999898910522, "detail": "System.Threading.CancellationCallbackInfo" } },
  401. { "pid": 1, "tid": 20, "ts": 2156268.06640625, "dur": 3127.3999214172363, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1273999214172363, "detail": "System.Threading.CancellationToken" } },
  402. { "pid": 1, "tid": 20, "ts": 2159396.97265625, "dur": 1853.0000448226929, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8530000448226929, "detail": "System.Threading.CancellationTokenRegistration" } },
  403. { "pid": 1, "tid": 20, "ts": 2161250.732421875, "dur": 7033.899784088135, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.033899784088135, "detail": "System.Threading.CancellationTokenSource" } },
  404. { "pid": 1, "tid": 20, "ts": 2168285.64453125, "dur": 495.9999918937683, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4959999918937683, "detail": "System.CannotUnloadAppDomainException" } },
  405. { "pid": 1, "tid": 20, "ts": 2168782.71484375, "dur": 843.9000248908997, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8439000248908997, "detail": "System.Collections.CaseInsensitiveComparer" } },
  406. { "pid": 1, "tid": 20, "ts": 2169627.197265625, "dur": 1968.8999652862549, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9688999652862549, "detail": "System.Collections.CaseInsensitiveHashCodeProvider" } },
  407. { "pid": 1, "tid": 20, "ts": 2171629.638671875, "dur": 1951.200008392334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.951200008392334, "detail": "System.Runtime.Remoting.ChannelData" } },
  408. { "pid": 1, "tid": 20, "ts": 2173863.28125, "dur": 18222.898483276367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.222898483276367, "detail": "System.Runtime.Remoting.Channels.ChannelServices" } },
  409. { "pid": 1, "tid": 20, "ts": 2192087.158203125, "dur": 12631.400108337402, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.631400108337402, "detail": "System.Char" } },
  410. { "pid": 1, "tid": 20, "ts": 2204719.482421875, "dur": 1449.9000310897827, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4499000310897827, "detail": "System.CharEnumerator" } },
  411. { "pid": 1, "tid": 20, "ts": 2206181.396484375, "dur": 1966.3000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9663000106811523, "detail": "System.Globalization.CharUnicodeInfo" } },
  412. { "pid": 1, "tid": 20, "ts": 2208268.798828125, "dur": 1135.699987411499, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.135699987411499, "detail": "System.Runtime.Remoting.ClientActivatedIdentity" } },
  413. { "pid": 1, "tid": 20, "ts": 2209406.005859375, "dur": 429.6000003814697, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4296000003814697, "detail": "System.Runtime.Remoting.Messaging.ClientContextReplySink" } },
  414. { "pid": 1, "tid": 20, "ts": 2209836.42578125, "dur": 1001.8999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0018999576568604, "detail": "System.Runtime.Remoting.Messaging.ClientContextTerminatorSink" } },
  415. { "pid": 1, "tid": 20, "ts": 2210839.111328125, "dur": 725.7000207901001, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7257000207901001, "detail": "System.Runtime.Remoting.ClientIdentity" } },
  416. { "pid": 1, "tid": 20, "ts": 2211565.91796875, "dur": 356.2999963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3562999963760376, "detail": "System.Globalization.CodePageDataItem" } },
  417. { "pid": 1, "tid": 20, "ts": 2211922.8515625, "dur": 966.4000272750854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9664000272750854, "detail": "Mono.Globalization.Unicode.CodePointIndexer" } },
  418. { "pid": 1, "tid": 20, "ts": 2213467.7734375, "dur": 13975.99983215332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.97599983215332, "detail": "System.Globalization.CompareInfo" } },
  419. { "pid": 1, "tid": 20, "ts": 2227453.125, "dur": 1973.6000299453735, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9736000299453735, "detail": "System.Collections.Comparer" } },
  420. { "pid": 1, "tid": 20, "ts": 2229438.4765625, "dur": 3401.7999172210693, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.4017999172210693, "detail": "System.Collections.CompatibleComparer" } },
  421. { "pid": 1, "tid": 20, "ts": 2232852.5390625, "dur": 454.19999957084656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45419999957084656, "detail": "System.Runtime.CompilerServices.CompilationRelaxationsAttribute" } },
  422. { "pid": 1, "tid": 20, "ts": 2233976.07421875, "dur": 18846.599578857422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.846599578857422, "detail": "System.Runtime.Remoting.ConfigHandler" } },
  423. { "pid": 1, "tid": 20, "ts": 2252825.927734375, "dur": 64976.104736328125, "ph": "X", "name": "mscorlib1.cpp", "args": { "durationMS": 64.97610473632812, "detail": "" } },
  424. { "pid": 1, "tid": 20, "ts": 2317820.80078125, "dur": 22674.800872802734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.674800872802734, "detail": "System.Resources.ResourceSet" } },
  425. { "pid": 1, "tid": 20, "ts": 2340521.97265625, "dur": 14642.701148986816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.642701148986816, "detail": "System.Runtime.Remoting.Messaging.ReturnMessage" } },
  426. { "pid": 1, "tid": 20, "ts": 2355166.50390625, "dur": 1364.799976348877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.364799976348877, "detail": "System.Reflection.RtFieldInfo" } },
  427. { "pid": 1, "tid": 20, "ts": 2356533.69140625, "dur": 362.50001192092896, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36250001192092896, "detail": "Mono.Runtime" } },
  428. { "pid": 1, "tid": 20, "ts": 2356916.50390625, "dur": 1316.6999816894531, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3166999816894531, "detail": "System.Reflection.RuntimeAssembly" } },
  429. { "pid": 1, "tid": 20, "ts": 2358234.375, "dur": 6928.400039672852, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.928400039672852, "detail": "Mono.RuntimeClassHandle" } },
  430. { "pid": 1, "tid": 20, "ts": 2365323.974609375, "dur": 1444.4999694824219, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4444999694824219, "detail": "System.Reflection.RuntimeConstructorInfo" } },
  431. { "pid": 1, "tid": 20, "ts": 2366769.53125, "dur": 584.2999815940857, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5842999815940857, "detail": "Mono.RuntimeEventHandle" } },
  432. { "pid": 1, "tid": 20, "ts": 2367354.98046875, "dur": 958.899974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.958899974822998, "detail": "System.Reflection.RuntimeEventInfo" } },
  433. { "pid": 1, "tid": 20, "ts": 2368314.697265625, "dur": 2104.7000885009766, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1047000885009766, "detail": "System.RuntimeFieldHandle" } },
  434. { "pid": 1, "tid": 20, "ts": 2370420.41015625, "dur": 1300.1999855041504, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3001999855041504, "detail": "System.Reflection.RuntimeFieldInfo" } },
  435. { "pid": 1, "tid": 20, "ts": 2371721.435546875, "dur": 791.0000085830688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7910000085830688, "detail": "Mono.RuntimeGPtrArrayHandle" } },
  436. { "pid": 1, "tid": 20, "ts": 2372513.18359375, "dur": 972.8999733924866, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9728999733924866, "detail": "Mono.RuntimeGenericParamInfoHandle" } },
  437. { "pid": 1, "tid": 20, "ts": 2373486.81640625, "dur": 471.30000591278076, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47130000591278076, "detail": "System.Runtime.CompilerServices.RuntimeHelpers" } },
  438. { "pid": 1, "tid": 20, "ts": 2373958.740234375, "dur": 1789.1000509262085, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7891000509262085, "detail": "Mono.RuntimeMarshal" } },
  439. { "pid": 1, "tid": 20, "ts": 2375748.53515625, "dur": 2979.1998863220215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9791998863220215, "detail": "System.RuntimeMethodHandle" } },
  440. { "pid": 1, "tid": 20, "ts": 2378729.736328125, "dur": 1916.100025177002, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.916100025177002, "detail": "System.Reflection.RuntimeMethodInfo" } },
  441. { "pid": 1, "tid": 20, "ts": 2380832.03125, "dur": 831.0999870300293, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8310999870300293, "detail": "Mono.RuntimePropertyHandle" } },
  442. { "pid": 1, "tid": 20, "ts": 2381664.0625, "dur": 1482.300043106079, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.482300043106079, "detail": "System.Reflection.RuntimePropertyInfo" } },
  443. { "pid": 1, "tid": 20, "ts": 2383294.43359375, "dur": 4763.800144195557, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.763800144195557, "detail": "System.Resources.RuntimeResourceSet" } },
  444. { "pid": 1, "tid": 20, "ts": 2388067.87109375, "dur": 71702.30102539062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 71.70230102539062, "detail": "System.RuntimeType" } },
  445. { "pid": 1, "tid": 20, "ts": 2459771.728515625, "dur": 4250.100135803223, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.250100135803223, "detail": "System.RuntimeTypeHandle" } },
  446. { "pid": 1, "tid": 20, "ts": 2464022.705078125, "dur": 2922.6999282836914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9226999282836914, "detail": "System.Runtime.CompilerServices.RuntimeWrappedException" } },
  447. { "pid": 1, "tid": 20, "ts": 2466946.533203125, "dur": 5302.499771118164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.302499771118164, "detail": "System.SByte" } },
  448. { "pid": 1, "tid": 20, "ts": 2472433.349609375, "dur": 584.1000080108643, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5841000080108643, "detail": "System.Security.Cryptography.SHA1CryptoServiceProvider" } },
  449. { "pid": 1, "tid": 20, "ts": 2473018.06640625, "dur": 9105.999946594238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.105999946594238, "detail": "System.Security.Cryptography.SHA1Internal" } },
  450. { "pid": 1, "tid": 20, "ts": 2482125.244140625, "dur": 350.30001401901245, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35030001401901245, "detail": "SR" } },
  451. { "pid": 1, "tid": 20, "ts": 2482567.626953125, "dur": 632.6000094413757, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6326000094413757, "detail": "System.Runtime.InteropServices.SafeBuffer" } },
  452. { "pid": 1, "tid": 20, "ts": 2483661.62109375, "dur": 19466.999053955078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.466999053955078, "detail": "Mono.SafeGPtrArrayHandle" } },
  453. { "pid": 1, "tid": 20, "ts": 2503129.39453125, "dur": 2541.800022125244, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.541800022125244, "detail": "System.Runtime.InteropServices.SafeHandle" } },
  454. { "pid": 1, "tid": 20, "ts": 2506164.55078125, "dur": 454.19999957084656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45419999957084656, "detail": "System.Runtime.Serialization.SafeSerializationEventArgs" } },
  455. { "pid": 1, "tid": 20, "ts": 2506619.62890625, "dur": 3276.900053024292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.276900053024292, "detail": "System.Runtime.Serialization.SafeSerializationManager" } },
  456. { "pid": 1, "tid": 20, "ts": 2509897.4609375, "dur": 904.1000008583069, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9041000008583069, "detail": "Mono.SafeStringMarshal" } },
  457. { "pid": 1, "tid": 20, "ts": 2511501.953125, "dur": 9269.000053405762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.269000053405762, "detail": "System.Security.SecurityElement" } },
  458. { "pid": 1, "tid": 20, "ts": 2520771.97265625, "dur": 1438.099980354309, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.438099980354309, "detail": "System.Security.SecurityException" } },
  459. { "pid": 1, "tid": 20, "ts": 2522340.8203125, "dur": 1381.700038909912, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.381700038909912, "detail": "Mono.Xml.SecurityParser" } },
  460. { "pid": 1, "tid": 20, "ts": 2523733.642578125, "dur": 556.1000108718872, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5561000108718872, "detail": "System.Threading.SemaphoreFullException" } },
  461. { "pid": 1, "tid": 20, "ts": 2524290.52734375, "dur": 11425.800323486328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.425800323486328, "detail": "System.Threading.SemaphoreSlim" } },
  462. { "pid": 1, "tid": 20, "ts": 2535717.28515625, "dur": 436.89998984336853, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.43689998984336853, "detail": "System.Threading.SendOrPostCallback" } },
  463. { "pid": 1, "tid": 20, "ts": 2536630.37109375, "dur": 1050.6000518798828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0506000518798828, "detail": "System.Runtime.Serialization.Formatters.Binary.SerStack" } },
  464. { "pid": 1, "tid": 20, "ts": 2537956.298828125, "dur": 568.4999823570251, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5684999823570251, "detail": "System.Runtime.Serialization.SerializationEntry" } },
  465. { "pid": 1, "tid": 20, "ts": 2538525.634765625, "dur": 33989.29977416992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.98929977416992, "detail": "System.Runtime.Serialization.SerializationEventHandler" } },
  466. { "pid": 1, "tid": 20, "ts": 2572516.11328125, "dur": 41619.300842285156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.619300842285156, "detail": "System.Runtime.Serialization.SerializationEvents" } },
  467. { "pid": 1, "tid": 20, "ts": 2614137.20703125, "dur": 666.5999889373779, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6665999889373779, "detail": "System.Runtime.Serialization.SerializationEventsCache" } },
  468. { "pid": 1, "tid": 20, "ts": 2614805.419921875, "dur": 1135.699987411499, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.135699987411499, "detail": "System.Runtime.Serialization.SerializationException" } },
  469. { "pid": 1, "tid": 20, "ts": 2615943.115234375, "dur": 2493.499994277954, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.493499994277954, "detail": "System.Runtime.Serialization.SerializationFieldInfo" } },
  470. { "pid": 1, "tid": 20, "ts": 2618438.232421875, "dur": 1034.10005569458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.03410005569458, "detail": "System.Runtime.Serialization.Formatters.Binary.SerializationHeaderRecord" } },
  471. { "pid": 1, "tid": 20, "ts": 2619473.388671875, "dur": 8334.500312805176, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.334500312805176, "detail": "System.Runtime.Serialization.SerializationInfo" } },
  472. { "pid": 1, "tid": 20, "ts": 2627811.03515625, "dur": 48155.89904785156, "ph": "X", "name": "mscorlib10.cpp", "args": { "durationMS": 48.15589904785156, "detail": "" } },
  473. { "pid": 1, "tid": 20, "ts": 2675985.107421875, "dur": 1932.1999549865723, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9321999549865723, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Object>" } },
  474. { "pid": 1, "tid": 20, "ts": 2677919.189453125, "dur": 4943.600177764893, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.943600177764893, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
  475. { "pid": 1, "tid": 20, "ts": 2682864.74609375, "dur": 1862.1000051498413, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8621000051498413, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Resources.ResourceLocator>" } },
  476. { "pid": 1, "tid": 20, "ts": 2684729.4921875, "dur": 21481.901168823242, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 21.481901168823242, "detail": "System.Collections.Generic.EqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  477. { "pid": 1, "tid": 20, "ts": 2706214.111328125, "dur": 3728.3999919891357, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7283999919891357, "detail": "System.Collections.Generic.EqualityComparer`1<System.Boolean>" } },
  478. { "pid": 1, "tid": 20, "ts": 2709944.091796875, "dur": 15307.299613952637, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.307299613952637, "detail": "System.Collections.Generic.EqualityComparer`1<System.Byte>" } },
  479. { "pid": 1, "tid": 20, "ts": 2725253.173828125, "dur": 3838.70005607605, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.83870005607605, "detail": "System.Collections.Generic.EqualityComparer`1<System.Char>" } },
  480. { "pid": 1, "tid": 20, "ts": 2729094.23828125, "dur": 4043.9000129699707, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.043900012969971, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Color32>" } },
  481. { "pid": 1, "tid": 20, "ts": 2733140.13671875, "dur": 4496.9000816345215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.4969000816345215, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
  482. { "pid": 1, "tid": 20, "ts": 2737650.146484375, "dur": 4552.4001121521, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.5524001121521, "detail": "System.Collections.Generic.EqualityComparer`1<System.Int32>" } },
  483. { "pid": 1, "tid": 20, "ts": 2742204.1015625, "dur": 4401.899814605713, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.401899814605713, "detail": "System.Collections.Generic.EqualityComparer`1<System.Int32Enum>" } },
  484. { "pid": 1, "tid": 20, "ts": 2746607.91015625, "dur": 3798.5000610351562, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.7985000610351562, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.Navigation>" } },
  485. { "pid": 1, "tid": 20, "ts": 2750408.203125, "dur": 4074.2998123168945, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.0742998123168945, "detail": "System.Collections.Generic.EqualityComparer`1<System.Object>" } },
  486. { "pid": 1, "tid": 20, "ts": 2754484.375, "dur": 17202.199935913086, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.202199935913086, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
  487. { "pid": 1, "tid": 20, "ts": 2771688.4765625, "dur": 8846.30012512207, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.84630012512207, "detail": "System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>" } },
  488. { "pid": 1, "tid": 20, "ts": 2780536.376953125, "dur": 4223.999977111816, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.223999977111816, "detail": "System.Collections.Generic.EqualityComparer`1<System.Single>" } },
  489. { "pid": 1, "tid": 20, "ts": 2784762.451171875, "dur": 4916.100025177002, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.916100025177002, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.SpriteState>" } },
  490. { "pid": 1, "tid": 20, "ts": 2789681.15234375, "dur": 7062.20006942749, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.06220006942749, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UICharInfo>" } },
  491. { "pid": 1, "tid": 20, "ts": 2796745.60546875, "dur": 3883.19993019104, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.88319993019104, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UILineInfo>" } },
  492. { "pid": 1, "tid": 20, "ts": 2800630.126953125, "dur": 4124.100208282471, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.124100208282471, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>" } },
  493. { "pid": 1, "tid": 20, "ts": 2804756.8359375, "dur": 3728.800058364868, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.728800058364868, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector3>" } },
  494. { "pid": 1, "tid": 20, "ts": 2808488.28125, "dur": 3621.999979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.621999979019165, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Vector4>" } },
  495. { "pid": 1, "tid": 20, "ts": 2812112.79296875, "dur": 3749.300003051758, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.749300003051758, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  496. { "pid": 1, "tid": 20, "ts": 2815864.2578125, "dur": 3902.8000831604004, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.9028000831604004, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
  497. { "pid": 1, "tid": 20, "ts": 2819768.798828125, "dur": 4192.90018081665, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.19290018081665, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  498. { "pid": 1, "tid": 20, "ts": 2823963.623046875, "dur": 506.79999589920044, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5067999958992004, "detail": "UnityEngine.EventSystems.ExecuteEvents/EventFunction`1<System.Object>" } },
  499. { "pid": 1, "tid": 20, "ts": 2824471.435546875, "dur": 597.2999930381775, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5972999930381775, "detail": "System.EventHandler`1<System.Object>" } },
  500. { "pid": 1, "tid": 20, "ts": 2825071.533203125, "dur": 60222.900390625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 60.222900390625, "detail": "System.IO.FileSystemEnumerableIterator`1<System.Object>" } },
  501. { "pid": 1, "tid": 20, "ts": 2885296.38671875, "dur": 405.6999981403351, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4056999981403351, "detail": "System.Func`1<System.Boolean>" } },
  502. { "pid": 1, "tid": 20, "ts": 2885703.369140625, "dur": 379.50000166893005, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.37950000166893005, "detail": "System.Func`1<System.Int32>" } },
  503. { "pid": 1, "tid": 20, "ts": 2886083.984375, "dur": 378.60000133514404, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.37860000133514404, "detail": "System.Func`1<System.Object>" } },
  504. { "pid": 1, "tid": 20, "ts": 2886464.35546875, "dur": 386.4000141620636, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.3864000141620636, "detail": "System.Func`1<System.Threading.Tasks.VoidTaskResult>" } },
  505. { "pid": 1, "tid": 20, "ts": 2886852.294921875, "dur": 545.5999970436096, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5455999970436096, "detail": "System.Func`2<System.Object,System.Boolean>" } },
  506. { "pid": 1, "tid": 20, "ts": 2887399.169921875, "dur": 496.8000054359436, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4968000054359436, "detail": "System.Func`2<System.Object,System.Int32>" } },
  507. { "pid": 1, "tid": 20, "ts": 2887897.4609375, "dur": 541.4999723434448, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5414999723434448, "detail": "System.Func`2<System.Object,System.Object>" } },
  508. { "pid": 1, "tid": 20, "ts": 2888440.91796875, "dur": 554.3000102043152, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5543000102043152, "detail": "System.Func`2<System.Object,System.Single>" } },
  509. { "pid": 1, "tid": 20, "ts": 2888996.826171875, "dur": 550.1000285148621, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5501000285148621, "detail": "System.Func`2<System.Object,System.Threading.Tasks.VoidTaskResult>" } },
  510. { "pid": 1, "tid": 20, "ts": 2889548.828125, "dur": 541.8999791145325, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5418999791145325, "detail": "System.Func`3<System.Int32,System.IntPtr,System.Boolean>" } },
  511. { "pid": 1, "tid": 20, "ts": 2890092.041015625, "dur": 671.4000105857849, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6714000105857849, "detail": "System.Func`3<System.Object,System.Object,System.Object>" } },
  512. { "pid": 1, "tid": 20, "ts": 2890765.13671875, "dur": 680.4999709129333, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6804999709129333, "detail": "System.Func`4<System.Object,System.Object,System.Boolean,System.Object>" } },
  513. { "pid": 1, "tid": 20, "ts": 2891447.265625, "dur": 633.0999732017517, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6330999732017517, "detail": "System.Func`4<System.Object,System.Object,System.Object,System.Object>" } },
  514. { "pid": 1, "tid": 20, "ts": 2892082.275390625, "dur": 733.5000038146973, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7335000038146973, "detail": "System.Collections.Generic.GenericComparer`1<System.Int32>" } },
  515. { "pid": 1, "tid": 20, "ts": 2892817.138671875, "dur": 801.2999892234802, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8012999892234802, "detail": "System.Collections.Generic.GenericComparer`1<System.Object>" } },
  516. { "pid": 1, "tid": 20, "ts": 2893620.361328125, "dur": 699.0000009536743, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6990000009536743, "detail": "System.Collections.Generic.GenericComparer`1<System.UInt64>" } },
  517. { "pid": 1, "tid": 20, "ts": 2894320.80078125, "dur": 1912.500023841858, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.912500023841858, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Boolean>" } },
  518. { "pid": 1, "tid": 20, "ts": 2896235.107421875, "dur": 1998.1000423431396, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9981000423431396, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Byte>" } },
  519. { "pid": 1, "tid": 20, "ts": 2898235.107421875, "dur": 1911.2000465393066, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9112000465393066, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Char>" } },
  520. { "pid": 1, "tid": 20, "ts": 2900148.92578125, "dur": 1812.1999502182007, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8121999502182007, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
  521. { "pid": 1, "tid": 20, "ts": 2901962.40234375, "dur": 1927.299976348877, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.927299976348877, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Int32>" } },
  522. { "pid": 1, "tid": 20, "ts": 2903891.6015625, "dur": 2197.700023651123, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.197700023651123, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>" } },
  523. { "pid": 1, "tid": 20, "ts": 2906091.064453125, "dur": 1854.4000387191772, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8544000387191772, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Object>" } },
  524. { "pid": 1, "tid": 20, "ts": 2907947.509765625, "dur": 1707.1000337600708, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7071000337600708, "detail": "System.Collections.Generic.GenericEqualityComparer`1<System.Single>" } },
  525. { "pid": 1, "tid": 20, "ts": 2909656.982421875, "dur": 1880.6999921798706, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8806999921798706, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
  526. { "pid": 1, "tid": 20, "ts": 2911539.306640625, "dur": 14896.099090576172, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.896099090576172, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector3>" } },
  527. { "pid": 1, "tid": 20, "ts": 2926437.01171875, "dur": 2131.00004196167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.13100004196167, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.Vector4>" } },
  528. { "pid": 1, "tid": 20, "ts": 2928570.556640625, "dur": 810.1000189781189, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8101000189781189, "detail": "System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>" } },
  529. { "pid": 1, "tid": 20, "ts": 2929383.30078125, "dur": 12557.499885559082, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.557499885559082, "detail": "System.Collections.Generic.HashSet`1<System.Object>" } },
  530. { "pid": 1, "tid": 20, "ts": 2941942.138671875, "dur": 555.1999807357788, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5551999807357788, "detail": "System.Collections.Generic.ICollectionDebugView`1<System.Object>" } },
  531. { "pid": 1, "tid": 20, "ts": 2942499.0234375, "dur": 849.5000004768372, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8495000004768372, "detail": "System.Collections.Generic.ICollectionDebugView`1<System.Object>" } },
  532. { "pid": 1, "tid": 20, "ts": 2944270.263671875, "dur": 663.9999747276306, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6639999747276306, "detail": "System.Collections.Concurrent.IDictionaryDebugView`2<System.Object,System.Object>" } },
  533. { "pid": 1, "tid": 20, "ts": 2944936.03515625, "dur": 566.9999718666077, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5669999718666077, "detail": "System.Collections.Generic.IDictionaryDebugView`2<System.Object,System.Object>" } },
  534. { "pid": 1, "tid": 20, "ts": 2947738.525390625, "dur": 7193.0999755859375, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.1930999755859375, "detail": "UnityEngine.UI.Collections.IndexedSet`1<System.Object>" } },
  535. { "pid": 1, "tid": 20, "ts": 2954934.08203125, "dur": 2290.8999919891357, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.2908999919891357, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
  536. { "pid": 1, "tid": 20, "ts": 2957227.294921875, "dur": 1581.0999870300293, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5810999870300293, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>" } },
  537. { "pid": 1, "tid": 20, "ts": 2958812.255859375, "dur": 2154.099941253662, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.154099941253662, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
  538. { "pid": 1, "tid": 20, "ts": 2960969.482421875, "dur": 1642.199993133545, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.642199993133545, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>" } },
  539. { "pid": 1, "tid": 20, "ts": 2962614.2578125, "dur": 1601.699948310852, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.601699948310852, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  540. { "pid": 1, "tid": 20, "ts": 2964218.505859375, "dur": 1618.1000471115112, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6181000471115112, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
  541. { "pid": 1, "tid": 20, "ts": 2965839.35546875, "dur": 1650.3000259399414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6503000259399414, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
  542. { "pid": 1, "tid": 20, "ts": 2967491.2109375, "dur": 1592.1000242233276, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5921000242233276, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
  543. { "pid": 1, "tid": 20, "ts": 2969085.44921875, "dur": 1736.199975013733, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.736199975013733, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>" } },
  544. { "pid": 1, "tid": 20, "ts": 2970824.462890625, "dur": 1882.599949836731, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.882599949836731, "detail": "System.Array/InternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>" } },
  545. { "pid": 1, "tid": 20, "ts": 2972709.228515625, "dur": 1529.8000574111938, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5298000574111938, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>" } },
  546. { "pid": 1, "tid": 20, "ts": 2974240.966796875, "dur": 1402.500033378601, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.402500033378601, "detail": "System.Array/InternalEnumerator`1<System.Boolean>" } },
  547. { "pid": 1, "tid": 20, "ts": 2975645.263671875, "dur": 1430.6000471115112, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4306000471115112, "detail": "System.Array/InternalEnumerator`1<System.Byte>" } },
  548. { "pid": 1, "tid": 20, "ts": 2977077.63671875, "dur": 1881.600022315979, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.881600022315979, "detail": "System.Array/InternalEnumerator`1<System.Threading.CancellationTokenRegistration>" } },
  549. { "pid": 1, "tid": 20, "ts": 2978961.181640625, "dur": 1429.7000169754028, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4297000169754028, "detail": "System.Array/InternalEnumerator`1<System.Char>" } },
  550. { "pid": 1, "tid": 20, "ts": 2980392.578125, "dur": 1455.899953842163, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.455899953842163, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Color32>" } },
  551. { "pid": 1, "tid": 20, "ts": 2981850.830078125, "dur": 31913.799285888672, "ph": "X", "name": "Generics2.cpp", "args": { "durationMS": 31.913799285888672, "detail": "" } },
  552. { "pid": 1, "tid": 20, "ts": 3013786.1328125, "dur": 381.5000057220459, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3815000057220459, "detail": "System.Collections.Generic.List`1<System.Threading.Tasks.Task>" } },
  553. { "pid": 1, "tid": 20, "ts": 3014169.189453125, "dur": 648.1999754905701, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6481999754905701, "detail": "System.Collections.Generic.List`1<System.TimeZoneInfo>" } },
  554. { "pid": 1, "tid": 20, "ts": 3014819.580078125, "dur": 409.2999994754791, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4092999994754791, "detail": "System.Collections.Generic.List`1<System.Threading.Timer>" } },
  555. { "pid": 1, "tid": 20, "ts": 3015230.46875, "dur": 397.0000147819519, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3970000147819519, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Toggle>" } },
  556. { "pid": 1, "tid": 20, "ts": 3015629.39453125, "dur": 380.4999887943268, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3804999887943268, "detail": "System.Collections.Generic.List`1<UnityEngine.Transform>" } },
  557. { "pid": 1, "tid": 20, "ts": 3016011.23046875, "dur": 435.7999861240387, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4357999861240387, "detail": "System.Collections.Generic.List`1<System.Type>" } },
  558. { "pid": 1, "tid": 20, "ts": 3016448.486328125, "dur": 368.90000104904175, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.36890000104904175, "detail": "System.Collections.Generic.List`1<System.TypeIdentifier>" } },
  559. { "pid": 1, "tid": 20, "ts": 3016818.603515625, "dur": 397.0000147819519, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3970000147819519, "detail": "System.Collections.Generic.List`1<System.TypeSpec>" } },
  560. { "pid": 1, "tid": 20, "ts": 3017216.552734375, "dur": 492.30000376701355, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.49230000376701355, "detail": "System.Collections.Generic.List`1<UnityEngine.UICharInfo>" } },
  561. { "pid": 1, "tid": 20, "ts": 3017710.693359375, "dur": 481.2000095844269, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4812000095844269, "detail": "System.Collections.Generic.List`1<UnityEngine.UILineInfo>" } },
  562. { "pid": 1, "tid": 20, "ts": 3018192.87109375, "dur": 1169.100046157837, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.169100046157837, "detail": "System.Collections.Generic.List`1<UnityEngine.UIVertex>" } },
  563. { "pid": 1, "tid": 20, "ts": 3019363.037109375, "dur": 466.6000008583069, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4666000008583069, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector3>" } },
  564. { "pid": 1, "tid": 20, "ts": 3019833.49609375, "dur": 963.699996471405, "ph": "X", "name": "Il2CppGenericComDefinitions13.cpp", "args": { "durationMS": 0.963699996471405, "detail": "" } },
  565. { "pid": 1, "tid": 20, "ts": 3024816.650390625, "dur": 460.59998869895935, "ph": "X", "name": "Il2CppGenericComDefinitions16.cpp", "args": { "durationMS": 0.46059998869895935, "detail": "" } },
  566. { "pid": 1, "tid": 20, "ts": 3025289.55078125, "dur": 117854.00390625, "ph": "X", "name": "Idle", "args": { "durationMS": 117.85400390625, "detail": "" } },
  567. { "pid": 1, "tid": 21, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  568. { "pid": 1, "tid": 21, "ts": 1318740.6005859375, "dur": 12716.300010681152, "ph": "X", "name": "Idle", "args": { "durationMS": 12.716300010681152, "detail": "" } },
  569. { "pid": 1, "tid": 21, "ts": 1431756.2255859375, "dur": 486.60001158714294, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 0.48660001158714294, "detail": "UnityEngine.CoreModule" } },
  570. { "pid": 1, "tid": 21, "ts": 1433397.216796875, "dur": 185130.59997558594, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 185.13059997558594, "detail": "System.Configuration" } },
  571. { "pid": 1, "tid": 21, "ts": 1434926.6357421875, "dur": 183600.7080078125, "ph": "X", "name": "System.Configuration_Attr.cpp", "args": { "durationMS": 183.6007080078125, "detail": "" } },
  572. { "pid": 1, "tid": 21, "ts": 1620490.1123046875, "dur": 7594.99979019165, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 7.59499979019165, "detail": "UnityEngine.Physics2DModule" } },
  573. { "pid": 1, "tid": 21, "ts": 1620505.0048828125, "dur": 7579.500198364258, "ph": "X", "name": "UnityEngine.Physics2DModule_Attr.cpp", "args": { "durationMS": 7.579500198364258, "detail": "" } },
  574. { "pid": 1, "tid": 21, "ts": 1628089.84375, "dur": 18078.59992980957, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 18.07859992980957, "detail": "UnityEngine.UnityAnalyticsModule" } },
  575. { "pid": 1, "tid": 21, "ts": 1628110.9619140625, "dur": 18056.900024414062, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule_Attr.cpp", "args": { "durationMS": 18.056900024414062, "detail": "" } },
  576. { "pid": 1, "tid": 21, "ts": 1646649.169921875, "dur": 366.100013256073, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 0.366100013256073, "detail": "" } },
  577. { "pid": 1, "tid": 21, "ts": 1653964.35546875, "dur": 2212.199926376343, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2121999263763428, "detail": "<Module>" } },
  578. { "pid": 1, "tid": 21, "ts": 1656193.603515625, "dur": 107523.0941772461, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 107.5230941772461, "detail": "System.Xml.DebuggerDisplayXmlNodeProxy" } },
  579. { "pid": 1, "tid": 21, "ts": 1763717.529296875, "dur": 17691.299438476562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.691299438476562, "detail": "System.Xml.XmlCharType" } },
  580. { "pid": 1, "tid": 21, "ts": 1781410.0341796875, "dur": 2593.3001041412354, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5933001041412354, "detail": "System.Xml.XmlConvert" } },
  581. { "pid": 1, "tid": 21, "ts": 1784541.1376953125, "dur": 578.5999894142151, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5785999894142151, "detail": "System.Xml.XmlReader" } },
  582. { "pid": 1, "tid": 21, "ts": 1785130.37109375, "dur": 1407.6000452041626, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4076000452041626, "detail": "System.Xml.XmlReader/XmlReaderDebuggerDisplayProxy" } },
  583. { "pid": 1, "tid": 21, "ts": 1786540.4052734375, "dur": 5145.400047302246, "ph": "X", "name": "System.Xml.cpp", "args": { "durationMS": 5.145400047302246, "detail": "" } },
  584. { "pid": 1, "tid": 21, "ts": 1791723.876953125, "dur": 3039.4999980926514, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0394999980926514, "detail": "AutoA" } },
  585. { "pid": 1, "tid": 21, "ts": 1794764.404296875, "dur": 2315.200090408325, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.315200090408325, "detail": "CameraMove" } },
  586. { "pid": 1, "tid": 21, "ts": 1797080.4443359375, "dur": 3765.199899673462, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.765199899673462, "detail": "CollisionDetector" } },
  587. { "pid": 1, "tid": 21, "ts": 1800936.6455078125, "dur": 1870.2000379562378, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8702000379562378, "detail": "Goto" } },
  588. { "pid": 1, "tid": 21, "ts": 1802807.4951171875, "dur": 1471.4000225067139, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4714000225067139, "detail": "Menu_Buttons" } },
  589. { "pid": 1, "tid": 21, "ts": 1804280.3955078125, "dur": 1072.700023651123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.072700023651123, "detail": "MeshCreatorData" } },
  590. { "pid": 1, "tid": 21, "ts": 1805354.248046875, "dur": 12435.400009155273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.435400009155273, "detail": "MovePay" } },
  591. { "pid": 1, "tid": 21, "ts": 1817790.4052734375, "dur": 10189.9995803833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.1899995803833, "detail": "MovePolice" } },
  592. { "pid": 1, "tid": 21, "ts": 1827981.5673828125, "dur": 4210.4997634887695, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.2104997634887695, "detail": "NewBehaviourScript" } },
  593. { "pid": 1, "tid": 21, "ts": 1832192.87109375, "dur": 542.900025844574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.542900025844574, "detail": "ScenesArgs" } },
  594. { "pid": 1, "tid": 21, "ts": 1832736.328125, "dur": 2528.39994430542, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.52839994430542, "detail": "Wallcollision" } },
  595. { "pid": 1, "tid": 21, "ts": 1835265.9912109375, "dur": 1756.2999725341797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7562999725341797, "detail": "click" } },
  596. { "pid": 1, "tid": 21, "ts": 1837023.193359375, "dur": 2425.600051879883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.425600051879883, "detail": "cube" } },
  597. { "pid": 1, "tid": 21, "ts": 1839449.70703125, "dur": 1370.4999685287476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3704999685287476, "detail": "cubeController" } },
  598. { "pid": 1, "tid": 21, "ts": 1840821.2890625, "dur": 960.099995136261, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.960099995136261, "detail": "dragPicture" } },
  599. { "pid": 1, "tid": 21, "ts": 1841782.3486328125, "dur": 8761.099815368652, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.761099815368652, "detail": "move" } },
  600. { "pid": 1, "tid": 21, "ts": 1850544.3115234375, "dur": 1457.200050354004, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.457200050354004, "detail": "task" } },
  601. { "pid": 1, "tid": 21, "ts": 1852002.3193359375, "dur": 1338.9999866485596, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3389999866485596, "detail": "testMove" } },
  602. { "pid": 1, "tid": 21, "ts": 1853342.28515625, "dur": 1782.8999757766724, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7828999757766724, "detail": "testMove/<OnMouseDown>d__7" } },
  603. { "pid": 1, "tid": 21, "ts": 1855127.9296875, "dur": 20444.99969482422, "ph": "X", "name": "Assembly-CSharp.cpp", "args": { "durationMS": 20.44499969482422, "detail": "" } },
  604. { "pid": 1, "tid": 21, "ts": 1875596.3134765625, "dur": 15856.700897216797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.856700897216797, "detail": "UnityEngine.UI.GraphicRaycaster" } },
  605. { "pid": 1, "tid": 21, "ts": 1891453.9794921875, "dur": 5495.60022354126, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.49560022354126, "detail": "UnityEngine.UI.GraphicRegistry" } },
  606. { "pid": 1, "tid": 21, "ts": 1896950.8056640625, "dur": 9743.200302124023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.743200302124023, "detail": "UnityEngine.UI.GridLayoutGroup" } },
  607. { "pid": 1, "tid": 21, "ts": 1906694.7021484375, "dur": 926.1999726295471, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9261999726295471, "detail": "UnityEngine.UI.HorizontalLayoutGroup" } },
  608. { "pid": 1, "tid": 21, "ts": 1907622.0703125, "dur": 10693.900108337402, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.693900108337402, "detail": "UnityEngine.UI.HorizontalOrVerticalLayoutGroup" } },
  609. { "pid": 1, "tid": 21, "ts": 1918317.138671875, "dur": 66438.4994506836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 66.4384994506836, "detail": "UnityEngine.UI.Image" } },
  610. { "pid": 1, "tid": 21, "ts": 1984757.2021484375, "dur": 115409.39331054688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 115.40939331054688, "detail": "UnityEngine.UI.InputField" } },
  611. { "pid": 1, "tid": 21, "ts": 2100169.677734375, "dur": 42441.60079956055, "ph": "X", "name": "UnityEngine.UI1.cpp", "args": { "durationMS": 42.44160079956055, "detail": "" } },
  612. { "pid": 1, "tid": 21, "ts": 2142627.9296875, "dur": 1067.3999786376953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0673999786376953, "detail": "System.DateTimeRawInfo" } },
  613. { "pid": 1, "tid": 21, "ts": 2143696.044921875, "dur": 841.3000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8413000106811523, "detail": "System.DateTimeResult" } },
  614. { "pid": 1, "tid": 21, "ts": 2146011.474609375, "dur": 13813.100814819336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.813100814819336, "detail": "System.Decimal" } },
  615. { "pid": 1, "tid": 21, "ts": 2160054.931640625, "dur": 2210.0000381469727, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2100000381469727, "detail": "System.Text.Decoder" } },
  616. { "pid": 1, "tid": 21, "ts": 2162265.625, "dur": 394.80000734329224, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39480000734329224, "detail": "System.Text.DecoderExceptionFallback" } },
  617. { "pid": 1, "tid": 21, "ts": 2162661.62109375, "dur": 761.900007724762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.761900007724762, "detail": "System.Text.DecoderExceptionFallbackBuffer" } },
  618. { "pid": 1, "tid": 21, "ts": 2163424.31640625, "dur": 1010.1000070571899, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.01010000705719, "detail": "System.Text.DecoderFallback" } },
  619. { "pid": 1, "tid": 21, "ts": 2164436.279296875, "dur": 3028.8000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0288000106811523, "detail": "System.Text.DecoderFallbackBuffer" } },
  620. { "pid": 1, "tid": 21, "ts": 2167466.796875, "dur": 528.6999940872192, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5286999940872192, "detail": "System.Text.DecoderFallbackException" } },
  621. { "pid": 1, "tid": 21, "ts": 2167996.58203125, "dur": 5077.700138092041, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.077700138092041, "detail": "System.Text.DecoderNLS" } },
  622. { "pid": 1, "tid": 21, "ts": 2173075.1953125, "dur": 1170.0999736785889, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1700999736785889, "detail": "System.Text.DecoderReplacementFallback" } },
  623. { "pid": 1, "tid": 21, "ts": 2174246.826171875, "dur": 783.29998254776, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.78329998254776, "detail": "System.Text.DecoderReplacementFallbackBuffer" } },
  624. { "pid": 1, "tid": 21, "ts": 2175032.2265625, "dur": 33152.99987792969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.15299987792969, "detail": "System.DefaultBinder" } },
  625. { "pid": 1, "tid": 21, "ts": 2208548.828125, "dur": 11587.200164794922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.587200164794922, "detail": "System.Delegate" } },
  626. { "pid": 1, "tid": 21, "ts": 2220223.388671875, "dur": 13576.99966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.57699966430664, "detail": "System.DelegateSerializationHolder" } },
  627. { "pid": 1, "tid": 21, "ts": 2233801.26953125, "dur": 667.8000092506409, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6678000092506409, "detail": "System.Runtime.Serialization.DeserializationEventHandler" } },
  628. { "pid": 1, "tid": 21, "ts": 2234470.21484375, "dur": 705.6000232696533, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7056000232696533, "detail": "System.Collections.DictionaryEntry" } },
  629. { "pid": 1, "tid": 21, "ts": 2235433.10546875, "dur": 5735.599994659424, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.735599994659424, "detail": "System.IO.Directory" } },
  630. { "pid": 1, "tid": 21, "ts": 2241170.41015625, "dur": 9336.299896240234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.336299896240234, "detail": "System.IO.DirectoryInfo" } },
  631. { "pid": 1, "tid": 21, "ts": 2250508.056640625, "dur": 515.9000158309937, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5159000158309937, "detail": "System.IO.DirectoryNotFoundException" } },
  632. { "pid": 1, "tid": 21, "ts": 2251127.685546875, "dur": 357.8000068664551, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3578000068664551, "detail": "System.Runtime.Remoting.DisposerReplySink" } },
  633. { "pid": 1, "tid": 21, "ts": 2251486.81640625, "dur": 495.0999915599823, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4950999915599823, "detail": "System.DivideByZeroException" } },
  634. { "pid": 1, "tid": 21, "ts": 2251983.154296875, "dur": 1243.399977684021, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.243399977684021, "detail": "System.Runtime.InteropServices.DllImportAttribute" } },
  635. { "pid": 1, "tid": 21, "ts": 2253238.525390625, "dur": 531.7000150680542, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5317000150680542, "detail": "System.DllNotFoundException" } },
  636. { "pid": 1, "tid": 21, "ts": 2253770.751953125, "dur": 7585.100173950195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.585100173950195, "detail": "System.Double" } },
  637. { "pid": 1, "tid": 21, "ts": 2261356.689453125, "dur": 513.4000182151794, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5134000182151794, "detail": "System.IO.DriveNotFoundException" } },
  638. { "pid": 1, "tid": 21, "ts": 2261870.849609375, "dur": 1304.4999837875366, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3044999837875366, "detail": "System.Reflection.Emit.DynamicMethod" } },
  639. { "pid": 1, "tid": 21, "ts": 2263176.26953125, "dur": 2747.699975967407, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7476999759674072, "detail": "System.Runtime.Remoting.Contexts.DynamicPropertyCollection" } },
  640. { "pid": 1, "tid": 21, "ts": 2265924.8046875, "dur": 621.2999820709229, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6212999820709229, "detail": "System.Empty" } },
  641. { "pid": 1, "tid": 21, "ts": 2266547.119140625, "dur": 1449.1000175476074, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4491000175476074, "detail": "System.Collections.EmptyReadOnlyDictionaryInternal" } },
  642. { "pid": 1, "tid": 21, "ts": 2267997.55859375, "dur": 2071.500062942505, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.071500062942505, "detail": "System.Text.Encoder" } },
  643. { "pid": 1, "tid": 21, "ts": 2270070.068359375, "dur": 393.09999346733093, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39309999346733093, "detail": "System.Text.EncoderExceptionFallback" } },
  644. { "pid": 1, "tid": 21, "ts": 2270463.8671875, "dur": 1045.5000400543213, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0455000400543213, "detail": "System.Text.EncoderExceptionFallbackBuffer" } },
  645. { "pid": 1, "tid": 21, "ts": 2271510.25390625, "dur": 1309.5999956130981, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3095999956130981, "detail": "System.Text.EncoderFallback" } },
  646. { "pid": 1, "tid": 21, "ts": 2272821.044921875, "dur": 1425.8999824523926, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4258999824523926, "detail": "System.Text.EncoderFallbackBuffer" } },
  647. { "pid": 1, "tid": 21, "ts": 2274248.046875, "dur": 2088.2999897003174, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0882999897003174, "detail": "System.Text.EncoderFallbackException" } },
  648. { "pid": 1, "tid": 21, "ts": 2276337.158203125, "dur": 3731.100082397461, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.731100082397461, "detail": "System.Text.EncoderNLS" } },
  649. { "pid": 1, "tid": 21, "ts": 2280069.580078125, "dur": 1098.7999439239502, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0987999439239502, "detail": "System.Text.EncoderReplacementFallback" } },
  650. { "pid": 1, "tid": 21, "ts": 2281169.43359375, "dur": 1552.899956703186, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.552899956703186, "detail": "System.Text.EncoderReplacementFallbackBuffer" } },
  651. { "pid": 1, "tid": 21, "ts": 2282723.876953125, "dur": 34054.6989440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.0546989440918, "detail": "System.Text.Encoding" } },
  652. { "pid": 1, "tid": 21, "ts": 2316780.029296875, "dur": 2501.8999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5018999576568604, "detail": "System.Text.EncodingHelper" } },
  653. { "pid": 1, "tid": 21, "ts": 2319282.71484375, "dur": 15423.399925231934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.423399925231934, "detail": "System.Text.EncodingNLS" } },
  654. { "pid": 1, "tid": 21, "ts": 2334707.51953125, "dur": 1217.5999879837036, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2175999879837036, "detail": "System.Text.EncodingProvider" } },
  655. { "pid": 1, "tid": 21, "ts": 2335926.513671875, "dur": 81745.10192871094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 81.74510192871094, "detail": "System.Globalization.EncodingTable" } },
  656. { "pid": 1, "tid": 21, "ts": 2417674.560546875, "dur": 46035.099029541016, "ph": "X", "name": "mscorlib4.cpp", "args": { "durationMS": 46.035099029541016, "detail": "" } },
  657. { "pid": 1, "tid": 21, "ts": 2463743.896484375, "dur": 547.3999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5473999977111816, "detail": "System.TimeZoneNotFoundException" } },
  658. { "pid": 1, "tid": 21, "ts": 2464718.75, "dur": 1816.2000179290771, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8162000179290771, "detail": "System.Threading.Timer" } },
  659. { "pid": 1, "tid": 21, "ts": 2466536.376953125, "dur": 347.09998965263367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.34709998965263367, "detail": "System.Threading.TimerCallback" } },
  660. { "pid": 1, "tid": 21, "ts": 2467020.5078125, "dur": 1907.2999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9072999954223633, "detail": "System.Runtime.Remoting.Services.TrackingServices" } },
  661. { "pid": 1, "tid": 21, "ts": 2468928.7109375, "dur": 2293.6999797821045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2936999797821045, "detail": "System.Runtime.Remoting.Proxies.TransparentProxy" } },
  662. { "pid": 1, "tid": 21, "ts": 2471434.814453125, "dur": 24335.6990814209, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 24.3356990814209, "detail": "System.Type" } },
  663. { "pid": 1, "tid": 21, "ts": 2495787.59765625, "dur": 3187.5998973846436, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1875998973846436, "detail": "System.Reflection.Emit.TypeBuilder" } },
  664. { "pid": 1, "tid": 21, "ts": 2499653.3203125, "dur": 3128.200054168701, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.128200054168701, "detail": "System.Reflection.TypeFilter" } },
  665. { "pid": 1, "tid": 21, "ts": 2502795.166015625, "dur": 333.40001106262207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33340001106262207, "detail": "System.Runtime.CompilerServices.TypeForwardedFromAttribute" } },
  666. { "pid": 1, "tid": 21, "ts": 2503377.44140625, "dur": 2532.2999954223633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5322999954223633, "detail": "System.Runtime.Remoting.TypeInfo" } },
  667. { "pid": 1, "tid": 21, "ts": 2505911.376953125, "dur": 507.3000192642212, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5073000192642212, "detail": "System.Runtime.Serialization.Formatters.Binary.TypeInformation" } },
  668. { "pid": 1, "tid": 21, "ts": 2506419.189453125, "dur": 1148.6999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1486999988555908, "detail": "System.TypeInitializationException" } },
  669. { "pid": 1, "tid": 21, "ts": 2507568.84765625, "dur": 2293.2000160217285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2932000160217285, "detail": "System.TypeLoadException" } },
  670. { "pid": 1, "tid": 21, "ts": 2510297.607421875, "dur": 14304.400444030762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.304400444030762, "detail": "System.TypeSpec" } },
  671. { "pid": 1, "tid": 21, "ts": 2524603.02734375, "dur": 25627.69889831543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.62769889831543, "detail": "System.TypedReference" } },
  672. { "pid": 1, "tid": 21, "ts": 2550231.689453125, "dur": 22181.400299072266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.181400299072266, "detail": "System.UInt16" } },
  673. { "pid": 1, "tid": 21, "ts": 2572424.560546875, "dur": 56235.595703125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 56.235595703125, "detail": "System.UInt32" } },
  674. { "pid": 1, "tid": 21, "ts": 2628674.31640625, "dur": 4385.900020599365, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.385900020599365, "detail": "System.UInt64" } },
  675. { "pid": 1, "tid": 21, "ts": 2633071.533203125, "dur": 1495.3999519348145, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4953999519348145, "detail": "System.UIntPtr" } },
  676. { "pid": 1, "tid": 21, "ts": 2634568.115234375, "dur": 17401.599884033203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.401599884033203, "detail": "System.Text.UTF32Encoding" } },
  677. { "pid": 1, "tid": 21, "ts": 2651970.458984375, "dur": 14297.599792480469, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.297599792480469, "detail": "System.Text.UTF7Encoding" } },
  678. { "pid": 1, "tid": 21, "ts": 2666268.798828125, "dur": 42557.30056762695, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.55730056762695, "detail": "System.Text.UTF8Encoding" } },
  679. { "pid": 1, "tid": 21, "ts": 2708837.890625, "dur": 820.5000162124634, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8205000162124634, "detail": "System.UnSafeCharBuffer" } },
  680. { "pid": 1, "tid": 21, "ts": 2709659.423828125, "dur": 532.4000120162964, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5324000120162964, "detail": "System.UnauthorizedAccessException" } },
  681. { "pid": 1, "tid": 21, "ts": 2710192.626953125, "dur": 2412.1999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4121999740600586, "detail": "System.IO.UnexceptionalStreamReader" } },
  682. { "pid": 1, "tid": 21, "ts": 2712606.689453125, "dur": 1011.8999481201172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0118999481201172, "detail": "System.IO.UnexceptionalStreamWriter" } },
  683. { "pid": 1, "tid": 21, "ts": 2713850.830078125, "dur": 340.49999713897705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.34049999713897705, "detail": "System.UnhandledExceptionEventHandler" } },
  684. { "pid": 1, "tid": 21, "ts": 2714202.392578125, "dur": 22562.599182128906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.562599182128906, "detail": "System.Text.UnicodeEncoding" } },
  685. { "pid": 1, "tid": 21, "ts": 2736768.06640625, "dur": 26646.400451660156, "ph": "X", "name": "mscorlib14.cpp", "args": { "durationMS": 26.646400451660156, "detail": "" } },
  686. { "pid": 1, "tid": 21, "ts": 2763434.08203125, "dur": 1903.39994430542, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.90339994430542, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UICharInfo>" } },
  687. { "pid": 1, "tid": 21, "ts": 2765340.576171875, "dur": 2552.0999431610107, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5520999431610107, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UILineInfo>" } },
  688. { "pid": 1, "tid": 21, "ts": 2767893.798828125, "dur": 2761.4998817443848, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.7614998817443848, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>" } },
  689. { "pid": 1, "tid": 21, "ts": 2770657.2265625, "dur": 2606.4999103546143, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6064999103546143, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector3>" } },
  690. { "pid": 1, "tid": 21, "ts": 2773265.869140625, "dur": 1830.1000595092773, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8301000595092773, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Vector4>" } },
  691. { "pid": 1, "tid": 21, "ts": 2775099.853515625, "dur": 2108.4001064300537, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1084001064300537, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  692. { "pid": 1, "tid": 21, "ts": 2777213.134765625, "dur": 1912.2999906539917, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9122999906539917, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Camera/RenderRequest>" } },
  693. { "pid": 1, "tid": 21, "ts": 2779128.41796875, "dur": 2048.0000972747803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.0480000972747803, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  694. { "pid": 1, "tid": 21, "ts": 2781178.466796875, "dur": 2717.600107192993, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.717600107192993, "detail": "UnityEngine.UI.ObjectPool`1<System.Object>" } },
  695. { "pid": 1, "tid": 21, "ts": 2783898.193359375, "dur": 571.6000199317932, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5716000199317932, "detail": "System.Predicate`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  696. { "pid": 1, "tid": 21, "ts": 2784471.6796875, "dur": 473.1999933719635, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4731999933719635, "detail": "System.Predicate`1<UnityEngine.Color32>" } },
  697. { "pid": 1, "tid": 21, "ts": 2784946.044921875, "dur": 459.6000015735626, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4596000015735626, "detail": "System.Predicate`1<System.Int32>" } },
  698. { "pid": 1, "tid": 21, "ts": 2785406.982421875, "dur": 460.3999853134155, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4603999853134155, "detail": "System.Predicate`1<System.Int32Enum>" } },
  699. { "pid": 1, "tid": 21, "ts": 2785868.896484375, "dur": 521.3000178337097, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5213000178337097, "detail": "System.Predicate`1<System.Object>" } },
  700. { "pid": 1, "tid": 21, "ts": 2786392.08984375, "dur": 483.39998722076416, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.48339998722076416, "detail": "System.Predicate`1<UnityEngine.EventSystems.RaycastResult>" } },
  701. { "pid": 1, "tid": 21, "ts": 2786877.197265625, "dur": 2845.400094985962, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.845400094985962, "detail": "System.Predicate`1<UnityEngine.UICharInfo>" } },
  702. { "pid": 1, "tid": 21, "ts": 2789725.09765625, "dur": 533.1000089645386, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5331000089645386, "detail": "System.Predicate`1<UnityEngine.UILineInfo>" } },
  703. { "pid": 1, "tid": 21, "ts": 2790260.009765625, "dur": 487.50001192092896, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.48750001192092896, "detail": "System.Predicate`1<UnityEngine.UIVertex>" } },
  704. { "pid": 1, "tid": 21, "ts": 2790749.267578125, "dur": 476.7000079154968, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4767000079154968, "detail": "System.Predicate`1<UnityEngine.Vector3>" } },
  705. { "pid": 1, "tid": 21, "ts": 2791227.5390625, "dur": 583.299994468689, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.583299994468689, "detail": "System.Predicate`1<UnityEngine.Vector4>" } },
  706. { "pid": 1, "tid": 21, "ts": 2791812.255859375, "dur": 485.39999127388, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.48539999127388, "detail": "System.Predicate`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  707. { "pid": 1, "tid": 21, "ts": 2792299.560546875, "dur": 16013.00048828125, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.01300048828125, "detail": "System.Predicate`1<UnityEngine.Camera/RenderRequest>" } },
  708. { "pid": 1, "tid": 21, "ts": 2808314.453125, "dur": 1266.1000490188599, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2661000490188599, "detail": "System.Predicate`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  709. { "pid": 1, "tid": 21, "ts": 2809582.51953125, "dur": 5789.599895477295, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.789599895477295, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>" } },
  710. { "pid": 1, "tid": 21, "ts": 2815374.51171875, "dur": 6809.999942779541, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.809999942779541, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>" } },
  711. { "pid": 1, "tid": 21, "ts": 2822186.279296875, "dur": 6527.299880981445, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.527299880981445, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Object>" } },
  712. { "pid": 1, "tid": 21, "ts": 2828714.84375, "dur": 853.7999987602234, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8537999987602234, "detail": "System.IO.SearchResultHandler`1<System.Object>" } },
  713. { "pid": 1, "tid": 21, "ts": 2829571.2890625, "dur": 12632.399559020996, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 12.632399559020996, "detail": "System.Threading.Tasks.Shared`1<System.Threading.CancellationTokenRegistration>" } },
  714. { "pid": 1, "tid": 21, "ts": 2842379.39453125, "dur": 1654.5000076293945, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6545000076293945, "detail": "System.Threading.ThreadPoolWorkQueue/SparseArray`1<System.Object>" } },
  715. { "pid": 1, "tid": 21, "ts": 2844036.1328125, "dur": 687.6000165939331, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6876000165939331, "detail": "System.Threading.SparselyPopulatedArrayAddInfo`1<System.Object>" } },
  716. { "pid": 1, "tid": 21, "ts": 2844725.341796875, "dur": 37897.69744873047, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 37.89769744873047, "detail": "System.Threading.SparselyPopulatedArrayFragment`1<System.Object>" } },
  717. { "pid": 1, "tid": 21, "ts": 2882624.755859375, "dur": 1997.499942779541, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.997499942779541, "detail": "System.Threading.SparselyPopulatedArray`1<System.Object>" } },
  718. { "pid": 1, "tid": 21, "ts": 2884624.267578125, "dur": 680.0000071525574, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6800000071525574, "detail": "System.Collections.Generic.StackDebugView`1<System.Object>" } },
  719. { "pid": 1, "tid": 21, "ts": 2885305.6640625, "dur": 8622.200012207031, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.622200012207031, "detail": "System.Collections.Generic.Stack`1<System.Object>" } },
  720. { "pid": 1, "tid": 21, "ts": 2893930.17578125, "dur": 477.8999984264374, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4778999984264374, "detail": "System.Reflection.MonoProperty/StaticGetter`1<System.Object>" } },
  721. { "pid": 1, "tid": 21, "ts": 2894410.400390625, "dur": 1625.3000497817993, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6253000497817993, "detail": "System.Threading.Tasks.SystemThreadingTasks_FutureDebugView`1<System.Object>" } },
  722. { "pid": 1, "tid": 21, "ts": 2896038.818359375, "dur": 602.2999882698059, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6022999882698059, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/Tables<System.Object,System.Object>" } },
  723. { "pid": 1, "tid": 21, "ts": 2896643.06640625, "dur": 1079.300045967102, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.079300045967102, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Boolean>" } },
  724. { "pid": 1, "tid": 21, "ts": 2897724.12109375, "dur": 648.5000252723694, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6485000252723694, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Int32>" } },
  725. { "pid": 1, "tid": 21, "ts": 2898373.779296875, "dur": 725.1999974250793, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7251999974250793, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Object>" } },
  726. { "pid": 1, "tid": 21, "ts": 2899100.5859375, "dur": 2420.9001064300537, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4209001064300537, "detail": "System.Runtime.CompilerServices.TaskAwaiter`1<System.Threading.Tasks.VoidTaskResult>" } },
  727. { "pid": 1, "tid": 21, "ts": 2901523.4375, "dur": 941.6000247001648, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9416000247001648, "detail": "System.Threading.Tasks.TaskFactory`1<System.Boolean>" } },
  728. { "pid": 1, "tid": 21, "ts": 2902466.796875, "dur": 659.0999960899353, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6590999960899353, "detail": "System.Threading.Tasks.TaskFactory`1<System.Int32>" } },
  729. { "pid": 1, "tid": 21, "ts": 2903127.197265625, "dur": 410.8999967575073, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4108999967575073, "detail": "System.Threading.Tasks.TaskFactory`1<System.Object>" } },
  730. { "pid": 1, "tid": 21, "ts": 2903539.794921875, "dur": 411.19998693466187, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.41119998693466187, "detail": "System.Threading.Tasks.TaskFactory`1<System.Threading.Tasks.VoidTaskResult>" } },
  731. { "pid": 1, "tid": 21, "ts": 2903952.392578125, "dur": 5521.100044250488, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.521100044250488, "detail": "System.Threading.Tasks.Task`1<System.Boolean>" } },
  732. { "pid": 1, "tid": 21, "ts": 2909475.341796875, "dur": 4627.500057220459, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.627500057220459, "detail": "System.Threading.Tasks.Task`1<System.Int32>" } },
  733. { "pid": 1, "tid": 21, "ts": 2914104.248046875, "dur": 4793.300151824951, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.793300151824951, "detail": "System.Threading.Tasks.Task`1<System.Object>" } },
  734. { "pid": 1, "tid": 21, "ts": 2918899.4140625, "dur": 6627.299785614014, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.627299785614014, "detail": "System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>" } },
  735. { "pid": 1, "tid": 21, "ts": 2925529.541015625, "dur": 2899.4998931884766, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.8994998931884766, "detail": "System.Tuple`2<System.Object,System.Char>" } },
  736. { "pid": 1, "tid": 21, "ts": 2928431.396484375, "dur": 2990.9000396728516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.9909000396728516, "detail": "System.Tuple`2<System.Object,System.Object>" } },
  737. { "pid": 1, "tid": 21, "ts": 2931424.560546875, "dur": 4707.099914550781, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.707099914550781, "detail": "System.Tuple`3<System.Object,System.Object,System.Object>" } },
  738. { "pid": 1, "tid": 21, "ts": 2936133.7890625, "dur": 528.9000272750854, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5289000272750854, "detail": "System.Tuple`4<System.Object,System.Object,System.Int32,System.Int32>" } },
  739. { "pid": 1, "tid": 21, "ts": 2936664.306640625, "dur": 522.7000117301941, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5227000117301941, "detail": "System.Tuple`4<System.Object,System.Object,System.Object,System.Object>" } },
  740. { "pid": 1, "tid": 21, "ts": 2937195.80078125, "dur": 2697.2999572753906, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6972999572753906, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>" } },
  741. { "pid": 1, "tid": 21, "ts": 2939895.263671875, "dur": 1413.599967956543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.413599967956543, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.FloatTween>" } },
  742. { "pid": 1, "tid": 21, "ts": 2941311.03515625, "dur": 506.5000057220459, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5065000057220459, "detail": "UnityEngine.Events.UnityAction`1<System.Boolean>" } },
  743. { "pid": 1, "tid": 21, "ts": 2941819.3359375, "dur": 484.499990940094, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.484499990940094, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.Color>" } },
  744. { "pid": 1, "tid": 21, "ts": 2942305.17578125, "dur": 439.0000104904175, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4390000104904175, "detail": "UnityEngine.Events.UnityAction`1<System.Int32>" } },
  745. { "pid": 1, "tid": 21, "ts": 2942745.1171875, "dur": 550.1999855041504, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5501999855041504, "detail": "UnityEngine.Events.UnityAction`1<System.Object>" } },
  746. { "pid": 1, "tid": 21, "ts": 2943297.119140625, "dur": 461.6999924182892, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4616999924182892, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.SceneManagement.Scene>" } },
  747. { "pid": 1, "tid": 21, "ts": 2943760.498046875, "dur": 478.8999855518341, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4788999855518341, "detail": "UnityEngine.Events.UnityAction`1<System.Single>" } },
  748. { "pid": 1, "tid": 21, "ts": 2944242.919921875, "dur": 508.59999656677246, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5085999965667725, "detail": "UnityEngine.Events.UnityAction`1<UnityEngine.Vector2>" } },
  749. { "pid": 1, "tid": 21, "ts": 2944753.173828125, "dur": 634.7000002861023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6347000002861023, "detail": "UnityEngine.Events.UnityAction`2<System.Object,System.Object>" } },
  750. { "pid": 1, "tid": 21, "ts": 2945389.892578125, "dur": 627.6000142097473, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6276000142097473, "detail": "UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,System.Int32Enum>" } },
  751. { "pid": 1, "tid": 21, "ts": 2946018.798828125, "dur": 507.8999996185303, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5078999996185303, "detail": "UnityEngine.Events.UnityAction`2<UnityEngine.SceneManagement.Scene,UnityEngine.SceneManagement.Scene>" } },
  752. { "pid": 1, "tid": 21, "ts": 2946528.564453125, "dur": 693.4000253677368, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6934000253677368, "detail": "UnityEngine.Events.UnityAction`3<System.Object,System.Object,System.Object>" } },
  753. { "pid": 1, "tid": 21, "ts": 2947223.6328125, "dur": 719.6000218391418, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7196000218391418, "detail": "UnityEngine.Events.UnityAction`4<System.Object,System.Object,System.Object,System.Object>" } },
  754. { "pid": 1, "tid": 21, "ts": 2947945.068359375, "dur": 3447.200059890747, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.447200059890747, "detail": "UnityEngine.Events.UnityEvent`1<System.Boolean>" } },
  755. { "pid": 1, "tid": 21, "ts": 2951394.287109375, "dur": 2565.2999877929688, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.5652999877929688, "detail": "UnityEngine.Events.UnityEvent`1<UnityEngine.Color>" } },
  756. { "pid": 1, "tid": 21, "ts": 2953962.158203125, "dur": 3214.099884033203, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.214099884033203, "detail": "UnityEngine.Events.UnityEvent`1<System.Int32>" } },
  757. { "pid": 1, "tid": 21, "ts": 2957177.978515625, "dur": 3814.300060272217, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.814300060272217, "detail": "UnityEngine.Events.UnityEvent`1<System.Object>" } },
  758. { "pid": 1, "tid": 21, "ts": 2960994.140625, "dur": 2470.9999561309814, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4709999561309814, "detail": "UnityEngine.Events.UnityEvent`1<System.Single>" } },
  759. { "pid": 1, "tid": 21, "ts": 2963466.796875, "dur": 2423.0000972747803, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4230000972747803, "detail": "UnityEngine.Events.UnityEvent`1<UnityEngine.Vector2>" } },
  760. { "pid": 1, "tid": 21, "ts": 2965891.6015625, "dur": 929.7000169754028, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9297000169754028, "detail": "UnityEngine.Events.UnityEvent`2<System.Object,System.Object>" } },
  761. { "pid": 1, "tid": 21, "ts": 2966823.2421875, "dur": 979.7000288963318, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9797000288963318, "detail": "UnityEngine.Events.UnityEvent`3<System.Object,System.Object,System.Object>" } },
  762. { "pid": 1, "tid": 21, "ts": 2967805.6640625, "dur": 1052.9999732971191, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0529999732971191, "detail": "UnityEngine.Events.UnityEvent`4<System.Object,System.Object,System.Object,System.Object>" } },
  763. { "pid": 1, "tid": 21, "ts": 2968860.595703125, "dur": 4937.399864196777, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.937399864196777, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Int32,System.Object>" } },
  764. { "pid": 1, "tid": 21, "ts": 2973800.537109375, "dur": 4060.5998039245605, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.0605998039245605, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Int32>" } },
  765. { "pid": 1, "tid": 21, "ts": 2977862.79296875, "dur": 4104.400157928467, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.104400157928467, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Object>" } },
  766. { "pid": 1, "tid": 21, "ts": 2981968.994140625, "dur": 4124.000072479248, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.124000072479248, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection<System.Object,System.Resources.ResourceLocator>" } },
  767. { "pid": 1, "tid": 21, "ts": 2986094.7265625, "dur": 1110.1000308990479, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1101000308990479, "detail": "System.Linq.Enumerable/WhereArrayIterator`1<System.Object>" } },
  768. { "pid": 1, "tid": 21, "ts": 2987206.54296875, "dur": 2113.6999130249023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1136999130249023, "detail": "System.Linq.Enumerable/WhereEnumerableIterator`1<System.Object>" } },
  769. { "pid": 1, "tid": 21, "ts": 2989322.75390625, "dur": 1434.2000484466553, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4342000484466553, "detail": "System.Linq.Enumerable/WhereListIterator`1<System.Object>" } },
  770. { "pid": 1, "tid": 21, "ts": 2990759.521484375, "dur": 28902.89878845215, "ph": "X", "name": "Generics5.cpp", "args": { "durationMS": 28.90289878845215, "detail": "" } },
  771. { "pid": 1, "tid": 21, "ts": 3019682.6171875, "dur": 814.8999810218811, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8148999810218811, "detail": "System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  772. { "pid": 1, "tid": 21, "ts": 3021163.818359375, "dur": 458.0000042915344, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4580000042915344, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
  773. { "pid": 1, "tid": 21, "ts": 3023992.67578125, "dur": 380.89999556541443, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38089999556541443, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
  774. { "pid": 1, "tid": 21, "ts": 3025134.765625, "dur": 580.3999900817871, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5803999900817871, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>" } },
  775. { "pid": 1, "tid": 21, "ts": 3026309.08203125, "dur": 499.7999966144562, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4997999966144562, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UIVertex>" } },
  776. { "pid": 1, "tid": 21, "ts": 3027050.29296875, "dur": 722.4000096321106, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7224000096321106, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  777. { "pid": 1, "tid": 21, "ts": 3028001.708984375, "dur": 353.300005197525, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.353300005197525, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  778. { "pid": 1, "tid": 21, "ts": 3030172.36328125, "dur": 453.50000262260437, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.45350000262260437, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeNamedArgument>" } },
  779. { "pid": 1, "tid": 21, "ts": 3030627.44140625, "dur": 338.4999930858612, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3384999930858612, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Reflection.CustomAttributeTypedArgument>" } },
  780. { "pid": 1, "tid": 21, "ts": 3030967.529296875, "dur": 354.20000553131104, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35420000553131104, "detail": "System.Collections.ObjectModel.ReadOnlyCollection`1<System.Exception>" } },
  781. { "pid": 1, "tid": 21, "ts": 3034367.919921875, "dur": 770.5000042915344, "ph": "X", "name": "Il2CppGenericComDefinitions15.cpp", "args": { "durationMS": 0.7705000042915344, "detail": "" } },
  782. { "pid": 1, "tid": 21, "ts": 3035168.45703125, "dur": 107975.29602050781, "ph": "X", "name": "Idle", "args": { "durationMS": 107.97529602050781, "detail": "" } },
  783. { "pid": 1, "tid": 22, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  784. { "pid": 1, "tid": 22, "ts": 1318940.0634765625, "dur": 12517.29965209961, "ph": "X", "name": "Idle", "args": { "durationMS": 12.51729965209961, "detail": "" } },
  785. { "pid": 1, "tid": 22, "ts": 1428725.9521484375, "dur": 3578.2999992370605, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.5782999992370605, "detail": "UnityEngine.SharedInternalsModule" } },
  786. { "pid": 1, "tid": 22, "ts": 1433401.4892578125, "dur": 185070.1904296875, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 185.0701904296875, "detail": "System.Xml" } },
  787. { "pid": 1, "tid": 22, "ts": 1434932.4951171875, "dur": 183538.10119628906, "ph": "X", "name": "System.Xml_Attr.cpp", "args": { "durationMS": 183.53810119628906, "detail": "" } },
  788. { "pid": 1, "tid": 22, "ts": 1620523.193359375, "dur": 8506.400108337402, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 8.506400108337402, "detail": "UnityEngine.AnimationModule" } },
  789. { "pid": 1, "tid": 22, "ts": 1620537.4755859375, "dur": 8491.399765014648, "ph": "X", "name": "UnityEngine.AnimationModule_Attr.cpp", "args": { "durationMS": 8.491399765014648, "detail": "" } },
  790. { "pid": 1, "tid": 22, "ts": 1629034.1796875, "dur": 16990.90003967285, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 16.99090003967285, "detail": "UnityEngine.UnityWebRequestModule" } },
  791. { "pid": 1, "tid": 22, "ts": 1629051.6357421875, "dur": 16972.79930114746, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_Attr.cpp", "args": { "durationMS": 16.97279930114746, "detail": "" } },
  792. { "pid": 1, "tid": 22, "ts": 1646028.4423828125, "dur": 2685.6000423431396, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 2.6856000423431396, "detail": "Assembly-CSharp" } },
  793. { "pid": 1, "tid": 22, "ts": 1646050.1708984375, "dur": 2663.0001068115234, "ph": "X", "name": "Assembly-CSharp_Attr.cpp", "args": { "durationMS": 2.6630001068115234, "detail": "" } },
  794. { "pid": 1, "tid": 22, "ts": 1655352.1728515625, "dur": 800.599992275238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.800599992275238, "detail": "<Module>" } },
  795. { "pid": 1, "tid": 22, "ts": 1656154.052734375, "dur": 56808.60137939453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 56.80860137939453, "detail": "UnityEngine.CameraRaycastHelper" } },
  796. { "pid": 1, "tid": 22, "ts": 1713013.5498046875, "dur": 7922.299861907959, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.922299861907959, "detail": "UnityEngine.Input" } },
  797. { "pid": 1, "tid": 22, "ts": 1720938.4765625, "dur": 41171.600341796875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 41.171600341796875, "detail": "UnityEngine.SendMouseEvents" } },
  798. { "pid": 1, "tid": 22, "ts": 1762111.328125, "dur": 1029.8999547958374, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0298999547958374, "detail": "UnityEngine.Touch" } },
  799. { "pid": 1, "tid": 22, "ts": 1763158.8134765625, "dur": 1648.6999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6486999988555908, "detail": "UnityEngine.SendMouseEvents/HitInfo" } },
  800. { "pid": 1, "tid": 22, "ts": 1764810.302734375, "dur": 5605.599880218506, "ph": "X", "name": "UnityEngine.InputLegacyModule.cpp", "args": { "durationMS": 5.605599880218506, "detail": "" } },
  801. { "pid": 1, "tid": 22, "ts": 1770475.341796875, "dur": 739.0999794006348, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7390999794006348, "detail": "UnityEngine.AudioClip" } },
  802. { "pid": 1, "tid": 22, "ts": 1771215.8203125, "dur": 538.6999845504761, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5386999845504761, "detail": "UnityEngine.Audio.AudioClipPlayable" } },
  803. { "pid": 1, "tid": 22, "ts": 1771771.8505859375, "dur": 778.8000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7788000106811523, "detail": "UnityEngine.Audio.AudioMixerPlayable" } },
  804. { "pid": 1, "tid": 22, "ts": 1772582.51953125, "dur": 615.4999732971191, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6154999732971191, "detail": "UnityEngine.Experimental.Audio.AudioSampleProvider" } },
  805. { "pid": 1, "tid": 22, "ts": 1773198.73046875, "dur": 365.70000648498535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.36570000648498535, "detail": "UnityEngine.AudioSettings" } },
  806. { "pid": 1, "tid": 22, "ts": 1773565.5517578125, "dur": 692.4999952316284, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6924999952316284, "detail": "UnityEngine.AudioSource" } },
  807. { "pid": 1, "tid": 22, "ts": 1774259.1552734375, "dur": 18860.79978942871, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.86079978942871, "detail": "UnityEngine.AudioClip/PCMReaderCallback" } },
  808. { "pid": 1, "tid": 22, "ts": 1793120.849609375, "dur": 618.7999844551086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6187999844551086, "detail": "UnityEngine.AudioClip/PCMSetPositionCallback" } },
  809. { "pid": 1, "tid": 22, "ts": 1793740.8447265625, "dur": 624.8000264167786, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6248000264167786, "detail": "UnityEngine.Experimental.Audio.AudioSampleProvider/SampleFramesHandler" } },
  810. { "pid": 1, "tid": 22, "ts": 1794366.69921875, "dur": 596.0000157356262, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5960000157356262, "detail": "UnityEngine.AudioSettings/AudioConfigurationChangeHandler" } },
  811. { "pid": 1, "tid": 22, "ts": 1794964.7216796875, "dur": 6646.999835968018, "ph": "X", "name": "UnityEngine.AudioModule.cpp", "args": { "durationMS": 6.646999835968018, "detail": "" } },
  812. { "pid": 1, "tid": 22, "ts": 1801648.3154296875, "dur": 8268.30005645752, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.26830005645752, "detail": "Mono.Security.ASN1" } },
  813. { "pid": 1, "tid": 22, "ts": 1809917.96875, "dur": 2548.3999252319336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5483999252319336, "detail": "Mono.Security.ASN1Convert" } },
  814. { "pid": 1, "tid": 22, "ts": 1812467.28515625, "dur": 1005.1000118255615, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0051000118255615, "detail": "Mono.Security.BitConverterLE" } },
  815. { "pid": 1, "tid": 22, "ts": 1813473.6328125, "dur": 535.099983215332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.535099983215332, "detail": "Mono.Security.Cryptography.CryptoConvert" } },
  816. { "pid": 1, "tid": 22, "ts": 1814011.23046875, "dur": 10491.499900817871, "ph": "X", "name": "Mono.Security.cpp", "args": { "durationMS": 10.491499900817871, "detail": "" } },
  817. { "pid": 1, "tid": 22, "ts": 1824555.6640625, "dur": 840.9000039100647, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8409000039100647, "detail": "UnityEngine.EventSystems.AbstractEventData" } },
  818. { "pid": 1, "tid": 22, "ts": 1825397.3388671875, "dur": 3974.6999740600586, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9746999740600586, "detail": "UnityEngine.UI.AnimationTriggers" } },
  819. { "pid": 1, "tid": 22, "ts": 1829372.9248046875, "dur": 8495.599746704102, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.495599746704102, "detail": "UnityEngine.UI.AspectRatioFitter" } },
  820. { "pid": 1, "tid": 22, "ts": 1837870.1171875, "dur": 1064.0000104904175, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0640000104904175, "detail": "UnityEngine.EventSystems.AxisEventData" } },
  821. { "pid": 1, "tid": 22, "ts": 1838934.814453125, "dur": 603.9000153541565, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6039000153541565, "detail": "UnityEngine.EventSystems.BaseEventData" } },
  822. { "pid": 1, "tid": 22, "ts": 1839539.55078125, "dur": 3883.1000328063965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8831000328063965, "detail": "UnityEngine.EventSystems.BaseInput" } },
  823. { "pid": 1, "tid": 22, "ts": 1843423.828125, "dur": 13987.40005493164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.98740005493164, "detail": "UnityEngine.EventSystems.BaseInputModule" } },
  824. { "pid": 1, "tid": 22, "ts": 1857412.353515625, "dur": 2479.1998863220215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4791998863220215, "detail": "UnityEngine.UI.BaseMeshEffect" } },
  825. { "pid": 1, "tid": 22, "ts": 1859892.822265625, "dur": 3776.7999172210693, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7767999172210693, "detail": "UnityEngine.EventSystems.BaseRaycaster" } },
  826. { "pid": 1, "tid": 22, "ts": 1863803.7109375, "dur": 2559.7000122070312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5597000122070312, "detail": "UnityEngine.UI.Button" } },
  827. { "pid": 1, "tid": 22, "ts": 1866364.501953125, "dur": 9182.20043182373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.18220043182373, "detail": "UnityEngine.UI.CanvasScaler" } },
  828. { "pid": 1, "tid": 22, "ts": 1875557.6171875, "dur": 9855.199813842773, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.855199813842773, "detail": "UnityEngine.UI.CanvasUpdateRegistry" } },
  829. { "pid": 1, "tid": 22, "ts": 1885413.9404296875, "dur": 1946.4000463485718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9464000463485718, "detail": "UnityEngine.UI.ClipperRegistry" } },
  830. { "pid": 1, "tid": 22, "ts": 1887361.6943359375, "dur": 3300.6999492645264, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.3006999492645264, "detail": "UnityEngine.UI.Clipping" } },
  831. { "pid": 1, "tid": 22, "ts": 1890664.0625, "dur": 5922.900199890137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.922900199890137, "detail": "UnityEngine.UI.ColorBlock" } },
  832. { "pid": 1, "tid": 22, "ts": 1896588.2568359375, "dur": 4291.6998863220215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.2916998863220215, "detail": "UnityEngine.UI.CoroutineTween.ColorTween" } },
  833. { "pid": 1, "tid": 22, "ts": 1900881.34765625, "dur": 3851.3998985290527, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8513998985290527, "detail": "UnityEngine.UI.ContentSizeFitter" } },
  834. { "pid": 1, "tid": 22, "ts": 1904733.7646484375, "dur": 32064.899444580078, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 32.06489944458008, "detail": "UnityEngine.UI.DefaultControls" } },
  835. { "pid": 1, "tid": 22, "ts": 1936799.9267578125, "dur": 34726.497650146484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.726497650146484, "detail": "UnityEngine.UI.Dropdown" } },
  836. { "pid": 1, "tid": 22, "ts": 1971607.5439453125, "dur": 14521.599769592285, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.521599769592285, "detail": "UnityEngine.EventSystems.EventSystem" } },
  837. { "pid": 1, "tid": 22, "ts": 1986130.37109375, "dur": 4578.59992980957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.57859992980957, "detail": "UnityEngine.EventSystems.EventTrigger" } },
  838. { "pid": 1, "tid": 22, "ts": 1990722.16796875, "dur": 34405.89904785156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.40589904785156, "detail": "UnityEngine.EventSystems.ExecuteEvents" } },
  839. { "pid": 1, "tid": 22, "ts": 2025129.5166015625, "dur": 2258.3999633789062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2583999633789062, "detail": "UnityEngine.UI.CoroutineTween.FloatTween" } },
  840. { "pid": 1, "tid": 22, "ts": 2027388.671875, "dur": 3293.800115585327, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.293800115585327, "detail": "UnityEngine.UI.FontData" } },
  841. { "pid": 1, "tid": 22, "ts": 2030683.9599609375, "dur": 2781.899929046631, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.781899929046631, "detail": "UnityEngine.UI.FontUpdateTracker" } },
  842. { "pid": 1, "tid": 22, "ts": 2033467.6513671875, "dur": 33633.8996887207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.6338996887207, "detail": "UnityEngine.UI.Graphic" } },
  843. { "pid": 1, "tid": 22, "ts": 2067104.00390625, "dur": 56751.99890136719, "ph": "X", "name": "UnityEngine.UI.cpp", "args": { "durationMS": 56.75199890136719, "detail": "" } },
  844. { "pid": 1, "tid": 22, "ts": 2124019.287109375, "dur": 452.60000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45260000228881836, "detail": "System.Reflection.CustomAttributeFormatException" } },
  845. { "pid": 1, "tid": 22, "ts": 2124472.65625, "dur": 1022.8999853134155, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0228999853134155, "detail": "System.Reflection.CustomAttributeNamedArgument" } },
  846. { "pid": 1, "tid": 22, "ts": 2125496.826171875, "dur": 2457.4999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4574999809265137, "detail": "System.Reflection.CustomAttributeTypedArgument" } },
  847. { "pid": 1, "tid": 22, "ts": 2128062.98828125, "dur": 4063.6000633239746, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.063600063323975, "detail": "System.DBNull" } },
  848. { "pid": 1, "tid": 22, "ts": 2132127.44140625, "dur": 680.400013923645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.680400013923645, "detail": "System.DTSubString" } },
  849. { "pid": 1, "tid": 22, "ts": 2132818.84765625, "dur": 23614.099502563477, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 23.614099502563477, "detail": "System.DateTime" } },
  850. { "pid": 1, "tid": 22, "ts": 2156544.677734375, "dur": 17294.39926147461, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.29439926147461, "detail": "System.DateTimeFormat" } },
  851. { "pid": 1, "tid": 22, "ts": 2173849.609375, "dur": 42713.10043334961, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 42.71310043334961, "detail": "System.Globalization.DateTimeFormatInfo" } },
  852. { "pid": 1, "tid": 22, "ts": 2216563.96484375, "dur": 8688.199996948242, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.688199996948242, "detail": "System.Globalization.DateTimeFormatInfoScanner" } },
  853. { "pid": 1, "tid": 22, "ts": 2225267.578125, "dur": 99091.40014648438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 99.09140014648438, "detail": "System.DateTimeParse" } },
  854. { "pid": 1, "tid": 22, "ts": 2324362.3046875, "dur": 56425.10223388672, "ph": "X", "name": "mscorlib3.cpp", "args": { "durationMS": 56.42510223388672, "detail": "" } },
  855. { "pid": 1, "tid": 22, "ts": 2380809.326171875, "dur": 1345.8000421524048, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3458000421524048, "detail": "System.Runtime.Serialization.SerializationInfoEnumerator" } },
  856. { "pid": 1, "tid": 22, "ts": 2382156.005859375, "dur": 881.9000124931335, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8819000124931335, "detail": "System.Runtime.Serialization.SerializationObjectManager" } },
  857. { "pid": 1, "tid": 22, "ts": 2383038.818359375, "dur": 434.3999922275543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4343999922275543, "detail": "System.Runtime.Remoting.Messaging.ServerContextTerminatorSink" } },
  858. { "pid": 1, "tid": 22, "ts": 2383473.6328125, "dur": 1694.100022315979, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.694100022315979, "detail": "System.Runtime.Remoting.ServerIdentity" } },
  859. { "pid": 1, "tid": 22, "ts": 2385168.701171875, "dur": 352.2000014781952, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3522000014781952, "detail": "System.Runtime.Remoting.Messaging.ServerObjectReplySink" } },
  860. { "pid": 1, "tid": 22, "ts": 2385521.97265625, "dur": 644.6999907493591, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6446999907493591, "detail": "System.Runtime.Remoting.Messaging.ServerObjectTerminatorSink" } },
  861. { "pid": 1, "tid": 22, "ts": 2386178.955078125, "dur": 37468.79959106445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.46879959106445, "detail": "Mono.Globalization.Unicode.SimpleCollator" } },
  862. { "pid": 1, "tid": 22, "ts": 2423648.4375, "dur": 5534.900188446045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.534900188446045, "detail": "System.Single" } },
  863. { "pid": 1, "tid": 22, "ts": 2429184.814453125, "dur": 956.3000202178955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9563000202178955, "detail": "System.Runtime.Remoting.SingleCallIdentity" } },
  864. { "pid": 1, "tid": 22, "ts": 2430142.578125, "dur": 1017.1999931335449, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.017199993133545, "detail": "System.Runtime.Remoting.SingletonIdentity" } },
  865. { "pid": 1, "tid": 22, "ts": 2431447.998046875, "dur": 1640.5999660491943, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6405999660491943, "detail": "System.Runtime.Serialization.Formatters.Binary.SizedArray" } },
  866. { "pid": 1, "tid": 22, "ts": 2433109.375, "dur": 11505.900382995605, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.505900382995605, "detail": "Mono.Xml.SmallXmlParser" } },
  867. { "pid": 1, "tid": 22, "ts": 2444834.716796875, "dur": 490.9000098705292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4909000098705292, "detail": "System.Runtime.Remoting.Metadata.SoapAttribute" } },
  868. { "pid": 1, "tid": 22, "ts": 2445326.416015625, "dur": 337.5999927520752, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3375999927520752, "detail": "System.Runtime.Remoting.Metadata.SoapFieldAttribute" } },
  869. { "pid": 1, "tid": 22, "ts": 2445664.55078125, "dur": 654.9999713897705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6549999713897705, "detail": "System.Runtime.Remoting.Metadata.SoapMethodAttribute" } },
  870. { "pid": 1, "tid": 22, "ts": 2446404.296875, "dur": 4707.499980926514, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.707499980926514, "detail": "System.Runtime.Remoting.SoapServices" } },
  871. { "pid": 1, "tid": 22, "ts": 2451113.28125, "dur": 1136.8999481201172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1368999481201172, "detail": "System.Runtime.Remoting.Metadata.SoapTypeAttribute" } },
  872. { "pid": 1, "tid": 22, "ts": 2452251.46484375, "dur": 2831.5000534057617, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8315000534057617, "detail": "System.Globalization.SortKey" } },
  873. { "pid": 1, "tid": 22, "ts": 2455084.9609375, "dur": 6926.799774169922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.926799774169922, "detail": "Mono.Globalization.Unicode.SortKeyBuffer" } },
  874. { "pid": 1, "tid": 22, "ts": 2462025.146484375, "dur": 5916.900157928467, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.916900157928467, "detail": "System.Collections.SortedList" } },
  875. { "pid": 1, "tid": 22, "ts": 2467943.115234375, "dur": 4352.0002365112305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.3520002365112305, "detail": "System.Threading.SpinLock" } },
  876. { "pid": 1, "tid": 22, "ts": 2472296.142578125, "dur": 655.9000015258789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6559000015258789, "detail": "System.Threading.SpinWait" } },
  877. { "pid": 1, "tid": 22, "ts": 2472953.125, "dur": 2547.6999282836914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5476999282836914, "detail": "System.Collections.Stack" } },
  878. { "pid": 1, "tid": 22, "ts": 2475501.953125, "dur": 1995.4999685287476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9954999685287476, "detail": "System.Runtime.Remoting.Messaging.StackBuilderSink" } },
  879. { "pid": 1, "tid": 22, "ts": 2477508.056640625, "dur": 1886.7000341415405, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8867000341415405, "detail": "System.Diagnostics.StackFrame" } },
  880. { "pid": 1, "tid": 22, "ts": 2479395.751953125, "dur": 477.2000014781952, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4772000014781952, "detail": "System.Threading.Tasks.StackGuard" } },
  881. { "pid": 1, "tid": 22, "ts": 2479874.0234375, "dur": 884.5000267028809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8845000267028809, "detail": "System.StackOverflowException" } },
  882. { "pid": 1, "tid": 22, "ts": 2480760.009765625, "dur": 5483.699798583984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.483699798583984, "detail": "System.Diagnostics.StackTrace" } },
  883. { "pid": 1, "tid": 22, "ts": 2486245.1171875, "dur": 975.1999974250793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9751999974250793, "detail": "System.Threading.Tasks.StandardTaskContinuation" } },
  884. { "pid": 1, "tid": 22, "ts": 2487406.494140625, "dur": 7035.500049591064, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.0355000495910645, "detail": "System.IO.Stream" } },
  885. { "pid": 1, "tid": 22, "ts": 2494443.359375, "dur": 10513.899803161621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.513899803161621, "detail": "System.IO.StreamReader" } },
  886. { "pid": 1, "tid": 22, "ts": 2504960.9375, "dur": 30025.501251220703, "ph": "X", "name": "mscorlib11.cpp", "args": { "durationMS": 30.025501251220703, "detail": "" } },
  887. { "pid": 1, "tid": 22, "ts": 2535267.578125, "dur": 6845.799922943115, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.845799922943115, "detail": "System.Threading.Tasks.Task`1/<>c<System.Boolean>" } },
  888. { "pid": 1, "tid": 22, "ts": 2542124.0234375, "dur": 545.7000136375427, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5457000136375427, "detail": "System.Threading.Tasks.Task`1/<>c<System.Int32>" } },
  889. { "pid": 1, "tid": 22, "ts": 2542671.630859375, "dur": 554.1999936103821, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5541999936103821, "detail": "System.Threading.Tasks.Task`1/<>c<System.Object>" } },
  890. { "pid": 1, "tid": 22, "ts": 2543227.783203125, "dur": 462.0000123977661, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4620000123977661, "detail": "System.Threading.Tasks.Task`1/<>c<System.Threading.Tasks.VoidTaskResult>" } },
  891. { "pid": 1, "tid": 22, "ts": 2543693.359375, "dur": 440.29998779296875, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.44029998779296875, "detail": "System.Linq.Enumerable/<>c__DisplayClass6_0`1<System.Object>" } },
  892. { "pid": 1, "tid": 22, "ts": 2544135.498046875, "dur": 2333.699941635132, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.333699941635132, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/<GetEnumerator>d__32<System.Object,System.Object>" } },
  893. { "pid": 1, "tid": 22, "ts": 2546471.923828125, "dur": 1789.8999452590942, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7898999452590942, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.ColorTween>" } },
  894. { "pid": 1, "tid": 22, "ts": 2548263.671875, "dur": 1732.5999736785889, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7325999736785889, "detail": "UnityEngine.UI.CoroutineTween.TweenRunner`1/<Start>d__2<UnityEngine.UI.CoroutineTween.FloatTween>" } },
  895. { "pid": 1, "tid": 22, "ts": 2549998.779296875, "dur": 631.6999793052673, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6316999793052673, "detail": "System.Action`1<System.Boolean>" } },
  896. { "pid": 1, "tid": 22, "ts": 2550631.8359375, "dur": 450.5000114440918, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4505000114440918, "detail": "System.Action`1<System.Object>" } },
  897. { "pid": 1, "tid": 22, "ts": 2551083.740234375, "dur": 561.5000128746033, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5615000128746033, "detail": "System.Action`2<System.Object,System.Boolean>" } },
  898. { "pid": 1, "tid": 22, "ts": 2551647.216796875, "dur": 600.7000207901001, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6007000207901001, "detail": "System.Action`2<System.Object,System.Int32Enum>" } },
  899. { "pid": 1, "tid": 22, "ts": 2552249.0234375, "dur": 3946.500062942505, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.946500062942505, "detail": "System.Action`2<System.Object,System.Object>" } },
  900. { "pid": 1, "tid": 22, "ts": 2556199.21875, "dur": 525.3000259399414, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5253000259399414, "detail": "System.Action`3<System.Boolean,System.Boolean,System.Int32>" } },
  901. { "pid": 1, "tid": 22, "ts": 2556726.5625, "dur": 586.1999988555908, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5861999988555908, "detail": "System.Action`3<System.Object,System.Boolean,UnityEngine.Profiling.Experimental.DebugScreenCapture>" } },
  902. { "pid": 1, "tid": 22, "ts": 2557314.208984375, "dur": 513.8000249862671, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5138000249862671, "detail": "System.Action`3<System.Object,System.Object,System.Object>" } },
  903. { "pid": 1, "tid": 22, "ts": 2557830.322265625, "dur": 14482.499122619629, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.482499122619629, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  904. { "pid": 1, "tid": 22, "ts": 2572315.4296875, "dur": 49045.799255371094, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 49.045799255371094, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>" } },
  905. { "pid": 1, "tid": 22, "ts": 2621364.013671875, "dur": 8004.799842834473, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.004799842834473, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32>" } },
  906. { "pid": 1, "tid": 22, "ts": 2629372.314453125, "dur": 6692.100048065186, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.6921000480651855, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Int32Enum>" } },
  907. { "pid": 1, "tid": 22, "ts": 2636066.89453125, "dur": 8411.800384521484, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.411800384521484, "detail": "System.Collections.Generic.ArraySortHelper`1<System.Object>" } },
  908. { "pid": 1, "tid": 22, "ts": 2644481.201171875, "dur": 6723.899841308594, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.723899841308594, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>" } },
  909. { "pid": 1, "tid": 22, "ts": 2651207.763671875, "dur": 9495.30029296875, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.49530029296875, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>" } },
  910. { "pid": 1, "tid": 22, "ts": 2660705.322265625, "dur": 6418.300151824951, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.418300151824951, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>" } },
  911. { "pid": 1, "tid": 22, "ts": 2667125.244140625, "dur": 6735.099792480469, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.735099792480469, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UILineInfo>" } },
  912. { "pid": 1, "tid": 22, "ts": 2673862.79296875, "dur": 6246.799945831299, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.246799945831299, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>" } },
  913. { "pid": 1, "tid": 22, "ts": 2680111.572265625, "dur": 5986.499786376953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.986499786376953, "detail": "System.Collections.Generic.ArraySortHelper`1<System.UInt64>" } },
  914. { "pid": 1, "tid": 22, "ts": 2686100.09765625, "dur": 32663.803100585938, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 32.66380310058594, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector3>" } },
  915. { "pid": 1, "tid": 22, "ts": 2718766.6015625, "dur": 6651.500225067139, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.651500225067139, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>" } },
  916. { "pid": 1, "tid": 22, "ts": 2725419.921875, "dur": 7233.799934387207, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.233799934387207, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  917. { "pid": 1, "tid": 22, "ts": 2732656.005859375, "dur": 9056.900024414062, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.056900024414062, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Camera/RenderRequest>" } },
  918. { "pid": 1, "tid": 22, "ts": 2741715.576171875, "dur": 6773.499965667725, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.773499965667725, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  919. { "pid": 1, "tid": 22, "ts": 2748490.72265625, "dur": 9000.699996948242, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.000699996948242, "detail": "System.Collections.Generic.ArraySortHelper`2<System.Object,System.Object>" } },
  920. { "pid": 1, "tid": 22, "ts": 2757493.1640625, "dur": 6659.6999168396, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.6596999168396, "detail": "System.Collections.Generic.ArraySortHelper`2<System.UInt64,System.Object>" } },
  921. { "pid": 1, "tid": 22, "ts": 2764160.888671875, "dur": 6032.49979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.03249979019165, "detail": "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Boolean>" } },
  922. { "pid": 1, "tid": 22, "ts": 2770194.580078125, "dur": 9835.30044555664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 9.83530044555664, "detail": "System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1<System.Object>" } },
  923. { "pid": 1, "tid": 22, "ts": 2780031.494140625, "dur": 727.5999784469604, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7275999784469604, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Boolean>" } },
  924. { "pid": 1, "tid": 22, "ts": 2780760.986328125, "dur": 575.5000114440918, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5755000114440918, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Int32>" } },
  925. { "pid": 1, "tid": 22, "ts": 2781337.890625, "dur": 600.8999943733215, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6008999943733215, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Object>" } },
  926. { "pid": 1, "tid": 22, "ts": 2781940.185546875, "dur": 614.8999929428101, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6148999929428101, "detail": "UnityEngine.Events.CachedInvokableCall`1<System.Single>" } },
  927. { "pid": 1, "tid": 22, "ts": 2782558.10546875, "dur": 1864.300012588501, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.864300012588501, "detail": "System.Collections.Generic.Comparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  928. { "pid": 1, "tid": 22, "ts": 2784423.828125, "dur": 1761.199951171875, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.761199951171875, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Color32>" } },
  929. { "pid": 1, "tid": 22, "ts": 2786187.255859375, "dur": 1834.2000246047974, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8342000246047974, "detail": "System.Collections.Generic.Comparer`1<System.Int32>" } },
  930. { "pid": 1, "tid": 22, "ts": 2788023.92578125, "dur": 8496.999740600586, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 8.496999740600586, "detail": "System.Collections.Generic.Comparer`1<System.Int32Enum>" } },
  931. { "pid": 1, "tid": 22, "ts": 2796522.705078125, "dur": 1884.1999769210815, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8841999769210815, "detail": "System.Collections.Generic.Comparer`1<System.Object>" } },
  932. { "pid": 1, "tid": 22, "ts": 2798408.447265625, "dur": 1750.3999471664429, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7503999471664429, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.RaycastHit>" } },
  933. { "pid": 1, "tid": 22, "ts": 2800162.109375, "dur": 1815.7999515533447, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8157999515533447, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.EventSystems.RaycastResult>" } },
  934. { "pid": 1, "tid": 22, "ts": 2801980.712890625, "dur": 1820.7000494003296, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8207000494003296, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UICharInfo>" } },
  935. { "pid": 1, "tid": 22, "ts": 2803803.955078125, "dur": 2046.299934387207, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.046299934387207, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UILineInfo>" } },
  936. { "pid": 1, "tid": 22, "ts": 2805852.05078125, "dur": 1554.9999475479126, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5549999475479126, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>" } },
  937. { "pid": 1, "tid": 22, "ts": 2807408.447265625, "dur": 1668.2000160217285, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6682000160217285, "detail": "System.Collections.Generic.Comparer`1<System.UInt64>" } },
  938. { "pid": 1, "tid": 22, "ts": 2809078.369140625, "dur": 1837.7000093460083, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8377000093460083, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Vector3>" } },
  939. { "pid": 1, "tid": 22, "ts": 2810917.724609375, "dur": 2085.9999656677246, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.0859999656677246, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Vector4>" } },
  940. { "pid": 1, "tid": 22, "ts": 2813005.126953125, "dur": 1832.1000337600708, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8321000337600708, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  941. { "pid": 1, "tid": 22, "ts": 2814839.599609375, "dur": 2535.399913787842, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.535399913787842, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.Camera/RenderRequest>" } },
  942. { "pid": 1, "tid": 22, "ts": 2817377.685546875, "dur": 1749.7999668121338, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7497999668121338, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  943. { "pid": 1, "tid": 22, "ts": 2819129.638671875, "dur": 664.7999882698059, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6647999882698059, "detail": "System.Comparison`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  944. { "pid": 1, "tid": 22, "ts": 2819796.630859375, "dur": 1250.2000331878662, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2502000331878662, "detail": "System.Comparison`1<UnityEngine.Color32>" } },
  945. { "pid": 1, "tid": 22, "ts": 2821048.33984375, "dur": 525.3999829292297, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5253999829292297, "detail": "System.Comparison`1<System.Int32>" } },
  946. { "pid": 1, "tid": 22, "ts": 2821575.68359375, "dur": 582.3000073432922, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5823000073432922, "detail": "System.Comparison`1<System.Int32Enum>" } },
  947. { "pid": 1, "tid": 22, "ts": 2822159.66796875, "dur": 575.6999850273132, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5756999850273132, "detail": "System.Comparison`1<System.Object>" } },
  948. { "pid": 1, "tid": 22, "ts": 2822737.060546875, "dur": 514.5999789237976, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5145999789237976, "detail": "System.Comparison`1<UnityEngine.RaycastHit>" } },
  949. { "pid": 1, "tid": 22, "ts": 2823253.662109375, "dur": 467.7000045776367, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4677000045776367, "detail": "System.Comparison`1<UnityEngine.EventSystems.RaycastResult>" } },
  950. { "pid": 1, "tid": 22, "ts": 2823722.65625, "dur": 483.9000105857849, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4839000105857849, "detail": "System.Comparison`1<UnityEngine.UICharInfo>" } },
  951. { "pid": 1, "tid": 22, "ts": 2824207.51953125, "dur": 477.1000146865845, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4771000146865845, "detail": "System.Comparison`1<UnityEngine.UILineInfo>" } },
  952. { "pid": 1, "tid": 22, "ts": 2824686.03515625, "dur": 507.8999996185303, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5078999996185303, "detail": "System.Comparison`1<UnityEngine.UIVertex>" } },
  953. { "pid": 1, "tid": 22, "ts": 2825195.068359375, "dur": 467.20001101493835, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.46720001101493835, "detail": "System.Comparison`1<System.UInt64>" } },
  954. { "pid": 1, "tid": 22, "ts": 2825664.0625, "dur": 504.29999828338623, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5042999982833862, "detail": "System.Comparison`1<UnityEngine.Vector3>" } },
  955. { "pid": 1, "tid": 22, "ts": 2826169.43359375, "dur": 477.49999165534973, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.47749999165534973, "detail": "System.Comparison`1<UnityEngine.Vector4>" } },
  956. { "pid": 1, "tid": 22, "ts": 2826648.92578125, "dur": 510.99997758865356, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5109999775886536, "detail": "System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  957. { "pid": 1, "tid": 22, "ts": 2827162.353515625, "dur": 502.4999976158142, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5024999976158142, "detail": "System.Comparison`1<UnityEngine.Camera/RenderRequest>" } },
  958. { "pid": 1, "tid": 22, "ts": 2827666.748046875, "dur": 492.5999939441681, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4925999939441681, "detail": "System.Comparison`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  959. { "pid": 1, "tid": 22, "ts": 2828161.1328125, "dur": 63866.600036621094, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 63.866600036621094, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>" } },
  960. { "pid": 1, "tid": 22, "ts": 2892066.89453125, "dur": 25141.09992980957, "ph": "X", "name": "Generics.cpp", "args": { "durationMS": 25.14109992980957, "detail": "" } },
  961. { "pid": 1, "tid": 22, "ts": 2919210.693359375, "dur": 381.00001215934753, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38100001215934753, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Color32>" } },
  962. { "pid": 1, "tid": 22, "ts": 2920192.3828125, "dur": 684.5999956130981, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6845999956130981, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.RaycastHit>" } },
  963. { "pid": 1, "tid": 22, "ts": 2920879.150390625, "dur": 520.3999876976013, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5203999876976013, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.EventSystems.RaycastResult>" } },
  964. { "pid": 1, "tid": 22, "ts": 2921401.85546875, "dur": 367.900013923645, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.367900013923645, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UICharInfo>" } },
  965. { "pid": 1, "tid": 22, "ts": 2922106.4453125, "dur": 1501.5000104904175, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.5015000104904175, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UIVertex>" } },
  966. { "pid": 1, "tid": 22, "ts": 2924164.0625, "dur": 355.5999994277954, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3555999994277954, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Vector4>" } },
  967. { "pid": 1, "tid": 22, "ts": 2924522.4609375, "dur": 1344.4000482559204, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.3444000482559204, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  968. { "pid": 1, "tid": 22, "ts": 2925871.826171875, "dur": 542.2000288963318, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5422000288963318, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.Camera/RenderRequest>" } },
  969. { "pid": 1, "tid": 22, "ts": 2926416.9921875, "dur": 636.5000009536743, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6365000009536743, "detail": "System.Collections.Generic.ArraySortHelper`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  970. { "pid": 1, "tid": 22, "ts": 2929060.302734375, "dur": 992.2000169754028, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9922000169754028, "detail": "System.Collections.Generic.Comparer`1<UnityEngine.UIVertex>" } },
  971. { "pid": 1, "tid": 22, "ts": 2931472.900390625, "dur": 561.5000128746033, "ph": "X", "name": "Il2CppGenericComDefinitions.cpp", "args": { "durationMS": 0.5615000128746033, "detail": "" } },
  972. { "pid": 1, "tid": 22, "ts": 2932614.2578125, "dur": 375.900000333786, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.375900000333786, "detail": "System.Comparison`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  973. { "pid": 1, "tid": 22, "ts": 2933316.89453125, "dur": 560.9999895095825, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5609999895095825, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Runtime.Serialization.MemberHolder,System.Reflection.MemberInfo[]>" } },
  974. { "pid": 1, "tid": 22, "ts": 2933878.90625, "dur": 540.3000116348267, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5403000116348267, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.Object,System.Object>" } },
  975. { "pid": 1, "tid": 22, "ts": 2934420.8984375, "dur": 532.1000218391418, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5321000218391418, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2<System.String,System.Object>" } },
  976. { "pid": 1, "tid": 22, "ts": 2934955.322265625, "dur": 623.8999962806702, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6238999962806702, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Threading.OSSpecificSynchronizationContext>" } },
  977. { "pid": 1, "tid": 22, "ts": 2935899.169921875, "dur": 1159.999966621399, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.159999966621399, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Runtime.Serialization.SerializationInfo>" } },
  978. { "pid": 1, "tid": 22, "ts": 2937406.982421875, "dur": 1173.30002784729, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.17330002784729, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>" } },
  979. { "pid": 1, "tid": 22, "ts": 2938820.3125, "dur": 908.5999727249146, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9085999727249146, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>" } },
  980. { "pid": 1, "tid": 22, "ts": 2939822.509765625, "dur": 870.0000047683716, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8700000047683716, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.Canvas,UnityEngine.UI.Collections.IndexedSet`1<UnityEngine.UI.Graphic>>" } },
  981. { "pid": 1, "tid": 22, "ts": 2940695.556640625, "dur": 771.7000246047974, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7717000246047974, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.Font,System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>>" } },
  982. { "pid": 1, "tid": 22, "ts": 2941468.994140625, "dur": 727.8000116348267, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7278000116348267, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.Graphic,System.Int32>" } },
  983. { "pid": 1, "tid": 22, "ts": 2942199.70703125, "dur": 859.0999841690063, "ph": "X", "name": "Il2CppGenericComDefinitions1.cpp", "args": { "durationMS": 0.8590999841690063, "detail": "" } },
  984. { "pid": 1, "tid": 22, "ts": 2943078.857421875, "dur": 725.4999876022339, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7254999876022339, "detail": "System.Collections.Generic.Dictionary`2<System.Threading.IAsyncLocal,System.Object>" } },
  985. { "pid": 1, "tid": 22, "ts": 2943806.15234375, "dur": 702.0999789237976, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7020999789237976, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.ICanvasElement,System.Int32>" } },
  986. { "pid": 1, "tid": 22, "ts": 2944510.25390625, "dur": 675.8000254631042, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6758000254631042, "detail": "System.Collections.Generic.Dictionary`2<UnityEngine.UI.IClipper,System.Int32>" } },
  987. { "pid": 1, "tid": 22, "ts": 2945187.98828125, "dur": 860.3000044822693, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8603000044822693, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Globalization.CultureInfo>" } },
  988. { "pid": 1, "tid": 22, "ts": 2946050.048828125, "dur": 700.2000212669373, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7002000212669373, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Object>" } },
  989. { "pid": 1, "tid": 22, "ts": 2946752.197265625, "dur": 677.9000163078308, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6779000163078308, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.EventSystems.PointerEventData>" } },
  990. { "pid": 1, "tid": 22, "ts": 2947432.12890625, "dur": 679.4999837875366, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6794999837875366, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.String>" } },
  991. { "pid": 1, "tid": 22, "ts": 2948114.501953125, "dur": 695.900022983551, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.695900022983551, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>" } },
  992. { "pid": 1, "tid": 22, "ts": 2948812.01171875, "dur": 705.6999802589417, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7056999802589417, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.TimeType>" } },
  993. { "pid": 1, "tid": 22, "ts": 2949520.263671875, "dur": 433.4000051021576, "ph": "X", "name": "Il2CppGenericComDefinitions2.cpp", "args": { "durationMS": 0.4334000051021576, "detail": "" } },
  994. { "pid": 1, "tid": 22, "ts": 2949970.703125, "dur": 757.8999996185303, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7578999996185303, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.GUILayoutUtility/LayoutCache>" } },
  995. { "pid": 1, "tid": 22, "ts": 2950730.224609375, "dur": 760.5000138282776, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7605000138282776, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Int32>" } },
  996. { "pid": 1, "tid": 22, "ts": 2951493.408203125, "dur": 692.3999786376953, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6923999786376953, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Object>" } },
  997. { "pid": 1, "tid": 22, "ts": 2952187.98828125, "dur": 1135.10000705719, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.13510000705719, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>" } },
  998. { "pid": 1, "tid": 22, "ts": 2953325.68359375, "dur": 861.299991607666, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.861299991607666, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Globalization.CultureInfo>" } },
  999. { "pid": 1, "tid": 22, "ts": 2954188.720703125, "dur": 872.0999956130981, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8720999956130981, "detail": "System.Collections.Generic.Dictionary`2<System.String,UnityEngine.GUIStyle>" } },
  1000. { "pid": 1, "tid": 22, "ts": 2955062.98828125, "dur": 680.1000237464905, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6801000237464905, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Int32>" } },
  1001. { "pid": 1, "tid": 22, "ts": 2955744.384765625, "dur": 695.2999830245972, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6952999830245972, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.LocalDataStoreSlot>" } },
  1002. { "pid": 1, "tid": 22, "ts": 2956441.650390625, "dur": 685.2999925613403, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6852999925613403, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Object>" } },
  1003. { "pid": 1, "tid": 22, "ts": 2957129.8828125, "dur": 415.89999198913574, "ph": "X", "name": "Il2CppGenericComDefinitions3.cpp", "args": { "durationMS": 0.41589999198913574, "detail": "" } },
  1004. { "pid": 1, "tid": 22, "ts": 2965740.966796875, "dur": 380.40000200271606, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38040000200271606, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
  1005. { "pid": 1, "tid": 22, "ts": 2968933.59375, "dur": 1200.9999752044678, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2009999752044678, "detail": "System.Array/EmptyInternalEnumerator`1<System.Diagnostics.StackFrame>" } },
  1006. { "pid": 1, "tid": 22, "ts": 2973612.548828125, "dur": 400.0000059604645, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4000000059604645, "detail": "System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>" } },
  1007. { "pid": 1, "tid": 22, "ts": 2974963.623046875, "dur": 435.699999332428, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.435699999332428, "detail": "System.Collections.Generic.LinkedList`1/Enumerator<System.Object>" } },
  1008. { "pid": 1, "tid": 22, "ts": 2977739.990234375, "dur": 427.1000027656555, "ph": "X", "name": "Il2CppGenericComDefinitions5.cpp", "args": { "durationMS": 0.4271000027656555, "detail": "" } },
  1009. { "pid": 1, "tid": 22, "ts": 2988591.552734375, "dur": 469.7999954223633, "ph": "X", "name": "Il2CppGenericComDefinitions8.cpp", "args": { "durationMS": 0.4697999954223633, "detail": "" } },
  1010. { "pid": 1, "tid": 22, "ts": 2990729.98046875, "dur": 639.6999955177307, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6396999955177307, "detail": "System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry>" } },
  1011. { "pid": 1, "tid": 22, "ts": 2991371.337890625, "dur": 576.7999887466431, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5767999887466431, "detail": "System.Collections.Generic.LinkedList`1<System.Object>" } },
  1012. { "pid": 1, "tid": 22, "ts": 2992898.4375, "dur": 404.1000008583069, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4041000008583069, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  1013. { "pid": 1, "tid": 22, "ts": 2993304.6875, "dur": 428.4999966621399, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4284999966621399, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.TimeType>>" } },
  1014. { "pid": 1, "tid": 22, "ts": 2993734.86328125, "dur": 401.8999934196472, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4018999934196472, "detail": "System.Collections.Generic.List`1<System.AggregateException>" } },
  1015. { "pid": 1, "tid": 22, "ts": 2994138.18359375, "dur": 430.9000074863434, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4309000074863434, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseInputModule>" } },
  1016. { "pid": 1, "tid": 22, "ts": 2994570.556640625, "dur": 385.10000705718994, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38510000705718994, "detail": "System.Collections.Generic.List`1<UnityEngine.Events.BaseInvokableCall>" } },
  1017. { "pid": 1, "tid": 22, "ts": 2994957.03125, "dur": 373.4999895095825, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3734999895095825, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.BaseRaycaster>" } },
  1018. { "pid": 1, "tid": 22, "ts": 2995332.275390625, "dur": 384.29999351501465, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38429999351501465, "detail": "System.Collections.Generic.List`1<UnityEngine.Canvas>" } },
  1019. { "pid": 1, "tid": 22, "ts": 2995717.7734375, "dur": 382.999986410141, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.382999986410141, "detail": "System.Collections.Generic.List`1<UnityEngine.CanvasGroup>" } },
  1020. { "pid": 1, "tid": 22, "ts": 2996103.271484375, "dur": 359.29998755455017, "ph": "X", "name": "Il2CppGenericComDefinitions9.cpp", "args": { "durationMS": 0.35929998755455017, "detail": "" } },
  1021. { "pid": 1, "tid": 22, "ts": 2996480.46875, "dur": 496.19999527931213, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.49619999527931213, "detail": "System.Collections.Generic.List`1<UnityEngine.Color32>" } },
  1022. { "pid": 1, "tid": 22, "ts": 2996978.02734375, "dur": 380.6000053882599, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3806000053882599, "detail": "System.Collections.Generic.List`1<UnityEngine.Component>" } },
  1023. { "pid": 1, "tid": 22, "ts": 2997360.107421875, "dur": 388.30000162124634, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38830000162124634, "detail": "System.Collections.Generic.List`1<Mono.Globalization.Unicode.Contraction>" } },
  1024. { "pid": 1, "tid": 22, "ts": 2997749.755859375, "dur": 379.9999952316284, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3799999952316284, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.EventSystem>" } },
  1025. { "pid": 1, "tid": 22, "ts": 2998130.859375, "dur": 576.4999985694885, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5764999985694885, "detail": "System.Collections.Generic.List`1<System.Exception>" } },
  1026. { "pid": 1, "tid": 22, "ts": 2998708.984375, "dur": 370.9000051021576, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3709000051021576, "detail": "System.Collections.Generic.List`1<System.Runtime.ExceptionServices.ExceptionDispatchInfo>" } },
  1027. { "pid": 1, "tid": 22, "ts": 2999081.298828125, "dur": 1156.499981880188, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.156499981880188, "detail": "System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry>" } },
  1028. { "pid": 1, "tid": 22, "ts": 3000239.501953125, "dur": 400.9999930858612, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4009999930858612, "detail": "System.Collections.Generic.List`1<UnityEngine.GameObject>" } },
  1029. { "pid": 1, "tid": 22, "ts": 3000641.845703125, "dur": 407.00000524520874, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40700000524520874, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Graphic>" } },
  1030. { "pid": 1, "tid": 22, "ts": 3001050.29296875, "dur": 379.7000050544739, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3797000050544739, "detail": "System.Collections.Generic.List`1<System.Threading.IAsyncLocal>" } },
  1031. { "pid": 1, "tid": 22, "ts": 3001432.12890625, "dur": 341.19999408721924, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34119999408721924, "detail": "System.Collections.Generic.List`1<System.Runtime.Remoting.Contexts.IContextProperty>" } },
  1032. { "pid": 1, "tid": 22, "ts": 3001774.658203125, "dur": 370.9999918937683, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3709999918937683, "detail": "System.Collections.Generic.List`1<System.Runtime.Serialization.IDeserializationCallback>" } },
  1033. { "pid": 1, "tid": 22, "ts": 3002148.92578125, "dur": 707.0000171661377, "ph": "X", "name": "Il2CppGenericComDefinitions10.cpp", "args": { "durationMS": 0.7070000171661377, "detail": "" } },
  1034. { "pid": 1, "tid": 22, "ts": 3002874.267578125, "dur": 379.7999918460846, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3797999918460846, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.IEventSystemHandler>" } },
  1035. { "pid": 1, "tid": 22, "ts": 3003255.615234375, "dur": 389.20000195503235, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38920000195503235, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Image>" } },
  1036. { "pid": 1, "tid": 22, "ts": 3003645.99609375, "dur": 352.69999504089355, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35269999504089355, "detail": "System.Collections.Generic.List`1<System.Int32>" } },
  1037. { "pid": 1, "tid": 22, "ts": 3003999.755859375, "dur": 422.1999943256378, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4221999943256378, "detail": "System.Collections.Generic.List`1<System.Int32Enum>" } },
  1038. { "pid": 1, "tid": 22, "ts": 3004423.583984375, "dur": 391.49999618530273, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39149999618530273, "detail": "System.Collections.Generic.List`1<Mono.Globalization.Unicode.Level2Map>" } },
  1039. { "pid": 1, "tid": 22, "ts": 3004816.89453125, "dur": 655.2000045776367, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6552000045776367, "detail": "System.Collections.Generic.List`1<System.LocalDataStore>" } },
  1040. { "pid": 1, "tid": 22, "ts": 3005473.876953125, "dur": 393.40001344680786, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39340001344680786, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Mask>" } },
  1041. { "pid": 1, "tid": 22, "ts": 3005868.896484375, "dur": 408.1000089645386, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4081000089645386, "detail": "System.Collections.Generic.List`1<System.Reflection.MethodBase>" } },
  1042. { "pid": 1, "tid": 22, "ts": 3006278.564453125, "dur": 354.99998927116394, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35499998927116394, "detail": "System.Collections.Generic.List`1<System.Reflection.MethodInfo>" } },
  1043. { "pid": 1, "tid": 22, "ts": 3006634.765625, "dur": 363.7999892234802, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3637999892234802, "detail": "System.Collections.Generic.List`1<System.ModifierSpec>" } },
  1044. { "pid": 1, "tid": 22, "ts": 3007000.48828125, "dur": 719.2000150680542, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7192000150680542, "detail": "System.Collections.Generic.List`1<System.Reflection.Module>" } },
  1045. { "pid": 1, "tid": 22, "ts": 3007720.947265625, "dur": 346.5000092983246, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3465000092983246, "detail": "System.Collections.Generic.List`1<System.Object>" } },
  1046. { "pid": 1, "tid": 22, "ts": 3008070.80078125, "dur": 461.60000562667847, "ph": "X", "name": "Il2CppGenericComDefinitions11.cpp", "args": { "durationMS": 0.46160000562667847, "detail": "" } },
  1047. { "pid": 1, "tid": 22, "ts": 3008549.8046875, "dur": 398.90000224113464, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39890000224113464, "detail": "System.Collections.Generic.List`1<UnityEngine.Events.PersistentCall>" } },
  1048. { "pid": 1, "tid": 22, "ts": 3008949.951171875, "dur": 599.2000102996826, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5992000102996826, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>" } },
  1049. { "pid": 1, "tid": 22, "ts": 3009550.29296875, "dur": 375.0999867916107, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3750999867916107, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.RectMask2D>" } },
  1050. { "pid": 1, "tid": 22, "ts": 3009927.24609375, "dur": 384.799987077713, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.384799987077713, "detail": "System.Collections.Generic.List`1<UnityEngine.RectTransform>" } },
  1051. { "pid": 1, "tid": 22, "ts": 3010313.4765625, "dur": 379.7999918460846, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3797999918460846, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexNode>" } },
  1052. { "pid": 1, "tid": 22, "ts": 3010694.3359375, "dur": 378.69998812675476, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37869998812675476, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexOptions>" } },
  1053. { "pid": 1, "tid": 22, "ts": 3011074.951171875, "dur": 384.0999901294708, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3840999901294708, "detail": "System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>" } },
  1054. { "pid": 1, "tid": 22, "ts": 3011460.693359375, "dur": 369.70001459121704, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.36970001459121704, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Selectable>" } },
  1055. { "pid": 1, "tid": 22, "ts": 3011832.03125, "dur": 395.5000042915344, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3955000042915344, "detail": "System.Collections.Generic.List`1<System.Runtime.Serialization.SerializationFieldInfo>" } },
  1056. { "pid": 1, "tid": 22, "ts": 3012228.759765625, "dur": 371.6000020503998, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3716000020503998, "detail": "System.Collections.Generic.List`1<UnityEngine.Sprite>" } },
  1057. { "pid": 1, "tid": 22, "ts": 3012601.5625, "dur": 648.8999724388123, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6488999724388123, "detail": "System.Collections.Generic.List`1<System.Diagnostics.StackFrame>" } },
  1058. { "pid": 1, "tid": 22, "ts": 3013252.197265625, "dur": 399.3000090122223, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3993000090122223, "detail": "System.Collections.Generic.List`1<System.String>" } },
  1059. { "pid": 1, "tid": 22, "ts": 3013654.78515625, "dur": 740.1999831199646, "ph": "X", "name": "Il2CppGenericComDefinitions12.cpp", "args": { "durationMS": 0.7401999831199646, "detail": "" } },
  1060. { "pid": 1, "tid": 22, "ts": 3014412.59765625, "dur": 502.90000438690186, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5029000043869019, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector4>" } },
  1061. { "pid": 1, "tid": 22, "ts": 3014917.236328125, "dur": 1283.400058746338, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.283400058746338, "detail": "System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  1062. { "pid": 1, "tid": 22, "ts": 3016202.63671875, "dur": 632.099986076355, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.632099986076355, "detail": "System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>" } },
  1063. { "pid": 1, "tid": 22, "ts": 3016836.181640625, "dur": 409.39998626708984, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40939998626708984, "detail": "System.Collections.Generic.List`1<System.IO.Directory/SearchData>" } },
  1064. { "pid": 1, "tid": 22, "ts": 3017247.0703125, "dur": 375.99998712539673, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37599998712539673, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/DropdownItem>" } },
  1065. { "pid": 1, "tid": 22, "ts": 3017624.267578125, "dur": 369.8999881744385, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3698999881744385, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.Dropdown/OptionData>" } },
  1066. { "pid": 1, "tid": 22, "ts": 3017995.60546875, "dur": 391.49999618530273, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39149999618530273, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.EventTrigger/Entry>" } },
  1067. { "pid": 1, "tid": 22, "ts": 3018388.671875, "dur": 383.39999318122864, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38339999318122864, "detail": "System.Collections.Generic.List`1<UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents/MessageTypeSubscribers>" } },
  1068. { "pid": 1, "tid": 22, "ts": 3018773.193359375, "dur": 357.40000009536743, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35740000009536743, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.PointerInputModule/ButtonState>" } },
  1069. { "pid": 1, "tid": 22, "ts": 3019132.080078125, "dur": 439.0999972820282, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4390999972820282, "detail": "System.Collections.Generic.List`1<System.Text.RegularExpressions.RegexCharClass/SingleRange>" } },
  1070. { "pid": 1, "tid": 22, "ts": 3019573.2421875, "dur": 584.3999981880188, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5843999981880188, "detail": "System.Collections.Generic.List`1<UnityEngine.UI.StencilMaterial/MatEntry>" } },
  1071. { "pid": 1, "tid": 22, "ts": 3020476.318359375, "dur": 430.7999908924103, "ph": "X", "name": "Il2CppGenericComDefinitions14.cpp", "args": { "durationMS": 0.4307999908924103, "detail": "" } },
  1072. { "pid": 1, "tid": 22, "ts": 3021205.810546875, "dur": 121967.29278564453, "ph": "X", "name": "Idle", "args": { "durationMS": 121.96729278564453, "detail": "" } },
  1073. { "pid": 1, "tid": 23, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  1074. { "pid": 1, "tid": 23, "ts": 1319104.248046875, "dur": 12332.200050354004, "ph": "X", "name": "Idle", "args": { "durationMS": 12.332200050354004, "detail": "" } },
  1075. { "pid": 1, "tid": 23, "ts": 1436955.810546875, "dur": 184550.29296875, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 184.55029296875, "detail": "UnityEngine.CoreModule" } },
  1076. { "pid": 1, "tid": 23, "ts": 1436970.0927734375, "dur": 184535.18676757812, "ph": "X", "name": "UnityEngine.CoreModule_Attr.cpp", "args": { "durationMS": 184.53518676757812, "detail": "" } },
  1077. { "pid": 1, "tid": 23, "ts": 1621518.310546875, "dur": 4762.00008392334, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 4.76200008392334, "detail": "UnityEngine.SpriteShapeModule" } },
  1078. { "pid": 1, "tid": 23, "ts": 1621539.306640625, "dur": 4740.499973297119, "ph": "X", "name": "UnityEngine.SpriteShapeModule_Attr.cpp", "args": { "durationMS": 4.740499973297119, "detail": "" } },
  1079. { "pid": 1, "tid": 23, "ts": 1626282.8369140625, "dur": 21458.70018005371, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 21.45870018005371, "detail": "UnityEngine.UI" } },
  1080. { "pid": 1, "tid": 23, "ts": 1626298.4619140625, "dur": 21442.399978637695, "ph": "X", "name": "UnityEngine.UI_Attr.cpp", "args": { "durationMS": 21.442399978637695, "detail": "" } },
  1081. { "pid": 1, "tid": 23, "ts": 1653969.3603515625, "dur": 2187.5, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1875, "detail": "<Module>" } },
  1082. { "pid": 1, "tid": 23, "ts": 1656157.958984375, "dur": 98148.20098876953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 98.14820098876953, "detail": "UnityEngine._Scripting.APIUpdating.APIUpdaterRuntimeHelpers" } },
  1083. { "pid": 1, "tid": 23, "ts": 1754308.349609375, "dur": 646.3000178337097, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6463000178337097, "detail": "UnityEngine.AddComponentMenu" } },
  1084. { "pid": 1, "tid": 23, "ts": 1754983.642578125, "dur": 26053.50112915039, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.05350112915039, "detail": "UnityEngine.AnimationCurve" } },
  1085. { "pid": 1, "tid": 23, "ts": 1781038.4521484375, "dur": 2850.600004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.850600004196167, "detail": "UnityEngine.Application" } },
  1086. { "pid": 1, "tid": 23, "ts": 1783889.892578125, "dur": 1006.100058555603, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.006100058555603, "detail": "UnityEngine.Events.ArgumentCache" } },
  1087. { "pid": 1, "tid": 23, "ts": 1784917.236328125, "dur": 958.8000178337097, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9588000178337097, "detail": "UnityEngine.AsyncOperation" } },
  1088. { "pid": 1, "tid": 23, "ts": 1785876.8310546875, "dur": 10145.400047302246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.145400047302246, "detail": "Unity.IO.LowLevel.Unsafe.AsyncReadManagerMetricsFilters" } },
  1089. { "pid": 1, "tid": 23, "ts": 1796023.3154296875, "dur": 1231.0999631881714, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2310999631881714, "detail": "Unity.IO.LowLevel.Unsafe.AsyncReadManagerRequestMetric" } },
  1090. { "pid": 1, "tid": 23, "ts": 1797255.126953125, "dur": 4853.499889373779, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.853499889373779, "detail": "UnityEngine.AttributeHelperEngine" } },
  1091. { "pid": 1, "tid": 23, "ts": 1802109.4970703125, "dur": 1034.000039100647, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.034000039100647, "detail": "UnityEngine.Events.BaseInvokableCall" } },
  1092. { "pid": 1, "tid": 23, "ts": 1803144.6533203125, "dur": 497.0000088214874, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4970000088214874, "detail": "UnityEngine.Rendering.BatchCullingContext" } },
  1093. { "pid": 1, "tid": 23, "ts": 1803737.9150390625, "dur": 1360.2999448776245, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3602999448776245, "detail": "UnityEngine.Rendering.BatchRendererGroup" } },
  1094. { "pid": 1, "tid": 23, "ts": 1805124.755859375, "dur": 810.1999759674072, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8101999759674072, "detail": "UnityEngine.BeforeRenderHelper" } },
  1095. { "pid": 1, "tid": 23, "ts": 1806155.517578125, "dur": 488.20000886917114, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48820000886917114, "detail": "UnityEngine.BootConfigData" } },
  1096. { "pid": 1, "tid": 23, "ts": 1806644.4091796875, "dur": 6203.400135040283, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.203400135040283, "detail": "UnityEngine.Bounds" } },
  1097. { "pid": 1, "tid": 23, "ts": 1812848.876953125, "dur": 739.0000224113464, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7390000224113464, "detail": "UnityEngine.Experimental.Rendering.BuiltinRuntimeReflectionSystem" } },
  1098. { "pid": 1, "tid": 23, "ts": 1813588.7451171875, "dur": 4585.400104522705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.585400104522705, "detail": "UnityEngine.Camera" } },
  1099. { "pid": 1, "tid": 23, "ts": 1818187.98828125, "dur": 935.1999759674072, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9351999759674072, "detail": "UnityEngine.Experimental.Playables.CameraPlayable" } },
  1100. { "pid": 1, "tid": 23, "ts": 1819280.029296875, "dur": 6065.5999183654785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.0655999183654785, "detail": "UnityEngine.Color" } },
  1101. { "pid": 1, "tid": 23, "ts": 1825346.8017578125, "dur": 1975.100040435791, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.975100040435791, "detail": "UnityEngine.Color32" } },
  1102. { "pid": 1, "tid": 23, "ts": 1827353.6376953125, "dur": 1393.7000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3937000036239624, "detail": "UnityEngine.Component" } },
  1103. { "pid": 1, "tid": 23, "ts": 1828885.25390625, "dur": 1024.0999460220337, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0240999460220337, "detail": "UnityEngine.Coroutine" } },
  1104. { "pid": 1, "tid": 23, "ts": 1829910.2783203125, "dur": 3308.300018310547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.308300018310547, "detail": "UnityEngine.Cubemap" } },
  1105. { "pid": 1, "tid": 23, "ts": 1833219.8486328125, "dur": 2979.8998832702637, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9798998832702637, "detail": "UnityEngine.CubemapArray" } },
  1106. { "pid": 1, "tid": 23, "ts": 1836200.8056640625, "dur": 940.9000277519226, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9409000277519226, "detail": "UnityEngine.CullingGroup" } },
  1107. { "pid": 1, "tid": 23, "ts": 1837278.80859375, "dur": 626.9000172615051, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6269000172615051, "detail": "UnityEngine.CustomRenderTextureManager" } },
  1108. { "pid": 1, "tid": 23, "ts": 1837906.3720703125, "dur": 556.1000108718872, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5561000108718872, "detail": "UnityEngine.CustomYieldInstruction" } },
  1109. { "pid": 1, "tid": 23, "ts": 1838463.37890625, "dur": 842.8999781608582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8428999781608582, "detail": "UnityEngine.Sprites.DataUtility" } },
  1110. { "pid": 1, "tid": 23, "ts": 1839320.068359375, "dur": 4672.100067138672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.672100067138672, "detail": "UnityEngine.Debug" } },
  1111. { "pid": 1, "tid": 23, "ts": 1843993.1640625, "dur": 2938.1000995635986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.9381000995635986, "detail": "UnityEngine.DebugLogHandler" } },
  1112. { "pid": 1, "tid": 23, "ts": 1846932.861328125, "dur": 773.8999724388123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7738999724388123, "detail": "UnityEngine.Profiling.Experimental.DebugScreenCapture" } },
  1113. { "pid": 1, "tid": 23, "ts": 1847872.314453125, "dur": 1074.6999979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0746999979019165, "detail": "UnityEngine.Internal.DefaultValueAttribute" } },
  1114. { "pid": 1, "tid": 23, "ts": 1848947.8759765625, "dur": 1351.6000509262085, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3516000509262085, "detail": "UnityEngine.Experimental.GlobalIllumination.DirectionalLight" } },
  1115. { "pid": 1, "tid": 23, "ts": 1850425.1708984375, "dur": 1296.0000038146973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2960000038146973, "detail": "UnityEngine.Experimental.GlobalIllumination.DiscLight" } },
  1116. { "pid": 1, "tid": 23, "ts": 1851721.923828125, "dur": 4366.099834442139, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.366099834442139, "detail": "UnityEngine.Display" } },
  1117. { "pid": 1, "tid": 23, "ts": 1856089.2333984375, "dur": 645.9000110626221, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6459000110626221, "detail": "UnityEngine.DrivenRectTransformTracker" } },
  1118. { "pid": 1, "tid": 23, "ts": 1856758.4228515625, "dur": 348.50001335144043, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.34850001335144043, "detail": "Microsoft.CodeAnalysis.EmbeddedAttribute" } },
  1119. { "pid": 1, "tid": 23, "ts": 1857881.9580078125, "dur": 621.2000250816345, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6212000250816345, "detail": "UnityEngine.FailedToLoadScriptObject" } },
  1120. { "pid": 1, "tid": 23, "ts": 1858831.54296875, "dur": 3041.800022125244, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.041800022125244, "detail": "UnityEngine.GameObject" } },
  1121. { "pid": 1, "tid": 23, "ts": 1861995.9716796875, "dur": 2647.900104522705, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.647900104522705, "detail": "UnityEngine.Gradient" } },
  1122. { "pid": 1, "tid": 23, "ts": 1864664.306640625, "dur": 1689.9000406265259, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6899000406265259, "detail": "UnityEngine.Experimental.Rendering.GraphicsFormatUtility" } },
  1123. { "pid": 1, "tid": 23, "ts": 1866908.447265625, "dur": 1696.7999935150146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6967999935150146, "detail": "UnityEngine.Events.InvokableCall" } },
  1124. { "pid": 1, "tid": 23, "ts": 1868606.0791015625, "dur": 3858.9999675750732, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8589999675750732, "detail": "UnityEngine.Events.InvokableCallList" } },
  1125. { "pid": 1, "tid": 23, "ts": 1872743.1640625, "dur": 1584.6999883651733, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5846999883651733, "detail": "UnityEngine.Rendering.LODParameters" } },
  1126. { "pid": 1, "tid": 23, "ts": 1874329.2236328125, "dur": 2096.89998626709, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.09689998626709, "detail": "UnityEngine.LayerMask" } },
  1127. { "pid": 1, "tid": 23, "ts": 1876427.1240234375, "dur": 1561.1000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5611000061035156, "detail": "UnityEngine.Light" } },
  1128. { "pid": 1, "tid": 23, "ts": 1877989.013671875, "dur": 1271.7000246047974, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2717000246047974, "detail": "UnityEngine.LightBakingOutput" } },
  1129. { "pid": 1, "tid": 23, "ts": 1879261.8408203125, "dur": 6731.400012969971, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.731400012969971, "detail": "UnityEngine.Experimental.GlobalIllumination.LightDataGI" } },
  1130. { "pid": 1, "tid": 23, "ts": 1886004.39453125, "dur": 1339.300036430359, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3393000364303589, "detail": "UnityEngine.LightProbes" } },
  1131. { "pid": 1, "tid": 23, "ts": 1887565.673828125, "dur": 10231.300354003906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.231300354003906, "detail": "UnityEngine.Experimental.GlobalIllumination.LightmapperUtils" } },
  1132. { "pid": 1, "tid": 23, "ts": 1897798.2177734375, "dur": 1226.199984550476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.226199984550476, "detail": "UnityEngine.Experimental.GlobalIllumination.Lightmapping" } },
  1133. { "pid": 1, "tid": 23, "ts": 1899036.4990234375, "dur": 3509.000062942505, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.509000062942505, "detail": "UnityEngine.Experimental.GlobalIllumination.LinearColor" } },
  1134. { "pid": 1, "tid": 23, "ts": 1902863.525390625, "dur": 3519.2999839782715, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5192999839782715, "detail": "UnityEngine.Logger" } },
  1135. { "pid": 1, "tid": 23, "ts": 1906549.1943359375, "dur": 2068.7999725341797, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0687999725341797, "detail": "UnityEngine.ManagedStreamHelpers" } },
  1136. { "pid": 1, "tid": 23, "ts": 1908619.2626953125, "dur": 4971.000194549561, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.9710001945495605, "detail": "UnityEngine.Material" } },
  1137. { "pid": 1, "tid": 23, "ts": 1913591.552734375, "dur": 636.900007724762, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.636900007724762, "detail": "UnityEngine.Experimental.Playables.MaterialEffectPlayable" } },
  1138. { "pid": 1, "tid": 23, "ts": 1914229.6142578125, "dur": 9185.500144958496, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.185500144958496, "detail": "UnityEngine.Mathf" } },
  1139. { "pid": 1, "tid": 23, "ts": 1923684.326171875, "dur": 6828.59992980957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.82859992980957, "detail": "UnityEngine.Matrix4x4" } },
  1140. { "pid": 1, "tid": 23, "ts": 1930514.0380859375, "dur": 4227.499961853027, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.227499961853027, "detail": "UnityEngine.Profiling.Memory.Experimental.MemoryProfiler" } },
  1141. { "pid": 1, "tid": 23, "ts": 1934742.5537109375, "dur": 16015.901565551758, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.015901565551758, "detail": "UnityEngine.Mesh" } },
  1142. { "pid": 1, "tid": 23, "ts": 1951500.1220703125, "dur": 6708.000183105469, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.708000183105469, "detail": "UnityEngine.MonoBehaviour" } },
  1143. { "pid": 1, "tid": 23, "ts": 1958507.568359375, "dur": 955.0999999046326, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9550999999046326, "detail": "UnityEngine.Scripting.APIUpdating.MovedFromAttributeData" } },
  1144. { "pid": 1, "tid": 23, "ts": 1960618.408203125, "dur": 8471.500396728516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.471500396728516, "detail": "UnityEngine.Object" } },
  1145. { "pid": 1, "tid": 23, "ts": 1969091.552734375, "dur": 490.70000648498535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.49070000648498535, "detail": "UnityEngine.Rendering.OnDemandRendering" } },
  1146. { "pid": 1, "tid": 23, "ts": 1969604.8583984375, "dur": 5450.300216674805, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.450300216674805, "detail": "UnityEngine.Events.PersistentCall" } },
  1147. { "pid": 1, "tid": 23, "ts": 1975056.396484375, "dur": 1272.8999853134155, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2728999853134155, "detail": "UnityEngine.Events.PersistentCallGroup" } },
  1148. { "pid": 1, "tid": 23, "ts": 1976348.0224609375, "dur": 2072.000026702881, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.072000026702881, "detail": "UnityEngine.Plane" } },
  1149. { "pid": 1, "tid": 23, "ts": 1978422.119140625, "dur": 1103.3999919891357, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1033999919891357, "detail": "UnityEngine.Playables.Playable" } },
  1150. { "pid": 1, "tid": 23, "ts": 1979526.7333984375, "dur": 1290.5999422073364, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2905999422073364, "detail": "UnityEngine.Playables.PlayableAsset" } },
  1151. { "pid": 1, "tid": 23, "ts": 1980818.84765625, "dur": 1356.0999631881714, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3560999631881714, "detail": "UnityEngine.Playables.PlayableBehaviour" } },
  1152. { "pid": 1, "tid": 23, "ts": 1982176.513671875, "dur": 636.3000273704529, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6363000273704529, "detail": "UnityEngine.Playables.PlayableBinding" } },
  1153. { "pid": 1, "tid": 23, "ts": 1982831.0546875, "dur": 2457.70001411438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.45770001411438, "detail": "UnityEngine.Playables.PlayableHandle" } },
  1154. { "pid": 1, "tid": 23, "ts": 1985289.794921875, "dur": 896.8999981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8968999981880188, "detail": "UnityEngine.Playables.PlayableOutput" } },
  1155. { "pid": 1, "tid": 23, "ts": 1986187.5, "dur": 1848.0000495910645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8480000495910645, "detail": "UnityEngine.Playables.PlayableOutputHandle" } },
  1156. { "pid": 1, "tid": 23, "ts": 1988036.865234375, "dur": 33535.499572753906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 33.535499572753906, "detail": "UnityEngine.Networking.PlayerConnection.PlayerConnection" } },
  1157. { "pid": 1, "tid": 23, "ts": 2021574.0966796875, "dur": 2080.399990081787, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.080399990081787, "detail": "UnityEngine.PlayerConnectionInternal" } },
  1158. { "pid": 1, "tid": 23, "ts": 2023655.8837890625, "dur": 2591.099977493286, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.591099977493286, "detail": "UnityEngine.Networking.PlayerConnection.PlayerEditorConnectionEvents" } },
  1159. { "pid": 1, "tid": 23, "ts": 2026248.046875, "dur": 504.29999828338623, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5042999982833862, "detail": "UnityEngine.LowLevel.PlayerLoopSystem" } },
  1160. { "pid": 1, "tid": 23, "ts": 2026937.744140625, "dur": 1079.9000263214111, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0799000263214111, "detail": "UnityEngine.Experimental.GlobalIllumination.PointLight" } },
  1161. { "pid": 1, "tid": 23, "ts": 2028241.943359375, "dur": 626.5000104904175, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6265000104904175, "detail": "UnityEngine.Profiling.Profiler" } },
  1162. { "pid": 1, "tid": 23, "ts": 2029030.1513671875, "dur": 6599.699974060059, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.599699974060059, "detail": "UnityEngine.Quaternion" } },
  1163. { "pid": 1, "tid": 23, "ts": 2035845.5810546875, "dur": 422.50001430511475, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42250001430511475, "detail": "UnityEngine.RangeInt" } },
  1164. { "pid": 1, "tid": 23, "ts": 2036269.04296875, "dur": 1409.000039100647, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.409000039100647, "detail": "UnityEngine.Ray" } },
  1165. { "pid": 1, "tid": 23, "ts": 2037693.84765625, "dur": 19286.800384521484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.286800384521484, "detail": "UnityEngine.Rect" } },
  1166. { "pid": 1, "tid": 23, "ts": 2056981.93359375, "dur": 6283.500194549561, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.2835001945495605, "detail": "UnityEngine.RectOffset" } },
  1167. { "pid": 1, "tid": 23, "ts": 2063266.845703125, "dur": 4633.500099182129, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.633500099182129, "detail": "UnityEngine.RectTransform" } },
  1168. { "pid": 1, "tid": 23, "ts": 2067902.587890625, "dur": 74943.90106201172, "ph": "X", "name": "UnityEngine.CoreModule.cpp", "args": { "durationMS": 74.94390106201172, "detail": "" } },
  1169. { "pid": 1, "tid": 23, "ts": 2142862.79296875, "dur": 573.4999775886536, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5734999775886536, "detail": "System.IO.EndOfStreamException" } },
  1170. { "pid": 1, "tid": 23, "ts": 2143437.255859375, "dur": 497.5999891757965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4975999891757965, "detail": "System.EntryPointNotFoundException" } },
  1171. { "pid": 1, "tid": 23, "ts": 2143935.791015625, "dur": 12452.699661254883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.452699661254883, "detail": "System.Enum" } },
  1172. { "pid": 1, "tid": 23, "ts": 2156389.16015625, "dur": 3490.799903869629, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.490799903869629, "detail": "System.Reflection.Emit.EnumBuilder" } },
  1173. { "pid": 1, "tid": 23, "ts": 2159880.859375, "dur": 18620.498657226562, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.620498657226562, "detail": "System.Environment" } },
  1174. { "pid": 1, "tid": 23, "ts": 2178667.48046875, "dur": 481.4999997615814, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4814999997615814, "detail": "System.Runtime.Remoting.Messaging.EnvoyTerminatorSink" } },
  1175. { "pid": 1, "tid": 23, "ts": 2179150.390625, "dur": 333.6000144481659, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3336000144481659, "detail": "System.Runtime.CompilerServices.Ephemeron" } },
  1176. { "pid": 1, "tid": 23, "ts": 2179484.619140625, "dur": 519.5000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5195000171661377, "detail": "System.Globalization.EraInfo" } },
  1177. { "pid": 1, "tid": 23, "ts": 2180004.8828125, "dur": 660.1999998092651, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6601999998092651, "detail": "System.Runtime.Remoting.Messaging.ErrorMessage" } },
  1178. { "pid": 1, "tid": 23, "ts": 2180677.734375, "dur": 400.7999897003174, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4007999897003174, "detail": "System.EventArgs" } },
  1179. { "pid": 1, "tid": 23, "ts": 2181098.388671875, "dur": 561.8000030517578, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5618000030517578, "detail": "System.EventHandler" } },
  1180. { "pid": 1, "tid": 23, "ts": 2181661.376953125, "dur": 2086.4999294281006, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0864999294281006, "detail": "System.Reflection.EventInfo" } },
  1181. { "pid": 1, "tid": 23, "ts": 2183758.544921875, "dur": 974.399983882904, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.974399983882904, "detail": "System.Diagnostics.Tracing.EventSource" } },
  1182. { "pid": 1, "tid": 23, "ts": 2184734.375, "dur": 1719.4000482559204, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7194000482559204, "detail": "System.Threading.EventWaitHandle" } },
  1183. { "pid": 1, "tid": 23, "ts": 2186454.833984375, "dur": 910.7999801635742, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9107999801635742, "detail": "System.Security.Policy.Evidence" } },
  1184. { "pid": 1, "tid": 23, "ts": 2187366.943359375, "dur": 7156.499862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.156499862670898, "detail": "System.Exception" } },
  1185. { "pid": 1, "tid": 23, "ts": 2194536.865234375, "dur": 10059.200286865234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.059200286865234, "detail": "System.Runtime.ExceptionServices.ExceptionDispatchInfo" } },
  1186. { "pid": 1, "tid": 23, "ts": 2204598.388671875, "dur": 753.0999779701233, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7530999779701233, "detail": "System.Reflection.ExceptionHandlingClause" } },
  1187. { "pid": 1, "tid": 23, "ts": 2205369.873046875, "dur": 9389.49966430664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.38949966430664, "detail": "System.Threading.ExecutionContext" } },
  1188. { "pid": 1, "tid": 23, "ts": 2214760.7421875, "dur": 632.099986076355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.632099986076355, "detail": "System.Threading.ExecutionContextSwitcher" } },
  1189. { "pid": 1, "tid": 23, "ts": 2215393.798828125, "dur": 598.5999703407288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5985999703407288, "detail": "System.ExecutionEngineException" } },
  1190. { "pid": 1, "tid": 23, "ts": 2215992.919921875, "dur": 732.2999835014343, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7322999835014343, "detail": "Microsoft.Win32.ExpandString" } },
  1191. { "pid": 1, "tid": 23, "ts": 2216815.91796875, "dur": 1106.1999797821045, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1061999797821045, "detail": "System.Runtime.InteropServices.ExternalException" } },
  1192. { "pid": 1, "tid": 23, "ts": 2217933.10546875, "dur": 2527.1999835968018, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5271999835968018, "detail": "System.Resources.FastResourceComparer" } },
  1193. { "pid": 1, "tid": 23, "ts": 2220462.158203125, "dur": 459.69998836517334, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45969998836517334, "detail": "System.FieldAccessException" } },
  1194. { "pid": 1, "tid": 23, "ts": 2220933.59375, "dur": 1014.5000219345093, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0145000219345093, "detail": "System.Reflection.Emit.FieldBuilder" } },
  1195. { "pid": 1, "tid": 23, "ts": 2221949.21875, "dur": 5127.399921417236, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.127399921417236, "detail": "System.Reflection.FieldInfo" } },
  1196. { "pid": 1, "tid": 23, "ts": 2227184.326171875, "dur": 1590.8000469207764, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5908000469207764, "detail": "System.IO.File" } },
  1197. { "pid": 1, "tid": 23, "ts": 2228893.310546875, "dur": 2366.499900817871, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.366499900817871, "detail": "System.IO.FileLoadException" } },
  1198. { "pid": 1, "tid": 23, "ts": 2231270.751953125, "dur": 2775.3000259399414, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.7753000259399414, "detail": "System.IO.FileNotFoundException" } },
  1199. { "pid": 1, "tid": 23, "ts": 2234070.068359375, "dur": 21802.499771118164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.802499771118164, "detail": "System.IO.FileStream" } },
  1200. { "pid": 1, "tid": 23, "ts": 2255873.53515625, "dur": 550.7000088691711, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5507000088691711, "detail": "System.IO.FileStreamAsyncResult" } },
  1201. { "pid": 1, "tid": 23, "ts": 2257045.166015625, "dur": 1820.0000524520874, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8200000524520874, "detail": "System.IO.FileSystemInfo" } },
  1202. { "pid": 1, "tid": 23, "ts": 2259257.080078125, "dur": 947.700023651123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.947700023651123, "detail": "System.Runtime.Serialization.FixupHolderList" } },
  1203. { "pid": 1, "tid": 23, "ts": 2260295.654296875, "dur": 630.4000020027161, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6304000020027161, "detail": "System.FormatException" } },
  1204. { "pid": 1, "tid": 23, "ts": 2260936.03515625, "dur": 1350.499987602234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3504999876022339, "detail": "System.Runtime.Serialization.FormatterConverter" } },
  1205. { "pid": 1, "tid": 23, "ts": 2262365.966796875, "dur": 9755.599975585938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.755599975585938, "detail": "System.Runtime.Serialization.FormatterServices" } },
  1206. { "pid": 1, "tid": 23, "ts": 2272214.35546875, "dur": 756.600022315979, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.756600022315979, "detail": "System.GC" } },
  1207. { "pid": 1, "tid": 23, "ts": 2272971.923828125, "dur": 3149.600028991699, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.149600028991699, "detail": "System.Runtime.InteropServices.GCHandle" } },
  1208. { "pid": 1, "tid": 23, "ts": 2276139.404296875, "dur": 3264.6000385284424, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2646000385284424, "detail": "System.Reflection.Emit.GenericTypeParameterBuilder" } },
  1209. { "pid": 1, "tid": 23, "ts": 2279405.2734375, "dur": 5800.300121307373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.800300121307373, "detail": "System.Globalization.GregorianCalendar" } },
  1210. { "pid": 1, "tid": 23, "ts": 2285207.03125, "dur": 30988.998413085938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.988998413085938, "detail": "System.Globalization.GregorianCalendarHelper" } },
  1211. { "pid": 1, "tid": 23, "ts": 2316207.03125, "dur": 53875.099182128906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 53.875099182128906, "detail": "System.Guid" } },
  1212. { "pid": 1, "tid": 23, "ts": 2370084.9609375, "dur": 74888.09967041016, "ph": "X", "name": "mscorlib5.cpp", "args": { "durationMS": 74.88809967041016, "detail": "" } },
  1213. { "pid": 1, "tid": 23, "ts": 2444992.919921875, "dur": 5512.400150299072, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.512400150299072, "detail": "System.IO.StreamWriter" } },
  1214. { "pid": 1, "tid": 23, "ts": 2450506.34765625, "dur": 1140.4999494552612, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1404999494552612, "detail": "System.Runtime.Serialization.StreamingContext" } },
  1215. { "pid": 1, "tid": 23, "ts": 2451656.494140625, "dur": 91816.39862060547, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 91.81639862060547, "detail": "System.String" } },
  1216. { "pid": 1, "tid": 23, "ts": 2543473.6328125, "dur": 107877.69317626953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 107.87769317626953, "detail": "System.Text.StringBuilder" } },
  1217. { "pid": 1, "tid": 23, "ts": 2651352.5390625, "dur": 553.4999966621399, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5534999966621399, "detail": "System.Text.StringBuilderCache" } },
  1218. { "pid": 1, "tid": 23, "ts": 2651906.982421875, "dur": 2527.2998809814453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5272998809814453, "detail": "System.StringComparer" } },
  1219. { "pid": 1, "tid": 23, "ts": 2654556.396484375, "dur": 4387.700080871582, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.387700080871582, "detail": "System.IO.StringReader" } },
  1220. { "pid": 1, "tid": 23, "ts": 2658945.3125, "dur": 580.2000164985657, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5802000164985657, "detail": "System.IO.StringResultHandler" } },
  1221. { "pid": 1, "tid": 23, "ts": 2659538.330078125, "dur": 1116.8999671936035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1168999671936035, "detail": "System.Reflection.StrongNameKeyPair" } },
  1222. { "pid": 1, "tid": 23, "ts": 2660667.48046875, "dur": 1183.500051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.183500051498413, "detail": "System.Threading.SynchronizationContext" } },
  1223. { "pid": 1, "tid": 23, "ts": 2661853.515625, "dur": 1015.2000188827515, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0152000188827515, "detail": "System.Threading.Tasks.SynchronizationContextAwaitTaskContinuation" } },
  1224. { "pid": 1, "tid": 23, "ts": 2662869.62890625, "dur": 507.60000944137573, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5076000094413757, "detail": "System.Threading.SynchronizationLockException" } },
  1225. { "pid": 1, "tid": 23, "ts": 2663377.9296875, "dur": 784.3999862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7843999862670898, "detail": "System.SystemException" } },
  1226. { "pid": 1, "tid": 23, "ts": 2664163.0859375, "dur": 659.2000126838684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6592000126838684, "detail": "System.Threading.Tasks.SystemThreadingTasks_TaskDebugView" } },
  1227. { "pid": 1, "tid": 23, "ts": 2664953.125, "dur": 2520.900011062622, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.520900011062622, "detail": "System.Globalization.TaiwanCalendar" } },
  1228. { "pid": 1, "tid": 23, "ts": 2667474.853515625, "dur": 3736.7000579833984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7367000579833984, "detail": "System.Reflection.TargetException" } },
  1229. { "pid": 1, "tid": 23, "ts": 2671212.646484375, "dur": 527.3000001907349, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5273000001907349, "detail": "System.Reflection.TargetInvocationException" } },
  1230. { "pid": 1, "tid": 23, "ts": 2671740.72265625, "dur": 472.09998965263367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47209998965263367, "detail": "System.Reflection.TargetParameterCountException" } },
  1231. { "pid": 1, "tid": 23, "ts": 2672213.623046875, "dur": 48096.00067138672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 48.09600067138672, "detail": "System.Threading.Tasks.Task" } },
  1232. { "pid": 1, "tid": 23, "ts": 2720313.232421875, "dur": 23083.698272705078, "ph": "X", "name": "mscorlib12.cpp", "args": { "durationMS": 23.083698272705078, "detail": "" } },
  1233. { "pid": 1, "tid": 23, "ts": 2743417.724609375, "dur": 15696.300506591797, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.696300506591797, "detail": "System.Collections.Generic.List`1<UnityEngine.UICharInfo>" } },
  1234. { "pid": 1, "tid": 23, "ts": 2759115.478515625, "dur": 39701.499938964844, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 39.701499938964844, "detail": "System.Collections.Generic.List`1<UnityEngine.UILineInfo>" } },
  1235. { "pid": 1, "tid": 23, "ts": 2798818.603515625, "dur": 19022.80044555664, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 19.02280044555664, "detail": "System.Collections.Generic.List`1<UnityEngine.UIVertex>" } },
  1236. { "pid": 1, "tid": 23, "ts": 2817843.505859375, "dur": 84521.30126953125, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 84.52130126953125, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector3>" } },
  1237. { "pid": 1, "tid": 23, "ts": 2902366.455078125, "dur": 18292.499542236328, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 18.292499542236328, "detail": "System.Collections.Generic.List`1<UnityEngine.Vector4>" } },
  1238. { "pid": 1, "tid": 23, "ts": 2920660.888671875, "dur": 19386.80076599121, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 19.38680076599121, "detail": "System.Collections.Generic.List`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  1239. { "pid": 1, "tid": 23, "ts": 2940049.560546875, "dur": 17966.09878540039, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.96609878540039, "detail": "System.Collections.Generic.List`1<UnityEngine.Camera/RenderRequest>" } },
  1240. { "pid": 1, "tid": 23, "ts": 2958018.06640625, "dur": 16560.89973449707, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 16.56089973449707, "detail": "System.Collections.Generic.List`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  1241. { "pid": 1, "tid": 23, "ts": 2974580.810546875, "dur": 469.59999203681946, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.46959999203681946, "detail": "System.Collections.Generic.Mscorlib_CollectionDebugView`1<System.Object>" } },
  1242. { "pid": 1, "tid": 23, "ts": 2975052.001953125, "dur": 4679.200172424316, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.679200172424316, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Rendering.BatchVisibility>" } },
  1243. { "pid": 1, "tid": 23, "ts": 2979733.154296875, "dur": 5379.300117492676, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.379300117492676, "detail": "Unity.Collections.NativeArray`1<System.Byte>" } },
  1244. { "pid": 1, "tid": 23, "ts": 2985114.2578125, "dur": 6752.799987792969, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.752799987792969, "detail": "Unity.Collections.NativeArray`1<System.Int32>" } },
  1245. { "pid": 1, "tid": 23, "ts": 2991868.65234375, "dur": 4977.099895477295, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.977099895477295, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
  1246. { "pid": 1, "tid": 23, "ts": 2996848.14453125, "dur": 4612.500190734863, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.612500190734863, "detail": "Unity.Collections.NativeArray`1<UnityEngine.Plane>" } },
  1247. { "pid": 1, "tid": 23, "ts": 3001697.998046875, "dur": 6634.300231933594, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.634300231933594, "detail": "System.Nullable`1<System.Boolean>" } },
  1248. { "pid": 1, "tid": 23, "ts": 3008333.740234375, "dur": 2303.4000396728516, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.3034000396728516, "detail": "System.Nullable`1<System.Int32>" } },
  1249. { "pid": 1, "tid": 23, "ts": 3010639.16015625, "dur": 757.4999928474426, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7574999928474426, "detail": "System.Collections.Generic.ObjectComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  1250. { "pid": 1, "tid": 23, "ts": 3011398.4375, "dur": 624.0000128746033, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6240000128746033, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Color32>" } },
  1251. { "pid": 1, "tid": 23, "ts": 3012023.4375, "dur": 607.5000166893005, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6075000166893005, "detail": "System.Collections.Generic.ObjectComparer`1<System.Int32>" } },
  1252. { "pid": 1, "tid": 23, "ts": 3012633.30078125, "dur": 913.100004196167, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.913100004196167, "detail": "System.Collections.Generic.ObjectComparer`1<System.Int32Enum>" } },
  1253. { "pid": 1, "tid": 23, "ts": 3013547.36328125, "dur": 984.8999977111816, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9848999977111816, "detail": "System.Collections.Generic.ObjectComparer`1<System.Object>" } },
  1254. { "pid": 1, "tid": 23, "ts": 3014533.935546875, "dur": 669.4999933242798, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6694999933242798, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.RaycastHit>" } },
  1255. { "pid": 1, "tid": 23, "ts": 3015205.56640625, "dur": 635.9000205993652, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6359000205993652, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
  1256. { "pid": 1, "tid": 23, "ts": 3015842.7734375, "dur": 692.3999786376953, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6923999786376953, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UICharInfo>" } },
  1257. { "pid": 1, "tid": 23, "ts": 3016536.865234375, "dur": 646.6000080108643, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6466000080108643, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UILineInfo>" } },
  1258. { "pid": 1, "tid": 23, "ts": 3017184.5703125, "dur": 631.3999891281128, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6313999891281128, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UIVertex>" } },
  1259. { "pid": 1, "tid": 23, "ts": 3017817.3828125, "dur": 610.7000112533569, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6107000112533569, "detail": "System.Collections.Generic.ObjectComparer`1<System.UInt64>" } },
  1260. { "pid": 1, "tid": 23, "ts": 3018429.19921875, "dur": 621.2999820709229, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6212999820709229, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector3>" } },
  1261. { "pid": 1, "tid": 23, "ts": 3019052.001953125, "dur": 632.3999762535095, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6323999762535095, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Vector4>" } },
  1262. { "pid": 1, "tid": 23, "ts": 3019686.03515625, "dur": 648.6999988555908, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.6486999988555908, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  1263. { "pid": 1, "tid": 23, "ts": 3020337.158203125, "dur": 1061.6999864578247, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0616999864578247, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.Camera/RenderRequest>" } },
  1264. { "pid": 1, "tid": 23, "ts": 3021400.87890625, "dur": 992.1000003814697, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9921000003814697, "detail": "System.Collections.Generic.ObjectComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  1265. { "pid": 1, "tid": 23, "ts": 3022395.263671875, "dur": 1968.2999849319458, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9682999849319458, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  1266. { "pid": 1, "tid": 23, "ts": 3024365.966796875, "dur": 1723.3999967575073, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7233999967575073, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Boolean>" } },
  1267. { "pid": 1, "tid": 23, "ts": 3026090.8203125, "dur": 1745.8000183105469, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7458000183105469, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Byte>" } },
  1268. { "pid": 1, "tid": 23, "ts": 3027839.111328125, "dur": 1831.7999839782715, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8317999839782715, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Char>" } },
  1269. { "pid": 1, "tid": 23, "ts": 3029672.36328125, "dur": 1975.9999513626099, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9759999513626099, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.Color32>" } },
  1270. { "pid": 1, "tid": 23, "ts": 3031650.390625, "dur": 1848.0000495910645, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8480000495910645, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
  1271. { "pid": 1, "tid": 23, "ts": 3033499.755859375, "dur": 2415.6999588012695, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.4156999588012695, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32>" } },
  1272. { "pid": 1, "tid": 23, "ts": 3035917.96875, "dur": 2101.9999980926514, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1019999980926514, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Int32Enum>" } },
  1273. { "pid": 1, "tid": 23, "ts": 3038021.97265625, "dur": 2064.199924468994, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.064199924468994, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.Navigation>" } },
  1274. { "pid": 1, "tid": 23, "ts": 3040087.890625, "dur": 1797.0999479293823, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7970999479293823, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Object>" } },
  1275. { "pid": 1, "tid": 23, "ts": 3041886.71875, "dur": 1875.499963760376, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.875499963760376, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.EventSystems.RaycastResult>" } },
  1276. { "pid": 1, "tid": 23, "ts": 3043763.18359375, "dur": 1865.3000593185425, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8653000593185425, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Resources.ResourceLocator>" } },
  1277. { "pid": 1, "tid": 23, "ts": 3045630.126953125, "dur": 1744.3000078201294, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7443000078201294, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<System.Single>" } },
  1278. { "pid": 1, "tid": 23, "ts": 3047376.708984375, "dur": 1924.399971961975, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.924399971961975, "detail": "System.Collections.Generic.ObjectEqualityComparer`1<UnityEngine.UI.SpriteState>" } },
  1279. { "pid": 1, "tid": 23, "ts": 3049303.955078125, "dur": 43900.49743652344, "ph": "X", "name": "Generics4.cpp", "args": { "durationMS": 43.90049743652344, "detail": "" } },
  1280. { "pid": 1, "tid": 23, "ts": 3093221.6796875, "dur": 49921.79870605469, "ph": "X", "name": "Idle", "args": { "durationMS": 49.92179870605469, "detail": "" } },
  1281. { "pid": 1, "tid": 24, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  1282. { "pid": 1, "tid": 24, "ts": 1319261.962890625, "dur": 12145.099639892578, "ph": "X", "name": "Idle", "args": { "durationMS": 12.145099639892578, "detail": "" } },
  1283. { "pid": 1, "tid": 24, "ts": 1435807.4951171875, "dur": 182703.99475097656, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 182.70399475097656, "detail": "UnityEngine.SharedInternalsModule" } },
  1284. { "pid": 1, "tid": 24, "ts": 1435855.3466796875, "dur": 182655.50231933594, "ph": "X", "name": "UnityEngine.SharedInternalsModule_Attr.cpp", "args": { "durationMS": 182.65550231933594, "detail": "" } },
  1285. { "pid": 1, "tid": 24, "ts": 1620463.623046875, "dur": 5256.400108337402, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 5.256400108337402, "detail": "UnityEngine.InputLegacyModule" } },
  1286. { "pid": 1, "tid": 24, "ts": 1620481.689453125, "dur": 5237.599849700928, "ph": "X", "name": "UnityEngine.InputLegacyModule_Attr.cpp", "args": { "durationMS": 5.237599849700928, "detail": "" } },
  1287. { "pid": 1, "tid": 24, "ts": 1625725.341796875, "dur": 20314.300537109375, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 20.314300537109375, "detail": "UnityEngine.TilemapModule" } },
  1288. { "pid": 1, "tid": 24, "ts": 1625751.0986328125, "dur": 20288.09928894043, "ph": "X", "name": "UnityEngine.TilemapModule_Attr.cpp", "args": { "durationMS": 20.28809928894043, "detail": "" } },
  1289. { "pid": 1, "tid": 24, "ts": 1646612.4267578125, "dur": 392.6999866962433, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 0.3926999866962433, "detail": "" } },
  1290. { "pid": 1, "tid": 24, "ts": 1656703.7353515625, "dur": 1609.5000505447388, "ph": "X", "name": "UnityEngine.TilemapModule.cpp", "args": { "durationMS": 1.6095000505447388, "detail": "" } },
  1291. { "pid": 1, "tid": 24, "ts": 1659167.96875, "dur": 91529.99877929688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 91.52999877929688, "detail": "UnityEngine.Canvas" } },
  1292. { "pid": 1, "tid": 24, "ts": 1750700.0732421875, "dur": 756.7999958992004, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7567999958992004, "detail": "UnityEngine.CanvasGroup" } },
  1293. { "pid": 1, "tid": 24, "ts": 1751458.0078125, "dur": 5229.499816894531, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.229499816894531, "detail": "UnityEngine.CanvasRenderer" } },
  1294. { "pid": 1, "tid": 24, "ts": 1756688.8427734375, "dur": 10099.200248718262, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.099200248718262, "detail": "UnityEngine.RectTransformUtility" } },
  1295. { "pid": 1, "tid": 24, "ts": 1766975.341796875, "dur": 26097.999572753906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.097999572753906, "detail": "UnityEngine.Canvas/WillRenderCanvases" } },
  1296. { "pid": 1, "tid": 24, "ts": 1793087.2802734375, "dur": 8188.300132751465, "ph": "X", "name": "UnityEngine.UIModule.cpp", "args": { "durationMS": 8.188300132751465, "detail": "" } },
  1297. { "pid": 1, "tid": 24, "ts": 1801322.509765625, "dur": 584.2999815940857, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5842999815940857, "detail": "System.Linq.Error" } },
  1298. { "pid": 1, "tid": 24, "ts": 1801909.423828125, "dur": 1441.3000345230103, "ph": "X", "name": "System.Core.cpp", "args": { "durationMS": 1.4413000345230103, "detail": "" } },
  1299. { "pid": 1, "tid": 24, "ts": 1803781.1279296875, "dur": 6229.400157928467, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.229400157928467, "detail": "System.Security.Cryptography.AsnEncodedData" } },
  1300. { "pid": 1, "tid": 24, "ts": 1810328.0029296875, "dur": 9401.100158691406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.401100158691406, "detail": "System.Security.Cryptography.CAPI" } },
  1301. { "pid": 1, "tid": 24, "ts": 1820605.224609375, "dur": 405.60001134872437, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.40560001134872437, "detail": "System.Net.Configuration.DefaultProxySection" } },
  1302. { "pid": 1, "tid": 24, "ts": 1821282.1044921875, "dur": 11303.099632263184, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.303099632263184, "detail": "System.DomainNameHelper" } },
  1303. { "pid": 1, "tid": 24, "ts": 1832689.0869140625, "dur": 836.6000056266785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8366000056266785, "detail": "System.ComponentModel.EditorBrowsableAttribute" } },
  1304. { "pid": 1, "tid": 24, "ts": 1834122.4365234375, "dur": 834.2000246047974, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8342000246047974, "detail": "System.IOAsyncCallback" } },
  1305. { "pid": 1, "tid": 24, "ts": 1834957.1533203125, "dur": 901.4000296592712, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9014000296592712, "detail": "System.IOAsyncResult" } },
  1306. { "pid": 1, "tid": 24, "ts": 1836101.07421875, "dur": 5127.799987792969, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.127799987792969, "detail": "System.Net.IPAddress" } },
  1307. { "pid": 1, "tid": 24, "ts": 1841229.6142578125, "dur": 7219.5000648498535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.2195000648498535, "detail": "System.IPv4AddressHelper" } },
  1308. { "pid": 1, "tid": 24, "ts": 1848450.439453125, "dur": 4123.600006103516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.123600006103516, "detail": "System.Net.IPv6AddressFormatter" } },
  1309. { "pid": 1, "tid": 24, "ts": 1852574.70703125, "dur": 10531.499862670898, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.531499862670898, "detail": "System.IPv6AddressHelper" } },
  1310. { "pid": 1, "tid": 24, "ts": 1863725.7080078125, "dur": 12666.600227355957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.666600227355957, "detail": "System.IriHelper" } },
  1311. { "pid": 1, "tid": 24, "ts": 1876534.912109375, "dur": 944.4000124931335, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9444000124931335, "detail": "System.Security.Cryptography.Oid" } },
  1312. { "pid": 1, "tid": 24, "ts": 1877479.98046875, "dur": 1754.8999786376953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7548999786376953, "detail": "System.Security.Cryptography.OidCollection" } },
  1313. { "pid": 1, "tid": 24, "ts": 1879236.2060546875, "dur": 1437.2999668121338, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4372999668121338, "detail": "System.Security.Cryptography.OidEnumerator" } },
  1314. { "pid": 1, "tid": 24, "ts": 1881222.7783203125, "dur": 412.9999876022339, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4129999876022339, "detail": "System.Security.Cryptography.X509Certificates.PublicKey" } },
  1315. { "pid": 1, "tid": 24, "ts": 1881636.474609375, "dur": 8215.499877929688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.215499877929688, "detail": "System.Text.RegularExpressions.Regex" } },
  1316. { "pid": 1, "tid": 24, "ts": 1889853.6376953125, "dur": 2817.3999786376953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.8173999786376953, "detail": "System.Text.RegularExpressions.RegexBoyerMoore" } },
  1317. { "pid": 1, "tid": 24, "ts": 1892672.36328125, "dur": 39418.800354003906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 39.418800354003906, "detail": "System.Text.RegularExpressions.RegexCharClass" } },
  1318. { "pid": 1, "tid": 24, "ts": 1932092.041015625, "dur": 788.2999777793884, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7882999777793884, "detail": "System.Text.RegularExpressions.RegexCode" } },
  1319. { "pid": 1, "tid": 24, "ts": 1932881.4697265625, "dur": 2028.8000106811523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0288000106811523, "detail": "System.Text.RegularExpressions.RegexFC" } },
  1320. { "pid": 1, "tid": 24, "ts": 1934911.7431640625, "dur": 7692.299842834473, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.692299842834473, "detail": "System.Text.RegularExpressions.RegexFCD" } },
  1321. { "pid": 1, "tid": 24, "ts": 1942606.689453125, "dur": 42346.8017578125, "ph": "X", "name": "System.cpp", "args": { "durationMS": 42.3468017578125, "detail": "" } },
  1322. { "pid": 1, "tid": 24, "ts": 1985113.8916015625, "dur": 2442.500114440918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.442500114440918, "detail": "<PrivateImplementationDetails>" } },
  1323. { "pid": 1, "tid": 24, "ts": 1987557.9833984375, "dur": 62708.10317993164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 62.70810317993164, "detail": "System.Text.ASCIIEncoding" } },
  1324. { "pid": 1, "tid": 24, "ts": 2050267.08984375, "dur": 944.8000192642212, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9448000192642212, "detail": "System.Threading.AbandonedMutexException" } },
  1325. { "pid": 1, "tid": 24, "ts": 2051265.869140625, "dur": 338.20000290870667, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33820000290870667, "detail": "System.Action" } },
  1326. { "pid": 1, "tid": 24, "ts": 2051605.224609375, "dur": 879.9999952316284, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8799999952316284, "detail": "System.Runtime.Remoting.ActivatedClientTypeEntry" } },
  1327. { "pid": 1, "tid": 24, "ts": 2052486.328125, "dur": 493.80001425743103, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.49380001425743103, "detail": "System.Runtime.Remoting.ActivatedServiceTypeEntry" } },
  1328. { "pid": 1, "tid": 24, "ts": 2052980.712890625, "dur": 4238.399982452393, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.238399982452393, "detail": "System.Runtime.Remoting.Activation.ActivationServices" } },
  1329. { "pid": 1, "tid": 24, "ts": 2057220.21484375, "dur": 1549.1000413894653, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5491000413894653, "detail": "System.Activator" } },
  1330. { "pid": 1, "tid": 24, "ts": 2058770.751953125, "dur": 6502.399921417236, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.502399921417236, "detail": "System.AggregateException" } },
  1331. { "pid": 1, "tid": 24, "ts": 2065274.90234375, "dur": 562.0999932289124, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5620999932289124, "detail": "System.Reflection.AmbiguousMatchException" } },
  1332. { "pid": 1, "tid": 24, "ts": 2065848.388671875, "dur": 6772.600173950195, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.772600173950195, "detail": "System.AppDomain" } },
  1333. { "pid": 1, "tid": 24, "ts": 2072622.55859375, "dur": 1135.4999542236328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1354999542236328, "detail": "System.Runtime.Remoting.Activation.AppDomainLevelActivator" } },
  1334. { "pid": 1, "tid": 24, "ts": 2074048.583984375, "dur": 459.3999981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4593999981880188, "detail": "System.AppDomainUnloadedException" } },
  1335. { "pid": 1, "tid": 24, "ts": 2074508.7890625, "dur": 758.5999965667725, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7585999965667725, "detail": "System.ApplicationException" } },
  1336. { "pid": 1, "tid": 24, "ts": 2075268.310546875, "dur": 1178.7999868392944, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1787999868392944, "detail": "System.Runtime.Remoting.Messaging.ArgInfo" } },
  1337. { "pid": 1, "tid": 24, "ts": 2076756.591796875, "dur": 2094.7000980377197, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0947000980377197, "detail": "System.ArgumentException" } },
  1338. { "pid": 1, "tid": 24, "ts": 2078852.294921875, "dur": 1053.7999868392944, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0537999868392944, "detail": "System.ArgumentNullException" } },
  1339. { "pid": 1, "tid": 24, "ts": 2079907.71484375, "dur": 2121.299982070923, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.121299982070923, "detail": "System.ArgumentOutOfRangeException" } },
  1340. { "pid": 1, "tid": 24, "ts": 2082029.78515625, "dur": 667.2000288963318, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6672000288963318, "detail": "System.ArithmeticException" } },
  1341. { "pid": 1, "tid": 24, "ts": 2082698.486328125, "dur": 29095.699310302734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.095699310302734, "detail": "System.Array" } },
  1342. { "pid": 1, "tid": 24, "ts": 2111794.921875, "dur": 10312.5, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.3125, "detail": "System.Collections.ArrayList" } },
  1343. { "pid": 1, "tid": 24, "ts": 2122109.130859375, "dur": 686.9999766349792, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6869999766349792, "detail": "System.ArraySpec" } },
  1344. { "pid": 1, "tid": 24, "ts": 2122797.36328125, "dur": 469.0000116825104, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4690000116825104, "detail": "System.ArrayTypeMismatchException" } },
  1345. { "pid": 1, "tid": 24, "ts": 2123266.845703125, "dur": 18205.900192260742, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.205900192260742, "detail": "System.Reflection.Assembly" } },
  1346. { "pid": 1, "tid": 24, "ts": 2142468.994140625, "dur": 1651.9999504089355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6519999504089355, "detail": "System.AssemblyLoadEventArgs" } },
  1347. { "pid": 1, "tid": 24, "ts": 2144122.0703125, "dur": 386.2000107765198, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3862000107765198, "detail": "System.AssemblyLoadEventHandler" } },
  1348. { "pid": 1, "tid": 24, "ts": 2144508.7890625, "dur": 8899.100303649902, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.899100303649902, "detail": "System.Reflection.AssemblyName" } },
  1349. { "pid": 1, "tid": 24, "ts": 2153711.9140625, "dur": 342.2999978065491, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3422999978065491, "detail": "System.AsyncCallback" } },
  1350. { "pid": 1, "tid": 24, "ts": 2154064.208984375, "dur": 361.9000017642975, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3619000017642975, "detail": "System.Threading.Tasks.AsyncCausalityTracer" } },
  1351. { "pid": 1, "tid": 24, "ts": 2154426.7578125, "dur": 2815.999984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.815999984741211, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore" } },
  1352. { "pid": 1, "tid": 24, "ts": 2157354.4921875, "dur": 3513.200044631958, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.513200044631958, "detail": "System.Runtime.Remoting.Messaging.AsyncResult" } },
  1353. { "pid": 1, "tid": 24, "ts": 2161042.236328125, "dur": 453.99999618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45399999618530273, "detail": "System.Runtime.CompilerServices.AsyncTaskCache" } },
  1354. { "pid": 1, "tid": 24, "ts": 2161496.826171875, "dur": 4673.699855804443, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.673699855804443, "detail": "System.Attribute" } },
  1355. { "pid": 1, "tid": 24, "ts": 2166184.326171875, "dur": 456.0000002384186, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4560000002384186, "detail": "System.AttributeUsageAttribute" } },
  1356. { "pid": 1, "tid": 24, "ts": 2166641.6015625, "dur": 5964.499950408936, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.9644999504089355, "detail": "System.Threading.Tasks.AwaitTaskContinuation" } },
  1357. { "pid": 1, "tid": 24, "ts": 2172627.197265625, "dur": 4027.900218963623, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.027900218963623, "detail": "System.BadImageFormatException" } },
  1358. { "pid": 1, "tid": 24, "ts": 2176668.45703125, "dur": 2485.100030899048, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.485100030899048, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryArray" } },
  1359. { "pid": 1, "tid": 24, "ts": 2179164.0625, "dur": 418.7999963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4187999963760376, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryAssembly" } },
  1360. { "pid": 1, "tid": 24, "ts": 2179583.251953125, "dur": 548.3999848365784, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5483999848365784, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryAssemblyInfo" } },
  1361. { "pid": 1, "tid": 24, "ts": 2180232.177734375, "dur": 6022.69983291626, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.02269983291626, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryConverter" } },
  1362. { "pid": 1, "tid": 24, "ts": 2186833.0078125, "dur": 5210.599899291992, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.210599899291992, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryFormatter" } },
  1363. { "pid": 1, "tid": 24, "ts": 2192062.98828125, "dur": 671.7000007629395, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6717000007629395, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryMethodCall" } },
  1364. { "pid": 1, "tid": 24, "ts": 2192735.3515625, "dur": 665.7999753952026, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6657999753952026, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryMethodReturn" } },
  1365. { "pid": 1, "tid": 24, "ts": 2193402.099609375, "dur": 374.9000132083893, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3749000132083893, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObject" } },
  1366. { "pid": 1, "tid": 24, "ts": 2193777.34375, "dur": 481.0999929904938, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4810999929904938, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectString" } },
  1367. { "pid": 1, "tid": 24, "ts": 2194259.033203125, "dur": 995.5999851226807, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9955999851226807, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMap" } },
  1368. { "pid": 1, "tid": 24, "ts": 2195255.859375, "dur": 1820.9999799728394, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8209999799728394, "detail": "System.Runtime.Serialization.Formatters.Binary.BinaryObjectWithMapTyped" } },
  1369. { "pid": 1, "tid": 24, "ts": 2197080.56640625, "dur": 46959.999084472656, "ph": "X", "name": "mscorlib.cpp", "args": { "durationMS": 46.959999084472656, "detail": "" } },
  1370. { "pid": 1, "tid": 24, "ts": 2244059.814453125, "dur": 5356.6999435424805, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.3566999435424805, "detail": "System.Globalization.NumberFormatInfo" } },
  1371. { "pid": 1, "tid": 24, "ts": 2249417.48046875, "dur": 62661.79656982422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 62.66179656982422, "detail": "System.NumberFormatter" } },
  1372. { "pid": 1, "tid": 24, "ts": 2312096.435546875, "dur": 56635.398864746094, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 56.635398864746094, "detail": "System.Threading.OSSpecificSynchronizationContext" } },
  1373. { "pid": 1, "tid": 24, "ts": 2368732.666015625, "dur": 3993.0999279022217, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9930999279022217, "detail": "System.Runtime.Remoting.ObjRef" } },
  1374. { "pid": 1, "tid": 24, "ts": 2372726.806640625, "dur": 805.9999942779541, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8059999942779541, "detail": "System.Runtime.Remoting.Messaging.ObjRefSurrogate" } },
  1375. { "pid": 1, "tid": 24, "ts": 2373533.447265625, "dur": 716.70001745224, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.71670001745224, "detail": "System.Object" } },
  1376. { "pid": 1, "tid": 24, "ts": 2374250.732421875, "dur": 1345.2999591827393, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3452999591827393, "detail": "System.ObjectDisposedException" } },
  1377. { "pid": 1, "tid": 24, "ts": 2375597.16796875, "dur": 461.40000224113464, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46140000224113464, "detail": "System.Collections.Generic.ObjectEqualityComparer" } },
  1378. { "pid": 1, "tid": 24, "ts": 2376059.326171875, "dur": 8423.600196838379, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.423600196838379, "detail": "System.Runtime.Serialization.ObjectHolder" } },
  1379. { "pid": 1, "tid": 24, "ts": 2384483.642578125, "dur": 799.0999817848206, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7990999817848206, "detail": "System.Runtime.Serialization.ObjectHolderList" } },
  1380. { "pid": 1, "tid": 24, "ts": 2385283.69140625, "dur": 546.1000204086304, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5461000204086304, "detail": "System.Runtime.Serialization.ObjectHolderListEnumerator" } },
  1381. { "pid": 1, "tid": 24, "ts": 2385830.322265625, "dur": 1946.7999935150146, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9467999935150146, "detail": "System.Runtime.Serialization.ObjectIDGenerator" } },
  1382. { "pid": 1, "tid": 24, "ts": 2387777.83203125, "dur": 29282.899856567383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.282899856567383, "detail": "System.Runtime.Serialization.ObjectManager" } },
  1383. { "pid": 1, "tid": 24, "ts": 2417062.255859375, "dur": 1794.0000295639038, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7940000295639038, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectMap" } },
  1384. { "pid": 1, "tid": 24, "ts": 2418858.3984375, "dur": 643.7000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6437000036239624, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectMapInfo" } },
  1385. { "pid": 1, "tid": 24, "ts": 2419503.41796875, "dur": 620.8000183105469, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6208000183105469, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectNull" } },
  1386. { "pid": 1, "tid": 24, "ts": 2420125.244140625, "dur": 851.7000079154968, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8517000079154968, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectProgress" } },
  1387. { "pid": 1, "tid": 24, "ts": 2420979.00390625, "dur": 21627.901077270508, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 21.627901077270508, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectReader" } },
  1388. { "pid": 1, "tid": 24, "ts": 2442607.91015625, "dur": 34391.89910888672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.39189910888672, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectWriter" } },
  1389. { "pid": 1, "tid": 24, "ts": 2477002.685546875, "dur": 48250.90026855469, "ph": "X", "name": "mscorlib8.cpp", "args": { "durationMS": 48.25090026855469, "detail": "" } },
  1390. { "pid": 1, "tid": 24, "ts": 2525891.6015625, "dur": 581.7000269889832, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5817000269889832, "detail": "System.Console/WindowsConsole" } },
  1391. { "pid": 1, "tid": 24, "ts": 2526659.912109375, "dur": 732.8000068664551, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7328000068664551, "detail": "System.Runtime.Remoting.Contexts.CrossContextChannel/ContextRestoreSink" } },
  1392. { "pid": 1, "tid": 24, "ts": 2527820.80078125, "dur": 889.9999856948853, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8899999856948853, "detail": "System.DateTimeParse/MatchNumberDelegate" } },
  1393. { "pid": 1, "tid": 24, "ts": 2528733.88671875, "dur": 546.2999939918518, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5462999939918518, "detail": "System.DefaultBinder/<>c" } },
  1394. { "pid": 1, "tid": 24, "ts": 2529434.814453125, "dur": 1000.3000497817993, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0003000497817993, "detail": "System.DelegateSerializationHolder/DelegateEntry" } },
  1395. { "pid": 1, "tid": 24, "ts": 2530641.11328125, "dur": 692.3999786376953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6923999786376953, "detail": "System.Collections.EmptyReadOnlyDictionaryInternal/NodeEnumerator" } },
  1396. { "pid": 1, "tid": 24, "ts": 2531334.228515625, "dur": 2265.000104904175, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.265000104904175, "detail": "System.Text.Encoding/DefaultDecoder" } },
  1397. { "pid": 1, "tid": 24, "ts": 2533601.07421875, "dur": 2208.1000804901123, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2081000804901123, "detail": "System.Text.Encoding/DefaultEncoder" } },
  1398. { "pid": 1, "tid": 24, "ts": 2535810.05859375, "dur": 1640.2000188827515, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6402000188827515, "detail": "System.Text.Encoding/EncodingByteBuffer" } },
  1399. { "pid": 1, "tid": 24, "ts": 2537451.171875, "dur": 1426.5999794006348, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4265999794006348, "detail": "System.Text.Encoding/EncodingCharBuffer" } },
  1400. { "pid": 1, "tid": 24, "ts": 2539032.2265625, "dur": 436.1000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4361000061035156, "detail": "System.Reflection.EventInfo/AddEventAdapter" } },
  1401. { "pid": 1, "tid": 24, "ts": 2539469.7265625, "dur": 714.2000198364258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7142000198364258, "detail": "System.Security.Policy.Evidence/EvidenceEnumerator" } },
  1402. { "pid": 1, "tid": 24, "ts": 2540208.0078125, "dur": 2051.800012588501, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.051800012588501, "detail": "System.Threading.ExecutionContext/Reader" } },
  1403. { "pid": 1, "tid": 24, "ts": 2542260.986328125, "dur": 543.2999730110168, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5432999730110168, "detail": "System.IO.FileStream/ReadDelegate" } },
  1404. { "pid": 1, "tid": 24, "ts": 2542805.17578125, "dur": 632.3000192642212, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6323000192642212, "detail": "System.IO.FileStream/WriteDelegate" } },
  1405. { "pid": 1, "tid": 24, "ts": 2543680.419921875, "dur": 1723.5000133514404, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7235000133514404, "detail": "System.Guid/GuidResult" } },
  1406. { "pid": 1, "tid": 24, "ts": 2545710.205078125, "dur": 1577.6000022888184, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5776000022888184, "detail": "System.Collections.Hashtable/HashtableEnumerator" } },
  1407. { "pid": 1, "tid": 24, "ts": 2547289.794921875, "dur": 700.9000182151794, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7009000182151794, "detail": "System.Collections.Hashtable/KeyCollection" } },
  1408. { "pid": 1, "tid": 24, "ts": 2547991.69921875, "dur": 3878.4000873565674, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8784000873565674, "detail": "System.Collections.Hashtable/SyncHashtable" } },
  1409. { "pid": 1, "tid": 24, "ts": 2551871.337890625, "dur": 523.8000154495239, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5238000154495239, "detail": "System.Collections.Hashtable/bucket" } },
  1410. { "pid": 1, "tid": 24, "ts": 2552420.654296875, "dur": 17640.701293945312, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.640701293945312, "detail": "System.Globalization.HebrewNumber/HebrewValue" } },
  1411. { "pid": 1, "tid": 24, "ts": 2570062.98828125, "dur": 409.39998626708984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.40939998626708984, "detail": "System.Runtime.Remoting.Lifetime.Lease/RenewalDelegate" } },
  1412. { "pid": 1, "tid": 24, "ts": 2570563.4765625, "dur": 1248.2000589370728, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2482000589370728, "detail": "System.Collections.ListDictionaryInternal/NodeEnumerator" } },
  1413. { "pid": 1, "tid": 24, "ts": 2571813.720703125, "dur": 56173.099517822266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 56.173099517822266, "detail": "System.Runtime.Remoting.Messaging.LogicalCallContext/Reader" } },
  1414. { "pid": 1, "tid": 24, "ts": 2628253.173828125, "dur": 3958.699941635132, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.958699941635132, "detail": "System.Runtime.Remoting.Messaging.MessageDictionary/DictionaryEnumerator" } },
  1415. { "pid": 1, "tid": 24, "ts": 2632469.970703125, "dur": 466.19999408721924, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46619999408721924, "detail": "System.Reflection.MonoProperty/GetterAdapter" } },
  1416. { "pid": 1, "tid": 24, "ts": 2632936.767578125, "dur": 1317.0000314712524, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3170000314712524, "detail": "System.Number/NumberBuffer" } },
  1417. { "pid": 1, "tid": 24, "ts": 2634255.126953125, "dur": 7059.599876403809, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.059599876403809, "detail": "System.NumberFormatter/CustomInfo" } },
  1418. { "pid": 1, "tid": 24, "ts": 2641607.177734375, "dur": 3202.8000354766846, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2028000354766846, "detail": "System.Threading.OSSpecificSynchronizationContext/InvocationContext" } },
  1419. { "pid": 1, "tid": 24, "ts": 2644810.791015625, "dur": 405.2000045776367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4052000045776367, "detail": "System.Threading.OSSpecificSynchronizationContext/InvocationEntryDelegate" } },
  1420. { "pid": 1, "tid": 24, "ts": 2645314.453125, "dur": 520.799994468689, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.520799994468689, "detail": "System.Runtime.Serialization.Formatters.Binary.ObjectReader/TopLevelAssemblyTypeResolver" } },
  1421. { "pid": 1, "tid": 24, "ts": 2645932.12890625, "dur": 1187.999963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.187999963760376, "detail": "System.ParameterizedStrings/FormatParam" } },
  1422. { "pid": 1, "tid": 24, "ts": 2647121.09375, "dur": 1294.8999404907227, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2948999404907227, "detail": "System.ParameterizedStrings/LowLevelStack" } },
  1423. { "pid": 1, "tid": 24, "ts": 2648681.640625, "dur": 1357.100009918213, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.357100009918213, "detail": "System.Collections.Queue/QueueEnumerator" } },
  1424. { "pid": 1, "tid": 24, "ts": 2650391.845703125, "dur": 2626.8999576568604, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6268999576568604, "detail": "System.Resources.ResourceReader/ResourceEnumerator" } },
  1425. { "pid": 1, "tid": 24, "ts": 2653121.58203125, "dur": 4322.500228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.322500228881836, "detail": "System.Security.SecurityElement/SecurityAttribute" } },
  1426. { "pid": 1, "tid": 24, "ts": 2657445.80078125, "dur": 2225.800037384033, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.225800037384033, "detail": "System.Threading.SemaphoreSlim/<WaitUntilCountOrTimeoutAsync>d__31" } },
  1427. { "pid": 1, "tid": 24, "ts": 2660504.8828125, "dur": 1534.8000526428223, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5348000526428223, "detail": "Mono.Xml.SmallXmlParser/AttrListImpl" } },
  1428. { "pid": 1, "tid": 24, "ts": 2662442.87109375, "dur": 1988.1000518798828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9881000518798828, "detail": "System.Collections.SortedList/SortedListEnumerator" } },
  1429. { "pid": 1, "tid": 24, "ts": 2664432.12890625, "dur": 675.4000186920166, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6754000186920166, "detail": "System.Threading.SpinLock/SystemThreading_SpinLockDebugView" } },
  1430. { "pid": 1, "tid": 24, "ts": 2665388.916015625, "dur": 1094.6999788284302, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0946999788284302, "detail": "System.Collections.Stack/StackEnumerator" } },
  1431. { "pid": 1, "tid": 24, "ts": 2666494.384765625, "dur": 886.6999745368958, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8866999745368958, "detail": "System.IO.Stream/<>c" } },
  1432. { "pid": 1, "tid": 24, "ts": 2667382.080078125, "dur": 2132.200002670288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.132200002670288, "detail": "System.IO.Stream/NullStream" } },
  1433. { "pid": 1, "tid": 24, "ts": 2669518.5546875, "dur": 1329.200029373169, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.329200029373169, "detail": "System.IO.Stream/ReadWriteTask" } },
  1434. { "pid": 1, "tid": 24, "ts": 2670848.876953125, "dur": 3557.1000576019287, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5571000576019287, "detail": "System.IO.Stream/SynchronousAsyncResult" } },
  1435. { "pid": 1, "tid": 24, "ts": 2674406.73828125, "dur": 667.1000123023987, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6671000123023987, "detail": "System.IO.StreamReader/NullStreamReader" } },
  1436. { "pid": 1, "tid": 24, "ts": 2675353.759765625, "dur": 845.7000255584717, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8457000255584717, "detail": "System.Threading.Tasks.Task/<>c" } },
  1437. { "pid": 1, "tid": 24, "ts": 2676200.439453125, "dur": 1131.8999528884888, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1318999528884888, "detail": "System.Threading.Tasks.Task/<>c__DisplayClass178_0" } },
  1438. { "pid": 1, "tid": 24, "ts": 2677333.0078125, "dur": 487.5999987125397, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4875999987125397, "detail": "System.Threading.Tasks.Task/ContingentProperties" } },
  1439. { "pid": 1, "tid": 24, "ts": 2677821.2890625, "dur": 953.7000060081482, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9537000060081482, "detail": "System.Threading.Tasks.Task/DelayPromise" } },
  1440. { "pid": 1, "tid": 24, "ts": 2678971.6796875, "dur": 957.4999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9574999809265137, "detail": "System.Threading.Tasks.TaskFactory/CompleteOnInvokePromise" } },
  1441. { "pid": 1, "tid": 24, "ts": 2680205.078125, "dur": 400.0000059604645, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4000000059604645, "detail": "System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation/<>c" } },
  1442. { "pid": 1, "tid": 24, "ts": 2680605.95703125, "dur": 579.9999833106995, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5799999833106995, "detail": "System.IO.TextReader/<>c" } },
  1443. { "pid": 1, "tid": 24, "ts": 2681426.025390625, "dur": 681.4000010490417, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6814000010490417, "detail": "System.IO.TextReader/SyncTextReader" } },
  1444. { "pid": 1, "tid": 24, "ts": 2682108.154296875, "dur": 1555.799961090088, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.555799961090088, "detail": "System.IO.TextWriter/<>c" } },
  1445. { "pid": 1, "tid": 24, "ts": 2683664.794921875, "dur": 351.90001130104065, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35190001130104065, "detail": "System.IO.TextWriter/NullTextWriter" } },
  1446. { "pid": 1, "tid": 24, "ts": 2684017.822265625, "dur": 1403.9000272750854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4039000272750854, "detail": "System.IO.TextWriter/SyncTextWriter" } },
  1447. { "pid": 1, "tid": 24, "ts": 2685422.8515625, "dur": 1614.5000457763672, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6145000457763672, "detail": "System.Threading.ThreadPool/<EnumerateQueuedWorkItems>d__21" } },
  1448. { "pid": 1, "tid": 24, "ts": 2687038.0859375, "dur": 19319.499969482422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.319499969482422, "detail": "System.Threading.Tasks.ThreadPoolTaskScheduler/<FilterTasksFromWorkItems>d__7" } },
  1449. { "pid": 1, "tid": 24, "ts": 2706358.3984375, "dur": 1153.9000272750854, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1539000272750854, "detail": "System.Threading.ThreadPoolWorkQueue/QueueSegment" } },
  1450. { "pid": 1, "tid": 24, "ts": 2707513.427734375, "dur": 3314.500093460083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.314500093460083, "detail": "System.Threading.ThreadPoolWorkQueue/WorkStealingQueue" } },
  1451. { "pid": 1, "tid": 24, "ts": 2710828.857421875, "dur": 3062.2000694274902, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0622000694274902, "detail": "System.Globalization.TimeSpanFormat/FormatLiterals" } },
  1452. { "pid": 1, "tid": 24, "ts": 2714205.078125, "dur": 4645.599842071533, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.645599842071533, "detail": "System.TimeZoneInfo/AdjustmentRule" } },
  1453. { "pid": 1, "tid": 24, "ts": 2718852.5390625, "dur": 1324.2000341415405, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3242000341415405, "detail": "System.TimeZoneInfo/DYNAMIC_TIME_ZONE_INFORMATION" } },
  1454. { "pid": 1, "tid": 24, "ts": 2720205.322265625, "dur": 725.0000238418579, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7250000238418579, "detail": "System.TimeZoneInfo/TIME_ZONE_INFORMATION" } },
  1455. { "pid": 1, "tid": 24, "ts": 2720932.12890625, "dur": 34343.39904785156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.34339904785156, "detail": "System.TimeZoneInfo/TransitionTime" } },
  1456. { "pid": 1, "tid": 24, "ts": 2755277.099609375, "dur": 5410.799980163574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.410799980163574, "detail": "System.Threading.Timer/Scheduler" } },
  1457. { "pid": 1, "tid": 24, "ts": 2760688.96484375, "dur": 372.29999899864197, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37229999899864197, "detail": "System.Threading.Timer/TimerComparer" } },
  1458. { "pid": 1, "tid": 24, "ts": 2761062.01171875, "dur": 387.60000467300415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38760000467300415, "detail": "System.TypeIdentifiers/Display" } },
  1459. { "pid": 1, "tid": 24, "ts": 2761450.439453125, "dur": 478.39999198913574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47839999198913574, "detail": "System.TypeNames/ATypeName" } },
  1460. { "pid": 1, "tid": 24, "ts": 2762222.900390625, "dur": 1456.4000368118286, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4564000368118286, "detail": "System.Text.UTF7Encoding/Decoder" } },
  1461. { "pid": 1, "tid": 24, "ts": 2763680.419921875, "dur": 394.4000005722046, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3944000005722046, "detail": "System.Text.UTF7Encoding/DecoderUTF7Fallback" } },
  1462. { "pid": 1, "tid": 24, "ts": 2764075.68359375, "dur": 713.5000228881836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7135000228881836, "detail": "System.Text.UTF7Encoding/DecoderUTF7FallbackBuffer" } },
  1463. { "pid": 1, "tid": 24, "ts": 2764789.55078125, "dur": 1855.2000522613525, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8552000522613525, "detail": "System.Text.UTF7Encoding/Encoder" } },
  1464. { "pid": 1, "tid": 24, "ts": 2766646.97265625, "dur": 1625.499963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.625499963760376, "detail": "System.Text.UTF8Encoding/UTF8Decoder" } },
  1465. { "pid": 1, "tid": 24, "ts": 2768273.681640625, "dur": 2109.999895095825, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.109999895095825, "detail": "System.Text.UTF8Encoding/UTF8Encoder" } },
  1466. { "pid": 1, "tid": 24, "ts": 2770384.521484375, "dur": 1937.1999502182007, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9371999502182007, "detail": "System.Text.UnicodeEncoding/Decoder" } },
  1467. { "pid": 1, "tid": 24, "ts": 2772409.1796875, "dur": 402.5999903678894, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4025999903678894, "detail": "System.Console/WindowsConsole/WindowsCancelHandler" } },
  1468. { "pid": 1, "tid": 24, "ts": 2773086.9140625, "dur": 54257.598876953125, "ph": "X", "name": "mscorlib16.cpp", "args": { "durationMS": 54.257598876953125, "detail": "" } },
  1469. { "pid": 1, "tid": 24, "ts": 2827431.884765625, "dur": 347.2000062465668, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3472000062465668, "detail": "InternalArray__get_Item" } },
  1470. { "pid": 1, "tid": 24, "ts": 2828998.53515625, "dur": 370.49999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37049999833106995, "detail": "InternalArray__get_Item" } },
  1471. { "pid": 1, "tid": 24, "ts": 2829370.1171875, "dur": 393.9000070095062, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3939000070095062, "detail": "InternalArray__get_Item" } },
  1472. { "pid": 1, "tid": 24, "ts": 2830098.388671875, "dur": 379.0000081062317, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3790000081062317, "detail": "InternalArray__get_Item" } },
  1473. { "pid": 1, "tid": 24, "ts": 2832016.845703125, "dur": 12538.100242614746, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 12.538100242614746, "detail": "InternalArray__get_Item" } },
  1474. { "pid": 1, "tid": 24, "ts": 2844556.640625, "dur": 365.2999997138977, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3652999997138977, "detail": "InternalArray__get_Item" } },
  1475. { "pid": 1, "tid": 24, "ts": 2844922.8515625, "dur": 349.0000069141388, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3490000069141388, "detail": "InternalArray__get_Item" } },
  1476. { "pid": 1, "tid": 24, "ts": 2845273.193359375, "dur": 334.69998836517334, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33469998836517334, "detail": "InternalArray__get_Item" } },
  1477. { "pid": 1, "tid": 24, "ts": 2845608.88671875, "dur": 38719.50149536133, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 38.71950149536133, "detail": "InternalArray__get_Item" } },
  1478. { "pid": 1, "tid": 24, "ts": 2884967.529296875, "dur": 411.10000014305115, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41110000014305115, "detail": "InternalArray__get_Item" } },
  1479. { "pid": 1, "tid": 24, "ts": 2886004.638671875, "dur": 424.10001158714294, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42410001158714294, "detail": "InternalArray__set_Item" } },
  1480. { "pid": 1, "tid": 24, "ts": 2886429.6875, "dur": 423.0999946594238, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42309999465942383, "detail": "InternalArray__set_Item" } },
  1481. { "pid": 1, "tid": 24, "ts": 2886853.515625, "dur": 461.60000562667847, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.46160000562667847, "detail": "InternalArray__set_Item" } },
  1482. { "pid": 1, "tid": 24, "ts": 2887316.650390625, "dur": 1825.9999752044678, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.8259999752044678, "detail": "InternalArray__set_Item" } },
  1483. { "pid": 1, "tid": 24, "ts": 2889143.798828125, "dur": 443.1000053882599, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4431000053882599, "detail": "InternalArray__set_Item" } },
  1484. { "pid": 1, "tid": 24, "ts": 2889587.890625, "dur": 426.8999993801117, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4268999993801117, "detail": "InternalArray__set_Item" } },
  1485. { "pid": 1, "tid": 24, "ts": 2890015.625, "dur": 617.7999973297119, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6177999973297119, "detail": "InternalArray__set_Item" } },
  1486. { "pid": 1, "tid": 24, "ts": 2890634.765625, "dur": 472.69999980926514, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47269999980926514, "detail": "InternalArray__set_Item" } },
  1487. { "pid": 1, "tid": 24, "ts": 2891108.154296875, "dur": 428.99999022483826, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42899999022483826, "detail": "InternalArray__set_Item" } },
  1488. { "pid": 1, "tid": 24, "ts": 2891538.0859375, "dur": 416.70000553131104, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41670000553131104, "detail": "InternalArray__set_Item" } },
  1489. { "pid": 1, "tid": 24, "ts": 2891955.810546875, "dur": 392.1999931335449, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3921999931335449, "detail": "InternalArray__set_Item" } },
  1490. { "pid": 1, "tid": 24, "ts": 2892349.12109375, "dur": 385.89999079704285, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38589999079704285, "detail": "InternalArray__set_Item" } },
  1491. { "pid": 1, "tid": 24, "ts": 2892736.328125, "dur": 425.90001225471497, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42590001225471497, "detail": "InternalArray__set_Item" } },
  1492. { "pid": 1, "tid": 24, "ts": 2893163.818359375, "dur": 397.50000834465027, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39750000834465027, "detail": "InternalArray__set_Item" } },
  1493. { "pid": 1, "tid": 24, "ts": 2893562.5, "dur": 383.70001316070557, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38370001316070557, "detail": "InternalArray__set_Item" } },
  1494. { "pid": 1, "tid": 24, "ts": 2893947.265625, "dur": 394.4999873638153, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3944999873638153, "detail": "InternalArray__set_Item" } },
  1495. { "pid": 1, "tid": 24, "ts": 2894342.529296875, "dur": 384.799987077713, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.384799987077713, "detail": "InternalArray__set_Item" } },
  1496. { "pid": 1, "tid": 24, "ts": 2894728.515625, "dur": 401.49998664855957, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40149998664855957, "detail": "InternalArray__set_Item" } },
  1497. { "pid": 1, "tid": 24, "ts": 2895130.859375, "dur": 396.8999981880188, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3968999981880188, "detail": "InternalArray__set_Item" } },
  1498. { "pid": 1, "tid": 24, "ts": 2895528.80859375, "dur": 387.49998807907104, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38749998807907104, "detail": "InternalArray__set_Item" } },
  1499. { "pid": 1, "tid": 24, "ts": 2895917.236328125, "dur": 490.9999966621399, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4909999966621399, "detail": "InternalArray__set_Item" } },
  1500. { "pid": 1, "tid": 24, "ts": 2896409.1796875, "dur": 398.20000529289246, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39820000529289246, "detail": "InternalArray__set_Item" } },
  1501. { "pid": 1, "tid": 24, "ts": 2896808.349609375, "dur": 762.3999714851379, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7623999714851379, "detail": "InternalArray__set_Item" } },
  1502. { "pid": 1, "tid": 24, "ts": 2897572.021484375, "dur": 415.89999198913574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41589999198913574, "detail": "InternalArray__set_Item" } },
  1503. { "pid": 1, "tid": 24, "ts": 2897989.2578125, "dur": 385.699987411499, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.385699987411499, "detail": "InternalArray__set_Item" } },
  1504. { "pid": 1, "tid": 24, "ts": 2898375.732421875, "dur": 372.99999594688416, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37299999594688416, "detail": "InternalArray__set_Item" } },
  1505. { "pid": 1, "tid": 24, "ts": 2898749.755859375, "dur": 2879.199981689453, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.879199981689453, "detail": "InternalArray__set_Item" } },
  1506. { "pid": 1, "tid": 24, "ts": 2901630.126953125, "dur": 412.2999906539917, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4122999906539917, "detail": "InternalArray__set_Item" } },
  1507. { "pid": 1, "tid": 24, "ts": 2902043.9453125, "dur": 413.100004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.413100004196167, "detail": "InternalArray__set_Item" } },
  1508. { "pid": 1, "tid": 24, "ts": 2902458.0078125, "dur": 400.49999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.40049999952316284, "detail": "InternalArray__set_Item" } },
  1509. { "pid": 1, "tid": 24, "ts": 2902859.375, "dur": 394.69999074935913, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39469999074935913, "detail": "InternalArray__set_Item" } },
  1510. { "pid": 1, "tid": 24, "ts": 2903255.126953125, "dur": 389.8000121116638, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3898000121116638, "detail": "InternalArray__set_Item" } },
  1511. { "pid": 1, "tid": 24, "ts": 2903645.99609375, "dur": 391.49999618530273, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39149999618530273, "detail": "InternalArray__set_Item" } },
  1512. { "pid": 1, "tid": 24, "ts": 2904038.330078125, "dur": 380.4999887943268, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3804999887943268, "detail": "InternalArray__set_Item" } },
  1513. { "pid": 1, "tid": 24, "ts": 2904419.921875, "dur": 388.39998841285706, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38839998841285706, "detail": "InternalArray__set_Item" } },
  1514. { "pid": 1, "tid": 24, "ts": 2904809.326171875, "dur": 572.7999806404114, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5727999806404114, "detail": "InternalArray__set_Item" } },
  1515. { "pid": 1, "tid": 24, "ts": 2905383.056640625, "dur": 404.1000008583069, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4041000008583069, "detail": "InternalArray__set_Item" } },
  1516. { "pid": 1, "tid": 24, "ts": 2905788.330078125, "dur": 1134.0999603271484, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1340999603271484, "detail": "InternalArray__set_Item" } },
  1517. { "pid": 1, "tid": 24, "ts": 2906923.828125, "dur": 443.69998574256897, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44369998574256897, "detail": "InternalArray__set_Item" } },
  1518. { "pid": 1, "tid": 24, "ts": 2907368.896484375, "dur": 376.5999972820282, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3765999972820282, "detail": "InternalArray__set_Item" } },
  1519. { "pid": 1, "tid": 24, "ts": 2907746.337890625, "dur": 380.29998540878296, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38029998540878296, "detail": "InternalArray__set_Item" } },
  1520. { "pid": 1, "tid": 24, "ts": 2908127.685546875, "dur": 360.39999127388, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36039999127388, "detail": "InternalArray__set_Item" } },
  1521. { "pid": 1, "tid": 24, "ts": 2908489.013671875, "dur": 384.40001010894775, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38440001010894775, "detail": "InternalArray__set_Item" } },
  1522. { "pid": 1, "tid": 24, "ts": 2908874.0234375, "dur": 415.800005197525, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.415800005197525, "detail": "InternalArray__set_Item" } },
  1523. { "pid": 1, "tid": 24, "ts": 2909291.015625, "dur": 535.3000164031982, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5353000164031982, "detail": "InternalArray__set_Item" } },
  1524. { "pid": 1, "tid": 24, "ts": 2909827.392578125, "dur": 383.1999897956848, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3831999897956848, "detail": "InternalArray__set_Item" } },
  1525. { "pid": 1, "tid": 24, "ts": 2910211.669921875, "dur": 382.2000026702881, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3822000026702881, "detail": "InternalArray__set_Item" } },
  1526. { "pid": 1, "tid": 24, "ts": 2910594.970703125, "dur": 391.60001277923584, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39160001277923584, "detail": "InternalArray__set_Item" } },
  1527. { "pid": 1, "tid": 24, "ts": 2910987.79296875, "dur": 375.29999017715454, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37529999017715454, "detail": "InternalArray__set_Item" } },
  1528. { "pid": 1, "tid": 24, "ts": 2911363.76953125, "dur": 359.20000076293945, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35920000076293945, "detail": "InternalArray__set_Item" } },
  1529. { "pid": 1, "tid": 24, "ts": 2911723.876953125, "dur": 384.0000033378601, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3840000033378601, "detail": "InternalArray__set_Item" } },
  1530. { "pid": 1, "tid": 24, "ts": 2912108.642578125, "dur": 363.20000886917114, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36320000886917114, "detail": "InternalArray__set_Item" } },
  1531. { "pid": 1, "tid": 24, "ts": 2912473.14453125, "dur": 366.8000102043152, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3668000102043152, "detail": "InternalArray__set_Item" } },
  1532. { "pid": 1, "tid": 24, "ts": 2912840.8203125, "dur": 367.30000376701355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36730000376701355, "detail": "InternalArray__set_Item" } },
  1533. { "pid": 1, "tid": 24, "ts": 2913208.984375, "dur": 375.29999017715454, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37529999017715454, "detail": "InternalArray__set_Item" } },
  1534. { "pid": 1, "tid": 24, "ts": 2913585.205078125, "dur": 375.99998712539673, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37599998712539673, "detail": "InternalArray__set_Item" } },
  1535. { "pid": 1, "tid": 24, "ts": 2913961.9140625, "dur": 384.99999046325684, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38499999046325684, "detail": "InternalArray__set_Item" } },
  1536. { "pid": 1, "tid": 24, "ts": 2914348.14453125, "dur": 374.70000982284546, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37470000982284546, "detail": "InternalArray__set_Item" } },
  1537. { "pid": 1, "tid": 24, "ts": 2914723.6328125, "dur": 364.4999861717224, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3644999861717224, "detail": "InternalArray__set_Item" } },
  1538. { "pid": 1, "tid": 24, "ts": 2915089.111328125, "dur": 369.80000138282776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36980000138282776, "detail": "InternalArray__set_Item" } },
  1539. { "pid": 1, "tid": 24, "ts": 2915460.693359375, "dur": 370.59998512268066, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37059998512268066, "detail": "InternalArray__set_Item" } },
  1540. { "pid": 1, "tid": 24, "ts": 2915833.251953125, "dur": 397.39999175071716, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39739999175071716, "detail": "InternalArray__set_Item" } },
  1541. { "pid": 1, "tid": 24, "ts": 2916231.93359375, "dur": 385.3999972343445, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3853999972343445, "detail": "InternalArray__set_Item" } },
  1542. { "pid": 1, "tid": 24, "ts": 2916618.408203125, "dur": 435.7999861240387, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4357999861240387, "detail": "InternalArray__set_Item" } },
  1543. { "pid": 1, "tid": 24, "ts": 2917055.17578125, "dur": 379.0999948978424, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3790999948978424, "detail": "InternalArray__set_Item" } },
  1544. { "pid": 1, "tid": 24, "ts": 2917435.302734375, "dur": 342.5999879837036, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3425999879837036, "detail": "LastIndexOf" } },
  1545. { "pid": 1, "tid": 24, "ts": 2917778.80859375, "dur": 563.3000135421753, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5633000135421753, "detail": "LastIndexOf" } },
  1546. { "pid": 1, "tid": 24, "ts": 2918343.26171875, "dur": 1514.5000219345093, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.5145000219345093, "detail": "LastIndexOf" } },
  1547. { "pid": 1, "tid": 24, "ts": 2920170.41015625, "dur": 1759.0999603271484, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7590999603271484, "detail": "Resize" } },
  1548. { "pid": 1, "tid": 24, "ts": 2921930.419921875, "dur": 896.399974822998, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.896399974822998, "detail": "Resize" } },
  1549. { "pid": 1, "tid": 24, "ts": 2922828.125, "dur": 359.10001397132874, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35910001397132874, "detail": "Reverse" } },
  1550. { "pid": 1, "tid": 24, "ts": 2923474.853515625, "dur": 837.8000259399414, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8378000259399414, "detail": "Reverse" } },
  1551. { "pid": 1, "tid": 24, "ts": 2924313.96484375, "dur": 685.9999895095825, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6859999895095825, "detail": "Reverse" } },
  1552. { "pid": 1, "tid": 24, "ts": 2925001.220703125, "dur": 693.7000155448914, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6937000155448914, "detail": "Reverse" } },
  1553. { "pid": 1, "tid": 24, "ts": 2925696.2890625, "dur": 676.9999861717224, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6769999861717224, "detail": "Reverse" } },
  1554. { "pid": 1, "tid": 24, "ts": 2926374.267578125, "dur": 687.6000165939331, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6876000165939331, "detail": "Reverse" } },
  1555. { "pid": 1, "tid": 24, "ts": 2927062.744140625, "dur": 674.0999817848206, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6740999817848206, "detail": "Reverse" } },
  1556. { "pid": 1, "tid": 24, "ts": 2927738.037109375, "dur": 2813.1000995635986, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.8131000995635986, "detail": "Reverse" } },
  1557. { "pid": 1, "tid": 24, "ts": 2930552.24609375, "dur": 6651.100158691406, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 6.651100158691406, "detail": "Reverse" } },
  1558. { "pid": 1, "tid": 24, "ts": 2937204.345703125, "dur": 773.1999754905701, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7731999754905701, "detail": "Reverse" } },
  1559. { "pid": 1, "tid": 24, "ts": 2937978.759765625, "dur": 980.5999994277954, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9805999994277954, "detail": "Reverse" } },
  1560. { "pid": 1, "tid": 24, "ts": 2938960.693359375, "dur": 1220.8000421524048, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2208000421524048, "detail": "Reverse" } },
  1561. { "pid": 1, "tid": 24, "ts": 2940182.373046875, "dur": 701.69997215271, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.70169997215271, "detail": "Reverse" } },
  1562. { "pid": 1, "tid": 24, "ts": 2940885.25390625, "dur": 693.4999823570251, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6934999823570251, "detail": "Reverse" } },
  1563. { "pid": 1, "tid": 24, "ts": 2941579.58984375, "dur": 708.899974822998, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.708899974822998, "detail": "Reverse" } },
  1564. { "pid": 1, "tid": 24, "ts": 2942289.55078125, "dur": 1001.2999773025513, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0012999773025513, "detail": "Reverse" } },
  1565. { "pid": 1, "tid": 24, "ts": 2944100.341796875, "dur": 335.9000086784363, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3359000086784363, "detail": "Sort" } },
  1566. { "pid": 1, "tid": 24, "ts": 2944437.5, "dur": 502.3999810218811, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5023999810218811, "detail": "Sort" } },
  1567. { "pid": 1, "tid": 24, "ts": 2944940.91796875, "dur": 339.1999900341034, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3391999900341034, "detail": "Sort" } },
  1568. { "pid": 1, "tid": 24, "ts": 2945500, "dur": 352.9999852180481, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3529999852180481, "detail": "Sort" } },
  1569. { "pid": 1, "tid": 24, "ts": 2945854.00390625, "dur": 359.29998755455017, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35929998755455017, "detail": "Sort" } },
  1570. { "pid": 1, "tid": 24, "ts": 2946214.35546875, "dur": 694.599986076355, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.694599986076355, "detail": "Sort" } },
  1571. { "pid": 1, "tid": 24, "ts": 2946909.912109375, "dur": 641.6000127792358, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6416000127792358, "detail": "Sort" } },
  1572. { "pid": 1, "tid": 24, "ts": 2947552.978515625, "dur": 656.000018119812, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.656000018119812, "detail": "Sort" } },
  1573. { "pid": 1, "tid": 24, "ts": 2948209.9609375, "dur": 658.5000157356262, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6585000157356262, "detail": "Sort" } },
  1574. { "pid": 1, "tid": 24, "ts": 2948869.140625, "dur": 1771.9000577926636, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.7719000577926636, "detail": "Sort" } },
  1575. { "pid": 1, "tid": 24, "ts": 2950642.333984375, "dur": 689.1000270843506, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6891000270843506, "detail": "Sort" } },
  1576. { "pid": 1, "tid": 24, "ts": 2951332.51953125, "dur": 650.6999731063843, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6506999731063843, "detail": "Sort" } },
  1577. { "pid": 1, "tid": 24, "ts": 2951983.88671875, "dur": 630.8000087738037, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6308000087738037, "detail": "Sort" } },
  1578. { "pid": 1, "tid": 24, "ts": 2952615.72265625, "dur": 662.0000004768372, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6620000004768372, "detail": "Sort" } },
  1579. { "pid": 1, "tid": 24, "ts": 2953278.80859375, "dur": 626.6000270843506, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6266000270843506, "detail": "Sort" } },
  1580. { "pid": 1, "tid": 24, "ts": 2953906.494140625, "dur": 1728.600025177002, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.728600025177002, "detail": "Sort" } },
  1581. { "pid": 1, "tid": 24, "ts": 2955636.23046875, "dur": 1025.3000259399414, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0253000259399414, "detail": "Sort" } },
  1582. { "pid": 1, "tid": 24, "ts": 2956662.841796875, "dur": 640.999972820282, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.640999972820282, "detail": "Sort" } },
  1583. { "pid": 1, "tid": 24, "ts": 2957304.6875, "dur": 650.7999897003174, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6507999897003174, "detail": "Sort" } },
  1584. { "pid": 1, "tid": 24, "ts": 2957956.298828125, "dur": 626.5000104904175, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6265000104904175, "detail": "Sort" } },
  1585. { "pid": 1, "tid": 24, "ts": 2958583.740234375, "dur": 631.600022315979, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.631600022315979, "detail": "Sort" } },
  1586. { "pid": 1, "tid": 24, "ts": 2959463.8671875, "dur": 883.8000297546387, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8838000297546387, "detail": "Sort" } },
  1587. { "pid": 1, "tid": 24, "ts": 2960348.6328125, "dur": 901.4000296592712, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9014000296592712, "detail": "Sort" } },
  1588. { "pid": 1, "tid": 24, "ts": 2961251.220703125, "dur": 499.7999966144562, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4997999966144562, "detail": "TrueForAll" } },
  1589. { "pid": 1, "tid": 24, "ts": 2965305.908203125, "dur": 629.5999884605408, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6295999884605408, "detail": "GetCustomAttributeOfType" } },
  1590. { "pid": 1, "tid": 24, "ts": 2965936.279296875, "dur": 616.2999868392944, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6162999868392944, "detail": "ThrowOnInvalidArg" } },
  1591. { "pid": 1, "tid": 24, "ts": 2966553.7109375, "dur": 551.1000156402588, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5511000156402588, "detail": "ThrowOnInvalidArg" } },
  1592. { "pid": 1, "tid": 24, "ts": 2967105.46875, "dur": 517.4999833106995, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5174999833106995, "detail": "ThrowOnInvalidArg" } },
  1593. { "pid": 1, "tid": 24, "ts": 2967624.51171875, "dur": 521.0999846458435, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5210999846458435, "detail": "ThrowOnInvalidArg" } },
  1594. { "pid": 1, "tid": 24, "ts": 2968146.240234375, "dur": 541.5999889373779, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5415999889373779, "detail": "ThrowOnInvalidArg" } },
  1595. { "pid": 1, "tid": 24, "ts": 2968688.96484375, "dur": 532.1999788284302, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5321999788284302, "detail": "ThrowOnInvalidArg" } },
  1596. { "pid": 1, "tid": 24, "ts": 2969519.53125, "dur": 1303.9000034332275, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3039000034332275, "detail": "GetValueOrDefault" } },
  1597. { "pid": 1, "tid": 24, "ts": 2970825.439453125, "dur": 668.500006198883, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6685000061988831, "detail": "GetComponent" } },
  1598. { "pid": 1, "tid": 24, "ts": 2972083.984375, "dur": 581.7000269889832, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5817000269889832, "detail": "GetComponents" } },
  1599. { "pid": 1, "tid": 24, "ts": 2974114.74609375, "dur": 792.5999760627747, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7925999760627747, "detail": "ForAll" } },
  1600. { "pid": 1, "tid": 24, "ts": 2974908.447265625, "dur": 479.09998893737793, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47909998893737793, "detail": "UnboxValues" } },
  1601. { "pid": 1, "tid": 24, "ts": 2975671.875, "dur": 513.1000280380249, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5131000280380249, "detail": "UnboxValues" } },
  1602. { "pid": 1, "tid": 24, "ts": 2976433.59375, "dur": 3524.4998931884766, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.5244998931884766, "detail": "GetOrAddComponent" } },
  1603. { "pid": 1, "tid": 24, "ts": 2979959.228515625, "dur": 606.4000129699707, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6064000129699707, "detail": "Any" } },
  1604. { "pid": 1, "tid": 24, "ts": 2980566.40625, "dur": 771.3000178337097, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7713000178337097, "detail": "Any" } },
  1605. { "pid": 1, "tid": 24, "ts": 2981338.623046875, "dur": 639.5999789237976, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6395999789237976, "detail": "CombinePredicates" } },
  1606. { "pid": 1, "tid": 24, "ts": 2981979.248046875, "dur": 1142.899990081787, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.142899990081787, "detail": "Count" } },
  1607. { "pid": 1, "tid": 24, "ts": 2983123.779296875, "dur": 926.1999726295471, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9261999726295471, "detail": "First" } },
  1608. { "pid": 1, "tid": 24, "ts": 2984051.025390625, "dur": 987.2000217437744, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9872000217437744, "detail": "SingleOrDefault" } },
  1609. { "pid": 1, "tid": 24, "ts": 2985039.55078125, "dur": 877.3999810218811, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8773999810218811, "detail": "Where" } },
  1610. { "pid": 1, "tid": 24, "ts": 2985918.212890625, "dur": 2839.900016784668, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.839900016784668, "detail": "CanHandleEvent" } },
  1611. { "pid": 1, "tid": 24, "ts": 2988759.27734375, "dur": 1895.2000141143799, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.8952000141143799, "detail": "Execute" } },
  1612. { "pid": 1, "tid": 24, "ts": 2990655.2734375, "dur": 840.3000235557556, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8403000235557556, "detail": "ExecuteHierarchy" } },
  1613. { "pid": 1, "tid": 24, "ts": 2991496.337890625, "dur": 736.5000247955322, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7365000247955322, "detail": "GetEventHandler" } },
  1614. { "pid": 1, "tid": 24, "ts": 2992234.130859375, "dur": 1822.0000267028809, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.8220000267028809, "detail": "GetEventList" } },
  1615. { "pid": 1, "tid": 24, "ts": 2994056.884765625, "dur": 561.9999766349792, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5619999766349792, "detail": "ShouldSendToComponent" } },
  1616. { "pid": 1, "tid": 24, "ts": 2994619.873046875, "dur": 548.6999750137329, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5486999750137329, "detail": "ValidateEventData" } },
  1617. { "pid": 1, "tid": 24, "ts": 2995169.43359375, "dur": 479.4999957084656, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4794999957084656, "detail": "AddComponent" } },
  1618. { "pid": 1, "tid": 24, "ts": 2998268.798828125, "dur": 1400.3000259399414, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4003000259399414, "detail": "SetProperty" } },
  1619. { "pid": 1, "tid": 24, "ts": 2999669.921875, "dur": 455.90001344680786, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45590001344680786, "detail": "SetProperty" } },
  1620. { "pid": 1, "tid": 24, "ts": 3000126.708984375, "dur": 502.4999976158142, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5024999976158142, "detail": "SetProperty" } },
  1621. { "pid": 1, "tid": 24, "ts": 3000630.126953125, "dur": 494.70001459121704, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49470001459121704, "detail": "SetProperty" } },
  1622. { "pid": 1, "tid": 24, "ts": 3001125.9765625, "dur": 450.89998841285706, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45089998841285706, "detail": "SetProperty" } },
  1623. { "pid": 1, "tid": 24, "ts": 3001577.63671875, "dur": 453.0999958515167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4530999958515167, "detail": "SetProperty" } },
  1624. { "pid": 1, "tid": 24, "ts": 3002258.30078125, "dur": 828.9999961853027, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8289999961853027, "detail": "EnsureInitializedCore" } },
  1625. { "pid": 1, "tid": 24, "ts": 3003539.306640625, "dur": 352.49999165534973, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35249999165534973, "detail": "GetAllocArrayFromChannel" } },
  1626. { "pid": 1, "tid": 24, "ts": 3004375.244140625, "dur": 402.5999903678894, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4025999903678894, "detail": "GetAllocArrayFromChannel" } },
  1627. { "pid": 1, "tid": 24, "ts": 3004778.564453125, "dur": 515.500009059906, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.515500009059906, "detail": "GetAllocArrayFromChannel" } },
  1628. { "pid": 1, "tid": 24, "ts": 3005294.677734375, "dur": 430.2999973297119, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4302999973297119, "detail": "GetAllocArrayFromChannel" } },
  1629. { "pid": 1, "tid": 24, "ts": 3005726.318359375, "dur": 418.50000619888306, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41850000619888306, "detail": "GetAllocArrayFromChannel" } },
  1630. { "pid": 1, "tid": 24, "ts": 3006630.126953125, "dur": 593.1000113487244, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5931000113487244, "detail": "GetListForChannel" } },
  1631. { "pid": 1, "tid": 24, "ts": 3007224.12109375, "dur": 573.5999941825867, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5735999941825867, "detail": "GetListForChannel" } },
  1632. { "pid": 1, "tid": 24, "ts": 3007798.583984375, "dur": 1456.3000202178955, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.4563000202178955, "detail": "GetUVsImpl" } },
  1633. { "pid": 1, "tid": 24, "ts": 3009256.103515625, "dur": 624.3000030517578, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6243000030517578, "detail": "GetUVsImpl" } },
  1634. { "pid": 1, "tid": 24, "ts": 3009881.34765625, "dur": 355.3999960422516, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3553999960422516, "detail": "SetListForChannel" } },
  1635. { "pid": 1, "tid": 24, "ts": 3011786.376953125, "dur": 540.7000184059143, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5407000184059143, "detail": "SetUvsImpl" } },
  1636. { "pid": 1, "tid": 24, "ts": 3012328.125, "dur": 509.19997692108154, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5091999769210815, "detail": "SetUvsImpl" } },
  1637. { "pid": 1, "tid": 24, "ts": 3013356.689453125, "dur": 619.5999979972839, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6195999979972839, "detail": "ConvertExistingDataToNativeArray" } },
  1638. { "pid": 1, "tid": 24, "ts": 3014227.783203125, "dur": 365.200012922287, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.365200012922287, "detail": "ConvertExistingDataToNativeArray" } },
  1639. { "pid": 1, "tid": 24, "ts": 3015097.412109375, "dur": 572.3999738693237, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5723999738693237, "detail": "EnsureListElemCount" } },
  1640. { "pid": 1, "tid": 24, "ts": 3015670.8984375, "dur": 387.3000144958496, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3873000144958496, "detail": "EnsureListElemCount" } },
  1641. { "pid": 1, "tid": 24, "ts": 3016058.837890625, "dur": 782.1999788284302, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7821999788284302, "detail": "ResizeList" } },
  1642. { "pid": 1, "tid": 24, "ts": 3016842.041015625, "dur": 690.5999779701233, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6905999779701233, "detail": "ResizeList" } },
  1643. { "pid": 1, "tid": 24, "ts": 3018882.8125, "dur": 607.9999804496765, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6079999804496765, "detail": "Instantiate" } },
  1644. { "pid": 1, "tid": 24, "ts": 3019491.943359375, "dur": 428.20000648498535, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42820000648498535, "detail": "Instantiate" } },
  1645. { "pid": 1, "tid": 24, "ts": 3020485.595703125, "dur": 975.3999710083008, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9753999710083008, "detail": "IsPlayableOfType" } },
  1646. { "pid": 1, "tid": 24, "ts": 3022969.23828125, "dur": 333.40001106262207, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33340001106262207, "detail": "IsPlayableOfType" } },
  1647. { "pid": 1, "tid": 24, "ts": 3023916.50390625, "dur": 424.89999532699585, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42489999532699585, "detail": "GetBuiltinResource" } },
  1648. { "pid": 1, "tid": 24, "ts": 3024673.33984375, "dur": 341.8999910354614, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3418999910354614, "detail": "CreateInstance" } },
  1649. { "pid": 1, "tid": 24, "ts": 3025016.11328125, "dur": 977.1999716758728, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9771999716758728, "detail": "SetClass" } },
  1650. { "pid": 1, "tid": 24, "ts": 3025994.384765625, "dur": 399.8999893665314, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39989998936653137, "detail": "SetStruct" } },
  1651. { "pid": 1, "tid": 24, "ts": 3026695.068359375, "dur": 353.59999537467957, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35359999537467957, "detail": "SetStruct" } },
  1652. { "pid": 1, "tid": 24, "ts": 3027049.560546875, "dur": 393.0000066757202, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3930000066757202, "detail": "SetStruct" } },
  1653. { "pid": 1, "tid": 24, "ts": 3027443.603515625, "dur": 365.0999963283539, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3650999963283539, "detail": "SetStruct" } },
  1654. { "pid": 1, "tid": 24, "ts": 3027810.05859375, "dur": 387.8999948501587, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3878999948501587, "detail": "SetStruct" } },
  1655. { "pid": 1, "tid": 24, "ts": 3028840.087890625, "dur": 399.69998598098755, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.39969998598098755, "detail": "FromCancellation" } },
  1656. { "pid": 1, "tid": 24, "ts": 3029240.72265625, "dur": 389.29998874664307, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38929998874664307, "detail": "FromCancellation" } },
  1657. { "pid": 1, "tid": 24, "ts": 3035056.15234375, "dur": 342.5999879837036, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3425999879837036, "detail": "WriteArrayElement" } },
  1658. { "pid": 1, "tid": 24, "ts": 3035885.986328125, "dur": 21342.199325561523, "ph": "X", "name": "GenericMethods1.cpp", "args": { "durationMS": 21.342199325561523, "detail": "" } },
  1659. { "pid": 1, "tid": 24, "ts": 3057241.69921875, "dur": 85902.0004272461, "ph": "X", "name": "Idle", "args": { "durationMS": 85.9020004272461, "detail": "" } },
  1660. { "pid": 1, "tid": 25, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  1661. { "pid": 1, "tid": 25, "ts": 1319416.9921875, "dur": 12039.999961853027, "ph": "X", "name": "Idle", "args": { "durationMS": 12.039999961853027, "detail": "" } },
  1662. { "pid": 1, "tid": 25, "ts": 1431756.2255859375, "dur": 486.2000048160553, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 0.4862000048160553, "detail": "System" } },
  1663. { "pid": 1, "tid": 25, "ts": 1433371.7041015625, "dur": 185204.89501953125, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 185.20489501953125, "detail": "System" } },
  1664. { "pid": 1, "tid": 25, "ts": 1434896.728515625, "dur": 183679.3975830078, "ph": "X", "name": "System_Attr.cpp", "args": { "durationMS": 183.6793975830078, "detail": "" } },
  1665. { "pid": 1, "tid": 25, "ts": 1620535.7666015625, "dur": 25336.79962158203, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 25.33679962158203, "detail": "UnityEngine.PhysicsModule" } },
  1666. { "pid": 1, "tid": 25, "ts": 1620549.8046875, "dur": 25321.800231933594, "ph": "X", "name": "UnityEngine.PhysicsModule_Attr.cpp", "args": { "durationMS": 25.321800231933594, "detail": "" } },
  1667. { "pid": 1, "tid": 25, "ts": 1645877.5634765625, "dur": 1214.6999835968018, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 1.2146999835968018, "detail": "UnityEngine" } },
  1668. { "pid": 1, "tid": 25, "ts": 1645911.2548828125, "dur": 1180.6000471115112, "ph": "X", "name": "UnityEngine_Attr.cpp", "args": { "durationMS": 1.1806000471115112, "detail": "" } },
  1669. { "pid": 1, "tid": 25, "ts": 1654026.85546875, "dur": 2120.3999519348145, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1203999519348145, "detail": "<Module>" } },
  1670. { "pid": 1, "tid": 25, "ts": 1656666.8701171875, "dur": 1252.3000240325928, "ph": "X", "name": "UnityEngine.SpriteShapeModule.cpp", "args": { "durationMS": 1.2523000240325928, "detail": "" } },
  1671. { "pid": 1, "tid": 25, "ts": 1659190.5517578125, "dur": 53335.70098876953, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 53.33570098876953, "detail": "UnityEngine.Collider" } },
  1672. { "pid": 1, "tid": 25, "ts": 1712530.3955078125, "dur": 6513.899803161621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.513899803161621, "detail": "UnityEngine.Collision" } },
  1673. { "pid": 1, "tid": 25, "ts": 1719175.537109375, "dur": 569.2999958992004, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5692999958992004, "detail": "UnityEngine.ControllerColliderHit" } },
  1674. { "pid": 1, "tid": 25, "ts": 1719811.279296875, "dur": 28387.001037597656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 28.387001037597656, "detail": "UnityEngine.Physics" } },
  1675. { "pid": 1, "tid": 25, "ts": 1748200.0732421875, "dur": 12795.299530029297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.795299530029297, "detail": "UnityEngine.PhysicsScene" } },
  1676. { "pid": 1, "tid": 25, "ts": 1761012.3291015625, "dur": 1925.1999855041504, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9251999855041504, "detail": "UnityEngine.RaycastHit" } },
  1677. { "pid": 1, "tid": 25, "ts": 1763152.9541015625, "dur": 7575.699806213379, "ph": "X", "name": "UnityEngine.PhysicsModule.cpp", "args": { "durationMS": 7.575699806213379, "detail": "" } },
  1678. { "pid": 1, "tid": 25, "ts": 1770769.6533203125, "dur": 628.0999779701233, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6280999779701233, "detail": "UnityEngine.Networking.CertificateHandler" } },
  1679. { "pid": 1, "tid": 25, "ts": 1771398.8037109375, "dur": 518.4999704360962, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5184999704360962, "detail": "UnityEngine.Networking.DownloadHandler" } },
  1680. { "pid": 1, "tid": 25, "ts": 1771918.0908203125, "dur": 837.4999761581421, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8374999761581421, "detail": "UnityEngineInternal.WebRequestUtils" } },
  1681. { "pid": 1, "tid": 25, "ts": 1772758.056640625, "dur": 11270.79963684082, "ph": "X", "name": "UnityEngine.UnityWebRequestModule.cpp", "args": { "durationMS": 11.27079963684082, "detail": "" } },
  1682. { "pid": 1, "tid": 25, "ts": 1784062.98828125, "dur": 395.3000009059906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3953000009059906, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo" } },
  1683. { "pid": 1, "tid": 25, "ts": 1784477.5390625, "dur": 1119.1999912261963, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1191999912261963, "detail": "UnityEngine.RemoteConfigSettings" } },
  1684. { "pid": 1, "tid": 25, "ts": 1785604.736328125, "dur": 414.49999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.41449999809265137, "detail": "UnityEngine.RemoteSettings" } },
  1685. { "pid": 1, "tid": 25, "ts": 1786019.6533203125, "dur": 7094.299793243408, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.094299793243408, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo/IdentityTokenChanged" } },
  1686. { "pid": 1, "tid": 25, "ts": 1793114.990234375, "dur": 701.3999819755554, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7013999819755554, "detail": "UnityEngine.Analytics.AnalyticsSessionInfo/SessionStateChanged" } },
  1687. { "pid": 1, "tid": 25, "ts": 1794126.220703125, "dur": 5717.800140380859, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule.cpp", "args": { "durationMS": 5.717800140380859, "detail": "" } },
  1688. { "pid": 1, "tid": 25, "ts": 1800133.056640625, "dur": 400.2000093460083, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4002000093460083, "detail": "UnityEngine.Bindings.FreeFunctionAttribute" } },
  1689. { "pid": 1, "tid": 25, "ts": 1800799.6826171875, "dur": 536.0999703407288, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5360999703407288, "detail": "UnityEngine.NativeClassAttribute" } },
  1690. { "pid": 1, "tid": 25, "ts": 1801646.8505859375, "dur": 509.89997386932373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5098999738693237, "detail": "UnityEngine.Bindings.NativeHeaderAttribute" } },
  1691. { "pid": 1, "tid": 25, "ts": 1802157.71484375, "dur": 1345.1000452041626, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3451000452041626, "detail": "UnityEngine.Bindings.NativeMethodAttribute" } },
  1692. { "pid": 1, "tid": 25, "ts": 1803503.662109375, "dur": 551.9999861717224, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5519999861717224, "detail": "UnityEngine.Bindings.NativeNameAttribute" } },
  1693. { "pid": 1, "tid": 25, "ts": 1804055.908203125, "dur": 510.20002365112305, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.510200023651123, "detail": "UnityEngine.Bindings.NativePropertyAttribute" } },
  1694. { "pid": 1, "tid": 25, "ts": 1804815.185546875, "dur": 1229.5000553131104, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2295000553131104, "detail": "UnityEngine.Bindings.NativeTypeAttribute" } },
  1695. { "pid": 1, "tid": 25, "ts": 1806770.01953125, "dur": 515.2000188827515, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5152000188827515, "detail": "UnityEngine.Bindings.StaticAccessorAttribute" } },
  1696. { "pid": 1, "tid": 25, "ts": 1807672.36328125, "dur": 356.2000095844269, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3562000095844269, "detail": "UnityEngine.UnityString" } },
  1697. { "pid": 1, "tid": 25, "ts": 1808644.04296875, "dur": 7819.6001052856445, "ph": "X", "name": "UnityEngine.SharedInternalsModule.cpp", "args": { "durationMS": 7.8196001052856445, "detail": "" } },
  1698. { "pid": 1, "tid": 25, "ts": 1816512.0849609375, "dur": 905.7999849319458, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9057999849319458, "detail": "System.UriFormatException" } },
  1699. { "pid": 1, "tid": 25, "ts": 1817418.701171875, "dur": 14702.7006149292, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.7027006149292, "detail": "System.UriHelper" } },
  1700. { "pid": 1, "tid": 25, "ts": 1832141.2353515625, "dur": 7919.099807739258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.919099807739258, "detail": "System.UriParser" } },
  1701. { "pid": 1, "tid": 25, "ts": 1840073.486328125, "dur": 709.2999815940857, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7092999815940857, "detail": "System.UriTypeConverter" } },
  1702. { "pid": 1, "tid": 25, "ts": 1841455.9326171875, "dur": 7216.300010681152, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.216300010681152, "detail": "System.ComponentModel.Win32Exception" } },
  1703. { "pid": 1, "tid": 25, "ts": 1848673.33984375, "dur": 4910.999774932861, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.910999774932861, "detail": "System.Security.Cryptography.X509Certificates.X509BasicConstraintsExtension" } },
  1704. { "pid": 1, "tid": 25, "ts": 1853584.8388671875, "dur": 3782.0000648498535, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7820000648498535, "detail": "System.Security.Cryptography.X509Certificates.X509EnhancedKeyUsageExtension" } },
  1705. { "pid": 1, "tid": 25, "ts": 1857368.0419921875, "dur": 2407.099962234497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.407099962234497, "detail": "System.Security.Cryptography.X509Certificates.X509Extension" } },
  1706. { "pid": 1, "tid": 25, "ts": 1859776.123046875, "dur": 5846.099853515625, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.846099853515625, "detail": "System.Security.Cryptography.X509Certificates.X509KeyUsageExtension" } },
  1707. { "pid": 1, "tid": 25, "ts": 1865634.033203125, "dur": 7577.000141143799, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.577000141143799, "detail": "System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" } },
  1708. { "pid": 1, "tid": 25, "ts": 1873225.9521484375, "dur": 1050.7999658584595, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0507999658584595, "detail": "System.Security.Cryptography.X509Certificates.X509Utils" } },
  1709. { "pid": 1, "tid": 25, "ts": 1874305.17578125, "dur": 660.0000262260437, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6600000262260437, "detail": "System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping" } },
  1710. { "pid": 1, "tid": 25, "ts": 1875976.806640625, "dur": 16803.699493408203, "ph": "X", "name": "System2.cpp", "args": { "durationMS": 16.803699493408203, "detail": "" } },
  1711. { "pid": 1, "tid": 25, "ts": 1892799.6826171875, "dur": 5271.699905395508, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.271699905395508, "detail": "UnityEngine.UI.LayoutElement" } },
  1712. { "pid": 1, "tid": 25, "ts": 1898072.021484375, "dur": 14240.799903869629, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.240799903869629, "detail": "UnityEngine.UI.LayoutGroup" } },
  1713. { "pid": 1, "tid": 25, "ts": 1912314.0869140625, "dur": 13221.199989318848, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.221199989318848, "detail": "UnityEngine.UI.LayoutRebuilder" } },
  1714. { "pid": 1, "tid": 25, "ts": 1925535.888671875, "dur": 9761.40022277832, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.76140022277832, "detail": "UnityEngine.UI.LayoutUtility" } },
  1715. { "pid": 1, "tid": 25, "ts": 1935298.33984375, "dur": 6335.899829864502, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.335899829864502, "detail": "UnityEngine.UI.Mask" } },
  1716. { "pid": 1, "tid": 25, "ts": 1941635.25390625, "dur": 13344.499588012695, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.344499588012695, "detail": "UnityEngine.UI.MaskUtilities" } },
  1717. { "pid": 1, "tid": 25, "ts": 1954981.689453125, "dur": 9194.299697875977, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.194299697875977, "detail": "UnityEngine.UI.MaskableGraphic" } },
  1718. { "pid": 1, "tid": 25, "ts": 1964177.001953125, "dur": 1418.4000492095947, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4184000492095947, "detail": "UnityEngine.UI.Misc" } },
  1719. { "pid": 1, "tid": 25, "ts": 1965608.5205078125, "dur": 2108.799934387207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.108799934387207, "detail": "UnityEngine.UI.MultipleDisplayUtilities" } },
  1720. { "pid": 1, "tid": 25, "ts": 1967718.75, "dur": 3985.80002784729, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.98580002784729, "detail": "UnityEngine.UI.Navigation" } },
  1721. { "pid": 1, "tid": 25, "ts": 1971705.2001953125, "dur": 2078.200101852417, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.078200101852417, "detail": "UnityEngine.UI.Outline" } },
  1722. { "pid": 1, "tid": 25, "ts": 1973785.15625, "dur": 4194.499969482422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.194499969482422, "detail": "UnityEngine.EventSystems.Physics2DRaycaster" } },
  1723. { "pid": 1, "tid": 25, "ts": 1977980.712890625, "dur": 11087.400436401367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.087400436401367, "detail": "UnityEngine.EventSystems.PhysicsRaycaster" } },
  1724. { "pid": 1, "tid": 25, "ts": 1989069.4580078125, "dur": 34719.90203857422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 34.71990203857422, "detail": "UnityEngine.EventSystems.PointerEventData" } },
  1725. { "pid": 1, "tid": 25, "ts": 2023790.4052734375, "dur": 24296.199798583984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 24.296199798583984, "detail": "UnityEngine.EventSystems.PointerInputModule" } },
  1726. { "pid": 1, "tid": 25, "ts": 2048088.37890625, "dur": 1601.8999814987183, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6018999814987183, "detail": "UnityEngine.UI.PositionAsUV1" } },
  1727. { "pid": 1, "tid": 25, "ts": 2049691.650390625, "dur": 4563.000202178955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.563000202178955, "detail": "UnityEngine.UI.RawImage" } },
  1728. { "pid": 1, "tid": 25, "ts": 2054256.103515625, "dur": 3788.100004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.788100004196167, "detail": "UnityEngine.EventSystems.RaycastResult" } },
  1729. { "pid": 1, "tid": 25, "ts": 2058045.166015625, "dur": 1615.1000261306763, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6151000261306763, "detail": "UnityEngine.EventSystems.RaycasterManager" } },
  1730. { "pid": 1, "tid": 25, "ts": 2059661.62109375, "dur": 9509.79995727539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.50979995727539, "detail": "UnityEngine.UI.RectMask2D" } },
  1731. { "pid": 1, "tid": 25, "ts": 2069173.095703125, "dur": 1191.499948501587, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.191499948501587, "detail": "UnityEngine.UI.RectangularVertexClipper" } },
  1732. { "pid": 1, "tid": 25, "ts": 2070365.72265625, "dur": 4419.099807739258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.419099807739258, "detail": "UnityEngine.UI.ReflectionMethodsCache" } },
  1733. { "pid": 1, "tid": 25, "ts": 2074785.888671875, "dur": 39880.50079345703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 39.88050079345703, "detail": "UnityEngine.UI.ScrollRect" } },
  1734. { "pid": 1, "tid": 25, "ts": 2114667.48046875, "dur": 17371.400833129883, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 17.371400833129883, "detail": "UnityEngine.UI.Scrollbar" } },
  1735. { "pid": 1, "tid": 25, "ts": 2132041.9921875, "dur": 59584.800720214844, "ph": "X", "name": "UnityEngine.UI2.cpp", "args": { "durationMS": 59.584800720214844, "detail": "" } },
  1736. { "pid": 1, "tid": 25, "ts": 2191937.01171875, "dur": 751.6999840736389, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7516999840736389, "detail": "System.Security.Cryptography.HashAlgorithm" } },
  1737. { "pid": 1, "tid": 25, "ts": 2192689.697265625, "dur": 12774.999618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.774999618530273, "detail": "System.Collections.HashHelpers" } },
  1738. { "pid": 1, "tid": 25, "ts": 2205466.064453125, "dur": 16482.099533081055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.482099533081055, "detail": "System.Collections.Hashtable" } },
  1739. { "pid": 1, "tid": 25, "ts": 2221963.134765625, "dur": 376.89998745918274, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37689998745918274, "detail": "System.Runtime.Remoting.Messaging.HeaderHandler" } },
  1740. { "pid": 1, "tid": 25, "ts": 2222340.8203125, "dur": 4149.700164794922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.149700164794922, "detail": "System.Globalization.HebrewNumber" } },
  1741. { "pid": 1, "tid": 25, "ts": 2226651.123046875, "dur": 808.2000017166138, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8082000017166138, "detail": "System.IO.IOException" } },
  1742. { "pid": 1, "tid": 25, "ts": 2227460.205078125, "dur": 571.6000199317932, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5716000199317932, "detail": "System.Runtime.Serialization.Formatters.Binary.IOUtil" } },
  1743. { "pid": 1, "tid": 25, "ts": 2228032.2265625, "dur": 1117.1000003814697, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1171000003814697, "detail": "System.Runtime.Remoting.Identity" } },
  1744. { "pid": 1, "tid": 25, "ts": 2229150.390625, "dur": 6016.7999267578125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.0167999267578125, "detail": "System.Globalization.IdnMapping" } },
  1745. { "pid": 1, "tid": 25, "ts": 2235167.96875, "dur": 857.2999835014343, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8572999835014343, "detail": "System.Runtime.Remoting.Messaging.IllogicalCallContext" } },
  1746. { "pid": 1, "tid": 25, "ts": 2236103.271484375, "dur": 492.5999939441681, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4925999939441681, "detail": "System.IndexOutOfRangeException" } },
  1747. { "pid": 1, "tid": 25, "ts": 2236596.435546875, "dur": 4705.50012588501, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.70550012588501, "detail": "System.InputRecord" } },
  1748. { "pid": 1, "tid": 25, "ts": 2241313.96484375, "dur": 4675.899982452393, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.675899982452393, "detail": "System.Int16" } },
  1749. { "pid": 1, "tid": 25, "ts": 2246003.173828125, "dur": 4573.599815368652, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.573599815368652, "detail": "System.Int32" } },
  1750. { "pid": 1, "tid": 25, "ts": 2250588.8671875, "dur": 5047.900199890137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.047900199890137, "detail": "System.Int64" } },
  1751. { "pid": 1, "tid": 25, "ts": 2255647.4609375, "dur": 3532.099962234497, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.532099962234497, "detail": "System.IntPtr" } },
  1752. { "pid": 1, "tid": 25, "ts": 2259180.6640625, "dur": 1617.6999807357788, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6176999807357788, "detail": "System.Runtime.Serialization.Formatters.Binary.IntSizedArray" } },
  1753. { "pid": 1, "tid": 25, "ts": 2260902.587890625, "dur": 966.6000008583069, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9666000008583069, "detail": "System.Threading.Interlocked" } },
  1754. { "pid": 1, "tid": 25, "ts": 2262199.70703125, "dur": 697.2000002861023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6972000002861023, "detail": "System.Text.InternalDecoderBestFitFallback" } },
  1755. { "pid": 1, "tid": 25, "ts": 2262917.48046875, "dur": 2287.400007247925, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.287400007247925, "detail": "System.Text.InternalDecoderBestFitFallbackBuffer" } },
  1756. { "pid": 1, "tid": 25, "ts": 2265206.787109375, "dur": 517.0000195503235, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5170000195503235, "detail": "System.Text.InternalEncoderBestFitFallback" } },
  1757. { "pid": 1, "tid": 25, "ts": 2265724.853515625, "dur": 2355.4000854492188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3554000854492188, "detail": "System.Text.InternalEncoderBestFitFallbackBuffer" } },
  1758. { "pid": 1, "tid": 25, "ts": 2268477.5390625, "dur": 2045.0000762939453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0450000762939453, "detail": "System.Runtime.Remoting.InternalRemotingServices" } },
  1759. { "pid": 1, "tid": 25, "ts": 2270533.203125, "dur": 725.3999710083008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7253999710083008, "detail": "System.Collections.Generic.InternalStringComparer" } },
  1760. { "pid": 1, "tid": 25, "ts": 2271568.603515625, "dur": 500.8000135421753, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5008000135421753, "detail": "System.Runtime.CompilerServices.InternalsVisibleToAttribute" } },
  1761. { "pid": 1, "tid": 25, "ts": 2272376.708984375, "dur": 541.8999791145325, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5418999791145325, "detail": "System.InvalidCastException" } },
  1762. { "pid": 1, "tid": 25, "ts": 2272919.189453125, "dur": 498.4000027179718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4984000027179718, "detail": "System.Reflection.InvalidFilterCriteriaException" } },
  1763. { "pid": 1, "tid": 25, "ts": 2273418.45703125, "dur": 626.6999840736389, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6266999840736389, "detail": "System.InvalidOperationException" } },
  1764. { "pid": 1, "tid": 25, "ts": 2274045.8984375, "dur": 489.6000027656555, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4896000027656555, "detail": "System.InvalidProgramException" } },
  1765. { "pid": 1, "tid": 25, "ts": 2274536.1328125, "dur": 998.3999729156494, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9983999729156494, "detail": "System.InvalidTimeZoneException" } },
  1766. { "pid": 1, "tid": 25, "ts": 2275551.7578125, "dur": 10760.899543762207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.760899543762207, "detail": "System.Runtime.CompilerServices.IteratorStateMachineAttribute" } },
  1767. { "pid": 1, "tid": 25, "ts": 2286313.720703125, "dur": 6283.500194549561, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.2835001945495605, "detail": "System.Globalization.JapaneseCalendar" } },
  1768. { "pid": 1, "tid": 25, "ts": 2292611.572265625, "dur": 46553.401947021484, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 46.553401947021484, "detail": "Microsoft.Win32.KeyHandler" } },
  1769. { "pid": 1, "tid": 25, "ts": 2339166.748046875, "dur": 549.3999719619751, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5493999719619751, "detail": "System.Collections.Generic.KeyNotFoundException" } },
  1770. { "pid": 1, "tid": 25, "ts": 2340123.53515625, "dur": 418.0999994277954, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4180999994277954, "detail": "System.KnownTerminals" } },
  1771. { "pid": 1, "tid": 25, "ts": 2340542.48046875, "dur": 18574.30076599121, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.57430076599121, "detail": "System.Text.Latin1Encoding" } },
  1772. { "pid": 1, "tid": 25, "ts": 2359129.8828125, "dur": 2870.300054550171, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.870300054550171, "detail": "System.Runtime.Remoting.Lifetime.Lease" } },
  1773. { "pid": 1, "tid": 25, "ts": 2362001.708984375, "dur": 1705.899953842163, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.705899953842163, "detail": "System.Runtime.Remoting.Lifetime.LeaseManager" } },
  1774. { "pid": 1, "tid": 25, "ts": 2363708.984375, "dur": 738.4999990463257, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7384999990463257, "detail": "System.Runtime.Remoting.Lifetime.LeaseSink" } },
  1775. { "pid": 1, "tid": 25, "ts": 2364585.205078125, "dur": 1174.6000051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1746000051498413, "detail": "System.Runtime.Remoting.Lifetime.LifetimeServices" } },
  1776. { "pid": 1, "tid": 25, "ts": 2365760.7421875, "dur": 2286.0000133514404, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2860000133514404, "detail": "System.Collections.ListDictionaryInternal" } },
  1777. { "pid": 1, "tid": 25, "ts": 2368226.07421875, "dur": 1799.7000217437744, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7997000217437744, "detail": "System.LocalDataStore" } },
  1778. { "pid": 1, "tid": 25, "ts": 2370321.2890625, "dur": 828.8000226020813, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8288000226020813, "detail": "System.LocalDataStoreHolder" } },
  1779. { "pid": 1, "tid": 25, "ts": 2371151.3671875, "dur": 3596.4999198913574, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.5964999198913574, "detail": "System.LocalDataStoreMgr" } },
  1780. { "pid": 1, "tid": 25, "ts": 2374748.53515625, "dur": 542.5999760627747, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5425999760627747, "detail": "System.LocalDataStoreSlot" } },
  1781. { "pid": 1, "tid": 25, "ts": 2375291.9921875, "dur": 403.80001068115234, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.40380001068115234, "detail": "System.Reflection.LocalVariableInfo" } },
  1782. { "pid": 1, "tid": 25, "ts": 2375862.79296875, "dur": 510.90002059936523, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5109000205993652, "detail": "System.Threading.LockRecursionException" } },
  1783. { "pid": 1, "tid": 25, "ts": 2376375, "dur": 4636.000156402588, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.636000156402588, "detail": "System.Runtime.Remoting.Messaging.LogicalCallContext" } },
  1784. { "pid": 1, "tid": 25, "ts": 2381011.474609375, "dur": 1276.7000198364258, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2767000198364258, "detail": "System.Runtime.Serialization.LongList" } },
  1785. { "pid": 1, "tid": 25, "ts": 2382289.0625, "dur": 565.2999877929688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5652999877929688, "detail": "System.Collections.LowLevelComparer" } },
  1786. { "pid": 1, "tid": 25, "ts": 2382855.224609375, "dur": 337.799996137619, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.337799996137619, "detail": "System.Runtime.Remoting.Messaging.MCMDictionary" } },
  1787. { "pid": 1, "tid": 25, "ts": 2383193.84765625, "dur": 12656.700134277344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.656700134277344, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTable" } },
  1788. { "pid": 1, "tid": 25, "ts": 2395851.806640625, "dur": 1021.399974822998, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.021399974822998, "detail": "Mono.Globalization.Unicode.MSCompatUnicodeTableUtil" } },
  1789. { "pid": 1, "tid": 25, "ts": 2396874.0234375, "dur": 1159.000039100647, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.159000039100647, "detail": "System.Resources.ManifestBasedResourceGroveler" } },
  1790. { "pid": 1, "tid": 25, "ts": 2398133.544921875, "dur": 7473.700046539307, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.473700046539307, "detail": "System.Threading.ManualResetEventSlim" } },
  1791. { "pid": 1, "tid": 25, "ts": 2405613.037109375, "dur": 43273.40316772461, "ph": "X", "name": "mscorlib6.cpp", "args": { "durationMS": 43.27340316772461, "detail": "" } },
  1792. { "pid": 1, "tid": 25, "ts": 2448911.1328125, "dur": 1222.599983215332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.222599983215332, "detail": "System.Runtime.CompilerServices.TaskAwaiter" } },
  1793. { "pid": 1, "tid": 25, "ts": 2450135.009765625, "dur": 724.7999906539917, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7247999906539917, "detail": "System.Threading.Tasks.TaskCanceledException" } },
  1794. { "pid": 1, "tid": 25, "ts": 2450861.083984375, "dur": 597.1999764442444, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5971999764442444, "detail": "System.Threading.Tasks.TaskContinuation" } },
  1795. { "pid": 1, "tid": 25, "ts": 2451476.5625, "dur": 5202.199935913086, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.202199935913086, "detail": "System.Threading.Tasks.TaskExceptionHolder" } },
  1796. { "pid": 1, "tid": 25, "ts": 2456680.6640625, "dur": 1799.9999523162842, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7999999523162842, "detail": "System.Threading.Tasks.TaskFactory" } },
  1797. { "pid": 1, "tid": 25, "ts": 2458481.93359375, "dur": 2707.70001411438, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.70770001411438, "detail": "System.Threading.Tasks.TaskScheduler" } },
  1798. { "pid": 1, "tid": 25, "ts": 2461190.673828125, "dur": 870.199978351593, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.870199978351593, "detail": "System.Threading.Tasks.TaskSchedulerAwaitTaskContinuation" } },
  1799. { "pid": 1, "tid": 25, "ts": 2462061.5234375, "dur": 549.0000247955322, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5490000247955322, "detail": "System.Threading.Tasks.TaskSchedulerException" } },
  1800. { "pid": 1, "tid": 25, "ts": 2462622.314453125, "dur": 20480.899810791016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 20.480899810791016, "detail": "System.TermInfoDriver" } },
  1801. { "pid": 1, "tid": 25, "ts": 2483118.896484375, "dur": 4003.499984741211, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.003499984741211, "detail": "System.TermInfoReader" } },
  1802. { "pid": 1, "tid": 25, "ts": 2487165.0390625, "dur": 11566.499710083008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.566499710083008, "detail": "System.Globalization.TextInfo" } },
  1803. { "pid": 1, "tid": 25, "ts": 2498732.666015625, "dur": 561.6999864578247, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5616999864578247, "detail": "System.Globalization.TextInfoToLowerData" } },
  1804. { "pid": 1, "tid": 25, "ts": 2499295.166015625, "dur": 425.79999566078186, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42579999566078186, "detail": "System.Globalization.TextInfoToUpperData" } },
  1805. { "pid": 1, "tid": 25, "ts": 2499721.923828125, "dur": 2172.800064086914, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.172800064086914, "detail": "System.IO.TextReader" } },
  1806. { "pid": 1, "tid": 25, "ts": 2501896.484375, "dur": 3198.2998847961426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.1982998847961426, "detail": "System.IO.TextWriter" } },
  1807. { "pid": 1, "tid": 25, "ts": 2505096.435546875, "dur": 5966.499805450439, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.9664998054504395, "detail": "System.Threading.Thread" } },
  1808. { "pid": 1, "tid": 25, "ts": 2511063.96484375, "dur": 404.7999978065491, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4047999978065491, "detail": "System.Threading.ThreadAbortException" } },
  1809. { "pid": 1, "tid": 25, "ts": 2511469.23828125, "dur": 882.3000192642212, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8823000192642212, "detail": "System.Threading.ThreadHelper" } },
  1810. { "pid": 1, "tid": 25, "ts": 2512352.294921875, "dur": 379.29999828338623, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37929999828338623, "detail": "System.Threading.ThreadInterruptedException" } },
  1811. { "pid": 1, "tid": 25, "ts": 2512732.421875, "dur": 3780.8001041412354, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7808001041412354, "detail": "System.Threading.ThreadPool" } },
  1812. { "pid": 1, "tid": 25, "ts": 2516695.556640625, "dur": 1329.5999765396118, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3295999765396118, "detail": "System.Threading.Tasks.ThreadPoolTaskScheduler" } },
  1813. { "pid": 1, "tid": 25, "ts": 2518026.3671875, "dur": 3769.2999839782715, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7692999839782715, "detail": "System.Threading.ThreadPoolWorkQueue" } },
  1814. { "pid": 1, "tid": 25, "ts": 2521805.908203125, "dur": 1491.2999868392944, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4912999868392944, "detail": "System.Threading.ThreadPoolWorkQueueThreadLocals" } },
  1815. { "pid": 1, "tid": 25, "ts": 2523614.013671875, "dur": 694.1999793052673, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6941999793052673, "detail": "System.Threading.ThreadStateException" } },
  1816. { "pid": 1, "tid": 25, "ts": 2524396.728515625, "dur": 3661.0000133514404, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.6610000133514404, "detail": "System.ThrowHelper" } },
  1817. { "pid": 1, "tid": 25, "ts": 2528194.3359375, "dur": 7383.600234985352, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.383600234985352, "detail": "System.TimeSpan" } },
  1818. { "pid": 1, "tid": 25, "ts": 2535579.1015625, "dur": 5356.900215148926, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.356900215148926, "detail": "System.Globalization.TimeSpanFormat" } },
  1819. { "pid": 1, "tid": 25, "ts": 2540937.98828125, "dur": 424.89999532699585, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42489999532699585, "detail": "System.TimeType" } },
  1820. { "pid": 1, "tid": 25, "ts": 2541575.927734375, "dur": 176569.00024414062, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 176.56900024414062, "detail": "System.TimeZoneInfo" } },
  1821. { "pid": 1, "tid": 25, "ts": 2718148.193359375, "dur": 55727.30255126953, "ph": "X", "name": "mscorlib13.cpp", "args": { "durationMS": 55.72730255126953, "detail": "" } },
  1822. { "pid": 1, "tid": 25, "ts": 2774250.48828125, "dur": 4320.000171661377, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.320000171661377, "detail": "AwaitUnsafeOnCompleted" } },
  1823. { "pid": 1, "tid": 25, "ts": 2778571.533203125, "dur": 949.0000009536743, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9490000009536743, "detail": "AwaitUnsafeOnCompleted" } },
  1824. { "pid": 1, "tid": 25, "ts": 2779521.728515625, "dur": 503.3000111579895, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5033000111579895, "detail": "Start" } },
  1825. { "pid": 1, "tid": 25, "ts": 2780026.3671875, "dur": 961.3000154495239, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9613000154495239, "detail": "AwaitUnsafeOnCompleted" } },
  1826. { "pid": 1, "tid": 25, "ts": 2780988.76953125, "dur": 507.8999996185303, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5078999996185303, "detail": "Start" } },
  1827. { "pid": 1, "tid": 25, "ts": 2781497.55859375, "dur": 782.7000021934509, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7827000021934509, "detail": "CreateInstance" } },
  1828. { "pid": 1, "tid": 25, "ts": 2782281.494140625, "dur": 1300.7999658584595, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.3007999658584595, "detail": "AsReadOnly" } },
  1829. { "pid": 1, "tid": 25, "ts": 2784159.1796875, "dur": 340.49999713897705, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34049999713897705, "detail": "BinarySearch" } },
  1830. { "pid": 1, "tid": 25, "ts": 2785343.75, "dur": 618.4999942779541, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6184999942779541, "detail": "BinarySearch" } },
  1831. { "pid": 1, "tid": 25, "ts": 2785963.623046875, "dur": 676.2999892234802, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6762999892234802, "detail": "BinarySearch" } },
  1832. { "pid": 1, "tid": 25, "ts": 2786640.869140625, "dur": 991.599977016449, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.991599977016449, "detail": "ConvertAll" } },
  1833. { "pid": 1, "tid": 25, "ts": 2788032.958984375, "dur": 1171.3000535964966, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1713000535964966, "detail": "Exists" } },
  1834. { "pid": 1, "tid": 25, "ts": 2789206.54296875, "dur": 762.8999948501587, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7628999948501587, "detail": "Fill" } },
  1835. { "pid": 1, "tid": 25, "ts": 2789971.19140625, "dur": 647.0999717712402, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6470999717712402, "detail": "Fill" } },
  1836. { "pid": 1, "tid": 25, "ts": 2790619.62890625, "dur": 477.9999852180481, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4779999852180481, "detail": "Find" } },
  1837. { "pid": 1, "tid": 25, "ts": 2791099.12109375, "dur": 1113.2999658584595, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1132999658584595, "detail": "FindAll" } },
  1838. { "pid": 1, "tid": 25, "ts": 2792213.8671875, "dur": 2973.599910736084, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.973599910736084, "detail": "FindIndex" } },
  1839. { "pid": 1, "tid": 25, "ts": 2795193.84765625, "dur": 853.9000153541565, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8539000153541565, "detail": "FindIndex" } },
  1840. { "pid": 1, "tid": 25, "ts": 2796048.828125, "dur": 770.0999975204468, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7700999975204468, "detail": "FindIndex" } },
  1841. { "pid": 1, "tid": 25, "ts": 2796820.556640625, "dur": 670.7000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6707000136375427, "detail": "FindLast" } },
  1842. { "pid": 1, "tid": 25, "ts": 2797492.431640625, "dur": 358.2000136375427, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3582000136375427, "detail": "FindLastIndex" } },
  1843. { "pid": 1, "tid": 25, "ts": 2797851.5625, "dur": 341.19999408721924, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34119999408721924, "detail": "FindLastIndex" } },
  1844. { "pid": 1, "tid": 25, "ts": 2798193.603515625, "dur": 5759.500026702881, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 5.759500026702881, "detail": "FindLastIndex" } },
  1845. { "pid": 1, "tid": 25, "ts": 2803954.833984375, "dur": 488.0000054836273, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4880000054836273, "detail": "ForEach" } },
  1846. { "pid": 1, "tid": 25, "ts": 2804614.74609375, "dur": 335.2999985218048, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3352999985218048, "detail": "IndexOf" } },
  1847. { "pid": 1, "tid": 25, "ts": 2804951.171875, "dur": 465.2999937534332, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4652999937534332, "detail": "IndexOf" } },
  1848. { "pid": 1, "tid": 25, "ts": 2805417.48046875, "dur": 608.299970626831, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.608299970626831, "detail": "IndexOf" } },
  1849. { "pid": 1, "tid": 25, "ts": 2806027.099609375, "dur": 544.0000295639038, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5440000295639038, "detail": "IndexOf" } },
  1850. { "pid": 1, "tid": 25, "ts": 2806572.021484375, "dur": 535.4999899864197, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5354999899864197, "detail": "IndexOf" } },
  1851. { "pid": 1, "tid": 25, "ts": 2807108.642578125, "dur": 691.3999915122986, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6913999915122986, "detail": "IndexOf" } },
  1852. { "pid": 1, "tid": 25, "ts": 2807800.78125, "dur": 12897.100448608398, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 12.897100448608398, "detail": "IndexOf" } },
  1853. { "pid": 1, "tid": 25, "ts": 2820699.462890625, "dur": 614.8999929428101, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6148999929428101, "detail": "IndexOf" } },
  1854. { "pid": 1, "tid": 25, "ts": 2821315.91796875, "dur": 578.8000226020813, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5788000226020813, "detail": "IndexOf" } },
  1855. { "pid": 1, "tid": 25, "ts": 2821895.99609375, "dur": 577.6000022888184, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5776000022888184, "detail": "IndexOf" } },
  1856. { "pid": 1, "tid": 25, "ts": 2822475.09765625, "dur": 572.8999972343445, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5728999972343445, "detail": "IndexOf" } },
  1857. { "pid": 1, "tid": 25, "ts": 2823049.31640625, "dur": 558.3999752998352, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5583999752998352, "detail": "IndexOf" } },
  1858. { "pid": 1, "tid": 25, "ts": 2823608.642578125, "dur": 558.0999851226807, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5580999851226807, "detail": "IndexOf" } },
  1859. { "pid": 1, "tid": 25, "ts": 2824168.212890625, "dur": 578.8000226020813, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5788000226020813, "detail": "IndexOf" } },
  1860. { "pid": 1, "tid": 25, "ts": 2824748.53515625, "dur": 564.8000240325928, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5648000240325928, "detail": "IndexOf" } },
  1861. { "pid": 1, "tid": 25, "ts": 2825314.453125, "dur": 583.1000208854675, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5831000208854675, "detail": "IndexOf" } },
  1862. { "pid": 1, "tid": 25, "ts": 2827076.904296875, "dur": 817.2000050544739, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8172000050544739, "detail": "IndexOfImpl" } },
  1863. { "pid": 1, "tid": 25, "ts": 2827895.5078125, "dur": 381.5000057220459, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3815000057220459, "detail": "IndexOfImpl" } },
  1864. { "pid": 1, "tid": 25, "ts": 2830023.681640625, "dur": 340.40001034736633, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34040001034736633, "detail": "IndexOfImpl" } },
  1865. { "pid": 1, "tid": 25, "ts": 2838790.283203125, "dur": 43535.396575927734, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 43.535396575927734, "detail": "InternalArray__ICollection_Add" } },
  1866. { "pid": 1, "tid": 25, "ts": 2884942.3828125, "dur": 381.3000023365021, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3813000023365021, "detail": "InternalArray__ICollection_Add" } },
  1867. { "pid": 1, "tid": 25, "ts": 2886308.837890625, "dur": 709.6999883651733, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7096999883651733, "detail": "InternalArray__ICollection_Contains" } },
  1868. { "pid": 1, "tid": 25, "ts": 2887020.01953125, "dur": 657.7000021934509, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6577000021934509, "detail": "InternalArray__ICollection_Contains" } },
  1869. { "pid": 1, "tid": 25, "ts": 2887678.466796875, "dur": 645.9000110626221, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6459000110626221, "detail": "InternalArray__ICollection_Contains" } },
  1870. { "pid": 1, "tid": 25, "ts": 2888325.439453125, "dur": 633.400022983551, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.633400022983551, "detail": "InternalArray__ICollection_Contains" } },
  1871. { "pid": 1, "tid": 25, "ts": 2888959.9609375, "dur": 677.3999929428101, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6773999929428101, "detail": "InternalArray__ICollection_Contains" } },
  1872. { "pid": 1, "tid": 25, "ts": 2889638.18359375, "dur": 666.1999821662903, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6661999821662903, "detail": "InternalArray__ICollection_Contains" } },
  1873. { "pid": 1, "tid": 25, "ts": 2890305.6640625, "dur": 781.5999984741211, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7815999984741211, "detail": "InternalArray__ICollection_Contains" } },
  1874. { "pid": 1, "tid": 25, "ts": 2891088.37890625, "dur": 640.9000158309937, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6409000158309937, "detail": "InternalArray__ICollection_Contains" } },
  1875. { "pid": 1, "tid": 25, "ts": 2891730.224609375, "dur": 795.3000068664551, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7953000068664551, "detail": "InternalArray__ICollection_Contains" } },
  1876. { "pid": 1, "tid": 25, "ts": 2892527.587890625, "dur": 926.800012588501, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.926800012588501, "detail": "InternalArray__ICollection_Contains" } },
  1877. { "pid": 1, "tid": 25, "ts": 2893455.810546875, "dur": 584.3999981880188, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5843999981880188, "detail": "InternalArray__ICollection_Contains" } },
  1878. { "pid": 1, "tid": 25, "ts": 2894041.259765625, "dur": 549.7000217437744, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5497000217437744, "detail": "InternalArray__ICollection_Contains" } },
  1879. { "pid": 1, "tid": 25, "ts": 2894592.041015625, "dur": 584.1000080108643, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5841000080108643, "detail": "InternalArray__ICollection_Contains" } },
  1880. { "pid": 1, "tid": 25, "ts": 2895177.001953125, "dur": 542.9999828338623, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5429999828338623, "detail": "InternalArray__ICollection_Contains" } },
  1881. { "pid": 1, "tid": 25, "ts": 2895721.435546875, "dur": 1031.599998474121, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.031599998474121, "detail": "InternalArray__ICollection_Contains" } },
  1882. { "pid": 1, "tid": 25, "ts": 2896754.39453125, "dur": 947.0000267028809, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9470000267028809, "detail": "InternalArray__ICollection_Contains" } },
  1883. { "pid": 1, "tid": 25, "ts": 2897702.392578125, "dur": 620.8999752998352, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6208999752998352, "detail": "InternalArray__ICollection_Contains" } },
  1884. { "pid": 1, "tid": 25, "ts": 2898324.462890625, "dur": 726.8999814987183, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7268999814987183, "detail": "InternalArray__ICollection_Contains" } },
  1885. { "pid": 1, "tid": 25, "ts": 2899052.24609375, "dur": 578.8000226020813, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5788000226020813, "detail": "InternalArray__ICollection_Contains" } },
  1886. { "pid": 1, "tid": 25, "ts": 2899632.32421875, "dur": 3790.9998893737793, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.7909998893737793, "detail": "InternalArray__ICollection_Contains" } },
  1887. { "pid": 1, "tid": 25, "ts": 2903424.31640625, "dur": 799.8999953269958, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7998999953269958, "detail": "InternalArray__ICollection_Contains" } },
  1888. { "pid": 1, "tid": 25, "ts": 2904225.5859375, "dur": 548.2000112533569, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5482000112533569, "detail": "InternalArray__ICollection_Contains" } },
  1889. { "pid": 1, "tid": 25, "ts": 2904774.90234375, "dur": 684.0000152587891, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6840000152587891, "detail": "InternalArray__ICollection_Contains" } },
  1890. { "pid": 1, "tid": 25, "ts": 2905459.47265625, "dur": 762.499988079071, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.762499988079071, "detail": "InternalArray__ICollection_Contains" } },
  1891. { "pid": 1, "tid": 25, "ts": 2906223.14453125, "dur": 1235.200047492981, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.235200047492981, "detail": "InternalArray__ICollection_Contains" } },
  1892. { "pid": 1, "tid": 25, "ts": 2907459.9609375, "dur": 570.1000094413757, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5701000094413757, "detail": "InternalArray__ICollection_Contains" } },
  1893. { "pid": 1, "tid": 25, "ts": 2908031.005859375, "dur": 552.7999997138977, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5527999997138977, "detail": "InternalArray__ICollection_Contains" } },
  1894. { "pid": 1, "tid": 25, "ts": 2908584.716796875, "dur": 955.299973487854, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.955299973487854, "detail": "InternalArray__ICollection_Contains" } },
  1895. { "pid": 1, "tid": 25, "ts": 2909541.259765625, "dur": 904.2999744415283, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9042999744415283, "detail": "InternalArray__ICollection_Contains" } },
  1896. { "pid": 1, "tid": 25, "ts": 2910447.265625, "dur": 689.5999908447266, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6895999908447266, "detail": "InternalArray__ICollection_Contains" } },
  1897. { "pid": 1, "tid": 25, "ts": 2911137.6953125, "dur": 579.4000029563904, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5794000029563904, "detail": "InternalArray__ICollection_Contains" } },
  1898. { "pid": 1, "tid": 25, "ts": 2911718.017578125, "dur": 574.6999979019165, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5746999979019165, "detail": "InternalArray__ICollection_Contains" } },
  1899. { "pid": 1, "tid": 25, "ts": 2912293.701171875, "dur": 688.7000203132629, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6887000203132629, "detail": "InternalArray__ICollection_Contains" } },
  1900. { "pid": 1, "tid": 25, "ts": 2912983.642578125, "dur": 597.000002861023, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.597000002861023, "detail": "InternalArray__ICollection_Contains" } },
  1901. { "pid": 1, "tid": 25, "ts": 2913581.787109375, "dur": 550.599992275238, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.550599992275238, "detail": "InternalArray__ICollection_Contains" } },
  1902. { "pid": 1, "tid": 25, "ts": 2914133.30078125, "dur": 515.2999758720398, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5152999758720398, "detail": "InternalArray__ICollection_Contains" } },
  1903. { "pid": 1, "tid": 25, "ts": 2914649.4140625, "dur": 3045.2001094818115, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 3.0452001094818115, "detail": "InternalArray__ICollection_Contains" } },
  1904. { "pid": 1, "tid": 25, "ts": 2917695.80078125, "dur": 759.8000168800354, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7598000168800354, "detail": "InternalArray__ICollection_Contains" } },
  1905. { "pid": 1, "tid": 25, "ts": 2918456.54296875, "dur": 669.0999865531921, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6690999865531921, "detail": "InternalArray__ICollection_Contains" } },
  1906. { "pid": 1, "tid": 25, "ts": 2919126.953125, "dur": 594.9000120162964, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5949000120162964, "detail": "InternalArray__ICollection_Contains" } },
  1907. { "pid": 1, "tid": 25, "ts": 2919723.14453125, "dur": 583.5999846458435, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5835999846458435, "detail": "InternalArray__ICollection_Contains" } },
  1908. { "pid": 1, "tid": 25, "ts": 2920307.6171875, "dur": 608.5000038146973, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6085000038146973, "detail": "InternalArray__ICollection_Contains" } },
  1909. { "pid": 1, "tid": 25, "ts": 2920917.48046875, "dur": 583.1000208854675, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5831000208854675, "detail": "InternalArray__ICollection_Contains" } },
  1910. { "pid": 1, "tid": 25, "ts": 2921501.46484375, "dur": 4288.79976272583, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 4.28879976272583, "detail": "InternalArray__ICollection_Contains" } },
  1911. { "pid": 1, "tid": 25, "ts": 2925791.259765625, "dur": 785.0000262260437, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7850000262260437, "detail": "InternalArray__ICollection_Contains" } },
  1912. { "pid": 1, "tid": 25, "ts": 2926577.1484375, "dur": 621.999979019165, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.621999979019165, "detail": "InternalArray__ICollection_Contains" } },
  1913. { "pid": 1, "tid": 25, "ts": 2927199.951171875, "dur": 570.3999996185303, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5703999996185303, "detail": "InternalArray__ICollection_Contains" } },
  1914. { "pid": 1, "tid": 25, "ts": 2927771.728515625, "dur": 1262.0999813079834, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.2620999813079834, "detail": "InternalArray__ICollection_Contains" } },
  1915. { "pid": 1, "tid": 25, "ts": 2929035.64453125, "dur": 626.1000037193298, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6261000037193298, "detail": "InternalArray__ICollection_Contains" } },
  1916. { "pid": 1, "tid": 25, "ts": 2929663.0859375, "dur": 594.6000218391418, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5946000218391418, "detail": "InternalArray__ICollection_Contains" } },
  1917. { "pid": 1, "tid": 25, "ts": 2930259.033203125, "dur": 782.1000218391418, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7821000218391418, "detail": "InternalArray__ICollection_Contains" } },
  1918. { "pid": 1, "tid": 25, "ts": 2931042.236328125, "dur": 547.6999878883362, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5476999878883362, "detail": "InternalArray__ICollection_Contains" } },
  1919. { "pid": 1, "tid": 25, "ts": 2931591.064453125, "dur": 780.3999781608582, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7803999781608582, "detail": "InternalArray__ICollection_Contains" } },
  1920. { "pid": 1, "tid": 25, "ts": 2932372.802734375, "dur": 631.7999958992004, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6317999958992004, "detail": "InternalArray__ICollection_Contains" } },
  1921. { "pid": 1, "tid": 25, "ts": 2933005.615234375, "dur": 567.3999786376953, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5673999786376953, "detail": "InternalArray__ICollection_Contains" } },
  1922. { "pid": 1, "tid": 25, "ts": 2933573.974609375, "dur": 611.1999750137329, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6111999750137329, "detail": "InternalArray__ICollection_Contains" } },
  1923. { "pid": 1, "tid": 25, "ts": 2934186.5234375, "dur": 563.8999938964844, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5638999938964844, "detail": "InternalArray__ICollection_Contains" } },
  1924. { "pid": 1, "tid": 25, "ts": 2934751.708984375, "dur": 1155.0999879837036, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.1550999879837036, "detail": "InternalArray__ICollection_Contains" } },
  1925. { "pid": 1, "tid": 25, "ts": 2935907.71484375, "dur": 818.4999823570251, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8184999823570251, "detail": "InternalArray__ICollection_Contains" } },
  1926. { "pid": 1, "tid": 25, "ts": 2936727.294921875, "dur": 688.6000037193298, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6886000037193298, "detail": "InternalArray__ICollection_Contains" } },
  1927. { "pid": 1, "tid": 25, "ts": 2937416.748046875, "dur": 572.3999738693237, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5723999738693237, "detail": "InternalArray__ICollection_Contains" } },
  1928. { "pid": 1, "tid": 25, "ts": 2937989.990234375, "dur": 578.1999826431274, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5781999826431274, "detail": "InternalArray__ICollection_Contains" } },
  1929. { "pid": 1, "tid": 25, "ts": 2938569.3359375, "dur": 913.6000275611877, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.9136000275611877, "detail": "InternalArray__ICollection_Contains" } },
  1930. { "pid": 1, "tid": 25, "ts": 2939483.88671875, "dur": 626.800000667572, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.626800000667572, "detail": "InternalArray__ICollection_Contains" } },
  1931. { "pid": 1, "tid": 25, "ts": 2940112.060546875, "dur": 572.7999806404114, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5727999806404114, "detail": "InternalArray__ICollection_Contains" } },
  1932. { "pid": 1, "tid": 25, "ts": 2942743.1640625, "dur": 340.60001373291016, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34060001373291016, "detail": "InternalArray__ICollection_CopyTo" } },
  1933. { "pid": 1, "tid": 25, "ts": 2949683.349609375, "dur": 584.9000215530396, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5849000215530396, "detail": "InternalArray__ICollection_CopyTo" } },
  1934. { "pid": 1, "tid": 25, "ts": 2951438.232421875, "dur": 347.09998965263367, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34709998965263367, "detail": "InternalArray__ICollection_CopyTo" } },
  1935. { "pid": 1, "tid": 25, "ts": 2956335.44921875, "dur": 423.5999882221222, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4235999882221222, "detail": "InternalArray__ICollection_CopyTo" } },
  1936. { "pid": 1, "tid": 25, "ts": 2956760.009765625, "dur": 382.60000944137573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38260000944137573, "detail": "InternalArray__ICollection_CopyTo" } },
  1937. { "pid": 1, "tid": 25, "ts": 2957143.5546875, "dur": 565.6999945640564, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5656999945640564, "detail": "InternalArray__ICollection_CopyTo" } },
  1938. { "pid": 1, "tid": 25, "ts": 2959976.07421875, "dur": 491.40000343322754, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.49140000343322754, "detail": "InternalArray__ICollection_Remove" } },
  1939. { "pid": 1, "tid": 25, "ts": 2960468.75, "dur": 13765.199661254883, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 13.765199661254883, "detail": "InternalArray__ICollection_Remove" } },
  1940. { "pid": 1, "tid": 25, "ts": 2974899.90234375, "dur": 541.1999821662903, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5411999821662903, "detail": "InternalArray__ICollection_Remove" } },
  1941. { "pid": 1, "tid": 25, "ts": 2982385.986328125, "dur": 706.2000036239624, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7062000036239624, "detail": "InternalArray__ICollection_Remove" } },
  1942. { "pid": 1, "tid": 25, "ts": 2983093.75, "dur": 757.3999762535095, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7573999762535095, "detail": "InternalArray__ICollection_Remove" } },
  1943. { "pid": 1, "tid": 25, "ts": 2984052.001953125, "dur": 547.9000210762024, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5479000210762024, "detail": "InternalArray__ICollection_Remove" } },
  1944. { "pid": 1, "tid": 25, "ts": 2988103.271484375, "dur": 363.90000581741333, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36390000581741333, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1945. { "pid": 1, "tid": 25, "ts": 2988468.26171875, "dur": 363.99999260902405, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.36399999260902405, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1946. { "pid": 1, "tid": 25, "ts": 2988833.251953125, "dur": 337.30000257492065, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33730000257492065, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1947. { "pid": 1, "tid": 25, "ts": 2989171.142578125, "dur": 381.19998574256897, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38119998574256897, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1948. { "pid": 1, "tid": 25, "ts": 2989553.7109375, "dur": 351.7000079154968, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3517000079154968, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1949. { "pid": 1, "tid": 25, "ts": 2989906.005859375, "dur": 354.6000123023987, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3546000123023987, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1950. { "pid": 1, "tid": 25, "ts": 2990261.71875, "dur": 335.3999853134155, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3353999853134155, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1951. { "pid": 1, "tid": 25, "ts": 2990597.900390625, "dur": 342.00000762939453, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.34200000762939453, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1952. { "pid": 1, "tid": 25, "ts": 2990940.673828125, "dur": 419.29998993873596, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41929998993873596, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1953. { "pid": 1, "tid": 25, "ts": 2991361.083984375, "dur": 356.00000619888306, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.35600000619888306, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1954. { "pid": 1, "tid": 25, "ts": 2992669.921875, "dur": 688.8999938964844, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6888999938964844, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1955. { "pid": 1, "tid": 25, "ts": 2993991.69921875, "dur": 379.9999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3799999952316284, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1956. { "pid": 1, "tid": 25, "ts": 2995005.37109375, "dur": 426.2000024318695, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4262000024318695, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1957. { "pid": 1, "tid": 25, "ts": 2995432.6171875, "dur": 333.7000012397766, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3337000012397766, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1958. { "pid": 1, "tid": 25, "ts": 2995767.333984375, "dur": 514.8000121116638, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5148000121116638, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1959. { "pid": 1, "tid": 25, "ts": 2996283.203125, "dur": 522.4000215530396, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5224000215530396, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1960. { "pid": 1, "tid": 25, "ts": 2997125.48828125, "dur": 367.900013923645, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.367900013923645, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1961. { "pid": 1, "tid": 25, "ts": 2999073.2421875, "dur": 400.0000059604645, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4000000059604645, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1962. { "pid": 1, "tid": 25, "ts": 3001060.302734375, "dur": 365.0999963283539, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3650999963283539, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1963. { "pid": 1, "tid": 25, "ts": 3002055.17578125, "dur": 439.0000104904175, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4390000104904175, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1964. { "pid": 1, "tid": 25, "ts": 3002495.1171875, "dur": 734.3000173568726, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7343000173568726, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1965. { "pid": 1, "tid": 25, "ts": 3004199.21875, "dur": 375, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.375, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1966. { "pid": 1, "tid": 25, "ts": 3004885.498046875, "dur": 442.4999952316284, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4424999952316284, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1967. { "pid": 1, "tid": 25, "ts": 3005329.1015625, "dur": 456.49999380111694, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45649999380111694, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1968. { "pid": 1, "tid": 25, "ts": 3007055.908203125, "dur": 400.299996137619, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.400299996137619, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1969. { "pid": 1, "tid": 25, "ts": 3009024.4140625, "dur": 414.6000146865845, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4146000146865845, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1970. { "pid": 1, "tid": 25, "ts": 3010083.740234375, "dur": 339.5000100135803, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3395000100135803, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1971. { "pid": 1, "tid": 25, "ts": 3011065.673828125, "dur": 387.49998807907104, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38749998807907104, "detail": "InternalArray__IEnumerable_GetEnumerator" } },
  1972. { "pid": 1, "tid": 25, "ts": 3011454.1015625, "dur": 346.5000092983246, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3465000092983246, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1973. { "pid": 1, "tid": 25, "ts": 3013118.896484375, "dur": 2723.9999771118164, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 2.7239999771118164, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1974. { "pid": 1, "tid": 25, "ts": 3015843.994140625, "dur": 457.19999074935913, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.45719999074935913, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1975. { "pid": 1, "tid": 25, "ts": 3020508.056640625, "dur": 381.09999895095825, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38109999895095825, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1976. { "pid": 1, "tid": 25, "ts": 3020890.380859375, "dur": 540.4999852180481, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5404999852180481, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1977. { "pid": 1, "tid": 25, "ts": 3021732.91015625, "dur": 411.00001335144043, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41100001335144043, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1978. { "pid": 1, "tid": 25, "ts": 3022144.775390625, "dur": 380.29998540878296, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.38029998540878296, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1979. { "pid": 1, "tid": 25, "ts": 3022827.63671875, "dur": 354.9000024795532, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3549000024795532, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1980. { "pid": 1, "tid": 25, "ts": 3024988.28125, "dur": 482.49998688697815, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48249998688697815, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1981. { "pid": 1, "tid": 25, "ts": 3026087.890625, "dur": 486.9000017642975, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4869000017642975, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1982. { "pid": 1, "tid": 25, "ts": 3026575.927734375, "dur": 336.29998564720154, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33629998564720154, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1983. { "pid": 1, "tid": 25, "ts": 3026913.57421875, "dur": 400.9999930858612, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4009999930858612, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1984. { "pid": 1, "tid": 25, "ts": 3027943.115234375, "dur": 348.3999967575073, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3483999967575073, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1985. { "pid": 1, "tid": 25, "ts": 3028292.724609375, "dur": 338.69999647140503, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33869999647140503, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1986. { "pid": 1, "tid": 25, "ts": 3028956.787109375, "dur": 379.50000166893005, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.37950000166893005, "detail": "InternalArray__IReadOnlyList_get_Item" } },
  1987. { "pid": 1, "tid": 25, "ts": 3034769.287109375, "dur": 1019.7999477386475, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.0197999477386475, "detail": "InternalArray__IndexOf" } },
  1988. { "pid": 1, "tid": 25, "ts": 3035790.0390625, "dur": 814.7000074386597, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8147000074386597, "detail": "InternalArray__IndexOf" } },
  1989. { "pid": 1, "tid": 25, "ts": 3036605.95703125, "dur": 1370.300054550171, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 1.370300054550171, "detail": "InternalArray__IndexOf" } },
  1990. { "pid": 1, "tid": 25, "ts": 3037977.783203125, "dur": 871.1000084877014, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8711000084877014, "detail": "InternalArray__IndexOf" } },
  1991. { "pid": 1, "tid": 25, "ts": 3038850.341796875, "dur": 809.5999956130981, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8095999956130981, "detail": "InternalArray__IndexOf" } },
  1992. { "pid": 1, "tid": 25, "ts": 3039660.888671875, "dur": 691.9000148773193, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6919000148773193, "detail": "InternalArray__IndexOf" } },
  1993. { "pid": 1, "tid": 25, "ts": 3040353.759765625, "dur": 569.7000026702881, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5697000026702881, "detail": "InternalArray__IndexOf" } },
  1994. { "pid": 1, "tid": 25, "ts": 3040924.072265625, "dur": 648.2999920845032, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6482999920845032, "detail": "InternalArray__IndexOf" } },
  1995. { "pid": 1, "tid": 25, "ts": 3041573.2421875, "dur": 611.1000180244446, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6111000180244446, "detail": "InternalArray__IndexOf" } },
  1996. { "pid": 1, "tid": 25, "ts": 3042185.302734375, "dur": 448.199987411499, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.448199987411499, "detail": "InternalArray__IndexOf" } },
  1997. { "pid": 1, "tid": 25, "ts": 3042634.27734375, "dur": 424.699991941452, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.424699991941452, "detail": "InternalArray__IndexOf" } },
  1998. { "pid": 1, "tid": 25, "ts": 3043059.5703125, "dur": 693.7000155448914, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6937000155448914, "detail": "InternalArray__IndexOf" } },
  1999. { "pid": 1, "tid": 25, "ts": 3043754.39453125, "dur": 680.4999709129333, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6804999709129333, "detail": "InternalArray__IndexOf" } },
  2000. { "pid": 1, "tid": 25, "ts": 3044436.279296875, "dur": 813.7000203132629, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8137000203132629, "detail": "InternalArray__IndexOf" } },
  2001. { "pid": 1, "tid": 25, "ts": 3045251.220703125, "dur": 676.1999726295471, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6761999726295471, "detail": "InternalArray__IndexOf" } },
  2002. { "pid": 1, "tid": 25, "ts": 3045928.466796875, "dur": 628.8999915122986, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6288999915122986, "detail": "InternalArray__IndexOf" } },
  2003. { "pid": 1, "tid": 25, "ts": 3046557.861328125, "dur": 653.2999873161316, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6532999873161316, "detail": "InternalArray__IndexOf" } },
  2004. { "pid": 1, "tid": 25, "ts": 3047212.40234375, "dur": 722.4000096321106, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7224000096321106, "detail": "InternalArray__IndexOf" } },
  2005. { "pid": 1, "tid": 25, "ts": 3047936.03515625, "dur": 719.6999788284302, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7196999788284302, "detail": "InternalArray__IndexOf" } },
  2006. { "pid": 1, "tid": 25, "ts": 3048656.982421875, "dur": 815.2999877929688, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.8152999877929688, "detail": "InternalArray__IndexOf" } },
  2007. { "pid": 1, "tid": 25, "ts": 3049473.388671875, "dur": 724.0999937057495, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7240999937057495, "detail": "InternalArray__IndexOf" } },
  2008. { "pid": 1, "tid": 25, "ts": 3050198.73046875, "dur": 714.5000100135803, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7145000100135803, "detail": "InternalArray__IndexOf" } },
  2009. { "pid": 1, "tid": 25, "ts": 3050914.306640625, "dur": 707.7999711036682, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7077999711036682, "detail": "InternalArray__IndexOf" } },
  2010. { "pid": 1, "tid": 25, "ts": 3051623.046875, "dur": 424.10001158714294, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42410001158714294, "detail": "InternalArray__IndexOf" } },
  2011. { "pid": 1, "tid": 25, "ts": 3052048.095703125, "dur": 449.29999113082886, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44929999113082886, "detail": "InternalArray__IndexOf" } },
  2012. { "pid": 1, "tid": 25, "ts": 3052498.291015625, "dur": 403.4000039100647, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4034000039100647, "detail": "InternalArray__IndexOf" } },
  2013. { "pid": 1, "tid": 25, "ts": 3052902.587890625, "dur": 428.20000648498535, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42820000648498535, "detail": "InternalArray__IndexOf" } },
  2014. { "pid": 1, "tid": 25, "ts": 3053331.54296875, "dur": 416.70000553131104, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41670000553131104, "detail": "InternalArray__IndexOf" } },
  2015. { "pid": 1, "tid": 25, "ts": 3053748.779296875, "dur": 416.90000891685486, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.41690000891685486, "detail": "InternalArray__IndexOf" } },
  2016. { "pid": 1, "tid": 25, "ts": 3054166.748046875, "dur": 404.1000008583069, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4041000008583069, "detail": "InternalArray__IndexOf" } },
  2017. { "pid": 1, "tid": 25, "ts": 3054571.2890625, "dur": 473.69998693466187, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.47369998693466187, "detail": "InternalArray__IndexOf" } },
  2018. { "pid": 1, "tid": 25, "ts": 3055046.142578125, "dur": 602.1999716758728, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6021999716758728, "detail": "InternalArray__IndexOf" } },
  2019. { "pid": 1, "tid": 25, "ts": 3055649.169921875, "dur": 588.5999798774719, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5885999798774719, "detail": "InternalArray__IndexOf" } },
  2020. { "pid": 1, "tid": 25, "ts": 3056238.76953125, "dur": 538.100004196167, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.538100004196167, "detail": "InternalArray__IndexOf" } },
  2021. { "pid": 1, "tid": 25, "ts": 3056778.3203125, "dur": 560.5000257492065, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5605000257492065, "detail": "InternalArray__IndexOf" } },
  2022. { "pid": 1, "tid": 25, "ts": 3057339.599609375, "dur": 671.0000038146973, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6710000038146973, "detail": "InternalArray__IndexOf" } },
  2023. { "pid": 1, "tid": 25, "ts": 3058011.474609375, "dur": 713.699996471405, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.713699996471405, "detail": "InternalArray__IndexOf" } },
  2024. { "pid": 1, "tid": 25, "ts": 3058726.5625, "dur": 717.0000076293945, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7170000076293945, "detail": "InternalArray__IndexOf" } },
  2025. { "pid": 1, "tid": 25, "ts": 3059444.580078125, "dur": 753.7000179290771, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7537000179290771, "detail": "InternalArray__IndexOf" } },
  2026. { "pid": 1, "tid": 25, "ts": 3060199.70703125, "dur": 702.3000121116638, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7023000121116638, "detail": "InternalArray__IndexOf" } },
  2027. { "pid": 1, "tid": 25, "ts": 3060902.587890625, "dur": 692.6000118255615, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6926000118255615, "detail": "InternalArray__IndexOf" } },
  2028. { "pid": 1, "tid": 25, "ts": 3061596.435546875, "dur": 595.79998254776, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.59579998254776, "detail": "InternalArray__IndexOf" } },
  2029. { "pid": 1, "tid": 25, "ts": 3062192.626953125, "dur": 424.19999837875366, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42419999837875366, "detail": "InternalArray__IndexOf" } },
  2030. { "pid": 1, "tid": 25, "ts": 3062617.67578125, "dur": 27084.800720214844, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 27.084800720214844, "detail": "InternalArray__IndexOf" } },
  2031. { "pid": 1, "tid": 25, "ts": 3089704.345703125, "dur": 561.8000030517578, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.5618000030517578, "detail": "InternalArray__IndexOf" } },
  2032. { "pid": 1, "tid": 25, "ts": 3090266.845703125, "dur": 420.10000348091125, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.42010000348091125, "detail": "InternalArray__IndexOf" } },
  2033. { "pid": 1, "tid": 25, "ts": 3090687.744140625, "dur": 435.49999594688416, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43549999594688416, "detail": "InternalArray__IndexOf" } },
  2034. { "pid": 1, "tid": 25, "ts": 3091124.51171875, "dur": 423.5999882221222, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4235999882221222, "detail": "InternalArray__IndexOf" } },
  2035. { "pid": 1, "tid": 25, "ts": 3091548.828125, "dur": 446.20001316070557, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44620001316070557, "detail": "InternalArray__IndexOf" } },
  2036. { "pid": 1, "tid": 25, "ts": 3091996.09375, "dur": 440.6000077724457, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4406000077724457, "detail": "InternalArray__IndexOf" } },
  2037. { "pid": 1, "tid": 25, "ts": 3092437.5, "dur": 431.8000078201294, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4318000078201294, "detail": "InternalArray__IndexOf" } },
  2038. { "pid": 1, "tid": 25, "ts": 3092869.873046875, "dur": 601.9999980926514, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6019999980926514, "detail": "InternalArray__IndexOf" } },
  2039. { "pid": 1, "tid": 25, "ts": 3093472.900390625, "dur": 625.1000165939331, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6251000165939331, "detail": "InternalArray__IndexOf" } },
  2040. { "pid": 1, "tid": 25, "ts": 3094099.853515625, "dur": 445.10000944137573, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.44510000944137573, "detail": "InternalArray__IndexOf" } },
  2041. { "pid": 1, "tid": 25, "ts": 3094546.142578125, "dur": 485.5999946594238, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.48559999465942383, "detail": "InternalArray__IndexOf" } },
  2042. { "pid": 1, "tid": 25, "ts": 3095033.203125, "dur": 690.1999711990356, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6901999711990356, "detail": "InternalArray__IndexOf" } },
  2043. { "pid": 1, "tid": 25, "ts": 3095724.365234375, "dur": 692.3999786376953, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6923999786376953, "detail": "InternalArray__IndexOf" } },
  2044. { "pid": 1, "tid": 25, "ts": 3096417.96875, "dur": 685.5000257492065, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.6855000257492065, "detail": "InternalArray__IndexOf" } },
  2045. { "pid": 1, "tid": 25, "ts": 3097104.4921875, "dur": 704.4000029563904, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.7044000029563904, "detail": "InternalArray__IndexOf" } },
  2046. { "pid": 1, "tid": 25, "ts": 3097809.5703125, "dur": 486.2000048160553, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4862000048160553, "detail": "InternalArray__IndexOf" } },
  2047. { "pid": 1, "tid": 25, "ts": 3098296.630859375, "dur": 420.5999970436096, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4205999970436096, "detail": "InternalArray__IndexOf" } },
  2048. { "pid": 1, "tid": 25, "ts": 3098718.017578125, "dur": 430.50000071525574, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.43050000071525574, "detail": "InternalArray__IndexOf" } },
  2049. { "pid": 1, "tid": 25, "ts": 3099149.169921875, "dur": 422.3000109195709, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4223000109195709, "detail": "InternalArray__IndexOf" } },
  2050. { "pid": 1, "tid": 25, "ts": 3099572.265625, "dur": 434.3000054359436, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4343000054359436, "detail": "InternalArray__IndexOf" } },
  2051. { "pid": 1, "tid": 25, "ts": 3100007.32421875, "dur": 426.2000024318695, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.4262000024318695, "detail": "InternalArray__IndexOf" } },
  2052. { "pid": 1, "tid": 25, "ts": 3109868.65234375, "dur": 352.2999882698059, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3522999882698059, "detail": "InternalArray__get_Item" } },
  2053. { "pid": 1, "tid": 25, "ts": 3110222.16796875, "dur": 344.3000018596649, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3443000018596649, "detail": "InternalArray__get_Item" } },
  2054. { "pid": 1, "tid": 25, "ts": 3110897.4609375, "dur": 353.8999855518341, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3538999855518341, "detail": "InternalArray__get_Item" } },
  2055. { "pid": 1, "tid": 25, "ts": 3111585.693359375, "dur": 342.5000011920929, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3425000011920929, "detail": "InternalArray__get_Item" } },
  2056. { "pid": 1, "tid": 25, "ts": 3111929.443359375, "dur": 338.20000290870667, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.33820000290870667, "detail": "InternalArray__get_Item" } },
  2057. { "pid": 1, "tid": 25, "ts": 3112590.33203125, "dur": 341.8000042438507, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3418000042438507, "detail": "InternalArray__get_Item" } },
  2058. { "pid": 1, "tid": 25, "ts": 3115687.01171875, "dur": 347.2999930381775, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3472999930381775, "detail": "InternalArray__get_Item" } },
  2059. { "pid": 1, "tid": 25, "ts": 3116693.84765625, "dur": 377.6000142097473, "ph": "X", "name": "WriteGenericMethodDefinition", "args": { "durationMS": 0.3776000142097473, "detail": "InternalArray__get_Item" } },
  2060. { "pid": 1, "tid": 25, "ts": 3120717.28515625, "dur": 22327.10075378418, "ph": "X", "name": "GenericMethods.cpp", "args": { "durationMS": 22.32710075378418, "detail": "" } },
  2061. { "pid": 1, "tid": 26, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2062. { "pid": 1, "tid": 26, "ts": 1319546.875, "dur": 11910.499572753906, "ph": "X", "name": "Idle", "args": { "durationMS": 11.910499572753906, "detail": "" } },
  2063. { "pid": 1, "tid": 26, "ts": 1434783.3251953125, "dur": 183754.30297851562, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 183.75430297851562, "detail": "System.Core" } },
  2064. { "pid": 1, "tid": 26, "ts": 1434950.0732421875, "dur": 183587.2039794922, "ph": "X", "name": "System.Core_Attr.cpp", "args": { "durationMS": 183.5872039794922, "detail": "" } },
  2065. { "pid": 1, "tid": 26, "ts": 1620519.6533203125, "dur": 5645.599842071533, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 5.645599842071533, "detail": "UnityEngine.TextRenderingModule" } },
  2066. { "pid": 1, "tid": 26, "ts": 1620537.4755859375, "dur": 5627.099990844727, "ph": "X", "name": "UnityEngine.TextRenderingModule_Attr.cpp", "args": { "durationMS": 5.627099990844727, "detail": "" } },
  2067. { "pid": 1, "tid": 26, "ts": 1626168.0908203125, "dur": 20059.799194335938, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 20.059799194335938, "detail": "UnityEngine.AudioModule" } },
  2068. { "pid": 1, "tid": 26, "ts": 1626184.9365234375, "dur": 20042.301177978516, "ph": "X", "name": "UnityEngine.AudioModule_Attr.cpp", "args": { "durationMS": 20.042301177978516, "detail": "" } },
  2069. { "pid": 1, "tid": 26, "ts": 1646627.9296875, "dur": 387.4000012874603, "ph": "X", "name": "GenericComDefinitions", "args": { "durationMS": 0.3874000012874603, "detail": "" } },
  2070. { "pid": 1, "tid": 26, "ts": 1653896.484375, "dur": 2251.300096511841, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.251300096511841, "detail": "<Module>" } },
  2071. { "pid": 1, "tid": 26, "ts": 1656148.92578125, "dur": 94448.60076904297, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 94.44860076904297, "detail": "UnityEngine.Font" } },
  2072. { "pid": 1, "tid": 26, "ts": 1750647.5830078125, "dur": 3795.9001064300537, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7959001064300537, "detail": "UnityEngine.TextGenerationSettings" } },
  2073. { "pid": 1, "tid": 26, "ts": 1754445.1904296875, "dur": 30395.299911499023, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.395299911499023, "detail": "UnityEngine.TextGenerator" } },
  2074. { "pid": 1, "tid": 26, "ts": 1784886.8408203125, "dur": 590.2000069618225, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5902000069618225, "detail": "UnityEngine.UIVertex" } },
  2075. { "pid": 1, "tid": 26, "ts": 1785488.4033203125, "dur": 7587.699890136719, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.587699890136719, "detail": "UnityEngine.Font/FontTextureRebuildCallback" } },
  2076. { "pid": 1, "tid": 26, "ts": 1793079.4677734375, "dur": 9493.599891662598, "ph": "X", "name": "UnityEngine.TextRenderingModule.cpp", "args": { "durationMS": 9.493599891662598, "detail": "" } },
  2077. { "pid": 1, "tid": 26, "ts": 1802690.91796875, "dur": 841.4999842643738, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8414999842643738, "detail": "System.Configuration.ConfigurationElement" } },
  2078. { "pid": 1, "tid": 26, "ts": 1803661.2548828125, "dur": 372.5000023841858, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3725000023841858, "detail": "System.Configuration.ConfigurationSection" } },
  2079. { "pid": 1, "tid": 26, "ts": 1804047.119140625, "dur": 714.1000032424927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7141000032424927, "detail": "System.Configuration.IgnoreSection" } },
  2080. { "pid": 1, "tid": 26, "ts": 1804888.0615234375, "dur": 2076.200008392334, "ph": "X", "name": "System.Configuration.cpp", "args": { "durationMS": 2.076200008392334, "detail": "" } },
  2081. { "pid": 1, "tid": 26, "ts": 1806978.271484375, "dur": 7819.799900054932, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.819799900054932, "detail": "System.Text.RegularExpressions.RegexNode" } },
  2082. { "pid": 1, "tid": 26, "ts": 1814810.1806640625, "dur": 35342.098236083984, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 35.342098236083984, "detail": "System.Text.RegularExpressions.RegexParser" } },
  2083. { "pid": 1, "tid": 26, "ts": 1850153.564453125, "dur": 1454.1000127792358, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4541000127792358, "detail": "System.Text.RegularExpressions.RegexPrefix" } },
  2084. { "pid": 1, "tid": 26, "ts": 1851867.3095703125, "dur": 12103.599548339844, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.103599548339844, "detail": "System.Text.RegularExpressions.RegexWriter" } },
  2085. { "pid": 1, "tid": 26, "ts": 1863972.0458984375, "dur": 503.8999915122986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5038999915122986, "detail": "SR" } },
  2086. { "pid": 1, "tid": 26, "ts": 1865535.64453125, "dur": 2606.4999103546143, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6064999103546143, "detail": "System.Net.Sockets.SocketException" } },
  2087. { "pid": 1, "tid": 26, "ts": 1868143.1884765625, "dur": 2937.700033187866, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.937700033187866, "detail": "System.Diagnostics.Stopwatch" } },
  2088. { "pid": 1, "tid": 26, "ts": 1871292.3583984375, "dur": 498.4999895095825, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4984999895095825, "detail": "Unity.ThrowStub" } },
  2089. { "pid": 1, "tid": 26, "ts": 1872086.7919921875, "dur": 1008.2999467849731, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0082999467849731, "detail": "System.ComponentModel.TypeConverterAttribute" } },
  2090. { "pid": 1, "tid": 26, "ts": 1873096.0693359375, "dur": 2214.099884033203, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.214099884033203, "detail": "System.UncNameHelper" } },
  2091. { "pid": 1, "tid": 26, "ts": 1875322.509765625, "dur": 159901.79443359375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 159.90179443359375, "detail": "System.Uri" } },
  2092. { "pid": 1, "tid": 26, "ts": 2035228.02734375, "dur": 37846.900939941406, "ph": "X", "name": "System1.cpp", "args": { "durationMS": 37.846900939941406, "detail": "" } },
  2093. { "pid": 1, "tid": 26, "ts": 2073105.712890625, "dur": 3931.49995803833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.93149995803833, "detail": "System.Console" } },
  2094. { "pid": 1, "tid": 26, "ts": 2077038.0859375, "dur": 619.0000176429749, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6190000176429749, "detail": "System.ConsoleCancelEventArgs" } },
  2095. { "pid": 1, "tid": 26, "ts": 2077657.958984375, "dur": 410.6999933719635, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4106999933719635, "detail": "System.ConsoleCancelEventHandler" } },
  2096. { "pid": 1, "tid": 26, "ts": 2078080.322265625, "dur": 3040.8999919891357, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.0408999919891357, "detail": "System.ConsoleDriver" } },
  2097. { "pid": 1, "tid": 26, "ts": 2081208.251953125, "dur": 2203.5999298095703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2035999298095703, "detail": "System.ConsoleKeyInfo" } },
  2098. { "pid": 1, "tid": 26, "ts": 2083465.576171875, "dur": 2571.399927139282, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.5713999271392822, "detail": "System.Runtime.Remoting.Messaging.ConstructionCall" } },
  2099. { "pid": 1, "tid": 26, "ts": 2086038.330078125, "dur": 1556.3000440597534, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5563000440597534, "detail": "System.Runtime.Remoting.Messaging.ConstructionCallDictionary" } },
  2100. { "pid": 1, "tid": 26, "ts": 2087883.056640625, "dur": 720.300018787384, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.720300018787384, "detail": "System.Runtime.Remoting.Messaging.ConstructionResponse" } },
  2101. { "pid": 1, "tid": 26, "ts": 2088604.4921875, "dur": 1458.0999612808228, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4580999612808228, "detail": "System.Reflection.Emit.ConstructorBuilder" } },
  2102. { "pid": 1, "tid": 26, "ts": 2090063.720703125, "dur": 1197.9000568389893, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1979000568389893, "detail": "System.Reflection.ConstructorInfo" } },
  2103. { "pid": 1, "tid": 26, "ts": 2091262.451171875, "dur": 9633.500099182129, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.633500099182129, "detail": "System.Runtime.Remoting.Contexts.Context" } },
  2104. { "pid": 1, "tid": 26, "ts": 2100983.88671875, "dur": 384.4999969005585, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38449999690055847, "detail": "System.Threading.ContextCallback" } },
  2105. { "pid": 1, "tid": 26, "ts": 2101499.0234375, "dur": 736.6999983787537, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7366999983787537, "detail": "System.Runtime.Remoting.Activation.ContextLevelActivator" } },
  2106. { "pid": 1, "tid": 26, "ts": 2102325.1953125, "dur": 597.100019454956, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.597100019454956, "detail": "System.Threading.Tasks.ContinuationTaskFromTask" } },
  2107. { "pid": 1, "tid": 26, "ts": 2103078.125, "dur": 614.7000193595886, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6147000193595886, "detail": "Mono.Globalization.Unicode.ContractionComparer" } },
  2108. { "pid": 1, "tid": 26, "ts": 2103693.359375, "dur": 59120.30029296875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 59.12030029296875, "detail": "System.Convert" } },
  2109. { "pid": 1, "tid": 26, "ts": 2162814.697265625, "dur": 6790.800094604492, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.790800094604492, "detail": "System.Runtime.Serialization.Formatters.Binary.Converter" } },
  2110. { "pid": 1, "tid": 26, "ts": 2169884.033203125, "dur": 13453.900337219238, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.453900337219238, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainChannel" } },
  2111. { "pid": 1, "tid": 26, "ts": 2183340.087890625, "dur": 393.7000036239624, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3937000036239624, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainData" } },
  2112. { "pid": 1, "tid": 26, "ts": 2183734.86328125, "dur": 2818.000078201294, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.818000078201294, "detail": "System.Runtime.Remoting.Channels.CrossAppDomainSink" } },
  2113. { "pid": 1, "tid": 26, "ts": 2186553.955078125, "dur": 1825.7999420166016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.8257999420166016, "detail": "System.Runtime.Remoting.Contexts.CrossContextChannel" } },
  2114. { "pid": 1, "tid": 26, "ts": 2188381.103515625, "dur": 1144.0999507904053, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1440999507904053, "detail": "System.Runtime.Remoting.Contexts.CrossContextDelegate" } },
  2115. { "pid": 1, "tid": 26, "ts": 2189526.85546875, "dur": 1743.399977684021, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.743399977684021, "detail": "System.Security.Cryptography.CryptoConfig" } },
  2116. { "pid": 1, "tid": 26, "ts": 2191271.97265625, "dur": 572.7999806404114, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5727999806404114, "detail": "System.Security.Cryptography.CryptographicException" } },
  2117. { "pid": 1, "tid": 26, "ts": 2191846.19140625, "dur": 542.2000288963318, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5422000288963318, "detail": "System.Security.Cryptography.CryptographicUnexpectedOperationException" } },
  2118. { "pid": 1, "tid": 26, "ts": 2192389.16015625, "dur": 1281.8000316619873, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2818000316619873, "detail": "System.CultureAwareComparer" } },
  2119. { "pid": 1, "tid": 26, "ts": 2193671.875, "dur": 8219.599723815918, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.219599723815918, "detail": "System.Globalization.CultureData" } },
  2120. { "pid": 1, "tid": 26, "ts": 2201895.01953125, "dur": 37312.90054321289, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 37.31290054321289, "detail": "System.Globalization.CultureInfo" } },
  2121. { "pid": 1, "tid": 26, "ts": 2239210.44921875, "dur": 2491.100072860718, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4911000728607178, "detail": "System.Globalization.CultureNotFoundException" } },
  2122. { "pid": 1, "tid": 26, "ts": 2241702.392578125, "dur": 380.4999887943268, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3804999887943268, "detail": "System.CurrentSystemTimeZone" } },
  2123. { "pid": 1, "tid": 26, "ts": 2242096.6796875, "dur": 6833.199977874756, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.833199977874756, "detail": "System.Reflection.CustomAttributeData" } },
  2124. { "pid": 1, "tid": 26, "ts": 2248935.302734375, "dur": 42746.498107910156, "ph": "X", "name": "mscorlib2.cpp", "args": { "durationMS": 42.746498107910156, "detail": "" } },
  2125. { "pid": 1, "tid": 26, "ts": 2291709.9609375, "dur": 440.6000077724457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4406000077724457, "detail": "System.ObsoleteAttribute" } },
  2126. { "pid": 1, "tid": 26, "ts": 2292487.79296875, "dur": 20785.10093688965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 20.78510093688965, "detail": "System.OperatingSystem" } },
  2127. { "pid": 1, "tid": 26, "ts": 2313273.92578125, "dur": 814.1999840736389, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8141999840736389, "detail": "System.OperationCanceledException" } },
  2128. { "pid": 1, "tid": 26, "ts": 2314455.322265625, "dur": 1223.7000465393066, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2237000465393066, "detail": "System.OrdinalComparer" } },
  2129. { "pid": 1, "tid": 26, "ts": 2315764.6484375, "dur": 467.79999136924744, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46779999136924744, "detail": "System.OutOfMemoryException" } },
  2130. { "pid": 1, "tid": 26, "ts": 2316233.154296875, "dur": 573.7000107765198, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5737000107765198, "detail": "System.OverflowException" } },
  2131. { "pid": 1, "tid": 26, "ts": 2316919.921875, "dur": 14374.300956726074, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.374300956726074, "detail": "System.Reflection.ParameterInfo" } },
  2132. { "pid": 1, "tid": 26, "ts": 2331296.38671875, "dur": 396.60000801086426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.39660000801086426, "detail": "System.Reflection.ParameterModifier" } },
  2133. { "pid": 1, "tid": 26, "ts": 2331693.603515625, "dur": 30976.40037536621, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 30.97640037536621, "detail": "System.ParameterizedStrings" } },
  2134. { "pid": 1, "tid": 26, "ts": 2362671.142578125, "dur": 354.09998893737793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35409998893737793, "detail": "System.Threading.ParameterizedThreadStart" } },
  2135. { "pid": 1, "tid": 26, "ts": 2363026.3671875, "dur": 1743.99995803833, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.74399995803833, "detail": "System.ParamsArray" } },
  2136. { "pid": 1, "tid": 26, "ts": 2364788.330078125, "dur": 6409.299850463867, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.409299850463867, "detail": "System.ParseNumbers" } },
  2137. { "pid": 1, "tid": 26, "ts": 2371198.486328125, "dur": 461.1999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4611999988555908, "detail": "System.Runtime.Serialization.Formatters.Binary.ParseRecord" } },
  2138. { "pid": 1, "tid": 26, "ts": 2371660.888671875, "dur": 19983.10089111328, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.98310089111328, "detail": "System.IO.Path" } },
  2139. { "pid": 1, "tid": 26, "ts": 2391842.7734375, "dur": 512.7000212669373, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5127000212669373, "detail": "System.IO.PathTooLongException" } },
  2140. { "pid": 1, "tid": 26, "ts": 2392356.4453125, "dur": 1381.100058555603, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.381100058555603, "detail": "System.IO.PinnedBufferMemoryStream" } },
  2141. { "pid": 1, "tid": 26, "ts": 2394075.927734375, "dur": 543.2999730110168, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5432999730110168, "detail": "System.PlatformNotSupportedException" } },
  2142. { "pid": 1, "tid": 26, "ts": 2394619.873046875, "dur": 1447.2999572753906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4472999572753906, "detail": "System.Reflection.Pointer" } },
  2143. { "pid": 1, "tid": 26, "ts": 2396068.359375, "dur": 495.0999915599823, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4950999915599823, "detail": "System.PointerSpec" } },
  2144. { "pid": 1, "tid": 26, "ts": 2396649.169921875, "dur": 1532.8999757766724, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5328999757766724, "detail": "System.Runtime.Serialization.Formatters.Binary.PrimitiveArray" } },
  2145. { "pid": 1, "tid": 26, "ts": 2398197.509765625, "dur": 1734.8999977111816, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7348999977111816, "detail": "System.Reflection.Emit.PropertyBuilder" } },
  2146. { "pid": 1, "tid": 26, "ts": 2399933.349609375, "dur": 1903.5999774932861, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9035999774932861, "detail": "System.Reflection.PropertyInfo" } },
  2147. { "pid": 1, "tid": 26, "ts": 2401838.8671875, "dur": 1163.599967956543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.163599967956543, "detail": "System.Runtime.Remoting.ProviderData" } },
  2148. { "pid": 1, "tid": 26, "ts": 2403004.39453125, "dur": 463.99998664855957, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46399998664855957, "detail": "System.Runtime.Remoting.Proxies.ProxyAttribute" } },
  2149. { "pid": 1, "tid": 26, "ts": 2403584.47265625, "dur": 6168.700218200684, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.168700218200684, "detail": "System.Collections.Queue" } },
  2150. { "pid": 1, "tid": 26, "ts": 2409754.8828125, "dur": 747.3999857902527, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7473999857902527, "detail": "System.Threading.QueueUserWorkItemCallback" } },
  2151. { "pid": 1, "tid": 26, "ts": 2410503.173828125, "dur": 1998.1000423431396, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9981000423431396, "detail": "System.Security.Cryptography.RNGCryptoServiceProvider" } },
  2152. { "pid": 1, "tid": 26, "ts": 2412502.44140625, "dur": 1552.5000095367432, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5525000095367432, "detail": "System.Random" } },
  2153. { "pid": 1, "tid": 26, "ts": 2414055.908203125, "dur": 352.69999504089355, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35269999504089355, "detail": "System.Security.Cryptography.RandomNumberGenerator" } },
  2154. { "pid": 1, "tid": 26, "ts": 2414409.423828125, "dur": 704.4000029563904, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7044000029563904, "detail": "System.RankException" } },
  2155. { "pid": 1, "tid": 26, "ts": 2415115.478515625, "dur": 10029.399871826172, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.029399871826172, "detail": "System.Runtime.Serialization.Formatters.Binary.ReadObjectInfo" } },
  2156. { "pid": 1, "tid": 26, "ts": 2425146.728515625, "dur": 7102.099895477295, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.102099895477295, "detail": "System.Runtime.Remoting.Proxies.RealProxy" } },
  2157. { "pid": 1, "tid": 26, "ts": 2432524.4140625, "dur": 1237.1000051498413, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2371000051498413, "detail": "System.Reflection.ReflectionTypeLoadException" } },
  2158. { "pid": 1, "tid": 26, "ts": 2433762.20703125, "dur": 3338.399887084961, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.338399887084961, "detail": "System.Globalization.RegionInfo" } },
  2159. { "pid": 1, "tid": 26, "ts": 2437102.294921875, "dur": 3258.1000328063965, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.2581000328063965, "detail": "System.Threading.RegisteredWaitHandle" } },
  2160. { "pid": 1, "tid": 26, "ts": 2440673.583984375, "dur": 3915.6999588012695, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.9156999588012695, "detail": "Microsoft.Win32.RegistryKey" } },
  2161. { "pid": 1, "tid": 26, "ts": 2444591.064453125, "dur": 384.4999969005585, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38449999690055847, "detail": "Microsoft.Win32.RegistryKeyComparer" } },
  2162. { "pid": 1, "tid": 26, "ts": 2445112.79296875, "dur": 8219.799995422363, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.219799995422363, "detail": "System.Runtime.Remoting.RemotingConfiguration" } },
  2163. { "pid": 1, "tid": 26, "ts": 2453333.49609375, "dur": 498.6000061035156, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4986000061035156, "detail": "System.Runtime.Remoting.RemotingException" } },
  2164. { "pid": 1, "tid": 26, "ts": 2453833.49609375, "dur": 3789.7000312805176, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7897000312805176, "detail": "System.Runtime.Remoting.Proxies.RemotingProxy" } },
  2165. { "pid": 1, "tid": 26, "ts": 2457624.267578125, "dur": 18355.40008544922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.35540008544922, "detail": "System.Runtime.Remoting.RemotingServices" } },
  2166. { "pid": 1, "tid": 26, "ts": 2475980.712890625, "dur": 814.4999742507935, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8144999742507935, "detail": "System.Runtime.Remoting.Messaging.RemotingSurrogate" } },
  2167. { "pid": 1, "tid": 26, "ts": 2476796.142578125, "dur": 878.7000179290771, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8787000179290771, "detail": "System.Runtime.Remoting.Messaging.RemotingSurrogateSelector" } },
  2168. { "pid": 1, "tid": 26, "ts": 2477675.78125, "dur": 464.70001339912415, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46470001339912415, "detail": "System.ResolveEventArgs" } },
  2169. { "pid": 1, "tid": 26, "ts": 2478141.6015625, "dur": 461.6999924182892, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4616999924182892, "detail": "System.ResolveEventHandler" } },
  2170. { "pid": 1, "tid": 26, "ts": 2478604.736328125, "dur": 2799.999952316284, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.799999952316284, "detail": "System.Resources.ResourceLocator" } },
  2171. { "pid": 1, "tid": 26, "ts": 2481406.005859375, "dur": 2823.699951171875, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.823699951171875, "detail": "System.Resources.ResourceManager" } },
  2172. { "pid": 1, "tid": 26, "ts": 2484230.46875, "dur": 19419.50035095215, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 19.41950035095215, "detail": "System.Resources.ResourceReader" } },
  2173. { "pid": 1, "tid": 26, "ts": 2503652.83203125, "dur": 46008.399963378906, "ph": "X", "name": "mscorlib9.cpp", "args": { "durationMS": 46.008399963378906, "detail": "" } },
  2174. { "pid": 1, "tid": 26, "ts": 2549746.58203125, "dur": 11258.500099182129, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 11.258500099182129, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2<System.Object,System.Object>" } },
  2175. { "pid": 1, "tid": 26, "ts": 2561007.32421875, "dur": 442.4999952316284, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4424999952316284, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Boolean>" } },
  2176. { "pid": 1, "tid": 26, "ts": 2561452.1484375, "dur": 447.2000002861023, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4472000002861023, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Int32>" } },
  2177. { "pid": 1, "tid": 26, "ts": 2561901.123046875, "dur": 466.8999910354614, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4668999910354614, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Object>" } },
  2178. { "pid": 1, "tid": 26, "ts": 2562370.1171875, "dur": 466.1000072956085, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.4661000072956085, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1<System.Threading.Tasks.VoidTaskResult>" } },
  2179. { "pid": 1, "tid": 26, "ts": 2562840.33203125, "dur": 713.5999798774719, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7135999798774719, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Boolean>" } },
  2180. { "pid": 1, "tid": 26, "ts": 2563555.908203125, "dur": 722.9999899864197, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7229999899864197, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Int32>" } },
  2181. { "pid": 1, "tid": 26, "ts": 2564280.2734375, "dur": 6907.100200653076, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 6.907100200653076, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Object>" } },
  2182. { "pid": 1, "tid": 26, "ts": 2571190.4296875, "dur": 907.4000120162964, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9074000120162964, "detail": "System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1/ConfiguredTaskAwaiter<System.Threading.Tasks.VoidTaskResult>" } },
  2183. { "pid": 1, "tid": 26, "ts": 2572100.09765625, "dur": 562.3999834060669, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5623999834060669, "detail": "System.Converter`2<System.Object,System.Object>" } },
  2184. { "pid": 1, "tid": 26, "ts": 2572664.0625, "dur": 551.1999726295471, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.5511999726295471, "detail": "System.Runtime.CompilerServices.ConditionalWeakTable`2/CreateValueCallback<System.Object,System.Object>" } },
  2185. { "pid": 1, "tid": 26, "ts": 2573216.796875, "dur": 41178.6994934082, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 41.1786994934082, "detail": "System.Collections.Concurrent.ConcurrentDictionary`2/DictionaryEnumerator<System.Object,System.Object>" } },
  2186. { "pid": 1, "tid": 26, "ts": 2614398.193359375, "dur": 1117.900013923645, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.117900013923645, "detail": "System.Collections.Generic.DictionaryKeyCollectionDebugView`2<System.Object,System.Object>" } },
  2187. { "pid": 1, "tid": 26, "ts": 2615519.287109375, "dur": 718.5999751091003, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7185999751091003, "detail": "System.Collections.Generic.DictionaryValueCollectionDebugView`2<System.Object,System.Object>" } },
  2188. { "pid": 1, "tid": 26, "ts": 2616239.990234375, "dur": 28868.499755859375, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 28.868499755859375, "detail": "System.Collections.Generic.Dictionary`2<System.Int32,System.Object>" } },
  2189. { "pid": 1, "tid": 26, "ts": 2645109.86328125, "dur": 18548.799514770508, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 18.548799514770508, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Int32>" } },
  2190. { "pid": 1, "tid": 26, "ts": 2663661.376953125, "dur": 20790.3995513916, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 20.7903995513916, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Object>" } },
  2191. { "pid": 1, "tid": 26, "ts": 2684453.857421875, "dur": 35908.599853515625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 35.908599853515625, "detail": "System.Collections.Generic.Dictionary`2<System.Object,System.Resources.ResourceLocator>" } },
  2192. { "pid": 1, "tid": 26, "ts": 2720364.74609375, "dur": 367.1000003814697, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.3671000003814697, "detail": "System.EmptyArray`1<System.Byte>" } },
  2193. { "pid": 1, "tid": 26, "ts": 2720734.375, "dur": 1610.200047492981, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.610200047492981, "detail": "System.EmptyArray`1<System.Char>" } },
  2194. { "pid": 1, "tid": 26, "ts": 2722983.88671875, "dur": 907.2999954223633, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9072999954223633, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>>" } },
  2195. { "pid": 1, "tid": 26, "ts": 2723893.5546875, "dur": 927.6999831199646, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9276999831199646, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>>" } },
  2196. { "pid": 1, "tid": 26, "ts": 2724823.974609375, "dur": 1090.1999473571777, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0901999473571777, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>>" } },
  2197. { "pid": 1, "tid": 26, "ts": 2725917.724609375, "dur": 988.4999990463257, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9884999990463257, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>>" } },
  2198. { "pid": 1, "tid": 26, "ts": 2726909.1796875, "dur": 1010.9000205993652, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0109000205993652, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  2199. { "pid": 1, "tid": 26, "ts": 2727922.36328125, "dur": 969.6000218391418, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9696000218391418, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>" } },
  2200. { "pid": 1, "tid": 26, "ts": 2728895.5078125, "dur": 1069.3000555038452, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0693000555038452, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>" } },
  2201. { "pid": 1, "tid": 26, "ts": 2729968.017578125, "dur": 943.4999823570251, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9434999823570251, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>" } },
  2202. { "pid": 1, "tid": 26, "ts": 2730914.0625, "dur": 962.7000093460083, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9627000093460083, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>" } },
  2203. { "pid": 1, "tid": 26, "ts": 2731879.638671875, "dur": 1282.8999757766724, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2828999757766724, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Generic.HashSet`1/Slot<System.Object>>" } },
  2204. { "pid": 1, "tid": 26, "ts": 2733164.306640625, "dur": 886.2000107765198, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8862000107765198, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Rendering.BatchVisibility>" } },
  2205. { "pid": 1, "tid": 26, "ts": 2734052.734375, "dur": 1127.9000043869019, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1279000043869019, "detail": "System.Array/EmptyInternalEnumerator`1<System.Boolean>" } },
  2206. { "pid": 1, "tid": 26, "ts": 2735182.6171875, "dur": 852.9000282287598, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8529000282287598, "detail": "System.Array/EmptyInternalEnumerator`1<System.Byte>" } },
  2207. { "pid": 1, "tid": 26, "ts": 2736037.59765625, "dur": 819.9999928474426, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8199999928474426, "detail": "System.Array/EmptyInternalEnumerator`1<System.Threading.CancellationTokenRegistration>" } },
  2208. { "pid": 1, "tid": 26, "ts": 2736859.619140625, "dur": 2930.299997329712, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.930299997329712, "detail": "System.Array/EmptyInternalEnumerator`1<System.Char>" } },
  2209. { "pid": 1, "tid": 26, "ts": 2739792.724609375, "dur": 866.5000200271606, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8665000200271606, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Color32>" } },
  2210. { "pid": 1, "tid": 26, "ts": 2740661.62109375, "dur": 744.7999715805054, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7447999715805054, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.ColorBlock>" } },
  2211. { "pid": 1, "tid": 26, "ts": 2741410.400390625, "dur": 1004.4000148773193, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0044000148773193, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.ContactPoint>" } },
  2212. { "pid": 1, "tid": 26, "ts": 2742417.236328125, "dur": 767.1999931335449, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7671999931335449, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>" } },
  2213. { "pid": 1, "tid": 26, "ts": 2743186.5234375, "dur": 915.4999852180481, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9154999852180481, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
  2214. { "pid": 1, "tid": 26, "ts": 2744103.759765625, "dur": 822.8999972343445, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8228999972343445, "detail": "System.Array/EmptyInternalEnumerator`1<System.DateTime>" } },
  2215. { "pid": 1, "tid": 26, "ts": 2744928.466796875, "dur": 845.0000286102295, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8450000286102295, "detail": "System.Array/EmptyInternalEnumerator`1<System.Decimal>" } },
  2216. { "pid": 1, "tid": 26, "ts": 2745776.3671875, "dur": 856.1000227928162, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8561000227928162, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.DictionaryEntry>" } },
  2217. { "pid": 1, "tid": 26, "ts": 2746634.033203125, "dur": 819.599986076355, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.819599986076355, "detail": "System.Array/EmptyInternalEnumerator`1<System.Double>" } },
  2218. { "pid": 1, "tid": 26, "ts": 2747455.810546875, "dur": 821.6000199317932, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8216000199317932, "detail": "System.Array/EmptyInternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
  2219. { "pid": 1, "tid": 26, "ts": 2748278.3203125, "dur": 813.7999773025513, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8137999773025513, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int16>" } },
  2220. { "pid": 1, "tid": 26, "ts": 2749093.994140625, "dur": 829.200029373169, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.829200029373169, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int32>" } },
  2221. { "pid": 1, "tid": 26, "ts": 2749924.8046875, "dur": 887.8999948501587, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8878999948501587, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int32Enum>" } },
  2222. { "pid": 1, "tid": 26, "ts": 2750813.96484375, "dur": 894.4000005722046, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8944000005722046, "detail": "System.Array/EmptyInternalEnumerator`1<System.Int64>" } },
  2223. { "pid": 1, "tid": 26, "ts": 2751709.9609375, "dur": 780.7000279426575, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7807000279426575, "detail": "System.Array/EmptyInternalEnumerator`1<System.IntPtr>" } },
  2224. { "pid": 1, "tid": 26, "ts": 2752493.896484375, "dur": 787.9999876022339, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7879999876022339, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
  2225. { "pid": 1, "tid": 26, "ts": 2753284.1796875, "dur": 932.200014591217, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.932200014591217, "detail": "System.Array/EmptyInternalEnumerator`1<System.Globalization.InternalEncodingDataItem>" } },
  2226. { "pid": 1, "tid": 26, "ts": 2754219.970703125, "dur": 963.100016117096, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.963100016117096, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Keyframe>" } },
  2227. { "pid": 1, "tid": 26, "ts": 2755189.208984375, "dur": 1322.700023651123, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.322700023651123, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
  2228. { "pid": 1, "tid": 26, "ts": 2756514.404296875, "dur": 854.0999889373779, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8540999889373779, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.Navigation>" } },
  2229. { "pid": 1, "tid": 26, "ts": 2757370.849609375, "dur": 798.0999946594238, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7980999946594238, "detail": "System.Array/EmptyInternalEnumerator`1<System.Object>" } },
  2230. { "pid": 1, "tid": 26, "ts": 2758170.8984375, "dur": 972.9999899864197, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9729999899864197, "detail": "System.Array/EmptyInternalEnumerator`1<System.Reflection.ParameterModifier>" } },
  2231. { "pid": 1, "tid": 26, "ts": 2759145.751953125, "dur": 915.6000018119812, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9156000018119812, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Plane>" } },
  2232. { "pid": 1, "tid": 26, "ts": 2760063.232421875, "dur": 815.9000277519226, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8159000277519226, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Playables.PlayableBinding>" } },
  2233. { "pid": 1, "tid": 26, "ts": 2760880.859375, "dur": 832.8999876976013, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8328999876976013, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>" } },
  2234. { "pid": 1, "tid": 26, "ts": 2761716.30859375, "dur": 804.6000003814697, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8046000003814697, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit>" } },
  2235. { "pid": 1, "tid": 26, "ts": 2762522.94921875, "dur": 1081.5999507904053, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0815999507904053, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.RaycastHit2D>" } },
  2236. { "pid": 1, "tid": 26, "ts": 2763607.177734375, "dur": 858.299970626831, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.858299970626831, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>" } },
  2237. { "pid": 1, "tid": 26, "ts": 2764467.28515625, "dur": 717.0000076293945, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7170000076293945, "detail": "System.Array/EmptyInternalEnumerator`1<System.Resources.ResourceLocator>" } },
  2238. { "pid": 1, "tid": 26, "ts": 2765185.546875, "dur": 751.9000172615051, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7519000172615051, "detail": "System.Array/EmptyInternalEnumerator`1<System.SByte>" } },
  2239. { "pid": 1, "tid": 26, "ts": 2765940.185546875, "dur": 1170.5000400543213, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1705000400543213, "detail": "System.Array/EmptyInternalEnumerator`1<System.Single>" } },
  2240. { "pid": 1, "tid": 26, "ts": 2767112.3046875, "dur": 816.6000247001648, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8166000247001648, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UI.SpriteState>" } },
  2241. { "pid": 1, "tid": 26, "ts": 2767930.6640625, "dur": 1089.400053024292, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.089400053024292, "detail": "System.Array/EmptyInternalEnumerator`1<System.TimeSpan>" } },
  2242. { "pid": 1, "tid": 26, "ts": 2769021.97265625, "dur": 986.9999885559082, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9869999885559082, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UICharInfo>" } },
  2243. { "pid": 1, "tid": 26, "ts": 2770011.23046875, "dur": 729.3999791145325, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7293999791145325, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UILineInfo>" } },
  2244. { "pid": 1, "tid": 26, "ts": 2770741.69921875, "dur": 1267.899990081787, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.267899990081787, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UIVertex>" } },
  2245. { "pid": 1, "tid": 26, "ts": 2772011.23046875, "dur": 814.7000074386597, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8147000074386597, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt16>" } },
  2246. { "pid": 1, "tid": 26, "ts": 2772827.63671875, "dur": 828.4000158309937, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8284000158309937, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt32>" } },
  2247. { "pid": 1, "tid": 26, "ts": 2773657.470703125, "dur": 1089.2000198364258, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.0892000198364258, "detail": "System.Array/EmptyInternalEnumerator`1<System.UInt64>" } },
  2248. { "pid": 1, "tid": 26, "ts": 2774749.0234375, "dur": 943.4000253677368, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9434000253677368, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector2>" } },
  2249. { "pid": 1, "tid": 26, "ts": 2775694.82421875, "dur": 760.3999972343445, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7603999972343445, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector3>" } },
  2250. { "pid": 1, "tid": 26, "ts": 2776457.51953125, "dur": 829.200029373169, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.829200029373169, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Vector4>" } },
  2251. { "pid": 1, "tid": 26, "ts": 2777289.306640625, "dur": 751.9999742507935, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7519999742507935, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  2252. { "pid": 1, "tid": 26, "ts": 2778042.724609375, "dur": 779.20001745224, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.77920001745224, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.Camera/RenderRequest>" } },
  2253. { "pid": 1, "tid": 26, "ts": 2778823.974609375, "dur": 789.0999913215637, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7890999913215637, "detail": "System.Array/EmptyInternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>" } },
  2254. { "pid": 1, "tid": 26, "ts": 2779614.501953125, "dur": 809.0999722480774, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8090999722480774, "detail": "System.Array/EmptyInternalEnumerator`1<System.Collections.Hashtable/bucket>" } },
  2255. { "pid": 1, "tid": 26, "ts": 2780425.537109375, "dur": 812.6999735832214, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8126999735832214, "detail": "System.Array/EmptyInternalEnumerator`1<System.ParameterizedStrings/FormatParam>" } },
  2256. { "pid": 1, "tid": 26, "ts": 2781239.990234375, "dur": 829.5000195503235, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8295000195503235, "detail": "System.Array/EmptyInternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
  2257. { "pid": 1, "tid": 26, "ts": 2782071.2890625, "dur": 814.9999976158142, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8149999976158142, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>" } },
  2258. { "pid": 1, "tid": 26, "ts": 2782888.671875, "dur": 854.0999889373779, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8540999889373779, "detail": "System.Array/EmptyInternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  2259. { "pid": 1, "tid": 26, "ts": 2783758.7890625, "dur": 1348.3999967575073, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3483999967575073, "detail": "System.Collections.Generic.EnumEqualityComparer`1<System.Int32Enum>" } },
  2260. { "pid": 1, "tid": 26, "ts": 2785110.107421875, "dur": 1970.1000452041626, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9701000452041626, "detail": "System.Collections.Generic.List`1/Enumerator<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  2261. { "pid": 1, "tid": 26, "ts": 2787082.51953125, "dur": 4651.100158691406, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.651100158691406, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Rendering.BatchVisibility>" } },
  2262. { "pid": 1, "tid": 26, "ts": 2791735.83984375, "dur": 4578.199863433838, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 4.578199863433838, "detail": "Unity.Collections.NativeArray`1/Enumerator<System.Byte>" } },
  2263. { "pid": 1, "tid": 26, "ts": 2796317.626953125, "dur": 2037.1999740600586, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.0371999740600586, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Color32>" } },
  2264. { "pid": 1, "tid": 26, "ts": 2798356.4453125, "dur": 1712.399959564209, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.712399959564209, "detail": "System.Collections.Generic.List`1/Enumerator<System.Int32>" } },
  2265. { "pid": 1, "tid": 26, "ts": 2800070.556640625, "dur": 1252.7999877929688, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2527999877929688, "detail": "Unity.Collections.NativeArray`1/Enumerator<System.Int32>" } },
  2266. { "pid": 1, "tid": 26, "ts": 2801325.68359375, "dur": 1808.6999654769897, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8086999654769897, "detail": "System.Collections.Generic.List`1/Enumerator<System.Int32Enum>" } },
  2267. { "pid": 1, "tid": 26, "ts": 2803137.451171875, "dur": 1303.6999702453613, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3036999702453613, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
  2268. { "pid": 1, "tid": 26, "ts": 2804444.3359375, "dur": 1874.3000030517578, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8743000030517578, "detail": "System.Collections.Generic.HashSet`1/Enumerator<System.Object>" } },
  2269. { "pid": 1, "tid": 26, "ts": 2806320.80078125, "dur": 2683.9001178741455, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6839001178741455, "detail": "System.Collections.Generic.LinkedList`1/Enumerator<System.Object>" } },
  2270. { "pid": 1, "tid": 26, "ts": 2809006.591796875, "dur": 1698.5000371932983, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6985000371932983, "detail": "System.Collections.Generic.List`1/Enumerator<System.Object>" } },
  2271. { "pid": 1, "tid": 26, "ts": 2810706.787109375, "dur": 2240.299940109253, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.240299940109253, "detail": "System.Collections.Generic.Stack`1/Enumerator<System.Object>" } },
  2272. { "pid": 1, "tid": 26, "ts": 2812948.974609375, "dur": 1267.0999765396118, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2670999765396118, "detail": "Unity.Collections.NativeArray`1/Enumerator<UnityEngine.Plane>" } },
  2273. { "pid": 1, "tid": 26, "ts": 2814218.505859375, "dur": 1753.2999515533447, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7532999515533447, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.EventSystems.RaycastResult>" } },
  2274. { "pid": 1, "tid": 26, "ts": 2815975.09765625, "dur": 1725.499987602234, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7254999876022339, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UICharInfo>" } },
  2275. { "pid": 1, "tid": 26, "ts": 2817702.392578125, "dur": 1793.0999994277954, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7930999994277954, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UILineInfo>" } },
  2276. { "pid": 1, "tid": 26, "ts": 2819497.55859375, "dur": 2677.500009536743, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.677500009536743, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UIVertex>" } },
  2277. { "pid": 1, "tid": 26, "ts": 2822176.7578125, "dur": 2813.800096511841, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.813800096511841, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector3>" } },
  2278. { "pid": 1, "tid": 26, "ts": 2824992.67578125, "dur": 1870.0000047683716, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.8700000047683716, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Vector4>" } },
  2279. { "pid": 1, "tid": 26, "ts": 2826864.990234375, "dur": 17040.10009765625, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.04010009765625, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  2280. { "pid": 1, "tid": 26, "ts": 2843908.447265625, "dur": 33315.20080566406, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 33.31520080566406, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.Camera/RenderRequest>" } },
  2281. { "pid": 1, "tid": 26, "ts": 2877228.759765625, "dur": 2004.4000148773193, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.0044000148773193, "detail": "System.Collections.Generic.List`1/Enumerator<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  2282. { "pid": 1, "tid": 26, "ts": 2879235.595703125, "dur": 3710.900068283081, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.710900068283081, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Int32,System.Object>" } },
  2283. { "pid": 1, "tid": 26, "ts": 2882948.2421875, "dur": 1759.1999769210815, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7591999769210815, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Int32,System.Object>" } },
  2284. { "pid": 1, "tid": 26, "ts": 2884709.228515625, "dur": 3664.599895477295, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.664599895477295, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Int32>" } },
  2285. { "pid": 1, "tid": 26, "ts": 2888375.9765625, "dur": 1881.600022315979, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.881600022315979, "detail": "System.Collections.Generic.Dictionary`2/ValueCollection/Enumerator<System.Object,System.Int32>" } },
  2286. { "pid": 1, "tid": 26, "ts": 2890259.27734375, "dur": 3559.6001148223877, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.5596001148223877, "detail": "System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>" } },
  2287. { "pid": 1, "tid": 26, "ts": 2893834.47265625, "dur": 58737.40005493164, "ph": "X", "name": "Generics1.cpp", "args": { "durationMS": 58.73740005493164, "detail": "" } },
  2288. { "pid": 1, "tid": 26, "ts": 2952589.599609375, "dur": 1210.8999490737915, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.2108999490737915, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceLocator>" } },
  2289. { "pid": 1, "tid": 26, "ts": 2953802.24609375, "dur": 680.5999875068665, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6805999875068665, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.Resources.ResourceSet>" } },
  2290. { "pid": 1, "tid": 26, "ts": 2954484.619140625, "dur": 694.8999762535095, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6948999762535095, "detail": "System.Collections.Generic.Dictionary`2<System.String,Mono.Globalization.Unicode.SimpleCollator>" } },
  2291. { "pid": 1, "tid": 26, "ts": 2955181.15234375, "dur": 654.5000076293945, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6545000076293945, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.String>" } },
  2292. { "pid": 1, "tid": 26, "ts": 2955837.40234375, "dur": 805.4999709129333, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.8054999709129333, "detail": "System.Collections.Generic.Dictionary`2<System.String,System.UriParser>" } },
  2293. { "pid": 1, "tid": 26, "ts": 2956645.263671875, "dur": 938.0000233650208, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9380000233650208, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.AttributeUsageAttribute>" } },
  2294. { "pid": 1, "tid": 26, "ts": 2957585.693359375, "dur": 750.4000067710876, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7504000067710876, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.Runtime.Serialization.Formatters.Binary.TypeInformation>" } },
  2295. { "pid": 1, "tid": 26, "ts": 2958337.646484375, "dur": 1025.5000591278076, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 1.0255000591278076, "detail": "System.Collections.Generic.Dictionary`2<System.Type,System.MonoCustomAttrs/AttributeInfo>" } },
  2296. { "pid": 1, "tid": 26, "ts": 2959599.609375, "dur": 963.2999897003174, "ph": "X", "name": "Il2CppGenericComDefinitions4.cpp", "args": { "durationMS": 0.9632999897003174, "detail": "" } },
  2297. { "pid": 1, "tid": 26, "ts": 2961308.349609375, "dur": 407.09999203681946, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.40709999203681946, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
  2298. { "pid": 1, "tid": 26, "ts": 2962666.015625, "dur": 609.7000241279602, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.6097000241279602, "detail": "System.Collections.Generic.EqualityComparer`1<System.Resources.ResourceLocator>" } },
  2299. { "pid": 1, "tid": 26, "ts": 2964087.158203125, "dur": 497.5000023841858, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4975000023841858, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UIVertex>" } },
  2300. { "pid": 1, "tid": 26, "ts": 2964953.61328125, "dur": 534.6999764442444, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5346999764442444, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  2301. { "pid": 1, "tid": 26, "ts": 2965721.19140625, "dur": 402.0000100135803, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4020000100135803, "detail": "System.Collections.Generic.EqualityComparer`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  2302. { "pid": 1, "tid": 26, "ts": 2969264.892578125, "dur": 797.3999977111816, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.7973999977111816, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.ColorBlock>" } },
  2303. { "pid": 1, "tid": 26, "ts": 2970145.99609375, "dur": 471.89998626708984, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47189998626708984, "detail": "System.Collections.Generic.GenericEqualityComparer`1<UnityEngine.UI.Navigation>" } },
  2304. { "pid": 1, "tid": 26, "ts": 2971519.53125, "dur": 550.599992275238, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.550599992275238, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.IClippable>" } },
  2305. { "pid": 1, "tid": 26, "ts": 2972073.486328125, "dur": 3297.600030899048, "ph": "X", "name": "Il2CppGenericComDefinitions6.cpp", "args": { "durationMS": 3.297600030899048, "detail": "" } },
  2306. { "pid": 1, "tid": 26, "ts": 2975389.6484375, "dur": 588.699996471405, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.588699996471405, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.MaskableGraphic>" } },
  2307. { "pid": 1, "tid": 26, "ts": 2975979.98046875, "dur": 511.79999113082886, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5117999911308289, "detail": "System.Collections.Generic.HashSet`1<System.Object>" } },
  2308. { "pid": 1, "tid": 26, "ts": 2976493.65234375, "dur": 542.6999926567078, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5426999926567078, "detail": "System.Collections.Generic.HashSet`1<UnityEngine.UI.Text>" } },
  2309. { "pid": 1, "tid": 26, "ts": 2984204.1015625, "dur": 919.3999767303467, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.9193999767303467, "detail": "System.Collections.Generic.ICollection`1<System.Text.EncodingProvider>" } },
  2310. { "pid": 1, "tid": 26, "ts": 2985125.9765625, "dur": 385.19999384880066, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.38519999384880066, "detail": "System.Collections.Generic.ICollection`1<System.Enum>" } },
  2311. { "pid": 1, "tid": 26, "ts": 2985513.427734375, "dur": 352.49999165534973, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.35249999165534973, "detail": "System.Collections.Generic.ICollection`1<System.Runtime.CompilerServices.Ephemeron>" } },
  2312. { "pid": 1, "tid": 26, "ts": 2988719.970703125, "dur": 556.5999746322632, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5565999746322632, "detail": "System.Collections.Generic.ICollection`1<System.Threading.IThreadPoolWorkItem>" } },
  2313. { "pid": 1, "tid": 26, "ts": 2989590.33203125, "dur": 491.8000102043152, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4918000102043152, "detail": "System.Collections.Generic.ICollection`1<System.Globalization.InternalCodePageDataItem>" } },
  2314. { "pid": 1, "tid": 26, "ts": 2993985.3515625, "dur": 436.599999666214, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.436599999666214, "detail": "System.Collections.Generic.ICollection`1<System.Resources.ResourceLocator>" } },
  2315. { "pid": 1, "tid": 26, "ts": 2996127.44140625, "dur": 445.499986410141, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.445499986410141, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.UIVertex>" } },
  2316. { "pid": 1, "tid": 26, "ts": 2997064.208984375, "dur": 462.9000127315521, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4629000127315521, "detail": "System.Collections.Generic.ICollection`1<System.Threading.WaitHandle>" } },
  2317. { "pid": 1, "tid": 26, "ts": 2998203.857421875, "dur": 351.500004529953, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.351500004529953, "detail": "System.Collections.Generic.ICollection`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  2318. { "pid": 1, "tid": 26, "ts": 2998827.63671875, "dur": 348.69998693466187, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.34869998693466187, "detail": "System.Collections.Generic.ICollection`1<System.Collections.Hashtable/bucket>" } },
  2319. { "pid": 1, "tid": 26, "ts": 2999771.97265625, "dur": 477.80001163482666, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.47780001163482666, "detail": "System.Collections.Generic.ICollection`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
  2320. { "pid": 1, "tid": 26, "ts": 3014178.7109375, "dur": 392.59999990463257, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.39259999990463257, "detail": "System.IEquatable`1<UnityEngine.AnimationCurve>" } },
  2321. { "pid": 1, "tid": 26, "ts": 3019150.390625, "dur": 6304.500102996826, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 6.304500102996826, "detail": "System.Collections.Generic.IList`1<System.Collections.Generic.IList`1<System.Globalization.HebrewNumber/HS>>" } },
  2322. { "pid": 1, "tid": 26, "ts": 3032180.419921875, "dur": 366.100013256073, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.366100013256073, "detail": "System.Collections.Generic.IList`1<System.Globalization.InternalCodePageDataItem>" } },
  2323. { "pid": 1, "tid": 26, "ts": 3037719.23828125, "dur": 525.6999731063843, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.5256999731063843, "detail": "System.Collections.Generic.IList`1<UnityEngine.UIVertex>" } },
  2324. { "pid": 1, "tid": 26, "ts": 3038775.87890625, "dur": 457.5999975204468, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.4575999975204468, "detail": "System.Collections.Generic.IList`1<System.Threading.WaitHandle>" } },
  2325. { "pid": 1, "tid": 26, "ts": 3039770.5078125, "dur": 368.4000074863434, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3684000074863434, "detail": "System.Collections.Generic.IList`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  2326. { "pid": 1, "tid": 26, "ts": 3040401.611328125, "dur": 356.2999963760376, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.3562999963760376, "detail": "System.Collections.Generic.IList`1<System.Collections.Hashtable/bucket>" } },
  2327. { "pid": 1, "tid": 26, "ts": 3041295.654296875, "dur": 370.70000171661377, "ph": "X", "name": "WriteGenericComDefinition", "args": { "durationMS": 0.37070000171661377, "detail": "System.Collections.Generic.IList`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
  2328. { "pid": 1, "tid": 26, "ts": 3055765.625, "dur": 441.19998812675476, "ph": "X", "name": "Il2CppGenericComDefinitions7.cpp", "args": { "durationMS": 0.44119998812675476, "detail": "" } },
  2329. { "pid": 1, "tid": 26, "ts": 3056220.458984375, "dur": 86922.0962524414, "ph": "X", "name": "Idle", "args": { "durationMS": 86.9220962524414, "detail": "" } },
  2330. { "pid": 1, "tid": 27, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2331. { "pid": 1, "tid": 27, "ts": 1319672.7294921875, "dur": 11763.799667358398, "ph": "X", "name": "Idle", "args": { "durationMS": 11.763799667358398, "detail": "" } },
  2332. { "pid": 1, "tid": 27, "ts": 1428725.4638671875, "dur": 3517.2998905181885, "ph": "X", "name": "Write Assembly", "args": { "durationMS": 3.5172998905181885, "detail": "System.Xml" } },
  2333. { "pid": 1, "tid": 27, "ts": 1433405.2734375, "dur": 185644.59228515625, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 185.64459228515625, "detail": "mscorlib" } },
  2334. { "pid": 1, "tid": 27, "ts": 1434943.4814453125, "dur": 184105.60607910156, "ph": "X", "name": "mscorlib_Attr.cpp", "args": { "durationMS": 184.10560607910156, "detail": "" } },
  2335. { "pid": 1, "tid": 27, "ts": 1620529.78515625, "dur": 26164.098739624023, "ph": "X", "name": "Write Attributes", "args": { "durationMS": 26.164098739624023, "detail": "UnityEngine.IMGUIModule" } },
  2336. { "pid": 1, "tid": 27, "ts": 1620549.6826171875, "dur": 26143.299102783203, "ph": "X", "name": "UnityEngine.IMGUIModule_Attr.cpp", "args": { "durationMS": 26.143299102783203, "detail": "" } },
  2337. { "pid": 1, "tid": 27, "ts": 1653994.7509765625, "dur": 2190.9000873565674, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1909000873565674, "detail": "<Module>" } },
  2338. { "pid": 1, "tid": 27, "ts": 1656197.1435546875, "dur": 15456.399917602539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.456399917602539, "detail": "UnityEngine.Physics2D" } },
  2339. { "pid": 1, "tid": 27, "ts": 1671655.029296875, "dur": 47199.90158081055, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 47.19990158081055, "detail": "UnityEngine.RaycastHit2D" } },
  2340. { "pid": 1, "tid": 27, "ts": 1718954.833984375, "dur": 11666.399955749512, "ph": "X", "name": "UnityEngine.Physics2DModule.cpp", "args": { "durationMS": 11.666399955749512, "detail": "" } },
  2341. { "pid": 1, "tid": 27, "ts": 1730758.9111328125, "dur": 1609.3000173568726, "ph": "X", "name": "UnityEngine.cpp", "args": { "durationMS": 1.6093000173568726, "detail": "" } },
  2342. { "pid": 1, "tid": 27, "ts": 1732467.8955078125, "dur": 1424.399971961975, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.424399971961975, "detail": "UnityEngine.Animations.AnimationClipPlayable" } },
  2343. { "pid": 1, "tid": 27, "ts": 1733894.775390625, "dur": 5946.899890899658, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.946899890899658, "detail": "UnityEngine.AnimationEvent" } },
  2344. { "pid": 1, "tid": 27, "ts": 1739919.921875, "dur": 2477.4999618530273, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.4774999618530273, "detail": "UnityEngine.Animations.AnimationLayerMixerPlayable" } },
  2345. { "pid": 1, "tid": 27, "ts": 1742399.658203125, "dur": 2077.6000022888184, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0776000022888184, "detail": "UnityEngine.Animations.AnimationMixerPlayable" } },
  2346. { "pid": 1, "tid": 27, "ts": 1744479.6142578125, "dur": 1527.7999639511108, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5277999639511108, "detail": "UnityEngine.Animations.AnimationMotionXToDeltaPlayable" } },
  2347. { "pid": 1, "tid": 27, "ts": 1746009.033203125, "dur": 14078.00006866455, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 14.07800006866455, "detail": "UnityEngine.Animations.AnimationOffsetPlayable" } },
  2348. { "pid": 1, "tid": 27, "ts": 1760113.28125, "dur": 1591.599941253662, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.591599941253662, "detail": "UnityEngine.Animations.AnimationPosePlayable" } },
  2349. { "pid": 1, "tid": 27, "ts": 1761705.810546875, "dur": 1334.4000577926636, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3344000577926636, "detail": "UnityEngine.Animations.AnimationRemoveScalePlayable" } },
  2350. { "pid": 1, "tid": 27, "ts": 1763041.015625, "dur": 1627.5999546051025, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6275999546051025, "detail": "UnityEngine.Animations.AnimationScriptPlayable" } },
  2351. { "pid": 1, "tid": 27, "ts": 1764719.970703125, "dur": 389.60000872612, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.38960000872612, "detail": "UnityEngine.Animator" } },
  2352. { "pid": 1, "tid": 27, "ts": 1765125.9765625, "dur": 1802.39999294281, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.80239999294281, "detail": "UnityEngine.Animations.AnimatorControllerPlayable" } },
  2353. { "pid": 1, "tid": 27, "ts": 1766929.8095703125, "dur": 333.40001106262207, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33340001106262207, "detail": "UnityEngine.AnimatorOverrideController" } },
  2354. { "pid": 1, "tid": 27, "ts": 1767305.17578125, "dur": 555.5999875068665, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5555999875068665, "detail": "UnityEngine.AnimatorTransitionInfo" } },
  2355. { "pid": 1, "tid": 27, "ts": 1767861.6943359375, "dur": 5209.89990234375, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.20989990234375, "detail": "UnityEngine.HumanBone" } },
  2356. { "pid": 1, "tid": 27, "ts": 1773123.53515625, "dur": 455.79999685287476, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.45579999685287476, "detail": "UnityEngine.SkeletonBone" } },
  2357. { "pid": 1, "tid": 27, "ts": 1773580.322265625, "dur": 1019.5000171661377, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0195000171661377, "detail": "UnityEngine.StateMachineBehaviour" } },
  2358. { "pid": 1, "tid": 27, "ts": 1774600.341796875, "dur": 18513.500213623047, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.513500213623047, "detail": "UnityEngine.AnimatorOverrideController/OnOverrideControllerDirtyCallback" } },
  2359. { "pid": 1, "tid": 27, "ts": 1793116.5771484375, "dur": 9914.899826049805, "ph": "X", "name": "UnityEngine.AnimationModule.cpp", "args": { "durationMS": 9.914899826049805, "detail": "" } },
  2360. { "pid": 1, "tid": 27, "ts": 1803164.9169921875, "dur": 6868.899822235107, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.868899822235107, "detail": "UnityEngine.Event" } },
  2361. { "pid": 1, "tid": 27, "ts": 1810069.9462890625, "dur": 4438.000202178955, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.438000202178955, "detail": "UnityEngine.GUI" } },
  2362. { "pid": 1, "tid": 27, "ts": 1814508.7890625, "dur": 2038.3999347686768, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.0383999347686768, "detail": "UnityEngine.GUIContent" } },
  2363. { "pid": 1, "tid": 27, "ts": 1816548.095703125, "dur": 1019.9999809265137, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0199999809265137, "detail": "UnityEngine.GUILayout" } },
  2364. { "pid": 1, "tid": 27, "ts": 1817569.3359375, "dur": 7206.399917602539, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.206399917602539, "detail": "UnityEngine.GUILayoutEntry" } },
  2365. { "pid": 1, "tid": 27, "ts": 1824776.3671875, "dur": 25395.90072631836, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 25.39590072631836, "detail": "UnityEngine.GUILayoutGroup" } },
  2366. { "pid": 1, "tid": 27, "ts": 1850470.21484375, "dur": 11171.699523925781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.171699523925781, "detail": "UnityEngine.GUILayoutUtility" } },
  2367. { "pid": 1, "tid": 27, "ts": 1861643.310546875, "dur": 3757.4000358581543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.7574000358581543, "detail": "UnityEngine.GUIScrollGroup" } },
  2368. { "pid": 1, "tid": 27, "ts": 1865718.75, "dur": 18186.100006103516, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.186100006103516, "detail": "UnityEngine.GUISkin" } },
  2369. { "pid": 1, "tid": 27, "ts": 1883906.494140625, "dur": 7785.299777984619, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.785299777984619, "detail": "UnityEngine.GUIStyle" } },
  2370. { "pid": 1, "tid": 27, "ts": 1891692.3828125, "dur": 1620.2000379562378, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6202000379562378, "detail": "UnityEngine.GUIStyleState" } },
  2371. { "pid": 1, "tid": 27, "ts": 1893313.96484375, "dur": 870.2999949455261, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8702999949455261, "detail": "UnityEngine.GUITargetAttribute" } },
  2372. { "pid": 1, "tid": 27, "ts": 1894185.546875, "dur": 7428.299903869629, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.428299903869629, "detail": "UnityEngine.GUIUtility" } },
  2373. { "pid": 1, "tid": 27, "ts": 1901615.1123046875, "dur": 1436.6999864578247, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4366999864578247, "detail": "UnityEngine.GUIWordWrapSizer" } },
  2374. { "pid": 1, "tid": 27, "ts": 1903544.5556640625, "dur": 444.9999928474426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4449999928474426, "detail": "UnityEngine.TextEditor" } },
  2375. { "pid": 1, "tid": 27, "ts": 1903990.3564453125, "dur": 619.5999979972839, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6195999979972839, "detail": "UnityEngine.GUI/WindowFunction" } },
  2376. { "pid": 1, "tid": 27, "ts": 1904630.9814453125, "dur": 1773.900032043457, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.773900032043457, "detail": "UnityEngine.GUILayoutUtility/LayoutCache" } },
  2377. { "pid": 1, "tid": 27, "ts": 1906405.6396484375, "dur": 475.19999742507935, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47519999742507935, "detail": "UnityEngine.GUILayoutUtility/LayoutCacheState" } },
  2378. { "pid": 1, "tid": 27, "ts": 1906881.591796875, "dur": 465.60001373291016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.46560001373291016, "detail": "UnityEngine.GUISkin/SkinChangedDelegate" } },
  2379. { "pid": 1, "tid": 27, "ts": 1907365.234375, "dur": 25675.600051879883, "ph": "X", "name": "UnityEngine.IMGUIModule.cpp", "args": { "durationMS": 25.675600051879883, "detail": "" } },
  2380. { "pid": 1, "tid": 27, "ts": 1933068.4814453125, "dur": 29627.199172973633, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 29.627199172973633, "detail": "UnityEngine.UI.Selectable" } },
  2381. { "pid": 1, "tid": 27, "ts": 1962696.6552734375, "dur": 785.099983215332, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.785099983215332, "detail": "UnityEngine.UI.SetPropertyUtility" } },
  2382. { "pid": 1, "tid": 27, "ts": 1963483.154296875, "dur": 4497.799873352051, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.497799873352051, "detail": "UnityEngine.UI.Shadow" } },
  2383. { "pid": 1, "tid": 27, "ts": 1967981.93359375, "dur": 22296.40007019043, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 22.29640007019043, "detail": "UnityEngine.UI.Slider" } },
  2384. { "pid": 1, "tid": 27, "ts": 1990279.541015625, "dur": 2593.100070953369, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.593100070953369, "detail": "UnityEngine.UI.SpriteState" } },
  2385. { "pid": 1, "tid": 27, "ts": 1992874.0234375, "dur": 43454.097747802734, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 43.454097747802734, "detail": "UnityEngine.EventSystems.StandaloneInputModule" } },
  2386. { "pid": 1, "tid": 27, "ts": 2036328.857421875, "dur": 15588.600158691406, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 15.588600158691406, "detail": "UnityEngine.UI.StencilMaterial" } },
  2387. { "pid": 1, "tid": 27, "ts": 2051918.9453125, "dur": 16499.698638916016, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.499698638916016, "detail": "UnityEngine.UI.Text" } },
  2388. { "pid": 1, "tid": 27, "ts": 2068419.677734375, "dur": 5626.800060272217, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.626800060272217, "detail": "UnityEngine.UI.Toggle" } },
  2389. { "pid": 1, "tid": 27, "ts": 2074047.36328125, "dur": 7496.200084686279, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.496200084686279, "detail": "UnityEngine.UI.ToggleGroup" } },
  2390. { "pid": 1, "tid": 27, "ts": 2081544.43359375, "dur": 8980.400085449219, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.980400085449219, "detail": "UnityEngine.EventSystems.TouchInputModule" } },
  2391. { "pid": 1, "tid": 27, "ts": 2090525.87890625, "dur": 1305.5000305175781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.3055000305175781, "detail": "UnityEngine.EventSystems.UIBehaviour" } },
  2392. { "pid": 1, "tid": 27, "ts": 2091832.275390625, "dur": 10881.8998336792, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.8818998336792, "detail": "UnityEngine.UI.VertexHelper" } },
  2393. { "pid": 1, "tid": 27, "ts": 2102715.576171875, "dur": 801.5000224113464, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8015000224113464, "detail": "UnityEngine.UI.VerticalLayoutGroup" } },
  2394. { "pid": 1, "tid": 27, "ts": 2103538.0859375, "dur": 1544.100046157837, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.544100046157837, "detail": "UnityEngine.UI.Button/<OnFinishSubmit>d__9" } },
  2395. { "pid": 1, "tid": 27, "ts": 2105456.0546875, "dur": 2443.50004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.44350004196167, "detail": "UnityEngine.UI.DefaultControls/DefaultRuntimeFactory" } },
  2396. { "pid": 1, "tid": 27, "ts": 2108221.6796875, "dur": 2479.599952697754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.479599952697754, "detail": "UnityEngine.UI.Dropdown/<>c__DisplayClass62_0" } },
  2397. { "pid": 1, "tid": 27, "ts": 2110702.392578125, "dur": 719.2999720573425, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7192999720573425, "detail": "UnityEngine.UI.Dropdown/<DelayedDestroyDropdownList>d__74" } },
  2398. { "pid": 1, "tid": 27, "ts": 2111555.6640625, "dur": 1241.2999868392944, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2412999868392944, "detail": "UnityEngine.UI.Dropdown/DropdownItem" } },
  2399. { "pid": 1, "tid": 27, "ts": 2112798.33984375, "dur": 865.2999997138977, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8652999997138977, "detail": "UnityEngine.UI.Dropdown/OptionData" } },
  2400. { "pid": 1, "tid": 27, "ts": 2113665.771484375, "dur": 457.8000009059906, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4578000009059906, "detail": "UnityEngine.UI.Dropdown/OptionDataList" } },
  2401. { "pid": 1, "tid": 27, "ts": 2114125.732421875, "dur": 1133.4999799728394, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1334999799728394, "detail": "UnityEngine.EventSystems.EventTrigger/Entry" } },
  2402. { "pid": 1, "tid": 27, "ts": 2115393.798828125, "dur": 1139.799952507019, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.139799952507019, "detail": "UnityEngine.EventSystems.ExecuteEvents/<>c" } },
  2403. { "pid": 1, "tid": 27, "ts": 2116671.142578125, "dur": 1218.999981880188, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.218999981880188, "detail": "UnityEngine.UI.GraphicRaycaster/<>c" } },
  2404. { "pid": 1, "tid": 27, "ts": 2117961.42578125, "dur": 9414.09969329834, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 9.41409969329834, "detail": "UnityEngine.UI.InputField/<CaretBlink>d__161" } },
  2405. { "pid": 1, "tid": 27, "ts": 2127377.9296875, "dur": 2383.5999965667725, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3835999965667725, "detail": "UnityEngine.UI.InputField/<MouseDragOutsideRect>d__183" } },
  2406. { "pid": 1, "tid": 27, "ts": 2129933.59375, "dur": 638.8000249862671, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6388000249862671, "detail": "UnityEngine.UI.InputField/OnValidateInput" } },
  2407. { "pid": 1, "tid": 27, "ts": 2130687.98828125, "dur": 1621.6000318527222, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6216000318527222, "detail": "UnityEngine.UI.LayoutGroup/<DelayedSetDirty>d__56" } },
  2408. { "pid": 1, "tid": 27, "ts": 2132310.791015625, "dur": 1776.6000032424927, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7766000032424927, "detail": "UnityEngine.UI.LayoutRebuilder/<>c" } },
  2409. { "pid": 1, "tid": 27, "ts": 2134088.37890625, "dur": 1752.0999908447266, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7520999908447266, "detail": "UnityEngine.UI.LayoutUtility/<>c" } },
  2410. { "pid": 1, "tid": 27, "ts": 2135986.328125, "dur": 1110.700011253357, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.110700011253357, "detail": "UnityEngine.EventSystems.PhysicsRaycaster/RaycastHitComparer" } },
  2411. { "pid": 1, "tid": 27, "ts": 2137115.966796875, "dur": 2132.4000358581543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1324000358581543, "detail": "UnityEngine.EventSystems.PointerInputModule/ButtonState" } },
  2412. { "pid": 1, "tid": 27, "ts": 2139250.48828125, "dur": 476.79999470710754, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.47679999470710754, "detail": "UnityEngine.EventSystems.PointerInputModule/MouseButtonEventData" } },
  2413. { "pid": 1, "tid": 27, "ts": 2139729.00390625, "dur": 2075.900077819824, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.075900077819824, "detail": "UnityEngine.EventSystems.PointerInputModule/MouseState" } },
  2414. { "pid": 1, "tid": 27, "ts": 2141805.908203125, "dur": 2625.6000995635986, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6256000995635986, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllCallback" } },
  2415. { "pid": 1, "tid": 27, "ts": 2144432.373046875, "dur": 1019.4000005722046, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0194000005722046, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRayIntersectionAllNonAllocCallback" } },
  2416. { "pid": 1, "tid": 27, "ts": 2145452.392578125, "dur": 1039.199948310852, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.039199948310852, "detail": "UnityEngine.UI.ReflectionMethodsCache/GetRaycastNonAllocCallback" } },
  2417. { "pid": 1, "tid": 27, "ts": 2146492.431640625, "dur": 904.20001745224, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.90420001745224, "detail": "UnityEngine.UI.ReflectionMethodsCache/Raycast2DCallback" } },
  2418. { "pid": 1, "tid": 27, "ts": 2147397.94921875, "dur": 5118.800163269043, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.118800163269043, "detail": "UnityEngine.UI.ReflectionMethodsCache/Raycast3DCallback" } },
  2419. { "pid": 1, "tid": 27, "ts": 2152518.06640625, "dur": 1212.5999927520752, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2125999927520752, "detail": "UnityEngine.UI.ReflectionMethodsCache/RaycastAllCallback" } },
  2420. { "pid": 1, "tid": 27, "ts": 2153897.4609375, "dur": 3465.89994430542, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.46589994430542, "detail": "UnityEngine.UI.Scrollbar/<ClickRepeat>d__58" } },
  2421. { "pid": 1, "tid": 27, "ts": 2157871.09375, "dur": 375.900000333786, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.375900000333786, "detail": "UnityEngine.UI.ToggleGroup/<>c" } },
  2422. { "pid": 1, "tid": 27, "ts": 2158249.51171875, "dur": 83666.70227050781, "ph": "X", "name": "UnityEngine.UI3.cpp", "args": { "durationMS": 83.66670227050781, "detail": "" } },
  2423. { "pid": 1, "tid": 27, "ts": 2241936.03515625, "dur": 1174.8000383377075, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1748000383377075, "detail": "System.Runtime.InteropServices.Marshal" } },
  2424. { "pid": 1, "tid": 27, "ts": 2243222.65625, "dur": 686.2999796867371, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6862999796867371, "detail": "System.MarshalByRefObject" } },
  2425. { "pid": 1, "tid": 27, "ts": 2243910.15625, "dur": 500, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5, "detail": "System.Runtime.InteropServices.MarshalDirectiveException" } },
  2426. { "pid": 1, "tid": 27, "ts": 2244410.888671875, "dur": 1707.800030708313, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.707800030708313, "detail": "System.Math" } },
  2427. { "pid": 1, "tid": 27, "ts": 2246119.62890625, "dur": 490.9999966621399, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4909999966621399, "detail": "System.MemberAccessException" } },
  2428. { "pid": 1, "tid": 27, "ts": 2246611.572265625, "dur": 428.99999022483826, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.42899999022483826, "detail": "System.Reflection.MemberFilter" } },
  2429. { "pid": 1, "tid": 27, "ts": 2247041.748046875, "dur": 599.6000170707703, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5996000170707703, "detail": "System.Runtime.Serialization.MemberHolder" } },
  2430. { "pid": 1, "tid": 27, "ts": 2247641.845703125, "dur": 1584.2000246047974, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.5842000246047974, "detail": "System.Reflection.MemberInfo" } },
  2431. { "pid": 1, "tid": 27, "ts": 2249227.783203125, "dur": 5595.600128173828, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.595600128173828, "detail": "System.Reflection.MemberInfoSerializationHolder" } },
  2432. { "pid": 1, "tid": 27, "ts": 2254825.1953125, "dur": 580.3999900817871, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5803999900817871, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveTyped" } },
  2433. { "pid": 1, "tid": 27, "ts": 2255406.982421875, "dur": 489.89999294281006, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48989999294281006, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberPrimitiveUnTyped" } },
  2434. { "pid": 1, "tid": 27, "ts": 2255897.705078125, "dur": 375.99998712539673, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.37599998712539673, "detail": "System.Runtime.Serialization.Formatters.Binary.MemberReference" } },
  2435. { "pid": 1, "tid": 27, "ts": 2256284.912109375, "dur": 7285.600185394287, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.285600185394287, "detail": "System.IO.MemoryStream" } },
  2436. { "pid": 1, "tid": 27, "ts": 2263571.2890625, "dur": 5329.400062561035, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.329400062561035, "detail": "System.Runtime.Remoting.Messaging.MessageDictionary" } },
  2437. { "pid": 1, "tid": 27, "ts": 2269249.51171875, "dur": 527.5999903678894, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5275999903678894, "detail": "System.MethodAccessException" } },
  2438. { "pid": 1, "tid": 27, "ts": 2269789.55078125, "dur": 6596.199989318848, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.596199989318848, "detail": "System.Reflection.MethodBase" } },
  2439. { "pid": 1, "tid": 27, "ts": 2276386.71875, "dur": 441.90001487731934, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.44190001487731934, "detail": "System.Reflection.MethodBody" } },
  2440. { "pid": 1, "tid": 27, "ts": 2276829.58984375, "dur": 1093.6000347137451, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0936000347137451, "detail": "System.Reflection.Emit.MethodBuilder" } },
  2441. { "pid": 1, "tid": 27, "ts": 2277924.8046875, "dur": 7778.69987487793, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 7.77869987487793, "detail": "System.Runtime.Remoting.Messaging.MethodCall" } },
  2442. { "pid": 1, "tid": 27, "ts": 2285716.796875, "dur": 1289.8999452590942, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2898999452590942, "detail": "System.Reflection.MethodInfo" } },
  2443. { "pid": 1, "tid": 27, "ts": 2287008.30078125, "dur": 26046.499252319336, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.046499252319336, "detail": "System.Runtime.Remoting.Messaging.MethodResponse" } },
  2444. { "pid": 1, "tid": 27, "ts": 2313056.396484375, "dur": 439.59999084472656, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.43959999084472656, "detail": "System.Runtime.Remoting.Messaging.MethodReturnDictionary" } },
  2445. { "pid": 1, "tid": 27, "ts": 2313496.826171875, "dur": 565.9000277519226, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5659000277519226, "detail": "System.Reflection.Missing" } },
  2446. { "pid": 1, "tid": 27, "ts": 2314064.453125, "dur": 1239.1999959945679, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2391999959945679, "detail": "System.MissingFieldException" } },
  2447. { "pid": 1, "tid": 27, "ts": 2315304.931640625, "dur": 2346.6999530792236, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.3466999530792236, "detail": "System.MissingMemberException" } },
  2448. { "pid": 1, "tid": 27, "ts": 2317652.83203125, "dur": 1117.2000169754028, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.1172000169754028, "detail": "System.MissingMethodException" } },
  2449. { "pid": 1, "tid": 27, "ts": 2318770.751953125, "dur": 3204.699993133545, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.204699993133545, "detail": "System.Reflection.Module" } },
  2450. { "pid": 1, "tid": 27, "ts": 2321993.896484375, "dur": 2180.5999279022217, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.1805999279022217, "detail": "System.Threading.Monitor" } },
  2451. { "pid": 1, "tid": 27, "ts": 2324177.001953125, "dur": 1246.6000318527222, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.2466000318527222, "detail": "System.Reflection.MonoAssembly" } },
  2452. { "pid": 1, "tid": 27, "ts": 2325463.134765625, "dur": 523.5000252723694, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5235000252723694, "detail": "System.MonoAsyncCall" } },
  2453. { "pid": 1, "tid": 27, "ts": 2325987.060546875, "dur": 13555.800437927246, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 13.555800437927246, "detail": "System.Reflection.MonoCMethod" } },
  2454. { "pid": 1, "tid": 27, "ts": 2339543.9453125, "dur": 26149.599075317383, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 26.149599075317383, "detail": "System.MonoCustomAttrs" } },
  2455. { "pid": 1, "tid": 27, "ts": 2365694.82421875, "dur": 1435.5000257492065, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.4355000257492065, "detail": "System.Reflection.MonoEvent" } },
  2456. { "pid": 1, "tid": 27, "ts": 2367131.34765625, "dur": 482.49998688697815, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.48249998688697815, "detail": "System.Reflection.MonoEventInfo" } },
  2457. { "pid": 1, "tid": 27, "ts": 2367614.74609375, "dur": 5481.900215148926, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.481900215148926, "detail": "System.Reflection.MonoField" } },
  2458. { "pid": 1, "tid": 27, "ts": 2373108.642578125, "dur": 8335.000038146973, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 8.335000038146973, "detail": "System.IO.MonoIO" } },
  2459. { "pid": 1, "tid": 27, "ts": 2381549.560546875, "dur": 5586.50016784668, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.58650016784668, "detail": "System.Reflection.MonoMethod" } },
  2460. { "pid": 1, "tid": 27, "ts": 2387137.20703125, "dur": 3105.799913406372, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.105799913406372, "detail": "System.Reflection.MonoMethodInfo" } },
  2461. { "pid": 1, "tid": 27, "ts": 2390244.873046875, "dur": 5429.599761962891, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.429599761962891, "detail": "System.Runtime.Remoting.Messaging.MonoMethodMessage" } },
  2462. { "pid": 1, "tid": 27, "ts": 2395675.537109375, "dur": 1068.50004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.06850004196167, "detail": "System.Reflection.MonoModule" } },
  2463. { "pid": 1, "tid": 27, "ts": 2396745.1171875, "dur": 1013.1000280380249, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.013100028038025, "detail": "System.Reflection.MonoParameterInfo" } },
  2464. { "pid": 1, "tid": 27, "ts": 2397759.033203125, "dur": 5342.700004577637, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.342700004577637, "detail": "System.Reflection.MonoProperty" } },
  2465. { "pid": 1, "tid": 27, "ts": 2403102.5390625, "dur": 467.7000045776367, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4677000045776367, "detail": "System.Reflection.MonoPropertyInfo" } },
  2466. { "pid": 1, "tid": 27, "ts": 2404021.97265625, "dur": 6406.099796295166, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.406099796295166, "detail": "System.MulticastDelegate" } },
  2467. { "pid": 1, "tid": 27, "ts": 2410428.955078125, "dur": 511.3000273704529, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5113000273704529, "detail": "System.MulticastNotSupportedException" } },
  2468. { "pid": 1, "tid": 27, "ts": 2410953.61328125, "dur": 611.8000149726868, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6118000149726868, "detail": "System.Runtime.Serialization.Formatters.Binary.NameCache" } },
  2469. { "pid": 1, "tid": 27, "ts": 2411566.162109375, "dur": 520.2000141143799, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5202000141143799, "detail": "System.Runtime.Serialization.Formatters.Binary.NameInfo" } },
  2470. { "pid": 1, "tid": 27, "ts": 2412087.40234375, "dur": 711.1999988555908, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7111999988555908, "detail": "System.Threading.NativeEventCalls" } },
  2471. { "pid": 1, "tid": 27, "ts": 2413121.58203125, "dur": 338.09998631477356, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.33809998631477356, "detail": "System.Collections.Generic.NonRandomizedStringEqualityComparer" } },
  2472. { "pid": 1, "tid": 27, "ts": 2413544.43359375, "dur": 10082.6997756958, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.0826997756958, "detail": "System.Text.Normalization" } },
  2473. { "pid": 1, "tid": 27, "ts": 2423645.99609375, "dur": 1012.1999979019165, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0121999979019165, "detail": "Mono.Globalization.Unicode.NormalizationTableUtil" } },
  2474. { "pid": 1, "tid": 27, "ts": 2424659.912109375, "dur": 537.8000140190125, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5378000140190125, "detail": "System.NotImplementedException" } },
  2475. { "pid": 1, "tid": 27, "ts": 2425198.486328125, "dur": 569.100022315979, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.569100022315979, "detail": "System.NotSupportedException" } },
  2476. { "pid": 1, "tid": 27, "ts": 2425769.04296875, "dur": 628.7999749183655, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6287999749183655, "detail": "System.NullConsoleDriver" } },
  2477. { "pid": 1, "tid": 27, "ts": 2426398.681640625, "dur": 726.1000275611877, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.7261000275611877, "detail": "System.NullReferenceException" } },
  2478. { "pid": 1, "tid": 27, "ts": 2427126.708984375, "dur": 447.4000036716461, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4474000036716461, "detail": "System.Nullable" } },
  2479. { "pid": 1, "tid": 27, "ts": 2427575.1953125, "dur": 18264.60075378418, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 18.26460075378418, "detail": "System.Number" } },
  2480. { "pid": 1, "tid": 27, "ts": 2445842.529296875, "dur": 46675.899505615234, "ph": "X", "name": "mscorlib7.cpp", "args": { "durationMS": 46.675899505615234, "detail": "" } },
  2481. { "pid": 1, "tid": 27, "ts": 2492537.59765625, "dur": 5565.5999183654785, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 5.5655999183654785, "detail": "System.UnitySerializationHolder" } },
  2482. { "pid": 1, "tid": 27, "ts": 2498104.736328125, "dur": 2265.7999992370605, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.2657999992370605, "detail": "Microsoft.Win32.UnixRegistryApi" } },
  2483. { "pid": 1, "tid": 27, "ts": 2500479.98046875, "dur": 10147.80044555664, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.14780044555664, "detail": "System.IO.UnmanagedMemoryStream" } },
  2484. { "pid": 1, "tid": 27, "ts": 2510939.697265625, "dur": 1061.4999532699585, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.0614999532699585, "detail": "System.Runtime.Serialization.Formatters.Binary.ValueFixup" } },
  2485. { "pid": 1, "tid": 27, "ts": 2512011.962890625, "dur": 2670.0000762939453, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 2.6700000762939453, "detail": "System.ValueType" } },
  2486. { "pid": 1, "tid": 27, "ts": 2514685.05859375, "dur": 822.8999972343445, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8228999972343445, "detail": "System.Runtime.Serialization.ValueTypeFixupInfo" } },
  2487. { "pid": 1, "tid": 27, "ts": 2515522.4609375, "dur": 359.89999771118164, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.35989999771118164, "detail": "System.Variant" } },
  2488. { "pid": 1, "tid": 27, "ts": 2515883.30078125, "dur": 4725.200176239014, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.725200176239014, "detail": "System.Version" } },
  2489. { "pid": 1, "tid": 27, "ts": 2520687.5, "dur": 1646.1999416351318, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.6461999416351318, "detail": "System.Threading.WaitCallback" } },
  2490. { "pid": 1, "tid": 27, "ts": 2522334.716796875, "dur": 12310.0004196167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.3100004196167, "detail": "System.Threading.WaitHandle" } },
  2491. { "pid": 1, "tid": 27, "ts": 2534646.484375, "dur": 506.69997930526733, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5066999793052673, "detail": "System.Threading.WaitHandleCannotBeOpenedException" } },
  2492. { "pid": 1, "tid": 27, "ts": 2535154.052734375, "dur": 424.699991941452, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.424699991941452, "detail": "System.Threading.WaitOrTimerCallback" } },
  2493. { "pid": 1, "tid": 27, "ts": 2535579.58984375, "dur": 1791.0000085830688, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.7910000085830688, "detail": "System.WeakReference" } },
  2494. { "pid": 1, "tid": 27, "ts": 2537372.0703125, "dur": 996.5999722480774, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.9965999722480774, "detail": "System.Runtime.Remoting.WellKnownClientTypeEntry" } },
  2495. { "pid": 1, "tid": 27, "ts": 2538380.126953125, "dur": 1980.0000190734863, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 1.9800000190734863, "detail": "System.Runtime.Remoting.WellKnownServiceTypeEntry" } },
  2496. { "pid": 1, "tid": 27, "ts": 2540656.73828125, "dur": 11667.400360107422, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 11.667400360107422, "detail": "Microsoft.Win32.Win32RegistryApi" } },
  2497. { "pid": 1, "tid": 27, "ts": 2552325.927734375, "dur": 10027.50015258789, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 10.02750015258789, "detail": "System.WindowsConsoleDriver" } },
  2498. { "pid": 1, "tid": 27, "ts": 2562354.736328125, "dur": 6843.800067901611, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.843800067901611, "detail": "System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo" } },
  2499. { "pid": 1, "tid": 27, "ts": 2569200.439453125, "dur": 453.0999958515167, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.4530999958515167, "detail": "System.Security.XmlSyntaxException" } },
  2500. { "pid": 1, "tid": 27, "ts": 2569743.408203125, "dur": 73880.30242919922, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 73.88030242919922, "detail": "System.Runtime.Serialization.Formatters.Binary.__BinaryParser" } },
  2501. { "pid": 1, "tid": 27, "ts": 2643627.9296875, "dur": 12284.39998626709, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 12.28439998626709, "detail": "System.Runtime.Serialization.Formatters.Binary.__BinaryWriter" } },
  2502. { "pid": 1, "tid": 27, "ts": 2656130.859375, "dur": 6906.700134277344, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.906700134277344, "detail": "System.__DTString" } },
  2503. { "pid": 1, "tid": 27, "ts": 2663038.818359375, "dur": 3882.4000358581543, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.8824000358581543, "detail": "System.IO.__Error" } },
  2504. { "pid": 1, "tid": 27, "ts": 2666922.36328125, "dur": 3375.499963760376, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.375499963760376, "detail": "System.__Filters" } },
  2505. { "pid": 1, "tid": 27, "ts": 2670299.072265625, "dur": 3414.400100708008, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 3.414400100708008, "detail": "System.__Il2CppComDelegate" } },
  2506. { "pid": 1, "tid": 27, "ts": 2673715.087890625, "dur": 548.2000112533569, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.5482000112533569, "detail": "System.__Il2CppComObject" } },
  2507. { "pid": 1, "tid": 27, "ts": 2674499.267578125, "dur": 800.4000186920166, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.8004000186920166, "detail": "System.Array/ArrayEnumerator" } },
  2508. { "pid": 1, "tid": 27, "ts": 2675300.78125, "dur": 6030.399799346924, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 6.030399799346924, "detail": "System.Array/SorterGenericArray" } },
  2509. { "pid": 1, "tid": 27, "ts": 2681332.51953125, "dur": 4731.299877166748, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 4.731299877166748, "detail": "System.Array/SorterObjectArray" } },
  2510. { "pid": 1, "tid": 27, "ts": 2686344.482421875, "dur": 16144.599914550781, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 16.14459991455078, "detail": "System.Collections.ArrayList/ArrayListEnumeratorSimple" } },
  2511. { "pid": 1, "tid": 27, "ts": 2702579.833984375, "dur": 346.5999960899353, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3465999960899353, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/<>c" } },
  2512. { "pid": 1, "tid": 27, "ts": 2703383.544921875, "dur": 632.4999928474426, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.6324999928474426, "detail": "System.Runtime.CompilerServices.AsyncMethodBuilderCore/MoveNextRunner" } },
  2513. { "pid": 1, "tid": 27, "ts": 2704017.578125, "dur": 349.0000069141388, "ph": "X", "name": "WriteMethods", "args": { "durationMS": 0.3490000069141388, "detail": "System.Threading.Tasks.AwaitTaskContinuation/<>c" } },
  2514. { "pid": 1, "tid": 27, "ts": 2704370.849609375, "dur": 35497.100830078125, "ph": "X", "name": "mscorlib15.cpp", "args": { "durationMS": 35.497100830078125, "detail": "" } },
  2515. { "pid": 1, "tid": 27, "ts": 2739886.474609375, "dur": 1839.400053024292, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.839400053024292, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.ColorBlock>" } },
  2516. { "pid": 1, "tid": 27, "ts": 2741727.5390625, "dur": 1521.1999416351318, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5211999416351318, "detail": "System.Array/InternalEnumerator`1<UnityEngine.ContactPoint>" } },
  2517. { "pid": 1, "tid": 27, "ts": 2743250.244140625, "dur": 1483.1000566482544, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4831000566482544, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeNamedArgument>" } },
  2518. { "pid": 1, "tid": 27, "ts": 2744735.107421875, "dur": 2036.9000434875488, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.036900043487549, "detail": "System.Array/InternalEnumerator`1<System.Reflection.CustomAttributeTypedArgument>" } },
  2519. { "pid": 1, "tid": 27, "ts": 2746773.92578125, "dur": 1469.4000482559204, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4694000482559204, "detail": "System.Array/InternalEnumerator`1<System.DateTime>" } },
  2520. { "pid": 1, "tid": 27, "ts": 2748250.732421875, "dur": 1517.799973487854, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.517799973487854, "detail": "System.Array/InternalEnumerator`1<System.Decimal>" } },
  2521. { "pid": 1, "tid": 27, "ts": 2749770.751953125, "dur": 7063.199996948242, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 7.063199996948242, "detail": "System.Array/InternalEnumerator`1<System.Collections.DictionaryEntry>" } },
  2522. { "pid": 1, "tid": 27, "ts": 2756835.44921875, "dur": 1500.3000497817993, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5003000497817993, "detail": "System.Array/InternalEnumerator`1<System.Double>" } },
  2523. { "pid": 1, "tid": 27, "ts": 2758337.646484375, "dur": 1507.4000358581543, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5074000358581543, "detail": "System.Array/InternalEnumerator`1<System.Runtime.CompilerServices.Ephemeron>" } },
  2524. { "pid": 1, "tid": 27, "ts": 2759846.923828125, "dur": 1402.0999670028687, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4020999670028687, "detail": "System.Array/InternalEnumerator`1<System.Int16>" } },
  2525. { "pid": 1, "tid": 27, "ts": 2761251.220703125, "dur": 1526.800036430359, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5268000364303589, "detail": "System.Array/InternalEnumerator`1<System.Int32>" } },
  2526. { "pid": 1, "tid": 27, "ts": 2762780.029296875, "dur": 1664.8000478744507, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6648000478744507, "detail": "System.Array/InternalEnumerator`1<System.Int32Enum>" } },
  2527. { "pid": 1, "tid": 27, "ts": 2764446.044921875, "dur": 2545.099973678589, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.545099973678589, "detail": "System.Array/InternalEnumerator`1<System.Int64>" } },
  2528. { "pid": 1, "tid": 27, "ts": 2766992.67578125, "dur": 1479.099988937378, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.479099988937378, "detail": "System.Array/InternalEnumerator`1<System.IntPtr>" } },
  2529. { "pid": 1, "tid": 27, "ts": 2768473.6328125, "dur": 1537.1999740600586, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5371999740600586, "detail": "System.Array/InternalEnumerator`1<System.Globalization.InternalCodePageDataItem>" } },
  2530. { "pid": 1, "tid": 27, "ts": 2770012.6953125, "dur": 1512.3000144958496, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5123000144958496, "detail": "System.Array/InternalEnumerator`1<System.Globalization.InternalEncodingDataItem>" } },
  2531. { "pid": 1, "tid": 27, "ts": 2771528.076171875, "dur": 1578.7999629974365, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5787999629974365, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Keyframe>" } },
  2532. { "pid": 1, "tid": 27, "ts": 2773108.642578125, "dur": 1536.9999408721924, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5369999408721924, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Experimental.GlobalIllumination.LightDataGI>" } },
  2533. { "pid": 1, "tid": 27, "ts": 2774648.681640625, "dur": 1900.7999897003174, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9007999897003174, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.Navigation>" } },
  2534. { "pid": 1, "tid": 27, "ts": 2776554.19921875, "dur": 2126.3999938964844, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.1263999938964844, "detail": "System.Array/InternalEnumerator`1<System.Object>" } },
  2535. { "pid": 1, "tid": 27, "ts": 2778681.884765625, "dur": 1718.2999849319458, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7182999849319458, "detail": "System.Array/InternalEnumerator`1<System.Reflection.ParameterModifier>" } },
  2536. { "pid": 1, "tid": 27, "ts": 2780404.052734375, "dur": 1704.800009727478, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.704800009727478, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Plane>" } },
  2537. { "pid": 1, "tid": 27, "ts": 2782110.83984375, "dur": 1591.3000106811523, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5913000106811523, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Playables.PlayableBinding>" } },
  2538. { "pid": 1, "tid": 27, "ts": 2783704.345703125, "dur": 1531.9000482559204, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5319000482559204, "detail": "System.Array/InternalEnumerator`1<UnityEngine.LowLevel.PlayerLoopSystem>" } },
  2539. { "pid": 1, "tid": 27, "ts": 2785238.037109375, "dur": 1566.2000179290771, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5662000179290771, "detail": "System.Array/InternalEnumerator`1<UnityEngine.RaycastHit>" } },
  2540. { "pid": 1, "tid": 27, "ts": 2786805.908203125, "dur": 1654.9999713897705, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6549999713897705, "detail": "System.Array/InternalEnumerator`1<UnityEngine.RaycastHit2D>" } },
  2541. { "pid": 1, "tid": 27, "ts": 2788464.111328125, "dur": 1659.2999696731567, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6592999696731567, "detail": "System.Array/InternalEnumerator`1<UnityEngine.EventSystems.RaycastResult>" } },
  2542. { "pid": 1, "tid": 27, "ts": 2790125.244140625, "dur": 5575.799942016602, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.575799942016602, "detail": "System.Array/InternalEnumerator`1<System.Resources.ResourceLocator>" } },
  2543. { "pid": 1, "tid": 27, "ts": 2795703.61328125, "dur": 1653.9000272750854, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6539000272750854, "detail": "System.Array/InternalEnumerator`1<System.SByte>" } },
  2544. { "pid": 1, "tid": 27, "ts": 2797359.130859375, "dur": 1768.4999704360962, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7684999704360962, "detail": "System.Array/InternalEnumerator`1<System.Single>" } },
  2545. { "pid": 1, "tid": 27, "ts": 2799129.8828125, "dur": 1733.199954032898, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.733199954032898, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UI.SpriteState>" } },
  2546. { "pid": 1, "tid": 27, "ts": 2800865.234375, "dur": 1517.799973487854, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.517799973487854, "detail": "System.Array/InternalEnumerator`1<System.TimeSpan>" } },
  2547. { "pid": 1, "tid": 27, "ts": 2802385.986328125, "dur": 1633.9000463485718, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6339000463485718, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UICharInfo>" } },
  2548. { "pid": 1, "tid": 27, "ts": 2804021.240234375, "dur": 1562.5, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5625, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UILineInfo>" } },
  2549. { "pid": 1, "tid": 27, "ts": 2805585.205078125, "dur": 1419.4999933242798, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4194999933242798, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UIVertex>" } },
  2550. { "pid": 1, "tid": 27, "ts": 2807006.34765625, "dur": 1490.2000427246094, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4902000427246094, "detail": "System.Array/InternalEnumerator`1<System.UInt16>" } },
  2551. { "pid": 1, "tid": 27, "ts": 2808497.55859375, "dur": 1510.699987411499, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.510699987411499, "detail": "System.Array/InternalEnumerator`1<System.UInt32>" } },
  2552. { "pid": 1, "tid": 27, "ts": 2810009.521484375, "dur": 1441.9000148773193, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4419000148773193, "detail": "System.Array/InternalEnumerator`1<System.UInt64>" } },
  2553. { "pid": 1, "tid": 27, "ts": 2811454.345703125, "dur": 1453.0999660491943, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4530999660491943, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector2>" } },
  2554. { "pid": 1, "tid": 27, "ts": 2812909.1796875, "dur": 1479.4000387191772, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4794000387191772, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector3>" } },
  2555. { "pid": 1, "tid": 27, "ts": 2814390.380859375, "dur": 1539.6000146865845, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5396000146865845, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Vector4>" } },
  2556. { "pid": 1, "tid": 27, "ts": 2815931.884765625, "dur": 1624.0999698638916, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6240999698638916, "detail": "System.Array/InternalEnumerator`1<UnityEngine.BeforeRenderHelper/OrderBlock>" } },
  2557. { "pid": 1, "tid": 27, "ts": 2817557.861328125, "dur": 1334.3000411987305, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.3343000411987305, "detail": "System.Array/InternalEnumerator`1<UnityEngine.Camera/RenderRequest>" } },
  2558. { "pid": 1, "tid": 27, "ts": 2818894.53125, "dur": 2142.199993133545, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.142199993133545, "detail": "System.Array/InternalEnumerator`1<Mono.Globalization.Unicode.CodePointIndexer/TableRange>" } },
  2559. { "pid": 1, "tid": 27, "ts": 2821039.0625, "dur": 1530.2000045776367, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5302000045776367, "detail": "System.Array/InternalEnumerator`1<System.Collections.Hashtable/bucket>" } },
  2560. { "pid": 1, "tid": 27, "ts": 2822572.021484375, "dur": 1483.8000535964966, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.4838000535964966, "detail": "System.Array/InternalEnumerator`1<System.ParameterizedStrings/FormatParam>" } },
  2561. { "pid": 1, "tid": 27, "ts": 2824057.6171875, "dur": 1543.5999631881714, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.5435999631881714, "detail": "System.Array/InternalEnumerator`1<System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping>" } },
  2562. { "pid": 1, "tid": 27, "ts": 2825603.759765625, "dur": 1472.599983215332, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.472599983215332, "detail": "System.Array/InternalEnumerator`1<UnityEngine.SendMouseEvents/HitInfo>" } },
  2563. { "pid": 1, "tid": 27, "ts": 2827078.125, "dur": 1760.599970817566, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.760599970817566, "detail": "System.Array/InternalEnumerator`1<UnityEngine.UnitySynchronizationContext/WorkRequest>" } },
  2564. { "pid": 1, "tid": 27, "ts": 2828840.33203125, "dur": 62899.3034362793, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 62.8993034362793, "detail": "UnityEngine.Events.InvokableCall`1<System.Boolean>" } },
  2565. { "pid": 1, "tid": 27, "ts": 2891742.919921875, "dur": 3332.0999145507812, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 3.3320999145507812, "detail": "UnityEngine.Events.InvokableCall`1<UnityEngine.Color>" } },
  2566. { "pid": 1, "tid": 27, "ts": 2895076.66015625, "dur": 26408.300399780273, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 26.408300399780273, "detail": "UnityEngine.Events.InvokableCall`1<System.Int32>" } },
  2567. { "pid": 1, "tid": 27, "ts": 2921487.060546875, "dur": 2792.59991645813, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.79259991645813, "detail": "UnityEngine.Events.InvokableCall`1<System.Object>" } },
  2568. { "pid": 1, "tid": 27, "ts": 2924282.958984375, "dur": 2667.5000190734863, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 2.6675000190734863, "detail": "UnityEngine.Events.InvokableCall`1<System.Single>" } },
  2569. { "pid": 1, "tid": 27, "ts": 2926952.1484375, "dur": 5009.200096130371, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 5.009200096130371, "detail": "UnityEngine.Events.InvokableCall`1<UnityEngine.Vector2>" } },
  2570. { "pid": 1, "tid": 27, "ts": 2931963.134765625, "dur": 1650.5000591278076, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6505000591278076, "detail": "UnityEngine.Events.InvokableCall`2<System.Object,System.Object>" } },
  2571. { "pid": 1, "tid": 27, "ts": 2933615.72265625, "dur": 1613.0000352859497, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.6130000352859497, "detail": "UnityEngine.Events.InvokableCall`3<System.Object,System.Object,System.Object>" } },
  2572. { "pid": 1, "tid": 27, "ts": 2935230.712890625, "dur": 1759.5000267028809, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.7595000267028809, "detail": "UnityEngine.Events.InvokableCall`4<System.Object,System.Object,System.Object,System.Object>" } },
  2573. { "pid": 1, "tid": 27, "ts": 2936991.943359375, "dur": 1251.2999773025513, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.2512999773025513, "detail": "System.Linq.Enumerable/Iterator`1<System.Object>" } },
  2574. { "pid": 1, "tid": 27, "ts": 2938245.1171875, "dur": 1966.3000106811523, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.9663000106811523, "detail": "System.IO.Iterator`1<System.Object>" } },
  2575. { "pid": 1, "tid": 27, "ts": 2940970.458984375, "dur": 775.600016117096, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.775600016117096, "detail": "System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>" } },
  2576. { "pid": 1, "tid": 27, "ts": 2941747.314453125, "dur": 772.4999785423279, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7724999785423279, "detail": "System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>" } },
  2577. { "pid": 1, "tid": 27, "ts": 2942520.99609375, "dur": 1115.399956703186, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.115399956703186, "detail": "System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>" } },
  2578. { "pid": 1, "tid": 27, "ts": 2943637.451171875, "dur": 773.2999920845032, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7732999920845032, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>" } },
  2579. { "pid": 1, "tid": 27, "ts": 2944412.353515625, "dur": 854.6000123023987, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8546000123023987, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>" } },
  2580. { "pid": 1, "tid": 27, "ts": 2945268.798828125, "dur": 863.7999892234802, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8637999892234802, "detail": "System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>" } },
  2581. { "pid": 1, "tid": 27, "ts": 2946134.033203125, "dur": 659.600019454956, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.659600019454956, "detail": "System.Collections.Generic.LinkedListNode`1<System.Object>" } },
  2582. { "pid": 1, "tid": 27, "ts": 2946794.677734375, "dur": 14324.399948120117, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 14.324399948120117, "detail": "System.Collections.Generic.LinkedList`1<System.Object>" } },
  2583. { "pid": 1, "tid": 27, "ts": 2961121.58203125, "dur": 1996.999979019165, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.996999979019165, "detail": "System.RuntimeType/ListBuilder`1<System.Object>" } },
  2584. { "pid": 1, "tid": 27, "ts": 2963120.849609375, "dur": 1188.5000467300415, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 1.1885000467300415, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Color32>" } },
  2585. { "pid": 1, "tid": 27, "ts": 2964310.791015625, "dur": 959.2000246047974, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9592000246047974, "detail": "UnityEngine.UI.ListPool`1<System.Int32>" } },
  2586. { "pid": 1, "tid": 27, "ts": 2965271.97265625, "dur": 922.2000241279602, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9222000241279602, "detail": "UnityEngine.UI.ListPool`1<System.Object>" } },
  2587. { "pid": 1, "tid": 27, "ts": 2966196.044921875, "dur": 907.9999923706055, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.9079999923706055, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.UIVertex>" } },
  2588. { "pid": 1, "tid": 27, "ts": 2967105.46875, "dur": 773.8000154495239, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.7738000154495239, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Vector3>" } },
  2589. { "pid": 1, "tid": 27, "ts": 2967881.103515625, "dur": 897.0999717712402, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 0.8970999717712402, "detail": "UnityEngine.UI.ListPool`1<UnityEngine.Vector4>" } },
  2590. { "pid": 1, "tid": 27, "ts": 2968780.2734375, "dur": 22206.701278686523, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 22.206701278686523, "detail": "System.Collections.Generic.List`1<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>" } },
  2591. { "pid": 1, "tid": 27, "ts": 2990988.525390625, "dur": 19981.698989868164, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 19.981698989868164, "detail": "System.Collections.Generic.List`1<UnityEngine.Color32>" } },
  2592. { "pid": 1, "tid": 27, "ts": 3010972.16796875, "dur": 17232.799530029297, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 17.232799530029297, "detail": "System.Collections.Generic.List`1<System.Int32>" } },
  2593. { "pid": 1, "tid": 27, "ts": 3028206.298828125, "dur": 15448.099136352539, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 15.448099136352539, "detail": "System.Collections.Generic.List`1<System.Int32Enum>" } },
  2594. { "pid": 1, "tid": 27, "ts": 3043656.25, "dur": 13925.699234008789, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 13.925699234008789, "detail": "System.Collections.Generic.List`1<System.Object>" } },
  2595. { "pid": 1, "tid": 27, "ts": 3057583.984375, "dur": 37070.098876953125, "ph": "X", "name": "WriteGenericInstanceType", "args": { "durationMS": 37.070098876953125, "detail": "System.Collections.Generic.List`1<UnityEngine.EventSystems.RaycastResult>" } },
  2596. { "pid": 1, "tid": 27, "ts": 3094656.494140625, "dur": 31066.898345947266, "ph": "X", "name": "Generics3.cpp", "args": { "durationMS": 31.066898345947266, "detail": "" } },
  2597. { "pid": 1, "tid": 27, "ts": 3125741.2109375, "dur": 17401.901245117188, "ph": "X", "name": "Idle", "args": { "durationMS": 17.401901245117188, "detail": "" } },
  2598. { "pid": 1, "tid": 29, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2599. { "pid": 1, "tid": 29, "ts": 3239464.35546875, "dur": 13265.09952545166, "ph": "X", "name": "Idle", "args": { "durationMS": 13.26509952545166, "detail": "" } },
  2600. { "pid": 1, "tid": 29, "ts": 3262779.296875, "dur": 2358.0000400543213, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 2.3580000400543213, "detail": "System.Configuration" } },
  2601. { "pid": 1, "tid": 29, "ts": 3265896.97265625, "dur": 28531.200408935547, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 28.531200408935547, "detail": "Generic Methods" } },
  2602. { "pid": 1, "tid": 29, "ts": 3295909.66796875, "dur": 18656.600952148438, "ph": "X", "name": "Merge Invokers", "args": { "durationMS": 18.656600952148438, "detail": "" } },
  2603. { "pid": 1, "tid": 29, "ts": 3314573.486328125, "dur": 143714.49279785156, "ph": "X", "name": "Idle", "args": { "durationMS": 143.71449279785156, "detail": "" } },
  2604. { "pid": 1, "tid": 30, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2605. { "pid": 1, "tid": 30, "ts": 3239585.9375, "dur": 13175.600051879883, "ph": "X", "name": "Idle", "args": { "durationMS": 13.175600051879883, "detail": "" } },
  2606. { "pid": 1, "tid": 30, "ts": 3262783.935546875, "dur": 3025.5000591278076, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 3.0255000591278076, "detail": "System.Core" } },
  2607. { "pid": 1, "tid": 30, "ts": 3265919.189453125, "dur": 19332.000732421875, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 19.332000732421875, "detail": "mscorlib" } },
  2608. { "pid": 1, "tid": 30, "ts": 3285271.240234375, "dur": 173018.09692382812, "ph": "X", "name": "Idle", "args": { "durationMS": 173.01809692382812, "detail": "" } },
  2609. { "pid": 1, "tid": 31, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2610. { "pid": 1, "tid": 31, "ts": 3239730.712890625, "dur": 13030.200004577637, "ph": "X", "name": "Idle", "args": { "durationMS": 13.030200004577637, "detail": "" } },
  2611. { "pid": 1, "tid": 31, "ts": 3262792.236328125, "dur": 3035.5000495910645, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 3.0355000495910645, "detail": "System" } },
  2612. { "pid": 1, "tid": 31, "ts": 3265928.7109375, "dur": 4931.49995803833, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 4.93149995803833, "detail": "Mono.Security" } },
  2613. { "pid": 1, "tid": 31, "ts": 3272100.830078125, "dur": 27677.600860595703, "ph": "X", "name": "Collect Method Tables", "args": { "durationMS": 27.677600860595703, "detail": "" } },
  2614. { "pid": 1, "tid": 31, "ts": 3299785.888671875, "dur": 158502.10571289062, "ph": "X", "name": "Idle", "args": { "durationMS": 158.50210571289062, "detail": "" } },
  2615. { "pid": 1, "tid": 32, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2616. { "pid": 1, "tid": 32, "ts": 3239868.65234375, "dur": 12861.000061035156, "ph": "X", "name": "Idle", "args": { "durationMS": 12.861000061035156, "detail": "" } },
  2617. { "pid": 1, "tid": 32, "ts": 3267910.15625, "dur": 2780.8001041412354, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 2.7808001041412354, "detail": "System.Core" } },
  2618. { "pid": 1, "tid": 32, "ts": 3270737.548828125, "dur": 498.4999895095825, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.4984999895095825, "detail": "UnityEngine.SharedInternalsModule" } },
  2619. { "pid": 1, "tid": 32, "ts": 3271519.775390625, "dur": 3647.599935531616, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 3.647599935531616, "detail": "UnityEngine.UI" } },
  2620. { "pid": 1, "tid": 32, "ts": 3275175.78125, "dur": 183138.48876953125, "ph": "X", "name": "Idle", "args": { "durationMS": 183.13848876953125, "detail": "" } },
  2621. { "pid": 1, "tid": 33, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2622. { "pid": 1, "tid": 33, "ts": 3239997.55859375, "dur": 12732.000350952148, "ph": "X", "name": "Idle", "args": { "durationMS": 12.732000350952148, "detail": "" } },
  2623. { "pid": 1, "tid": 33, "ts": 3263513.18359375, "dur": 1628.999948501587, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 1.628999948501587, "detail": "Mono.Security" } },
  2624. { "pid": 1, "tid": 33, "ts": 3265311.5234375, "dur": 192903.50341796875, "ph": "X", "name": "All Collect Metadata", "args": { "durationMS": 192.90350341796875, "detail": "" } },
  2625. { "pid": 1, "tid": 33, "ts": 3268306.396484375, "dur": 60215.999603271484, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 60.215999603271484, "detail": "mscorlib" } },
  2626. { "pid": 1, "tid": 33, "ts": 3268590.8203125, "dur": 8419.500350952148, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 8.419500350952148, "detail": "" } },
  2627. { "pid": 1, "tid": 33, "ts": 3277010.498046875, "dur": 8433.199882507324, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 8.433199882507324, "detail": "" } },
  2628. { "pid": 1, "tid": 33, "ts": 3328941.162109375, "dur": 3280.600070953369, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 3.280600070953369, "detail": "System" } },
  2629. { "pid": 1, "tid": 33, "ts": 3332223.6328125, "dur": 424.10001158714294, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.42410001158714294, "detail": "System.Core" } },
  2630. { "pid": 1, "tid": 33, "ts": 3332648.681640625, "dur": 352.8999984264374, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.3528999984264374, "detail": "UnityEngine.SharedInternalsModule" } },
  2631. { "pid": 1, "tid": 33, "ts": 3333001.953125, "dur": 9138.999938964844, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 9.138999938964844, "detail": "UnityEngine.CoreModule" } },
  2632. { "pid": 1, "tid": 33, "ts": 3333002.197265625, "dur": 863.4999990463257, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 0.8634999990463257, "detail": "" } },
  2633. { "pid": 1, "tid": 33, "ts": 3333865.966796875, "dur": 875.1999735832214, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 0.8751999735832214, "detail": "" } },
  2634. { "pid": 1, "tid": 33, "ts": 3342595.703125, "dur": 401.8999934196472, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.4018999934196472, "detail": "UnityEngine.TextRenderingModule" } },
  2635. { "pid": 1, "tid": 33, "ts": 3342997.802734375, "dur": 428.4999966621399, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.4284999966621399, "detail": "UnityEngine.AnimationModule" } },
  2636. { "pid": 1, "tid": 33, "ts": 3343427.24609375, "dur": 1218.999981880188, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 1.218999981880188, "detail": "UnityEngine.IMGUIModule" } },
  2637. { "pid": 1, "tid": 33, "ts": 3344647.216796875, "dur": 364.69998955726624, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.36469998955726624, "detail": "UnityEngine.PhysicsModule" } },
  2638. { "pid": 1, "tid": 33, "ts": 3345059.5703125, "dur": 456.2999904155731, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.4562999904155731, "detail": "UnityEngine.UIModule" } },
  2639. { "pid": 1, "tid": 33, "ts": 3345698.486328125, "dur": 7414.5002365112305, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 7.4145002365112305, "detail": "UnityEngine.UI" } },
  2640. { "pid": 1, "tid": 33, "ts": 3345698.486328125, "dur": 763.9999985694885, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 0.7639999985694885, "detail": "" } },
  2641. { "pid": 1, "tid": 33, "ts": 3346462.646484375, "dur": 818.4000253677368, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 0.8184000253677368, "detail": "" } },
  2642. { "pid": 1, "tid": 33, "ts": 3353485.83984375, "dur": 475.600004196167, "ph": "X", "name": "Collect Metadata", "args": { "durationMS": 0.475600004196167, "detail": "Assembly-CSharp" } },
  2643. { "pid": 1, "tid": 34, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2644. { "pid": 1, "tid": 34, "ts": 3240100.09765625, "dur": 12661.700248718262, "ph": "X", "name": "Idle", "args": { "durationMS": 12.661700248718262, "detail": "" } },
  2645. { "pid": 1, "tid": 34, "ts": 3262795.8984375, "dur": 3226.3998985290527, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 3.2263998985290527, "detail": "UnityEngine.CoreModule" } },
  2646. { "pid": 1, "tid": 34, "ts": 3266027.83203125, "dur": 4855.800151824951, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 4.855800151824951, "detail": "System.Xml" } },
  2647. { "pid": 1, "tid": 34, "ts": 3271090.33203125, "dur": 860.0999712944031, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 0.8600999712944031, "detail": "UnityEngine.IMGUIModule" } },
  2648. { "pid": 1, "tid": 34, "ts": 3271979.00390625, "dur": 186326.20239257812, "ph": "X", "name": "Idle", "args": { "durationMS": 186.32620239257812, "detail": "" } },
  2649. { "pid": 1, "tid": 35, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2650. { "pid": 1, "tid": 35, "ts": 3240216.064453125, "dur": 12545.20034790039, "ph": "X", "name": "Idle", "args": { "durationMS": 12.54520034790039, "detail": "" } },
  2651. { "pid": 1, "tid": 35, "ts": 3263761.23046875, "dur": 1383.5999965667725, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 1.3835999965667725, "detail": "UnityEngine.SharedInternalsModule" } },
  2652. { "pid": 1, "tid": 35, "ts": 3265232.177734375, "dur": 595.300018787384, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 0.595300018787384, "detail": "UnityEngine.UI" } },
  2653. { "pid": 1, "tid": 35, "ts": 3265924.31640625, "dur": 4927.10018157959, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 4.92710018157959, "detail": "System.Configuration" } },
  2654. { "pid": 1, "tid": 35, "ts": 3270858.3984375, "dur": 3895.6000804901123, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 3.8956000804901123, "detail": "UnityEngine.CoreModule" } },
  2655. { "pid": 1, "tid": 35, "ts": 3274764.16015625, "dur": 183524.79553222656, "ph": "X", "name": "Idle", "args": { "durationMS": 183.52479553222656, "detail": "" } },
  2656. { "pid": 1, "tid": 36, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2657. { "pid": 1, "tid": 36, "ts": 3240270.01953125, "dur": 12459.500312805176, "ph": "X", "name": "Idle", "args": { "durationMS": 12.459500312805176, "detail": "" } },
  2658. { "pid": 1, "tid": 36, "ts": 3262747.55859375, "dur": 3942.1000480651855, "ph": "X", "name": "Collect Generic Context Metadata", "args": { "durationMS": 3.9421000480651855, "detail": "mscorlib" } },
  2659. { "pid": 1, "tid": 36, "ts": 3266695.3125, "dur": 5872.399806976318, "ph": "X", "name": "Collect Invokers", "args": { "durationMS": 5.872399806976318, "detail": "System" } },
  2660. { "pid": 1, "tid": 36, "ts": 3272582.03125, "dur": 185706.1004638672, "ph": "X", "name": "Idle", "args": { "durationMS": 185.7061004638672, "detail": "" } },
  2661. { "pid": 1, "tid": 37, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2662. { "pid": 1, "tid": 37, "ts": 3484675.78125, "dur": 15359.100341796875, "ph": "X", "name": "Idle", "args": { "durationMS": 15.359100341796875, "detail": "" } },
  2663. { "pid": 1, "tid": 37, "ts": 3500062.255859375, "dur": 713.2999897003174, "ph": "X", "name": "Idle", "args": { "durationMS": 0.7132999897003174, "detail": "" } },
  2664. { "pid": 1, "tid": 37, "ts": 3524324.462890625, "dur": 35024.29962158203, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 35.02429962158203, "detail": "System" } },
  2665. { "pid": 1, "tid": 37, "ts": 3524348.6328125, "dur": 34998.4016418457, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 34.9984016418457, "detail": "" } },
  2666. { "pid": 1, "tid": 37, "ts": 3559433.837890625, "dur": 13467.599868774414, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 13.467599868774414, "detail": "UnityEngine.CoreModule" } },
  2667. { "pid": 1, "tid": 37, "ts": 3559478.515625, "dur": 13421.99993133545, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 13.42199993133545, "detail": "" } },
  2668. { "pid": 1, "tid": 37, "ts": 3572912.109375, "dur": 12090.399742126465, "ph": "X", "name": "Idle", "args": { "durationMS": 12.090399742126465, "detail": "" } },
  2669. { "pid": 1, "tid": 37, "ts": 3586250, "dur": 30401.901245117188, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 30.401901245117188, "detail": "" } },
  2670. { "pid": 1, "tid": 37, "ts": 3616668.45703125, "dur": 76629.10461425781, "ph": "X", "name": "Idle", "args": { "durationMS": 76.62910461425781, "detail": "" } },
  2671. { "pid": 1, "tid": 38, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2672. { "pid": 1, "tid": 38, "ts": 3484827.1484375, "dur": 15231.500625610352, "ph": "X", "name": "Idle", "args": { "durationMS": 15.231500625610352, "detail": "" } },
  2673. { "pid": 1, "tid": 38, "ts": 3500059.814453125, "dur": 729.3999791145325, "ph": "X", "name": "Idle", "args": { "durationMS": 0.7293999791145325, "detail": "" } },
  2674. { "pid": 1, "tid": 38, "ts": 3520215.087890625, "dur": 39488.09814453125, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 39.48809814453125, "detail": "System.Core" } },
  2675. { "pid": 1, "tid": 38, "ts": 3524071.77734375, "dur": 35630.897521972656, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 35.630897521972656, "detail": "" } },
  2676. { "pid": 1, "tid": 38, "ts": 3559714.111328125, "dur": 1738.1000518798828, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.7381000518798828, "detail": "UnityEngine.TextRenderingModule" } },
  2677. { "pid": 1, "tid": 38, "ts": 3559731.93359375, "dur": 1719.499945640564, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 1.719499945640564, "detail": "" } },
  2678. { "pid": 1, "tid": 38, "ts": 3561455.322265625, "dur": 1198.099970817566, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.198099970817566, "detail": "UnityEngine.TilemapModule" } },
  2679. { "pid": 1, "tid": 38, "ts": 3561473.6328125, "dur": 1178.5000562667847, "ph": "X", "name": "UnityEngine.TilemapModule_CodeGen.c", "args": { "durationMS": 1.1785000562667847, "detail": "" } },
  2680. { "pid": 1, "tid": 38, "ts": 3562656.982421875, "dur": 1238.6000156402588, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.2386000156402588, "detail": "UnityEngine.UnityAnalyticsModule" } },
  2681. { "pid": 1, "tid": 38, "ts": 3562675.29296875, "dur": 1219.6999788284302, "ph": "X", "name": "UnityEngine.UnityAnalyticsModule_CodeGen.c", "args": { "durationMS": 1.2196999788284302, "detail": "" } },
  2682. { "pid": 1, "tid": 38, "ts": 3563899.658203125, "dur": 21078.09829711914, "ph": "X", "name": "Idle", "args": { "durationMS": 21.07809829711914, "detail": "" } },
  2683. { "pid": 1, "tid": 38, "ts": 3586874.267578125, "dur": 8364.899635314941, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 8.364899635314941, "detail": "" } },
  2684. { "pid": 1, "tid": 38, "ts": 3597168.701171875, "dur": 96150.19989013672, "ph": "X", "name": "Idle", "args": { "durationMS": 96.15019989013672, "detail": "" } },
  2685. { "pid": 1, "tid": 39, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2686. { "pid": 1, "tid": 39, "ts": 3484936.5234375, "dur": 15127.799987792969, "ph": "X", "name": "Idle", "args": { "durationMS": 15.127799987792969, "detail": "" } },
  2687. { "pid": 1, "tid": 39, "ts": 3500068.115234375, "dur": 706.9000005722046, "ph": "X", "name": "Idle", "args": { "durationMS": 0.7069000005722046, "detail": "" } },
  2688. { "pid": 1, "tid": 39, "ts": 3519916.015625, "dur": 39525.699615478516, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 39.525699615478516, "detail": "Mono.Security" } },
  2689. { "pid": 1, "tid": 39, "ts": 3524076.416015625, "dur": 35364.898681640625, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 35.364898681640625, "detail": "" } },
  2690. { "pid": 1, "tid": 39, "ts": 3559453.369140625, "dur": 1331.0999870300293, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.3310999870300293, "detail": "UnityEngine.InputLegacyModule" } },
  2691. { "pid": 1, "tid": 39, "ts": 3559478.515625, "dur": 1305.899977684021, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 1.305899977684021, "detail": "" } },
  2692. { "pid": 1, "tid": 39, "ts": 3560787.59765625, "dur": 1456.3000202178955, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.4563000202178955, "detail": "UnityEngine.PhysicsModule" } },
  2693. { "pid": 1, "tid": 39, "ts": 3560804.443359375, "dur": 1438.6999607086182, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 1.4386999607086182, "detail": "" } },
  2694. { "pid": 1, "tid": 39, "ts": 3562246.09375, "dur": 8678.000450134277, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 8.678000450134277, "detail": "UnityEngine.UI" } },
  2695. { "pid": 1, "tid": 39, "ts": 3562263.427734375, "dur": 8659.700393676758, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 8.659700393676758, "detail": "" } },
  2696. { "pid": 1, "tid": 39, "ts": 3570935.791015625, "dur": 14066.399574279785, "ph": "X", "name": "Idle", "args": { "durationMS": 14.066399574279785, "detail": "" } },
  2697. { "pid": 1, "tid": 39, "ts": 3587128.41796875, "dur": 66251.0986328125, "ph": "X", "name": "CompilerCalculateFieldValues", "args": { "durationMS": 66.2510986328125, "detail": "" } },
  2698. { "pid": 1, "tid": 39, "ts": 3587140.869140625, "dur": 66235.595703125, "ph": "X", "name": "Il2CppCCFieldValuesTable.cpp", "args": { "durationMS": 66.235595703125, "detail": "" } },
  2699. { "pid": 1, "tid": 39, "ts": 3611325.68359375, "dur": 35701.00021362305, "ph": "X", "name": "Il2CppCCalculateFieldValues.cpp", "args": { "durationMS": 35.70100021362305, "detail": "" } },
  2700. { "pid": 1, "tid": 39, "ts": 3653395.751953125, "dur": 39896.70181274414, "ph": "X", "name": "Idle", "args": { "durationMS": 39.89670181274414, "detail": "" } },
  2701. { "pid": 1, "tid": 40, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2702. { "pid": 1, "tid": 40, "ts": 3485105.46875, "dur": 14948.3003616333, "ph": "X", "name": "Idle", "args": { "durationMS": 14.9483003616333, "detail": "" } },
  2703. { "pid": 1, "tid": 40, "ts": 3500096.19140625, "dur": 678.2000064849854, "ph": "X", "name": "Idle", "args": { "durationMS": 0.6782000064849854, "detail": "" } },
  2704. { "pid": 1, "tid": 40, "ts": 3523172.8515625, "dur": 36509.9983215332, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 36.5099983215332, "detail": "System.Configuration" } },
  2705. { "pid": 1, "tid": 40, "ts": 3524083.251953125, "dur": 35598.4992980957, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 35.5984992980957, "detail": "" } },
  2706. { "pid": 1, "tid": 40, "ts": 3559696.044921875, "dur": 1518.4999704360962, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.5184999704360962, "detail": "UnityEngine.Physics2DModule" } },
  2707. { "pid": 1, "tid": 40, "ts": 3559711.181640625, "dur": 1502.6999711990356, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 1.5026999711990356, "detail": "" } },
  2708. { "pid": 1, "tid": 40, "ts": 3561218.017578125, "dur": 728.1000018119812, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 0.7281000018119812, "detail": "UnityEngine.SpriteShapeModule" } },
  2709. { "pid": 1, "tid": 40, "ts": 3561235.595703125, "dur": 709.8000049591064, "ph": "X", "name": "UnityEngine.SpriteShapeModule_CodeGen.c", "args": { "durationMS": 0.7098000049591064, "detail": "" } },
  2710. { "pid": 1, "tid": 40, "ts": 3561949.21875, "dur": 1062.8999471664429, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.0628999471664429, "detail": "UnityEngine.AudioModule" } },
  2711. { "pid": 1, "tid": 40, "ts": 3561966.064453125, "dur": 1045.4000234603882, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 1.0454000234603882, "detail": "" } },
  2712. { "pid": 1, "tid": 40, "ts": 3563015.869140625, "dur": 773.1999754905701, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 0.7731999754905701, "detail": "UnityEngine" } },
  2713. { "pid": 1, "tid": 40, "ts": 3563031.25, "dur": 756.6999793052673, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 0.7566999793052673, "detail": "" } },
  2714. { "pid": 1, "tid": 40, "ts": 3563793.212890625, "dur": 21184.499740600586, "ph": "X", "name": "Idle", "args": { "durationMS": 21.184499740600586, "detail": "" } },
  2715. { "pid": 1, "tid": 40, "ts": 3586326.416015625, "dur": 32444.09942626953, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 32.44409942626953, "detail": "" } },
  2716. { "pid": 1, "tid": 40, "ts": 3618786.865234375, "dur": 74504.99725341797, "ph": "X", "name": "Idle", "args": { "durationMS": 74.50499725341797, "detail": "" } },
  2717. { "pid": 1, "tid": 41, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2718. { "pid": 1, "tid": 41, "ts": 3485248.779296875, "dur": 14788.599967956543, "ph": "X", "name": "Idle", "args": { "durationMS": 14.788599967956543, "detail": "" } },
  2719. { "pid": 1, "tid": 41, "ts": 3500072.021484375, "dur": 703.4000158309937, "ph": "X", "name": "Idle", "args": { "durationMS": 0.7034000158309937, "detail": "" } },
  2720. { "pid": 1, "tid": 41, "ts": 3523650.390625, "dur": 35705.2001953125, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 35.7052001953125, "detail": "System.Xml" } },
  2721. { "pid": 1, "tid": 41, "ts": 3524077.63671875, "dur": 35276.89743041992, "ph": "X", "name": "System.Xml_CodeGen.c", "args": { "durationMS": 35.27689743041992, "detail": "" } },
  2722. { "pid": 1, "tid": 41, "ts": 3559443.603515625, "dur": 928.6999702453613, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 0.9286999702453613, "detail": "UnityEngine.GridModule" } },
  2723. { "pid": 1, "tid": 41, "ts": 3559478.02734375, "dur": 893.5999870300293, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 0.8935999870300293, "detail": "" } },
  2724. { "pid": 1, "tid": 41, "ts": 3560374.755859375, "dur": 2301.0001182556152, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 2.3010001182556152, "detail": "UnityEngine.IMGUIModule" } },
  2725. { "pid": 1, "tid": 41, "ts": 3560391.11328125, "dur": 2283.600091934204, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 2.283600091934204, "detail": "" } },
  2726. { "pid": 1, "tid": 41, "ts": 3562678.7109375, "dur": 965.7999873161316, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 0.9657999873161316, "detail": "UnityEngine.UnityWebRequestModule" } },
  2727. { "pid": 1, "tid": 41, "ts": 3562715.087890625, "dur": 929.099977016449, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 0.929099977016449, "detail": "" } },
  2728. { "pid": 1, "tid": 41, "ts": 3563658.935546875, "dur": 21318.79997253418, "ph": "X", "name": "Idle", "args": { "durationMS": 21.31879997253418, "detail": "" } },
  2729. { "pid": 1, "tid": 41, "ts": 3586159.912109375, "dur": 54332.000732421875, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 54.332000732421875, "detail": "" } },
  2730. { "pid": 1, "tid": 41, "ts": 3640516.11328125, "dur": 52773.40316772461, "ph": "X", "name": "Idle", "args": { "durationMS": 52.77340316772461, "detail": "" } },
  2731. { "pid": 1, "tid": 42, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2732. { "pid": 1, "tid": 42, "ts": 3485406.494140625, "dur": 14628.600120544434, "ph": "X", "name": "Idle", "args": { "durationMS": 14.628600120544434, "detail": "" } },
  2733. { "pid": 1, "tid": 42, "ts": 3500059.814453125, "dur": 751.2000203132629, "ph": "X", "name": "Idle", "args": { "durationMS": 0.7512000203132629, "detail": "" } },
  2734. { "pid": 1, "tid": 42, "ts": 3519919.677734375, "dur": 40134.098052978516, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 40.134098052978516, "detail": "UnityEngine.SharedInternalsModule" } },
  2735. { "pid": 1, "tid": 42, "ts": 3524069.3359375, "dur": 35983.802795410156, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 35.983802795410156, "detail": "" } },
  2736. { "pid": 1, "tid": 42, "ts": 3560064.94140625, "dur": 1636.1000537872314, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.6361000537872314, "detail": "UnityEngine.AnimationModule" } },
  2737. { "pid": 1, "tid": 42, "ts": 3560080.078125, "dur": 1620.300054550171, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 1.620300054550171, "detail": "" } },
  2738. { "pid": 1, "tid": 42, "ts": 3561704.58984375, "dur": 1806.399941444397, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.806399941444397, "detail": "UnityEngine.UIModule" } },
  2739. { "pid": 1, "tid": 42, "ts": 3561721.435546875, "dur": 1788.9000177383423, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 1.7889000177383423, "detail": "" } },
  2740. { "pid": 1, "tid": 42, "ts": 3563513.427734375, "dur": 1151.9999504089355, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 1.1519999504089355, "detail": "Assembly-CSharp" } },
  2741. { "pid": 1, "tid": 42, "ts": 3563530.76171875, "dur": 1134.0999603271484, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 1.1340999603271484, "detail": "" } },
  2742. { "pid": 1, "tid": 42, "ts": 3564672.119140625, "dur": 20305.299758911133, "ph": "X", "name": "Idle", "args": { "durationMS": 20.305299758911133, "detail": "" } },
  2743. { "pid": 1, "tid": 42, "ts": 3586159.912109375, "dur": 17894.899368286133, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 17.894899368286133, "detail": "" } },
  2744. { "pid": 1, "tid": 42, "ts": 3604388.18359375, "dur": 88902.39715576172, "ph": "X", "name": "Idle", "args": { "durationMS": 88.90239715576172, "detail": "" } },
  2745. { "pid": 1, "tid": 43, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2746. { "pid": 1, "tid": 43, "ts": 3485527.587890625, "dur": 14510.000228881836, "ph": "X", "name": "Idle", "args": { "durationMS": 14.510000228881836, "detail": "" } },
  2747. { "pid": 1, "tid": 43, "ts": 3500064.697265625, "dur": 709.5999717712402, "ph": "X", "name": "Idle", "args": { "durationMS": 0.7095999717712402, "detail": "" } },
  2748. { "pid": 1, "tid": 43, "ts": 3524895.01953125, "dur": 80644.19555664062, "ph": "X", "name": "Write Assembly Code Metadata", "args": { "durationMS": 80.64419555664062, "detail": "mscorlib" } },
  2749. { "pid": 1, "tid": 43, "ts": 3524911.1328125, "dur": 80627.39562988281, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 80.62739562988281, "detail": "" } },
  2750. { "pid": 1, "tid": 43, "ts": 3606228.271484375, "dur": 87028.0990600586, "ph": "X", "name": "Write Global Code Metadata", "args": { "durationMS": 87.0280990600586, "detail": "" } },
  2751. { "pid": 1, "tid": 43, "ts": 3609450.927734375, "dur": 1412.0999574661255, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 1.4120999574661255, "detail": "" } },
  2752. { "pid": 1, "tid": 43, "ts": 3611211.42578125, "dur": 19836.200714111328, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 19.836200714111328, "detail": "" } },
  2753. { "pid": 1, "tid": 43, "ts": 3631334.716796875, "dur": 3707.70001411438, "ph": "X", "name": "Il2CppGenericAdjustorThunkTable.cpp", "args": { "durationMS": 3.70770001411438, "detail": "" } },
  2754. { "pid": 1, "tid": 43, "ts": 3635311.03515625, "dur": 40522.20153808594, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 40.52220153808594, "detail": "" } },
  2755. { "pid": 1, "tid": 43, "ts": 3678144.04296875, "dur": 9813.699722290039, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 9.813699722290039, "detail": "" } },
  2756. { "pid": 1, "tid": 43, "ts": 3691784.66796875, "dur": 1469.6999788284302, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 1.4696999788284302, "detail": "" } },
  2757. { "pid": 1, "tid": 44, "ph": "M", "name": "thread_name", "args": { "name": "PhaseWorker" } },
  2758. { "pid": 1, "tid": 44, "ts": 3485672.36328125, "dur": 14384.700775146484, "ph": "X", "name": "Idle", "args": { "durationMS": 14.384700775146484, "detail": "" } },
  2759. { "pid": 1, "tid": 44, "ts": 3522247.802734375, "dur": 62806.20193481445, "ph": "X", "name": "Write Global Metadata", "args": { "durationMS": 62.80620193481445, "detail": "" } },
  2760. { "pid": 1, "tid": 44, "ts": 3523313.720703125, "dur": 61739.803314208984, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 61.739803314208984, "detail": "" } },
  2761. { "pid": 1, "tid": 44, "ts": 3525829.345703125, "dur": 53555.80139160156, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 53.55580139160156, "detail": "" } },
  2762. { "pid": 1, "tid": 44, "ts": 3579386.962890625, "dur": 3938.8999938964844, "ph": "X", "name": "Il2CppGenericInstCollectorComponent", "args": { "durationMS": 3.9388999938964844, "detail": "" } },
  2763. { "pid": 1, "tid": 44, "ts": 3587403.3203125, "dur": 66957.90100097656, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 66.95790100097656, "detail": "" } },
  2764. { "pid": 1, "tid": 44, "ts": 3587455.078125, "dur": 66903.80096435547, "ph": "X", "name": "Il2CppCCTypeValuesTable.cpp", "args": { "durationMS": 66.90380096435547, "detail": "" } },
  2765. { "pid": 1, "tid": 44, "ts": 3619465.33203125, "dur": 31744.400024414062, "ph": "X", "name": "Il2CppCCalculateTypeValues.cpp", "args": { "durationMS": 31.744400024414062, "detail": "" } },
  2766. { "pid": 1, "tid": 44, "ts": 3666835.44921875, "dur": 2368.7000274658203, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 2.3687000274658203, "detail": "" } },
  2767. { "pid": 1, "tid": 44, "ts": 3669208.984375, "dur": 24079.79965209961, "ph": "X", "name": "Idle", "args": { "durationMS": 24.07979965209961, "detail": "" } },
  2768. { "pid": 1, "tid": 36, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2769. { "pid": 1, "tid": 36, "ts": 4228759.765625, "dur": 514861.51123046875, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 514.8615112304688, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
  2770. { "pid": 1, "tid": 36, "ts": 4334165.52734375, "dur": 408621.0021972656, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 408.6210021972656, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
  2771. { "pid": 1, "tid": 36, "ts": 4742792.48046875, "dur": 823.7000107765198, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.8237000107765198, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include" } },
  2772. { "pid": 1, "tid": 35, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2773. { "pid": 1, "tid": 35, "ts": 4228762.6953125, "dur": 115990.5014038086, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 115.9905014038086, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
  2774. { "pid": 1, "tid": 35, "ts": 4334364.2578125, "dur": 9807.000160217285, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 9.807000160217285, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
  2775. { "pid": 1, "tid": 35, "ts": 4344181.15234375, "dur": 571.2000131607056, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.5712000131607056, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
  2776. { "pid": 1, "tid": 32, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2777. { "pid": 1, "tid": 32, "ts": 4228775.87890625, "dur": 337796.7224121094, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 337.7967224121094, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
  2778. { "pid": 1, "tid": 32, "ts": 4334256.34765625, "dur": 231459.50317382812, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 231.45950317382812, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
  2779. { "pid": 1, "tid": 32, "ts": 4565731.93359375, "dur": 833.0000042915344, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.8330000042915344, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src" } },
  2780. { "pid": 1, "tid": 31, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2781. { "pid": 1, "tid": 31, "ts": 4228780.2734375, "dur": 845843.505859375, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 845.843505859375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
  2782. { "pid": 1, "tid": 31, "ts": 4334356.93359375, "dur": 737520.263671875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 737.520263671875, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
  2783. { "pid": 1, "tid": 31, "ts": 5071885.7421875, "dur": 2727.2000312805176, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2.7272000312805176, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp" } },
  2784. { "pid": 1, "tid": 33, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2785. { "pid": 1, "tid": 33, "ts": 4228823.2421875, "dur": 115879.89807128906, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 115.87989807128906, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
  2786. { "pid": 1, "tid": 33, "ts": 4334165.52734375, "dur": 10035.400390625, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 10.035400390625, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
  2787. { "pid": 1, "tid": 33, "ts": 4344205.078125, "dur": 495.9000051021576, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.4959000051021576, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\xxHash" } },
  2788. { "pid": 1, "tid": 34, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2789. { "pid": 1, "tid": 34, "ts": 4233152.34375, "dur": 213024.0020751953, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 213.0240020751953, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
  2790. { "pid": 1, "tid": 34, "ts": 4334262.6953125, "dur": 111354.90417480469, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 111.35490417480469, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
  2791. { "pid": 1, "tid": 34, "ts": 4445623.53515625, "dur": 547.2999811172485, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.5472999811172485, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include" } },
  2792. { "pid": 1, "tid": 29, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2793. { "pid": 1, "tid": 29, "ts": 4233403.3203125, "dur": 108794.09790039062, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 108.79409790039062, "detail": "F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
  2794. { "pid": 1, "tid": 29, "ts": 4334165.52734375, "dur": 6480.100154876709, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 6.480100154876709, "detail": ".h F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
  2795. { "pid": 1, "tid": 29, "ts": 4340664.55078125, "dur": 1526.3999700546265, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.5263999700546265, "detail": ".inc F:\\cocorobo\\cocorobo-unity\\Library\\Il2cppBuildCache\\WebGL\\il2cppOutput" } },
  2796. { "pid": 1, "tid": 30, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2797. { "pid": 1, "tid": 30, "ts": 4233461.9140625, "dur": 109764.69421386719, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 109.76469421386719, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
  2798. { "pid": 1, "tid": 30, "ts": 4334370.60546875, "dur": 8449.899673461914, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 8.449899673461914, "detail": ".h E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
  2799. { "pid": 1, "tid": 30, "ts": 4342827.1484375, "dur": 397.19998836517334, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.39719998836517334, "detail": ".inc E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch" } },
  2800. { "pid": 1, "tid": 43, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2801. { "pid": 1, "tid": 43, "ts": 4340369.140625, "dur": 2376.300096511841, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.376300096511841, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\pch\\pch-c.h" } },
  2802. { "pid": 1, "tid": 37, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2803. { "pid": 1, "tid": 37, "ts": 4340392.08984375, "dur": 3140.1000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1401000022888184, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\BaselibPlatformSpecificEnvironment.h" } },
  2804. { "pid": 1, "tid": 37, "ts": 4343698.2421875, "dur": 403.2999873161316, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4032999873161316, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_ThreadLocalStorage.inl.h" } },
  2805. { "pid": 1, "tid": 27, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2806. { "pid": 1, "tid": 27, "ts": 4340433.59375, "dur": 3577.399969100952, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.577399969100952, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include\\C\\Baselib_Atomic_Platform.inl.h" } },
  2807. { "pid": 1, "tid": 40, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2808. { "pid": 1, "tid": 40, "ts": 4340476.5625, "dur": 3464.600086212158, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.464600086212158, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\xxHash\\xxh3.h" } },
  2809. { "pid": 1, "tid": 41, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2810. { "pid": 1, "tid": 41, "ts": 4340508.30078125, "dur": 3615.499973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.615499973297119, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\xxHash\\xxhash.h" } },
  2811. { "pid": 1, "tid": 45, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2812. { "pid": 1, "tid": 45, "ts": 4344630.859375, "dur": 1121.399998664856, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.121399998664856, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\char-conversions.h" } },
  2813. { "pid": 1, "tid": 45, "ts": 4345754.39453125, "dur": 81977.99682617188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 81.97799682617188, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common-small.h" } },
  2814. { "pid": 1, "tid": 45, "ts": 4427856.93359375, "dur": 2289.9999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2899999618530273, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-c-types.h" } },
  2815. { "pid": 1, "tid": 45, "ts": 4430148.92578125, "dur": 546.5999841690063, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5465999841690063, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\Allocator.h" } },
  2816. { "pid": 1, "tid": 45, "ts": 4430939.94140625, "dur": 455.90001344680786, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45590001344680786, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GCHandle.h" } },
  2817. { "pid": 1, "tid": 45, "ts": 4432279.78515625, "dur": 31316.997528076172, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 31.316997528076172, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Core\\System.IO.MemoryMappedFiles\\MemoryMapImpl.h" } },
  2818. { "pid": 1, "tid": 45, "ts": 4463793.9453125, "dur": 2244.8999881744385, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2448999881744385, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\DefaultConfig.h" } },
  2819. { "pid": 1, "tid": 45, "ts": 4466042.48046875, "dur": 916.700005531311, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.916700005531311, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\FileVersionInfo.h" } },
  2820. { "pid": 1, "tid": 45, "ts": 4466960.9375, "dur": 423.799991607666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.423799991607666, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterCategory.h" } },
  2821. { "pid": 1, "tid": 45, "ts": 4467713.8671875, "dur": 20951.400756835938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.951400756835938, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\perfcounters-def.h" } },
  2822. { "pid": 1, "tid": 45, "ts": 4488671.875, "dur": 2815.0999546051025, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8150999546051025, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackFrame.h" } },
  2823. { "pid": 1, "tid": 45, "ts": 4491619.62890625, "dur": 2310.30011177063, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.31030011177063, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareOptions.h" } },
  2824. { "pid": 1, "tid": 45, "ts": 4494103.515625, "dur": 386.9999945163727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3869999945163727, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\Generated\\CultureInfoInternalsNet_4_0.h" } },
  2825. { "pid": 1, "tid": 45, "ts": 4494492.67578125, "dur": 971.0999727249146, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9710999727249146, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\RegionInfo.h" } },
  2826. { "pid": 1, "tid": 45, "ts": 4495466.30859375, "dur": 25030.19905090332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 25.03019905090332, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\DriveInfo.h" } },
  2827. { "pid": 1, "tid": 45, "ts": 4520500.48828125, "dur": 17733.501434326172, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.733501434326172, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\MonoIO.h" } },
  2828. { "pid": 1, "tid": 45, "ts": 4538237.79296875, "dur": 795.199990272522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.795199990272522, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DerivedType.h" } },
  2829. { "pid": 1, "tid": 45, "ts": 4539039.0625, "dur": 368.2999908924103, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3682999908924103, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DynamicMethod.h" } },
  2830. { "pid": 1, "tid": 45, "ts": 4539952.1484375, "dur": 5190.100193023682, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.190100193023682, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\ModuleBuilder.h" } },
  2831. { "pid": 1, "tid": 45, "ts": 4545144.04296875, "dur": 375.99998712539673, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37599998712539673, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SymbolType.h" } },
  2832. { "pid": 1, "tid": 45, "ts": 4545522.4609375, "dur": 578.9999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5789999961853027, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Assembly.h" } },
  2833. { "pid": 1, "tid": 45, "ts": 4546103.515625, "dur": 489.19999599456787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.48919999599456787, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\CustomAttributeData.h" } },
  2834. { "pid": 1, "tid": 45, "ts": 4546846.6796875, "dur": 498.199999332428, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.498199999332428, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MemberInfo.h" } },
  2835. { "pid": 1, "tid": 45, "ts": 4547346.19140625, "dur": 1735.0000143051147, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7350000143051147, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Module.h" } },
  2836. { "pid": 1, "tid": 45, "ts": 4549086.9140625, "dur": 370.40001153945923, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37040001153945923, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoEventInfo.h" } },
  2837. { "pid": 1, "tid": 45, "ts": 4549463.37890625, "dur": 392.1999931335449, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3921999931335449, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericCMethod.h" } },
  2838. { "pid": 1, "tid": 45, "ts": 4549857.91015625, "dur": 361.9999885559082, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3619999885559082, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericMethod.h" } },
  2839. { "pid": 1, "tid": 45, "ts": 4550221.19140625, "dur": 393.0000066757202, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3930000066757202, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethodInfo.h" } },
  2840. { "pid": 1, "tid": 45, "ts": 4550615.234375, "dur": 2528.1999111175537, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5281999111175537, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\ParameterInfo.h" } },
  2841. { "pid": 1, "tid": 45, "ts": 4553148.92578125, "dur": 426.9999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4269999861717224, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.CompilerServices\\RuntimeHelpers.h" } },
  2842. { "pid": 1, "tid": 45, "ts": 4553577.63671875, "dur": 884.4000101089478, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8844000101089478, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\GCHandle.h" } },
  2843. { "pid": 1, "tid": 45, "ts": 4555158.203125, "dur": 412.69999742507935, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41269999742507935, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Policy\\Evidence.h" } },
  2844. { "pid": 1, "tid": 45, "ts": 4555840.8203125, "dur": 2174.7000217437744, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1747000217437744, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityManager.h" } },
  2845. { "pid": 1, "tid": 45, "ts": 4558017.08984375, "dur": 1036.5999937057495, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0365999937057495, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Mutex.h" } },
  2846. { "pid": 1, "tid": 45, "ts": 4559364.74609375, "dur": 1337.499976158142, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.337499976158142, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Thread.h" } },
  2847. { "pid": 1, "tid": 45, "ts": 4560705.078125, "dur": 1280.6999683380127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2806999683380127, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Activator.h" } },
  2848. { "pid": 1, "tid": 45, "ts": 4561987.79296875, "dur": 18493.501663208008, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.493501663208008, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ArgIterator.h" } },
  2849. { "pid": 1, "tid": 45, "ts": 4580482.91015625, "dur": 5433.4001541137695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.4334001541137695, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Buffer.h" } },
  2850. { "pid": 1, "tid": 45, "ts": 4585922.36328125, "dur": 603.5000085830688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6035000085830688, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Convert.h" } },
  2851. { "pid": 1, "tid": 45, "ts": 4586529.78515625, "dur": 592.4000144004822, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5924000144004822, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Decimal.h" } },
  2852. { "pid": 1, "tid": 45, "ts": 4587124.51171875, "dur": 27571.39778137207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 27.57139778137207, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Double.h" } },
  2853. { "pid": 1, "tid": 45, "ts": 4614698.73046875, "dur": 20539.8006439209, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.5398006439209, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api-types.h" } },
  2854. { "pid": 1, "tid": 45, "ts": 4635417.96875, "dur": 1033.2000255584717, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0332000255584717, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-blob.h" } },
  2855. { "pid": 1, "tid": 45, "ts": 4636455.078125, "dur": 500.8000135421753, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5008000135421753, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-config-api.h" } },
  2856. { "pid": 1, "tid": 45, "ts": 4636958.984375, "dur": 792.900025844574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.792900025844574, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-config.h" } },
  2857. { "pid": 1, "tid": 45, "ts": 4637754.39453125, "dur": 30527.999877929688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.527999877929688, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-number-formatter.h" } },
  2858. { "pid": 1, "tid": 45, "ts": 4668290.0390625, "dur": 2936.1000061035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.9361000061035156, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-pinvoke-support.h" } },
  2859. { "pid": 1, "tid": 45, "ts": 4671235.3515625, "dur": 602.1999716758728, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6021999716758728, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-runtime-metadata.h" } },
  2860. { "pid": 1, "tid": 45, "ts": 4672120.60546875, "dur": 12772.600173950195, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.772600173950195, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-tabledefs.h" } },
  2861. { "pid": 1, "tid": 45, "ts": 4684895.01953125, "dur": 2173.099994659424, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.173099994659424, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-windowsruntime-types.h" } },
  2862. { "pid": 1, "tid": 45, "ts": 4687069.82421875, "dur": 10889.800071716309, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.889800071716309, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\FieldLayout.h" } },
  2863. { "pid": 1, "tid": 45, "ts": 4697962.40234375, "dur": 1155.500054359436, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.155500054359436, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMethod.h" } },
  2864. { "pid": 1, "tid": 45, "ts": 4699121.58203125, "dur": 2498.8999366760254, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.4988999366760254, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericSharing.h" } },
  2865. { "pid": 1, "tid": 45, "ts": 4701621.58203125, "dur": 895.2999711036682, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8952999711036682, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassHash.h" } },
  2866. { "pid": 1, "tid": 45, "ts": 4702519.04296875, "dur": 1074.1000175476074, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0741000175476074, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextHash.h" } },
  2867. { "pid": 1, "tid": 45, "ts": 4703594.7265625, "dur": 669.2000031471252, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6692000031471252, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstHash.h" } },
  2868. { "pid": 1, "tid": 45, "ts": 4704264.6484375, "dur": 367.7000105381012, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3677000105381012, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodHash.h" } },
  2869. { "pid": 1, "tid": 45, "ts": 4704634.27734375, "dur": 462.09999918937683, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46209999918937683, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeCompare.h" } },
  2870. { "pid": 1, "tid": 45, "ts": 4705172.36328125, "dur": 922.3999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9223999977111816, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono-structs.h" } },
  2871. { "pid": 1, "tid": 45, "ts": 4706096.19140625, "dur": 1172.6000308990479, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1726000308990479, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMacros.h" } },
  2872. { "pid": 1, "tid": 45, "ts": 4707270.01953125, "dur": 1056.8000078201294, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0568000078201294, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolWorkerThread.h" } },
  2873. { "pid": 1, "tid": 45, "ts": 4708328.61328125, "dur": 2247.299909591675, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.247299909591675, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io.h" } },
  2874. { "pid": 1, "tid": 45, "ts": 4710643.5546875, "dur": 7210.599899291992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.210599899291992, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Atomic.h" } },
  2875. { "pid": 1, "tid": 45, "ts": 4717950.68359375, "dur": 380.29998540878296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38029998540878296, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConsoleExtension.h" } },
  2876. { "pid": 1, "tid": 45, "ts": 4719127.44140625, "dur": 5277.900218963623, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.277900218963623, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ErrorCodes.h" } },
  2877. { "pid": 1, "tid": 45, "ts": 4724512.20703125, "dur": 10560.0004196167, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.5600004196167, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketImpl.h" } },
  2878. { "pid": 1, "tid": 45, "ts": 4735074.21875, "dur": 17534.400939941406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.534400939941406, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixHelpers.h" } },
  2879. { "pid": 1, "tid": 45, "ts": 4752610.3515625, "dur": 1217.4999713897705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2174999713897705, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ReaderWriterLockImpl.h" } },
  2880. { "pid": 1, "tid": 45, "ts": 4753829.58984375, "dur": 1828.9999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8289999961853027, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SocketImpl.h" } },
  2881. { "pid": 1, "tid": 45, "ts": 4755748.53515625, "dur": 636.900007724762, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.636900007724762, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLock.h" } },
  2882. { "pid": 1, "tid": 45, "ts": 4756386.23046875, "dur": 821.3000297546387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8213000297546387, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Socket.h" } },
  2883. { "pid": 1, "tid": 45, "ts": 4757373.53515625, "dur": 369.70001459121704, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36970001459121704, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Thread.h" } },
  2884. { "pid": 1, "tid": 45, "ts": 4758186.03515625, "dur": 425.90001225471497, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42590001225471497, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ConditionVariableImpl.h" } },
  2885. { "pid": 1, "tid": 45, "ts": 4758939.453125, "dur": 1360.5999946594238, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3605999946594238, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ReaderWriterLockImpl.h" } },
  2886. { "pid": 1, "tid": 45, "ts": 4760301.26953125, "dur": 11696.100234985352, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.696100234985352, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadImpl.h" } },
  2887. { "pid": 1, "tid": 45, "ts": 4772000.9765625, "dur": 344.9000120162964, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3449000120162964, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHeaders.h" } },
  2888. { "pid": 1, "tid": 45, "ts": 4772347.16796875, "dur": 8349.599838256836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.349599838256836, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHelpers.h" } },
  2889. { "pid": 1, "tid": 45, "ts": 4780699.21875, "dur": 15023.698806762695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.023698806762695, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\ReferenceCounter.h" } },
  2890. { "pid": 1, "tid": 45, "ts": 4795727.05078125, "dur": 9793.999671936035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.793999671936035, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiWinRTEmulation.h" } },
  2891. { "pid": 1, "tid": 45, "ts": 4805527.34375, "dur": 9140.50006866455, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.14050006866455, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsGames\\Win32ApiWindowsGamesEmulation.h" } },
  2892. { "pid": 1, "tid": 45, "ts": 4814670.8984375, "dur": 4816.800117492676, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.816800117492676, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Allocator.h" } },
  2893. { "pid": 1, "tid": 45, "ts": 4819492.67578125, "dur": 5346.399784088135, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.346399784088135, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\COM-c-api.h" } },
  2894. { "pid": 1, "tid": 45, "ts": 4824840.8203125, "dur": 866.9000267982483, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8669000267982483, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Console-c-api.h" } },
  2895. { "pid": 1, "tid": 45, "ts": 4825709.9609375, "dur": 1516.4999961853027, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5164999961853027, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\CpuInfo-c-api.h" } },
  2896. { "pid": 1, "tid": 45, "ts": 4827537.109375, "dur": 18797.199249267578, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.797199249267578, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Directory-c-api.h" } },
  2897. { "pid": 1, "tid": 45, "ts": 4846337.40234375, "dur": 9197.999954223633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.197999954223633, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\File-c-api.h" } },
  2898. { "pid": 1, "tid": 45, "ts": 4855542.96875, "dur": 1171.8000173568726, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1718000173568726, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\LibraryLoader-c-api.h" } },
  2899. { "pid": 1, "tid": 45, "ts": 4856967.7734375, "dur": 564.4999742507935, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5644999742507935, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Memory-c-api.h" } },
  2900. { "pid": 1, "tid": 45, "ts": 4857814.94140625, "dur": 509.19997692108154, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5091999769210815, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Messages-c-api.h" } },
  2901. { "pid": 1, "tid": 45, "ts": 4858329.1015625, "dur": 16120.599746704102, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.1205997467041, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Mutex-c-api.h" } },
  2902. { "pid": 1, "tid": 45, "ts": 4874459.9609375, "dur": 378.1000077724457, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3781000077724457, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Path-c-api.h" } },
  2903. { "pid": 1, "tid": 45, "ts": 4874847.16796875, "dur": 627.9000043869019, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6279000043869019, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Process-c-api.h" } },
  2904. { "pid": 1, "tid": 45, "ts": 4875480.46875, "dur": 6867.300033569336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.867300033569336, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Semaphore-c-api.h" } },
  2905. { "pid": 1, "tid": 45, "ts": 4882352.05078125, "dur": 703.4000158309937, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7034000158309937, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Socket-c-api.h" } },
  2906. { "pid": 1, "tid": 45, "ts": 4883192.3828125, "dur": 434.5000088214874, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4345000088214874, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Thread-c-api.h" } },
  2907. { "pid": 1, "tid": 45, "ts": 4883758.30078125, "dur": 420.7000136375427, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4207000136375427, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Time-c-api.h" } },
  2908. { "pid": 1, "tid": 45, "ts": 4884273.4375, "dur": 481.2000095844269, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4812000095844269, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\TimeZoneInfo-c-api.h" } },
  2909. { "pid": 1, "tid": 45, "ts": 4884903.3203125, "dur": 5795.599937438965, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.795599937438965, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\il2cpp-config-platforms.h" } },
  2910. { "pid": 1, "tid": 45, "ts": 4890706.0546875, "dur": 734.7999811172485, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7347999811172485, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\PathHelper.h" } },
  2911. { "pid": 1, "tid": 45, "ts": 4891667.96875, "dur": 12979.700088500977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.979700088500977, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\CallOnce.h" } },
  2912. { "pid": 1, "tid": 45, "ts": 4904886.71875, "dur": 510.5000138282776, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5105000138282776, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Environment.h" } },
  2913. { "pid": 1, "tid": 45, "ts": 4905510.7421875, "dur": 4898.70023727417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.89870023727417, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ExceptionSupportStack.h" } },
  2914. { "pid": 1, "tid": 45, "ts": 4910412.59765625, "dur": 654.9999713897705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6549999713897705, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\ExtendedAtomicTypes.h" } },
  2915. { "pid": 1, "tid": 45, "ts": 4911216.796875, "dur": 1450.0999450683594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4500999450683594, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHashMap.h" } },
  2916. { "pid": 1, "tid": 45, "ts": 4912667.96875, "dur": 608.2000136375427, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6082000136375427, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Logging.h" } },
  2917. { "pid": 1, "tid": 45, "ts": 4913278.80859375, "dur": 335.2999985218048, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3352999985218048, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MarshalingUtils.h" } },
  2918. { "pid": 1, "tid": 45, "ts": 4913614.74609375, "dur": 1769.6000337600708, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7696000337600708, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MathUtils.h" } },
  2919. { "pid": 1, "tid": 45, "ts": 4915698.2421875, "dur": 10477.399826049805, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.477399826049805, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryUtils.h" } },
  2920. { "pid": 1, "tid": 45, "ts": 4926299.31640625, "dur": 633.3000063896179, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6333000063896179, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Output.h" } },
  2921. { "pid": 1, "tid": 45, "ts": 4926933.59375, "dur": 1066.59996509552, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.06659996509552, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Runtime.h" } },
  2922. { "pid": 1, "tid": 45, "ts": 4928002.44140625, "dur": 2975.399971008301, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.975399971008301, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringUtils.h" } },
  2923. { "pid": 1, "tid": 45, "ts": 4930979.00390625, "dur": 9167.799949645996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.167799949645996, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringViewUtils.h" } },
  2924. { "pid": 1, "tid": 45, "ts": 4940150.390625, "dur": 361.60001158714294, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36160001158714294, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\TemplateUtils.h" } },
  2925. { "pid": 1, "tid": 45, "ts": 4940514.6484375, "dur": 3176.800012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.176800012588501, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\dynamic_array.h" } },
  2926. { "pid": 1, "tid": 45, "ts": 4943692.3828125, "dur": 4338.399887084961, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.338399887084961, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\core.h" } },
  2927. { "pid": 1, "tid": 45, "ts": 4948035.15625, "dur": 11322.199821472168, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.322199821472168, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\unchecked.h" } },
  2928. { "pid": 1, "tid": 45, "ts": 4959361.328125, "dur": 12454.000473022461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.454000473022461, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System\\Math.h" } },
  2929. { "pid": 1, "tid": 45, "ts": 4971818.84765625, "dur": 5937.20006942749, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.93720006942749, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCWBase.h" } },
  2930. { "pid": 1, "tid": 45, "ts": 4977758.7890625, "dur": 716.8999910354614, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7168999910354614, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COMEntryPoints.h" } },
  2931. { "pid": 1, "tid": 45, "ts": 4978479.00390625, "dur": 3548.5000610351562, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5485000610351562, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CachedCCWBase.h" } },
  2932. { "pid": 1, "tid": 45, "ts": 4982280.76171875, "dur": 514.9000287055969, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5149000287055969, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Domain.h" } },
  2933. { "pid": 1, "tid": 45, "ts": 4982796.875, "dur": 673.9000082015991, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6739000082015991, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Enum.h" } },
  2934. { "pid": 1, "tid": 45, "ts": 4983540.52734375, "dur": 7168.600082397461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.168600082397461, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Exception.h" } },
  2935. { "pid": 1, "tid": 45, "ts": 4990711.42578125, "dur": 595.6000089645386, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5956000089645386, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericContainer.h" } },
  2936. { "pid": 1, "tid": 45, "ts": 4991308.59375, "dur": 7846.89998626709, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.84689998626709, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadata.h" } },
  2937. { "pid": 1, "tid": 45, "ts": 4999159.66796875, "dur": 873.0999827384949, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8730999827384949, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Image.h" } },
  2938. { "pid": 1, "tid": 45, "ts": 5000034.66796875, "dur": 639.6999955177307, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6396999955177307, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Liveness.h" } },
  2939. { "pid": 1, "tid": 45, "ts": 5000676.26953125, "dur": 9225.600242614746, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.225600242614746, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MemoryInformation.h" } },
  2940. { "pid": 1, "tid": 45, "ts": 5009904.78515625, "dur": 990.1999831199646, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9901999831199646, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLoader.h" } },
  2941. { "pid": 1, "tid": 45, "ts": 5011047.8515625, "dur": 2419.3999767303467, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.4193999767303467, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Method.h" } },
  2942. { "pid": 1, "tid": 45, "ts": 5013470.21484375, "dur": 511.2000107765198, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5112000107765198, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Module.h" } },
  2943. { "pid": 1, "tid": 45, "ts": 5013982.91015625, "dur": 817.3999786376953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8173999786376953, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\NonCachedCCWBase.h" } },
  2944. { "pid": 1, "tid": 45, "ts": 5014802.24609375, "dur": 551.5999794006348, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5515999794006348, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Parameter.h" } },
  2945. { "pid": 1, "tid": 45, "ts": 5015354.98046875, "dur": 9824.199676513672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.824199676513672, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\PlatformInvoke.h" } },
  2946. { "pid": 1, "tid": 45, "ts": 5025182.6171875, "dur": 374.1999864578247, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3741999864578247, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Property.h" } },
  2947. { "pid": 1, "tid": 45, "ts": 5025558.59375, "dur": 10484.100341796875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.484100341796875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\RCW.h" } },
  2948. { "pid": 1, "tid": 45, "ts": 5036049.31640625, "dur": 1248.0000257492065, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2480000257492065, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Runtime.h" } },
  2949. { "pid": 1, "tid": 45, "ts": 5037302.24609375, "dur": 10534.600257873535, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.534600257873535, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\String.h" } },
  2950. { "pid": 1, "tid": 45, "ts": 5047839.35546875, "dur": 9854.499816894531, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.854499816894531, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPool.h" } },
  2951. { "pid": 1, "tid": 45, "ts": 5057697.75390625, "dur": 335.59998869895935, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.33559998869895935, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WaitHandle.h" } },
  2952. { "pid": 1, "tid": 45, "ts": 5058034.66796875, "dur": 9286.999702453613, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.286999702453613, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WeakReference.h" } },
  2953. { "pid": 1, "tid": 45, "ts": 5067323.2421875, "dur": 4401.100158691406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.401100158691406, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WindowsRuntime.h" } },
  2954. { "pid": 1, "tid": 46, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  2955. { "pid": 1, "tid": 46, "ts": 4344799.31640625, "dur": 74807.80029296875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 74.80780029296875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common-big.h" } },
  2956. { "pid": 1, "tid": 46, "ts": 4419616.69921875, "dur": 3605.600118637085, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.605600118637085, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-il2cpp.h" } },
  2957. { "pid": 1, "tid": 46, "ts": 4423233.3984375, "dur": 670.799970626831, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.670799970626831, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-metadata.h" } },
  2958. { "pid": 1, "tid": 46, "ts": 4423907.71484375, "dur": 4300.000190734863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.300000190734863, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-tiny.h" } },
  2959. { "pid": 1, "tid": 46, "ts": 4428209.9609375, "dur": 33637.19940185547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 33.63719940185547, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-compat.h" } },
  2960. { "pid": 1, "tid": 46, "ts": 4461850.09765625, "dur": 1966.4000272750854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.9664000272750854, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Microsoft.Win32\\NativeMethods.h" } },
  2961. { "pid": 1, "tid": 46, "ts": 4463818.84765625, "dur": 631.7999958992004, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6317999958992004, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Configuration\\InternalConfigurationHost.h" } },
  2962. { "pid": 1, "tid": 46, "ts": 4464452.63671875, "dur": 2218.400001525879, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.218400001525879, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\DefaultTraceListener.h" } },
  2963. { "pid": 1, "tid": 46, "ts": 4466673.33984375, "dur": 376.19999051094055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37619999051094055, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounter.h" } },
  2964. { "pid": 1, "tid": 46, "ts": 4467052.734375, "dur": 570.900022983551, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.570900022983551, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterUtils.h" } },
  2965. { "pid": 1, "tid": 46, "ts": 4467965.33203125, "dur": 462.0000123977661, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4620000123977661, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\FileSystemWatcher.h" } },
  2966. { "pid": 1, "tid": 46, "ts": 4468816.40625, "dur": 491.100013256073, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.491100013256073, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\Socket.h" } },
  2967. { "pid": 1, "tid": 46, "ts": 4469416.9921875, "dur": 1349.2000102996826, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3492000102996826, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net\\Dns.h" } },
  2968. { "pid": 1, "tid": 46, "ts": 4470768.5546875, "dur": 395.00001072883606, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39500001072883606, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Threading\\Semaphore.h" } },
  2969. { "pid": 1, "tid": 46, "ts": 4471255.859375, "dur": 1614.400029182434, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.614400029182434, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Globalization.Unicode\\Normalization.h" } },
  2970. { "pid": 1, "tid": 46, "ts": 4473994.62890625, "dur": 603.9000153541565, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6039000153541565, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Assert.h" } },
  2971. { "pid": 1, "tid": 46, "ts": 4474600.5859375, "dur": 16772.098541259766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.772098541259766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Debugger.h" } },
  2972. { "pid": 1, "tid": 46, "ts": 4491525.390625, "dur": 969.0999984741211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9690999984741211, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareInfo.h" } },
  2973. { "pid": 1, "tid": 46, "ts": 4492589.35546875, "dur": 1542.6000356674194, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5426000356674194, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfo.h" } },
  2974. { "pid": 1, "tid": 46, "ts": 4494134.765625, "dur": 41718.20068359375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 41.71820068359375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\Generated\\CultureInfoTablesNet_4_0.h" } },
  2975. { "pid": 1, "tid": 46, "ts": 4535961.42578125, "dur": 2159.6999168395996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1596999168395996, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\AssemblyBuilder.h" } },
  2976. { "pid": 1, "tid": 46, "ts": 4538125, "dur": 6931.20002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.93120002746582, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\CustomAttributeBuilder.h" } },
  2977. { "pid": 1, "tid": 46, "ts": 4545233.88671875, "dur": 452.60000228881836, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45260000228881836, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\TypeBuilder.h" } },
  2978. { "pid": 1, "tid": 46, "ts": 4545691.40625, "dur": 933.0999851226807, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9330999851226807, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\AssemblyName.h" } },
  2979. { "pid": 1, "tid": 46, "ts": 4546625.9765625, "dur": 426.800012588501, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.426800012588501, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\FieldInfo.h" } },
  2980. { "pid": 1, "tid": 46, "ts": 4547054.19921875, "dur": 1263.4999752044678, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2634999752044678, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MethodBase.h" } },
  2981. { "pid": 1, "tid": 46, "ts": 4548322.75390625, "dur": 790.6000018119812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7906000018119812, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoCMethod.h" } },
  2982. { "pid": 1, "tid": 46, "ts": 4549128.41796875, "dur": 470.99998593330383, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47099998593330383, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoField.h" } },
  2983. { "pid": 1, "tid": 46, "ts": 4549883.30078125, "dur": 463.69999647140503, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46369999647140503, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethod.h" } },
  2984. { "pid": 1, "tid": 46, "ts": 4550348.6328125, "dur": 2513.9999389648438, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5139999389648438, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoPropertyInfo.h" } },
  2985. { "pid": 1, "tid": 46, "ts": 4553201.171875, "dur": 413.50001096725464, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41350001096725464, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices.WindowsRuntime\\UnsafeNativeMethods.h" } },
  2986. { "pid": 1, "tid": 46, "ts": 4553616.2109375, "dur": 1118.1000471115112, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1181000471115112, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\Marshal.h" } },
  2987. { "pid": 1, "tid": 46, "ts": 4555175.78125, "dur": 352.80001163482666, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35280001163482666, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsIdentity.h" } },
  2988. { "pid": 1, "tid": 46, "ts": 4555823.2421875, "dur": 653.4000039100647, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6534000039100647, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityFrame.h" } },
  2989. { "pid": 1, "tid": 46, "ts": 4556567.3828125, "dur": 728.6999821662903, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7286999821662903, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\EncodingHelper.h" } },
  2990. { "pid": 1, "tid": 46, "ts": 4557469.7265625, "dur": 1460.800051689148, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.460800051689148, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Monitor.h" } },
  2991. { "pid": 1, "tid": 46, "ts": 4558932.6171875, "dur": 503.3000111579895, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5033000111579895, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\NativeEventCalls.h" } },
  2992. { "pid": 1, "tid": 46, "ts": 4559437.5, "dur": 526.4000296592712, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5264000296592712, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\ThreadPool.h" } },
  2993. { "pid": 1, "tid": 46, "ts": 4560045.8984375, "dur": 1436.8000030517578, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4368000030517578, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\WaitHandle.h" } },
  2994. { "pid": 1, "tid": 46, "ts": 4561484.375, "dur": 10706.100463867188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.706100463867188, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\AppDomain.h" } },
  2995. { "pid": 1, "tid": 46, "ts": 4572197.265625, "dur": 8487.600326538086, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.487600326538086, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Array.h" } },
  2996. { "pid": 1, "tid": 46, "ts": 4580686.03515625, "dur": 581.499993801117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5814999938011169, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CLRConfig.h" } },
  2997. { "pid": 1, "tid": 46, "ts": 4581496.09375, "dur": 4459.3000411987305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.4593000411987305, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ConsoleDriver.h" } },
  2998. { "pid": 1, "tid": 46, "ts": 4585962.890625, "dur": 513.5999917984009, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5135999917984009, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CurrentSystemTimeZone.h" } },
  2999. { "pid": 1, "tid": 46, "ts": 4586732.91015625, "dur": 12371.899604797363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.371899604797363, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Delegate.h" } },
  3000. { "pid": 1, "tid": 46, "ts": 4599110.3515625, "dur": 597.5000262260437, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5975000262260437, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Enum.h" } },
  3001. { "pid": 1, "tid": 46, "ts": 4599712.40234375, "dur": 377.2999942302704, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3772999942302704, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Environment.h" } },
  3002. { "pid": 1, "tid": 46, "ts": 4600379.8828125, "dur": 349.40001368522644, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.34940001368522644, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\GC.h" } },
  3003. { "pid": 1, "tid": 46, "ts": 4600731.93359375, "dur": 402.7000069618225, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4027000069618225, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MissingMemberException.h" } },
  3004. { "pid": 1, "tid": 46, "ts": 4601247.55859375, "dur": 670.0000166893005, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6700000166893005, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoType.h" } },
  3005. { "pid": 1, "tid": 46, "ts": 4602757.32421875, "dur": 512.3999714851379, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5123999714851379, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeType.h" } },
  3006. { "pid": 1, "tid": 46, "ts": 4604269.04296875, "dur": 377.90000438690186, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.37790000438690186, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Type.h" } },
  3007. { "pid": 1, "tid": 46, "ts": 4605127.9296875, "dur": 30117.7978515625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.1177978515625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-api-functions.h" } },
  3008. { "pid": 1, "tid": 46, "ts": 4635247.55859375, "dur": 1039.8999452590942, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0398999452590942, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-benchmark-support.h" } },
  3009. { "pid": 1, "tid": 46, "ts": 4636291.9921875, "dur": 825.9999752044678, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8259999752044678, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-class-internals.h" } },
  3010. { "pid": 1, "tid": 46, "ts": 4637120.60546875, "dur": 481.9999933242798, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4819999933242798, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-metadata.h" } },
  3011. { "pid": 1, "tid": 46, "ts": 4637604.4921875, "dur": 13349.800109863281, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.349800109863281, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-normalization-tables.h" } },
  3012. { "pid": 1, "tid": 46, "ts": 4650958.0078125, "dur": 20337.600708007812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.337600708007812, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-object-internals.h" } },
  3013. { "pid": 1, "tid": 46, "ts": 4671299.31640625, "dur": 763.1000280380249, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7631000280380249, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-runtime-stats.h" } },
  3014. { "pid": 1, "tid": 46, "ts": 4672534.1796875, "dur": 14111.900329589844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.111900329589844, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\il2cpp-vm-support.h" } },
  3015. { "pid": 1, "tid": 46, "ts": 4686647.94921875, "dur": 11311.400413513184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.311400413513184, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\ArrayMetadata.h" } },
  3016. { "pid": 1, "tid": 46, "ts": 4697962.890625, "dur": 3023.6001014709473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0236001014709473, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMetadata.h" } },
  3017. { "pid": 1, "tid": 46, "ts": 4700987.79296875, "dur": 1439.2000436782837, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4392000436782837, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassCompare.h" } },
  3018. { "pid": 1, "tid": 46, "ts": 4702567.87109375, "dur": 1598.7999439239502, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5987999439239502, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstCompare.h" } },
  3019. { "pid": 1, "tid": 46, "ts": 4704298.828125, "dur": 416.79999232292175, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41679999232292175, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppSignature.h" } },
  3020. { "pid": 1, "tid": 46, "ts": 4704718.26171875, "dur": 942.300021648407, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.942300021648407, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeHash.h" } },
  3021. { "pid": 1, "tid": 46, "ts": 4705828.125, "dur": 982.200026512146, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.982200026512146, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolDataStructures.h" } },
  3022. { "pid": 1, "tid": 46, "ts": 4706811.5234375, "dur": 1146.9999551773071, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1469999551773071, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMonitorThread.h" } },
  3023. { "pid": 1, "tid": 46, "ts": 4707959.9609375, "dur": 548.3999848365784, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5483999848365784, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io-poll.h" } },
  3024. { "pid": 1, "tid": 46, "ts": 4708510.25390625, "dur": 6883.500099182129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.883500099182129, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms.h" } },
  3025. { "pid": 1, "tid": 46, "ts": 4715395.99609375, "dur": 2519.5000171661377, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5195000171661377, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\COM.h" } },
  3026. { "pid": 1, "tid": 46, "ts": 4718018.06640625, "dur": 333.6000144481659, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3336000144481659, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CpuInfo.h" } },
  3027. { "pid": 1, "tid": 46, "ts": 4718353.02734375, "dur": 368.80001425743103, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36880001425743103, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Cryptography.h" } },
  3028. { "pid": 1, "tid": 46, "ts": 4718801.7578125, "dur": 363.09999227523804, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36309999227523804, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Environment.h" } },
  3029. { "pid": 1, "tid": 46, "ts": 4719166.015625, "dur": 5158.500194549561, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.1585001945495605, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Event.h" } },
  3030. { "pid": 1, "tid": 46, "ts": 4724328.125, "dur": 2582.7999114990234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5827999114990234, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\File.h" } },
  3031. { "pid": 1, "tid": 46, "ts": 4726912.109375, "dur": 866.2999868392944, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8662999868392944, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Handle.h" } },
  3032. { "pid": 1, "tid": 46, "ts": 4730651.85546875, "dur": 4257.400035858154, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.257400035858154, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\FileHandle.h" } },
  3033. { "pid": 1, "tid": 46, "ts": 4734911.1328125, "dur": 17578.399658203125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.578399658203125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MutexImpl.h" } },
  3034. { "pid": 1, "tid": 46, "ts": 4752492.67578125, "dur": 1150.9000062942505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1509000062942505, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixWaitObject.h" } },
  3035. { "pid": 1, "tid": 46, "ts": 4753645.01953125, "dur": 660.7999801635742, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6607999801635742, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SemaphoreImpl.h" } },
  3036. { "pid": 1, "tid": 46, "ts": 4754307.6171875, "dur": 1084.6999883651733, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0846999883651733, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadImpl.h" } },
  3037. { "pid": 1, "tid": 46, "ts": 4755394.53125, "dur": 560.0000023841858, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5600000023841858, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadLocalValueImpl.h" } },
  3038. { "pid": 1, "tid": 46, "ts": 4755956.0546875, "dur": 387.49998807907104, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.38749998807907104, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLockImpl.h" } },
  3039. { "pid": 1, "tid": 46, "ts": 4756344.7265625, "dur": 518.8000202178955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5188000202178955, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Semaphore.h" } },
  3040. { "pid": 1, "tid": 46, "ts": 4756944.82421875, "dur": 426.40000581741333, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42640000581741333, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\StackTrace.h" } },
  3041. { "pid": 1, "tid": 46, "ts": 4757448.73046875, "dur": 358.50000381469727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35850000381469727, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ThreadLocalValue.h" } },
  3042. { "pid": 1, "tid": 46, "ts": 4757808.10546875, "dur": 493.6000108718872, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4936000108718872, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\TimeZone.h" } },
  3043. { "pid": 1, "tid": 46, "ts": 4758303.22265625, "dur": 427.700012922287, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.427700012922287, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\DllMain.h" } },
  3044. { "pid": 1, "tid": 46, "ts": 4758731.93359375, "dur": 972.100019454956, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.972100019454956, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MutexImpl.h" } },
  3045. { "pid": 1, "tid": 46, "ts": 4759977.05078125, "dur": 5278.800010681152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.278800010681152, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SocketImpl.h" } },
  3046. { "pid": 1, "tid": 46, "ts": 4765260.25390625, "dur": 13606.800079345703, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.606800079345703, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadLocalValueImpl.h" } },
  3047. { "pid": 1, "tid": 46, "ts": 4778871.09375, "dur": 6599.899768829346, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.599899768829346, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\BrokeredFileSystem.h" } },
  3048. { "pid": 1, "tid": 46, "ts": 4785473.6328125, "dur": 4892.7001953125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.8927001953125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\SynchronousOperation.h" } },
  3049. { "pid": 1, "tid": 46, "ts": 4790369.62890625, "dur": 15439.900398254395, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.439900398254395, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiSharedEmulation.h" } },
  3050. { "pid": 1, "tid": 46, "ts": 4805811.5234375, "dur": 11355.299949645996, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.355299949645996, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsRuntime.h" } },
  3051. { "pid": 1, "tid": 46, "ts": 4817168.9453125, "dur": 7643.400192260742, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.643400192260742, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Atomic-c-api.h" } },
  3052. { "pid": 1, "tid": 46, "ts": 4824815.91796875, "dur": 7418.399810791016, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.418399810791016, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ConditionVariable-c-api.h" } },
  3053. { "pid": 1, "tid": 46, "ts": 4832413.0859375, "dur": 644.599974155426, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.644599974155426, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Error-c-api.h" } },
  3054. { "pid": 1, "tid": 46, "ts": 4833062.01171875, "dur": 22338.098526000977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.338098526000977, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Event-c-api.h" } },
  3055. { "pid": 1, "tid": 46, "ts": 4855409.66796875, "dur": 10017.000198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.017000198364258, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Handle-c-api.h" } },
  3056. { "pid": 1, "tid": 46, "ts": 4865435.546875, "dur": 828.5999894142151, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8285999894142151, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\NativeMethods-c-api.h" } },
  3057. { "pid": 1, "tid": 46, "ts": 4866276.3671875, "dur": 33248.897552490234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 33.248897552490234, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\OSGlobalEnums.h" } },
  3058. { "pid": 1, "tid": 46, "ts": 4899529.296875, "dur": 11232.000350952148, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.232000350952148, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Collections.h" } },
  3059. { "pid": 1, "tid": 46, "ts": 4910763.671875, "dur": 412.80001401901245, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41280001401901245, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Functional.h" } },
  3060. { "pid": 1, "tid": 46, "ts": 4911178.7109375, "dur": 463.6000096797943, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4636000096797943, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHStringReference.h" } },
  3061. { "pid": 1, "tid": 46, "ts": 4911644.04296875, "dur": 660.4999899864197, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6604999899864197, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Il2CppHashSet.h" } },
  3062. { "pid": 1, "tid": 46, "ts": 4912306.640625, "dur": 1390.6999826431274, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3906999826431274, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\KeyWrapper.h" } },
  3063. { "pid": 1, "tid": 46, "ts": 4913699.21875, "dur": 1073.4000205993652, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0734000205993652, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Memory.h" } },
  3064. { "pid": 1, "tid": 46, "ts": 4914774.4140625, "dur": 906.5999984741211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9065999984741211, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryMappedFile.h" } },
  3065. { "pid": 1, "tid": 46, "ts": 4915682.6171875, "dur": 10465.60001373291, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.46560001373291, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryRead.h" } },
  3066. { "pid": 1, "tid": 46, "ts": 4926472.65625, "dur": 3269.2999839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2692999839782715, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\PathUtils.h" } },
  3067. { "pid": 1, "tid": 46, "ts": 4929743.1640625, "dur": 10696.000099182129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.696000099182129, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringView.h" } },
  3068. { "pid": 1, "tid": 46, "ts": 4940610.3515625, "dur": 358.0000102519989, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3580000102519989, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\sha1.h" } },
  3069. { "pid": 1, "tid": 46, "ts": 4940971.19140625, "dur": 1271.6000080108643, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2716000080108643, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8.h" } },
  3070. { "pid": 1, "tid": 46, "ts": 4942244.140625, "dur": 5801.799774169922, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.801799774169922, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\utf8-cpp\\source\\utf8\\checked.h" } },
  3071. { "pid": 1, "tid": 46, "ts": 4948048.828125, "dur": 1251.2999773025513, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2512999773025513, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\BlobReader.h" } },
  3072. { "pid": 1, "tid": 46, "ts": 4949304.19921875, "dur": 1198.8999843597412, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1988999843597412, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\Debugger.h" } },
  3073. { "pid": 1, "tid": 46, "ts": 4950505.37109375, "dur": 568.7000155448914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5687000155448914, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeDelegateMethodCache.h" } },
  3074. { "pid": 1, "tid": 46, "ts": 4951360.83984375, "dur": 12287.400245666504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.287400245666504, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System.Threading\\Interlocked.h" } },
  3075. { "pid": 1, "tid": 46, "ts": 4963652.34375, "dur": 992.7999973297119, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9927999973297119, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ActivationFactoryBase.h" } },
  3076. { "pid": 1, "tid": 46, "ts": 4964649.90234375, "dur": 473.1999933719635, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4731999933719635, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Array.h" } },
  3077. { "pid": 1, "tid": 46, "ts": 4965128.41796875, "dur": 1287.4000072479248, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2874000072479248, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Assembly.h" } },
  3078. { "pid": 1, "tid": 46, "ts": 4966420.41015625, "dur": 2834.89990234375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.83489990234375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\AssemblyName.h" } },
  3079. { "pid": 1, "tid": 46, "ts": 4969259.27734375, "dur": 8456.80046081543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.45680046081543, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCW.h" } },
  3080. { "pid": 1, "tid": 46, "ts": 4977720.703125, "dur": 1125.599980354309, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.125599980354309, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COM.h" } },
  3081. { "pid": 1, "tid": 46, "ts": 4978851.07421875, "dur": 3421.999931335449, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.421999931335449, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Class.h" } },
  3082. { "pid": 1, "tid": 46, "ts": 4982274.90234375, "dur": 5074.999809265137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.074999809265137, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ComObjectBase.h" } },
  3083. { "pid": 1, "tid": 46, "ts": 4987353.515625, "dur": 3080.6000232696533, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0806000232696533, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Field.h" } },
  3084. { "pid": 1, "tid": 46, "ts": 4990437.98828125, "dur": 1177.0999431610107, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1770999431610107, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericClass.h" } },
  3085. { "pid": 1, "tid": 46, "ts": 4991618.1640625, "dur": 7561.999797821045, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.561999797821045, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadataFileInternals.h" } },
  3086. { "pid": 1, "tid": 46, "ts": 4999186.5234375, "dur": 602.5999784469604, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6025999784469604, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\InternalCalls.h" } },
  3087. { "pid": 1, "tid": 46, "ts": 4999792.48046875, "dur": 544.2000031471252, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5442000031471252, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\LastError.h" } },
  3088. { "pid": 1, "tid": 46, "ts": 5000338.8671875, "dur": 536.8000268936157, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5368000268936157, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MarshalAlloc.h" } },
  3089. { "pid": 1, "tid": 46, "ts": 5000877.44140625, "dur": 576.3000249862671, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5763000249862671, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataAlloc.h" } },
  3090. { "pid": 1, "tid": 46, "ts": 5001457.03125, "dur": 12288.999557495117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.288999557495117, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataCache.h" } },
  3091. { "pid": 1, "tid": 46, "ts": 5013747.55859375, "dur": 857.699990272522, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.857699990272522, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Monitor.h" } },
  3092. { "pid": 1, "tid": 46, "ts": 5014606.4453125, "dur": 473.50001335144043, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47350001335144043, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Object.h" } },
  3093. { "pid": 1, "tid": 46, "ts": 5015393.5546875, "dur": 16661.100387573242, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.661100387573242, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Profiler.h" } },
  3094. { "pid": 1, "tid": 46, "ts": 5032057.12890625, "dur": 365.00000953674316, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.36500000953674316, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Random.h" } },
  3095. { "pid": 1, "tid": 46, "ts": 5032423.828125, "dur": 4100.500106811523, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.100500106811523, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Reflection.h" } },
  3096. { "pid": 1, "tid": 46, "ts": 5036529.296875, "dur": 597.9999899864197, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5979999899864197, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ScopedThreadAttacher.h" } },
  3097. { "pid": 1, "tid": 46, "ts": 5037138.18359375, "dur": 8234.999656677246, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.234999656677246, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\StackTrace.h" } },
  3098. { "pid": 1, "tid": 46, "ts": 5045379.8828125, "dur": 4510.0998878479, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.5100998878479, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Thread.h" } },
  3099. { "pid": 1, "tid": 46, "ts": 5050230.46875, "dur": 17631.101608276367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.631101608276367, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Type.h" } },
  3100. { "pid": 1, "tid": 47, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3101. { "pid": 1, "tid": 47, "ts": 4361095.21484375, "dur": 1528.9000272750854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5289000272750854, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\cord.h" } },
  3102. { "pid": 1, "tid": 47, "ts": 4362629.39453125, "dur": 711.899995803833, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.711899995803833, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\ec.h" } },
  3103. { "pid": 1, "tid": 47, "ts": 4363343.26171875, "dur": 401.8000066280365, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4018000066280365, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_alloc_ptrs.h" } },
  3104. { "pid": 1, "tid": 47, "ts": 4363747.0703125, "dur": 6556.000232696533, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.556000232696533, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_allocator.h" } },
  3105. { "pid": 1, "tid": 47, "ts": 4370305.6640625, "dur": 850.0000238418579, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8500000238418579, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_cpp.h" } },
  3106. { "pid": 1, "tid": 47, "ts": 4371157.2265625, "dur": 598.1000065803528, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5981000065803528, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_inline.h" } },
  3107. { "pid": 1, "tid": 47, "ts": 4371756.8359375, "dur": 610.7000112533569, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6107000112533569, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_pthread_redirects.h" } },
  3108. { "pid": 1, "tid": 47, "ts": 4372369.62890625, "dur": 450.10000467300415, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45010000467300415, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_tiny_fl.h" } },
  3109. { "pid": 1, "tid": 47, "ts": 4372821.77734375, "dur": 546.1000204086304, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5461000204086304, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_vector.h" } },
  3110. { "pid": 1, "tid": 47, "ts": 4373369.140625, "dur": 604.4999957084656, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6044999957084656, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\javaxfc.h" } },
  3111. { "pid": 1, "tid": 47, "ts": 4373975.09765625, "dur": 603.9000153541565, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6039000153541565, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\new_gc_alloc.h" } },
  3112. { "pid": 1, "tid": 47, "ts": 4374853.515625, "dur": 566.2999749183655, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5662999749183655, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_atomic_ops.h" } },
  3113. { "pid": 1, "tid": 47, "ts": 4375424.31640625, "dur": 502.69997119903564, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5026999711990356, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_locks.h" } },
  3114. { "pid": 1, "tid": 47, "ts": 4375928.7109375, "dur": 18889.799118041992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.889799118041992, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_priv.h" } },
  3115. { "pid": 1, "tid": 47, "ts": 4394822.265625, "dur": 18241.80030822754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.24180030822754, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\msvc_dbg.h" } },
  3116. { "pid": 1, "tid": 47, "ts": 4413067.3828125, "dur": 25985.1016998291, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 25.9851016998291, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\pthread_stop_world.h" } },
  3117. { "pid": 1, "tid": 47, "ts": 4439061.5234375, "dur": 3235.1999282836914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2351999282836914, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\pthread_support.h" } },
  3118. { "pid": 1, "tid": 47, "ts": 4442299.8046875, "dur": 3236.7000579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2367000579833984, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\thread_local_alloc.h" } },
  3119. { "pid": 1, "tid": 48, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3120. { "pid": 1, "tid": 48, "ts": 4361228.02734375, "dur": 1730.3999662399292, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7303999662399292, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\cord_pos.h" } },
  3121. { "pid": 1, "tid": 48, "ts": 4363167.48046875, "dur": 1128.7000179290771, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1287000179290771, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc.h" } },
  3122. { "pid": 1, "tid": 48, "ts": 4364297.36328125, "dur": 1598.3999967575073, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5983999967575073, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_backptr.h" } },
  3123. { "pid": 1, "tid": 48, "ts": 4365898.92578125, "dur": 4589.000225067139, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.589000225067139, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_config_macros.h" } },
  3124. { "pid": 1, "tid": 48, "ts": 4370769.04296875, "dur": 874.5999932289124, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8745999932289124, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_gcj.h" } },
  3125. { "pid": 1, "tid": 48, "ts": 4371646.484375, "dur": 725.0999808311462, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7250999808311462, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_mark.h" } },
  3126. { "pid": 1, "tid": 48, "ts": 4372372.55859375, "dur": 587.1999859809875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5871999859809875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_typed.h" } },
  3127. { "pid": 1, "tid": 48, "ts": 4372961.9140625, "dur": 522.0000147819519, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5220000147819519, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\gc_version.h" } },
  3128. { "pid": 1, "tid": 48, "ts": 4373484.86328125, "dur": 592.0000076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5920000076293945, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\leak_detector.h" } },
  3129. { "pid": 1, "tid": 48, "ts": 4374078.125, "dur": 548.3999848365784, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5483999848365784, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\darwin_semaphore.h" } },
  3130. { "pid": 1, "tid": 48, "ts": 4374628.41796875, "dur": 616.100013256073, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.616100013256073, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\dbg_mlc.h" } },
  3131. { "pid": 1, "tid": 48, "ts": 4375245.60546875, "dur": 620.5000281333923, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6205000281333923, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_hdrs.h" } },
  3132. { "pid": 1, "tid": 48, "ts": 4375869.62890625, "dur": 11424.300193786621, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.424300193786621, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gc_pmark.h" } },
  3133. { "pid": 1, "tid": 48, "ts": 4387297.8515625, "dur": 51860.90087890625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 51.86090087890625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\gcconfig.h" } },
  3134. { "pid": 1, "tid": 48, "ts": 4439163.0859375, "dur": 3227.099895477295, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.227099895477295, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\private\\specific.h" } },
  3135. { "pid": 1, "tid": 48, "ts": 4442391.6015625, "dur": 2863.5001182556152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8635001182556152, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\include\\weakpointer.h" } },
  3136. { "pid": 1, "tid": 49, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3137. { "pid": 1, "tid": 49, "ts": 4372835.44921875, "dur": 97561.10382080078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 97.56110382080078, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Baselib.h" } },
  3138. { "pid": 1, "tid": 49, "ts": 4470399.90234375, "dur": 61201.995849609375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 61.201995849609375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_TypeSafe.h" } },
  3139. { "pid": 1, "tid": 49, "ts": 4531605.95703125, "dur": 784.500002861023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.784500002861023, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Debug.h" } },
  3140. { "pid": 1, "tid": 49, "ts": 4532393.06640625, "dur": 627.6999711990356, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6276999711990356, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_DynamicLibrary.h" } },
  3141. { "pid": 1, "tid": 49, "ts": 4533022.94921875, "dur": 400.9000062942505, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4009000062942505, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ErrorCode.h" } },
  3142. { "pid": 1, "tid": 49, "ts": 4533425.29296875, "dur": 2242.000102996826, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.242000102996826, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ErrorState.h" } },
  3143. { "pid": 1, "tid": 49, "ts": 4535669.43359375, "dur": 12930.899620056152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.930899620056152, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_EventSemaphore.h" } },
  3144. { "pid": 1, "tid": 49, "ts": 4548604.00390625, "dur": 4322.89981842041, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.32289981842041, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_FileIO.h" } },
  3145. { "pid": 1, "tid": 49, "ts": 4553251.46484375, "dur": 367.5999939441681, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3675999939441681, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Lock.h" } },
  3146. { "pid": 1, "tid": 49, "ts": 4553621.09375, "dur": 1015.1000022888184, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0151000022888184, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Memory.h" } },
  3147. { "pid": 1, "tid": 49, "ts": 4554638.671875, "dur": 456.49999380111694, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45649999380111694, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_NetworkAddress.h" } },
  3148. { "pid": 1, "tid": 49, "ts": 4555304.6875, "dur": 476.20001435279846, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47620001435279846, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ReentrantLock.h" } },
  3149. { "pid": 1, "tid": 49, "ts": 4555782.71484375, "dur": 1807.7000379562378, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8077000379562378, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_RegisteredNetwork.h" } },
  3150. { "pid": 1, "tid": 49, "ts": 4557592.28515625, "dur": 1488.700032234192, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.488700032234192, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Socket.h" } },
  3151. { "pid": 1, "tid": 49, "ts": 4559234.86328125, "dur": 539.900004863739, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.539900004863739, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SystemSemaphore.h" } },
  3152. { "pid": 1, "tid": 49, "ts": 4559776.85546875, "dur": 356.79998993873596, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35679998993873596, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_ThreadLocalStorage.h" } },
  3153. { "pid": 1, "tid": 49, "ts": 4560136.23046875, "dur": 2412.3001098632812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.4123001098632812, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Timer.h" } },
  3154. { "pid": 1, "tid": 49, "ts": 4562550.78125, "dur": 14563.698768615723, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.563698768615723, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_CappedSemaphore_SemaphoreBased.inl.h" } },
  3155. { "pid": 1, "tid": 49, "ts": 4577117.67578125, "dur": 16020.898818969727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.020898818969727, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EventSemaphore_SemaphoreBased.inl.h" } },
  3156. { "pid": 1, "tid": 49, "ts": 4593422.36328125, "dur": 16652.89878845215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.65289878845215, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Semaphore_SemaphoreBased.inl.h" } },
  3157. { "pid": 1, "tid": 49, "ts": 4610084.9609375, "dur": 30989.999771118164, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.989999771118164, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc_Apple_LLVM_Patch.h" } },
  3158. { "pid": 1, "tid": 49, "ts": 4641079.1015625, "dur": 2750.9000301361084, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7509000301361084, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_LLSC_Gcc.inl.h" } },
  3159. { "pid": 1, "tid": 49, "ts": 4644140.13671875, "dur": 888.700008392334, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.888700008392334, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Atomic.h" } },
  3160. { "pid": 1, "tid": 49, "ts": 4645031.25, "dur": 370.9000051021576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3709000051021576, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Barrier.h" } },
  3161. { "pid": 1, "tid": 49, "ts": 4645402.83203125, "dur": 12773.799896240234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.773799896240234, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\BinarySemaphore.h" } },
  3162. { "pid": 1, "tid": 49, "ts": 4658181.640625, "dur": 2199.899911880493, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.199899911880493, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\CappedSemaphore.h" } },
  3163. { "pid": 1, "tid": 49, "ts": 4660677.24609375, "dur": 14462.899208068848, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.462899208068848, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\EventSemaphore.h" } },
  3164. { "pid": 1, "tid": 49, "ts": 4675145.5078125, "dur": 5098.299980163574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.098299980163574, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\Compiler\\ClangOrGcc\\AlgorithmClangOrGcc.inl.h" } },
  3165. { "pid": 1, "tid": 49, "ts": 4680247.0703125, "dur": 2338.7999534606934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.3387999534606934, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariableData_FutexBased.inl.h" } },
  3166. { "pid": 1, "tid": 49, "ts": 4682589.84375, "dur": 752.2000074386597, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7522000074386597, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariable_SemaphoreBased.inl.h" } },
  3167. { "pid": 1, "tid": 49, "ts": 4683343.26171875, "dur": 2722.599983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.722599983215332, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ReentrantLock.h" } },
  3168. { "pid": 1, "tid": 49, "ts": 4686067.87109375, "dur": 659.500002861023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.659500002861023, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Stopwatch.h" } },
  3169. { "pid": 1, "tid": 49, "ts": 4686729.00390625, "dur": 2280.4999351501465, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2804999351501465, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Thread.h" } },
  3170. { "pid": 1, "tid": 49, "ts": 4689011.23046875, "dur": 383.1000030040741, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3831000030040741, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_fixed_queue.h" } },
  3171. { "pid": 1, "tid": 49, "ts": 4689395.99609375, "dur": 11224.900245666504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.224900245666504, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node_stack.h" } },
  3172. { "pid": 1, "tid": 49, "ts": 4700623.046875, "dur": 2121.000051498413, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.121000051498413, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node_stack.h" } },
  3173. { "pid": 1, "tid": 49, "ts": 4702745.60546875, "dur": 1361.899971961975, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.361899971961975, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Assert.h" } },
  3174. { "pid": 1, "tid": 49, "ts": 4704109.86328125, "dur": 781.8999886512756, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7818999886512756, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentClang.h" } },
  3175. { "pid": 1, "tid": 49, "ts": 4704893.5546875, "dur": 986.0000014305115, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9860000014305115, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentMsvc.h" } },
  3176. { "pid": 1, "tid": 49, "ts": 4705881.8359375, "dur": 2579.6000957489014, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5796000957489014, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\CoreMacros.h" } },
  3177. { "pid": 1, "tid": 49, "ts": 4708464.84375, "dur": 3304.6000003814697, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3046000003814697, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\RedefineCompilerMacros.h" } },
  3178. { "pid": 1, "tid": 49, "ts": 4712014.16015625, "dur": 30632.099151611328, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.632099151611328, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\VerifyPlatformEnvironment.h" } },
  3179. { "pid": 1, "tid": 50, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3180. { "pid": 1, "tid": 50, "ts": 4372910.64453125, "dur": 580.7999968528748, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5807999968528748, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Alignment.h" } },
  3181. { "pid": 1, "tid": 50, "ts": 4373492.67578125, "dur": 835.9000086784363, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8359000086784363, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic.h" } },
  3182. { "pid": 1, "tid": 50, "ts": 4374329.58984375, "dur": 474.29999709129333, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47429999709129333, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_LLSC.h" } },
  3183. { "pid": 1, "tid": 50, "ts": 4374805.6640625, "dur": 124020.90454101562, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 124.02090454101562, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Atomic_Macros.h" } },
  3184. { "pid": 1, "tid": 50, "ts": 4498829.1015625, "dur": 24700.199127197266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.700199127197266, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_CappedSemaphore.h" } },
  3185. { "pid": 1, "tid": 50, "ts": 4523533.69140625, "dur": 33587.60070800781, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 33.58760070800781, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_CountdownTimer.h" } },
  3186. { "pid": 1, "tid": 50, "ts": 4557124.0234375, "dur": 1656.9000482559204, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6569000482559204, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Semaphore.h" } },
  3187. { "pid": 1, "tid": 50, "ts": 4559087.40234375, "dur": 608.3999872207642, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6083999872207642, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_SystemFutex.h" } },
  3188. { "pid": 1, "tid": 50, "ts": 4559696.77734375, "dur": 1475.000023841858, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.475000023841858, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_Thread.h" } },
  3189. { "pid": 1, "tid": 50, "ts": 4561179.19921875, "dur": 935.0000023841858, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9350000023841858, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Baselib_WakeupFallbackStrategy.h" } },
  3190. { "pid": 1, "tid": 50, "ts": 4562116.2109375, "dur": 3496.7000484466553, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4967000484466553, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_CappedSemaphore_FutexBased.inl.h" } },
  3191. { "pid": 1, "tid": 50, "ts": 4565615.72265625, "dur": 11172.699928283691, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.172699928283691, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EnumSizeCheck.h" } },
  3192. { "pid": 1, "tid": 50, "ts": 4576792.96875, "dur": 453.99999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45399999618530273, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_EventSemaphore_FutexBased.inl.h" } },
  3193. { "pid": 1, "tid": 50, "ts": 4577249.0234375, "dur": 562.7999901771545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5627999901771545, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_HighCapacitySemaphore_FutexBased.inl.h" } },
  3194. { "pid": 1, "tid": 50, "ts": 4578146.97265625, "dur": 12725.199699401855, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.725199699401855, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Lock_FutexBased.inl.h" } },
  3195. { "pid": 1, "tid": 50, "ts": 4590875.48828125, "dur": 2325.000047683716, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.325000047683716, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Lock_SemaphoreBased.inl.h" } },
  3196. { "pid": 1, "tid": 50, "ts": 4593202.1484375, "dur": 14375.399589538574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.375399589538574, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Baselib_Semaphore_FutexBased.inl.h" } },
  3197. { "pid": 1, "tid": 50, "ts": 4607581.54296875, "dur": 10944.600105285645, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.944600105285645, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc.h" } },
  3198. { "pid": 1, "tid": 50, "ts": 4618529.78515625, "dur": 22610.898971557617, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.610898971557617, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Gcc_Apple_LLVM_Patch_PostInclude.h" } },
  3199. { "pid": 1, "tid": 50, "ts": 4641142.578125, "dur": 2850.1999378204346, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8501999378204346, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\C\\Internal\\Compiler\\Baselib_Atomic_Msvc.h" } },
  3200. { "pid": 1, "tid": 50, "ts": 4643994.140625, "dur": 15878.199577331543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.878199577331543, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Algorithm.h" } },
  3201. { "pid": 1, "tid": 50, "ts": 4659875, "dur": 1368.6000108718872, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3686000108718872, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ConditionVariable.h" } },
  3202. { "pid": 1, "tid": 50, "ts": 4661246.58203125, "dur": 18911.100387573242, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.911100387573242, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\HighCapacitySemaphore.h" } },
  3203. { "pid": 1, "tid": 50, "ts": 4680162.109375, "dur": 995.4000115394592, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9954000115394592, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\Compiler\\Msvc\\AlgorithmMsvc.inl.h" } },
  3204. { "pid": 1, "tid": 50, "ts": 4681162.109375, "dur": 888.0000114440918, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8880000114440918, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariableData_SemaphoreBased.inl.h" } },
  3205. { "pid": 1, "tid": 50, "ts": 4682054.6875, "dur": 558.4999918937683, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5584999918937683, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Internal\\ConditionVariable_FutexBased.inl.h" } },
  3206. { "pid": 1, "tid": 50, "ts": 4682902.34375, "dur": 2545.9001064300537, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5459001064300537, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Lock.h" } },
  3207. { "pid": 1, "tid": 50, "ts": 4685450.68359375, "dur": 2191.4000511169434, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1914000511169434, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Semaphore.h" } },
  3208. { "pid": 1, "tid": 50, "ts": 4687645.01953125, "dur": 896.4999914169312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8964999914169312, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\ThreadLocalStorage.h" } },
  3209. { "pid": 1, "tid": 50, "ts": 4688543.9453125, "dur": 568.0999755859375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5680999755859375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\Time.h" } },
  3210. { "pid": 1, "tid": 50, "ts": 4689383.7890625, "dur": 882.7999830245972, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8827999830245972, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpmc_node_queue.h" } },
  3211. { "pid": 1, "tid": 50, "ts": 4690391.11328125, "dur": 12013.60034942627, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.01360034942627, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Cpp\\mpsc_node_queue.h" } },
  3212. { "pid": 1, "tid": 50, "ts": 4702407.2265625, "dur": 650.6999731063843, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6506999731063843, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\ArchitectureDetection.h" } },
  3213. { "pid": 1, "tid": 50, "ts": 4703059.08203125, "dur": 1159.000039100647, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.159000039100647, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\BasicTypes.h" } },
  3214. { "pid": 1, "tid": 50, "ts": 4704219.7265625, "dur": 2293.600082397461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.293600082397461, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\Compiler\\CompilerEnvironmentGcc.h" } },
  3215. { "pid": 1, "tid": 50, "ts": 4706515.13671875, "dur": 1081.7999839782715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0817999839782715, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\PlatformDetection.h" } },
  3216. { "pid": 1, "tid": 50, "ts": 4707598.6328125, "dur": 1132.3000192642212, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1323000192642212, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\PlatformEnvironment.h" } },
  3217. { "pid": 1, "tid": 50, "ts": 4708732.421875, "dur": 3123.500108718872, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.123500108718872, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\Internal\\RedefinePlatforms.h" } },
  3218. { "pid": 1, "tid": 50, "ts": 4712136.23046875, "dur": 8628.299713134766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.628299713134766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\PostExternalInclude.h" } },
  3219. { "pid": 1, "tid": 50, "ts": 4720766.6015625, "dur": 11412.500381469727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.412500381469727, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Include\\PreExternalInclude.h" } },
  3220. { "pid": 1, "tid": 51, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3221. { "pid": 1, "tid": 51, "ts": 4400613.76953125, "dur": 1364.0999794006348, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3640999794006348, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops.h" } },
  3222. { "pid": 1, "tid": 51, "ts": 4401979.98046875, "dur": 37753.501892089844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 37.753501892089844, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize-arithm.h" } },
  3223. { "pid": 1, "tid": 51, "ts": 4439736.81640625, "dur": 3208.400011062622, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.208400011062622, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic-small.h" } },
  3224. { "pid": 1, "tid": 51, "ts": 4442947.75390625, "dur": 15322.799682617188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.322799682617188, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\hexagon.h" } },
  3225. { "pid": 1, "tid": 51, "ts": 4458275.87890625, "dur": 16159.799575805664, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.159799575805664, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\ia64.h" } },
  3226. { "pid": 1, "tid": 51, "ts": 4474441.40625, "dur": 12891.799926757812, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.891799926757812, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\s390.h" } },
  3227. { "pid": 1, "tid": 51, "ts": 4487344.23828125, "dur": 691.6999816894531, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6916999816894531, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\sparc.h" } },
  3228. { "pid": 1, "tid": 51, "ts": 4488041.9921875, "dur": 10676.899909973145, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.676899909973145, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\generic_pthread.h" } },
  3229. { "pid": 1, "tid": 51, "ts": 4498721.6796875, "dur": 1225.8000373840332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2258000373840332, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_acquire_release_volatile.h" } },
  3230. { "pid": 1, "tid": 51, "ts": 4499949.70703125, "dur": 1818.0999755859375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8180999755859375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_atomic_store.h" } },
  3231. { "pid": 1, "tid": 51, "ts": 4501770.99609375, "dur": 395.79999446868896, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39579999446868896, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_acquire_release_volatile.h" } },
  3232. { "pid": 1, "tid": 51, "ts": 4502169.43359375, "dur": 10325.900077819824, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.325900077819824, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_atomic_store.h" } },
  3233. { "pid": 1, "tid": 51, "ts": 4512503.41796875, "dur": 481.4999997615814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4814999997615814, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\ordered_stores_only.h" } },
  3234. { "pid": 1, "tid": 51, "ts": 4512987.3046875, "dur": 3866.6999340057373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.8666999340057373, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_atomic_load.h" } },
  3235. { "pid": 1, "tid": 51, "ts": 4516855.95703125, "dur": 1326.300024986267, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.326300024986267, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\arm.h" } },
  3236. { "pid": 1, "tid": 51, "ts": 4518184.08203125, "dur": 7146.100044250488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.146100044250488, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\x86.h" } },
  3237. { "pid": 1, "tid": 51, "ts": 4525332.03125, "dur": 744.1999912261963, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7441999912261963, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ordered.h" } },
  3238. { "pid": 1, "tid": 51, "ts": 4526078.61328125, "dur": 1283.6999893188477, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2836999893188477, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ordered_except_wr.h" } },
  3239. { "pid": 1, "tid": 51, "ts": 4527377.9296875, "dur": 406.30000829696655, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40630000829696655, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\read_ordered.h" } },
  3240. { "pid": 1, "tid": 51, "ts": 4527786.62109375, "dur": 640.2000188827515, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6402000188827515, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\sunc\\x86.h" } },
  3241. { "pid": 1, "tid": 51, "ts": 4528428.7109375, "dur": 37110.40115356445, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 37.11040115356445, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\test_and_set_t_is_char.h" } },
  3242. { "pid": 1, "tid": 52, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3243. { "pid": 1, "tid": 52, "ts": 4400747.55859375, "dur": 11029.29973602295, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.02929973602295, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\ao_version.h" } },
  3244. { "pid": 1, "tid": 52, "ts": 4411780.76171875, "dur": 12042.3002243042, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.0423002243042, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize-small.h" } },
  3245. { "pid": 1, "tid": 52, "ts": 4423829.1015625, "dur": 2536.600112915039, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.536600112915039, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\generalize.h" } },
  3246. { "pid": 1, "tid": 52, "ts": 4426368.65234375, "dur": 356.79998993873596, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35679998993873596, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_acquire_release_volatile.h" } },
  3247. { "pid": 1, "tid": 52, "ts": 4426735.83984375, "dur": 1041.0000085830688, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0410000085830688, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_aligned_atomic_load_store.h" } },
  3248. { "pid": 1, "tid": 52, "ts": 4427778.3203125, "dur": 1005.5999755859375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0055999755859375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_atomic_load_store.h" } },
  3249. { "pid": 1, "tid": 52, "ts": 4428787.109375, "dur": 1498.4999895095825, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4984999895095825, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\all_atomic_only_load.h" } },
  3250. { "pid": 1, "tid": 52, "ts": 4430286.62109375, "dur": 525.6999731063843, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5256999731063843, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ao_t_is_int.h" } },
  3251. { "pid": 1, "tid": 52, "ts": 4430814.94140625, "dur": 406.8000018596649, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4068000018596649, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\armcc\\arm_v6.h" } },
  3252. { "pid": 1, "tid": 52, "ts": 4431223.14453125, "dur": 372.7000057697296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3727000057697296, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\emul_cas.h" } },
  3253. { "pid": 1, "tid": 52, "ts": 4431596.6796875, "dur": 409.39998626708984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.40939998626708984, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\aarch64.h" } },
  3254. { "pid": 1, "tid": 52, "ts": 4432189.453125, "dur": 621.9000220298767, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6219000220298767, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\arm.h" } },
  3255. { "pid": 1, "tid": 52, "ts": 4432813.4765625, "dur": 435.7999861240387, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4357999861240387, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\avr32.h" } },
  3256. { "pid": 1, "tid": 52, "ts": 4433490.234375, "dur": 7405.399799346924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.405399799346924, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic-arithm.h" } },
  3257. { "pid": 1, "tid": 52, "ts": 4440898.4375, "dur": 17372.30110168457, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.37230110168457, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\generic.h" } },
  3258. { "pid": 1, "tid": 52, "ts": 4458275.87890625, "dur": 1306.3000440597534, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3063000440597534, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\hppa.h" } },
  3259. { "pid": 1, "tid": 52, "ts": 4459586.9140625, "dur": 2234.8999977111816, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2348999977111816, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\m68k.h" } },
  3260. { "pid": 1, "tid": 52, "ts": 4461828.125, "dur": 2477.400064468384, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.477400064468384, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\mips.h" } },
  3261. { "pid": 1, "tid": 52, "ts": 4464307.6171875, "dur": 10606.100082397461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.606100082397461, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\powerpc.h" } },
  3262. { "pid": 1, "tid": 52, "ts": 4474916.015625, "dur": 12422.599792480469, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.422599792480469, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\sh.h" } },
  3263. { "pid": 1, "tid": 52, "ts": 4487359.375, "dur": 1556.2000274658203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5562000274658203, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\gcc\\x86.h" } },
  3264. { "pid": 1, "tid": 52, "ts": 4488919.43359375, "dur": 2694.200038909912, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.694200038909912, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\hpc\\hppa.h" } },
  3265. { "pid": 1, "tid": 52, "ts": 4491615.72265625, "dur": 940.500020980835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.940500020980835, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\hpc\\ia64.h" } },
  3266. { "pid": 1, "tid": 52, "ts": 4492558.10546875, "dur": 354.40000891685486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35440000891685486, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\ibmc\\powerpc.h" } },
  3267. { "pid": 1, "tid": 52, "ts": 4492915.0390625, "dur": 1414.9999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4149999618530273, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\icc\\ia64.h" } },
  3268. { "pid": 1, "tid": 52, "ts": 4494333.49609375, "dur": 735.7000112533569, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7357000112533569, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\acquire_release_volatile.h" } },
  3269. { "pid": 1, "tid": 52, "ts": 4495075.1953125, "dur": 2640.199899673462, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.640199899673462, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\atomic_load.h" } },
  3270. { "pid": 1, "tid": 52, "ts": 4497718.26171875, "dur": 2115.299940109253, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.115299940109253, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\atomic_store.h" } },
  3271. { "pid": 1, "tid": 52, "ts": 4499835.9375, "dur": 1840.89994430542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.84089994430542, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\char_atomic_load.h" } },
  3272. { "pid": 1, "tid": 52, "ts": 4501682.6171875, "dur": 453.5999894142151, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4535999894142151, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\double_atomic_load_store.h" } },
  3273. { "pid": 1, "tid": 52, "ts": 4502138.18359375, "dur": 414.29999470710754, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.41429999470710754, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\int_atomic_load.h" } },
  3274. { "pid": 1, "tid": 52, "ts": 4502554.19921875, "dur": 10174.200057983398, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.174200057983398, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\ordered_loads_only.h" } },
  3275. { "pid": 1, "tid": 52, "ts": 4512730.95703125, "dur": 4060.299873352051, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.060299873352051, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_acquire_release_volatile.h" } },
  3276. { "pid": 1, "tid": 52, "ts": 4516795.8984375, "dur": 1347.599983215332, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.347599983215332, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\loadstore\\short_atomic_store.h" } },
  3277. { "pid": 1, "tid": 52, "ts": 4518145.5078125, "dur": 7057.799816131592, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.057799816131592, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\common32_defs.h" } },
  3278. { "pid": 1, "tid": 52, "ts": 4525208.984375, "dur": 2203.5000324249268, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2035000324249268, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\msftc\\x86_64.h" } },
  3279. { "pid": 1, "tid": 52, "ts": 4527745.60546875, "dur": 510.3999972343445, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5103999972343445, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops\\sysdeps\\sunc\\sparc.h" } },
  3280. { "pid": 1, "tid": 61, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3281. { "pid": 1, "tid": 61, "ts": 5075615.234375, "dur": 378038.6962890625, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 378.0386962890625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
  3282. { "pid": 1, "tid": 61, "ts": 5075632.8125, "dur": 156210.60180664062, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 156.21060180664062, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
  3283. { "pid": 1, "tid": 61, "ts": 5231847.65625, "dur": 221799.49951171875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 221.79949951171875, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc" } },
  3284. { "pid": 1, "tid": 62, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3285. { "pid": 1, "tid": 62, "ts": 5075718.75, "dur": 153318.1915283203, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 153.3181915283203, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
  3286. { "pid": 1, "tid": 62, "ts": 5075724.12109375, "dur": 152852.60009765625, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 152.85260009765625, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
  3287. { "pid": 1, "tid": 62, "ts": 5228582.51953125, "dur": 452.8999924659729, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.4528999924659729, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen" } },
  3288. { "pid": 1, "tid": 63, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3289. { "pid": 1, "tid": 63, "ts": 5075794.921875, "dur": 4582.300186157227, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 4.582300186157227, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
  3290. { "pid": 1, "tid": 63, "ts": 5075799.31640625, "dur": 4147.39990234375, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 4.14739990234375, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
  3291. { "pid": 1, "tid": 63, "ts": 5079953.125, "dur": 423.5999882221222, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.4235999882221222, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger" } },
  3292. { "pid": 1, "tid": 63, "ts": 5080379.39453125, "dur": 958.299994468689, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 0.958299994468689, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
  3293. { "pid": 1, "tid": 63, "ts": 5080381.8359375, "dur": 444.7999894618988, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.4447999894618988, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
  3294. { "pid": 1, "tid": 63, "ts": 5080830.078125, "dur": 506.09999895095825, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.5060999989509583, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\plugin" } },
  3295. { "pid": 1, "tid": 63, "ts": 5081338.8671875, "dur": 112854.19464111328, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 112.85419464111328, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
  3296. { "pid": 1, "tid": 63, "ts": 5081341.30859375, "dur": 112332.59582519531, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 112.33259582519531, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
  3297. { "pid": 1, "tid": 63, "ts": 5193679.19921875, "dur": 512.3999714851379, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.5123999714851379, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils" } },
  3298. { "pid": 1, "tid": 64, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3299. { "pid": 1, "tid": 64, "ts": 5075899.4140625, "dur": 8945.199966430664, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 8.945199966430664, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
  3300. { "pid": 1, "tid": 64, "ts": 5075904.296875, "dur": 8612.99991607666, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 8.61299991607666, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc" } },
  3301. { "pid": 1, "tid": 64, "ts": 5084845.703125, "dur": 547262.8173828125, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 547.2628173828125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
  3302. { "pid": 1, "tid": 64, "ts": 5084848.6328125, "dur": 546765.8081054688, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 546.7658081054688, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
  3303. { "pid": 1, "tid": 64, "ts": 5631622.55859375, "dur": 480.30000925064087, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.48030000925064087, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm" } },
  3304. { "pid": 1, "tid": 65, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3305. { "pid": 1, "tid": 65, "ts": 5076049.31640625, "dur": 1207892.9443359375, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 1207.8929443359375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
  3306. { "pid": 1, "tid": 65, "ts": 5076053.7109375, "dur": 1206310.302734375, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1206.310302734375, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
  3307. { "pid": 1, "tid": 65, "ts": 6282372.0703125, "dur": 1562.5, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 1.5625, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls" } },
  3308. { "pid": 1, "tid": 69, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3309. { "pid": 1, "tid": 69, "ts": 5076074.70703125, "dur": 3738.100051879883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.738100051879883, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\debugger\\il2cpp-stubs.cpp" } },
  3310. { "pid": 1, "tid": 71, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3311. { "pid": 1, "tid": 71, "ts": 5076108.88671875, "dur": 18541.698455810547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.541698455810547, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-common.cpp" } },
  3312. { "pid": 1, "tid": 71, "ts": 5094653.3203125, "dur": 41998.79837036133, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 41.99879837036133, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-tiny.cpp" } },
  3313. { "pid": 1, "tid": 66, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3314. { "pid": 1, "tid": 66, "ts": 5076295.8984375, "dur": 32180.198669433594, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 32.180198669433594, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
  3315. { "pid": 1, "tid": 66, "ts": 5076301.26953125, "dur": 31699.901580810547, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 31.699901580810547, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
  3316. { "pid": 1, "tid": 66, "ts": 5108005.859375, "dur": 463.69999647140503, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.46369999647140503, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata" } },
  3317. { "pid": 1, "tid": 66, "ts": 5108477.5390625, "dur": 43399.00207519531, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 43.39900207519531, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
  3318. { "pid": 1, "tid": 66, "ts": 5108480.95703125, "dur": 42918.59817504883, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 42.91859817504883, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
  3319. { "pid": 1, "tid": 66, "ts": 5151405.2734375, "dur": 469.9000120162964, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.4699000120162964, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils" } },
  3320. { "pid": 1, "tid": 73, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3321. { "pid": 1, "tid": 73, "ts": 5076353.02734375, "dur": 3665.9998893737793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6659998893737793, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\BoehmGC.cpp" } },
  3322. { "pid": 1, "tid": 73, "ts": 5080021.484375, "dur": 2779.7000408172607, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7797000408172607, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GarbageCollector.cpp" } },
  3323. { "pid": 1, "tid": 73, "ts": 5082904.296875, "dur": 1531.3999652862549, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5313999652862549, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\WriteBarrierValidation.cpp" } },
  3324. { "pid": 1, "tid": 72, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3325. { "pid": 1, "tid": 72, "ts": 5076382.32421875, "dur": 152071.7010498047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 152.0717010498047, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\codegen\\il2cpp-codegen-il2cpp.cpp" } },
  3326. { "pid": 1, "tid": 67, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3327. { "pid": 1, "tid": 67, "ts": 5076569.3359375, "dur": 33825.199127197266, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 33.825199127197266, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
  3328. { "pid": 1, "tid": 67, "ts": 5076608.3984375, "dur": 33367.59948730469, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 33.36759948730469, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
  3329. { "pid": 1, "tid": 67, "ts": 5109979.00390625, "dur": 414.000004529953, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.414000004529953, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono" } },
  3330. { "pid": 1, "tid": 74, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3331. { "pid": 1, "tid": 74, "ts": 5076590.8203125, "dur": 4538.199901580811, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.5381999015808105, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\GCHandle.cpp" } },
  3332. { "pid": 1, "tid": 74, "ts": 5081130.37109375, "dur": 1820.7000494003296, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8207000494003296, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\gc\\NullGC.cpp" } },
  3333. { "pid": 1, "tid": 75, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3334. { "pid": 1, "tid": 75, "ts": 5076625.48828125, "dur": 22353.69873046875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.35369873046875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\ArrayMetadata.cpp" } },
  3335. { "pid": 1, "tid": 75, "ts": 5098983.3984375, "dur": 3204.7998905181885, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2047998905181885, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMetadata.cpp" } },
  3336. { "pid": 1, "tid": 75, "ts": 5102191.89453125, "dur": 1325.2999782562256, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3252999782562256, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericSharing.cpp" } },
  3337. { "pid": 1, "tid": 75, "ts": 5103520.01953125, "dur": 600.0999808311462, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6000999808311462, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassHash.cpp" } },
  3338. { "pid": 1, "tid": 75, "ts": 5104122.0703125, "dur": 1009.9999904632568, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0099999904632568, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextHash.cpp" } },
  3339. { "pid": 1, "tid": 75, "ts": 5105296.38671875, "dur": 1239.5000457763672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2395000457763672, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericMethodHash.cpp" } },
  3340. { "pid": 1, "tid": 75, "ts": 5106536.62109375, "dur": 1054.6000003814697, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0546000003814697, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeCompare.cpp" } },
  3341. { "pid": 1, "tid": 76, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3342. { "pid": 1, "tid": 76, "ts": 5076730.46875, "dur": 22271.799087524414, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.271799087524414, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\FieldLayout.cpp" } },
  3343. { "pid": 1, "tid": 76, "ts": 5099004.39453125, "dur": 3536.400079727173, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.536400079727173, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\GenericMethod.cpp" } },
  3344. { "pid": 1, "tid": 76, "ts": 5102543.45703125, "dur": 1313.8999938964844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3138999938964844, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericClassCompare.cpp" } },
  3345. { "pid": 1, "tid": 76, "ts": 5103859.375, "dur": 1064.0000104904175, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0640000104904175, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericContextCompare.cpp" } },
  3346. { "pid": 1, "tid": 76, "ts": 5104924.8046875, "dur": 1241.8999671936035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2418999671936035, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppGenericInstCompare.cpp" } },
  3347. { "pid": 1, "tid": 76, "ts": 5106168.45703125, "dur": 612.6000285148621, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6126000285148621, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppSignature.cpp" } },
  3348. { "pid": 1, "tid": 76, "ts": 5106782.2265625, "dur": 1125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\metadata\\Il2CppTypeHash.cpp" } },
  3349. { "pid": 1, "tid": 68, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3350. { "pid": 1, "tid": 68, "ts": 5076805.6640625, "dur": 2513132.32421875, "ph": "X", "name": "FileHashProvider.Initialize", "args": { "durationMS": 2513.13232421875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
  3351. { "pid": 1, "tid": 68, "ts": 5076809.5703125, "dur": 2512252.685546875, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 2512.252685546875, "detail": ".cpp E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
  3352. { "pid": 1, "tid": 68, "ts": 7589071.2890625, "dur": 857.9999804496765, "ph": "X", "name": "HashOfAllFilesWithProviderExtensionInDirectory", "args": { "durationMS": 0.8579999804496765, "detail": ".c E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os" } },
  3353. { "pid": 1, "tid": 77, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3354. { "pid": 1, "tid": 77, "ts": 5076910.15625, "dur": 22726.200103759766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.726200103759766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\MonoPosixHelper.cpp" } },
  3355. { "pid": 1, "tid": 77, "ts": 5099640.13671875, "dur": 5716.499805450439, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.7164998054504395, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolWorkerThread.cpp" } },
  3356. { "pid": 1, "tid": 77, "ts": 5105358.88671875, "dur": 3053.600072860718, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0536000728607178, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io.cpp" } },
  3357. { "pid": 1, "tid": 78, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3358. { "pid": 1, "tid": 78, "ts": 5077013.671875, "dur": 24211.79962158203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.21179962158203, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\ThreadPoolMonitorThread.cpp" } },
  3359. { "pid": 1, "tid": 78, "ts": 5101229.00390625, "dur": 4592.400074005127, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.592400074005127, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms-io-poll.cpp" } },
  3360. { "pid": 1, "tid": 78, "ts": 5105822.75390625, "dur": 4073.9002227783203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.07390022277832, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\mono\\ThreadPool\\threadpool-ms.cpp" } },
  3361. { "pid": 1, "tid": 79, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3362. { "pid": 1, "tid": 79, "ts": 5078563.96484375, "dur": 30136.098861694336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.136098861694336, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\Locale.cpp" } },
  3363. { "pid": 1, "tid": 79, "ts": 5108701.66015625, "dur": 2752.000093460083, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.752000093460083, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\TimeZoneInfo.cpp" } },
  3364. { "pid": 1, "tid": 79, "ts": 5111455.56640625, "dur": 2103.4998893737793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1034998893737793, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Emscripten\\SocketBridge.cpp" } },
  3365. { "pid": 1, "tid": 79, "ts": 5113681.640625, "dur": 453.29999923706055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.45329999923706055, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\COM.cpp" } },
  3366. { "pid": 1, "tid": 79, "ts": 5114509.765625, "dur": 348.80000352859497, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.34880000352859497, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\Handle.cpp" } },
  3367. { "pid": 1, "tid": 79, "ts": 5115211.42578125, "dur": 13414.600372314453, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.414600372314453, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\SocketImpl.cpp" } },
  3368. { "pid": 1, "tid": 79, "ts": 5128727.5390625, "dur": 339.80000019073486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.33980000019073486, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\LibraryLoader.cpp" } },
  3369. { "pid": 1, "tid": 79, "ts": 5129264.16015625, "dur": 13734.899520874023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.734899520874023, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\File.cpp" } },
  3370. { "pid": 1, "tid": 79, "ts": 5143001.46484375, "dur": 1856.9999933242798, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8569999933242798, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Lifecycle.cpp" } },
  3371. { "pid": 1, "tid": 79, "ts": 5144861.81640625, "dur": 496.8000054359436, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4968000054359436, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\StackTrace.cpp" } },
  3372. { "pid": 1, "tid": 79, "ts": 5145359.86328125, "dur": 7840.89994430542, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.84089994430542, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\TimeZoneInfo.cpp" } },
  3373. { "pid": 1, "tid": 79, "ts": 5153204.58984375, "dur": 23090.700149536133, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 23.090700149536133, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\Image.cpp" } },
  3374. { "pid": 1, "tid": 79, "ts": 5176431.15234375, "dur": 4524.799823760986, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.524799823760986, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Console.cpp" } },
  3375. { "pid": 1, "tid": 79, "ts": 5180957.51953125, "dur": 2701.900005340576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.701900005340576, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Directory.cpp" } },
  3376. { "pid": 1, "tid": 79, "ts": 5183662.59765625, "dur": 613.3999824523926, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6133999824523926, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Error.cpp" } },
  3377. { "pid": 1, "tid": 79, "ts": 5184277.83203125, "dur": 17511.699676513672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.511699676513672, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\EventImpl.cpp" } },
  3378. { "pid": 1, "tid": 79, "ts": 5201978.02734375, "dur": 3350.800037384033, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.350800037384033, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Image.cpp" } },
  3379. { "pid": 1, "tid": 79, "ts": 5205516.11328125, "dur": 1113.2999658584595, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1132999658584595, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Locale.cpp" } },
  3380. { "pid": 1, "tid": 79, "ts": 5206631.34765625, "dur": 28504.301071166992, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 28.504301071166992, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Memory.cpp" } },
  3381. { "pid": 1, "tid": 79, "ts": 5235137.20703125, "dur": 50700.00076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 50.70000076293945, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Path.cpp" } },
  3382. { "pid": 1, "tid": 79, "ts": 5285842.7734375, "dur": 1861.5000247955322, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8615000247955322, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SemaphoreImpl.cpp" } },
  3383. { "pid": 1, "tid": 79, "ts": 5287705.56640625, "dur": 32442.699432373047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 32.44269943237305, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\StackTrace.cpp" } },
  3384. { "pid": 1, "tid": 79, "ts": 5320152.34375, "dur": 2991.80006980896, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.99180006980896, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Time.cpp" } },
  3385. { "pid": 1, "tid": 79, "ts": 5323147.4609375, "dur": 24470.199584960938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.470199584960938, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\TimeZone.cpp" } },
  3386. { "pid": 1, "tid": 79, "ts": 5347620.1171875, "dur": 97597.40447998047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 97.59740447998047, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Cryptography.cpp" } },
  3387. { "pid": 1, "tid": 79, "ts": 5445220.703125, "dur": 9121.999740600586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.121999740600586, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\ThreadImpl.cpp" } },
  3388. { "pid": 1, "tid": 79, "ts": 5454345.21484375, "dur": 10215.900421142578, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.215900421142578, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\TimeZone.cpp" } },
  3389. { "pid": 1, "tid": 79, "ts": 5464563.4765625, "dur": 6919.099807739258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.919099807739258, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsRuntime.cpp" } },
  3390. { "pid": 1, "tid": 79, "ts": 5471490.234375, "dur": 77097.20611572266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 77.09720611572266, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\BrokeredFileSystem.cpp" } },
  3391. { "pid": 1, "tid": 79, "ts": 5548591.30859375, "dur": 23454.200744628906, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 23.454200744628906, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\File.cpp" } },
  3392. { "pid": 1, "tid": 79, "ts": 5572047.8515625, "dur": 26247.299194335938, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 26.247299194335938, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiWinRTEmulation.cpp" } },
  3393. { "pid": 1, "tid": 79, "ts": 5598296.875, "dur": 43125.797271728516, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 43.125797271728516, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\COM.cpp" } },
  3394. { "pid": 1, "tid": 79, "ts": 5641551.7578125, "dur": 2239.2001152038574, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2392001152038574, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Cryptography.cpp" } },
  3395. { "pid": 1, "tid": 79, "ts": 5643978.515625, "dur": 185920.6085205078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 185.9206085205078, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Directory.cpp" } },
  3396. { "pid": 1, "tid": 79, "ts": 5830074.21875, "dur": 476146.8811035156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 476.1468811035156, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Event.cpp" } },
  3397. { "pid": 1, "tid": 79, "ts": 6306225.5859375, "dur": 593308.7158203125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 593.3087158203125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Handle.cpp" } },
  3398. { "pid": 1, "tid": 79, "ts": 6899537.59765625, "dur": 803.2000064849854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8032000064849854, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\LibraryLoader.cpp" } },
  3399. { "pid": 1, "tid": 79, "ts": 6900516.6015625, "dur": 5375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\MemoryMappedFile.cpp" } },
  3400. { "pid": 1, "tid": 79, "ts": 6906043.45703125, "dur": 210587.2039794922, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 210.5872039794922, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Mutex.cpp" } },
  3401. { "pid": 1, "tid": 79, "ts": 7116634.765625, "dur": 3823.199987411499, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.823199987411499, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Path.cpp" } },
  3402. { "pid": 1, "tid": 79, "ts": 7120461.9140625, "dur": 395765.9912109375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 395.7659912109375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Semaphore.cpp" } },
  3403. { "pid": 1, "tid": 79, "ts": 7516232.91015625, "dur": 440.1000142097473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4401000142097473, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\SystemCertificates.cpp" } },
  3404. { "pid": 1, "tid": 79, "ts": 7516676.26953125, "dur": 2719.899892807007, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.719899892807007, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Time.cpp" } },
  3405. { "pid": 1, "tid": 79, "ts": 7519611.328125, "dur": 13056.900024414062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.056900024414062, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ConsoleTests.cpp" } },
  3406. { "pid": 1, "tid": 79, "ts": 7532671.875, "dur": 893.1999802589417, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8931999802589417, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\DebugTests.cpp" } },
  3407. { "pid": 1, "tid": 79, "ts": 7533566.40625, "dur": 6409.299850463867, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.409299850463867, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\EnvironmentTests.cpp" } },
  3408. { "pid": 1, "tid": 79, "ts": 7539979.98046875, "dur": 461.49998903274536, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46149998903274536, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ErrorTests.cpp" } },
  3409. { "pid": 1, "tid": 79, "ts": 7540443.359375, "dur": 2270.4999446868896, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2704999446868896, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\EventTests.cpp" } },
  3410. { "pid": 1, "tid": 79, "ts": 7542717.7734375, "dur": 18446.399688720703, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.446399688720703, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\FileTests.cpp" } },
  3411. { "pid": 1, "tid": 79, "ts": 7561166.9921875, "dur": 370.2999949455261, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3702999949455261, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\LocaleTests.cpp" } },
  3412. { "pid": 1, "tid": 79, "ts": 7561539.55078125, "dur": 9275.300025939941, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.275300025939941, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MainTestRunner.cpp" } },
  3413. { "pid": 1, "tid": 79, "ts": 7570822.75390625, "dur": 508.3000063896179, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5083000063896179, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MemoryMappedFileTests.cpp" } },
  3414. { "pid": 1, "tid": 79, "ts": 7571416.015625, "dur": 494.5000112056732, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4945000112056732, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MutexTests.cpp" } },
  3415. { "pid": 1, "tid": 79, "ts": 7571912.109375, "dur": 9382.30037689209, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.38230037689209, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\PathTests.cpp" } },
  3416. { "pid": 1, "tid": 79, "ts": 7581300.29296875, "dur": 7616.399765014648, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.616399765014648, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\SocketTests.cpp" } },
  3417. { "pid": 1, "tid": 81, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3418. { "pid": 1, "tid": 81, "ts": 5078566.89453125, "dur": 1687.1999502182007, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6871999502182007, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\Microsoft.Win32\\NativeMethods.cpp" } },
  3419. { "pid": 1, "tid": 81, "ts": 5080348.6328125, "dur": 1208.5000276565552, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2085000276565552, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.ComponentModel\\Win32Exception.cpp" } },
  3420. { "pid": 1, "tid": 81, "ts": 5081893.5546875, "dur": 1264.299988746643, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.264299988746643, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounter.cpp" } },
  3421. { "pid": 1, "tid": 81, "ts": 5083160.15625, "dur": 945.2000260353088, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9452000260353088, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterUtils.cpp" } },
  3422. { "pid": 1, "tid": 81, "ts": 5084355.95703125, "dur": 10418.000221252441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.418000221252441, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.IO\\InotifyWatcher.cpp" } },
  3423. { "pid": 1, "tid": 81, "ts": 5094887.20703125, "dur": 45298.099517822266, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 45.298099517822266, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.NetworkInformation\\MacOsIPInterfaceProperties.cpp" } },
  3424. { "pid": 1, "tid": 81, "ts": 5140366.69921875, "dur": 892.5999999046326, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8925999999046326, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net\\Dns.cpp" } },
  3425. { "pid": 1, "tid": 81, "ts": 5141437.5, "dur": 89007.2021484375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 89.0072021484375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Globalization.Unicode\\Normalization.cpp" } },
  3426. { "pid": 1, "tid": 81, "ts": 5230446.77734375, "dur": 1842.900037765503, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.842900037765503, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono.Security.Cryptography\\KeyPairPersistence.cpp" } },
  3427. { "pid": 1, "tid": 81, "ts": 5232607.421875, "dur": 16598.400115966797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.598400115966797, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\Debugger.cpp" } },
  3428. { "pid": 1, "tid": 81, "ts": 5249208.984375, "dur": 1186.2000226974487, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1862000226974487, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackTrace.cpp" } },
  3429. { "pid": 1, "tid": 81, "ts": 5250397.94921875, "dur": 7329.400062561035, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.329400062561035, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CompareInfo.cpp" } },
  3430. { "pid": 1, "tid": 81, "ts": 5257733.88671875, "dur": 3273.400068283081, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.273400068283081, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureInfo.cpp" } },
  3431. { "pid": 1, "tid": 81, "ts": 5261008.7890625, "dur": 42947.200775146484, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 42.947200775146484, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\DriveInfo.cpp" } },
  3432. { "pid": 1, "tid": 81, "ts": 5304050.78125, "dur": 59307.80029296875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 59.30780029296875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\AssemblyBuilder.cpp" } },
  3433. { "pid": 1, "tid": 81, "ts": 5363680.6640625, "dur": 8856.100082397461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.856100082397461, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\ModuleBuilder.cpp" } },
  3434. { "pid": 1, "tid": 81, "ts": 5372722.16796875, "dur": 2230.7000160217285, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2307000160217285, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\TypeBuilder.cpp" } },
  3435. { "pid": 1, "tid": 81, "ts": 5374955.078125, "dur": 467.20001101493835, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.46720001101493835, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\AssemblyName.cpp" } },
  3436. { "pid": 1, "tid": 81, "ts": 5375520.99609375, "dur": 28794.099807739258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 28.794099807739258, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\EventInfo.cpp" } },
  3437. { "pid": 1, "tid": 81, "ts": 5404317.87109375, "dur": 2112.299919128418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.112299919128418, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MemberInfo.cpp" } },
  3438. { "pid": 1, "tid": 81, "ts": 5406432.6171875, "dur": 822.700023651123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.822700023651123, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Module.cpp" } },
  3439. { "pid": 1, "tid": 81, "ts": 5407499.0234375, "dur": 1446.4000463485718, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4464000463485718, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoField.cpp" } },
  3440. { "pid": 1, "tid": 81, "ts": 5409031.73828125, "dur": 1452.3999691009521, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4523999691009521, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethodInfo.cpp" } },
  3441. { "pid": 1, "tid": 81, "ts": 5410485.3515625, "dur": 782.8999757766724, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7828999757766724, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoPropertyInfo.cpp" } },
  3442. { "pid": 1, "tid": 81, "ts": 5411270.01953125, "dur": 27392.301559448242, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 27.392301559448242, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\PropertyInfo.cpp" } },
  3443. { "pid": 1, "tid": 81, "ts": 5438671.875, "dur": 2376.6000270843506, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.3766000270843506, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.CompilerServices\\RuntimeHelpers.cpp" } },
  3444. { "pid": 1, "tid": 81, "ts": 5441051.7578125, "dur": 1072.4999904632568, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0724999904632568, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\GCHandle.cpp" } },
  3445. { "pid": 1, "tid": 81, "ts": 5442127.9296875, "dur": 3370.300054550171, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.370300054550171, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Activation\\ActivationServices.cpp" } },
  3446. { "pid": 1, "tid": 81, "ts": 5445631.8359375, "dur": 3979.7000885009766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9797000885009766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\AsyncResult.cpp" } },
  3447. { "pid": 1, "tid": 81, "ts": 5449613.76953125, "dur": 3704.4999599456787, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7044999599456787, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Proxies\\RealProxy.cpp" } },
  3448. { "pid": 1, "tid": 81, "ts": 5453469.7265625, "dur": 424.699991941452, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.424699991941452, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Cryptography\\RNGCryptoServiceProvider.cpp" } },
  3449. { "pid": 1, "tid": 81, "ts": 5453895.99609375, "dur": 68561.79809570312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 68.56179809570312, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsImpersonationContext.cpp" } },
  3450. { "pid": 1, "tid": 81, "ts": 5522459.9609375, "dur": 1766.1999464035034, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7661999464035034, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityFrame.cpp" } },
  3451. { "pid": 1, "tid": 81, "ts": 5524232.421875, "dur": 479.40000891685486, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.47940000891685486, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Encoding.cpp" } },
  3452. { "pid": 1, "tid": 81, "ts": 5524875.9765625, "dur": 6047.299861907959, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.047299861907959, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Monitor.cpp" } },
  3453. { "pid": 1, "tid": 81, "ts": 5530925.29296875, "dur": 1554.800033569336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.554800033569336, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\NativeEventCalls.cpp" } },
  3454. { "pid": 1, "tid": 81, "ts": 5532481.93359375, "dur": 393.20001006126404, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39320001006126404, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\ThreadPool.cpp" } },
  3455. { "pid": 1, "tid": 81, "ts": 5532963.8671875, "dur": 8160.499572753906, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.160499572753906, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\WaitHandle.cpp" } },
  3456. { "pid": 1, "tid": 81, "ts": 5541127.9296875, "dur": 17182.600021362305, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.182600021362305, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\AppDomain.cpp" } },
  3457. { "pid": 1, "tid": 81, "ts": 5558312.5, "dur": 394.3000137805939, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.39430001378059387, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Buffer.cpp" } },
  3458. { "pid": 1, "tid": 81, "ts": 5558800.78125, "dur": 30606.49871826172, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.60649871826172, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Char.cpp" } },
  3459. { "pid": 1, "tid": 81, "ts": 5589409.1796875, "dur": 6001.500129699707, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.001500129699707, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Convert.cpp" } },
  3460. { "pid": 1, "tid": 81, "ts": 5595613.76953125, "dur": 11037.300109863281, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.037300109863281, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Delegate.cpp" } },
  3461. { "pid": 1, "tid": 81, "ts": 5606654.296875, "dur": 2202.3000717163086, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2023000717163086, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Double.cpp" } },
  3462. { "pid": 1, "tid": 81, "ts": 5608858.88671875, "dur": 1060.7000589370728, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0607000589370728, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Environment.cpp" } },
  3463. { "pid": 1, "tid": 81, "ts": 5609921.38671875, "dur": 14347.101211547852, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.347101211547852, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\GC.cpp" } },
  3464. { "pid": 1, "tid": 81, "ts": 5624270.01953125, "dur": 8932.80029296875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.93280029296875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoType.cpp" } },
  3465. { "pid": 1, "tid": 81, "ts": 5633206.0546875, "dur": 3175.100088119507, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.175100088119507, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\NumberFormatter.cpp" } },
  3466. { "pid": 1, "tid": 81, "ts": 5636383.30078125, "dur": 837.3000025749207, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8373000025749207, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Object.cpp" } },
  3467. { "pid": 1, "tid": 81, "ts": 5637311.5234375, "dur": 7111.800193786621, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.111800193786621, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeType.cpp" } },
  3468. { "pid": 1, "tid": 81, "ts": 5644426.26953125, "dur": 188156.79931640625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 188.15679931640625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\String.cpp" } },
  3469. { "pid": 1, "tid": 81, "ts": 5832586.9140625, "dur": 448105.52978515625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 448.10552978515625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\TypedReference.cpp" } },
  3470. { "pid": 1, "tid": 81, "ts": 6280696.2890625, "dur": 1529.3999910354614, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5293999910354614, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\__ComObject.cpp" } },
  3471. { "pid": 1, "tid": 80, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3472. { "pid": 1, "tid": 80, "ts": 5078444.3359375, "dur": 22429.500579833984, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.429500579833984, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\Initialize.cpp" } },
  3473. { "pid": 1, "tid": 80, "ts": 5100877.9296875, "dur": 8569.700241088867, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.569700241088867, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Android\\StackTrace.cpp" } },
  3474. { "pid": 1, "tid": 80, "ts": 5109449.70703125, "dur": 1411.9999408721924, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4119999408721924, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ConditionVariable.cpp" } },
  3475. { "pid": 1, "tid": 80, "ts": 5110863.28125, "dur": 2499.799966812134, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.499799966812134, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\CrashHelpers.cpp" } },
  3476. { "pid": 1, "tid": 80, "ts": 5113488.76953125, "dur": 430.9000074863434, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.4309000074863434, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Event.cpp" } },
  3477. { "pid": 1, "tid": 80, "ts": 5114011.23046875, "dur": 381.5000057220459, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3815000057220459, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\CrashHelpers.cpp" } },
  3478. { "pid": 1, "tid": 80, "ts": 5114889.16015625, "dur": 434.70001220703125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.43470001220703125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\MemoryMappedFile.cpp" } },
  3479. { "pid": 1, "tid": 80, "ts": 5115433.10546875, "dur": 10600.099563598633, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.600099563598633, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\TimeZoneInfo.cpp" } },
  3480. { "pid": 1, "tid": 80, "ts": 5126035.64453125, "dur": 2704.699993133545, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.704699993133545, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Generic\\WindowsRuntime.cpp" } },
  3481. { "pid": 1, "tid": 80, "ts": 5128742.67578125, "dur": 14181.500434875488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.181500434875488, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Automation.cpp" } },
  3482. { "pid": 1, "tid": 80, "ts": 5143138.18359375, "dur": 2496.799945831299, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.496799945831299, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Lumin\\Process.cpp" } },
  3483. { "pid": 1, "tid": 80, "ts": 5145637.20703125, "dur": 6245.800018310547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.245800018310547, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Messages.cpp" } },
  3484. { "pid": 1, "tid": 80, "ts": 5151884.765625, "dur": 1330.0000429153442, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3300000429153442, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Mutex.cpp" } },
  3485. { "pid": 1, "tid": 80, "ts": 5153216.30859375, "dur": 711.1999988555908, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7111999988555908, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\Process.cpp" } },
  3486. { "pid": 1, "tid": 80, "ts": 5153929.6875, "dur": 22447.29995727539, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 22.44729995727539, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\OSX\\SystemCertificates.cpp" } },
  3487. { "pid": 1, "tid": 80, "ts": 5176379.39453125, "dur": 3187.999963760376, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.187999963760376, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ConditionVariableImpl.cpp" } },
  3488. { "pid": 1, "tid": 80, "ts": 5179982.421875, "dur": 1863.800048828125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.863800048828125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Cryptography.cpp" } },
  3489. { "pid": 1, "tid": 80, "ts": 5181848.14453125, "dur": 1549.0000247955322, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5490000247955322, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Encoding.cpp" } },
  3490. { "pid": 1, "tid": 80, "ts": 5183398.92578125, "dur": 1485.9999418258667, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4859999418258667, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Environment.cpp" } },
  3491. { "pid": 1, "tid": 80, "ts": 5184886.71875, "dur": 20442.09861755371, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.44209861755371, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\File.cpp" } },
  3492. { "pid": 1, "tid": 80, "ts": 5205332.51953125, "dur": 1291.8000221252441, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2918000221252441, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\LibraryLoader.cpp" } },
  3493. { "pid": 1, "tid": 80, "ts": 5206625.48828125, "dur": 11932.20043182373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.93220043182373, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MarshalAlloc.cpp" } },
  3494. { "pid": 1, "tid": 80, "ts": 5218560.546875, "dur": 2245.1000213623047, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2451000213623047, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MemoryMappedFile.cpp" } },
  3495. { "pid": 1, "tid": 80, "ts": 5220807.12890625, "dur": 555.4999709129333, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5554999709129333, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\MutexImpl.cpp" } },
  3496. { "pid": 1, "tid": 80, "ts": 5221364.74609375, "dur": 14409.900665283203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.409900665283203, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\NativeMethods.cpp" } },
  3497. { "pid": 1, "tid": 80, "ts": 5235775.87890625, "dur": 2526.7999172210693, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.5267999172210693, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixHelpers.cpp" } },
  3498. { "pid": 1, "tid": 80, "ts": 5238303.7109375, "dur": 426.60000920295715, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.42660000920295715, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\PosixWaitObject.cpp" } },
  3499. { "pid": 1, "tid": 80, "ts": 5238733.3984375, "dur": 47289.69955444336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 47.28969955444336, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\Process.cpp" } },
  3500. { "pid": 1, "tid": 80, "ts": 5286024.90234375, "dur": 2196.000099182129, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.196000099182129, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SocketImpl.cpp" } },
  3501. { "pid": 1, "tid": 80, "ts": 5288222.65625, "dur": 31925.500869750977, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 31.925500869750977, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\SystemCertificates.cpp" } },
  3502. { "pid": 1, "tid": 80, "ts": 5320152.34375, "dur": 3303.600072860718, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.3036000728607178, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Posix\\ThreadImpl.cpp" } },
  3503. { "pid": 1, "tid": 80, "ts": 5323461.42578125, "dur": 10208.100318908691, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.208100318908691, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\ReaderWriterLock.cpp" } },
  3504. { "pid": 1, "tid": 80, "ts": 5333673.33984375, "dur": 774.9000191688538, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7749000191688538, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Semaphore.cpp" } },
  3505. { "pid": 1, "tid": 80, "ts": 5334453.125, "dur": 3513.0999088287354, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5130999088287354, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Socket.cpp" } },
  3506. { "pid": 1, "tid": 80, "ts": 5337971.19140625, "dur": 1098.099946975708, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.098099946975708, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\StackTrace.cpp" } },
  3507. { "pid": 1, "tid": 80, "ts": 5339075.1953125, "dur": 1283.1000089645386, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2831000089645386, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Std\\ThreadImpl.cpp" } },
  3508. { "pid": 1, "tid": 80, "ts": 5340359.375, "dur": 989.6000027656555, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9896000027656555, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Thread.cpp" } },
  3509. { "pid": 1, "tid": 80, "ts": 5341848.14453125, "dur": 1466.5000438690186, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.4665000438690186, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Console.cpp" } },
  3510. { "pid": 1, "tid": 80, "ts": 5343315.91796875, "dur": 2241.6999340057373, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2416999340057373, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\CpuInfo.cpp" } },
  3511. { "pid": 1, "tid": 80, "ts": 5345559.5703125, "dur": 12763.199806213379, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.763199806213379, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\CrashHelpers.cpp" } },
  3512. { "pid": 1, "tid": 80, "ts": 5358428.7109375, "dur": 1627.6999711990356, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6276999711990356, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Directory.cpp" } },
  3513. { "pid": 1, "tid": 80, "ts": 5360221.19140625, "dur": 364.4999861717224, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3644999861717224, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Environment.cpp" } },
  3514. { "pid": 1, "tid": 80, "ts": 5360587.40234375, "dur": 18015.199661254883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.015199661254883, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\EventImpl.cpp" } },
  3515. { "pid": 1, "tid": 80, "ts": 5378604.4921875, "dur": 9146.599769592285, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.146599769592285, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\File.cpp" } },
  3516. { "pid": 1, "tid": 80, "ts": 5387962.40234375, "dur": 1393.8000202178955, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3938000202178955, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Handle.cpp" } },
  3517. { "pid": 1, "tid": 80, "ts": 5389359.86328125, "dur": 1743.6000108718872, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7436000108718872, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Image.cpp" } },
  3518. { "pid": 1, "tid": 80, "ts": 5391107.91015625, "dur": 1157.4000120162964, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1574000120162964, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Initialize.cpp" } },
  3519. { "pid": 1, "tid": 80, "ts": 5392453.61328125, "dur": 2852.4999618530273, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8524999618530273, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\LibraryLoader.cpp" } },
  3520. { "pid": 1, "tid": 80, "ts": 5395309.5703125, "dur": 504.40001487731934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5044000148773193, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Locale.cpp" } },
  3521. { "pid": 1, "tid": 80, "ts": 5395815.91796875, "dur": 1067.8999423980713, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.0678999423980713, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MarshalAlloc.cpp" } },
  3522. { "pid": 1, "tid": 80, "ts": 5396885.7421875, "dur": 913.6999845504761, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9136999845504761, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MarshalStringAlloc.cpp" } },
  3523. { "pid": 1, "tid": 80, "ts": 5397885.25390625, "dur": 1263.9000415802002, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2639000415802002, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\MemoryMappedFile.cpp" } },
  3524. { "pid": 1, "tid": 80, "ts": 5399391.6015625, "dur": 1172.0999479293823, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1720999479293823, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\NativeMethods.cpp" } },
  3525. { "pid": 1, "tid": 80, "ts": 5400565.4296875, "dur": 847.1999764442444, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8471999764442444, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Path.cpp" } },
  3526. { "pid": 1, "tid": 80, "ts": 5401413.57421875, "dur": 855.4999828338623, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8554999828338623, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Process.cpp" } },
  3527. { "pid": 1, "tid": 80, "ts": 5402270.99609375, "dur": 717.4999713897705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7174999713897705, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SemaphoreImpl.cpp" } },
  3528. { "pid": 1, "tid": 80, "ts": 5402989.74609375, "dur": 17586.000442504883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.586000442504883, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SocketImpl.cpp" } },
  3529. { "pid": 1, "tid": 80, "ts": 5420582.51953125, "dur": 1207.9999446868896, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2079999446868896, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\StackTrace.cpp" } },
  3530. { "pid": 1, "tid": 80, "ts": 5421796.875, "dur": 20790.199279785156, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.790199279785156, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SynchronizationContext.cpp" } },
  3531. { "pid": 1, "tid": 80, "ts": 5442589.84375, "dur": 4867.000102996826, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.867000102996826, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\SystemCertificates.cpp" } },
  3532. { "pid": 1, "tid": 80, "ts": 5447458.49609375, "dur": 15123.99959564209, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.12399959564209, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\Time.cpp" } },
  3533. { "pid": 1, "tid": 80, "ts": 5462585.9375, "dur": 25801.50032043457, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 25.80150032043457, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\Win32\\WindowsHelpers.cpp" } },
  3534. { "pid": 1, "tid": 80, "ts": 5488390.13671875, "dur": 3988.6999130249023, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.9886999130249023, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Cryptography.cpp" } },
  3535. { "pid": 1, "tid": 80, "ts": 5492381.34765625, "dur": 58643.39828491211, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 58.64339828491211, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Environment.cpp" } },
  3536. { "pid": 1, "tid": 80, "ts": 5551218.26171875, "dur": 8795.700073242188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.795700073242188, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Locale.cpp" } },
  3537. { "pid": 1, "tid": 80, "ts": 5560016.6015625, "dur": 3240.7000064849854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.2407000064849854, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\MarshalAlloc.cpp" } },
  3538. { "pid": 1, "tid": 80, "ts": 5563258.30078125, "dur": 7266.7999267578125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.2667999267578125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Process.cpp" } },
  3539. { "pid": 1, "tid": 80, "ts": 5570527.34375, "dur": 10077.099800109863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 10.077099800109863, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WinRT\\Win32ApiSharedEmulation.cpp" } },
  3540. { "pid": 1, "tid": 80, "ts": 5580606.4453125, "dur": 17614.200592041016, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 17.614200592041016, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\WindowsGames\\Win32ApiWindowsGamesEmulation.cpp" } },
  3541. { "pid": 1, "tid": 80, "ts": 5598224.609375, "dur": 12766.599655151367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.766599655151367, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Allocator.cpp" } },
  3542. { "pid": 1, "tid": 80, "ts": 5610993.1640625, "dur": 24524.499893188477, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.524499893188477, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ConditionVariable.cpp" } },
  3543. { "pid": 1, "tid": 80, "ts": 5635520.5078125, "dur": 191096.29821777344, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 191.09629821777344, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Console.cpp" } },
  3544. { "pid": 1, "tid": 80, "ts": 5826620.60546875, "dur": 469964.90478515625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 469.96490478515625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Environment.cpp" } },
  3545. { "pid": 1, "tid": 80, "ts": 6296588.8671875, "dur": 610570.0073242188, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 610.5700073242188, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\File.cpp" } },
  3546. { "pid": 1, "tid": 80, "ts": 6907161.62109375, "dur": 209549.1943359375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 209.5491943359375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\NativeMethods.cpp" } },
  3547. { "pid": 1, "tid": 80, "ts": 7116718.26171875, "dur": 3791.6998863220215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7916998863220215, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Process.cpp" } },
  3548. { "pid": 1, "tid": 80, "ts": 7120511.71875, "dur": 395773.8037109375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 395.7738037109375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\Socket.cpp" } },
  3549. { "pid": 1, "tid": 80, "ts": 7516443.359375, "dur": 2773.2999324798584, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7732999324798584, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\ThreadLocalValue.cpp" } },
  3550. { "pid": 1, "tid": 80, "ts": 7519609.86328125, "dur": 7357.900142669678, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.357900142669678, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ConditionVariableTests.cpp" } },
  3551. { "pid": 1, "tid": 80, "ts": 7527092.28515625, "dur": 5733.90007019043, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.73390007019043, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\CryptographyTests.cpp" } },
  3552. { "pid": 1, "tid": 80, "ts": 7532828.125, "dur": 13555.500984191895, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.555500984191895, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\DirectoryTests.cpp" } },
  3553. { "pid": 1, "tid": 80, "ts": 7546385.25390625, "dur": 24819.400787353516, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.819400787353516, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\LibraryLoaderTests.cpp" } },
  3554. { "pid": 1, "tid": 80, "ts": 7571207.03125, "dur": 602.6999950408936, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6026999950408936, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\MemoryTests.cpp" } },
  3555. { "pid": 1, "tid": 80, "ts": 7571924.8046875, "dur": 1881.2999725341797, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.8812999725341797, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ProcessTests.cpp" } },
  3556. { "pid": 1, "tid": 80, "ts": 7573807.12890625, "dur": 7646.100044250488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.646100044250488, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\SemaphoreTests.cpp" } },
  3557. { "pid": 1, "tid": 80, "ts": 7581454.1015625, "dur": 3115.4000759124756, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.1154000759124756, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\ThreadLocalValueTests.cpp" } },
  3558. { "pid": 1, "tid": 80, "ts": 7584659.66796875, "dur": 335.3999853134155, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3353999853134155, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\TimeTests.cpp" } },
  3559. { "pid": 1, "tid": 80, "ts": 7584997.55859375, "dur": 3565.200090408325, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.565200090408325, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\os\\c-api\\tests\\TimeZoneInfoTests.cpp" } },
  3560. { "pid": 1, "tid": 82, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3561. { "pid": 1, "tid": 82, "ts": 5078480.95703125, "dur": 3708.1000804901123, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.7081000804901123, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System.Core\\System.IO.MemoryMappedFiles\\MemoryMapImpl.cpp" } },
  3562. { "pid": 1, "tid": 82, "ts": 5082190.4296875, "dur": 1271.7000246047974, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2717000246047974, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\PerformanceCounterCategory.cpp" } },
  3563. { "pid": 1, "tid": 82, "ts": 5083463.37890625, "dur": 11480.799674987793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.480799674987793, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Diagnostics\\Process.cpp" } },
  3564. { "pid": 1, "tid": 82, "ts": 5094946.2890625, "dur": 45490.699768066406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 45.490699768066406, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Net.Sockets\\Socket.cpp" } },
  3565. { "pid": 1, "tid": 82, "ts": 5140438.96484375, "dur": 89938.5986328125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 89.9385986328125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\System\\System.Threading\\Semaphore.cpp" } },
  3566. { "pid": 1, "tid": 82, "ts": 5230573.73046875, "dur": 2030.1001071929932, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.030100107192993, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\Mono\\Runtime.cpp" } },
  3567. { "pid": 1, "tid": 82, "ts": 5232734.375, "dur": 16620.19920349121, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.62019920349121, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Diagnostics\\StackFrame.cpp" } },
  3568. { "pid": 1, "tid": 82, "ts": 5249357.421875, "dur": 1304.7000169754028, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3047000169754028, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CalendarData.cpp" } },
  3569. { "pid": 1, "tid": 82, "ts": 5250664.0625, "dur": 8906.200408935547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.906200408935547, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\CultureData.cpp" } },
  3570. { "pid": 1, "tid": 82, "ts": 5259572.75390625, "dur": 2417.59991645813, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.41759991645813, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Globalization\\RegionInfo.cpp" } },
  3571. { "pid": 1, "tid": 82, "ts": 5261991.69921875, "dur": 43798.20251464844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 43.79820251464844, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.IO\\MonoIO.cpp" } },
  3572. { "pid": 1, "tid": 82, "ts": 5305792.48046875, "dur": 57603.00064086914, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 57.60300064086914, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\CustomAttributeBuilder.cpp" } },
  3573. { "pid": 1, "tid": 82, "ts": 5363396.97265625, "dur": 8362.299919128418, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.362299919128418, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\DynamicMethod.cpp" } },
  3574. { "pid": 1, "tid": 82, "ts": 5371762.6953125, "dur": 3086.1001014709473, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0861001014709473, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection.Emit\\SignatureHelper.cpp" } },
  3575. { "pid": 1, "tid": 82, "ts": 5374853.515625, "dur": 1150.6999731063843, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1506999731063843, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\Assembly.cpp" } },
  3576. { "pid": 1, "tid": 82, "ts": 5376006.34765625, "dur": 28953.19938659668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 28.95319938659668, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\FieldInfo.cpp" } },
  3577. { "pid": 1, "tid": 82, "ts": 5404960.9375, "dur": 2449.700117111206, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.449700117111206, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MethodBase.cpp" } },
  3578. { "pid": 1, "tid": 82, "ts": 5407414.0625, "dur": 543.9000129699707, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5439000129699707, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoEventInfo.cpp" } },
  3579. { "pid": 1, "tid": 82, "ts": 5408042.48046875, "dur": 953.2999992370605, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9532999992370605, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoGenericClass.cpp" } },
  3580. { "pid": 1, "tid": 82, "ts": 5408997.55859375, "dur": 2239.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.239799976348877, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\MonoMethod.cpp" } },
  3581. { "pid": 1, "tid": 82, "ts": 5411238.28125, "dur": 27294.898986816406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 27.294898986816406, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\ParameterInfo.cpp" } },
  3582. { "pid": 1, "tid": 82, "ts": 5438539.55078125, "dur": 335.70000529289246, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.33570000529289246, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Reflection\\RtFieldInfo.cpp" } },
  3583. { "pid": 1, "tid": 82, "ts": 5438880.37109375, "dur": 2929.800033569336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.929800033569336, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices.WindowsRuntime\\UnsafeNativeMethods.cpp" } },
  3584. { "pid": 1, "tid": 82, "ts": 5441818.84765625, "dur": 5976.099967956543, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.976099967956543, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.InteropServices\\Marshal.cpp" } },
  3585. { "pid": 1, "tid": 82, "ts": 5447796.875, "dur": 3082.4999809265137, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0824999809265137, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting.Messaging\\MonoMethodMessage.cpp" } },
  3586. { "pid": 1, "tid": 82, "ts": 5450882.8125, "dur": 2761.899948120117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.761899948120117, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Runtime.Remoting\\RemotingServices.cpp" } },
  3587. { "pid": 1, "tid": 82, "ts": 5453782.2265625, "dur": 68636.00158691406, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 68.63600158691406, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsIdentity.cpp" } },
  3588. { "pid": 1, "tid": 82, "ts": 5522421.38671875, "dur": 1778.9000272750854, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.7789000272750854, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security.Principal\\WindowsPrincipal.cpp" } },
  3589. { "pid": 1, "tid": 82, "ts": 5524201.66015625, "dur": 510.5999708175659, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5105999708175659, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Security\\SecurityManager.cpp" } },
  3590. { "pid": 1, "tid": 82, "ts": 5524716.796875, "dur": 6058.199882507324, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.058199882507324, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Text\\Normalization.cpp" } },
  3591. { "pid": 1, "tid": 82, "ts": 5530777.34375, "dur": 1592.4999713897705, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5924999713897705, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Mutex.cpp" } },
  3592. { "pid": 1, "tid": 82, "ts": 5532473.14453125, "dur": 7031.300067901611, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.031300067901611, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System.Threading\\Thread.cpp" } },
  3593. { "pid": 1, "tid": 82, "ts": 5539507.32421875, "dur": 16096.498489379883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.096498489379883, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Activator.cpp" } },
  3594. { "pid": 1, "tid": 82, "ts": 5555607.421875, "dur": 2701.2999057769775, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7012999057769775, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ArgIterator.cpp" } },
  3595. { "pid": 1, "tid": 82, "ts": 5558311.03515625, "dur": 30967.802047729492, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.967802047729492, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Array.cpp" } },
  3596. { "pid": 1, "tid": 82, "ts": 5589282.2265625, "dur": 5481.400012969971, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.481400012969971, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ConsoleDriver.cpp" } },
  3597. { "pid": 1, "tid": 82, "ts": 5594767.578125, "dur": 643.2999968528748, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6432999968528748, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\CurrentSystemTimeZone.cpp" } },
  3598. { "pid": 1, "tid": 82, "ts": 5595415.0390625, "dur": 11668.600082397461, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.668600082397461, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Decimal.cpp" } },
  3599. { "pid": 1, "tid": 82, "ts": 5607085.44921875, "dur": 2766.7999267578125, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.7667999267578125, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Enum.cpp" } },
  3600. { "pid": 1, "tid": 82, "ts": 5609853.515625, "dur": 13668.701171875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.668701171875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Exception.cpp" } },
  3601. { "pid": 1, "tid": 82, "ts": 5623673.828125, "dur": 8338.800430297852, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.338800430297852, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\MonoCustomAttrs.cpp" } },
  3602. { "pid": 1, "tid": 82, "ts": 5632014.16015625, "dur": 5173.399925231934, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.173399925231934, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Number.cpp" } },
  3603. { "pid": 1, "tid": 82, "ts": 5637191.89453125, "dur": 696.7999935150146, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6967999935150146, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeFieldHandle.cpp" } },
  3604. { "pid": 1, "tid": 82, "ts": 5637890.625, "dur": 5913.700103759766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.913700103759766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\RuntimeTypeHandle.cpp" } },
  3605. { "pid": 1, "tid": 82, "ts": 5643806.15234375, "dur": 690.9999847412109, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6909999847412109, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\SizedReference.cpp" } },
  3606. { "pid": 1, "tid": 82, "ts": 5644571.2890625, "dur": 188286.40747070312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 188.28640747070312, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\Type.cpp" } },
  3607. { "pid": 1, "tid": 82, "ts": 5832859.86328125, "dur": 449445.4650878906, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 449.4454650878906, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\icalls\\mscorlib\\System\\ValueType.cpp" } },
  3608. { "pid": 1, "tid": 89, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3609. { "pid": 1, "tid": 89, "ts": 5081693.359375, "dur": 39551.89895629883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 39.55189895629883, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\DirectoryUtils.cpp" } },
  3610. { "pid": 1, "tid": 89, "ts": 5121246.58203125, "dur": 64099.19738769531, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 64.09919738769531, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Exception.cpp" } },
  3611. { "pid": 1, "tid": 89, "ts": 5185347.65625, "dur": 8226.200103759766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.226200103759766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\sha1.cpp" } },
  3612. { "pid": 1, "tid": 90, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3613. { "pid": 1, "tid": 90, "ts": 5081776.85546875, "dur": 39601.29928588867, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 39.60129928588867, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Environment.cpp" } },
  3614. { "pid": 1, "tid": 90, "ts": 5121453.125, "dur": 12992.600440979004, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.992600440979004, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Logging.cpp" } },
  3615. { "pid": 1, "tid": 90, "ts": 5134449.21875, "dur": 978.2000184059143, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9782000184059143, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MarshalingUtils.cpp" } },
  3616. { "pid": 1, "tid": 90, "ts": 5135431.15234375, "dur": 23993.101119995117, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 23.993101119995117, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Memory.cpp" } },
  3617. { "pid": 1, "tid": 90, "ts": 5159428.7109375, "dur": 8307.700157165527, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.307700157165527, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryMappedFile.cpp" } },
  3618. { "pid": 1, "tid": 90, "ts": 5167740.234375, "dur": 597.8999733924866, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5978999733924866, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\MemoryPool.cpp" } },
  3619. { "pid": 1, "tid": 90, "ts": 5168472.16796875, "dur": 1552.5000095367432, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5525000095367432, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\PathUtils.cpp" } },
  3620. { "pid": 1, "tid": 90, "ts": 5170027.34375, "dur": 9753.999710083008, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.753999710083008, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\Runtime.cpp" } },
  3621. { "pid": 1, "tid": 90, "ts": 5179782.71484375, "dur": 3586.9998931884766, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.5869998931884766, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\StringUtils.cpp" } },
  3622. { "pid": 1, "tid": 90, "ts": 5183372.0703125, "dur": 6774.099826812744, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.774099826812744, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\utils\\mono-structs.cpp" } },
  3623. { "pid": 1, "tid": 93, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3624. { "pid": 1, "tid": 93, "ts": 5085206.54296875, "dur": 33933.30001831055, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 33.93330001831055, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Array.cpp" } },
  3625. { "pid": 1, "tid": 93, "ts": 5119141.6015625, "dur": 143759.50622558594, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 143.75950622558594, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCW.cpp" } },
  3626. { "pid": 1, "tid": 93, "ts": 5262902.83203125, "dur": 659.2000126838684, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6592000126838684, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COMEntryPoints.cpp" } },
  3627. { "pid": 1, "tid": 93, "ts": 5263563.4765625, "dur": 19280.498504638672, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 19.280498504638672, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Class.cpp" } },
  3628. { "pid": 1, "tid": 93, "ts": 5282845.703125, "dur": 30082.49855041504, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 30.08249855041504, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Domain.cpp" } },
  3629. { "pid": 1, "tid": 93, "ts": 5312930.17578125, "dur": 16307.39974975586, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.30739974975586, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Enum.cpp" } },
  3630. { "pid": 1, "tid": 93, "ts": 5329240.72265625, "dur": 2675.600051879883, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.675600051879883, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Exception.cpp" } },
  3631. { "pid": 1, "tid": 93, "ts": 5331919.43359375, "dur": 12342.80014038086, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.34280014038086, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GenericClass.cpp" } },
  3632. { "pid": 1, "tid": 93, "ts": 5344264.16015625, "dur": 5002.099990844727, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.002099990844727, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Image.cpp" } },
  3633. { "pid": 1, "tid": 93, "ts": 5349268.06640625, "dur": 19359.399795532227, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 19.359399795532227, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\InternalCalls.cpp" } },
  3634. { "pid": 1, "tid": 93, "ts": 5368631.8359375, "dur": 1582.7000141143799, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.5827000141143799, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\LastError.cpp" } },
  3635. { "pid": 1, "tid": 93, "ts": 5370218.26171875, "dur": 1656.999945640564, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.656999945640564, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Liveness.cpp" } },
  3636. { "pid": 1, "tid": 93, "ts": 5371877.9296875, "dur": 973.800003528595, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.973800003528595, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MarshalAlloc.cpp" } },
  3637. { "pid": 1, "tid": 93, "ts": 5372854.4921875, "dur": 20681.900024414062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 20.681900024414062, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MemoryInformation.cpp" } },
  3638. { "pid": 1, "tid": 93, "ts": 5393540.52734375, "dur": 31589.099884033203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 31.589099884033203, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataCache.cpp" } },
  3639. { "pid": 1, "tid": 93, "ts": 5425467.28515625, "dur": 33189.49890136719, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 33.18949890136719, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Monitor.cpp" } },
  3640. { "pid": 1, "tid": 93, "ts": 5458660.15625, "dur": 15164.799690246582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.164799690246582, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Object.cpp" } },
  3641. { "pid": 1, "tid": 93, "ts": 5473827.63671875, "dur": 717.1000242233276, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.7171000242233276, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Parameter.cpp" } },
  3642. { "pid": 1, "tid": 93, "ts": 5474633.7890625, "dur": 913.6000275611877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9136000275611877, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\PlatformInvoke.cpp" } },
  3643. { "pid": 1, "tid": 93, "ts": 5475549.31640625, "dur": 683.2000017166138, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6832000017166138, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Profiler.cpp" } },
  3644. { "pid": 1, "tid": 93, "ts": 5476234.375, "dur": 9564.000129699707, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.564000129699707, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Property.cpp" } },
  3645. { "pid": 1, "tid": 93, "ts": 5485800.78125, "dur": 35201.499938964844, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 35.201499938964844, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\RCW.cpp" } },
  3646. { "pid": 1, "tid": 93, "ts": 5521004.39453125, "dur": 16185.199737548828, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.185199737548828, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Runtime.cpp" } },
  3647. { "pid": 1, "tid": 93, "ts": 5537315.91796875, "dur": 9877.300262451172, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.877300262451172, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\StackTrace.cpp" } },
  3648. { "pid": 1, "tid": 93, "ts": 5547197.75390625, "dur": 4107.500076293945, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.107500076293945, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\String.cpp" } },
  3649. { "pid": 1, "tid": 93, "ts": 5551308.10546875, "dur": 16042.098999023438, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 16.042098999023438, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPool.cpp" } },
  3650. { "pid": 1, "tid": 93, "ts": 5567352.05078125, "dur": 8242.300033569336, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 8.242300033569336, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\VisualizerHelpers.cpp" } },
  3651. { "pid": 1, "tid": 93, "ts": 5575596.19140625, "dur": 556.2000274658203, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5562000274658203, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WaitHandle.cpp" } },
  3652. { "pid": 1, "tid": 93, "ts": 5576153.80859375, "dur": 1329.300045967102, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.329300045967102, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WeakReference.cpp" } },
  3653. { "pid": 1, "tid": 93, "ts": 5577484.86328125, "dur": 608.6999773979187, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6086999773979187, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\WindowsRuntime.cpp" } },
  3654. { "pid": 1, "tid": 94, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3655. { "pid": 1, "tid": 94, "ts": 5085341.30859375, "dur": 828.8000226020813, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8288000226020813, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Assembly.cpp" } },
  3656. { "pid": 1, "tid": 94, "ts": 5086170.8984375, "dur": 33040.99655151367, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 33.04099655151367, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\AssemblyName.cpp" } },
  3657. { "pid": 1, "tid": 94, "ts": 5119213.37890625, "dur": 142286.19384765625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 142.28619384765625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\CCWBase.cpp" } },
  3658. { "pid": 1, "tid": 94, "ts": 5261501.953125, "dur": 12708.600044250488, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 12.708600044250488, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\COM.cpp" } },
  3659. { "pid": 1, "tid": 94, "ts": 5274212.890625, "dur": 1379.6000480651855, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.3796000480651855, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ClassInlines.cpp" } },
  3660. { "pid": 1, "tid": 94, "ts": 5275594.23828125, "dur": 53615.6005859375, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 53.6156005859375, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ComObjectBase.cpp" } },
  3661. { "pid": 1, "tid": 94, "ts": 5329532.2265625, "dur": 13948.498725891113, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.948498725891113, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Field.cpp" } },
  3662. { "pid": 1, "tid": 94, "ts": 5343582.03125, "dur": 47724.39956665039, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 47.72439956665039, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\GlobalMetadata.cpp" } },
  3663. { "pid": 1, "tid": 94, "ts": 5391308.59375, "dur": 2449.899911880493, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.449899911880493, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataAlloc.cpp" } },
  3664. { "pid": 1, "tid": 94, "ts": 5393762.20703125, "dur": 19642.301559448242, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 19.642301559448242, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\MetadataLoader.cpp" } },
  3665. { "pid": 1, "tid": 94, "ts": 5413406.25, "dur": 100091.30096435547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 100.09130096435547, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Method.cpp" } },
  3666. { "pid": 1, "tid": 94, "ts": 5513501.46484375, "dur": 5962.600231170654, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.962600231170654, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Random.cpp" } },
  3667. { "pid": 1, "tid": 94, "ts": 5519468.26171875, "dur": 28118.70002746582, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 28.11870002746582, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Reflection.cpp" } },
  3668. { "pid": 1, "tid": 94, "ts": 5547589.84375, "dur": 3808.000087738037, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.808000087738037, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Thread.cpp" } },
  3669. { "pid": 1, "tid": 94, "ts": 5551399.4140625, "dur": 15942.399978637695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.942399978637695, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\ThreadPoolMs.cpp" } },
  3670. { "pid": 1, "tid": 94, "ts": 5567344.23828125, "dur": 64127.197265625, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 64.127197265625, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm\\Type.cpp" } },
  3671. { "pid": 1, "tid": 97, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3672. { "pid": 1, "tid": 97, "ts": 5108826.66015625, "dur": 353.50000858306885, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.35350000858306885, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\BlobReader.cpp" } },
  3673. { "pid": 1, "tid": 97, "ts": 5109181.15234375, "dur": 815.1999711990356, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8151999711990356, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeDelegateMethodCache.cpp" } },
  3674. { "pid": 1, "tid": 97, "ts": 5109997.55859375, "dur": 38188.80081176758, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 38.18880081176758, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\NativeSymbol.cpp" } },
  3675. { "pid": 1, "tid": 97, "ts": 5148188.96484375, "dur": 1573.699951171875, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.573699951171875, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System.Threading\\Interlocked.cpp" } },
  3676. { "pid": 1, "tid": 98, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3677. { "pid": 1, "tid": 98, "ts": 5108886.23046875, "dur": 2076.900005340576, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.076900005340576, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\Debugger.cpp" } },
  3678. { "pid": 1, "tid": 98, "ts": 5110964.84375, "dur": 37265.499114990234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 37.265499114990234, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\VmStringUtils.cpp" } },
  3679. { "pid": 1, "tid": 98, "ts": 5148234.375, "dur": 3081.5000534057617, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.0815000534057617, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\libil2cpp\\vm-utils\\icalls\\mscorlib\\System\\Math.cpp" } },
  3680. { "pid": 1, "tid": 109, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3681. { "pid": 1, "tid": 109, "ts": 5232965.8203125, "dur": 818.4000253677368, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.8184000253677368, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\allchblk.c" } },
  3682. { "pid": 1, "tid": 109, "ts": 5233785.64453125, "dur": 11966.79973602295, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.96679973602295, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\backgraph.c" } },
  3683. { "pid": 1, "tid": 109, "ts": 5245755.859375, "dur": 7890.699863433838, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.890699863433838, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\checksums.c" } },
  3684. { "pid": 1, "tid": 109, "ts": 5253648.4375, "dur": 13057.100296020508, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 13.057100296020508, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordprnt.c" } },
  3685. { "pid": 1, "tid": 109, "ts": 5266707.51953125, "dur": 3683.199882507324, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.683199882507324, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\cordtest.c" } },
  3686. { "pid": 1, "tid": 109, "ts": 5270392.08984375, "dur": 21735.1016998291, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 21.7351016998291, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\de_win.c" } },
  3687. { "pid": 1, "tid": 109, "ts": 5292129.39453125, "dur": 3633.3999633789062, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6333999633789062, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\AmigaOS.c" } },
  3688. { "pid": 1, "tid": 109, "ts": 5296016.6015625, "dur": 4514.599800109863, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.514599800109863, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\gc.c" } },
  3689. { "pid": 1, "tid": 109, "ts": 5300534.66796875, "dur": 2217.600107192993, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.217600107192993, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\krait_signal_handler.c" } },
  3690. { "pid": 1, "tid": 109, "ts": 5302753.90625, "dur": 6198.800086975098, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.198800086975098, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\pcr_interface.c" } },
  3691. { "pid": 1, "tid": 109, "ts": 5308954.58984375, "dur": 2633.699893951416, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.633699893951416, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\finalize.c" } },
  3692. { "pid": 1, "tid": 109, "ts": 5311590.33203125, "dur": 1671.1000204086304, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.6711000204086304, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\gc_dlopen.c" } },
  3693. { "pid": 1, "tid": 109, "ts": 5313263.18359375, "dur": 537.6999974250793, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5376999974250793, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\headers.c" } },
  3694. { "pid": 1, "tid": 109, "ts": 5313802.24609375, "dur": 500.29999017715454, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.5002999901771545, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mach_dep.c" } },
  3695. { "pid": 1, "tid": 109, "ts": 5314304.19921875, "dur": 388.5999917984009, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.3885999917984009, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\malloc.c" } },
  3696. { "pid": 1, "tid": 109, "ts": 5314693.359375, "dur": 24437.90054321289, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 24.43790054321289, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mallocx.c" } },
  3697. { "pid": 1, "tid": 109, "ts": 5339133.30078125, "dur": 2180.7000637054443, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1807000637054443, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mark.c" } },
  3698. { "pid": 1, "tid": 109, "ts": 5341315.91796875, "dur": 1186.3000392913818, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.1863000392913818, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\mark_rts.c" } },
  3699. { "pid": 1, "tid": 109, "ts": 5342503.90625, "dur": 4020.2999114990234, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 4.020299911499023, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\misc.c" } },
  3700. { "pid": 1, "tid": 109, "ts": 5346525.87890625, "dur": 2439.1000270843506, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.4391000270843506, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\new_hblk.c" } },
  3701. { "pid": 1, "tid": 109, "ts": 5348966.796875, "dur": 959.8000049591064, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9598000049591064, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\obj_map.c" } },
  3702. { "pid": 1, "tid": 109, "ts": 5349928.7109375, "dur": 2403.3000469207764, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.4033000469207764, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\os_dep.c" } },
  3703. { "pid": 1, "tid": 109, "ts": 5352641.11328125, "dur": 29637.401580810547, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 29.637401580810547, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_stop_world.c" } },
  3704. { "pid": 1, "tid": 109, "ts": 5382280.2734375, "dur": 2056.4000606536865, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.0564000606536865, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\pthread_support.c" } },
  3705. { "pid": 1, "tid": 109, "ts": 5384340.8203125, "dur": 2932.1000576019287, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.9321000576019287, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\ptr_chck.c" } },
  3706. { "pid": 1, "tid": 109, "ts": 5387277.34375, "dur": 2113.1999492645264, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.1131999492645264, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\reclaim.c" } },
  3707. { "pid": 1, "tid": 109, "ts": 5389392.578125, "dur": 2872.299909591675, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.872299909591675, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\specific.c" } },
  3708. { "pid": 1, "tid": 109, "ts": 5392270.5078125, "dur": 9892.000198364258, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 9.892000198364258, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\disclaim_bench.c" } },
  3709. { "pid": 1, "tid": 109, "ts": 5402547.8515625, "dur": 536.899983882904, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.536899983882904, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\middle.c" } },
  3710. { "pid": 1, "tid": 109, "ts": 5403166.50390625, "dur": 1233.7000370025635, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2337000370025635, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\staticrootstest.c" } },
  3711. { "pid": 1, "tid": 109, "ts": 5404401.85546875, "dur": 2938.4000301361084, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.9384000301361084, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\test.c" } },
  3712. { "pid": 1, "tid": 109, "ts": 5407344.23828125, "dur": 19065.59944152832, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 19.06559944152832, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\thread_leak_test.c" } },
  3713. { "pid": 1, "tid": 109, "ts": 5426417.48046875, "dur": 11069.600105285645, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.069600105285645, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\trace_test.c" } },
  3714. { "pid": 1, "tid": 109, "ts": 5437494.140625, "dur": 926.1999726295471, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9261999726295471, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\thread_local_alloc.c" } },
  3715. { "pid": 1, "tid": 109, "ts": 5438425.29296875, "dur": 3415.6999588012695, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.4156999588012695, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\setjmp_t.c" } },
  3716. { "pid": 1, "tid": 109, "ts": 5441851.07421875, "dur": 5542.900085449219, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.542900085449219, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\typd_mlc.c" } },
  3717. { "pid": 1, "tid": 110, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3718. { "pid": 1, "tid": 110, "ts": 5233044.921875, "dur": 918.6999797821045, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9186999797821045, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\alloc.c" } },
  3719. { "pid": 1, "tid": 110, "ts": 5233964.84375, "dur": 18374.300003051758, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 18.374300003051758, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\blacklst.c" } },
  3720. { "pid": 1, "tid": 110, "ts": 5252340.8203125, "dur": 2345.9999561309814, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.3459999561309814, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordbscs.c" } },
  3721. { "pid": 1, "tid": 110, "ts": 5254688.96484375, "dur": 15198.3003616333, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 15.1983003616333, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\cordxtra.c" } },
  3722. { "pid": 1, "tid": 110, "ts": 5269889.16015625, "dur": 2809.7000122070312, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.8097000122070312, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\cord\\tests\\de.c" } },
  3723. { "pid": 1, "tid": 110, "ts": 5272701.66015625, "dur": 5178.100109100342, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.178100109100342, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\darwin_stop_world.c" } },
  3724. { "pid": 1, "tid": 110, "ts": 5277881.34765625, "dur": 2283.2999229431152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2832999229431152, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\dbg_mlc.c" } },
  3725. { "pid": 1, "tid": 110, "ts": 5280166.015625, "dur": 14543.100357055664, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 14.543100357055664, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\dyn_load.c" } },
  3726. { "pid": 1, "tid": 110, "ts": 5294710.9375, "dur": 7945.499897003174, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.945499897003174, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\MacOS.c" } },
  3727. { "pid": 1, "tid": 110, "ts": 5302658.203125, "dur": 6211.50016784668, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 6.21150016784668, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\msvc_dbg.c" } },
  3728. { "pid": 1, "tid": 110, "ts": 5308872.0703125, "dur": 2283.2999229431152, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.2832999229431152, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\extra\\real_malloc.c" } },
  3729. { "pid": 1, "tid": 110, "ts": 5311156.73828125, "dur": 1287.7000570297241, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 1.2877000570297241, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\fnlz_mlc.c" } },
  3730. { "pid": 1, "tid": 110, "ts": 5312446.77734375, "dur": 944.7000026702881, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9447000026702881, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\gcj_mlc.c" } },
  3731. { "pid": 1, "tid": 110, "ts": 5313618.1640625, "dur": 83523.20098876953, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 83.52320098876953, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\libatomic_ops\\src\\atomic_ops.c" } },
  3732. { "pid": 1, "tid": 110, "ts": 5397143.5546875, "dur": 5116.000175476074, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 5.116000175476074, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\disclaim_test.c" } },
  3733. { "pid": 1, "tid": 110, "ts": 5402261.23046875, "dur": 647.4999785423279, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.6474999785423279, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\initsecondarythread.c" } },
  3734. { "pid": 1, "tid": 110, "ts": 5403146.97265625, "dur": 349.40001368522644, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.34940001368522644, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\staticrootslib.c" } },
  3735. { "pid": 1, "tid": 110, "ts": 5403498.046875, "dur": 922.9000210762024, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.9229000210762024, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\subthread_create.c" } },
  3736. { "pid": 1, "tid": 110, "ts": 5404422.36328125, "dur": 21777.90069580078, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 21.77790069580078, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\test_atomic_ops.c" } },
  3737. { "pid": 1, "tid": 110, "ts": 5426209.9609375, "dur": 11277.799606323242, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 11.277799606323242, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tests\\threadkey_test.c" } },
  3738. { "pid": 1, "tid": 110, "ts": 5437494.140625, "dur": 809.499979019165, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.809499979019165, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\if_mach.c" } },
  3739. { "pid": 1, "tid": 110, "ts": 5438308.59375, "dur": 989.799976348877, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 0.989799976348877, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\if_not_there.c" } },
  3740. { "pid": 1, "tid": 110, "ts": 5439349.609375, "dur": 2531.100034713745, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 2.531100034713745, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\tools\\threadlibs.c" } },
  3741. { "pid": 1, "tid": 110, "ts": 5441886.23046875, "dur": 3684.4000816345215, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 3.6844000816345215, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\vector_mlc.c" } },
  3742. { "pid": 1, "tid": 110, "ts": 5445573.2421875, "dur": 7940.299987792969, "ph": "X", "name": "HashOfFile", "args": { "durationMS": 7.940299987792969, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\bdwgc\\win32_threads.c" } },
  3743. { "pid": 1, "tid": 124, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3744. { "pid": 1, "tid": 124, "ts": 7614028.3203125, "dur": 15580.300331115723, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.580300331115723, "detail": "UnityEngine.CoreModule.cpp" } },
  3745. { "pid": 1, "tid": 124, "ts": 7631990.72265625, "dur": 7395.899772644043, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.395899772644043, "detail": "mscorlib.cpp" } },
  3746. { "pid": 1, "tid": 124, "ts": 7640181.15234375, "dur": 7326.000213623047, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.326000213623047, "detail": "mscorlib5.cpp" } },
  3747. { "pid": 1, "tid": 124, "ts": 7648246.09375, "dur": 6985.099792480469, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.985099792480469, "detail": "UnityEngine.UI2.cpp" } },
  3748. { "pid": 1, "tid": 124, "ts": 7655885.25390625, "dur": 6905.4999351501465, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.9054999351501465, "detail": "Generics5.cpp" } },
  3749. { "pid": 1, "tid": 124, "ts": 7663446.2890625, "dur": 4924.300193786621, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.924300193786621, "detail": "System2.cpp" } },
  3750. { "pid": 1, "tid": 124, "ts": 7669244.140625, "dur": 2677.7000427246094, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.6777000427246094, "detail": "UnityEngine.AnimationModule.cpp" } },
  3751. { "pid": 1, "tid": 124, "ts": 7673808.59375, "dur": 1643.399953842163, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.643399953842163, "detail": "System_CodeGen.c" } },
  3752. { "pid": 1, "tid": 124, "ts": 7676168.45703125, "dur": 1510.599970817566, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.510599970817566, "detail": "UnityEngine.AudioModule_Attr.cpp" } },
  3753. { "pid": 1, "tid": 124, "ts": 7678466.30859375, "dur": 1564.7000074386597, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5647000074386597, "detail": "UnityEngine.UnityAnalyticsModule_Attr.cpp" } },
  3754. { "pid": 1, "tid": 124, "ts": 7680769.04296875, "dur": 1422.7999448776245, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.4227999448776245, "detail": "UnityEngine.AudioModule.cpp" } },
  3755. { "pid": 1, "tid": 124, "ts": 7684068.359375, "dur": 25239.00032043457, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 25.23900032043457, "detail": "inflate.c" } },
  3756. { "pid": 1, "tid": 124, "ts": 7713526.3671875, "dur": 2714.9999141693115, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.7149999141693115, "detail": "UnityEngine.TextRenderingModule_CodeGen.c" } },
  3757. { "pid": 1, "tid": 124, "ts": 7718008.30078125, "dur": 5656.899929046631, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.656899929046631, "detail": "System.Core_CodeGen.c" } },
  3758. { "pid": 1, "tid": 124, "ts": 7725311.5234375, "dur": 2779.2999744415283, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.7792999744415283, "detail": "adler32.c" } },
  3759. { "pid": 1, "tid": 124, "ts": 7729444.3359375, "dur": 2087.199926376343, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.0871999263763428, "detail": "UnityEngine.UnityWebRequestModule_CodeGen.c" } },
  3760. { "pid": 1, "tid": 124, "ts": 7732826.171875, "dur": 1835.5000019073486, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.8355000019073486, "detail": "Il2CppMetadataRegistration.c" } },
  3761. { "pid": 1, "tid": 124, "ts": 7735696.77734375, "dur": 2123.6000061035156, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1236000061035156, "detail": "UnityEngine.SpriteShapeModule_CodeGen.c" } },
  3762. { "pid": 1, "tid": 124, "ts": 7739237.79296875, "dur": 4321.599960327148, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.321599960327148, "detail": "Il2CppGenericComDefinitions1.cpp" } },
  3763. { "pid": 1, "tid": 124, "ts": 7744378.41796875, "dur": 1593.400001525879, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.593400001525879, "detail": "Il2CppGenericComDefinitions2.cpp" } },
  3764. { "pid": 1, "tid": 124, "ts": 7746765.625, "dur": 1771.1999416351318, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7711999416351318, "detail": "Lump_libil2cpp_debugger.cpp" } },
  3765. { "pid": 1, "tid": 123, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3766. { "pid": 1, "tid": 123, "ts": 7614028.3203125, "dur": 15690.999984741211, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.690999984741211, "detail": "mscorlib13.cpp" } },
  3767. { "pid": 1, "tid": 123, "ts": 7631424.8046875, "dur": 7864.699840545654, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.864699840545654, "detail": "mscorlib4.cpp" } },
  3768. { "pid": 1, "tid": 123, "ts": 7640046.875, "dur": 7744.500160217285, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.744500160217285, "detail": "mscorlib14.cpp" } },
  3769. { "pid": 1, "tid": 123, "ts": 7648431.15234375, "dur": 6000.5998611450195, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.0005998611450195, "detail": "UnityEngine.UI1.cpp" } },
  3770. { "pid": 1, "tid": 123, "ts": 7655303.7109375, "dur": 5422.999858856201, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.422999858856201, "detail": "Generics4.cpp" } },
  3771. { "pid": 1, "tid": 123, "ts": 7661428.7109375, "dur": 4449.100017547607, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.449100017547607, "detail": "UnityEngine.CoreModule_Attr.cpp" } },
  3772. { "pid": 1, "tid": 123, "ts": 7666558.59375, "dur": 2169.3999767303467, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1693999767303467, "detail": "UnityEngine.UI_Attr.cpp" } },
  3773. { "pid": 1, "tid": 123, "ts": 7669356.93359375, "dur": 2553.499937057495, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.553499937057495, "detail": "Il2CppCCTypeValuesTable.cpp" } },
  3774. { "pid": 1, "tid": 123, "ts": 7673533.203125, "dur": 1732.3999404907227, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7323999404907227, "detail": "UnityEngine.AnimationModule_Attr.cpp" } },
  3775. { "pid": 1, "tid": 123, "ts": 7675964.84375, "dur": 1565.0999546051025, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5650999546051025, "detail": "UnityEngine.UIModule_Attr.cpp" } },
  3776. { "pid": 1, "tid": 123, "ts": 7678445.3125, "dur": 1745.90003490448, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.74590003490448, "detail": "UnityEngine.TextRenderingModule_Attr.cpp" } },
  3777. { "pid": 1, "tid": 123, "ts": 7680941.89453125, "dur": 1223.7999439239502, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2237999439239502, "detail": "UnityEngine.UnityAnalyticsModule.cpp" } },
  3778. { "pid": 1, "tid": 123, "ts": 7683481.4453125, "dur": 1098.5000133514404, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.0985000133514404, "detail": "System.Core_Attr.cpp" } },
  3779. { "pid": 1, "tid": 123, "ts": 7685321.2890625, "dur": 1141.3999795913696, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.1413999795913696, "detail": "Assembly-CSharp_Attr.cpp" } },
  3780. { "pid": 1, "tid": 123, "ts": 7687089.35546875, "dur": 16943.00079345703, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 16.94300079345703, "detail": "xamarin_getifaddrs.c" } },
  3781. { "pid": 1, "tid": 123, "ts": 7704694.82421875, "dur": 4616.600036621094, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.616600036621094, "detail": "gzwrite.c" } },
  3782. { "pid": 1, "tid": 123, "ts": 7713590.33203125, "dur": 4621.9000816345215, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.6219000816345215, "detail": "gzlib.c" } },
  3783. { "pid": 1, "tid": 123, "ts": 7719784.66796875, "dur": 3939.3999576568604, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.9393999576568604, "detail": "UnityEngine_Attr.cpp" } },
  3784. { "pid": 1, "tid": 123, "ts": 7725111.81640625, "dur": 2683.199882507324, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.683199882507324, "detail": "Mono.Security_CodeGen.c" } },
  3785. { "pid": 1, "tid": 123, "ts": 7728842.28515625, "dur": 2559.6001148223877, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.5596001148223877, "detail": "UnityEngine.Physics2DModule_CodeGen.c" } },
  3786. { "pid": 1, "tid": 123, "ts": 7732473.14453125, "dur": 3315.2999877929688, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.3152999877929688, "detail": "krait_signal_handler.c" } },
  3787. { "pid": 1, "tid": 123, "ts": 7736909.66796875, "dur": 2459.5999717712402, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.4595999717712402, "detail": "Lump_libil2cpp_codegen.cpp" } },
  3788. { "pid": 1, "tid": 123, "ts": 7740276.85546875, "dur": 4626.100063323975, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.626100063323975, "detail": "Il2CppGenericComDefinitions14.cpp" } },
  3789. { "pid": 1, "tid": 123, "ts": 7745938.96484375, "dur": 1890.4000520706177, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.8904000520706177, "detail": "Il2CppGenericComDefinitions6.cpp" } },
  3790. { "pid": 1, "tid": 117, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3791. { "pid": 1, "tid": 117, "ts": 7614140.625, "dur": 22833.599090576172, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 22.833599090576172, "detail": "Il2CppCCalculateFieldValues.cpp" } },
  3792. { "pid": 1, "tid": 117, "ts": 7637590.8203125, "dur": 8174.599647521973, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.174599647521973, "detail": "GenericMethods.cpp" } },
  3793. { "pid": 1, "tid": 117, "ts": 7646400.390625, "dur": 6380.199909210205, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.380199909210205, "detail": "Generics.cpp" } },
  3794. { "pid": 1, "tid": 117, "ts": 7653435.05859375, "dur": 6766.7999267578125, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.7667999267578125, "detail": "mscorlib12.cpp" } },
  3795. { "pid": 1, "tid": 117, "ts": 7661368.1640625, "dur": 4371.600151062012, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.371600151062012, "detail": "Il2CppGenericMethodPointerTable.cpp" } },
  3796. { "pid": 1, "tid": 117, "ts": 7666509.27734375, "dur": 46119.40002441406, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 46.11940002441406, "detail": "char-conversions.cpp" } },
  3797. { "pid": 1, "tid": 117, "ts": 7714441.40625, "dur": 4592.400074005127, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.592400074005127, "detail": "crc32.c" } },
  3798. { "pid": 1, "tid": 117, "ts": 7720692.87109375, "dur": 2776.9999504089355, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.7769999504089355, "detail": "UnityEngine.AudioModule_CodeGen.c" } },
  3799. { "pid": 1, "tid": 117, "ts": 7724797.36328125, "dur": 2207.40008354187, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.20740008354187, "detail": "UnityEngine.TilemapModule.cpp" } },
  3800. { "pid": 1, "tid": 117, "ts": 7728304.19921875, "dur": 2226.0000705718994, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.2260000705718994, "detail": "uncompr.c" } },
  3801. { "pid": 1, "tid": 117, "ts": 7731601.5625, "dur": 2662.600040435791, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.662600040435791, "detail": "Lump_libil2cpp_utils.cpp" } },
  3802. { "pid": 1, "tid": 117, "ts": 7735168.9453125, "dur": 3202.899932861328, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.202899932861328, "detail": "il2cpp-benchmark-support.cpp" } },
  3803. { "pid": 1, "tid": 117, "ts": 7739540.0390625, "dur": 4105.199813842773, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.105199813842773, "detail": "Il2CppGenericComDefinitions12.cpp" } },
  3804. { "pid": 1, "tid": 117, "ts": 7744592.28515625, "dur": 1483.199954032898, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.483199954032898, "detail": "Il2CppGenericComDefinitions3.cpp" } },
  3805. { "pid": 1, "tid": 117, "ts": 7746980.95703125, "dur": 1323.8999843597412, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.3238999843597412, "detail": "il2cpp-runtime-stats.cpp" } },
  3806. { "pid": 1, "tid": 120, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3807. { "pid": 1, "tid": 120, "ts": 7614206.54296875, "dur": 15943.599700927734, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.943599700927734, "detail": "mscorlib9.cpp" } },
  3808. { "pid": 1, "tid": 120, "ts": 7631923.828125, "dur": 7598.599910736084, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.598599910736084, "detail": "Generics1.cpp" } },
  3809. { "pid": 1, "tid": 120, "ts": 7640235.3515625, "dur": 7119.29988861084, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.11929988861084, "detail": "Il2CppTypeDefinitions.c" } },
  3810. { "pid": 1, "tid": 120, "ts": 7648173.33984375, "dur": 8128.100395202637, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.128100395202637, "detail": "UnityEngine.UI3.cpp" } },
  3811. { "pid": 1, "tid": 120, "ts": 7657160.64453125, "dur": 5826.399803161621, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.826399803161621, "detail": "GenericMethods1.cpp" } },
  3812. { "pid": 1, "tid": 120, "ts": 7663745.60546875, "dur": 5091.899871826172, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.091899871826172, "detail": "Assembly-CSharp.cpp" } },
  3813. { "pid": 1, "tid": 120, "ts": 7670413.0859375, "dur": 2607.800006866455, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.607800006866455, "detail": "UnityEngine.TextRenderingModule.cpp" } },
  3814. { "pid": 1, "tid": 120, "ts": 7673958.49609375, "dur": 1740.4999732971191, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7404999732971191, "detail": "Il2CppGenericClassTable.c" } },
  3815. { "pid": 1, "tid": 120, "ts": 7676400.390625, "dur": 1494.1999912261963, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.4941999912261963, "detail": "Il2CppCCFieldValuesTable.cpp" } },
  3816. { "pid": 1, "tid": 120, "ts": 7678631.34765625, "dur": 1536.8000268936157, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5368000268936157, "detail": "UnityEngine.InputLegacyModule_Attr.cpp" } },
  3817. { "pid": 1, "tid": 120, "ts": 7680918.9453125, "dur": 28078.201293945312, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 28.078201293945312, "detail": "deflate.c" } },
  3818. { "pid": 1, "tid": 120, "ts": 7711792.48046875, "dur": 3875.9000301361084, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.8759000301361084, "detail": "UnityClassRegistration.cpp" } },
  3819. { "pid": 1, "tid": 120, "ts": 7717658.69140625, "dur": 5524.300098419189, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.5243000984191895, "detail": "inffast.c" } },
  3820. { "pid": 1, "tid": 120, "ts": 7724442.3828125, "dur": 2493.299961090088, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.493299961090088, "detail": "System.Configuration_CodeGen.c" } },
  3821. { "pid": 1, "tid": 120, "ts": 7728217.28515625, "dur": 7569.399833679199, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.569399833679199, "detail": "gc.c" } },
  3822. { "pid": 1, "tid": 120, "ts": 7736865.72265625, "dur": 1653.1000137329102, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6531000137329102, "detail": "UnityEngine_CodeGen.c" } },
  3823. { "pid": 1, "tid": 120, "ts": 7739544.43359375, "dur": 4206.399917602539, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.206399917602539, "detail": "Il2CppGenericComDefinitions13.cpp" } },
  3824. { "pid": 1, "tid": 120, "ts": 7744636.71875, "dur": 1502.9000043869019, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5029000043869019, "detail": "Il2CppGenericComDefinitions5.cpp" } },
  3825. { "pid": 1, "tid": 120, "ts": 7746962.890625, "dur": 1630.6999921798706, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6306999921798706, "detail": "Lump_libil2cpp_plugin.cpp" } },
  3826. { "pid": 1, "tid": 122, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3827. { "pid": 1, "tid": 122, "ts": 7614411.62109375, "dur": 15197.299003601074, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.197299003601074, "detail": "mscorlib10.cpp" } },
  3828. { "pid": 1, "tid": 122, "ts": 7631655.76171875, "dur": 7843.500137329102, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.843500137329102, "detail": "mscorlib6.cpp" } },
  3829. { "pid": 1, "tid": 122, "ts": 7640193.359375, "dur": 9018.600463867188, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.018600463867188, "detail": "mscorlib16.cpp" } },
  3830. { "pid": 1, "tid": 122, "ts": 7649857.421875, "dur": 10025.500297546387, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 10.025500297546387, "detail": "UnityEngine.CoreModule1.cpp" } },
  3831. { "pid": 1, "tid": 122, "ts": 7660542.48046875, "dur": 6452.899932861328, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.452899932861328, "detail": "System.cpp" } },
  3832. { "pid": 1, "tid": 122, "ts": 7667773.4375, "dur": 2179.1000366210938, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1791000366210938, "detail": "UnresolvedVirtualCallStubs.cpp" } },
  3833. { "pid": 1, "tid": 122, "ts": 7670618.65234375, "dur": 2324.50008392334, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.32450008392334, "detail": "Il2CppGenericAdjustorThunkTable.cpp" } },
  3834. { "pid": 1, "tid": 122, "ts": 7673955.078125, "dur": 1776.3999700546265, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7763999700546265, "detail": "UnityEngine.SharedInternalsModule_Attr.cpp" } },
  3835. { "pid": 1, "tid": 122, "ts": 7676432.6171875, "dur": 1392.899990081787, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.392899990081787, "detail": "Il2CppGenericMethodDefinitions.c" } },
  3836. { "pid": 1, "tid": 122, "ts": 7678545.8984375, "dur": 1483.6000204086304, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.4836000204086304, "detail": "UnityEngine.TilemapModule_Attr.cpp" } },
  3837. { "pid": 1, "tid": 122, "ts": 7680699.70703125, "dur": 1492.900013923645, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.492900013923645, "detail": "UnityEngine.UnityWebRequestModule_Attr.cpp" } },
  3838. { "pid": 1, "tid": 122, "ts": 7683965.8203125, "dur": 1213.2999897003174, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2132999897003174, "detail": "System.Xml_Attr.cpp" } },
  3839. { "pid": 1, "tid": 122, "ts": 7685886.71875, "dur": 23417.200088500977, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 23.417200088500977, "detail": "il2cpp-api.cpp" } },
  3840. { "pid": 1, "tid": 122, "ts": 7713585.44921875, "dur": 4559.4000816345215, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.5594000816345215, "detail": "Assembly-CSharp_CodeGen.c" } },
  3841. { "pid": 1, "tid": 122, "ts": 7719802.24609375, "dur": 4052.299976348877, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.052299976348877, "detail": "UnityEngine.InputLegacyModule_CodeGen.c" } },
  3842. { "pid": 1, "tid": 122, "ts": 7725314.94140625, "dur": 2753.200054168701, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.753200054168701, "detail": "UnityEngine.SpriteShapeModule.cpp" } },
  3843. { "pid": 1, "tid": 122, "ts": 7729446.77734375, "dur": 2373.8999366760254, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.3738999366760254, "detail": "compress.c" } },
  3844. { "pid": 1, "tid": 122, "ts": 7732832.03125, "dur": 2339.7998809814453, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.3397998809814453, "detail": "Lump_libil2cpp_vm-utils.cpp" } },
  3845. { "pid": 1, "tid": 122, "ts": 7736096.19140625, "dur": 1669.3999767303467, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6693999767303467, "detail": "UnityEngine.GridModule_CodeGen.c" } },
  3846. { "pid": 1, "tid": 122, "ts": 7738754.8828125, "dur": 3892.6000595092773, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.8926000595092773, "detail": "Il2CppGenericComDefinitions.cpp" } },
  3847. { "pid": 1, "tid": 122, "ts": 7743473.14453125, "dur": 2001.8000602722168, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.001800060272217, "detail": "Il2CppGenericComDefinitions15.cpp" } },
  3848. { "pid": 1, "tid": 122, "ts": 7746321.77734375, "dur": 1356.2999963760376, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.3562999963760376, "detail": "Il2CppGenericComDefinitions7.cpp" } },
  3849. { "pid": 1, "tid": 119, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3850. { "pid": 1, "tid": 119, "ts": 7614415.52734375, "dur": 15545.299530029297, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.545299530029297, "detail": "mscorlib_CodeGen.c" } },
  3851. { "pid": 1, "tid": 119, "ts": 7631968.75, "dur": 7243.500232696533, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.243500232696533, "detail": "mscorlib2.cpp" } },
  3852. { "pid": 1, "tid": 119, "ts": 7640023.92578125, "dur": 7307.700157165527, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.307700157165527, "detail": "UnityEngine.UI.cpp" } },
  3853. { "pid": 1, "tid": 119, "ts": 7648196.77734375, "dur": 6203.700065612793, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.203700065612793, "detail": "mscorlib8.cpp" } },
  3854. { "pid": 1, "tid": 119, "ts": 7655324.21875, "dur": 5493.400096893311, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.4934000968933105, "detail": "System1.cpp" } },
  3855. { "pid": 1, "tid": 119, "ts": 7661562.98828125, "dur": 3671.9000339508057, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.6719000339508057, "detail": "UnityEngine.IMGUIModule.cpp" } },
  3856. { "pid": 1, "tid": 119, "ts": 7665865.72265625, "dur": 2622.499942779541, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.622499942779541, "detail": "UnityEngine.UI_CodeGen.c" } },
  3857. { "pid": 1, "tid": 119, "ts": 7669110.3515625, "dur": 2824.8000144958496, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.8248000144958496, "detail": "UnityEngine.UIModule.cpp" } },
  3858. { "pid": 1, "tid": 119, "ts": 7673728.02734375, "dur": 1448.6000537872314, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.4486000537872314, "detail": "UnityEngine.InputLegacyModule.cpp" } },
  3859. { "pid": 1, "tid": 119, "ts": 7675954.1015625, "dur": 1585.0000381469727, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5850000381469727, "detail": "Il2CppGenericMethodTable.c" } },
  3860. { "pid": 1, "tid": 119, "ts": 7678386.23046875, "dur": 1528.1000137329102, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5281000137329102, "detail": "UnityICallRegistration.cpp" } },
  3861. { "pid": 1, "tid": 119, "ts": 7680606.93359375, "dur": 1661.0000133514404, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6610000133514404, "detail": "UnityEngine.SpriteShapeModule_Attr.cpp" } },
  3862. { "pid": 1, "tid": 119, "ts": 7684108.3984375, "dur": 1318.7999725341797, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.3187999725341797, "detail": "System.Configuration.cpp" } },
  3863. { "pid": 1, "tid": 119, "ts": 7686375, "dur": 1094.499945640564, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.094499945640564, "detail": "Mono.Security_Attr.cpp" } },
  3864. { "pid": 1, "tid": 119, "ts": 7688172.36328125, "dur": 1291.700005531311, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.291700005531311, "detail": "UnityEngine.AnimationModule_CodeGen.c" } },
  3865. { "pid": 1, "tid": 119, "ts": 7690032.71484375, "dur": 984.7999811172485, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 0.9847999811172485, "detail": "UnityEngine.PhysicsModule_CodeGen.c" } },
  3866. { "pid": 1, "tid": 119, "ts": 7691474.609375, "dur": 846.8999862670898, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 0.8468999862670898, "detail": "System.Core.cpp" } },
  3867. { "pid": 1, "tid": 119, "ts": 7693030.2734375, "dur": 15168.000221252441, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.168000221252441, "detail": "gzread.c" } },
  3868. { "pid": 1, "tid": 119, "ts": 7711482.91015625, "dur": 8253.100395202637, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.253100395202637, "detail": "Lump_libil2cpp_os.cpp" } },
  3869. { "pid": 1, "tid": 119, "ts": 7721418.9453125, "dur": 3587.8000259399414, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.5878000259399414, "detail": "zutil.c" } },
  3870. { "pid": 1, "tid": 119, "ts": 7726103.02734375, "dur": 2562.5, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.5625, "detail": "Lump_libil2cpp_vm.cpp" } },
  3871. { "pid": 1, "tid": 119, "ts": 7729719.7265625, "dur": 2597.8000164031982, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.5978000164031982, "detail": "UnityAdsStubs.cpp" } },
  3872. { "pid": 1, "tid": 119, "ts": 7733547.8515625, "dur": 4316.5998458862305, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.3165998458862305, "detail": "Lump_libil2cpp_mono.cpp" } },
  3873. { "pid": 1, "tid": 119, "ts": 7739553.22265625, "dur": 4118.70002746582, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.11870002746582, "detail": "Il2CppGenericComDefinitions11.cpp" } },
  3874. { "pid": 1, "tid": 119, "ts": 7744642.08984375, "dur": 1875.6999969482422, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.8756999969482422, "detail": "Il2CppGenericComDefinitions4.cpp" } },
  3875. { "pid": 1, "tid": 121, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3876. { "pid": 1, "tid": 121, "ts": 7614434.5703125, "dur": 15653.901100158691, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 15.653901100158691, "detail": "mscorlib1.cpp" } },
  3877. { "pid": 1, "tid": 121, "ts": 7632024.4140625, "dur": 6810.999870300293, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.810999870300293, "detail": "Generics3.cpp" } },
  3878. { "pid": 1, "tid": 121, "ts": 7639549.31640625, "dur": 7621.799945831299, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 7.621799945831299, "detail": "mscorlib7.cpp" } },
  3879. { "pid": 1, "tid": 121, "ts": 7647879.8828125, "dur": 6300.099849700928, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.300099849700928, "detail": "Generics2.cpp" } },
  3880. { "pid": 1, "tid": 121, "ts": 7655245.60546875, "dur": 5640.999794006348, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 5.640999794006348, "detail": "mscorlib11.cpp" } },
  3881. { "pid": 1, "tid": 121, "ts": 7661602.5390625, "dur": 4603.400230407715, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.603400230407715, "detail": "mscorlib_Attr.cpp" } },
  3882. { "pid": 1, "tid": 121, "ts": 7667149.4140625, "dur": 1950.2999782562256, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9502999782562256, "detail": "Il2CppGenericInstDefinitions.c" } },
  3883. { "pid": 1, "tid": 121, "ts": 7669832.03125, "dur": 2032.7000617980957, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.0327000617980957, "detail": "UnityEngine.IMGUIModule_Attr.cpp" } },
  3884. { "pid": 1, "tid": 121, "ts": 7673007.32421875, "dur": 1549.7000217437744, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5497000217437744, "detail": "UnityEngine.PhysicsModule_Attr.cpp" } },
  3885. { "pid": 1, "tid": 121, "ts": 7675230.46875, "dur": 1468.7999486923218, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.4687999486923218, "detail": "Mono.Security.cpp" } },
  3886. { "pid": 1, "tid": 121, "ts": 7677475.09765625, "dur": 1202.7000188827515, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2027000188827515, "detail": "System.Xml.cpp" } },
  3887. { "pid": 1, "tid": 121, "ts": 7679401.3671875, "dur": 1504.5000314712524, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5045000314712524, "detail": "UnityEngine.GridModule_Attr.cpp" } },
  3888. { "pid": 1, "tid": 121, "ts": 7681554.19921875, "dur": 1236.799955368042, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.236799955368042, "detail": "UnityEngine.IMGUIModule_CodeGen.c" } },
  3889. { "pid": 1, "tid": 121, "ts": 7684245.1171875, "dur": 1196.6999769210815, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.1966999769210815, "detail": "System.Configuration_Attr.cpp" } },
  3890. { "pid": 1, "tid": 121, "ts": 7686457.51953125, "dur": 969.9000120162964, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 0.9699000120162964, "detail": "UnityEngine.Physics2DModule.cpp" } },
  3891. { "pid": 1, "tid": 121, "ts": 7688111.81640625, "dur": 1266.2999629974365, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2662999629974365, "detail": "UnityEngine.UIModule_CodeGen.c" } },
  3892. { "pid": 1, "tid": 121, "ts": 7689881.34765625, "dur": 18687.999725341797, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 18.687999725341797, "detail": "infback.c" } },
  3893. { "pid": 1, "tid": 121, "ts": 7711432.12890625, "dur": 8269.30046081543, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.26930046081543, "detail": "Lump_libil2cpp_icalls.cpp" } },
  3894. { "pid": 1, "tid": 121, "ts": 7721363.28125, "dur": 3402.600049972534, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.402600049972534, "detail": "System.Xml_CodeGen.c" } },
  3895. { "pid": 1, "tid": 121, "ts": 7725971.19140625, "dur": 2122.9000091552734, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1229000091552734, "detail": "UnityEngine.GridModule.cpp" } },
  3896. { "pid": 1, "tid": 121, "ts": 7729387.20703125, "dur": 2183.300018310547, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.183300018310547, "detail": "Il2CppReversePInvokeWrapperTable.cpp" } },
  3897. { "pid": 1, "tid": 121, "ts": 7732696.77734375, "dur": 2041.5000915527344, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.0415000915527344, "detail": "UnityEngine.cpp" } },
  3898. { "pid": 1, "tid": 121, "ts": 7735595.21484375, "dur": 2246.0999488830566, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.2460999488830566, "detail": "UnityEngine.TilemapModule_CodeGen.c" } },
  3899. { "pid": 1, "tid": 121, "ts": 7738928.22265625, "dur": 3879.1000843048096, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.8791000843048096, "detail": "Il2CppGenericComDefinitions10.cpp" } },
  3900. { "pid": 1, "tid": 121, "ts": 7743617.67578125, "dur": 2188.699960708618, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.188699960708618, "detail": "Il2CppGenericComDefinitions16.cpp" } },
  3901. { "pid": 1, "tid": 121, "ts": 7746542.96875, "dur": 1544.700026512146, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.544700026512146, "detail": "Il2CppGenericComDefinitions9.cpp" } },
  3902. { "pid": 1, "tid": 118, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3903. { "pid": 1, "tid": 118, "ts": 7614455.56640625, "dur": 21374.000549316406, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 21.374000549316406, "detail": "Il2CppCCalculateTypeValues.cpp" } },
  3904. { "pid": 1, "tid": 118, "ts": 7636486.328125, "dur": 8967.300415039062, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 8.967300415039062, "detail": "Il2CppInvokerTable.cpp" } },
  3905. { "pid": 1, "tid": 118, "ts": 7646194.82421875, "dur": 6685.800075531006, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.685800075531006, "detail": "mscorlib15.cpp" } },
  3906. { "pid": 1, "tid": 118, "ts": 7653591.30859375, "dur": 6586.699962615967, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 6.586699962615967, "detail": "mscorlib3.cpp" } },
  3907. { "pid": 1, "tid": 118, "ts": 7660833.984375, "dur": 4897.39990234375, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.89739990234375, "detail": "Il2CppMetadataUsage.c" } },
  3908. { "pid": 1, "tid": 118, "ts": 7666472.65625, "dur": 2678.100109100342, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.678100109100342, "detail": "UnityEngine.CoreModule_CodeGen.c" } },
  3909. { "pid": 1, "tid": 118, "ts": 7669905.76171875, "dur": 1968.1999683380127, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.9681999683380127, "detail": "UnityEngine.PhysicsModule.cpp" } },
  3910. { "pid": 1, "tid": 118, "ts": 7673332.51953125, "dur": 1842.8000211715698, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.8428000211715698, "detail": "UnityEngine.SharedInternalsModule.cpp" } },
  3911. { "pid": 1, "tid": 118, "ts": 7675817.87109375, "dur": 1544.4999933242798, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5444999933242798, "detail": "Il2CppInteropDataTable.cpp" } },
  3912. { "pid": 1, "tid": 118, "ts": 7678037.109375, "dur": 1522.7999687194824, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.5227999687194824, "detail": "UnityEngine.Physics2DModule_Attr.cpp" } },
  3913. { "pid": 1, "tid": 118, "ts": 7680239.2578125, "dur": 1275.7999897003174, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2757999897003174, "detail": "System_Attr.cpp" } },
  3914. { "pid": 1, "tid": 118, "ts": 7682219.23828125, "dur": 1281.7000150680542, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.2817000150680542, "detail": "UnityEngine.UnityWebRequestModule.cpp" } },
  3915. { "pid": 1, "tid": 118, "ts": 7684335.9375, "dur": 24703.100204467773, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 24.703100204467773, "detail": "trees.c" } },
  3916. { "pid": 1, "tid": 118, "ts": 7711880.859375, "dur": 3697.499990463257, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 3.697499990463257, "detail": "UnityEngine.SharedInternalsModule_CodeGen.c" } },
  3917. { "pid": 1, "tid": 118, "ts": 7717627.44140625, "dur": 4683.899879455566, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 4.683899879455566, "detail": "inftrees.c" } },
  3918. { "pid": 1, "tid": 118, "ts": 7723714.35546875, "dur": 2141.4999961853027, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.1414999961853027, "detail": "UnityEngine.UnityAnalyticsModule_CodeGen.c" } },
  3919. { "pid": 1, "tid": 118, "ts": 7727014.6484375, "dur": 1736.7000579833984, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.7367000579833984, "detail": "Il2CppCodeRegistration.cpp" } },
  3920. { "pid": 1, "tid": 118, "ts": 7729812.98828125, "dur": 2429.6000003814697, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 2.4296000003814697, "detail": "Lump_libil2cpp_metadata.cpp" } },
  3921. { "pid": 1, "tid": 118, "ts": 7733573.2421875, "dur": 1623.3999729156494, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.6233999729156494, "detail": "gzclose.c" } },
  3922. { "pid": 1, "tid": 118, "ts": 7736163.57421875, "dur": 9429.800033569336, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 9.429800033569336, "detail": "Lump_libil2cpp_gc.cpp" } },
  3923. { "pid": 1, "tid": 118, "ts": 7746724.609375, "dur": 1402.899980545044, "ph": "X", "name": "HashCompilerInvocation", "args": { "durationMS": 1.402899980545044, "detail": "Il2CppGenericComDefinitions8.cpp" } },
  3924. { "pid": 1, "tid": 164, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3925. { "pid": 1, "tid": 164, "ts": 7641197.75390625, "dur": 611.9999885559082, "ph": "X", "name": "HeaderFileHashProvider.HashForAllHeaderFilesReachableByFilesIn", "args": { "durationMS": 0.6119999885559082, "detail": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\external\\baselib\\Platforms\\WebGL\\Include" } },
  3926. { "pid": 1, "tid": 492, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3927. { "pid": 1, "tid": 492, "ts": 7803029.296875, "dur": 11564825.1953125, "ph": "X", "name": "Compile", "args": { "durationMS": 11564.8251953125, "detail": "Il2CppCCalculateTypeValues.cpp" } },
  3928. { "pid": 1, "tid": 493, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3929. { "pid": 1, "tid": 493, "ts": 7803029.78515625, "dur": 11982469.7265625, "ph": "X", "name": "Compile", "args": { "durationMS": 11982.4697265625, "detail": "Il2CppCCalculateFieldValues.cpp" } },
  3930. { "pid": 1, "tid": 491, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3931. { "pid": 1, "tid": 491, "ts": 7803030.76171875, "dur": 10103923.828125, "ph": "X", "name": "Compile", "args": { "durationMS": 10103.923828125, "detail": "Il2CppTypeDefinitions.c" } },
  3932. { "pid": 1, "tid": 491, "ts": 17907171.875, "dur": 444403.80859375, "ph": "X", "name": "Compile", "args": { "durationMS": 444.40380859375, "detail": "Assembly-CSharp_CodeGen.c" } },
  3933. { "pid": 1, "tid": 490, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3934. { "pid": 1, "tid": 490, "ts": 7803041.9921875, "dur": 10103911.1328125, "ph": "X", "name": "Compile", "args": { "durationMS": 10103.9111328125, "detail": "Il2CppMetadataUsage.c" } },
  3935. { "pid": 1, "tid": 490, "ts": 17907171.875, "dur": 383410.09521484375, "ph": "X", "name": "Compile", "args": { "durationMS": 383.41009521484375, "detail": "Il2CppMetadataRegistration.c" } },
  3936. { "pid": 1, "tid": 489, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3937. { "pid": 1, "tid": 489, "ts": 7803043.9453125, "dur": 11535440.4296875, "ph": "X", "name": "Compile", "args": { "durationMS": 11535.4404296875, "detail": "Assembly-CSharp.cpp" } },
  3938. { "pid": 1, "tid": 488, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3939. { "pid": 1, "tid": 488, "ts": 7803049.8046875, "dur": 11012750.9765625, "ph": "X", "name": "Compile", "args": { "durationMS": 11012.7509765625, "detail": "Il2CppCCTypeValuesTable.cpp" } },
  3940. { "pid": 1, "tid": 487, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3941. { "pid": 1, "tid": 487, "ts": 7803059.5703125, "dur": 11013564.453125, "ph": "X", "name": "Compile", "args": { "durationMS": 11013.564453125, "detail": "Il2CppCCFieldValuesTable.cpp" } },
  3942. { "pid": 1, "tid": 486, "ph": "M", "name": "thread_name", "args": { "name": "" } },
  3943. { "pid": 1, "tid": 486, "ts": 7803061.03515625, "dur": 11183087.890625, "ph": "X", "name": "Compile", "args": { "durationMS": 11183.087890625, "detail": "Assembly-CSharp_Attr.cpp" } }
  3944. ],
  3945. "meta_datetime": "01/12/2022 15:39:52",
  3946. "meta_command_line": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\build\\deploy\\netcoreapp3.1\\il2cpp.dll @artifacts\\rsp\\9823849370109081815.rsp",
  3947. "meta_command_line_args": "E:\\unity\\unity\\2020.3.23f1c1\\Editor\\Data\\il2cpp\\build\\deploy\\netcoreapp3.1\\il2cpp.dll @artifacts\\rsp\\9823849370109081815.rsp",
  3948. "meta_user_name": "lsc",
  3949. "meta_os_version": "Microsoft Windows NT 6.2.9200.0",
  3950. "meta_cpu_count": "8"}